@olenbetong/appframe-ds 1.0.3 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/package.json +8 -7
- package/scripts/copyAssets.mjs +27 -55
- package/src/AfLookup/Lookup.css +129 -125
- package/src/AfLookup/Lookup.tsx +184 -162
- package/src/AfLookup/LookupCombobox.css +78 -78
- package/src/AfLookup/LookupCombobox.tsx +237 -237
- package/src/AfLookup/LookupEdit.tsx +130 -130
- package/src/AfLookup/LookupGrid.tsx +124 -124
- package/src/AfLookup/index.ts +5 -5
- package/src/autocomplete/Autocomplete.css +256 -256
- package/src/autocomplete/Autocomplete.tsx +320 -320
- package/src/autocomplete/AutocompleteFrame.tsx +168 -168
- package/src/autocomplete/Combobox.tsx +286 -286
- package/src/autocomplete/index.ts +4 -4
- package/src/autocomplete/types.ts +204 -204
- package/src/autocomplete/utils.ts +183 -183
- package/src/binding/BoundNumericTextField.tsx +102 -102
- package/src/binding/BoundTextField.tsx +49 -49
- package/src/binding/CancelButton.tsx +30 -30
- package/src/binding/CancelIconButton.tsx +30 -30
- package/src/binding/DataEditToolbar.tsx +92 -92
- package/src/binding/DeleteButton.tsx +35 -35
- package/src/binding/DeleteIconButton.tsx +35 -35
- package/src/binding/RefreshButton.tsx +31 -31
- package/src/binding/RefreshIconButton.tsx +33 -33
- package/src/binding/RefreshRowIconButton.tsx +33 -33
- package/src/binding/SaveButton.tsx +37 -37
- package/src/binding/SaveIconButton.tsx +38 -38
- package/src/container/Container.tsx +49 -49
- package/src/container/index.ts +1 -1
- package/src/cutoff/CutOffPicker.css +12 -0
- package/src/cutoff/CutOffPicker.tsx +165 -0
- package/src/cutoff/context.tsx +194 -0
- package/src/cutoff/dsCutOffDates.ts +21 -0
- package/src/cutoff/index.ts +4 -0
- package/src/cutoff/utils.test.ts +59 -0
- package/src/cutoff/utils.ts +276 -0
- package/src/filter/ChipListInput.tsx +79 -79
- package/src/filter/FieldFilterPanel.css +150 -150
- package/src/filter/FieldFilterPanel.tsx +309 -309
- package/src/filter/FilterBuilder.css +152 -152
- package/src/filter/FilterBuilder.test.tsx +153 -153
- package/src/filter/FilterBuilder.tsx +435 -435
- package/src/filter/FilterEditor.css +231 -231
- package/src/filter/FilterEditor.test.tsx +259 -259
- package/src/filter/FilterEditor.tsx +75 -74
- package/src/filter/FilterGroupEditor.tsx +160 -160
- package/src/filter/FilterNameDialog.css +22 -22
- package/src/filter/FilterNameDialog.tsx +81 -81
- package/src/filter/FilterRow.tsx +117 -117
- package/src/filter/FilterShareDialog.css +28 -28
- package/src/filter/FilterShareDialog.tsx +201 -201
- package/src/filter/FilterStringField.tsx +78 -77
- package/src/filter/FilterValueEditor.tsx +220 -220
- package/src/filter/SavedFilterTree.css +107 -107
- package/src/filter/SavedFilterTree.test.tsx +94 -94
- package/src/filter/SavedFilterTree.tsx +218 -222
- package/src/filter/fieldFilter.test.ts +158 -158
- package/src/filter/fieldFilter.ts +139 -139
- package/src/filter/index.ts +27 -27
- package/src/filter/types.ts +38 -38
- package/src/filter/useDistinctValues.test.ts +102 -102
- package/src/filter/useDistinctValues.ts +230 -230
- package/src/global.d.ts +11 -11
- package/src/grid/AfGridColumnsPanel.tsx +118 -118
- package/src/grid/AfGridContext.tsx +51 -51
- package/src/grid/AfGridError.tsx +46 -46
- package/src/grid/AfHeaderFilterCell.tsx +147 -151
- package/src/grid/AfHeaderFilterPanel.tsx +111 -111
- package/src/grid/GridEditLookup.css +12 -0
- package/src/grid/GridEditLookup.tsx +121 -0
- package/src/grid/Toolbar.tsx +233 -233
- package/src/grid/editing.ts +100 -100
- package/src/grid/filter.ts +78 -78
- package/src/grid/formatters.ts +48 -48
- package/src/grid/index.css +245 -245
- package/src/grid/index.tsx +489 -484
- package/src/grid/license.ts +48 -48
- package/src/grid/localization.ts +369 -369
- package/src/grid/slots/index.tsx +307 -307
- package/src/grid/slots/slots.css +64 -64
- package/src/grid/theme.tsx +138 -138
- package/src/grid/useAfColumns.tsx +371 -371
- package/src/grid/useAfCurrentIndex.ts +63 -63
- package/src/grid/useAfData.ts +20 -20
- package/src/grid/useAfFilter.ts +160 -160
- package/src/grid/useAfFilterFields.ts +55 -55
- package/src/grid/useAfGridApi.ts +71 -71
- package/src/grid/useAfKeyBindings.ts +36 -36
- package/src/grid/useAfNewItemRow.ts +258 -258
- package/src/grid/useAfPagination.ts +53 -53
- package/src/grid/useAfPersistedState.ts +230 -230
- package/src/grid/useAfRowEditModel.ts +145 -145
- package/src/grid/useAfRowGrouping.ts +47 -47
- package/src/grid/useAfServerAggregation.ts +145 -145
- package/src/grid/useAfSortModel.ts +84 -84
- package/src/i18n.ts +13 -0
- package/src/index.ts +14 -12
- package/src/input/InputAdornments.css +75 -75
- package/src/input/InputAdornments.tsx +102 -102
- package/src/input/index.ts +1 -1
- package/src/layout/AppMenu.tsx +74 -75
- package/src/layout/AppMenuDrawer.css +70 -70
- package/src/layout/AppMenuDrawer.tsx +122 -122
- package/src/layout/ErrorBoundary.tsx +162 -162
- package/src/layout/ResponsiveDialog.css +86 -0
- package/src/layout/ResponsiveDialog.tsx +55 -0
- package/src/layout/index.tsx +69 -68
- package/src/link/Link.tsx +23 -0
- package/src/link/index.ts +1 -0
- package/src/mdi/Mdi.css +138 -138
- package/src/mdi/Mdi.test.tsx +91 -87
- package/src/mdi/Mdi.tsx +141 -141
- package/src/mdi/MdiConfirmCloseDialog.tsx +47 -47
- package/src/mdi/MdiContext.tsx +59 -59
- package/src/mdi/MdiDocumentContext.tsx +60 -60
- package/src/mdi/MdiPanel.tsx +61 -61
- package/src/mdi/MdiRestore.test.tsx +86 -82
- package/src/mdi/MdiTab.tsx +30 -30
- package/src/mdi/controller.test.ts +382 -382
- package/src/mdi/controller.ts +656 -656
- package/src/mdi/dockviewHost.ts +132 -132
- package/src/mdi/fakeHost.ts +200 -200
- package/src/mdi/host.ts +44 -44
- package/src/mdi/ids.test.ts +20 -20
- package/src/mdi/ids.ts +18 -18
- package/src/mdi/index.ts +31 -31
- package/src/mdi/layoutRestore.test.ts +156 -156
- package/src/mdi/layoutRestore.ts +311 -311
- package/src/mdi/layoutSpec.test.ts +143 -143
- package/src/mdi/layoutSpec.ts +214 -214
- package/src/mdi/layoutStore.test.ts +93 -93
- package/src/mdi/layoutStore.ts +99 -99
- package/src/mdi/memorySettingsStore.ts +21 -21
- package/src/mdi/registry.ts +34 -34
- package/src/mdi/testTypes.ts +37 -37
- package/src/mdi/theme.ts +22 -22
- package/src/mdi/types.ts +214 -214
- package/src/page/Page.css +53 -53
- package/src/page/PageBlock.css +64 -64
- package/src/page/PageBlock.tsx +92 -92
- package/src/page/PageHeader.css +88 -88
- package/src/page/PageHeader.tsx +115 -116
- package/src/page/PageTitle.css +5 -0
- package/src/page/PageTitle.tsx +21 -0
- package/src/page/index.ts +4 -3
- package/src/paper/Paper.tsx +52 -52
- package/src/progress/LinearProgress.css +93 -93
- package/src/progress/LinearProgress.tsx +104 -104
- package/src/progress/index.ts +1 -1
- package/src/report-downloader/ReportDownloader.css +67 -67
- package/src/report-downloader/components/StatusItem.tsx +87 -86
- package/src/report-downloader/components/StatusList.tsx +28 -28
- package/src/report-downloader/index.ts +41 -41
- package/src/report-downloader/status.tsx +92 -92
- package/src/sortable/DropIndicator.css +51 -51
- package/src/sortable/DropIndicator.tsx +27 -27
- package/src/sortable/SortableItemList.css +21 -21
- package/src/sortable/SortableItemList.tsx +264 -264
- package/src/sortable/index.ts +8 -8
- package/src/sortable/reorderSortOrder.ts +126 -126
- package/src/sortable/sortOrder.ts +101 -101
- package/src/sortable/types.ts +9 -9
- package/src/sortable/useSortableContainer.ts +53 -53
- package/src/sortable/useSortableItem.ts +95 -95
- package/src/sortable/useSortableList.ts +117 -117
- package/src/test/happy-dom-document-class.ts +24 -24
- package/src/test/setup.ts +12 -12
- package/src/theme/useDsColorScheme.ts +53 -53
- package/tsconfig.build.json +9 -9
- package/tsconfig.json +8 -8
- package/vitest.config.ts +10 -10
|
@@ -1,204 +1,204 @@
|
|
|
1
|
-
import type { ReactNode, Ref } from "react";
|
|
2
|
-
|
|
3
|
-
export type AutocompleteSize = "sm" | "md" | "lg";
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Resolved type of the `value`/`onChange` payload, mirroring MUI's
|
|
7
|
-
* `AutocompleteValue`.
|
|
8
|
-
*/
|
|
9
|
-
export type AutocompleteValue<
|
|
10
|
-
Option,
|
|
11
|
-
Multiple extends boolean | undefined,
|
|
12
|
-
FreeSolo extends boolean | undefined = false,
|
|
13
|
-
> = Multiple extends true
|
|
14
|
-
? Array<FreeSolo extends true ? Option | string : Option>
|
|
15
|
-
: (FreeSolo extends true ? Option | string : Option) | null;
|
|
16
|
-
|
|
17
|
-
export type AutocompleteChangeReason = "selectOption" | "removeOption" | "createOption" | "clear" | "blur";
|
|
18
|
-
|
|
19
|
-
export type AutocompleteInputChangeReason = "input" | "reset" | "clear";
|
|
20
|
-
|
|
21
|
-
export interface AutocompleteRenderOptionState {
|
|
22
|
-
/**
|
|
23
|
-
* Index of the option in the filtered list.
|
|
24
|
-
*/
|
|
25
|
-
index: number;
|
|
26
|
-
/**
|
|
27
|
-
* Current text in the input.
|
|
28
|
-
*/
|
|
29
|
-
inputValue: string;
|
|
30
|
-
/**
|
|
31
|
-
* Whether the option is part of the current value.
|
|
32
|
-
*/
|
|
33
|
-
selected: boolean;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
export interface AutocompleteFilterOptionsState<Option> {
|
|
37
|
-
inputValue: string;
|
|
38
|
-
getOptionLabel: (option: Option) => string;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
/**
|
|
42
|
-
* Props shared by `Autocomplete` and `Combobox`. Modelled on the MUI
|
|
43
|
-
* `Autocomplete` API, with Designsystemet field props (`label`,
|
|
44
|
-
* `description`, `error`, `data-size`, `data-color`) on top.
|
|
45
|
-
*/
|
|
46
|
-
export interface AutocompleteBaseProps<Option, Multiple extends boolean | undefined> {
|
|
47
|
-
/**
|
|
48
|
-
* The options to choose from.
|
|
49
|
-
*/
|
|
50
|
-
options: readonly Option[];
|
|
51
|
-
/**
|
|
52
|
-
* Whether several options can be selected. Selected options are rendered
|
|
53
|
-
* as chips above the input.
|
|
54
|
-
* @default false
|
|
55
|
-
*/
|
|
56
|
-
multiple?: Multiple;
|
|
57
|
-
/**
|
|
58
|
-
* Text rendered in the input when it is empty.
|
|
59
|
-
*/
|
|
60
|
-
placeholder?: string;
|
|
61
|
-
/**
|
|
62
|
-
* Label for the field.
|
|
63
|
-
*/
|
|
64
|
-
label?: ReactNode;
|
|
65
|
-
/**
|
|
66
|
-
* Description rendered below the label.
|
|
67
|
-
*/
|
|
68
|
-
description?: ReactNode;
|
|
69
|
-
/**
|
|
70
|
-
* Validation message rendered below the input. Also puts the field in an
|
|
71
|
-
* invalid state.
|
|
72
|
-
*/
|
|
73
|
-
error?: ReactNode;
|
|
74
|
-
/**
|
|
75
|
-
* Returns the string used as the label of an option, both in the list and
|
|
76
|
-
* in the input.
|
|
77
|
-
* @default (option) => option.label ?? String(option)
|
|
78
|
-
*/
|
|
79
|
-
getOptionLabel?: (option: Option) => string;
|
|
80
|
-
/**
|
|
81
|
-
* Returns the React key for an option.
|
|
82
|
-
* @default getOptionLabel
|
|
83
|
-
*/
|
|
84
|
-
getOptionKey?: (option: Option) => React.Key;
|
|
85
|
-
/**
|
|
86
|
-
* Returns whether an option should be unselectable.
|
|
87
|
-
*/
|
|
88
|
-
getOptionDisabled?: (option: Option) => boolean;
|
|
89
|
-
/**
|
|
90
|
-
* Compares an option to a value. Required when the value is not
|
|
91
|
-
* referentially equal to the option.
|
|
92
|
-
* @default Object.is
|
|
93
|
-
*/
|
|
94
|
-
isOptionEqualToValue?: (option: Option, value: Option) => boolean;
|
|
95
|
-
/**
|
|
96
|
-
* Groups the options under headers. Options must already be sorted by
|
|
97
|
-
* group, the same way MUI's `groupBy` works.
|
|
98
|
-
*/
|
|
99
|
-
groupBy?: (option: Option) => string;
|
|
100
|
-
/**
|
|
101
|
-
* Filters the options against the current input value. Use
|
|
102
|
-
* `createFilterOptions` to tweak the default behaviour.
|
|
103
|
-
*/
|
|
104
|
-
filterOptions?: (options: readonly Option[], state: AutocompleteFilterOptionsState<Option>) => Option[];
|
|
105
|
-
/**
|
|
106
|
-
* Renders the content of an option in the list.
|
|
107
|
-
* @default getOptionLabel
|
|
108
|
-
*/
|
|
109
|
-
renderOption?: (option: Option, state: AutocompleteRenderOptionState) => ReactNode;
|
|
110
|
-
/**
|
|
111
|
-
* Renders the label of a selected chip when `multiple` is set.
|
|
112
|
-
* @default getOptionLabel
|
|
113
|
-
*/
|
|
114
|
-
renderChipLabel?: (option: Option) => ReactNode;
|
|
115
|
-
/**
|
|
116
|
-
* Rendered in the popup when there are no options to show.
|
|
117
|
-
*/
|
|
118
|
-
noOptionsText?: ReactNode;
|
|
119
|
-
/**
|
|
120
|
-
* Rendered in the popup instead of `noOptionsText` while `loading` is set
|
|
121
|
-
* and there are no options.
|
|
122
|
-
*/
|
|
123
|
-
loadingText?: ReactNode;
|
|
124
|
-
/**
|
|
125
|
-
* Shows a loading indicator in the input.
|
|
126
|
-
* @default false
|
|
127
|
-
*/
|
|
128
|
-
loading?: boolean;
|
|
129
|
-
/**
|
|
130
|
-
* Hides the clear button.
|
|
131
|
-
* @default false
|
|
132
|
-
*/
|
|
133
|
-
disableClearable?: boolean;
|
|
134
|
-
/**
|
|
135
|
-
* The maximum number of options rendered in the list. `-1` renders all.
|
|
136
|
-
* @default -1
|
|
137
|
-
*/
|
|
138
|
-
limit?: number;
|
|
139
|
-
/**
|
|
140
|
-
* Highlights the first option as the user types.
|
|
141
|
-
* @default false
|
|
142
|
-
*/
|
|
143
|
-
autoHighlight?: boolean;
|
|
144
|
-
/**
|
|
145
|
-
* Opens the popup when the input is clicked.
|
|
146
|
-
* @default true
|
|
147
|
-
*/
|
|
148
|
-
openOnFocus?: boolean;
|
|
149
|
-
/**
|
|
150
|
-
* Makes the control fill the width of its container.
|
|
151
|
-
* @default true
|
|
152
|
-
*/
|
|
153
|
-
fullWidth?: boolean;
|
|
154
|
-
/**
|
|
155
|
-
* The input value. Use together with `onInputChange` for a controlled input.
|
|
156
|
-
*/
|
|
157
|
-
inputValue?: string;
|
|
158
|
-
/**
|
|
159
|
-
* Called when the text in the input changes.
|
|
160
|
-
*/
|
|
161
|
-
onInputChange?: (event: Event | undefined, value: string, reason: AutocompleteInputChangeReason) => void;
|
|
162
|
-
/**
|
|
163
|
-
* Whether the popup is open. Use together with `onOpenChange`.
|
|
164
|
-
*/
|
|
165
|
-
open?: boolean;
|
|
166
|
-
/**
|
|
167
|
-
* Whether the popup is open initially when uncontrolled.
|
|
168
|
-
*/
|
|
169
|
-
defaultOpen?: boolean;
|
|
170
|
-
/**
|
|
171
|
-
* Called when the popup opens or closes.
|
|
172
|
-
*/
|
|
173
|
-
onOpenChange?: (open: boolean) => void;
|
|
174
|
-
/**
|
|
175
|
-
* Traps interaction inside the popup while it is open.
|
|
176
|
-
* @default false
|
|
177
|
-
*/
|
|
178
|
-
modal?: boolean;
|
|
179
|
-
disabled?: boolean;
|
|
180
|
-
readOnly?: boolean;
|
|
181
|
-
required?: boolean;
|
|
182
|
-
/**
|
|
183
|
-
* Name used when the field is submitted as part of a form.
|
|
184
|
-
*/
|
|
185
|
-
name?: string;
|
|
186
|
-
id?: string;
|
|
187
|
-
className?: string;
|
|
188
|
-
style?: React.CSSProperties;
|
|
189
|
-
/**
|
|
190
|
-
* Classes for the bordered control that wraps the chips and the input.
|
|
191
|
-
*/
|
|
192
|
-
controlClassName?: string;
|
|
193
|
-
/**
|
|
194
|
-
* Classes for the popup element.
|
|
195
|
-
*/
|
|
196
|
-
popupClassName?: string;
|
|
197
|
-
inputRef?: Ref<HTMLInputElement>;
|
|
198
|
-
/**
|
|
199
|
-
* Accessible name for the input. Use when the field has no visible label.
|
|
200
|
-
*/
|
|
201
|
-
"aria-label"?: string;
|
|
202
|
-
"data-size"?: AutocompleteSize;
|
|
203
|
-
"data-color"?: string;
|
|
204
|
-
}
|
|
1
|
+
import type { ReactNode, Ref } from "react";
|
|
2
|
+
|
|
3
|
+
export type AutocompleteSize = "sm" | "md" | "lg";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Resolved type of the `value`/`onChange` payload, mirroring MUI's
|
|
7
|
+
* `AutocompleteValue`.
|
|
8
|
+
*/
|
|
9
|
+
export type AutocompleteValue<
|
|
10
|
+
Option,
|
|
11
|
+
Multiple extends boolean | undefined,
|
|
12
|
+
FreeSolo extends boolean | undefined = false,
|
|
13
|
+
> = Multiple extends true
|
|
14
|
+
? Array<FreeSolo extends true ? Option | string : Option>
|
|
15
|
+
: (FreeSolo extends true ? Option | string : Option) | null;
|
|
16
|
+
|
|
17
|
+
export type AutocompleteChangeReason = "selectOption" | "removeOption" | "createOption" | "clear" | "blur";
|
|
18
|
+
|
|
19
|
+
export type AutocompleteInputChangeReason = "input" | "reset" | "clear";
|
|
20
|
+
|
|
21
|
+
export interface AutocompleteRenderOptionState {
|
|
22
|
+
/**
|
|
23
|
+
* Index of the option in the filtered list.
|
|
24
|
+
*/
|
|
25
|
+
index: number;
|
|
26
|
+
/**
|
|
27
|
+
* Current text in the input.
|
|
28
|
+
*/
|
|
29
|
+
inputValue: string;
|
|
30
|
+
/**
|
|
31
|
+
* Whether the option is part of the current value.
|
|
32
|
+
*/
|
|
33
|
+
selected: boolean;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export interface AutocompleteFilterOptionsState<Option> {
|
|
37
|
+
inputValue: string;
|
|
38
|
+
getOptionLabel: (option: Option) => string;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Props shared by `Autocomplete` and `Combobox`. Modelled on the MUI
|
|
43
|
+
* `Autocomplete` API, with Designsystemet field props (`label`,
|
|
44
|
+
* `description`, `error`, `data-size`, `data-color`) on top.
|
|
45
|
+
*/
|
|
46
|
+
export interface AutocompleteBaseProps<Option, Multiple extends boolean | undefined> {
|
|
47
|
+
/**
|
|
48
|
+
* The options to choose from.
|
|
49
|
+
*/
|
|
50
|
+
options: readonly Option[];
|
|
51
|
+
/**
|
|
52
|
+
* Whether several options can be selected. Selected options are rendered
|
|
53
|
+
* as chips above the input.
|
|
54
|
+
* @default false
|
|
55
|
+
*/
|
|
56
|
+
multiple?: Multiple;
|
|
57
|
+
/**
|
|
58
|
+
* Text rendered in the input when it is empty.
|
|
59
|
+
*/
|
|
60
|
+
placeholder?: string;
|
|
61
|
+
/**
|
|
62
|
+
* Label for the field.
|
|
63
|
+
*/
|
|
64
|
+
label?: ReactNode;
|
|
65
|
+
/**
|
|
66
|
+
* Description rendered below the label.
|
|
67
|
+
*/
|
|
68
|
+
description?: ReactNode;
|
|
69
|
+
/**
|
|
70
|
+
* Validation message rendered below the input. Also puts the field in an
|
|
71
|
+
* invalid state.
|
|
72
|
+
*/
|
|
73
|
+
error?: ReactNode;
|
|
74
|
+
/**
|
|
75
|
+
* Returns the string used as the label of an option, both in the list and
|
|
76
|
+
* in the input.
|
|
77
|
+
* @default (option) => option.label ?? String(option)
|
|
78
|
+
*/
|
|
79
|
+
getOptionLabel?: (option: Option) => string;
|
|
80
|
+
/**
|
|
81
|
+
* Returns the React key for an option.
|
|
82
|
+
* @default getOptionLabel
|
|
83
|
+
*/
|
|
84
|
+
getOptionKey?: (option: Option) => React.Key;
|
|
85
|
+
/**
|
|
86
|
+
* Returns whether an option should be unselectable.
|
|
87
|
+
*/
|
|
88
|
+
getOptionDisabled?: (option: Option) => boolean;
|
|
89
|
+
/**
|
|
90
|
+
* Compares an option to a value. Required when the value is not
|
|
91
|
+
* referentially equal to the option.
|
|
92
|
+
* @default Object.is
|
|
93
|
+
*/
|
|
94
|
+
isOptionEqualToValue?: (option: Option, value: Option) => boolean;
|
|
95
|
+
/**
|
|
96
|
+
* Groups the options under headers. Options must already be sorted by
|
|
97
|
+
* group, the same way MUI's `groupBy` works.
|
|
98
|
+
*/
|
|
99
|
+
groupBy?: (option: Option) => string;
|
|
100
|
+
/**
|
|
101
|
+
* Filters the options against the current input value. Use
|
|
102
|
+
* `createFilterOptions` to tweak the default behaviour.
|
|
103
|
+
*/
|
|
104
|
+
filterOptions?: (options: readonly Option[], state: AutocompleteFilterOptionsState<Option>) => Option[];
|
|
105
|
+
/**
|
|
106
|
+
* Renders the content of an option in the list.
|
|
107
|
+
* @default getOptionLabel
|
|
108
|
+
*/
|
|
109
|
+
renderOption?: (option: Option, state: AutocompleteRenderOptionState) => ReactNode;
|
|
110
|
+
/**
|
|
111
|
+
* Renders the label of a selected chip when `multiple` is set.
|
|
112
|
+
* @default getOptionLabel
|
|
113
|
+
*/
|
|
114
|
+
renderChipLabel?: (option: Option) => ReactNode;
|
|
115
|
+
/**
|
|
116
|
+
* Rendered in the popup when there are no options to show.
|
|
117
|
+
*/
|
|
118
|
+
noOptionsText?: ReactNode;
|
|
119
|
+
/**
|
|
120
|
+
* Rendered in the popup instead of `noOptionsText` while `loading` is set
|
|
121
|
+
* and there are no options.
|
|
122
|
+
*/
|
|
123
|
+
loadingText?: ReactNode;
|
|
124
|
+
/**
|
|
125
|
+
* Shows a loading indicator in the input.
|
|
126
|
+
* @default false
|
|
127
|
+
*/
|
|
128
|
+
loading?: boolean;
|
|
129
|
+
/**
|
|
130
|
+
* Hides the clear button.
|
|
131
|
+
* @default false
|
|
132
|
+
*/
|
|
133
|
+
disableClearable?: boolean;
|
|
134
|
+
/**
|
|
135
|
+
* The maximum number of options rendered in the list. `-1` renders all.
|
|
136
|
+
* @default -1
|
|
137
|
+
*/
|
|
138
|
+
limit?: number;
|
|
139
|
+
/**
|
|
140
|
+
* Highlights the first option as the user types.
|
|
141
|
+
* @default false
|
|
142
|
+
*/
|
|
143
|
+
autoHighlight?: boolean;
|
|
144
|
+
/**
|
|
145
|
+
* Opens the popup when the input is clicked.
|
|
146
|
+
* @default true
|
|
147
|
+
*/
|
|
148
|
+
openOnFocus?: boolean;
|
|
149
|
+
/**
|
|
150
|
+
* Makes the control fill the width of its container.
|
|
151
|
+
* @default true
|
|
152
|
+
*/
|
|
153
|
+
fullWidth?: boolean;
|
|
154
|
+
/**
|
|
155
|
+
* The input value. Use together with `onInputChange` for a controlled input.
|
|
156
|
+
*/
|
|
157
|
+
inputValue?: string;
|
|
158
|
+
/**
|
|
159
|
+
* Called when the text in the input changes.
|
|
160
|
+
*/
|
|
161
|
+
onInputChange?: (event: Event | undefined, value: string, reason: AutocompleteInputChangeReason) => void;
|
|
162
|
+
/**
|
|
163
|
+
* Whether the popup is open. Use together with `onOpenChange`.
|
|
164
|
+
*/
|
|
165
|
+
open?: boolean;
|
|
166
|
+
/**
|
|
167
|
+
* Whether the popup is open initially when uncontrolled.
|
|
168
|
+
*/
|
|
169
|
+
defaultOpen?: boolean;
|
|
170
|
+
/**
|
|
171
|
+
* Called when the popup opens or closes.
|
|
172
|
+
*/
|
|
173
|
+
onOpenChange?: (open: boolean) => void;
|
|
174
|
+
/**
|
|
175
|
+
* Traps interaction inside the popup while it is open.
|
|
176
|
+
* @default false
|
|
177
|
+
*/
|
|
178
|
+
modal?: boolean;
|
|
179
|
+
disabled?: boolean;
|
|
180
|
+
readOnly?: boolean;
|
|
181
|
+
required?: boolean;
|
|
182
|
+
/**
|
|
183
|
+
* Name used when the field is submitted as part of a form.
|
|
184
|
+
*/
|
|
185
|
+
name?: string;
|
|
186
|
+
id?: string;
|
|
187
|
+
className?: string;
|
|
188
|
+
style?: React.CSSProperties;
|
|
189
|
+
/**
|
|
190
|
+
* Classes for the bordered control that wraps the chips and the input.
|
|
191
|
+
*/
|
|
192
|
+
controlClassName?: string;
|
|
193
|
+
/**
|
|
194
|
+
* Classes for the popup element.
|
|
195
|
+
*/
|
|
196
|
+
popupClassName?: string;
|
|
197
|
+
inputRef?: Ref<HTMLInputElement>;
|
|
198
|
+
/**
|
|
199
|
+
* Accessible name for the input. Use when the field has no visible label.
|
|
200
|
+
*/
|
|
201
|
+
"aria-label"?: string;
|
|
202
|
+
"data-size"?: AutocompleteSize;
|
|
203
|
+
"data-color"?: string;
|
|
204
|
+
}
|