@sanity/ui 2.10.14 → 2.10.16

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.10.14",
3
+ "version": "2.10.16",
4
4
  "keywords": [
5
5
  "sanity",
6
6
  "ui",
@@ -107,7 +107,7 @@
107
107
  "dependencies": {
108
108
  "@floating-ui/react-dom": "^2.1.2",
109
109
  "@sanity/color": "^3.0.6",
110
- "@sanity/icons": "^3.5.6",
110
+ "@sanity/icons": "^3.5.7",
111
111
  "csstype": "^3.1.3",
112
112
  "framer-motion": "^11.15.0",
113
113
  "react-compiler-runtime": "19.0.0-beta-55955c9-20241229",
@@ -119,7 +119,7 @@
119
119
  "@babel/preset-env": "^7.26.0",
120
120
  "@babel/preset-react": "^7.26.3",
121
121
  "@babel/preset-typescript": "^7.26.0",
122
- "@commitlint/cli": "^19.6.0",
122
+ "@commitlint/cli": "^19.6.1",
123
123
  "@commitlint/config-conventional": "^19.6.0",
124
124
  "@juggle/resize-observer": "^3.4.0",
125
125
  "@sanity/pkg-utils": "^6.12.3",
@@ -156,7 +156,7 @@
156
156
  "@vitejs/plugin-react": "^4.3.4",
157
157
  "babel-plugin-react-compiler": "19.0.0-beta-55955c9-20241229",
158
158
  "commitizen": "^4.3.1",
159
- "cypress": "^13.16.1",
159
+ "cypress": "^13.17.0",
160
160
  "cypress-real-events": "^1.13.0",
161
161
  "cz-conventional-changelog": "^3.3.0",
162
162
  "eslint": "^8.57.1",
@@ -164,10 +164,10 @@
164
164
  "eslint-plugin-boundaries": "^5.0.1",
165
165
  "eslint-plugin-import": "^2.31.0",
166
166
  "eslint-plugin-jsx-a11y": "^6.10.2",
167
- "eslint-plugin-react": "^7.37.2",
167
+ "eslint-plugin-react": "^7.37.3",
168
168
  "eslint-plugin-react-compiler": "19.0.0-beta-55955c9-20241229",
169
169
  "eslint-plugin-react-hooks": "^5.1.0",
170
- "eslint-plugin-storybook": "^0.11.1",
170
+ "eslint-plugin-storybook": "^0.11.2",
171
171
  "http-server": "^14.1.1",
172
172
  "husky": "^8.0.3",
173
173
  "jest": "^29.7.0",
@@ -182,8 +182,8 @@
182
182
  "react-is": "^19.0.0",
183
183
  "refractor": "^4.8.1",
184
184
  "rimraf": "^5.0.5",
185
- "semantic-release": "^24.2.0",
186
- "start-server-and-test": "^2.0.8",
185
+ "semantic-release": "^24.2.1",
186
+ "start-server-and-test": "^2.0.9",
187
187
  "storybook": "^8.4.7",
188
188
  "styled-components": "^6.1.13",
189
189
  "tsconfig-paths": "^4.2.0",
@@ -197,7 +197,7 @@
197
197
  "react-is": "^18 || >=19.0.0-0",
198
198
  "styled-components": "^5.2 || ^6"
199
199
  },
200
- "packageManager": "pnpm@9.15.0",
200
+ "packageManager": "pnpm@9.15.2",
201
201
  "engines": {
202
202
  "node": ">=14.0.0"
203
203
  },
@@ -115,6 +115,7 @@ const InnerAutocomplete = forwardRef(function InnerAutocomplete<
115
115
  | 'inputMode'
116
116
  | 'onChange'
117
117
  | 'onSelect'
118
+ | 'popover'
118
119
  | 'prefix'
119
120
  | 'ref'
120
121
  | 'role'
@@ -663,7 +664,6 @@ const InnerAutocomplete = forwardRef(function InnerAutocomplete<
663
664
  radius={radius}
664
665
  ref={resultsPopoverElementRef}
665
666
  referenceElement={inputElementRef.current}
666
- // @ts-expect-error fix later
667
667
  {...popover}
668
668
  />
669
669
  )
@@ -716,6 +716,7 @@ export const Autocomplete = InnerAutocomplete as <Option extends BaseAutocomplet
716
716
  | 'inputMode'
717
717
  | 'onChange'
718
718
  | 'onSelect'
719
+ | 'popover'
719
720
  | 'prefix'
720
721
  | 'ref'
721
722
  | 'role'