@spothero/ui 25.15.0-beta.1 → 25.16.0-beta.2
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/Accordion/AccordionActionButton.d.ts +6 -2
- package/dist/components/Menu/Menu.d.ts +6 -0
- package/dist/components/Menu/Menu.styles.d.ts +4 -258
- package/dist/components/Menu/index.d.ts +2 -0
- package/dist/components/Modal/styles/footer.d.ts +1 -0
- package/dist/components/SelectionCard/SelectionCard.d.ts +20 -0
- package/dist/components/SelectionCard/index.d.ts +1 -0
- package/dist/components/Table/Table.d.ts +1 -0
- package/dist/components/Table/Table.styles.d.ts +73 -65
- package/dist/components/Table/index.d.ts +2 -0
- package/dist/components/Tabs/Tabs.d.ts +10 -0
- package/dist/components/Tabs/combineSizeWithVariant.d.ts +120 -0
- package/dist/components/Tabs/index.d.ts +2 -0
- package/dist/components/Tabs/styles/index.d.ts +52 -298
- package/dist/components/ToggleButtonGroup/ToggleButtonGroup.d.ts +27 -0
- package/dist/components/ToggleButtonGroup/index.d.ts +1 -0
- package/dist/components/ToggleButtonGroup/styles/index.d.ts +5 -0
- package/dist/index.cjs.js +459 -600
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +68 -18
- package/dist/index.esm.js +458 -599
- package/dist/index.esm.js.map +1 -1
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spothero/ui",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.16.0-beta.2",
|
|
4
4
|
"description": "SpotHero's React component UI library.",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -113,13 +113,13 @@
|
|
|
113
113
|
"vitest": "2.1.8",
|
|
114
114
|
"webpack-merge": "5.1.4",
|
|
115
115
|
"@spothero/babel-preset-spothero": "5.1.0",
|
|
116
|
-
"@spothero/browserslist-config": "4.0.0",
|
|
117
116
|
"@spothero/core": "7.0.1",
|
|
118
117
|
"@spothero/eslint-config": "6.1.0",
|
|
119
118
|
"@spothero/icons": "9.2.0",
|
|
119
|
+
"@spothero/browserslist-config": "4.0.0",
|
|
120
120
|
"@spothero/npm-publisher": "7.0.2",
|
|
121
|
-
"@spothero/
|
|
122
|
-
"@spothero/
|
|
121
|
+
"@spothero/prettier-config": "5.0.0",
|
|
122
|
+
"@spothero/stylelint-config": "6.0.0"
|
|
123
123
|
},
|
|
124
124
|
"dependencies": {
|
|
125
125
|
"@faker-js/faker": "7.6.0",
|
|
@@ -133,6 +133,8 @@
|
|
|
133
133
|
"@chakra-ui/react": "2.8.2",
|
|
134
134
|
"@emotion/react": "11.11.4",
|
|
135
135
|
"@emotion/styled": "11.11.5",
|
|
136
|
+
"@types/react": ">=18.0.0",
|
|
137
|
+
"@types/react-dom": ">=18.0.0",
|
|
136
138
|
"classnames": "2.3.2",
|
|
137
139
|
"framer-motion": "10.18.0",
|
|
138
140
|
"lodash": "4.17.21",
|