asma-core-ui 3.0.21 → 3.0.22-beta.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/dist/asma-core-ui.es.js +1 -47
- package/dist/internal-e22bb681.js +47 -0
- package/dist/src/components/data-display/tooltip/StyledTooltip.d.ts +1 -0
- package/dist/src/components/data-display/typography/StyledTypography.d.ts +1 -0
- package/dist/src/components/feedback/alert/StyledAlert.d.ts +1 -0
- package/dist/src/components/feedback/alert/StyledAlertTitle.d.ts +1 -0
- package/dist/src/components/feedback/dialog/StyledDialogActions.d.ts +1 -0
- package/dist/src/components/feedback/dialog/StyledDialogContent.d.ts +1 -0
- package/dist/src/components/feedback/dialog/StyledDialogTitle.d.ts +1 -0
- package/dist/src/components/feedback/snack-bar/SnackbarProvider.d.ts +1 -0
- package/dist/src/components/feedback/snack-bar/StyledSnackbar.d.ts +1 -0
- package/dist/src/components/inputs/radio-button/StyledRadio.d.ts +1 -0
- package/dist/src/components/inputs/radio-button/StyledRadioGroup.d.ts +1 -0
- package/dist/src/components/inputs/select/StyledSelectItem.d.ts +1 -0
- package/dist/src/components/inputs/slider/StyledSlider.d.ts +1 -0
- package/dist/src/components/inputs/switch/StyledSwitch.d.ts +2 -1
- package/dist/src/components/miscellaneous/StyledFormControl.d.ts +1 -0
- package/dist/src/components/miscellaneous/StyledFormControlLabel.d.ts +1 -0
- package/dist/src/components/miscellaneous/StyledFormHelperText.d.ts +1 -0
- package/dist/src/components/miscellaneous/StyledFormLabel.d.ts +1 -0
- package/dist/src/components/miscellaneous/StyledInputLabel.d.ts +1 -0
- package/dist/src/components/navigation/menu/StyledMenu.d.ts +1 -0
- package/dist/src/components/navigation/menu/StyledMenuItem.d.ts +1 -0
- package/dist/src/components/navigation/menu/StyledMenuList.d.ts +1 -0
- package/dist/src/components/pickers/date-picker/StyledDatePicker.d.ts +1 -0
- package/dist/src/components/table/StyledTable.d.ts +1 -0
- package/dist/src/components/utils/accordion/StyledAccordion.d.ts +1 -0
- package/dist/src/components/utils/accordion/StyledAccordionDetails.d.ts +1 -0
- package/dist/src/components/utils/accordion/StyledAccordionSummary.d.ts +1 -0
- package/dist/src/components/utils/popover/StyledPopover.d.ts +1 -0
- package/dist/src/helpers/reflections.helper.d.ts +1 -1
- package/dist/src/index.d.ts +163 -40
- package/dist/src/internal.d.ts +41 -0
- package/dist/style.css +2 -2
- package/package.json +7 -6
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "3.0.
|
|
6
|
+
"version": "3.0.22-beta.0",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"files": [
|
|
9
9
|
"dist/**/*",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"@fontsource/material-icons": "^5.0.4",
|
|
43
43
|
"@fontsource/roboto": "^5.0.4",
|
|
44
44
|
"@iconify/react": "^4.1.1",
|
|
45
|
+
"@mui/base": "5.0.0-beta.40",
|
|
45
46
|
"@mui/material": "^5.13.7",
|
|
46
47
|
"@tanstack/react-table": "^8.10.0",
|
|
47
48
|
"clsx": "^1.2.1",
|
|
@@ -88,15 +89,15 @@
|
|
|
88
89
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
89
90
|
"eslint-plugin-react-refresh": "^0.3.4",
|
|
90
91
|
"eslint-plugin-storybook": "^0.6.15",
|
|
91
|
-
"postcss": "^8.4.
|
|
92
|
+
"postcss": "^8.4.38",
|
|
92
93
|
"prop-types": "^15.8.1",
|
|
93
|
-
"rollup-plugin-typescript2": "^0.
|
|
94
|
+
"rollup-plugin-typescript2": "^0.36.0",
|
|
94
95
|
"storybook": "^7.6.9",
|
|
95
96
|
"storybook-addon-themes": "^6.1.0",
|
|
96
97
|
"tailwind-scrollbar": "^3.1.0",
|
|
97
|
-
"tailwindcss": "^3.3
|
|
98
|
-
"typescript": "^5.
|
|
99
|
-
"typescript-plugin-css-modules": "^5.0
|
|
98
|
+
"tailwindcss": "^3.4.3",
|
|
99
|
+
"typescript": "^5.4.5",
|
|
100
|
+
"typescript-plugin-css-modules": "^5.1.0",
|
|
100
101
|
"vite": "^4.3.9",
|
|
101
102
|
"vite-plugin-dts": "^3.1.1",
|
|
102
103
|
"vite-tsconfig-paths": "^4.2.0"
|