@movable/ui 3.0.0-alpha-v6.2 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/InkCard/InkCard.d.ts +18 -0
- package/lib/components/InkCard/InkCardHeader.d.ts +11 -0
- package/lib/components/InkCard/InkCardMedia.d.ts +7 -0
- package/lib/components/InkCard/InkCardMediaLoader.d.ts +1 -0
- package/lib/components/InkCard/InkGalleryContent.d.ts +8 -0
- package/lib/components/InkCard/VariantStyles.d.ts +5 -0
- package/lib/components/InkCard/index.d.ts +1 -0
- package/lib/components/InkDrawer/InkDrawer.d.ts +6 -2
- package/lib/components/InkGridToolBar/ExportButton.d.ts +6 -0
- package/lib/components/InkGridToolBar/FiltersButton.d.ts +5 -0
- package/lib/components/InkGridToolBar/GridToolbarGroup.d.ts +7 -0
- package/lib/components/InkGridToolBar/InkGridToolBar.d.ts +27 -0
- package/lib/components/InkGridToolBar/TableFilterColumnPicker.d.ts +10 -0
- package/lib/components/InkGridToolBar/index.d.ts +1 -0
- package/lib/components/InkSelect/InkFormSelect.d.ts +1 -1
- package/lib/components/index.d.ts +2 -0
- package/lib/index.d.ts +89 -4
- package/lib/index.mjs +11839 -9576
- package/lib/index.mjs.map +1 -1
- package/lib/page-objects/ink-select.d.ts +1 -0
- package/lib/theme/components/form.d.ts +1 -0
- package/package.json +10 -10
|
@@ -16,6 +16,7 @@ declare class InkSelectPageObject {
|
|
|
16
16
|
hasDisplayValue(value: string): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
17
17
|
hasValue(value: string): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
18
18
|
hasOption(label: string, value: string, index?: number): void;
|
|
19
|
+
isDisabled(): Cypress.Chainable<JQuery<HTMLElement>>;
|
|
19
20
|
closeMenu(): void;
|
|
20
21
|
openMenu(): void;
|
|
21
22
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@movable/ui",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Movable Ink's shared MUI components and MUI theme for our vite applications",
|
|
5
5
|
"module": "lib/index.mjs",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"@emotion/react": "^11.11.1",
|
|
46
46
|
"@emotion/styled": "^11.11.0",
|
|
47
47
|
"@movable/prettier-config": "^2.0.0",
|
|
48
|
-
"@mui/icons-material": "
|
|
49
|
-
"@mui/material": "
|
|
50
|
-
"@mui/x-data-grid-generator": "
|
|
51
|
-
"@mui/x-data-grid-premium": "
|
|
52
|
-
"@percy/cli": "^1.
|
|
48
|
+
"@mui/icons-material": "^6.5.0",
|
|
49
|
+
"@mui/material": "^6.5.0",
|
|
50
|
+
"@mui/x-data-grid-generator": "^7.29.8",
|
|
51
|
+
"@mui/x-data-grid-premium": "^7.29.8",
|
|
52
|
+
"@percy/cli": "^1.31.0",
|
|
53
53
|
"@percy/cypress": "^3.1.2",
|
|
54
54
|
"@percy/storybook": "^6.0.0",
|
|
55
55
|
"@release-it/conventional-changelog": "^7.0.1",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"@storybook/react-vite": "^8.1.0",
|
|
68
68
|
"@storybook/test": "^8.1.0",
|
|
69
69
|
"@storybook/theming": "^8.1.0",
|
|
70
|
-
"@swc/core": "^1.
|
|
70
|
+
"@swc/core": "^1.13.3",
|
|
71
71
|
"@types/lodash-es": "^4.17.0",
|
|
72
72
|
"@types/react": "^18.2.19",
|
|
73
73
|
"@types/react-dom": "^18.2.7",
|
|
@@ -104,12 +104,12 @@
|
|
|
104
104
|
"peerDependencies": {
|
|
105
105
|
"@emotion/react": "^11.11.1",
|
|
106
106
|
"@emotion/styled": "^11.11.0",
|
|
107
|
+
"@mui/icons-material": "^6.5.0",
|
|
108
|
+
"@mui/material": "^6.5.0",
|
|
109
|
+
"@mui/x-data-grid-premium": "^7.29.8",
|
|
107
110
|
"@types/lodash-es": "^4.17.0",
|
|
108
111
|
"chart.js": "^4.4.8",
|
|
109
112
|
"lodash-es": "^4.17.21",
|
|
110
|
-
"@mui/icons-material": "latest-v6",
|
|
111
|
-
"@mui/material": "latest-v6",
|
|
112
|
-
"@mui/x-data-grid-premium": "latest-v7",
|
|
113
113
|
"notistack": "^3.0.1",
|
|
114
114
|
"react": "^18.2.0",
|
|
115
115
|
"react-chartjs-2": "^5.3.0",
|