@spothero/ui 25.5.1 → 25.6.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 +242 -54
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.esm.js +240 -54
- package/dist/index.esm.js.map +1 -1
- package/package.json +13 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spothero/ui",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.6.0",
|
|
4
4
|
"description": "SpotHero's React component UI library.",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -50,6 +50,9 @@
|
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@babel/cli": "7.23.9",
|
|
52
52
|
"@babel/core": "7.23.9",
|
|
53
|
+
"@babel/preset-env": "7.23.9",
|
|
54
|
+
"@babel/preset-react": "7.14.5",
|
|
55
|
+
"@babel/preset-typescript": "^7.28.5",
|
|
53
56
|
"@babel/runtime-corejs3": "7.14.7",
|
|
54
57
|
"@emotion/is-prop-valid": "1.3.1",
|
|
55
58
|
"@rollup/plugin-babel": "6.0.4",
|
|
@@ -110,16 +113,15 @@
|
|
|
110
113
|
"vitest": "2.1.8",
|
|
111
114
|
"webpack-merge": "5.1.4",
|
|
112
115
|
"@spothero/babel-preset-spothero": "5.1.0",
|
|
113
|
-
"@spothero/eslint-config": "6.1.0",
|
|
114
|
-
"@spothero/core": "7.0.1",
|
|
115
116
|
"@spothero/browserslist-config": "4.0.0",
|
|
117
|
+
"@spothero/core": "7.0.1",
|
|
118
|
+
"@spothero/eslint-config": "6.1.0",
|
|
116
119
|
"@spothero/icons": "9.1.10",
|
|
117
|
-
"@spothero/npm-publisher": "7.0.2",
|
|
118
120
|
"@spothero/prettier-config": "5.0.0",
|
|
121
|
+
"@spothero/npm-publisher": "7.0.2",
|
|
119
122
|
"@spothero/stylelint-config": "6.0.0"
|
|
120
123
|
},
|
|
121
124
|
"dependencies": {
|
|
122
|
-
"@babel/preset-env": "7.23.9",
|
|
123
125
|
"@faker-js/faker": "7.6.0",
|
|
124
126
|
"core-js": "3.6.5",
|
|
125
127
|
"regenerator-runtime": "0.13.7",
|
|
@@ -127,19 +129,19 @@
|
|
|
127
129
|
"transitionEnd": "1.0.2"
|
|
128
130
|
},
|
|
129
131
|
"peerDependencies": {
|
|
132
|
+
"@chakra-ui/anatomy": "^2.3.4",
|
|
133
|
+
"@chakra-ui/react": "2.8.2",
|
|
134
|
+
"@emotion/react": "11.11.4",
|
|
135
|
+
"@emotion/styled": "11.11.5",
|
|
130
136
|
"classnames": "2.2.6",
|
|
137
|
+
"framer-motion": "10.18.0",
|
|
131
138
|
"lodash": "4.17.21",
|
|
132
139
|
"prop-types": "15.7.2",
|
|
133
140
|
"react": "18.2.0",
|
|
134
141
|
"react-dom": "18.2.0",
|
|
135
142
|
"react-redux": ">=7.0.0",
|
|
136
|
-
"redux": ">=4.0.0",
|
|
137
143
|
"react-select": "^5.4.0",
|
|
138
|
-
"
|
|
139
|
-
"@chakra-ui/anatomy": "^2.3.4",
|
|
140
|
-
"@chakra-ui/react": "2.8.2",
|
|
141
|
-
"@emotion/react": "11.11.4",
|
|
142
|
-
"@emotion/styled": "11.11.5"
|
|
144
|
+
"redux": ">=4.0.0"
|
|
143
145
|
},
|
|
144
146
|
"scripts": {
|
|
145
147
|
"clean": "rm -rf docs v2 lib styles coverage || true",
|