@sanity/ui 2.10.17 → 2.10.18-canary.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.esm.js +329 -264
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +329 -264
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +329 -264
- package/dist/index.mjs.map +1 -1
- package/package.json +28 -41
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/ui",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.18-canary.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"sanity",
|
|
6
6
|
"ui",
|
|
@@ -51,32 +51,6 @@
|
|
|
51
51
|
"src",
|
|
52
52
|
"theme.js"
|
|
53
53
|
],
|
|
54
|
-
"scripts": {
|
|
55
|
-
"build": "run-s clean pkg:build pkg:check figma:pkg:build",
|
|
56
|
-
"clean": "rimraf .workshop dist",
|
|
57
|
-
"commit": "cz",
|
|
58
|
-
"cypress:dev": "run-p dev cypress:open",
|
|
59
|
-
"cypress:open": "cypress open",
|
|
60
|
-
"cypress:run": "cypress run",
|
|
61
|
-
"dev": "run-p storybook:dev workshop:dev",
|
|
62
|
-
"figma:pkg:build": "cd figma && pnpm build",
|
|
63
|
-
"format": "prettier --write --cache --ignore-unknown .",
|
|
64
|
-
"lint": "eslint . --ext .cjs,.js,.jsx,.mjs,.ts,.tsx",
|
|
65
|
-
"pkg:build": "pkg build --strict",
|
|
66
|
-
"pkg:check": "pkg --strict",
|
|
67
|
-
"prepare": "husky install",
|
|
68
|
-
"prepack": "pnpm build",
|
|
69
|
-
"release": "semantic-release",
|
|
70
|
-
"storybook:build": "storybook build",
|
|
71
|
-
"storybook:dev": "storybook dev -p 6006",
|
|
72
|
-
"test": "jest",
|
|
73
|
-
"test:browser": "start-server-and-test 'run-s workshop:build workshop:start' http://localhost:1337 'run-s cypress:run'",
|
|
74
|
-
"ts:check": "tsc",
|
|
75
|
-
"watch": "pkg watch --strict",
|
|
76
|
-
"workshop:build": "workshop build",
|
|
77
|
-
"workshop:dev": "workshop dev",
|
|
78
|
-
"workshop:start": "http-server -a localhost -c-0 -p 1337 -s -P http://localhost:1337/index.html? dist"
|
|
79
|
-
},
|
|
80
54
|
"commitlint": {
|
|
81
55
|
"extends": [
|
|
82
56
|
"@commitlint/config-conventional"
|
|
@@ -122,7 +96,7 @@
|
|
|
122
96
|
"@commitlint/cli": "^19.6.1",
|
|
123
97
|
"@commitlint/config-conventional": "^19.6.0",
|
|
124
98
|
"@juggle/resize-observer": "^3.4.0",
|
|
125
|
-
"@sanity/pkg-utils": "^6.
|
|
99
|
+
"@sanity/pkg-utils": "^6.13.0",
|
|
126
100
|
"@sanity/prettier-config": "^1.0.3",
|
|
127
101
|
"@sanity/semantic-release-preset": "^5.0.0",
|
|
128
102
|
"@sanity/ui-workshop": "^2.0.20",
|
|
@@ -155,6 +129,7 @@
|
|
|
155
129
|
"@typescript-eslint/parser": "^7.18.0",
|
|
156
130
|
"@vitejs/plugin-react": "^4.3.4",
|
|
157
131
|
"babel-plugin-react-compiler": "19.0.0-beta-55955c9-20241229",
|
|
132
|
+
"babel-plugin-styled-components": "^2.1.4",
|
|
158
133
|
"commitizen": "^4.3.1",
|
|
159
134
|
"cypress": "^13.17.0",
|
|
160
135
|
"cypress-real-events": "^1.13.0",
|
|
@@ -197,25 +172,37 @@
|
|
|
197
172
|
"react-is": "^18 || >=19.0.0-0",
|
|
198
173
|
"styled-components": "^5.2 || ^6"
|
|
199
174
|
},
|
|
200
|
-
"packageManager": "pnpm@9.15.2",
|
|
201
175
|
"engines": {
|
|
202
176
|
"node": ">=14.0.0"
|
|
203
177
|
},
|
|
204
178
|
"publishConfig": {
|
|
205
179
|
"access": "public"
|
|
206
180
|
},
|
|
207
|
-
"pnpm": {
|
|
208
|
-
"overrides": {
|
|
209
|
-
"@types/react": "$@types/react",
|
|
210
|
-
"@types/react-dom": "$@types/react-dom",
|
|
211
|
-
"@types/react-is": "$@types/react-is",
|
|
212
|
-
"conventional-changelog-conventionalcommits": ">= 8.0.0",
|
|
213
|
-
"react": "$react",
|
|
214
|
-
"react-dom": "$react-dom",
|
|
215
|
-
"react-is": "$react-is"
|
|
216
|
-
}
|
|
217
|
-
},
|
|
218
181
|
"esm.sh": {
|
|
219
182
|
"bundle": false
|
|
183
|
+
},
|
|
184
|
+
"scripts": {
|
|
185
|
+
"build": "run-s clean pkg:build pkg:check figma:pkg:build",
|
|
186
|
+
"clean": "rimraf .workshop dist",
|
|
187
|
+
"commit": "cz",
|
|
188
|
+
"cypress:dev": "run-p dev cypress:open",
|
|
189
|
+
"cypress:open": "cypress open",
|
|
190
|
+
"cypress:run": "cypress run",
|
|
191
|
+
"dev": "run-p storybook:dev workshop:dev",
|
|
192
|
+
"figma:pkg:build": "cd figma && pnpm build",
|
|
193
|
+
"format": "prettier --write --cache --ignore-unknown .",
|
|
194
|
+
"lint": "eslint . --ext .cjs,.js,.jsx,.mjs,.ts,.tsx",
|
|
195
|
+
"pkg:build": "pkg build --strict",
|
|
196
|
+
"pkg:check": "pkg --strict",
|
|
197
|
+
"release": "semantic-release",
|
|
198
|
+
"storybook:build": "storybook build",
|
|
199
|
+
"storybook:dev": "storybook dev -p 6006",
|
|
200
|
+
"test": "jest",
|
|
201
|
+
"test:browser": "start-server-and-test 'run-s workshop:build workshop:start' http://localhost:1337 'run-s cypress:run'",
|
|
202
|
+
"ts:check": "tsc",
|
|
203
|
+
"watch": "pkg watch --strict",
|
|
204
|
+
"workshop:build": "workshop build",
|
|
205
|
+
"workshop:dev": "workshop dev",
|
|
206
|
+
"workshop:start": "http-server -a localhost -c-0 -p 1337 -s -P http://localhost:1337/index.html? dist"
|
|
220
207
|
}
|
|
221
|
-
}
|
|
208
|
+
}
|