@spothero/ui 25.2.0 → 25.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/dist/components/Accordion/AccordionActionButton.d.ts +2 -1
- package/dist/components/RefreshedInput/FormControl/index.d.ts +2 -1
- package/dist/components/RefreshedInput/Select/Select.d.ts +2 -1
- package/dist/index.cjs.js +25 -34
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +25 -34
- package/dist/index.esm.js.map +1 -1
- package/dist/theme/base/colors.d.ts +1 -0
- package/package.json +11 -6
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spothero/ui",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.4.0",
|
|
4
4
|
"description": "SpotHero's React component UI library.",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
7
8
|
"sideEffects": false,
|
|
8
9
|
"exports": {
|
|
9
10
|
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
10
12
|
"import": "./dist/index.esm.js",
|
|
11
13
|
"require": "./dist/index.cjs.js"
|
|
12
14
|
},
|
|
@@ -62,10 +64,13 @@
|
|
|
62
64
|
"@storybook/react": "7.6.19",
|
|
63
65
|
"@storybook/react-webpack5": "7.6.19",
|
|
64
66
|
"@storybook/theming": "7.6.19",
|
|
65
|
-
"@testing-library/jest-dom": "5.
|
|
67
|
+
"@testing-library/jest-dom": "5.14.0",
|
|
66
68
|
"@testing-library/react": "14.0.0",
|
|
67
69
|
"@testing-library/user-event": "12.8.1",
|
|
68
70
|
"@types/lodash": "4.14.199",
|
|
71
|
+
"@types/node": "^18.0.0",
|
|
72
|
+
"@types/react": "^18.2.0",
|
|
73
|
+
"@types/react-dom": "^18.2.0",
|
|
69
74
|
"@vitejs/plugin-react": "4.3.4",
|
|
70
75
|
"autoprefixer": "9.8.5",
|
|
71
76
|
"babel-jest": "29.2.2",
|
|
@@ -104,13 +109,13 @@
|
|
|
104
109
|
"vite-tsconfig-paths": "5.1.4",
|
|
105
110
|
"vitest": "2.1.8",
|
|
106
111
|
"webpack-merge": "5.1.4",
|
|
107
|
-
"@spothero/browserslist-config": "4.0.0",
|
|
108
112
|
"@spothero/babel-preset-spothero": "5.1.0",
|
|
109
113
|
"@spothero/core": "7.0.1",
|
|
110
114
|
"@spothero/eslint-config": "6.1.0",
|
|
111
|
-
"@spothero/icons": "9.1.
|
|
115
|
+
"@spothero/icons": "9.1.9",
|
|
116
|
+
"@spothero/browserslist-config": "4.0.0",
|
|
112
117
|
"@spothero/npm-publisher": "7.0.2",
|
|
113
|
-
"@spothero/prettier-config": "
|
|
118
|
+
"@spothero/prettier-config": "5.0.0",
|
|
114
119
|
"@spothero/stylelint-config": "6.0.0"
|
|
115
120
|
},
|
|
116
121
|
"dependencies": {
|
|
@@ -143,7 +148,7 @@
|
|
|
143
148
|
"test": "pnpm run test:unit",
|
|
144
149
|
"test:unit": "vitest --run",
|
|
145
150
|
"test:unit:watch": "DEBUG_PRINT_LIMIT=-1 vitest",
|
|
146
|
-
"build": "pnpm run clean && rollup -c --
|
|
151
|
+
"build": "pnpm run clean && rollup -c --configPlugin typescript",
|
|
147
152
|
"release": "npm-release",
|
|
148
153
|
"build-storybook": "NODE_OPTIONS=--openssl-legacy-provider storybook build -o ./docs/v2",
|
|
149
154
|
"publish-storybook": "pnpm run build-storybook"
|