@sanity/ui 2.0.6 → 2.0.8
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.d.ts +11 -11
- package/dist/index.esm.js +1546 -3280
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1434 -3304
- package/dist/index.js.map +1 -1
- package/dist/theme.esm.js +404 -692
- package/dist/theme.esm.js.map +1 -1
- package/dist/theme.js +352 -694
- package/dist/theme.js.map +1 -1
- package/package.json +26 -33
- package/theme.js +2 -0
- package/dist/index.cjs.mjs +0 -125
- package/dist/theme.cjs.mjs +0 -54
package/dist/index.d.ts
CHANGED
|
@@ -101,26 +101,26 @@ export declare const Autocomplete: <Option extends BaseAutocompleteOption>(
|
|
|
101
101
|
props: AutocompleteProps<Option> &
|
|
102
102
|
Omit<
|
|
103
103
|
HTMLProps<HTMLInputElement>,
|
|
104
|
-
| 'id'
|
|
105
|
-
| 'type'
|
|
106
|
-
| 'role'
|
|
107
104
|
| 'aria-activedescendant'
|
|
108
105
|
| 'aria-autocomplete'
|
|
109
106
|
| 'aria-expanded'
|
|
110
107
|
| 'aria-owns'
|
|
108
|
+
| 'as'
|
|
109
|
+
| 'autoCapitalize'
|
|
110
|
+
| 'autoComplete'
|
|
111
|
+
| 'autoCorrect'
|
|
112
|
+
| 'id'
|
|
113
|
+
| 'inputMode'
|
|
111
114
|
| 'onChange'
|
|
112
115
|
| 'onSelect'
|
|
113
|
-
| '
|
|
116
|
+
| 'prefix'
|
|
114
117
|
| 'ref'
|
|
118
|
+
| 'role'
|
|
115
119
|
| 'spellCheck'
|
|
116
|
-
| '
|
|
117
|
-
| '
|
|
118
|
-
| 'autoCorrect'
|
|
119
|
-
| 'inputMode'
|
|
120
|
-
| 'as'
|
|
121
|
-
| 'autoComplete'
|
|
120
|
+
| 'type'
|
|
121
|
+
| 'value'
|
|
122
122
|
> & {
|
|
123
|
-
ref?: Ref<HTMLInputElement>
|
|
123
|
+
ref?: Ref<HTMLInputElement>
|
|
124
124
|
},
|
|
125
125
|
) => ReactElement
|
|
126
126
|
|