amis 1.9.1-beta.25 → 1.9.1-beta.28
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/components/Select.d.ts +388 -193
- package/lib/components/Select.js +9 -6
- package/lib/components/Select.js.map +2 -2
- package/lib/factory.js +1 -1
- package/lib/factory.js.map +2 -2
- package/lib/index.js +1 -1
- package/lib/renderers/Dialog.d.ts +147 -169
- package/lib/renderers/Dialog.js.map +2 -2
- package/lib/renderers/Form/InputText.js +7 -1
- package/lib/renderers/Form/InputText.js.map +2 -2
- package/lib/renderers/Form/Item.js +2 -1
- package/lib/renderers/Form/Item.js.map +2 -2
- package/lib/renderers/Form/Select.d.ts +5 -0
- package/lib/renderers/Form/Select.js +4 -3
- package/lib/renderers/Form/Select.js.map +2 -2
- package/lib/renderers/Form/index.d.ts +4 -4
- package/lib/renderers/Form/index.js +256 -252
- package/lib/renderers/Form/index.js.map +2 -2
- package/lib/renderers/Steps.js +2 -1
- package/lib/renderers/Steps.js.map +2 -2
- package/lib/renderers/Table/index.d.ts +2 -0
- package/lib/renderers/Table/index.js +75 -30
- package/lib/renderers/Table/index.js.map +2 -2
- package/lib/themes/ang-ie11.css +8 -3
- package/lib/themes/ang.css +7 -0
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +26 -21
- package/lib/themes/antd.css +11 -0
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +5 -0
- package/lib/themes/cxd.css +7 -2
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +8 -3
- package/lib/themes/dark.css +7 -0
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default-ie11.css +5 -0
- package/lib/themes/default.css +7 -2
- package/lib/themes/default.css.map +1 -1
- package/lib/utils/helper.js +2 -1
- package/lib/utils/helper.js.map +2 -2
- package/package.json +1 -1
- package/schema.json +36 -26
- package/scss/_properties.scss +5 -0
- package/scss/components/_table.scss +9 -1
- package/scss/themes/_antd-variables.scss +6 -0
- package/scss/themes/_cxd-variables.scss +0 -2
- package/sdk/ang-ie11.css +10 -3
- package/sdk/ang.css +9 -0
- package/sdk/antd-ie11.css +28 -21
- package/sdk/antd.css +13 -0
- package/sdk/barcode.js +51 -51
- package/sdk/charts.js +14 -14
- package/sdk/codemirror.js +7 -7
- package/sdk/color-picker.js +65 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +7 -0
- package/sdk/cxd.css +9 -2
- package/sdk/dark-ie11.css +10 -3
- package/sdk/dark.css +9 -0
- package/sdk/exceljs.js +1 -1
- package/sdk/markdown.js +69 -69
- package/sdk/papaparse.js +1 -1
- package/sdk/renderers/Form/CityDB.js +1 -1
- package/sdk/rest.js +16 -16
- package/sdk/rich-text.js +62 -62
- package/sdk/sdk-ie11.css +7 -0
- package/sdk/sdk.css +9 -2
- package/sdk/sdk.js +1648 -1643
- package/sdk/thirds/hls.js/hls.js +1 -1
- package/sdk/thirds/mpegts.js/mpegts.js +1 -1
- package/sdk/tinymce.js +57 -57
- package/src/components/Select.tsx +10 -5
- package/src/factory.tsx +1 -1
- package/src/renderers/Dialog.tsx +0 -1
- package/src/renderers/Form/InputText.tsx +9 -1
- package/src/renderers/Form/Item.tsx +2 -1
- package/src/renderers/Form/Select.tsx +10 -1
- package/src/renderers/Form/index.tsx +18 -25
- package/src/renderers/Steps.tsx +7 -2
- package/src/renderers/Table/index.tsx +82 -30
- package/src/utils/helper.ts +2 -1
@@ -56,6 +56,7 @@ export declare function normalizeOptions(options: string | {
|
|
56
56
|
interface SelectProps extends OptionProps, ThemeProps, LocaleProps {
|
57
57
|
className?: string;
|
58
58
|
popoverClassName?: string;
|
59
|
+
showInvalidMatch?: boolean;
|
59
60
|
creatable: boolean;
|
60
61
|
createBtnLabel: string;
|
61
62
|
multiple: boolean;
|
@@ -132,6 +133,7 @@ export declare class Select extends React.Component<SelectProps, SelectState> {
|
|
132
133
|
multiple: boolean;
|
133
134
|
clearable: boolean;
|
134
135
|
creatable: boolean;
|
136
|
+
showInvalidMatch: boolean;
|
135
137
|
createBtnLabel: string;
|
136
138
|
searchPromptText: string;
|
137
139
|
loadingPlaceholder: string;
|
@@ -184,10 +186,11 @@ export declare class Select extends React.Component<SelectProps, SelectState> {
|
|
184
186
|
render(): JSX.Element;
|
185
187
|
}
|
186
188
|
declare const EnhancedSelect: {
|
187
|
-
new (props: Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
189
|
+
new (props: Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
188
190
|
multiple: boolean;
|
189
191
|
clearable: boolean;
|
190
192
|
creatable: boolean;
|
193
|
+
showInvalidMatch: boolean;
|
191
194
|
createBtnLabel: string;
|
192
195
|
searchPromptText: string;
|
193
196
|
loadingPlaceholder: string;
|
@@ -214,10 +217,11 @@ declare const EnhancedSelect: {
|
|
214
217
|
getWrappedInstance(): any;
|
215
218
|
render(): JSX.Element;
|
216
219
|
context: any;
|
217
|
-
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
220
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
218
221
|
multiple: boolean;
|
219
222
|
clearable: boolean;
|
220
223
|
creatable: boolean;
|
224
|
+
showInvalidMatch: boolean;
|
221
225
|
createBtnLabel: string;
|
222
226
|
searchPromptText: string;
|
223
227
|
loadingPlaceholder: string;
|
@@ -240,10 +244,11 @@ declare const EnhancedSelect: {
|
|
240
244
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
241
245
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
242
246
|
forceUpdate(callback?: (() => void) | undefined): void;
|
243
|
-
readonly props: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
247
|
+
readonly props: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
244
248
|
multiple: boolean;
|
245
249
|
clearable: boolean;
|
246
250
|
creatable: boolean;
|
251
|
+
showInvalidMatch: boolean;
|
247
252
|
createBtnLabel: string;
|
248
253
|
searchPromptText: string;
|
249
254
|
loadingPlaceholder: string;
|
@@ -272,10 +277,11 @@ declare const EnhancedSelect: {
|
|
272
277
|
[key: string]: React.ReactInstance;
|
273
278
|
};
|
274
279
|
componentDidMount?(): void;
|
275
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
280
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
276
281
|
multiple: boolean;
|
277
282
|
clearable: boolean;
|
278
283
|
creatable: boolean;
|
284
|
+
showInvalidMatch: boolean;
|
279
285
|
createBtnLabel: string;
|
280
286
|
searchPromptText: string;
|
281
287
|
loadingPlaceholder: string;
|
@@ -299,10 +305,11 @@ declare const EnhancedSelect: {
|
|
299
305
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
300
306
|
componentWillUnmount?(): void;
|
301
307
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
302
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
308
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
303
309
|
multiple: boolean;
|
304
310
|
clearable: boolean;
|
305
311
|
creatable: boolean;
|
312
|
+
showInvalidMatch: boolean;
|
306
313
|
createBtnLabel: string;
|
307
314
|
searchPromptText: string;
|
308
315
|
loadingPlaceholder: string;
|
@@ -324,10 +331,11 @@ declare const EnhancedSelect: {
|
|
324
331
|
locale?: string | undefined;
|
325
332
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
326
333
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
327
|
-
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
334
|
+
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
328
335
|
multiple: boolean;
|
329
336
|
clearable: boolean;
|
330
337
|
creatable: boolean;
|
338
|
+
showInvalidMatch: boolean;
|
331
339
|
createBtnLabel: string;
|
332
340
|
searchPromptText: string;
|
333
341
|
loadingPlaceholder: string;
|
@@ -351,10 +359,11 @@ declare const EnhancedSelect: {
|
|
351
359
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
352
360
|
componentWillMount?(): void;
|
353
361
|
UNSAFE_componentWillMount?(): void;
|
354
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
362
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
355
363
|
multiple: boolean;
|
356
364
|
clearable: boolean;
|
357
365
|
creatable: boolean;
|
366
|
+
showInvalidMatch: boolean;
|
358
367
|
createBtnLabel: string;
|
359
368
|
searchPromptText: string;
|
360
369
|
loadingPlaceholder: string;
|
@@ -376,10 +385,11 @@ declare const EnhancedSelect: {
|
|
376
385
|
locale?: string | undefined;
|
377
386
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
378
387
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
379
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
388
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
380
389
|
multiple: boolean;
|
381
390
|
clearable: boolean;
|
382
391
|
creatable: boolean;
|
392
|
+
showInvalidMatch: boolean;
|
383
393
|
createBtnLabel: string;
|
384
394
|
searchPromptText: string;
|
385
395
|
loadingPlaceholder: string;
|
@@ -401,10 +411,11 @@ declare const EnhancedSelect: {
|
|
401
411
|
locale?: string | undefined;
|
402
412
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
403
413
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
404
|
-
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
414
|
+
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
405
415
|
multiple: boolean;
|
406
416
|
clearable: boolean;
|
407
417
|
creatable: boolean;
|
418
|
+
showInvalidMatch: boolean;
|
408
419
|
createBtnLabel: string;
|
409
420
|
searchPromptText: string;
|
410
421
|
loadingPlaceholder: string;
|
@@ -426,10 +437,11 @@ declare const EnhancedSelect: {
|
|
426
437
|
locale?: string | undefined;
|
427
438
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
428
439
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
429
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
440
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
430
441
|
multiple: boolean;
|
431
442
|
clearable: boolean;
|
432
443
|
creatable: boolean;
|
444
|
+
showInvalidMatch: boolean;
|
433
445
|
createBtnLabel: string;
|
434
446
|
searchPromptText: string;
|
435
447
|
loadingPlaceholder: string;
|
@@ -455,10 +467,11 @@ declare const EnhancedSelect: {
|
|
455
467
|
displayName: string;
|
456
468
|
contextType: React.Context<string>;
|
457
469
|
ComposedComponent: React.ComponentType<{
|
458
|
-
new (props: Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
470
|
+
new (props: Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
459
471
|
multiple: boolean;
|
460
472
|
clearable: boolean;
|
461
473
|
creatable: boolean;
|
474
|
+
showInvalidMatch: boolean;
|
462
475
|
createBtnLabel: string;
|
463
476
|
searchPromptText: string;
|
464
477
|
loadingPlaceholder: string;
|
@@ -485,10 +498,11 @@ declare const EnhancedSelect: {
|
|
485
498
|
getWrappedInstance(): any;
|
486
499
|
render(): JSX.Element;
|
487
500
|
context: any;
|
488
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
501
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
489
502
|
multiple: boolean;
|
490
503
|
clearable: boolean;
|
491
504
|
creatable: boolean;
|
505
|
+
showInvalidMatch: boolean;
|
492
506
|
createBtnLabel: string;
|
493
507
|
searchPromptText: string;
|
494
508
|
loadingPlaceholder: string;
|
@@ -511,10 +525,11 @@ declare const EnhancedSelect: {
|
|
511
525
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
512
526
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
513
527
|
forceUpdate(callback?: (() => void) | undefined): void;
|
514
|
-
readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
528
|
+
readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
515
529
|
multiple: boolean;
|
516
530
|
clearable: boolean;
|
517
531
|
creatable: boolean;
|
532
|
+
showInvalidMatch: boolean;
|
518
533
|
createBtnLabel: string;
|
519
534
|
searchPromptText: string;
|
520
535
|
loadingPlaceholder: string;
|
@@ -543,10 +558,11 @@ declare const EnhancedSelect: {
|
|
543
558
|
[key: string]: React.ReactInstance;
|
544
559
|
};
|
545
560
|
componentDidMount?(): void;
|
546
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
561
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
547
562
|
multiple: boolean;
|
548
563
|
clearable: boolean;
|
549
564
|
creatable: boolean;
|
565
|
+
showInvalidMatch: boolean;
|
550
566
|
createBtnLabel: string;
|
551
567
|
searchPromptText: string;
|
552
568
|
loadingPlaceholder: string;
|
@@ -570,10 +586,11 @@ declare const EnhancedSelect: {
|
|
570
586
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
571
587
|
componentWillUnmount?(): void;
|
572
588
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
573
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
589
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
574
590
|
multiple: boolean;
|
575
591
|
clearable: boolean;
|
576
592
|
creatable: boolean;
|
593
|
+
showInvalidMatch: boolean;
|
577
594
|
createBtnLabel: string;
|
578
595
|
searchPromptText: string;
|
579
596
|
loadingPlaceholder: string;
|
@@ -595,10 +612,11 @@ declare const EnhancedSelect: {
|
|
595
612
|
locale?: string | undefined;
|
596
613
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
597
614
|
}>, prevState: Readonly<{}>): any;
|
598
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
615
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
599
616
|
multiple: boolean;
|
600
617
|
clearable: boolean;
|
601
618
|
creatable: boolean;
|
619
|
+
showInvalidMatch: boolean;
|
602
620
|
createBtnLabel: string;
|
603
621
|
searchPromptText: string;
|
604
622
|
loadingPlaceholder: string;
|
@@ -622,10 +640,11 @@ declare const EnhancedSelect: {
|
|
622
640
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
623
641
|
componentWillMount?(): void;
|
624
642
|
UNSAFE_componentWillMount?(): void;
|
625
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
643
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
626
644
|
multiple: boolean;
|
627
645
|
clearable: boolean;
|
628
646
|
creatable: boolean;
|
647
|
+
showInvalidMatch: boolean;
|
629
648
|
createBtnLabel: string;
|
630
649
|
searchPromptText: string;
|
631
650
|
loadingPlaceholder: string;
|
@@ -647,10 +666,11 @@ declare const EnhancedSelect: {
|
|
647
666
|
locale?: string | undefined;
|
648
667
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
649
668
|
}>, nextContext: any): void;
|
650
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
669
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
651
670
|
multiple: boolean;
|
652
671
|
clearable: boolean;
|
653
672
|
creatable: boolean;
|
673
|
+
showInvalidMatch: boolean;
|
654
674
|
createBtnLabel: string;
|
655
675
|
searchPromptText: string;
|
656
676
|
loadingPlaceholder: string;
|
@@ -672,10 +692,11 @@ declare const EnhancedSelect: {
|
|
672
692
|
locale?: string | undefined;
|
673
693
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
674
694
|
}>, nextContext: any): void;
|
675
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
695
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
676
696
|
multiple: boolean;
|
677
697
|
clearable: boolean;
|
678
698
|
creatable: boolean;
|
699
|
+
showInvalidMatch: boolean;
|
679
700
|
createBtnLabel: string;
|
680
701
|
searchPromptText: string;
|
681
702
|
loadingPlaceholder: string;
|
@@ -697,10 +718,11 @@ declare const EnhancedSelect: {
|
|
697
718
|
locale?: string | undefined;
|
698
719
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
699
720
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
700
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
721
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
701
722
|
multiple: boolean;
|
702
723
|
clearable: boolean;
|
703
724
|
creatable: boolean;
|
725
|
+
showInvalidMatch: boolean;
|
704
726
|
createBtnLabel: string;
|
705
727
|
searchPromptText: string;
|
706
728
|
loadingPlaceholder: string;
|
@@ -730,10 +752,11 @@ declare const EnhancedSelect: {
|
|
730
752
|
ComposedComponent: typeof Select;
|
731
753
|
}>;
|
732
754
|
} & import("hoist-non-react-statics").NonReactStatics<{
|
733
|
-
new (props: Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
755
|
+
new (props: Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
734
756
|
multiple: boolean;
|
735
757
|
clearable: boolean;
|
736
758
|
creatable: boolean;
|
759
|
+
showInvalidMatch: boolean;
|
737
760
|
createBtnLabel: string;
|
738
761
|
searchPromptText: string;
|
739
762
|
loadingPlaceholder: string;
|
@@ -760,10 +783,11 @@ declare const EnhancedSelect: {
|
|
760
783
|
getWrappedInstance(): any;
|
761
784
|
render(): JSX.Element;
|
762
785
|
context: any;
|
763
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
786
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
764
787
|
multiple: boolean;
|
765
788
|
clearable: boolean;
|
766
789
|
creatable: boolean;
|
790
|
+
showInvalidMatch: boolean;
|
767
791
|
createBtnLabel: string;
|
768
792
|
searchPromptText: string;
|
769
793
|
loadingPlaceholder: string;
|
@@ -786,10 +810,11 @@ declare const EnhancedSelect: {
|
|
786
810
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
787
811
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
788
812
|
forceUpdate(callback?: (() => void) | undefined): void;
|
789
|
-
readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
813
|
+
readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
790
814
|
multiple: boolean;
|
791
815
|
clearable: boolean;
|
792
816
|
creatable: boolean;
|
817
|
+
showInvalidMatch: boolean;
|
793
818
|
createBtnLabel: string;
|
794
819
|
searchPromptText: string;
|
795
820
|
loadingPlaceholder: string;
|
@@ -818,10 +843,11 @@ declare const EnhancedSelect: {
|
|
818
843
|
[key: string]: React.ReactInstance;
|
819
844
|
};
|
820
845
|
componentDidMount?(): void;
|
821
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
846
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
822
847
|
multiple: boolean;
|
823
848
|
clearable: boolean;
|
824
849
|
creatable: boolean;
|
850
|
+
showInvalidMatch: boolean;
|
825
851
|
createBtnLabel: string;
|
826
852
|
searchPromptText: string;
|
827
853
|
loadingPlaceholder: string;
|
@@ -845,10 +871,11 @@ declare const EnhancedSelect: {
|
|
845
871
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
846
872
|
componentWillUnmount?(): void;
|
847
873
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
848
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
874
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
849
875
|
multiple: boolean;
|
850
876
|
clearable: boolean;
|
851
877
|
creatable: boolean;
|
878
|
+
showInvalidMatch: boolean;
|
852
879
|
createBtnLabel: string;
|
853
880
|
searchPromptText: string;
|
854
881
|
loadingPlaceholder: string;
|
@@ -870,10 +897,11 @@ declare const EnhancedSelect: {
|
|
870
897
|
locale?: string | undefined;
|
871
898
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
872
899
|
}>, prevState: Readonly<{}>): any;
|
873
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
900
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
874
901
|
multiple: boolean;
|
875
902
|
clearable: boolean;
|
876
903
|
creatable: boolean;
|
904
|
+
showInvalidMatch: boolean;
|
877
905
|
createBtnLabel: string;
|
878
906
|
searchPromptText: string;
|
879
907
|
loadingPlaceholder: string;
|
@@ -897,10 +925,11 @@ declare const EnhancedSelect: {
|
|
897
925
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
898
926
|
componentWillMount?(): void;
|
899
927
|
UNSAFE_componentWillMount?(): void;
|
900
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
928
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
901
929
|
multiple: boolean;
|
902
930
|
clearable: boolean;
|
903
931
|
creatable: boolean;
|
932
|
+
showInvalidMatch: boolean;
|
904
933
|
createBtnLabel: string;
|
905
934
|
searchPromptText: string;
|
906
935
|
loadingPlaceholder: string;
|
@@ -922,10 +951,11 @@ declare const EnhancedSelect: {
|
|
922
951
|
locale?: string | undefined;
|
923
952
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
924
953
|
}>, nextContext: any): void;
|
925
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
954
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
926
955
|
multiple: boolean;
|
927
956
|
clearable: boolean;
|
928
957
|
creatable: boolean;
|
958
|
+
showInvalidMatch: boolean;
|
929
959
|
createBtnLabel: string;
|
930
960
|
searchPromptText: string;
|
931
961
|
loadingPlaceholder: string;
|
@@ -947,10 +977,11 @@ declare const EnhancedSelect: {
|
|
947
977
|
locale?: string | undefined;
|
948
978
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
949
979
|
}>, nextContext: any): void;
|
950
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
980
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
951
981
|
multiple: boolean;
|
952
982
|
clearable: boolean;
|
953
983
|
creatable: boolean;
|
984
|
+
showInvalidMatch: boolean;
|
954
985
|
createBtnLabel: string;
|
955
986
|
searchPromptText: string;
|
956
987
|
loadingPlaceholder: string;
|
@@ -972,10 +1003,11 @@ declare const EnhancedSelect: {
|
|
972
1003
|
locale?: string | undefined;
|
973
1004
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
974
1005
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
975
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1006
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
976
1007
|
multiple: boolean;
|
977
1008
|
clearable: boolean;
|
978
1009
|
creatable: boolean;
|
1010
|
+
showInvalidMatch: boolean;
|
979
1011
|
createBtnLabel: string;
|
980
1012
|
searchPromptText: string;
|
981
1013
|
loadingPlaceholder: string;
|
@@ -1005,10 +1037,11 @@ declare const EnhancedSelect: {
|
|
1005
1037
|
ComposedComponent: typeof Select;
|
1006
1038
|
}, {}> & {
|
1007
1039
|
ComposedComponent: {
|
1008
|
-
new (props: Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1040
|
+
new (props: Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1009
1041
|
multiple: boolean;
|
1010
1042
|
clearable: boolean;
|
1011
1043
|
creatable: boolean;
|
1044
|
+
showInvalidMatch: boolean;
|
1012
1045
|
createBtnLabel: string;
|
1013
1046
|
searchPromptText: string;
|
1014
1047
|
loadingPlaceholder: string;
|
@@ -1035,10 +1068,11 @@ declare const EnhancedSelect: {
|
|
1035
1068
|
getWrappedInstance(): any;
|
1036
1069
|
render(): JSX.Element;
|
1037
1070
|
context: any;
|
1038
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1071
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1039
1072
|
multiple: boolean;
|
1040
1073
|
clearable: boolean;
|
1041
1074
|
creatable: boolean;
|
1075
|
+
showInvalidMatch: boolean;
|
1042
1076
|
createBtnLabel: string;
|
1043
1077
|
searchPromptText: string;
|
1044
1078
|
loadingPlaceholder: string;
|
@@ -1061,10 +1095,11 @@ declare const EnhancedSelect: {
|
|
1061
1095
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1062
1096
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
1063
1097
|
forceUpdate(callback?: (() => void) | undefined): void;
|
1064
|
-
readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1098
|
+
readonly props: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1065
1099
|
multiple: boolean;
|
1066
1100
|
clearable: boolean;
|
1067
1101
|
creatable: boolean;
|
1102
|
+
showInvalidMatch: boolean;
|
1068
1103
|
createBtnLabel: string;
|
1069
1104
|
searchPromptText: string;
|
1070
1105
|
loadingPlaceholder: string;
|
@@ -1093,10 +1128,11 @@ declare const EnhancedSelect: {
|
|
1093
1128
|
[key: string]: React.ReactInstance;
|
1094
1129
|
};
|
1095
1130
|
componentDidMount?(): void;
|
1096
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1131
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1097
1132
|
multiple: boolean;
|
1098
1133
|
clearable: boolean;
|
1099
1134
|
creatable: boolean;
|
1135
|
+
showInvalidMatch: boolean;
|
1100
1136
|
createBtnLabel: string;
|
1101
1137
|
searchPromptText: string;
|
1102
1138
|
loadingPlaceholder: string;
|
@@ -1120,10 +1156,11 @@ declare const EnhancedSelect: {
|
|
1120
1156
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
1121
1157
|
componentWillUnmount?(): void;
|
1122
1158
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
1123
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1159
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1124
1160
|
multiple: boolean;
|
1125
1161
|
clearable: boolean;
|
1126
1162
|
creatable: boolean;
|
1163
|
+
showInvalidMatch: boolean;
|
1127
1164
|
createBtnLabel: string;
|
1128
1165
|
searchPromptText: string;
|
1129
1166
|
loadingPlaceholder: string;
|
@@ -1145,10 +1182,11 @@ declare const EnhancedSelect: {
|
|
1145
1182
|
locale?: string | undefined;
|
1146
1183
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1147
1184
|
}>, prevState: Readonly<{}>): any;
|
1148
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1185
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1149
1186
|
multiple: boolean;
|
1150
1187
|
clearable: boolean;
|
1151
1188
|
creatable: boolean;
|
1189
|
+
showInvalidMatch: boolean;
|
1152
1190
|
createBtnLabel: string;
|
1153
1191
|
searchPromptText: string;
|
1154
1192
|
loadingPlaceholder: string;
|
@@ -1172,10 +1210,11 @@ declare const EnhancedSelect: {
|
|
1172
1210
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
1173
1211
|
componentWillMount?(): void;
|
1174
1212
|
UNSAFE_componentWillMount?(): void;
|
1175
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1213
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1176
1214
|
multiple: boolean;
|
1177
1215
|
clearable: boolean;
|
1178
1216
|
creatable: boolean;
|
1217
|
+
showInvalidMatch: boolean;
|
1179
1218
|
createBtnLabel: string;
|
1180
1219
|
searchPromptText: string;
|
1181
1220
|
loadingPlaceholder: string;
|
@@ -1197,10 +1236,11 @@ declare const EnhancedSelect: {
|
|
1197
1236
|
locale?: string | undefined;
|
1198
1237
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1199
1238
|
}>, nextContext: any): void;
|
1200
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1239
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1201
1240
|
multiple: boolean;
|
1202
1241
|
clearable: boolean;
|
1203
1242
|
creatable: boolean;
|
1243
|
+
showInvalidMatch: boolean;
|
1204
1244
|
createBtnLabel: string;
|
1205
1245
|
searchPromptText: string;
|
1206
1246
|
loadingPlaceholder: string;
|
@@ -1222,10 +1262,11 @@ declare const EnhancedSelect: {
|
|
1222
1262
|
locale?: string | undefined;
|
1223
1263
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1224
1264
|
}>, nextContext: any): void;
|
1225
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1265
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1226
1266
|
multiple: boolean;
|
1227
1267
|
clearable: boolean;
|
1228
1268
|
creatable: boolean;
|
1269
|
+
showInvalidMatch: boolean;
|
1229
1270
|
createBtnLabel: string;
|
1230
1271
|
searchPromptText: string;
|
1231
1272
|
loadingPlaceholder: string;
|
@@ -1247,10 +1288,11 @@ declare const EnhancedSelect: {
|
|
1247
1288
|
locale?: string | undefined;
|
1248
1289
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1249
1290
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
1250
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1291
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1251
1292
|
multiple: boolean;
|
1252
1293
|
clearable: boolean;
|
1253
1294
|
creatable: boolean;
|
1295
|
+
showInvalidMatch: boolean;
|
1254
1296
|
createBtnLabel: string;
|
1255
1297
|
searchPromptText: string;
|
1256
1298
|
loadingPlaceholder: string;
|
@@ -1282,10 +1324,11 @@ declare const EnhancedSelect: {
|
|
1282
1324
|
};
|
1283
1325
|
export default EnhancedSelect;
|
1284
1326
|
export declare const SelectWithRemoteOptions: {
|
1285
|
-
new (props: Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1327
|
+
new (props: Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1286
1328
|
multiple: boolean;
|
1287
1329
|
clearable: boolean;
|
1288
1330
|
creatable: boolean;
|
1331
|
+
showInvalidMatch: boolean;
|
1289
1332
|
createBtnLabel: string;
|
1290
1333
|
searchPromptText: string;
|
1291
1334
|
loadingPlaceholder: string;
|
@@ -1328,10 +1371,11 @@ export declare const SelectWithRemoteOptions: {
|
|
1328
1371
|
setData(data: any): void;
|
1329
1372
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
1330
1373
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
1331
|
-
}, "store"> | Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1374
|
+
}, "store"> | Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1332
1375
|
multiple: boolean;
|
1333
1376
|
clearable: boolean;
|
1334
1377
|
creatable: boolean;
|
1378
|
+
showInvalidMatch: boolean;
|
1335
1379
|
createBtnLabel: string;
|
1336
1380
|
searchPromptText: string;
|
1337
1381
|
loadingPlaceholder: string;
|
@@ -1402,10 +1446,11 @@ export declare const SelectWithRemoteOptions: {
|
|
1402
1446
|
getWrappedInstance(): any;
|
1403
1447
|
render(): JSX.Element;
|
1404
1448
|
context: any;
|
1405
|
-
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1449
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1406
1450
|
multiple: boolean;
|
1407
1451
|
clearable: boolean;
|
1408
1452
|
creatable: boolean;
|
1453
|
+
showInvalidMatch: boolean;
|
1409
1454
|
createBtnLabel: string;
|
1410
1455
|
searchPromptText: string;
|
1411
1456
|
loadingPlaceholder: string;
|
@@ -1450,10 +1495,11 @@ export declare const SelectWithRemoteOptions: {
|
|
1450
1495
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
1451
1496
|
}, "store">>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
1452
1497
|
forceUpdate(callback?: (() => void) | undefined): void;
|
1453
|
-
readonly props: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1498
|
+
readonly props: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1454
1499
|
multiple: boolean;
|
1455
1500
|
clearable: boolean;
|
1456
1501
|
creatable: boolean;
|
1502
|
+
showInvalidMatch: boolean;
|
1457
1503
|
createBtnLabel: string;
|
1458
1504
|
searchPromptText: string;
|
1459
1505
|
loadingPlaceholder: string;
|
@@ -1504,10 +1550,11 @@ export declare const SelectWithRemoteOptions: {
|
|
1504
1550
|
[key: string]: React.ReactInstance;
|
1505
1551
|
};
|
1506
1552
|
componentDidMount?(): void;
|
1507
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1553
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1508
1554
|
multiple: boolean;
|
1509
1555
|
clearable: boolean;
|
1510
1556
|
creatable: boolean;
|
1557
|
+
showInvalidMatch: boolean;
|
1511
1558
|
createBtnLabel: string;
|
1512
1559
|
searchPromptText: string;
|
1513
1560
|
loadingPlaceholder: string;
|
@@ -1552,10 +1599,11 @@ export declare const SelectWithRemoteOptions: {
|
|
1552
1599
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
1553
1600
|
}, "store">>, nextState: Readonly<{}>, nextContext: any): boolean;
|
1554
1601
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
1555
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1602
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1556
1603
|
multiple: boolean;
|
1557
1604
|
clearable: boolean;
|
1558
1605
|
creatable: boolean;
|
1606
|
+
showInvalidMatch: boolean;
|
1559
1607
|
createBtnLabel: string;
|
1560
1608
|
searchPromptText: string;
|
1561
1609
|
loadingPlaceholder: string;
|
@@ -1599,10 +1647,11 @@ export declare const SelectWithRemoteOptions: {
|
|
1599
1647
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
1600
1648
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
1601
1649
|
}, "store">>, prevState: Readonly<{}>): any;
|
1602
|
-
componentDidUpdate?(prevProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1650
|
+
componentDidUpdate?(prevProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1603
1651
|
multiple: boolean;
|
1604
1652
|
clearable: boolean;
|
1605
1653
|
creatable: boolean;
|
1654
|
+
showInvalidMatch: boolean;
|
1606
1655
|
createBtnLabel: string;
|
1607
1656
|
searchPromptText: string;
|
1608
1657
|
loadingPlaceholder: string;
|
@@ -1648,10 +1697,11 @@ export declare const SelectWithRemoteOptions: {
|
|
1648
1697
|
}, "store">>, prevState: Readonly<{}>, snapshot?: any): void;
|
1649
1698
|
componentWillMount?(): void;
|
1650
1699
|
UNSAFE_componentWillMount?(): void;
|
1651
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1700
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1652
1701
|
multiple: boolean;
|
1653
1702
|
clearable: boolean;
|
1654
1703
|
creatable: boolean;
|
1704
|
+
showInvalidMatch: boolean;
|
1655
1705
|
createBtnLabel: string;
|
1656
1706
|
searchPromptText: string;
|
1657
1707
|
loadingPlaceholder: string;
|
@@ -1695,10 +1745,11 @@ export declare const SelectWithRemoteOptions: {
|
|
1695
1745
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
1696
1746
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
1697
1747
|
}, "store">>, nextContext: any): void;
|
1698
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1748
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1699
1749
|
multiple: boolean;
|
1700
1750
|
clearable: boolean;
|
1701
1751
|
creatable: boolean;
|
1752
|
+
showInvalidMatch: boolean;
|
1702
1753
|
createBtnLabel: string;
|
1703
1754
|
searchPromptText: string;
|
1704
1755
|
loadingPlaceholder: string;
|
@@ -1742,10 +1793,11 @@ export declare const SelectWithRemoteOptions: {
|
|
1742
1793
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
1743
1794
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
1744
1795
|
}, "store">>, nextContext: any): void;
|
1745
|
-
componentWillUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1796
|
+
componentWillUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1746
1797
|
multiple: boolean;
|
1747
1798
|
clearable: boolean;
|
1748
1799
|
creatable: boolean;
|
1800
|
+
showInvalidMatch: boolean;
|
1749
1801
|
createBtnLabel: string;
|
1750
1802
|
searchPromptText: string;
|
1751
1803
|
loadingPlaceholder: string;
|
@@ -1789,10 +1841,11 @@ export declare const SelectWithRemoteOptions: {
|
|
1789
1841
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
1790
1842
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
1791
1843
|
}, "store">>, nextState: Readonly<{}>, nextContext: any): void;
|
1792
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1844
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1793
1845
|
multiple: boolean;
|
1794
1846
|
clearable: boolean;
|
1795
1847
|
creatable: boolean;
|
1848
|
+
showInvalidMatch: boolean;
|
1796
1849
|
createBtnLabel: string;
|
1797
1850
|
searchPromptText: string;
|
1798
1851
|
loadingPlaceholder: string;
|
@@ -1837,10 +1890,11 @@ export declare const SelectWithRemoteOptions: {
|
|
1837
1890
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
1838
1891
|
}, "store">>, nextState: Readonly<{}>, nextContext: any): void;
|
1839
1892
|
};
|
1840
|
-
new (props: Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1893
|
+
new (props: Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1841
1894
|
multiple: boolean;
|
1842
1895
|
clearable: boolean;
|
1843
1896
|
creatable: boolean;
|
1897
|
+
showInvalidMatch: boolean;
|
1844
1898
|
createBtnLabel: string;
|
1845
1899
|
searchPromptText: string;
|
1846
1900
|
loadingPlaceholder: string;
|
@@ -1911,10 +1965,11 @@ export declare const SelectWithRemoteOptions: {
|
|
1911
1965
|
getWrappedInstance(): any;
|
1912
1966
|
render(): JSX.Element;
|
1913
1967
|
context: any;
|
1914
|
-
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1968
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1915
1969
|
multiple: boolean;
|
1916
1970
|
clearable: boolean;
|
1917
1971
|
creatable: boolean;
|
1972
|
+
showInvalidMatch: boolean;
|
1918
1973
|
createBtnLabel: string;
|
1919
1974
|
searchPromptText: string;
|
1920
1975
|
loadingPlaceholder: string;
|
@@ -1959,10 +2014,11 @@ export declare const SelectWithRemoteOptions: {
|
|
1959
2014
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
1960
2015
|
}, "store">>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
1961
2016
|
forceUpdate(callback?: (() => void) | undefined): void;
|
1962
|
-
readonly props: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2017
|
+
readonly props: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
1963
2018
|
multiple: boolean;
|
1964
2019
|
clearable: boolean;
|
1965
2020
|
creatable: boolean;
|
2021
|
+
showInvalidMatch: boolean;
|
1966
2022
|
createBtnLabel: string;
|
1967
2023
|
searchPromptText: string;
|
1968
2024
|
loadingPlaceholder: string;
|
@@ -2013,10 +2069,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2013
2069
|
[key: string]: React.ReactInstance;
|
2014
2070
|
};
|
2015
2071
|
componentDidMount?(): void;
|
2016
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2072
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2017
2073
|
multiple: boolean;
|
2018
2074
|
clearable: boolean;
|
2019
2075
|
creatable: boolean;
|
2076
|
+
showInvalidMatch: boolean;
|
2020
2077
|
createBtnLabel: string;
|
2021
2078
|
searchPromptText: string;
|
2022
2079
|
loadingPlaceholder: string;
|
@@ -2061,10 +2118,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2061
2118
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
2062
2119
|
}, "store">>, nextState: Readonly<{}>, nextContext: any): boolean;
|
2063
2120
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
2064
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2121
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2065
2122
|
multiple: boolean;
|
2066
2123
|
clearable: boolean;
|
2067
2124
|
creatable: boolean;
|
2125
|
+
showInvalidMatch: boolean;
|
2068
2126
|
createBtnLabel: string;
|
2069
2127
|
searchPromptText: string;
|
2070
2128
|
loadingPlaceholder: string;
|
@@ -2108,10 +2166,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2108
2166
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
2109
2167
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
2110
2168
|
}, "store">>, prevState: Readonly<{}>): any;
|
2111
|
-
componentDidUpdate?(prevProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2169
|
+
componentDidUpdate?(prevProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2112
2170
|
multiple: boolean;
|
2113
2171
|
clearable: boolean;
|
2114
2172
|
creatable: boolean;
|
2173
|
+
showInvalidMatch: boolean;
|
2115
2174
|
createBtnLabel: string;
|
2116
2175
|
searchPromptText: string;
|
2117
2176
|
loadingPlaceholder: string;
|
@@ -2157,10 +2216,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2157
2216
|
}, "store">>, prevState: Readonly<{}>, snapshot?: any): void;
|
2158
2217
|
componentWillMount?(): void;
|
2159
2218
|
UNSAFE_componentWillMount?(): void;
|
2160
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2219
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2161
2220
|
multiple: boolean;
|
2162
2221
|
clearable: boolean;
|
2163
2222
|
creatable: boolean;
|
2223
|
+
showInvalidMatch: boolean;
|
2164
2224
|
createBtnLabel: string;
|
2165
2225
|
searchPromptText: string;
|
2166
2226
|
loadingPlaceholder: string;
|
@@ -2204,10 +2264,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2204
2264
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
2205
2265
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
2206
2266
|
}, "store">>, nextContext: any): void;
|
2207
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2267
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2208
2268
|
multiple: boolean;
|
2209
2269
|
clearable: boolean;
|
2210
2270
|
creatable: boolean;
|
2271
|
+
showInvalidMatch: boolean;
|
2211
2272
|
createBtnLabel: string;
|
2212
2273
|
searchPromptText: string;
|
2213
2274
|
loadingPlaceholder: string;
|
@@ -2251,10 +2312,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2251
2312
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
2252
2313
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
2253
2314
|
}, "store">>, nextContext: any): void;
|
2254
|
-
componentWillUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2315
|
+
componentWillUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2255
2316
|
multiple: boolean;
|
2256
2317
|
clearable: boolean;
|
2257
2318
|
creatable: boolean;
|
2319
|
+
showInvalidMatch: boolean;
|
2258
2320
|
createBtnLabel: string;
|
2259
2321
|
searchPromptText: string;
|
2260
2322
|
loadingPlaceholder: string;
|
@@ -2298,10 +2360,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2298
2360
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
2299
2361
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
2300
2362
|
}, "store">>, nextState: Readonly<{}>, nextContext: any): void;
|
2301
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2363
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2302
2364
|
multiple: boolean;
|
2303
2365
|
clearable: boolean;
|
2304
2366
|
creatable: boolean;
|
2367
|
+
showInvalidMatch: boolean;
|
2305
2368
|
createBtnLabel: string;
|
2306
2369
|
searchPromptText: string;
|
2307
2370
|
loadingPlaceholder: string;
|
@@ -2348,10 +2411,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2348
2411
|
};
|
2349
2412
|
displayName: string;
|
2350
2413
|
ComposedComponent: React.ComponentType<{
|
2351
|
-
new (props: Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2414
|
+
new (props: Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2352
2415
|
multiple: boolean;
|
2353
2416
|
clearable: boolean;
|
2354
2417
|
creatable: boolean;
|
2418
|
+
showInvalidMatch: boolean;
|
2355
2419
|
createBtnLabel: string;
|
2356
2420
|
searchPromptText: string;
|
2357
2421
|
loadingPlaceholder: string;
|
@@ -2407,10 +2471,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2407
2471
|
deferLoadConfig(item: any): Promise<void>;
|
2408
2472
|
render(): JSX.Element;
|
2409
2473
|
context: any;
|
2410
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2474
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2411
2475
|
multiple: boolean;
|
2412
2476
|
clearable: boolean;
|
2413
2477
|
creatable: boolean;
|
2478
|
+
showInvalidMatch: boolean;
|
2414
2479
|
createBtnLabel: string;
|
2415
2480
|
searchPromptText: string;
|
2416
2481
|
loadingPlaceholder: string;
|
@@ -2455,10 +2520,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2455
2520
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
2456
2521
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
2457
2522
|
forceUpdate(callback?: (() => void) | undefined): void;
|
2458
|
-
readonly props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2523
|
+
readonly props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2459
2524
|
multiple: boolean;
|
2460
2525
|
clearable: boolean;
|
2461
2526
|
creatable: boolean;
|
2527
|
+
showInvalidMatch: boolean;
|
2462
2528
|
createBtnLabel: string;
|
2463
2529
|
searchPromptText: string;
|
2464
2530
|
loadingPlaceholder: string;
|
@@ -2508,10 +2574,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2508
2574
|
refs: {
|
2509
2575
|
[key: string]: React.ReactInstance;
|
2510
2576
|
};
|
2511
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2577
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2512
2578
|
multiple: boolean;
|
2513
2579
|
clearable: boolean;
|
2514
2580
|
creatable: boolean;
|
2581
|
+
showInvalidMatch: boolean;
|
2515
2582
|
createBtnLabel: string;
|
2516
2583
|
searchPromptText: string;
|
2517
2584
|
loadingPlaceholder: string;
|
@@ -2556,10 +2623,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2556
2623
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
2557
2624
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
2558
2625
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
2559
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2626
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2560
2627
|
multiple: boolean;
|
2561
2628
|
clearable: boolean;
|
2562
2629
|
creatable: boolean;
|
2630
|
+
showInvalidMatch: boolean;
|
2563
2631
|
createBtnLabel: string;
|
2564
2632
|
searchPromptText: string;
|
2565
2633
|
loadingPlaceholder: string;
|
@@ -2605,10 +2673,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2605
2673
|
}>, prevState: Readonly<{}>): any;
|
2606
2674
|
componentWillMount?(): void;
|
2607
2675
|
UNSAFE_componentWillMount?(): void;
|
2608
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2676
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2609
2677
|
multiple: boolean;
|
2610
2678
|
clearable: boolean;
|
2611
2679
|
creatable: boolean;
|
2680
|
+
showInvalidMatch: boolean;
|
2612
2681
|
createBtnLabel: string;
|
2613
2682
|
searchPromptText: string;
|
2614
2683
|
loadingPlaceholder: string;
|
@@ -2652,10 +2721,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2652
2721
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
2653
2722
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
2654
2723
|
}>, nextContext: any): void;
|
2655
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2724
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2656
2725
|
multiple: boolean;
|
2657
2726
|
clearable: boolean;
|
2658
2727
|
creatable: boolean;
|
2728
|
+
showInvalidMatch: boolean;
|
2659
2729
|
createBtnLabel: string;
|
2660
2730
|
searchPromptText: string;
|
2661
2731
|
loadingPlaceholder: string;
|
@@ -2699,10 +2769,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2699
2769
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
2700
2770
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
2701
2771
|
}>, nextContext: any): void;
|
2702
|
-
componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2772
|
+
componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2703
2773
|
multiple: boolean;
|
2704
2774
|
clearable: boolean;
|
2705
2775
|
creatable: boolean;
|
2776
|
+
showInvalidMatch: boolean;
|
2706
2777
|
createBtnLabel: string;
|
2707
2778
|
searchPromptText: string;
|
2708
2779
|
loadingPlaceholder: string;
|
@@ -2746,10 +2817,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2746
2817
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
2747
2818
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
2748
2819
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
2749
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2820
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2750
2821
|
multiple: boolean;
|
2751
2822
|
clearable: boolean;
|
2752
2823
|
creatable: boolean;
|
2824
|
+
showInvalidMatch: boolean;
|
2753
2825
|
createBtnLabel: string;
|
2754
2826
|
searchPromptText: string;
|
2755
2827
|
loadingPlaceholder: string;
|
@@ -2796,10 +2868,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2796
2868
|
};
|
2797
2869
|
displayName: string;
|
2798
2870
|
ComposedComponent: React.ComponentType<{
|
2799
|
-
new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2871
|
+
new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2800
2872
|
multiple: boolean;
|
2801
2873
|
clearable: boolean;
|
2802
2874
|
creatable: boolean;
|
2875
|
+
showInvalidMatch: boolean;
|
2803
2876
|
createBtnLabel: string;
|
2804
2877
|
searchPromptText: string;
|
2805
2878
|
loadingPlaceholder: string;
|
@@ -2820,10 +2893,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2820
2893
|
}, never>> & {
|
2821
2894
|
locale?: string | undefined;
|
2822
2895
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2823
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2896
|
+
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2824
2897
|
multiple: boolean;
|
2825
2898
|
clearable: boolean;
|
2826
2899
|
creatable: boolean;
|
2900
|
+
showInvalidMatch: boolean;
|
2827
2901
|
createBtnLabel: string;
|
2828
2902
|
searchPromptText: string;
|
2829
2903
|
loadingPlaceholder: string;
|
@@ -2847,10 +2921,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2847
2921
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
|
2848
2922
|
render(): JSX.Element;
|
2849
2923
|
context: any;
|
2850
|
-
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2924
|
+
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2851
2925
|
multiple: boolean;
|
2852
2926
|
clearable: boolean;
|
2853
2927
|
creatable: boolean;
|
2928
|
+
showInvalidMatch: boolean;
|
2854
2929
|
createBtnLabel: string;
|
2855
2930
|
searchPromptText: string;
|
2856
2931
|
loadingPlaceholder: string;
|
@@ -2873,10 +2948,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2873
2948
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2874
2949
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
|
2875
2950
|
forceUpdate(callback?: (() => void) | undefined): void;
|
2876
|
-
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2951
|
+
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2877
2952
|
multiple: boolean;
|
2878
2953
|
clearable: boolean;
|
2879
2954
|
creatable: boolean;
|
2955
|
+
showInvalidMatch: boolean;
|
2880
2956
|
createBtnLabel: string;
|
2881
2957
|
searchPromptText: string;
|
2882
2958
|
loadingPlaceholder: string;
|
@@ -2905,10 +2981,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2905
2981
|
[key: string]: React.ReactInstance;
|
2906
2982
|
};
|
2907
2983
|
componentDidMount?(): void;
|
2908
|
-
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2984
|
+
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2909
2985
|
multiple: boolean;
|
2910
2986
|
clearable: boolean;
|
2911
2987
|
creatable: boolean;
|
2988
|
+
showInvalidMatch: boolean;
|
2912
2989
|
createBtnLabel: string;
|
2913
2990
|
searchPromptText: string;
|
2914
2991
|
loadingPlaceholder: string;
|
@@ -2932,10 +3009,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2932
3009
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
2933
3010
|
componentWillUnmount?(): void;
|
2934
3011
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
2935
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3012
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2936
3013
|
multiple: boolean;
|
2937
3014
|
clearable: boolean;
|
2938
3015
|
creatable: boolean;
|
3016
|
+
showInvalidMatch: boolean;
|
2939
3017
|
createBtnLabel: string;
|
2940
3018
|
searchPromptText: string;
|
2941
3019
|
loadingPlaceholder: string;
|
@@ -2957,10 +3035,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2957
3035
|
locale?: string | undefined;
|
2958
3036
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2959
3037
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
2960
|
-
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3038
|
+
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2961
3039
|
multiple: boolean;
|
2962
3040
|
clearable: boolean;
|
2963
3041
|
creatable: boolean;
|
3042
|
+
showInvalidMatch: boolean;
|
2964
3043
|
createBtnLabel: string;
|
2965
3044
|
searchPromptText: string;
|
2966
3045
|
loadingPlaceholder: string;
|
@@ -2984,10 +3063,11 @@ export declare const SelectWithRemoteOptions: {
|
|
2984
3063
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
2985
3064
|
componentWillMount?(): void;
|
2986
3065
|
UNSAFE_componentWillMount?(): void;
|
2987
|
-
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3066
|
+
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
2988
3067
|
multiple: boolean;
|
2989
3068
|
clearable: boolean;
|
2990
3069
|
creatable: boolean;
|
3070
|
+
showInvalidMatch: boolean;
|
2991
3071
|
createBtnLabel: string;
|
2992
3072
|
searchPromptText: string;
|
2993
3073
|
loadingPlaceholder: string;
|
@@ -3009,10 +3089,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3009
3089
|
locale?: string | undefined;
|
3010
3090
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
3011
3091
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
3012
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3092
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3013
3093
|
multiple: boolean;
|
3014
3094
|
clearable: boolean;
|
3015
3095
|
creatable: boolean;
|
3096
|
+
showInvalidMatch: boolean;
|
3016
3097
|
createBtnLabel: string;
|
3017
3098
|
searchPromptText: string;
|
3018
3099
|
loadingPlaceholder: string;
|
@@ -3034,10 +3115,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3034
3115
|
locale?: string | undefined;
|
3035
3116
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
3036
3117
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
3037
|
-
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3118
|
+
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3038
3119
|
multiple: boolean;
|
3039
3120
|
clearable: boolean;
|
3040
3121
|
creatable: boolean;
|
3122
|
+
showInvalidMatch: boolean;
|
3041
3123
|
createBtnLabel: string;
|
3042
3124
|
searchPromptText: string;
|
3043
3125
|
loadingPlaceholder: string;
|
@@ -3059,10 +3141,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3059
3141
|
locale?: string | undefined;
|
3060
3142
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
3061
3143
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
3062
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3144
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3063
3145
|
multiple: boolean;
|
3064
3146
|
clearable: boolean;
|
3065
3147
|
creatable: boolean;
|
3148
|
+
showInvalidMatch: boolean;
|
3066
3149
|
createBtnLabel: string;
|
3067
3150
|
searchPromptText: string;
|
3068
3151
|
loadingPlaceholder: string;
|
@@ -3085,10 +3168,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3085
3168
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
3086
3169
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
3087
3170
|
};
|
3088
|
-
new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3171
|
+
new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3089
3172
|
multiple: boolean;
|
3090
3173
|
clearable: boolean;
|
3091
3174
|
creatable: boolean;
|
3175
|
+
showInvalidMatch: boolean;
|
3092
3176
|
createBtnLabel: string;
|
3093
3177
|
searchPromptText: string;
|
3094
3178
|
loadingPlaceholder: string;
|
@@ -3112,10 +3196,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3112
3196
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
|
3113
3197
|
render(): JSX.Element;
|
3114
3198
|
context: any;
|
3115
|
-
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3199
|
+
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3116
3200
|
multiple: boolean;
|
3117
3201
|
clearable: boolean;
|
3118
3202
|
creatable: boolean;
|
3203
|
+
showInvalidMatch: boolean;
|
3119
3204
|
createBtnLabel: string;
|
3120
3205
|
searchPromptText: string;
|
3121
3206
|
loadingPlaceholder: string;
|
@@ -3138,10 +3223,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3138
3223
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
3139
3224
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
|
3140
3225
|
forceUpdate(callback?: (() => void) | undefined): void;
|
3141
|
-
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3226
|
+
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3142
3227
|
multiple: boolean;
|
3143
3228
|
clearable: boolean;
|
3144
3229
|
creatable: boolean;
|
3230
|
+
showInvalidMatch: boolean;
|
3145
3231
|
createBtnLabel: string;
|
3146
3232
|
searchPromptText: string;
|
3147
3233
|
loadingPlaceholder: string;
|
@@ -3170,10 +3256,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3170
3256
|
[key: string]: React.ReactInstance;
|
3171
3257
|
};
|
3172
3258
|
componentDidMount?(): void;
|
3173
|
-
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3259
|
+
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3174
3260
|
multiple: boolean;
|
3175
3261
|
clearable: boolean;
|
3176
3262
|
creatable: boolean;
|
3263
|
+
showInvalidMatch: boolean;
|
3177
3264
|
createBtnLabel: string;
|
3178
3265
|
searchPromptText: string;
|
3179
3266
|
loadingPlaceholder: string;
|
@@ -3197,10 +3284,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3197
3284
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
3198
3285
|
componentWillUnmount?(): void;
|
3199
3286
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
3200
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3287
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3201
3288
|
multiple: boolean;
|
3202
3289
|
clearable: boolean;
|
3203
3290
|
creatable: boolean;
|
3291
|
+
showInvalidMatch: boolean;
|
3204
3292
|
createBtnLabel: string;
|
3205
3293
|
searchPromptText: string;
|
3206
3294
|
loadingPlaceholder: string;
|
@@ -3222,10 +3310,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3222
3310
|
locale?: string | undefined;
|
3223
3311
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
3224
3312
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
3225
|
-
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3313
|
+
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3226
3314
|
multiple: boolean;
|
3227
3315
|
clearable: boolean;
|
3228
3316
|
creatable: boolean;
|
3317
|
+
showInvalidMatch: boolean;
|
3229
3318
|
createBtnLabel: string;
|
3230
3319
|
searchPromptText: string;
|
3231
3320
|
loadingPlaceholder: string;
|
@@ -3249,10 +3338,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3249
3338
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
3250
3339
|
componentWillMount?(): void;
|
3251
3340
|
UNSAFE_componentWillMount?(): void;
|
3252
|
-
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3341
|
+
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3253
3342
|
multiple: boolean;
|
3254
3343
|
clearable: boolean;
|
3255
3344
|
creatable: boolean;
|
3345
|
+
showInvalidMatch: boolean;
|
3256
3346
|
createBtnLabel: string;
|
3257
3347
|
searchPromptText: string;
|
3258
3348
|
loadingPlaceholder: string;
|
@@ -3274,10 +3364,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3274
3364
|
locale?: string | undefined;
|
3275
3365
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
3276
3366
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
3277
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3367
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3278
3368
|
multiple: boolean;
|
3279
3369
|
clearable: boolean;
|
3280
3370
|
creatable: boolean;
|
3371
|
+
showInvalidMatch: boolean;
|
3281
3372
|
createBtnLabel: string;
|
3282
3373
|
searchPromptText: string;
|
3283
3374
|
loadingPlaceholder: string;
|
@@ -3299,10 +3390,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3299
3390
|
locale?: string | undefined;
|
3300
3391
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
3301
3392
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
3302
|
-
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3393
|
+
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3303
3394
|
multiple: boolean;
|
3304
3395
|
clearable: boolean;
|
3305
3396
|
creatable: boolean;
|
3397
|
+
showInvalidMatch: boolean;
|
3306
3398
|
createBtnLabel: string;
|
3307
3399
|
searchPromptText: string;
|
3308
3400
|
loadingPlaceholder: string;
|
@@ -3324,10 +3416,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3324
3416
|
locale?: string | undefined;
|
3325
3417
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
3326
3418
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
3327
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3419
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3328
3420
|
multiple: boolean;
|
3329
3421
|
clearable: boolean;
|
3330
3422
|
creatable: boolean;
|
3423
|
+
showInvalidMatch: boolean;
|
3331
3424
|
createBtnLabel: string;
|
3332
3425
|
searchPromptText: string;
|
3333
3426
|
loadingPlaceholder: string;
|
@@ -3356,10 +3449,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3356
3449
|
}>;
|
3357
3450
|
contextType?: React.Context<any> | undefined;
|
3358
3451
|
} & import("hoist-non-react-statics").NonReactStatics<{
|
3359
|
-
new (props: Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3452
|
+
new (props: Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3360
3453
|
multiple: boolean;
|
3361
3454
|
clearable: boolean;
|
3362
3455
|
creatable: boolean;
|
3456
|
+
showInvalidMatch: boolean;
|
3363
3457
|
createBtnLabel: string;
|
3364
3458
|
searchPromptText: string;
|
3365
3459
|
loadingPlaceholder: string;
|
@@ -3415,10 +3509,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3415
3509
|
deferLoadConfig(item: any): Promise<void>;
|
3416
3510
|
render(): JSX.Element;
|
3417
3511
|
context: any;
|
3418
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3512
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3419
3513
|
multiple: boolean;
|
3420
3514
|
clearable: boolean;
|
3421
3515
|
creatable: boolean;
|
3516
|
+
showInvalidMatch: boolean;
|
3422
3517
|
createBtnLabel: string;
|
3423
3518
|
searchPromptText: string;
|
3424
3519
|
loadingPlaceholder: string;
|
@@ -3463,10 +3558,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3463
3558
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
3464
3559
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
3465
3560
|
forceUpdate(callback?: (() => void) | undefined): void;
|
3466
|
-
readonly props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3561
|
+
readonly props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3467
3562
|
multiple: boolean;
|
3468
3563
|
clearable: boolean;
|
3469
3564
|
creatable: boolean;
|
3565
|
+
showInvalidMatch: boolean;
|
3470
3566
|
createBtnLabel: string;
|
3471
3567
|
searchPromptText: string;
|
3472
3568
|
loadingPlaceholder: string;
|
@@ -3516,10 +3612,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3516
3612
|
refs: {
|
3517
3613
|
[key: string]: React.ReactInstance;
|
3518
3614
|
};
|
3519
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3615
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3520
3616
|
multiple: boolean;
|
3521
3617
|
clearable: boolean;
|
3522
3618
|
creatable: boolean;
|
3619
|
+
showInvalidMatch: boolean;
|
3523
3620
|
createBtnLabel: string;
|
3524
3621
|
searchPromptText: string;
|
3525
3622
|
loadingPlaceholder: string;
|
@@ -3564,10 +3661,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3564
3661
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
3565
3662
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
3566
3663
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
3567
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3664
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3568
3665
|
multiple: boolean;
|
3569
3666
|
clearable: boolean;
|
3570
3667
|
creatable: boolean;
|
3668
|
+
showInvalidMatch: boolean;
|
3571
3669
|
createBtnLabel: string;
|
3572
3670
|
searchPromptText: string;
|
3573
3671
|
loadingPlaceholder: string;
|
@@ -3613,10 +3711,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3613
3711
|
}>, prevState: Readonly<{}>): any;
|
3614
3712
|
componentWillMount?(): void;
|
3615
3713
|
UNSAFE_componentWillMount?(): void;
|
3616
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3714
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3617
3715
|
multiple: boolean;
|
3618
3716
|
clearable: boolean;
|
3619
3717
|
creatable: boolean;
|
3718
|
+
showInvalidMatch: boolean;
|
3620
3719
|
createBtnLabel: string;
|
3621
3720
|
searchPromptText: string;
|
3622
3721
|
loadingPlaceholder: string;
|
@@ -3660,10 +3759,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3660
3759
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
3661
3760
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
3662
3761
|
}>, nextContext: any): void;
|
3663
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3762
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3664
3763
|
multiple: boolean;
|
3665
3764
|
clearable: boolean;
|
3666
3765
|
creatable: boolean;
|
3766
|
+
showInvalidMatch: boolean;
|
3667
3767
|
createBtnLabel: string;
|
3668
3768
|
searchPromptText: string;
|
3669
3769
|
loadingPlaceholder: string;
|
@@ -3707,10 +3807,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3707
3807
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
3708
3808
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
3709
3809
|
}>, nextContext: any): void;
|
3710
|
-
componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3810
|
+
componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3711
3811
|
multiple: boolean;
|
3712
3812
|
clearable: boolean;
|
3713
3813
|
creatable: boolean;
|
3814
|
+
showInvalidMatch: boolean;
|
3714
3815
|
createBtnLabel: string;
|
3715
3816
|
searchPromptText: string;
|
3716
3817
|
loadingPlaceholder: string;
|
@@ -3754,10 +3855,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3754
3855
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
3755
3856
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
3756
3857
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
3757
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3858
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3758
3859
|
multiple: boolean;
|
3759
3860
|
clearable: boolean;
|
3760
3861
|
creatable: boolean;
|
3862
|
+
showInvalidMatch: boolean;
|
3761
3863
|
createBtnLabel: string;
|
3762
3864
|
searchPromptText: string;
|
3763
3865
|
loadingPlaceholder: string;
|
@@ -3804,10 +3906,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3804
3906
|
};
|
3805
3907
|
displayName: string;
|
3806
3908
|
ComposedComponent: React.ComponentType<{
|
3807
|
-
new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3909
|
+
new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3808
3910
|
multiple: boolean;
|
3809
3911
|
clearable: boolean;
|
3810
3912
|
creatable: boolean;
|
3913
|
+
showInvalidMatch: boolean;
|
3811
3914
|
createBtnLabel: string;
|
3812
3915
|
searchPromptText: string;
|
3813
3916
|
loadingPlaceholder: string;
|
@@ -3828,10 +3931,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3828
3931
|
}, never>> & {
|
3829
3932
|
locale?: string | undefined;
|
3830
3933
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
3831
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3934
|
+
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3832
3935
|
multiple: boolean;
|
3833
3936
|
clearable: boolean;
|
3834
3937
|
creatable: boolean;
|
3938
|
+
showInvalidMatch: boolean;
|
3835
3939
|
createBtnLabel: string;
|
3836
3940
|
searchPromptText: string;
|
3837
3941
|
loadingPlaceholder: string;
|
@@ -3855,10 +3959,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3855
3959
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
|
3856
3960
|
render(): JSX.Element;
|
3857
3961
|
context: any;
|
3858
|
-
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3962
|
+
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3859
3963
|
multiple: boolean;
|
3860
3964
|
clearable: boolean;
|
3861
3965
|
creatable: boolean;
|
3966
|
+
showInvalidMatch: boolean;
|
3862
3967
|
createBtnLabel: string;
|
3863
3968
|
searchPromptText: string;
|
3864
3969
|
loadingPlaceholder: string;
|
@@ -3881,10 +3986,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3881
3986
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
3882
3987
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
|
3883
3988
|
forceUpdate(callback?: (() => void) | undefined): void;
|
3884
|
-
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3989
|
+
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3885
3990
|
multiple: boolean;
|
3886
3991
|
clearable: boolean;
|
3887
3992
|
creatable: boolean;
|
3993
|
+
showInvalidMatch: boolean;
|
3888
3994
|
createBtnLabel: string;
|
3889
3995
|
searchPromptText: string;
|
3890
3996
|
loadingPlaceholder: string;
|
@@ -3913,10 +4019,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3913
4019
|
[key: string]: React.ReactInstance;
|
3914
4020
|
};
|
3915
4021
|
componentDidMount?(): void;
|
3916
|
-
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4022
|
+
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3917
4023
|
multiple: boolean;
|
3918
4024
|
clearable: boolean;
|
3919
4025
|
creatable: boolean;
|
4026
|
+
showInvalidMatch: boolean;
|
3920
4027
|
createBtnLabel: string;
|
3921
4028
|
searchPromptText: string;
|
3922
4029
|
loadingPlaceholder: string;
|
@@ -3940,10 +4047,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3940
4047
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
3941
4048
|
componentWillUnmount?(): void;
|
3942
4049
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
3943
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4050
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3944
4051
|
multiple: boolean;
|
3945
4052
|
clearable: boolean;
|
3946
4053
|
creatable: boolean;
|
4054
|
+
showInvalidMatch: boolean;
|
3947
4055
|
createBtnLabel: string;
|
3948
4056
|
searchPromptText: string;
|
3949
4057
|
loadingPlaceholder: string;
|
@@ -3965,10 +4073,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3965
4073
|
locale?: string | undefined;
|
3966
4074
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
3967
4075
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
3968
|
-
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4076
|
+
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3969
4077
|
multiple: boolean;
|
3970
4078
|
clearable: boolean;
|
3971
4079
|
creatable: boolean;
|
4080
|
+
showInvalidMatch: boolean;
|
3972
4081
|
createBtnLabel: string;
|
3973
4082
|
searchPromptText: string;
|
3974
4083
|
loadingPlaceholder: string;
|
@@ -3992,10 +4101,11 @@ export declare const SelectWithRemoteOptions: {
|
|
3992
4101
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
3993
4102
|
componentWillMount?(): void;
|
3994
4103
|
UNSAFE_componentWillMount?(): void;
|
3995
|
-
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4104
|
+
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
3996
4105
|
multiple: boolean;
|
3997
4106
|
clearable: boolean;
|
3998
4107
|
creatable: boolean;
|
4108
|
+
showInvalidMatch: boolean;
|
3999
4109
|
createBtnLabel: string;
|
4000
4110
|
searchPromptText: string;
|
4001
4111
|
loadingPlaceholder: string;
|
@@ -4017,10 +4127,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4017
4127
|
locale?: string | undefined;
|
4018
4128
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
4019
4129
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
4020
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4130
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4021
4131
|
multiple: boolean;
|
4022
4132
|
clearable: boolean;
|
4023
4133
|
creatable: boolean;
|
4134
|
+
showInvalidMatch: boolean;
|
4024
4135
|
createBtnLabel: string;
|
4025
4136
|
searchPromptText: string;
|
4026
4137
|
loadingPlaceholder: string;
|
@@ -4042,10 +4153,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4042
4153
|
locale?: string | undefined;
|
4043
4154
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
4044
4155
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
4045
|
-
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4156
|
+
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4046
4157
|
multiple: boolean;
|
4047
4158
|
clearable: boolean;
|
4048
4159
|
creatable: boolean;
|
4160
|
+
showInvalidMatch: boolean;
|
4049
4161
|
createBtnLabel: string;
|
4050
4162
|
searchPromptText: string;
|
4051
4163
|
loadingPlaceholder: string;
|
@@ -4067,10 +4179,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4067
4179
|
locale?: string | undefined;
|
4068
4180
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
4069
4181
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
4070
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4182
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4071
4183
|
multiple: boolean;
|
4072
4184
|
clearable: boolean;
|
4073
4185
|
creatable: boolean;
|
4186
|
+
showInvalidMatch: boolean;
|
4074
4187
|
createBtnLabel: string;
|
4075
4188
|
searchPromptText: string;
|
4076
4189
|
loadingPlaceholder: string;
|
@@ -4093,10 +4206,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4093
4206
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
4094
4207
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
4095
4208
|
};
|
4096
|
-
new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4209
|
+
new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4097
4210
|
multiple: boolean;
|
4098
4211
|
clearable: boolean;
|
4099
4212
|
creatable: boolean;
|
4213
|
+
showInvalidMatch: boolean;
|
4100
4214
|
createBtnLabel: string;
|
4101
4215
|
searchPromptText: string;
|
4102
4216
|
loadingPlaceholder: string;
|
@@ -4120,10 +4234,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4120
4234
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
|
4121
4235
|
render(): JSX.Element;
|
4122
4236
|
context: any;
|
4123
|
-
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4237
|
+
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4124
4238
|
multiple: boolean;
|
4125
4239
|
clearable: boolean;
|
4126
4240
|
creatable: boolean;
|
4241
|
+
showInvalidMatch: boolean;
|
4127
4242
|
createBtnLabel: string;
|
4128
4243
|
searchPromptText: string;
|
4129
4244
|
loadingPlaceholder: string;
|
@@ -4146,10 +4261,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4146
4261
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
4147
4262
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
|
4148
4263
|
forceUpdate(callback?: (() => void) | undefined): void;
|
4149
|
-
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4264
|
+
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4150
4265
|
multiple: boolean;
|
4151
4266
|
clearable: boolean;
|
4152
4267
|
creatable: boolean;
|
4268
|
+
showInvalidMatch: boolean;
|
4153
4269
|
createBtnLabel: string;
|
4154
4270
|
searchPromptText: string;
|
4155
4271
|
loadingPlaceholder: string;
|
@@ -4178,10 +4294,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4178
4294
|
[key: string]: React.ReactInstance;
|
4179
4295
|
};
|
4180
4296
|
componentDidMount?(): void;
|
4181
|
-
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4297
|
+
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4182
4298
|
multiple: boolean;
|
4183
4299
|
clearable: boolean;
|
4184
4300
|
creatable: boolean;
|
4301
|
+
showInvalidMatch: boolean;
|
4185
4302
|
createBtnLabel: string;
|
4186
4303
|
searchPromptText: string;
|
4187
4304
|
loadingPlaceholder: string;
|
@@ -4205,10 +4322,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4205
4322
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
4206
4323
|
componentWillUnmount?(): void;
|
4207
4324
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
4208
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4325
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4209
4326
|
multiple: boolean;
|
4210
4327
|
clearable: boolean;
|
4211
4328
|
creatable: boolean;
|
4329
|
+
showInvalidMatch: boolean;
|
4212
4330
|
createBtnLabel: string;
|
4213
4331
|
searchPromptText: string;
|
4214
4332
|
loadingPlaceholder: string;
|
@@ -4230,10 +4348,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4230
4348
|
locale?: string | undefined;
|
4231
4349
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
4232
4350
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
4233
|
-
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4351
|
+
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4234
4352
|
multiple: boolean;
|
4235
4353
|
clearable: boolean;
|
4236
4354
|
creatable: boolean;
|
4355
|
+
showInvalidMatch: boolean;
|
4237
4356
|
createBtnLabel: string;
|
4238
4357
|
searchPromptText: string;
|
4239
4358
|
loadingPlaceholder: string;
|
@@ -4257,10 +4376,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4257
4376
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
4258
4377
|
componentWillMount?(): void;
|
4259
4378
|
UNSAFE_componentWillMount?(): void;
|
4260
|
-
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4379
|
+
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4261
4380
|
multiple: boolean;
|
4262
4381
|
clearable: boolean;
|
4263
4382
|
creatable: boolean;
|
4383
|
+
showInvalidMatch: boolean;
|
4264
4384
|
createBtnLabel: string;
|
4265
4385
|
searchPromptText: string;
|
4266
4386
|
loadingPlaceholder: string;
|
@@ -4282,10 +4402,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4282
4402
|
locale?: string | undefined;
|
4283
4403
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
4284
4404
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
4285
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4405
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4286
4406
|
multiple: boolean;
|
4287
4407
|
clearable: boolean;
|
4288
4408
|
creatable: boolean;
|
4409
|
+
showInvalidMatch: boolean;
|
4289
4410
|
createBtnLabel: string;
|
4290
4411
|
searchPromptText: string;
|
4291
4412
|
loadingPlaceholder: string;
|
@@ -4307,10 +4428,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4307
4428
|
locale?: string | undefined;
|
4308
4429
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
4309
4430
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
4310
|
-
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4431
|
+
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4311
4432
|
multiple: boolean;
|
4312
4433
|
clearable: boolean;
|
4313
4434
|
creatable: boolean;
|
4435
|
+
showInvalidMatch: boolean;
|
4314
4436
|
createBtnLabel: string;
|
4315
4437
|
searchPromptText: string;
|
4316
4438
|
loadingPlaceholder: string;
|
@@ -4332,10 +4454,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4332
4454
|
locale?: string | undefined;
|
4333
4455
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
4334
4456
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
4335
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4457
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4336
4458
|
multiple: boolean;
|
4337
4459
|
clearable: boolean;
|
4338
4460
|
creatable: boolean;
|
4461
|
+
showInvalidMatch: boolean;
|
4339
4462
|
createBtnLabel: string;
|
4340
4463
|
searchPromptText: string;
|
4341
4464
|
loadingPlaceholder: string;
|
@@ -4363,10 +4486,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4363
4486
|
contextType: React.Context<void | import("../env").RendererEnv>;
|
4364
4487
|
}, {}> & {
|
4365
4488
|
ComposedComponent: {
|
4366
|
-
new (props: Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4489
|
+
new (props: Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4367
4490
|
multiple: boolean;
|
4368
4491
|
clearable: boolean;
|
4369
4492
|
creatable: boolean;
|
4493
|
+
showInvalidMatch: boolean;
|
4370
4494
|
createBtnLabel: string;
|
4371
4495
|
searchPromptText: string;
|
4372
4496
|
loadingPlaceholder: string;
|
@@ -4422,10 +4546,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4422
4546
|
deferLoadConfig(item: any): Promise<void>;
|
4423
4547
|
render(): JSX.Element;
|
4424
4548
|
context: any;
|
4425
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4549
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4426
4550
|
multiple: boolean;
|
4427
4551
|
clearable: boolean;
|
4428
4552
|
creatable: boolean;
|
4553
|
+
showInvalidMatch: boolean;
|
4429
4554
|
createBtnLabel: string;
|
4430
4555
|
searchPromptText: string;
|
4431
4556
|
loadingPlaceholder: string;
|
@@ -4470,10 +4595,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4470
4595
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
4471
4596
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
4472
4597
|
forceUpdate(callback?: (() => void) | undefined): void;
|
4473
|
-
readonly props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4598
|
+
readonly props: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4474
4599
|
multiple: boolean;
|
4475
4600
|
clearable: boolean;
|
4476
4601
|
creatable: boolean;
|
4602
|
+
showInvalidMatch: boolean;
|
4477
4603
|
createBtnLabel: string;
|
4478
4604
|
searchPromptText: string;
|
4479
4605
|
loadingPlaceholder: string;
|
@@ -4523,10 +4649,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4523
4649
|
refs: {
|
4524
4650
|
[key: string]: React.ReactInstance;
|
4525
4651
|
};
|
4526
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4652
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4527
4653
|
multiple: boolean;
|
4528
4654
|
clearable: boolean;
|
4529
4655
|
creatable: boolean;
|
4656
|
+
showInvalidMatch: boolean;
|
4530
4657
|
createBtnLabel: string;
|
4531
4658
|
searchPromptText: string;
|
4532
4659
|
loadingPlaceholder: string;
|
@@ -4571,10 +4698,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4571
4698
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
4572
4699
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
4573
4700
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
4574
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4701
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4575
4702
|
multiple: boolean;
|
4576
4703
|
clearable: boolean;
|
4577
4704
|
creatable: boolean;
|
4705
|
+
showInvalidMatch: boolean;
|
4578
4706
|
createBtnLabel: string;
|
4579
4707
|
searchPromptText: string;
|
4580
4708
|
loadingPlaceholder: string;
|
@@ -4620,10 +4748,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4620
4748
|
}>, prevState: Readonly<{}>): any;
|
4621
4749
|
componentWillMount?(): void;
|
4622
4750
|
UNSAFE_componentWillMount?(): void;
|
4623
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4751
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4624
4752
|
multiple: boolean;
|
4625
4753
|
clearable: boolean;
|
4626
4754
|
creatable: boolean;
|
4755
|
+
showInvalidMatch: boolean;
|
4627
4756
|
createBtnLabel: string;
|
4628
4757
|
searchPromptText: string;
|
4629
4758
|
loadingPlaceholder: string;
|
@@ -4667,10 +4796,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4667
4796
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
4668
4797
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
4669
4798
|
}>, nextContext: any): void;
|
4670
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4799
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4671
4800
|
multiple: boolean;
|
4672
4801
|
clearable: boolean;
|
4673
4802
|
creatable: boolean;
|
4803
|
+
showInvalidMatch: boolean;
|
4674
4804
|
createBtnLabel: string;
|
4675
4805
|
searchPromptText: string;
|
4676
4806
|
loadingPlaceholder: string;
|
@@ -4714,10 +4844,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4714
4844
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
4715
4845
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
4716
4846
|
}>, nextContext: any): void;
|
4717
|
-
componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4847
|
+
componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4718
4848
|
multiple: boolean;
|
4719
4849
|
clearable: boolean;
|
4720
4850
|
creatable: boolean;
|
4851
|
+
showInvalidMatch: boolean;
|
4721
4852
|
createBtnLabel: string;
|
4722
4853
|
searchPromptText: string;
|
4723
4854
|
loadingPlaceholder: string;
|
@@ -4761,10 +4892,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4761
4892
|
setConfig(options: any, config: import("./WithRemoteConfig").WithRemoteConfigSettings, motivation?: any): void;
|
4762
4893
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
4763
4894
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
4764
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4895
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4765
4896
|
multiple: boolean;
|
4766
4897
|
clearable: boolean;
|
4767
4898
|
creatable: boolean;
|
4899
|
+
showInvalidMatch: boolean;
|
4768
4900
|
createBtnLabel: string;
|
4769
4901
|
searchPromptText: string;
|
4770
4902
|
loadingPlaceholder: string;
|
@@ -4811,10 +4943,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4811
4943
|
};
|
4812
4944
|
displayName: string;
|
4813
4945
|
ComposedComponent: React.ComponentType<{
|
4814
|
-
new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4946
|
+
new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4815
4947
|
multiple: boolean;
|
4816
4948
|
clearable: boolean;
|
4817
4949
|
creatable: boolean;
|
4950
|
+
showInvalidMatch: boolean;
|
4818
4951
|
createBtnLabel: string;
|
4819
4952
|
searchPromptText: string;
|
4820
4953
|
loadingPlaceholder: string;
|
@@ -4835,10 +4968,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4835
4968
|
}, never>> & {
|
4836
4969
|
locale?: string | undefined;
|
4837
4970
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
4838
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4971
|
+
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4839
4972
|
multiple: boolean;
|
4840
4973
|
clearable: boolean;
|
4841
4974
|
creatable: boolean;
|
4975
|
+
showInvalidMatch: boolean;
|
4842
4976
|
createBtnLabel: string;
|
4843
4977
|
searchPromptText: string;
|
4844
4978
|
loadingPlaceholder: string;
|
@@ -4862,10 +4996,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4862
4996
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
|
4863
4997
|
render(): JSX.Element;
|
4864
4998
|
context: any;
|
4865
|
-
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4999
|
+
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4866
5000
|
multiple: boolean;
|
4867
5001
|
clearable: boolean;
|
4868
5002
|
creatable: boolean;
|
5003
|
+
showInvalidMatch: boolean;
|
4869
5004
|
createBtnLabel: string;
|
4870
5005
|
searchPromptText: string;
|
4871
5006
|
loadingPlaceholder: string;
|
@@ -4888,10 +5023,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4888
5023
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
4889
5024
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
|
4890
5025
|
forceUpdate(callback?: (() => void) | undefined): void;
|
4891
|
-
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5026
|
+
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4892
5027
|
multiple: boolean;
|
4893
5028
|
clearable: boolean;
|
4894
5029
|
creatable: boolean;
|
5030
|
+
showInvalidMatch: boolean;
|
4895
5031
|
createBtnLabel: string;
|
4896
5032
|
searchPromptText: string;
|
4897
5033
|
loadingPlaceholder: string;
|
@@ -4920,10 +5056,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4920
5056
|
[key: string]: React.ReactInstance;
|
4921
5057
|
};
|
4922
5058
|
componentDidMount?(): void;
|
4923
|
-
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5059
|
+
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4924
5060
|
multiple: boolean;
|
4925
5061
|
clearable: boolean;
|
4926
5062
|
creatable: boolean;
|
5063
|
+
showInvalidMatch: boolean;
|
4927
5064
|
createBtnLabel: string;
|
4928
5065
|
searchPromptText: string;
|
4929
5066
|
loadingPlaceholder: string;
|
@@ -4947,10 +5084,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4947
5084
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
4948
5085
|
componentWillUnmount?(): void;
|
4949
5086
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
4950
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5087
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4951
5088
|
multiple: boolean;
|
4952
5089
|
clearable: boolean;
|
4953
5090
|
creatable: boolean;
|
5091
|
+
showInvalidMatch: boolean;
|
4954
5092
|
createBtnLabel: string;
|
4955
5093
|
searchPromptText: string;
|
4956
5094
|
loadingPlaceholder: string;
|
@@ -4972,10 +5110,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4972
5110
|
locale?: string | undefined;
|
4973
5111
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
4974
5112
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
4975
|
-
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5113
|
+
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
4976
5114
|
multiple: boolean;
|
4977
5115
|
clearable: boolean;
|
4978
5116
|
creatable: boolean;
|
5117
|
+
showInvalidMatch: boolean;
|
4979
5118
|
createBtnLabel: string;
|
4980
5119
|
searchPromptText: string;
|
4981
5120
|
loadingPlaceholder: string;
|
@@ -4999,10 +5138,11 @@ export declare const SelectWithRemoteOptions: {
|
|
4999
5138
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
5000
5139
|
componentWillMount?(): void;
|
5001
5140
|
UNSAFE_componentWillMount?(): void;
|
5002
|
-
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5141
|
+
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5003
5142
|
multiple: boolean;
|
5004
5143
|
clearable: boolean;
|
5005
5144
|
creatable: boolean;
|
5145
|
+
showInvalidMatch: boolean;
|
5006
5146
|
createBtnLabel: string;
|
5007
5147
|
searchPromptText: string;
|
5008
5148
|
loadingPlaceholder: string;
|
@@ -5024,10 +5164,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5024
5164
|
locale?: string | undefined;
|
5025
5165
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5026
5166
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
5027
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5167
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5028
5168
|
multiple: boolean;
|
5029
5169
|
clearable: boolean;
|
5030
5170
|
creatable: boolean;
|
5171
|
+
showInvalidMatch: boolean;
|
5031
5172
|
createBtnLabel: string;
|
5032
5173
|
searchPromptText: string;
|
5033
5174
|
loadingPlaceholder: string;
|
@@ -5049,10 +5190,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5049
5190
|
locale?: string | undefined;
|
5050
5191
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5051
5192
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
5052
|
-
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5193
|
+
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5053
5194
|
multiple: boolean;
|
5054
5195
|
clearable: boolean;
|
5055
5196
|
creatable: boolean;
|
5197
|
+
showInvalidMatch: boolean;
|
5056
5198
|
createBtnLabel: string;
|
5057
5199
|
searchPromptText: string;
|
5058
5200
|
loadingPlaceholder: string;
|
@@ -5074,10 +5216,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5074
5216
|
locale?: string | undefined;
|
5075
5217
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5076
5218
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
5077
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5219
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5078
5220
|
multiple: boolean;
|
5079
5221
|
clearable: boolean;
|
5080
5222
|
creatable: boolean;
|
5223
|
+
showInvalidMatch: boolean;
|
5081
5224
|
createBtnLabel: string;
|
5082
5225
|
searchPromptText: string;
|
5083
5226
|
loadingPlaceholder: string;
|
@@ -5100,10 +5243,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5100
5243
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5101
5244
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
5102
5245
|
};
|
5103
|
-
new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5246
|
+
new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5104
5247
|
multiple: boolean;
|
5105
5248
|
clearable: boolean;
|
5106
5249
|
creatable: boolean;
|
5250
|
+
showInvalidMatch: boolean;
|
5107
5251
|
createBtnLabel: string;
|
5108
5252
|
searchPromptText: string;
|
5109
5253
|
loadingPlaceholder: string;
|
@@ -5127,10 +5271,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5127
5271
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
|
5128
5272
|
render(): JSX.Element;
|
5129
5273
|
context: any;
|
5130
|
-
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5274
|
+
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5131
5275
|
multiple: boolean;
|
5132
5276
|
clearable: boolean;
|
5133
5277
|
creatable: boolean;
|
5278
|
+
showInvalidMatch: boolean;
|
5134
5279
|
createBtnLabel: string;
|
5135
5280
|
searchPromptText: string;
|
5136
5281
|
loadingPlaceholder: string;
|
@@ -5153,10 +5298,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5153
5298
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5154
5299
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
|
5155
5300
|
forceUpdate(callback?: (() => void) | undefined): void;
|
5156
|
-
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5301
|
+
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5157
5302
|
multiple: boolean;
|
5158
5303
|
clearable: boolean;
|
5159
5304
|
creatable: boolean;
|
5305
|
+
showInvalidMatch: boolean;
|
5160
5306
|
createBtnLabel: string;
|
5161
5307
|
searchPromptText: string;
|
5162
5308
|
loadingPlaceholder: string;
|
@@ -5185,10 +5331,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5185
5331
|
[key: string]: React.ReactInstance;
|
5186
5332
|
};
|
5187
5333
|
componentDidMount?(): void;
|
5188
|
-
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5334
|
+
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5189
5335
|
multiple: boolean;
|
5190
5336
|
clearable: boolean;
|
5191
5337
|
creatable: boolean;
|
5338
|
+
showInvalidMatch: boolean;
|
5192
5339
|
createBtnLabel: string;
|
5193
5340
|
searchPromptText: string;
|
5194
5341
|
loadingPlaceholder: string;
|
@@ -5212,10 +5359,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5212
5359
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
5213
5360
|
componentWillUnmount?(): void;
|
5214
5361
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
5215
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5362
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5216
5363
|
multiple: boolean;
|
5217
5364
|
clearable: boolean;
|
5218
5365
|
creatable: boolean;
|
5366
|
+
showInvalidMatch: boolean;
|
5219
5367
|
createBtnLabel: string;
|
5220
5368
|
searchPromptText: string;
|
5221
5369
|
loadingPlaceholder: string;
|
@@ -5237,10 +5385,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5237
5385
|
locale?: string | undefined;
|
5238
5386
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5239
5387
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
5240
|
-
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5388
|
+
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5241
5389
|
multiple: boolean;
|
5242
5390
|
clearable: boolean;
|
5243
5391
|
creatable: boolean;
|
5392
|
+
showInvalidMatch: boolean;
|
5244
5393
|
createBtnLabel: string;
|
5245
5394
|
searchPromptText: string;
|
5246
5395
|
loadingPlaceholder: string;
|
@@ -5264,10 +5413,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5264
5413
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
5265
5414
|
componentWillMount?(): void;
|
5266
5415
|
UNSAFE_componentWillMount?(): void;
|
5267
|
-
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5416
|
+
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5268
5417
|
multiple: boolean;
|
5269
5418
|
clearable: boolean;
|
5270
5419
|
creatable: boolean;
|
5420
|
+
showInvalidMatch: boolean;
|
5271
5421
|
createBtnLabel: string;
|
5272
5422
|
searchPromptText: string;
|
5273
5423
|
loadingPlaceholder: string;
|
@@ -5289,10 +5439,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5289
5439
|
locale?: string | undefined;
|
5290
5440
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5291
5441
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
5292
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5442
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5293
5443
|
multiple: boolean;
|
5294
5444
|
clearable: boolean;
|
5295
5445
|
creatable: boolean;
|
5446
|
+
showInvalidMatch: boolean;
|
5296
5447
|
createBtnLabel: string;
|
5297
5448
|
searchPromptText: string;
|
5298
5449
|
loadingPlaceholder: string;
|
@@ -5314,10 +5465,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5314
5465
|
locale?: string | undefined;
|
5315
5466
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5316
5467
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
5317
|
-
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5468
|
+
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5318
5469
|
multiple: boolean;
|
5319
5470
|
clearable: boolean;
|
5320
5471
|
creatable: boolean;
|
5472
|
+
showInvalidMatch: boolean;
|
5321
5473
|
createBtnLabel: string;
|
5322
5474
|
searchPromptText: string;
|
5323
5475
|
loadingPlaceholder: string;
|
@@ -5339,10 +5491,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5339
5491
|
locale?: string | undefined;
|
5340
5492
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5341
5493
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
5342
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5494
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5343
5495
|
multiple: boolean;
|
5344
5496
|
clearable: boolean;
|
5345
5497
|
creatable: boolean;
|
5498
|
+
showInvalidMatch: boolean;
|
5346
5499
|
createBtnLabel: string;
|
5347
5500
|
searchPromptText: string;
|
5348
5501
|
loadingPlaceholder: string;
|
@@ -5370,10 +5523,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5370
5523
|
contextType: React.Context<void | import("../env").RendererEnv>;
|
5371
5524
|
};
|
5372
5525
|
} & import("hoist-non-react-statics").NonReactStatics<{
|
5373
|
-
new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5526
|
+
new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5374
5527
|
multiple: boolean;
|
5375
5528
|
clearable: boolean;
|
5376
5529
|
creatable: boolean;
|
5530
|
+
showInvalidMatch: boolean;
|
5377
5531
|
createBtnLabel: string;
|
5378
5532
|
searchPromptText: string;
|
5379
5533
|
loadingPlaceholder: string;
|
@@ -5394,10 +5548,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5394
5548
|
}, never>> & {
|
5395
5549
|
locale?: string | undefined;
|
5396
5550
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5397
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5551
|
+
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5398
5552
|
multiple: boolean;
|
5399
5553
|
clearable: boolean;
|
5400
5554
|
creatable: boolean;
|
5555
|
+
showInvalidMatch: boolean;
|
5401
5556
|
createBtnLabel: string;
|
5402
5557
|
searchPromptText: string;
|
5403
5558
|
loadingPlaceholder: string;
|
@@ -5421,10 +5576,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5421
5576
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
|
5422
5577
|
render(): JSX.Element;
|
5423
5578
|
context: any;
|
5424
|
-
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5579
|
+
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5425
5580
|
multiple: boolean;
|
5426
5581
|
clearable: boolean;
|
5427
5582
|
creatable: boolean;
|
5583
|
+
showInvalidMatch: boolean;
|
5428
5584
|
createBtnLabel: string;
|
5429
5585
|
searchPromptText: string;
|
5430
5586
|
loadingPlaceholder: string;
|
@@ -5447,10 +5603,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5447
5603
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5448
5604
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
|
5449
5605
|
forceUpdate(callback?: (() => void) | undefined): void;
|
5450
|
-
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5606
|
+
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5451
5607
|
multiple: boolean;
|
5452
5608
|
clearable: boolean;
|
5453
5609
|
creatable: boolean;
|
5610
|
+
showInvalidMatch: boolean;
|
5454
5611
|
createBtnLabel: string;
|
5455
5612
|
searchPromptText: string;
|
5456
5613
|
loadingPlaceholder: string;
|
@@ -5479,10 +5636,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5479
5636
|
[key: string]: React.ReactInstance;
|
5480
5637
|
};
|
5481
5638
|
componentDidMount?(): void;
|
5482
|
-
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5639
|
+
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5483
5640
|
multiple: boolean;
|
5484
5641
|
clearable: boolean;
|
5485
5642
|
creatable: boolean;
|
5643
|
+
showInvalidMatch: boolean;
|
5486
5644
|
createBtnLabel: string;
|
5487
5645
|
searchPromptText: string;
|
5488
5646
|
loadingPlaceholder: string;
|
@@ -5506,10 +5664,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5506
5664
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
5507
5665
|
componentWillUnmount?(): void;
|
5508
5666
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
5509
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5667
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5510
5668
|
multiple: boolean;
|
5511
5669
|
clearable: boolean;
|
5512
5670
|
creatable: boolean;
|
5671
|
+
showInvalidMatch: boolean;
|
5513
5672
|
createBtnLabel: string;
|
5514
5673
|
searchPromptText: string;
|
5515
5674
|
loadingPlaceholder: string;
|
@@ -5531,10 +5690,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5531
5690
|
locale?: string | undefined;
|
5532
5691
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5533
5692
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
5534
|
-
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5693
|
+
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5535
5694
|
multiple: boolean;
|
5536
5695
|
clearable: boolean;
|
5537
5696
|
creatable: boolean;
|
5697
|
+
showInvalidMatch: boolean;
|
5538
5698
|
createBtnLabel: string;
|
5539
5699
|
searchPromptText: string;
|
5540
5700
|
loadingPlaceholder: string;
|
@@ -5558,10 +5718,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5558
5718
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
5559
5719
|
componentWillMount?(): void;
|
5560
5720
|
UNSAFE_componentWillMount?(): void;
|
5561
|
-
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5721
|
+
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5562
5722
|
multiple: boolean;
|
5563
5723
|
clearable: boolean;
|
5564
5724
|
creatable: boolean;
|
5725
|
+
showInvalidMatch: boolean;
|
5565
5726
|
createBtnLabel: string;
|
5566
5727
|
searchPromptText: string;
|
5567
5728
|
loadingPlaceholder: string;
|
@@ -5583,10 +5744,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5583
5744
|
locale?: string | undefined;
|
5584
5745
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5585
5746
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
5586
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5747
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5587
5748
|
multiple: boolean;
|
5588
5749
|
clearable: boolean;
|
5589
5750
|
creatable: boolean;
|
5751
|
+
showInvalidMatch: boolean;
|
5590
5752
|
createBtnLabel: string;
|
5591
5753
|
searchPromptText: string;
|
5592
5754
|
loadingPlaceholder: string;
|
@@ -5608,10 +5770,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5608
5770
|
locale?: string | undefined;
|
5609
5771
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5610
5772
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
5611
|
-
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5773
|
+
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5612
5774
|
multiple: boolean;
|
5613
5775
|
clearable: boolean;
|
5614
5776
|
creatable: boolean;
|
5777
|
+
showInvalidMatch: boolean;
|
5615
5778
|
createBtnLabel: string;
|
5616
5779
|
searchPromptText: string;
|
5617
5780
|
loadingPlaceholder: string;
|
@@ -5633,10 +5796,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5633
5796
|
locale?: string | undefined;
|
5634
5797
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5635
5798
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
5636
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5799
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5637
5800
|
multiple: boolean;
|
5638
5801
|
clearable: boolean;
|
5639
5802
|
creatable: boolean;
|
5803
|
+
showInvalidMatch: boolean;
|
5640
5804
|
createBtnLabel: string;
|
5641
5805
|
searchPromptText: string;
|
5642
5806
|
loadingPlaceholder: string;
|
@@ -5659,10 +5823,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5659
5823
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5660
5824
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
5661
5825
|
};
|
5662
|
-
new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5826
|
+
new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5663
5827
|
multiple: boolean;
|
5664
5828
|
clearable: boolean;
|
5665
5829
|
creatable: boolean;
|
5830
|
+
showInvalidMatch: boolean;
|
5666
5831
|
createBtnLabel: string;
|
5667
5832
|
searchPromptText: string;
|
5668
5833
|
loadingPlaceholder: string;
|
@@ -5686,10 +5851,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5686
5851
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
|
5687
5852
|
render(): JSX.Element;
|
5688
5853
|
context: any;
|
5689
|
-
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5854
|
+
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5690
5855
|
multiple: boolean;
|
5691
5856
|
clearable: boolean;
|
5692
5857
|
creatable: boolean;
|
5858
|
+
showInvalidMatch: boolean;
|
5693
5859
|
createBtnLabel: string;
|
5694
5860
|
searchPromptText: string;
|
5695
5861
|
loadingPlaceholder: string;
|
@@ -5712,10 +5878,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5712
5878
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5713
5879
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
|
5714
5880
|
forceUpdate(callback?: (() => void) | undefined): void;
|
5715
|
-
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5881
|
+
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5716
5882
|
multiple: boolean;
|
5717
5883
|
clearable: boolean;
|
5718
5884
|
creatable: boolean;
|
5885
|
+
showInvalidMatch: boolean;
|
5719
5886
|
createBtnLabel: string;
|
5720
5887
|
searchPromptText: string;
|
5721
5888
|
loadingPlaceholder: string;
|
@@ -5744,10 +5911,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5744
5911
|
[key: string]: React.ReactInstance;
|
5745
5912
|
};
|
5746
5913
|
componentDidMount?(): void;
|
5747
|
-
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5914
|
+
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5748
5915
|
multiple: boolean;
|
5749
5916
|
clearable: boolean;
|
5750
5917
|
creatable: boolean;
|
5918
|
+
showInvalidMatch: boolean;
|
5751
5919
|
createBtnLabel: string;
|
5752
5920
|
searchPromptText: string;
|
5753
5921
|
loadingPlaceholder: string;
|
@@ -5771,10 +5939,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5771
5939
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
5772
5940
|
componentWillUnmount?(): void;
|
5773
5941
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
5774
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5942
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5775
5943
|
multiple: boolean;
|
5776
5944
|
clearable: boolean;
|
5777
5945
|
creatable: boolean;
|
5946
|
+
showInvalidMatch: boolean;
|
5778
5947
|
createBtnLabel: string;
|
5779
5948
|
searchPromptText: string;
|
5780
5949
|
loadingPlaceholder: string;
|
@@ -5796,10 +5965,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5796
5965
|
locale?: string | undefined;
|
5797
5966
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5798
5967
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
5799
|
-
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5968
|
+
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5800
5969
|
multiple: boolean;
|
5801
5970
|
clearable: boolean;
|
5802
5971
|
creatable: boolean;
|
5972
|
+
showInvalidMatch: boolean;
|
5803
5973
|
createBtnLabel: string;
|
5804
5974
|
searchPromptText: string;
|
5805
5975
|
loadingPlaceholder: string;
|
@@ -5823,10 +5993,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5823
5993
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
5824
5994
|
componentWillMount?(): void;
|
5825
5995
|
UNSAFE_componentWillMount?(): void;
|
5826
|
-
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5996
|
+
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5827
5997
|
multiple: boolean;
|
5828
5998
|
clearable: boolean;
|
5829
5999
|
creatable: boolean;
|
6000
|
+
showInvalidMatch: boolean;
|
5830
6001
|
createBtnLabel: string;
|
5831
6002
|
searchPromptText: string;
|
5832
6003
|
loadingPlaceholder: string;
|
@@ -5848,10 +6019,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5848
6019
|
locale?: string | undefined;
|
5849
6020
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5850
6021
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
5851
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6022
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5852
6023
|
multiple: boolean;
|
5853
6024
|
clearable: boolean;
|
5854
6025
|
creatable: boolean;
|
6026
|
+
showInvalidMatch: boolean;
|
5855
6027
|
createBtnLabel: string;
|
5856
6028
|
searchPromptText: string;
|
5857
6029
|
loadingPlaceholder: string;
|
@@ -5873,10 +6045,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5873
6045
|
locale?: string | undefined;
|
5874
6046
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5875
6047
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
5876
|
-
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6048
|
+
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5877
6049
|
multiple: boolean;
|
5878
6050
|
clearable: boolean;
|
5879
6051
|
creatable: boolean;
|
6052
|
+
showInvalidMatch: boolean;
|
5880
6053
|
createBtnLabel: string;
|
5881
6054
|
searchPromptText: string;
|
5882
6055
|
loadingPlaceholder: string;
|
@@ -5898,10 +6071,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5898
6071
|
locale?: string | undefined;
|
5899
6072
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5900
6073
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
5901
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6074
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5902
6075
|
multiple: boolean;
|
5903
6076
|
clearable: boolean;
|
5904
6077
|
creatable: boolean;
|
6078
|
+
showInvalidMatch: boolean;
|
5905
6079
|
createBtnLabel: string;
|
5906
6080
|
searchPromptText: string;
|
5907
6081
|
loadingPlaceholder: string;
|
@@ -5927,10 +6101,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5927
6101
|
contextType?: React.Context<any> | undefined;
|
5928
6102
|
}, {}> & {
|
5929
6103
|
ComposedComponent: {
|
5930
|
-
new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6104
|
+
new (props: (RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5931
6105
|
multiple: boolean;
|
5932
6106
|
clearable: boolean;
|
5933
6107
|
creatable: boolean;
|
6108
|
+
showInvalidMatch: boolean;
|
5934
6109
|
createBtnLabel: string;
|
5935
6110
|
searchPromptText: string;
|
5936
6111
|
loadingPlaceholder: string;
|
@@ -5951,10 +6126,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5951
6126
|
}, never>> & {
|
5952
6127
|
locale?: string | undefined;
|
5953
6128
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
5954
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6129
|
+
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5955
6130
|
multiple: boolean;
|
5956
6131
|
clearable: boolean;
|
5957
6132
|
creatable: boolean;
|
6133
|
+
showInvalidMatch: boolean;
|
5958
6134
|
createBtnLabel: string;
|
5959
6135
|
searchPromptText: string;
|
5960
6136
|
loadingPlaceholder: string;
|
@@ -5978,10 +6154,11 @@ export declare const SelectWithRemoteOptions: {
|
|
5978
6154
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
|
5979
6155
|
render(): JSX.Element;
|
5980
6156
|
context: any;
|
5981
|
-
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6157
|
+
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
5982
6158
|
multiple: boolean;
|
5983
6159
|
clearable: boolean;
|
5984
6160
|
creatable: boolean;
|
6161
|
+
showInvalidMatch: boolean;
|
5985
6162
|
createBtnLabel: string;
|
5986
6163
|
searchPromptText: string;
|
5987
6164
|
loadingPlaceholder: string;
|
@@ -6004,10 +6181,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6004
6181
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
6005
6182
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
|
6006
6183
|
forceUpdate(callback?: (() => void) | undefined): void;
|
6007
|
-
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6184
|
+
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6008
6185
|
multiple: boolean;
|
6009
6186
|
clearable: boolean;
|
6010
6187
|
creatable: boolean;
|
6188
|
+
showInvalidMatch: boolean;
|
6011
6189
|
createBtnLabel: string;
|
6012
6190
|
searchPromptText: string;
|
6013
6191
|
loadingPlaceholder: string;
|
@@ -6036,10 +6214,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6036
6214
|
[key: string]: React.ReactInstance;
|
6037
6215
|
};
|
6038
6216
|
componentDidMount?(): void;
|
6039
|
-
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6217
|
+
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6040
6218
|
multiple: boolean;
|
6041
6219
|
clearable: boolean;
|
6042
6220
|
creatable: boolean;
|
6221
|
+
showInvalidMatch: boolean;
|
6043
6222
|
createBtnLabel: string;
|
6044
6223
|
searchPromptText: string;
|
6045
6224
|
loadingPlaceholder: string;
|
@@ -6063,10 +6242,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6063
6242
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
6064
6243
|
componentWillUnmount?(): void;
|
6065
6244
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
6066
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6245
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6067
6246
|
multiple: boolean;
|
6068
6247
|
clearable: boolean;
|
6069
6248
|
creatable: boolean;
|
6249
|
+
showInvalidMatch: boolean;
|
6070
6250
|
createBtnLabel: string;
|
6071
6251
|
searchPromptText: string;
|
6072
6252
|
loadingPlaceholder: string;
|
@@ -6088,10 +6268,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6088
6268
|
locale?: string | undefined;
|
6089
6269
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
6090
6270
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
6091
|
-
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6271
|
+
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6092
6272
|
multiple: boolean;
|
6093
6273
|
clearable: boolean;
|
6094
6274
|
creatable: boolean;
|
6275
|
+
showInvalidMatch: boolean;
|
6095
6276
|
createBtnLabel: string;
|
6096
6277
|
searchPromptText: string;
|
6097
6278
|
loadingPlaceholder: string;
|
@@ -6115,10 +6296,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6115
6296
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
6116
6297
|
componentWillMount?(): void;
|
6117
6298
|
UNSAFE_componentWillMount?(): void;
|
6118
|
-
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6299
|
+
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6119
6300
|
multiple: boolean;
|
6120
6301
|
clearable: boolean;
|
6121
6302
|
creatable: boolean;
|
6303
|
+
showInvalidMatch: boolean;
|
6122
6304
|
createBtnLabel: string;
|
6123
6305
|
searchPromptText: string;
|
6124
6306
|
loadingPlaceholder: string;
|
@@ -6140,10 +6322,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6140
6322
|
locale?: string | undefined;
|
6141
6323
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
6142
6324
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
6143
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6325
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6144
6326
|
multiple: boolean;
|
6145
6327
|
clearable: boolean;
|
6146
6328
|
creatable: boolean;
|
6329
|
+
showInvalidMatch: boolean;
|
6147
6330
|
createBtnLabel: string;
|
6148
6331
|
searchPromptText: string;
|
6149
6332
|
loadingPlaceholder: string;
|
@@ -6165,10 +6348,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6165
6348
|
locale?: string | undefined;
|
6166
6349
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
6167
6350
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
6168
|
-
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6351
|
+
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6169
6352
|
multiple: boolean;
|
6170
6353
|
clearable: boolean;
|
6171
6354
|
creatable: boolean;
|
6355
|
+
showInvalidMatch: boolean;
|
6172
6356
|
createBtnLabel: string;
|
6173
6357
|
searchPromptText: string;
|
6174
6358
|
loadingPlaceholder: string;
|
@@ -6190,10 +6374,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6190
6374
|
locale?: string | undefined;
|
6191
6375
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
6192
6376
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
6193
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6377
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6194
6378
|
multiple: boolean;
|
6195
6379
|
clearable: boolean;
|
6196
6380
|
creatable: boolean;
|
6381
|
+
showInvalidMatch: boolean;
|
6197
6382
|
createBtnLabel: string;
|
6198
6383
|
searchPromptText: string;
|
6199
6384
|
loadingPlaceholder: string;
|
@@ -6216,10 +6401,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6216
6401
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
6217
6402
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
6218
6403
|
};
|
6219
|
-
new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6404
|
+
new (props: RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6220
6405
|
multiple: boolean;
|
6221
6406
|
clearable: boolean;
|
6222
6407
|
creatable: boolean;
|
6408
|
+
showInvalidMatch: boolean;
|
6223
6409
|
createBtnLabel: string;
|
6224
6410
|
searchPromptText: string;
|
6225
6411
|
loadingPlaceholder: string;
|
@@ -6243,10 +6429,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6243
6429
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
|
6244
6430
|
render(): JSX.Element;
|
6245
6431
|
context: any;
|
6246
|
-
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6432
|
+
setState<K_2 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6247
6433
|
multiple: boolean;
|
6248
6434
|
clearable: boolean;
|
6249
6435
|
creatable: boolean;
|
6436
|
+
showInvalidMatch: boolean;
|
6250
6437
|
createBtnLabel: string;
|
6251
6438
|
searchPromptText: string;
|
6252
6439
|
loadingPlaceholder: string;
|
@@ -6269,10 +6456,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6269
6456
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
6270
6457
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K_2> | null) | Pick<{}, K_2> | null, callback?: (() => void) | undefined): void;
|
6271
6458
|
forceUpdate(callback?: (() => void) | undefined): void;
|
6272
|
-
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6459
|
+
readonly props: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6273
6460
|
multiple: boolean;
|
6274
6461
|
clearable: boolean;
|
6275
6462
|
creatable: boolean;
|
6463
|
+
showInvalidMatch: boolean;
|
6276
6464
|
createBtnLabel: string;
|
6277
6465
|
searchPromptText: string;
|
6278
6466
|
loadingPlaceholder: string;
|
@@ -6301,10 +6489,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6301
6489
|
[key: string]: React.ReactInstance;
|
6302
6490
|
};
|
6303
6491
|
componentDidMount?(): void;
|
6304
|
-
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6492
|
+
shouldComponentUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6305
6493
|
multiple: boolean;
|
6306
6494
|
clearable: boolean;
|
6307
6495
|
creatable: boolean;
|
6496
|
+
showInvalidMatch: boolean;
|
6308
6497
|
createBtnLabel: string;
|
6309
6498
|
searchPromptText: string;
|
6310
6499
|
loadingPlaceholder: string;
|
@@ -6328,10 +6517,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6328
6517
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
6329
6518
|
componentWillUnmount?(): void;
|
6330
6519
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
6331
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6520
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6332
6521
|
multiple: boolean;
|
6333
6522
|
clearable: boolean;
|
6334
6523
|
creatable: boolean;
|
6524
|
+
showInvalidMatch: boolean;
|
6335
6525
|
createBtnLabel: string;
|
6336
6526
|
searchPromptText: string;
|
6337
6527
|
loadingPlaceholder: string;
|
@@ -6353,10 +6543,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6353
6543
|
locale?: string | undefined;
|
6354
6544
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
6355
6545
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
6356
|
-
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6546
|
+
componentDidUpdate?(prevProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6357
6547
|
multiple: boolean;
|
6358
6548
|
clearable: boolean;
|
6359
6549
|
creatable: boolean;
|
6550
|
+
showInvalidMatch: boolean;
|
6360
6551
|
createBtnLabel: string;
|
6361
6552
|
searchPromptText: string;
|
6362
6553
|
loadingPlaceholder: string;
|
@@ -6380,10 +6571,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6380
6571
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
6381
6572
|
componentWillMount?(): void;
|
6382
6573
|
UNSAFE_componentWillMount?(): void;
|
6383
|
-
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6574
|
+
componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6384
6575
|
multiple: boolean;
|
6385
6576
|
clearable: boolean;
|
6386
6577
|
creatable: boolean;
|
6578
|
+
showInvalidMatch: boolean;
|
6387
6579
|
createBtnLabel: string;
|
6388
6580
|
searchPromptText: string;
|
6389
6581
|
loadingPlaceholder: string;
|
@@ -6405,10 +6597,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6405
6597
|
locale?: string | undefined;
|
6406
6598
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
6407
6599
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
6408
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6600
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6409
6601
|
multiple: boolean;
|
6410
6602
|
clearable: boolean;
|
6411
6603
|
creatable: boolean;
|
6604
|
+
showInvalidMatch: boolean;
|
6412
6605
|
createBtnLabel: string;
|
6413
6606
|
searchPromptText: string;
|
6414
6607
|
loadingPlaceholder: string;
|
@@ -6430,10 +6623,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6430
6623
|
locale?: string | undefined;
|
6431
6624
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
6432
6625
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
6433
|
-
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6626
|
+
componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6434
6627
|
multiple: boolean;
|
6435
6628
|
clearable: boolean;
|
6436
6629
|
creatable: boolean;
|
6630
|
+
showInvalidMatch: boolean;
|
6437
6631
|
createBtnLabel: string;
|
6438
6632
|
searchPromptText: string;
|
6439
6633
|
loadingPlaceholder: string;
|
@@ -6455,10 +6649,11 @@ export declare const SelectWithRemoteOptions: {
|
|
6455
6649
|
locale?: string | undefined;
|
6456
6650
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
6457
6651
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
6458
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6652
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<RemoteOptionsProps<Options[]> & Omit<Pick<Omit<SelectProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "onEdit" | "onAdd" | "onDelete" | "loading" | "delimiter" | "joinValues" | "extractValue" | "options" | "loadOptions" | "block" | "onFocus" | "onBlur" | "onChange" | "spinnerClassName" | "useMobileUI" | "removable" | "editable" | "borderMode" | "searchable" | "popOverContainer" | "itemHeight" | "popoverClassName" | "pathSeparator" | "maxTagCount" | "overflowTagPopover" | "valuesNoWrap" | "renderMenu" | "checkAllBySearch" | "simpleValue" | "defaultOpen" | "hideSelected" | "mobileClassName" | "multi" | "hasError"> & Partial<Pick<Omit<SelectProps, keyof LocaleProps>, "disabled" | "multiple" | "valueField" | "labelField" | "resetValue" | "inline" | "placeholder" | "clearable" | "creatable" | "createBtnLabel" | "checkAll" | "overlayPlacement" | "showInvalidMatch" | "virtualThreshold" | "defaultCheckAll" | "checkAllLabel" | "searchPromptText" | "loadingPlaceholder" | "noResultsText" | "clearAllText" | "clearValueText">> & Partial<Pick<{
|
6459
6653
|
multiple: boolean;
|
6460
6654
|
clearable: boolean;
|
6461
6655
|
creatable: boolean;
|
6656
|
+
showInvalidMatch: boolean;
|
6462
6657
|
createBtnLabel: string;
|
6463
6658
|
searchPromptText: string;
|
6464
6659
|
loadingPlaceholder: string;
|