@sanity/ui 2.8.13-canary.1 → 2.8.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanity/ui",
3
- "version": "2.8.13-canary.1",
3
+ "version": "2.8.13",
4
4
  "keywords": [
5
5
  "sanity",
6
6
  "ui",
@@ -51,6 +51,32 @@
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
+ },
54
80
  "commitlint": {
55
81
  "extends": [
56
82
  "@commitlint/config-conventional"
@@ -84,7 +110,6 @@
84
110
  "@sanity/icons": "^3.4.0",
85
111
  "csstype": "^3.1.3",
86
112
  "framer-motion": "11.0.8",
87
- "react-compiler-runtime": "19.0.0-beta-6fc168f-20241025",
88
113
  "react-refractor": "^2.2.0",
89
114
  "use-effect-event": "^1.0.2"
90
115
  },
@@ -173,37 +198,19 @@
173
198
  "react-is": "^18",
174
199
  "styled-components": "^5.2 || ^6"
175
200
  },
201
+ "packageManager": "pnpm@9.12.3",
176
202
  "engines": {
177
203
  "node": ">=14.0.0"
178
204
  },
179
205
  "publishConfig": {
180
206
  "access": "public"
181
207
  },
208
+ "pnpm": {
209
+ "overrides": {
210
+ "conventional-changelog-conventionalcommits": ">= 8.0.0"
211
+ }
212
+ },
182
213
  "esm.sh": {
183
214
  "bundle": false
184
- },
185
- "scripts": {
186
- "build": "run-s clean pkg:build pkg:check figma:pkg:build",
187
- "clean": "rimraf .workshop dist",
188
- "commit": "cz",
189
- "cypress:dev": "run-p dev cypress:open",
190
- "cypress:open": "cypress open",
191
- "cypress:run": "cypress run",
192
- "dev": "run-p storybook:dev workshop:dev",
193
- "figma:pkg:build": "cd figma && pnpm build",
194
- "format": "prettier --write --cache --ignore-unknown .",
195
- "lint": "eslint . --ext .cjs,.js,.jsx,.mjs,.ts,.tsx",
196
- "pkg:build": "pkg build --strict",
197
- "pkg:check": "pkg --strict",
198
- "release": "semantic-release",
199
- "storybook:build": "storybook build",
200
- "storybook:dev": "storybook dev -p 6006",
201
- "test": "jest",
202
- "test:browser": "start-server-and-test 'run-s workshop:build workshop:start' http://localhost:1337 'run-s cypress:run'",
203
- "ts:check": "tsc",
204
- "watch": "pkg watch --strict",
205
- "workshop:build": "workshop build",
206
- "workshop:dev": "workshop dev",
207
- "workshop:start": "http-server -a localhost -c-0 -p 1337 -s -P http://localhost:1337/index.html? dist"
208
215
  }
209
- }
216
+ }
@@ -36,28 +36,31 @@ export function useMenuController(props: {
36
36
  activeIndexRef.current = nextActiveIndex
37
37
  }, [])
38
38
 
39
- const mount = (element: HTMLElement | null, selected?: boolean): (() => void) => {
40
- if (!element) return () => undefined
39
+ const mount = useCallback(
40
+ (element: HTMLElement | null, selected?: boolean): (() => void) => {
41
+ if (!element) return () => undefined
41
42
 
42
- if (elementsRef.current.indexOf(element) === -1) {
43
- elementsRef.current.push(element)
44
- _sortElements(rootElementRef.current, elementsRef.current)
45
- }
43
+ if (elementsRef.current.indexOf(element) === -1) {
44
+ elementsRef.current.push(element)
45
+ _sortElements(rootElementRef.current, elementsRef.current)
46
+ }
46
47
 
47
- if (selected) {
48
- const selectedIndex = elementsRef.current.indexOf(element)
48
+ if (selected) {
49
+ const selectedIndex = elementsRef.current.indexOf(element)
49
50
 
50
- setActiveIndex(selectedIndex)
51
- }
51
+ setActiveIndex(selectedIndex)
52
+ }
52
53
 
53
- return () => {
54
- const idx = elementsRef.current.indexOf(element)
54
+ return () => {
55
+ const idx = elementsRef.current.indexOf(element)
55
56
 
56
- if (idx > -1) {
57
- elementsRef.current.splice(idx, 1)
57
+ if (idx > -1) {
58
+ elementsRef.current.splice(idx, 1)
59
+ }
58
60
  }
59
- }
60
- }
61
+ },
62
+ [rootElementRef, setActiveIndex],
63
+ )
61
64
 
62
65
  const handleKeyDown = useCallback(
63
66
  (event: React.KeyboardEvent<HTMLDivElement>) => {
@@ -167,7 +170,7 @@ export function useMenuController(props: {
167
170
  [setActiveIndex],
168
171
  )
169
172
 
170
- const handleItemMouseLeave = () => {
173
+ const handleItemMouseLeave = useCallback(() => {
171
174
  // Set the active index to -2 to deactivate all menu items
172
175
  // when the user moves the mouse away from the menu item.
173
176
  // We avoid using -1 because it would focus the first menu item,
@@ -175,7 +178,7 @@ export function useMenuController(props: {
175
178
  // between two menu items or a menu divider.
176
179
  setActiveIndex(-2)
177
180
  rootElementRef.current?.focus()
178
- }
181
+ }, [rootElementRef, setActiveIndex])
179
182
 
180
183
  // Set focus on the currently active element
181
184
  useEffect(() => {