-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #224 from Mezzanine-UI/react-19-support
React 19 support and bug fixed
- Loading branch information
Showing
74 changed files
with
22,177 additions
and
15,847 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,3 +48,6 @@ testem.log | |
# System Files | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# Yarn | ||
.yarn/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,8 @@ | |
"repository": "[email protected]:Mezzanine-UI/mezzanine.git", | ||
"author": "Mezzanine", | ||
"contributors": [ | ||
"Jay Chen <[email protected]>" | ||
"Jay Chen <[email protected]>", | ||
"Travor Lee <[email protected]>" | ||
], | ||
"license": "MIT", | ||
"keywords": [ | ||
|
@@ -49,15 +50,14 @@ | |
"@babel/preset-typescript": "^7.23.2", | ||
"@commitlint/cli": "^17.2.0", | ||
"@commitlint/config-conventional": "^17.2.0", | ||
"@storybook/addon-essentials": "^7.5.2", | ||
"@storybook/addon-interactions": "^7.5.2", | ||
"@storybook/addon-links": "^7.5.2", | ||
"@storybook/addon-onboarding": "^1.0.8", | ||
"@storybook/addon-storysource": "^7.5.2", | ||
"@storybook/blocks": "^7.5.2", | ||
"@storybook/react": "^7.5.2", | ||
"@storybook/react-webpack5": "^7.5.2", | ||
"@storybook/testing-library": "^0.2.2", | ||
"@rollup/plugin-typescript": "^11.1.6", | ||
"@storybook/addon-essentials": "^7.6.20", | ||
"@storybook/addon-interactions": "^7.6.20", | ||
"@storybook/addon-links": "^7.6.20", | ||
"@storybook/addon-storysource": "^7.6.20", | ||
"@storybook/blocks": "^7.6.20", | ||
"@storybook/react": "^7.6.20", | ||
"@storybook/react-webpack5": "^7.6.20", | ||
"@testing-library/dom": "^8.19.0", | ||
"@types/jest": "^29.5.7", | ||
"@typescript-eslint/eslint-plugin": "^6.13.1", | ||
|
@@ -68,12 +68,12 @@ | |
"cz-conventional-changelog": "^3.3.0", | ||
"eslint": "^8.52.0", | ||
"eslint-config-airbnb": "^19.0.4", | ||
"eslint-config-airbnb-typescript": "^17.1.0", | ||
"eslint-config-airbnb-typescript": "^18.0.0", | ||
"eslint-plugin-import": "^2.29.0", | ||
"eslint-plugin-jsx-a11y": "^6.8.0", | ||
"eslint-plugin-mdx": "^2.2.0", | ||
"eslint-plugin-react": "^7.33.2", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"eslint-plugin-react": "^7.34.1", | ||
"eslint-plugin-react-hooks": "^4.6.1", | ||
"eslint-plugin-storybook": "^0.6.15", | ||
"fs-extra": "^10.1.0", | ||
"glob": "^8.0.3", | ||
|
@@ -84,13 +84,10 @@ | |
"lint-staged": "^13.0.3", | ||
"postcss": "^8.4.19", | ||
"prettier": "^2.7.1", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"rollup": "^4.2.0", | ||
"rollup-plugin-typescript2": "^0.36.0", | ||
"rollup": "^4.18.1", | ||
"sass": "^1.69.5", | ||
"sass-loader": "^13.3.2", | ||
"storybook": "^7.5.2", | ||
"storybook": "^7.6.20", | ||
"storybook-rytass-palette": "^0.0.6", | ||
"style-loader": "^3.3.3", | ||
"stylelint": "^14.14.1", | ||
|
@@ -99,10 +96,7 @@ | |
"stylelint-order": "^5.0.0", | ||
"stylelint-scss": "^4.3.0", | ||
"ts-jest": "^29.1.1", | ||
"typescript": "^5.3.2" | ||
"typescript": "^5.4.5" | ||
}, | ||
"resolutions": { | ||
"@types/react": "^18.0.25", | ||
"@types/react-dom": "^18.0.8" | ||
} | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { IconDefinition } from './typings'; | ||
|
||
export const DragIcon: IconDefinition = { | ||
name: 'drag', | ||
definition: { | ||
svg: { | ||
viewBox: '0 0 20 20', | ||
}, | ||
path: { | ||
fill: 'currentColor', | ||
stroke: 'currentColor', | ||
strokeWidth: 0.5, | ||
d: 'M8.36089 6.19653C8.36089 6.73705 7.95824 7.14306 7.49978 7.14306C7.04133 7.14306 6.63867 6.73705 6.63867 6.19653C6.63867 5.65602 7.04133 5.25 7.49978 5.25C7.95824 5.25 8.36089 5.65602 8.36089 6.19653ZM8.36089 10.0854C8.36089 10.6259 7.95824 11.0319 7.49978 11.0319C7.04133 11.0319 6.63867 10.6259 6.63867 10.0854C6.63867 9.5449 7.04133 9.13889 7.49978 9.13889C7.95824 9.13889 8.36089 9.5449 8.36089 10.0854ZM8.36089 13.9743C8.36089 14.5148 7.95824 14.9208 7.49978 14.9208C7.04133 14.9208 6.63867 14.5148 6.63867 13.9743C6.63867 13.4338 7.04133 13.0278 7.49978 13.0278C7.95824 13.0278 8.36089 13.4338 8.36089 13.9743Z M13.3609 6.19653C13.3609 6.73705 12.9582 7.14306 12.4998 7.14306C12.0413 7.14306 11.6387 6.73705 11.6387 6.19653C11.6387 5.65602 12.0413 5.25 12.4998 5.25C12.9582 5.25 13.3609 5.65602 13.3609 6.19653ZM13.3609 10.0854C13.3609 10.6259 12.9582 11.0319 12.4998 11.0319C12.0413 11.0319 11.6387 10.6259 11.6387 10.0854C11.6387 9.5449 12.0413 9.13889 12.4998 9.13889C12.9582 9.13889 13.3609 9.5449 13.3609 10.0854ZM13.3609 13.9743C13.3609 14.5148 12.9582 14.9208 12.4998 14.9208C12.0413 14.9208 11.6387 14.5148 11.6387 13.9743C11.6387 13.4338 12.0413 13.0278 12.4998 13.0278C12.9582 13.0278 13.3609 13.4338 13.3609 13.9743Z', | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...react/src/Accordion/Accordion.stories.mdx → packages/react/src/Accordion/Accordion.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
packages/react/src/Alert/Alert.stories.mdx → packages/react/src/Alert/Alert.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
packages/react/src/AppBar/AppBar.stories.mdx → packages/react/src/AppBar/AppBar.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
packages/react/src/Badge/Badge.stories.mdx → packages/react/src/Badge/Badge.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
packages/react/src/Button/Button.stories.mdx → packages/react/src/Button/Button.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
.../react/src/Button/ButtonGroup.stories.mdx → packages/react/src/Button/ButtonGroup.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...s/react/src/Button/IconButton.stories.mdx → packages/react/src/Button/IconButton.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
packages/react/src/Card/Card.stories.mdx → packages/react/src/Card/Card.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...es/react/src/Card/CardActions.stories.mdx → packages/react/src/Card/CardActions.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...s/react/src/Checkbox/Checkbox.stories.mdx → packages/react/src/Checkbox/Checkbox.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...ConfirmActions/ConfirmActions.stories.mdx → ...act/src/ConfirmActions/ConfirmActions.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...act/src/DatePicker/DatePicker.stories.mdx → packages/react/src/DatePicker/DatePicker.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...teRangePicker/DateRangePicker.stories.mdx → ...t/src/DateRangePicker/DateRangePicker.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...DateTimePicker/DateTimePicker.stories.mdx → ...act/src/DateTimePicker/DateTimePicker.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
packages/react/src/Drawer/Drawer.stories.mdx → packages/react/src/Drawer/Drawer.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...s/react/src/Dropdown/Dropdown.stories.mdx → packages/react/src/Dropdown/Dropdown.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
packages/react/src/Empty/Empty.stories.mdx → packages/react/src/Empty/Empty.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
packages/react/src/Form/Form.stories.mdx → packages/react/src/Form/Form.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.