@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 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
- | 'value'
116
+ | 'prefix'
114
117
  | 'ref'
118
+ | 'role'
115
119
  | 'spellCheck'
116
- | 'prefix'
117
- | 'autoCapitalize'
118
- | 'autoCorrect'
119
- | 'inputMode'
120
- | 'as'
121
- | 'autoComplete'
120
+ | 'type'
121
+ | 'value'
122
122
  > & {
123
- ref?: Ref<HTMLInputElement> | undefined
123
+ ref?: Ref<HTMLInputElement>
124
124
  },
125
125
  ) => ReactElement
126
126