@stokelp/ui 2.97.0 → 2.99.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/components/app/index.d.ts +1 -0
- package/dist/components/app/mobile-navigation/MobileNavigation.cjs +2 -0
- package/dist/components/app/mobile-navigation/MobileNavigation.cjs.map +1 -0
- package/dist/components/app/mobile-navigation/MobileNavigation.d.ts +17 -0
- package/dist/components/app/mobile-navigation/MobileNavigation.js +19 -0
- package/dist/components/app/mobile-navigation/MobileNavigation.js.map +1 -0
- package/dist/components/app/mobile-navigation/index.d.ts +2 -0
- package/dist/components/chat/ChatDocumentMessage.js +1 -1
- package/dist/components/checkbox/Checkbox.js +3 -3
- package/dist/components/checkbox-card/CheckboxCard.js +2 -2
- package/dist/components/drawer/Drawer.js +1 -1
- package/dist/components/pagination/use-pagination.cjs.map +1 -1
- package/dist/components/pagination/use-pagination.js +1 -1
- package/dist/components/pagination/use-pagination.js.map +1 -1
- package/dist/components/radio-card-group/RadioCardGroup.js +1 -1
- package/dist/components/switch-card/SwitchCard.js +2 -2
- package/dist/components/table/Table.js +3 -3
- package/dist/components/table/TableProvider.js +3 -3
- package/dist/index.cjs +1 -1
- package/dist/index.js +169 -167
- package/dist/index.js.map +1 -1
- package/dist/node_modules/@pandacss/shared/dist/index.cjs.map +1 -1
- package/dist/node_modules/@pandacss/shared/dist/index.js.map +1 -1
- package/dist/node_modules/@zag-js/utils/dist/index.cjs.map +1 -1
- package/dist/node_modules/@zag-js/utils/dist/index.js.map +1 -1
- package/dist/node_modules/deepmerge/dist/cjs.js +1 -1
- package/dist/node_modules/deepmerge/dist/cjs.js.map +1 -1
- package/dist/node_modules/lodash/lodash.cjs +7 -14
- package/dist/node_modules/lodash/lodash.cjs.map +1 -1
- package/dist/node_modules/lodash/lodash.js +1282 -1273
- package/dist/node_modules/lodash/lodash.js.map +1 -1
- package/dist/theme/recipes/app/mobile-navigation.cjs +2 -0
- package/dist/theme/recipes/app/mobile-navigation.cjs.map +1 -0
- package/dist/theme/recipes/app/mobile-navigation.d.ts +2 -0
- package/dist/theme/recipes/app/mobile-navigation.js +110 -0
- package/dist/theme/recipes/app/mobile-navigation.js.map +1 -0
- package/dist/theme/recipes/index.cjs +1 -1
- package/dist/theme/recipes/index.cjs.map +1 -1
- package/dist/theme/recipes/index.d.ts +1 -0
- package/dist/theme/recipes/index.js +60 -58
- package/dist/theme/recipes/index.js.map +1 -1
- package/dist/ui.css +1 -1
- package/package.json +15 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stokelp/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.99.0",
|
|
4
4
|
"description": "Stokelp UI React",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -70,38 +70,32 @@
|
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"@heroicons/react": "^2.2.0",
|
|
73
|
-
"@pandacss/dev": "^1.
|
|
73
|
+
"@pandacss/dev": "^1.8.1",
|
|
74
74
|
"react": "^19.2.0",
|
|
75
75
|
"react-window": "^1.8.11"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
|
-
"@chromatic-com/storybook": "^
|
|
78
|
+
"@chromatic-com/storybook": "^5.0.0",
|
|
79
79
|
"@stokelp/styled-system": "workspace:*",
|
|
80
|
-
"@storybook/addon-
|
|
81
|
-
"@storybook/addon-
|
|
82
|
-
"@storybook/
|
|
83
|
-
"@
|
|
84
|
-
"@
|
|
85
|
-
"@storybook/blocks": "^8.6.8",
|
|
86
|
-
"@storybook/react": "^8.6.8",
|
|
87
|
-
"@storybook/react-vite": "^8.6.8",
|
|
88
|
-
"@storybook/test": "^8.6.8",
|
|
89
|
-
"storybook-addon-data-theme-switcher": "^1.0.1",
|
|
90
|
-
"@types/lodash": "^4.17.20",
|
|
91
|
-
"@types/react": "^19.2.2",
|
|
80
|
+
"@storybook/addon-docs": "^10.2.6",
|
|
81
|
+
"@storybook/addon-links": "^10.2.6",
|
|
82
|
+
"@storybook/react-vite": "^10.2.6",
|
|
83
|
+
"@types/lodash": "^4.17.23",
|
|
84
|
+
"@types/react": "^19.2.11",
|
|
92
85
|
"@types/react-is": "^19.2.0",
|
|
93
86
|
"@types/react-window": "^1.8.8",
|
|
94
|
-
"@vitejs/plugin-react": "^5.
|
|
87
|
+
"@vitejs/plugin-react": "^5.1.3",
|
|
95
88
|
"deepmerge": "^4.3.1",
|
|
96
89
|
"prop-types": "^15.8.1",
|
|
97
|
-
"storybook": "^
|
|
90
|
+
"storybook": "^10.2.6",
|
|
91
|
+
"storybook-addon-data-theme-switcher": "^3.0.1",
|
|
98
92
|
"vite-plugin-dts": "^4.5.4",
|
|
99
|
-
"vite-tsconfig-paths": "^
|
|
93
|
+
"vite-tsconfig-paths": "^6.0.5"
|
|
100
94
|
},
|
|
101
95
|
"dependencies": {
|
|
102
|
-
"@ark-ui/react": "5.
|
|
103
|
-
"react-is": "19.2.
|
|
104
|
-
"react-phone-number-input": "^3.4.
|
|
96
|
+
"@ark-ui/react": "5.31.0",
|
|
97
|
+
"react-is": "19.2.4",
|
|
98
|
+
"react-phone-number-input": "^3.4.14",
|
|
105
99
|
"usehooks-ts": "3.1.1"
|
|
106
100
|
},
|
|
107
101
|
"release": {
|