@spothero/ui 24.1.1-beta.1 → 25.0.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/index.cjs.js +4208 -49963
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3858 -49886
- package/dist/index.esm.js.map +1 -1
- package/package.json +14 -12
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spothero/ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "25.0.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
|
+
"sideEffects": false,
|
|
7
8
|
"exports": {
|
|
8
9
|
".": {
|
|
9
10
|
"import": "./dist/index.esm.js",
|
|
@@ -81,7 +82,6 @@
|
|
|
81
82
|
"jest-environment-jsdom": "28.1.2",
|
|
82
83
|
"jest-extended": "3.2.4",
|
|
83
84
|
"jest-watch-typeahead": "0.6.1",
|
|
84
|
-
"lodash": "4.17.21",
|
|
85
85
|
"moment": "2.29.4",
|
|
86
86
|
"moment-timezone": "0.5.40",
|
|
87
87
|
"msw": "0.27.0",
|
|
@@ -93,8 +93,10 @@
|
|
|
93
93
|
"redux": "4.1.2",
|
|
94
94
|
"regenerator-runtime": "0.13.7",
|
|
95
95
|
"rollup": "4.28.1",
|
|
96
|
+
"rollup-plugin-analyzer": "^4.0.0",
|
|
96
97
|
"rollup-plugin-dts": "6.1.1",
|
|
97
98
|
"rollup-plugin-peer-deps-external": "2.2.4",
|
|
99
|
+
"rollup-plugin-uglify": "^6.0.4",
|
|
98
100
|
"sass-loader": "10.2.1",
|
|
99
101
|
"start-server-and-test": "1.12.6",
|
|
100
102
|
"storybook": "7.6.19",
|
|
@@ -103,24 +105,18 @@
|
|
|
103
105
|
"vitest": "2.1.8",
|
|
104
106
|
"webpack-merge": "5.1.4",
|
|
105
107
|
"@spothero/babel-preset-spothero": "5.1.0",
|
|
106
|
-
"@spothero/core": "7.0.1",
|
|
107
108
|
"@spothero/browserslist-config": "4.0.0",
|
|
108
|
-
"@spothero/icons": "9.1.3",
|
|
109
|
-
"@spothero/npm-publisher": "7.0.0",
|
|
110
109
|
"@spothero/eslint-config": "6.1.0",
|
|
110
|
+
"@spothero/core": "7.0.1",
|
|
111
111
|
"@spothero/prettier-config": "4.0.0",
|
|
112
|
+
"@spothero/npm-publisher": "7.0.0",
|
|
113
|
+
"@spothero/icons": "9.1.3",
|
|
112
114
|
"@spothero/stylelint-config": "6.0.0"
|
|
113
115
|
},
|
|
114
116
|
"dependencies": {
|
|
115
117
|
"@babel/preset-env": "7.23.9",
|
|
116
|
-
"@chakra-ui/anatomy": "^2.3.4",
|
|
117
|
-
"@chakra-ui/react": "2.8.2",
|
|
118
|
-
"@emotion/react": "11.1.5",
|
|
119
|
-
"@emotion/styled": "11.1.5",
|
|
120
118
|
"@faker-js/faker": "7.6.0",
|
|
121
119
|
"core-js": "3.6.5",
|
|
122
|
-
"framer-motion": "10.18.0",
|
|
123
|
-
"react-select": "5.4.0",
|
|
124
120
|
"regenerator-runtime": "0.13.7",
|
|
125
121
|
"ssr-window": "1.0.1",
|
|
126
122
|
"transitionEnd": "1.0.2"
|
|
@@ -132,7 +128,13 @@
|
|
|
132
128
|
"react": "18.2.0",
|
|
133
129
|
"react-dom": "18.2.0",
|
|
134
130
|
"react-redux": ">=7.0.0",
|
|
135
|
-
"redux": ">=4.0.0"
|
|
131
|
+
"redux": ">=4.0.0",
|
|
132
|
+
"react-select": "^5.4.0",
|
|
133
|
+
"framer-motion": "10.18.0",
|
|
134
|
+
"@chakra-ui/anatomy": "^2.3.4",
|
|
135
|
+
"@chakra-ui/react": "2.8.2",
|
|
136
|
+
"@emotion/react": "11.1.5",
|
|
137
|
+
"@emotion/styled": "11.1.5"
|
|
136
138
|
},
|
|
137
139
|
"scripts": {
|
|
138
140
|
"clean": "rm -rf docs v2 lib styles coverage || true",
|