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

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.22",
4
4
  "keywords": [
5
5
  "react",
6
6
  "ui",
@@ -141,7 +141,7 @@
141
141
  "@testing-library/react": "^16.3.0",
142
142
  "@testing-library/user-event": "^14.6.1",
143
143
  "@types/node": "^24.0.3",
144
- "@types/react": "^19.1.9",
144
+ "@types/react": "^19.1.10",
145
145
  "@types/react-dom": "^19.1.7",
146
146
  "@types/react-is": "^19.0.0",
147
147
  "@vanilla-extract/css": "^1.17.4",
@@ -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.2",
171
171
  "globals": "^16.3.0",
172
172
  "husky": "^8.0.3",
173
173
  "jsdom": "^26.1.0",
@@ -186,7 +186,7 @@
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",
189
+ "typescript-eslint": "^8.39.1",
190
190
  "vite": "^7.1.1",
191
191
  "vite-tsconfig-paths": "^5.1.4",
192
192
  "vitest": "^3.2.4",
@@ -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
  }