@max-ts/components 0.3.11 → 0.4.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/DataGrid/HeadCell/styles.d.ts +14 -4
- package/lib/components/DataGrid/Loader/styles.d.ts +0 -1
- package/lib/components/DateField/DateField.d.ts +9 -0
- package/lib/components/DateField/index.d.ts +1 -0
- package/lib/components/DateField/styles.d.ts +1 -0
- package/lib/components/DatePicker/DatePicker.d.ts +7 -0
- package/lib/components/DatePicker/DayButton/DayButton.d.ts +8 -0
- package/lib/components/DatePicker/DayButton/index.d.ts +1 -0
- package/lib/components/DatePicker/DayButton/styles.d.ts +12 -0
- package/lib/components/DatePicker/Dropdown/Dropdown.d.ts +5 -0
- package/lib/components/DatePicker/Dropdown/index.d.ts +1 -0
- package/lib/components/DatePicker/index.d.ts +1 -0
- package/lib/components/DatePicker/styles.d.ts +21 -0
- package/lib/components/InputOTP/InputOTP.d.ts +4 -0
- package/lib/components/InputOTP/Separator/Separator.d.ts +4 -0
- package/lib/components/InputOTP/Separator/index.d.ts +1 -0
- package/lib/components/InputOTP/Separator/styles.d.ts +1 -0
- package/lib/components/InputOTP/Slot/Slot.d.ts +2 -0
- package/lib/components/InputOTP/Slot/index.d.ts +1 -0
- package/lib/components/InputOTP/Slot/styles.d.ts +5 -0
- package/lib/components/InputOTP/index.d.ts +1 -0
- package/lib/components/InputOTP/styles.d.ts +2 -0
- package/lib/components/ThemeProvider/ThemeProvider.d.ts +0 -4
- package/lib/components/index.d.ts +3 -0
- package/lib/index.mjs +6622 -3052
- package/package.json +19 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@max-ts/components",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"browser": "./src/index.ts",
|
|
5
5
|
"main": "./lib/index.mjs",
|
|
6
6
|
"module": "./lib/index.mjs",
|
|
@@ -20,31 +20,33 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@emotion/react": "^11.14.0",
|
|
22
22
|
"@emotion/styled": "^11.14.0",
|
|
23
|
-
"@fontsource-variable/roboto": "^5.2.
|
|
24
|
-
"@mui/material": "^6.4.
|
|
25
|
-
"@mui/system": "^6.4.
|
|
23
|
+
"@fontsource-variable/roboto": "^5.2.5",
|
|
24
|
+
"@mui/material": "^6.4.7",
|
|
25
|
+
"@mui/system": "^6.4.7",
|
|
26
26
|
"@react-input/mask": "^2.0.4",
|
|
27
27
|
"clsx": "^2.1.1",
|
|
28
|
-
"
|
|
28
|
+
"input-otp": "^1.4.2",
|
|
29
|
+
"lucide-react": "^0.482.0",
|
|
29
30
|
"react": "^19.0.0",
|
|
31
|
+
"react-day-picker": "^9.6.2",
|
|
30
32
|
"react-dom": "^19.0.0",
|
|
31
33
|
"react-use": "^17.6.0",
|
|
32
|
-
"remeda": "^2.21.
|
|
34
|
+
"remeda": "^2.21.2"
|
|
33
35
|
},
|
|
34
36
|
"devDependencies": {
|
|
35
|
-
"@chromatic-com/storybook": "^3.2.
|
|
36
|
-
"@faker-js/faker": "^9.
|
|
37
|
-
"@storybook/addon-essentials": "^8.6.
|
|
38
|
-
"@storybook/addon-interactions": "^8.6.
|
|
39
|
-
"@storybook/addon-onboarding": "^8.6.
|
|
40
|
-
"@storybook/blocks": "^8.6.
|
|
41
|
-
"@storybook/builder-vite": "^8.6.
|
|
42
|
-
"@storybook/react": "^8.6.
|
|
43
|
-
"@storybook/react-vite": "^8.6.
|
|
44
|
-
"@storybook/test": "^8.6.
|
|
37
|
+
"@chromatic-com/storybook": "^3.2.6",
|
|
38
|
+
"@faker-js/faker": "^9.6.0",
|
|
39
|
+
"@storybook/addon-essentials": "^8.6.6",
|
|
40
|
+
"@storybook/addon-interactions": "^8.6.6",
|
|
41
|
+
"@storybook/addon-onboarding": "^8.6.6",
|
|
42
|
+
"@storybook/blocks": "^8.6.6",
|
|
43
|
+
"@storybook/builder-vite": "^8.6.6",
|
|
44
|
+
"@storybook/react": "^8.6.6",
|
|
45
|
+
"@storybook/react-vite": "^8.6.6",
|
|
46
|
+
"@storybook/test": "^8.6.6",
|
|
45
47
|
"@types/react": "^19.0.10",
|
|
46
48
|
"prop-types": "^15.8.1",
|
|
47
|
-
"storybook": "^8.6.
|
|
49
|
+
"storybook": "^8.6.6"
|
|
48
50
|
},
|
|
49
51
|
"scripts": {
|
|
50
52
|
"build": "vite build",
|