@sanity/ui 4.0.0-static.21 → 4.0.0-static.23

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": "4.0.0-static.21",
3
+ "version": "4.0.0-static.23",
4
4
  "keywords": [
5
5
  "react",
6
6
  "ui",
@@ -113,7 +113,7 @@
113
113
  "extends": "@sanity/semantic-release-preset"
114
114
  },
115
115
  "dependencies": {
116
- "@floating-ui/react-dom": "^2.1.5",
116
+ "@floating-ui/react-dom": "^2.1.6",
117
117
  "@juggle/resize-observer": "^3.4.0",
118
118
  "@sanity/color": "^3.0.6",
119
119
  "@sanity/icons": "^3.7.4",
@@ -124,29 +124,29 @@
124
124
  "use-effect-event": "^2.0.3"
125
125
  },
126
126
  "devDependencies": {
127
- "@babel/core": "^7.28.0",
128
- "@babel/preset-env": "^7.28.0",
127
+ "@babel/core": "^7.28.3",
128
+ "@babel/preset-env": "^7.28.3",
129
129
  "@babel/preset-react": "^7.27.1",
130
130
  "@babel/preset-typescript": "^7.27.1",
131
131
  "@commitlint/cli": "^19.8.1",
132
132
  "@commitlint/config-conventional": "^19.8.1",
133
- "@eslint/js": "^9.33.0",
133
+ "@eslint/js": "^9.34.0",
134
134
  "@sanity/browserslist-config": "^1.0.5",
135
- "@sanity/pkg-utils": "^7.11.7",
135
+ "@sanity/pkg-utils": "^8.1.1",
136
136
  "@sanity/prettier-config": "^2.0.1",
137
137
  "@sanity/semantic-release-preset": "^5.0.0",
138
138
  "@sanity/ui-workshop": "4.0.0-static.11",
139
139
  "@testing-library/dom": "^10.4.1",
140
- "@testing-library/jest-dom": "^6.6.4",
140
+ "@testing-library/jest-dom": "^6.8.0",
141
141
  "@testing-library/react": "^16.3.0",
142
142
  "@testing-library/user-event": "^14.6.1",
143
- "@types/node": "^24.0.3",
144
- "@types/react": "^19.1.9",
145
- "@types/react-dom": "^19.1.7",
143
+ "@types/node": "^24.3.0",
144
+ "@types/react": "^19.1.11",
145
+ "@types/react-dom": "^19.1.8",
146
146
  "@types/react-is": "^19.0.0",
147
147
  "@vanilla-extract/css": "^1.17.4",
148
148
  "@vanilla-extract/vite-plugin": "^5.1.1",
149
- "@vitejs/plugin-react": "^5.0.0",
149
+ "@vitejs/plugin-react": "^5.0.1",
150
150
  "@vitest/browser": "^3.2.4",
151
151
  "babel-plugin-react-compiler": "19.1.0-rc.2",
152
152
  "browserslist-config-baseline": "^0.5.0",
@@ -156,7 +156,7 @@
156
156
  "cypress-real-events": "^1.14.0",
157
157
  "cz-conventional-changelog": "^3.3.0",
158
158
  "dotenv-flow": "^4.1.0",
159
- "eslint": "^9.33.0",
159
+ "eslint": "^9.34.0",
160
160
  "eslint-config-prettier": "^10.1.8",
161
161
  "eslint-formatter-compact": "^8.40.0",
162
162
  "eslint-plugin-boundaries": "^5.0.1",
@@ -167,7 +167,7 @@
167
167
  "eslint-plugin-react-hooks": "0.0.0-experimental-66f09bd0-20250806",
168
168
  "eslint-plugin-react-refresh": "^0.4.20",
169
169
  "eslint-plugin-simple-import-sort": "^12.1.1",
170
- "eslint-plugin-storybook": "^9.1.1",
170
+ "eslint-plugin-storybook": "^9.1.3",
171
171
  "globals": "^16.3.0",
172
172
  "husky": "^8.0.3",
173
173
  "jsdom": "^26.1.0",
@@ -186,8 +186,8 @@
186
186
  "styled-components": "^6.1.19",
187
187
  "tsconfig-paths": "^4.2.0",
188
188
  "typescript": "5.9.2",
189
- "typescript-eslint": "^8.39.0",
190
- "vite": "^7.1.1",
189
+ "typescript-eslint": "^8.41.0",
190
+ "vite": "^7.1.3",
191
191
  "vite-tsconfig-paths": "^5.1.4",
192
192
  "vitest": "^3.2.4",
193
193
  "vitest-axe": "1.0.0-pre.5"
@@ -63,7 +63,7 @@ export type AutocompleteOwnProps<O extends BaseAutocompleteOption = BaseAutocomp
63
63
  /** The options to render. */
64
64
  options?: O[]
65
65
  padding?: ResponsiveProp<Space>
66
- popover?: Omit<Props<PopoverProps, 'div'>, 'content' | 'onMouseEnter' | 'onMouseLeave' | 'open'>
66
+ popover?: Omit<PopoverProps<'div'>, 'content' | 'onMouseEnter' | 'onMouseLeave' | 'open'>
67
67
  prefix?: ReactNode
68
68
  radius?: Radius | Radius[]
69
69
  /** @beta */
@@ -29,7 +29,7 @@ export type MenuButtonProps = {
29
29
  menu?: ReactElement
30
30
  onClose?: () => void
31
31
  onOpen?: () => void
32
- popover?: Omit<PopoverProps, 'content' | 'open'>
32
+ popover?: Omit<PopoverProps<'div'>, 'content' | 'open'>
33
33
 
34
34
  ref?: ForwardedRef<HTMLButtonElement | null>
35
35
  }
@@ -43,7 +43,7 @@ export type MenuGroupOwnProps = RadiusStyleProps & {
43
43
  | 'onBlurCapture'
44
44
  >
45
45
  padding?: ResponsiveProp<Space>
46
- popover?: Omit<PopoverProps, 'content' | 'open'>
46
+ popover?: Omit<PopoverProps<'div'>, 'content' | 'open'>
47
47
  text?: ReactNode
48
48
  tone?: ElementTone
49
49
  }