@uniformdev/design-system 19.135.0 → 19.136.1-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/index.js +723 -662
- package/dist/index.d.mts +167 -27
- package/dist/index.d.ts +167 -27
- package/dist/index.js +766 -696
- package/package.json +5 -4
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
-
import React__default, { RefObject, HTMLAttributes, ReactNode, ImgHTMLAttributes, SVGProps, CSSProperties, ButtonHTMLAttributes, FocusEventHandler, ChangeEvent, HtmlHTMLAttributes } from 'react';
|
|
4
|
-
import { GroupBase } from 'react-select';
|
|
3
|
+
import React__default, { RefObject, HTMLAttributes, ReactNode, ImgHTMLAttributes, SVGProps, CSSProperties, ButtonHTMLAttributes, FocusEventHandler, ChangeEvent, ComponentType, HtmlHTMLAttributes } from 'react';
|
|
4
|
+
import { GroupBase, Props } from 'react-select';
|
|
5
5
|
export { ActionMeta, FormatOptionLabelContext, FormatOptionLabelMeta, GetOptionLabel, GetOptionValue, GroupBase, GroupHeadingProps, GroupProps, MenuListProps, MenuPlacement, MultiValue, MultiValueGenericProps, MultiValueProps, MultiValueRemoveProps, OnChangeValue, OptionContext, OptionProps, Options, OptionsOrGroups } from 'react-select';
|
|
6
6
|
import * as _emotion_react from '@emotion/react';
|
|
7
7
|
import { SerializedStyles } from '@emotion/react';
|
|
@@ -21766,7 +21766,7 @@ type ComboBoxGroupBase<TOption> = GroupBase<TOption>;
|
|
|
21766
21766
|
* InputComboBox
|
|
21767
21767
|
* @component
|
|
21768
21768
|
* @example <InputComboBox name="name" id="combo-box" options={[{ value: 'chocolate', label: 'Chocolate' }, { value: 'strawberry', label: 'Strawberry' }, { value: 'vanilla', label: 'Vanilla' }]} isMulti /> */
|
|
21769
|
-
declare function InputComboBox<TOption = InputComboBoxOption, IsMulti extends boolean = false, TGroup extends ComboBoxGroupBase<TOption> = ComboBoxGroupBase<TOption>>(props:
|
|
21769
|
+
declare function InputComboBox<TOption = InputComboBoxOption, IsMulti extends boolean = false, TGroup extends ComboBoxGroupBase<TOption> = ComboBoxGroupBase<TOption>>(props: Props<TOption, IsMulti, TGroup>): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
21770
21770
|
|
|
21771
21771
|
type InputInlineSelectOption = {
|
|
21772
21772
|
/** sets the display name of the option */
|
|
@@ -23052,6 +23052,8 @@ type FilterOption = {
|
|
|
23052
23052
|
readOnly?: boolean;
|
|
23053
23053
|
/** Set a disabled state on the input */
|
|
23054
23054
|
disabled?: boolean;
|
|
23055
|
+
/** If filter operator allows it allow bind dynamic value to this filter */
|
|
23056
|
+
bindable?: boolean;
|
|
23055
23057
|
};
|
|
23056
23058
|
/** @deprecated beta - Filter selected and query value props */
|
|
23057
23059
|
type Filter = {
|
|
@@ -23062,6 +23064,11 @@ type Filter = {
|
|
|
23062
23064
|
/** The value selected */
|
|
23063
23065
|
value: string | string[];
|
|
23064
23066
|
};
|
|
23067
|
+
/** @deprecated beta - Locale filter options */
|
|
23068
|
+
type LocaleOptions = {
|
|
23069
|
+
label: string;
|
|
23070
|
+
value: string;
|
|
23071
|
+
}[];
|
|
23065
23072
|
|
|
23066
23073
|
/** @deprecated beta - a list of possible operator values that sync with uniform search api */
|
|
23067
23074
|
type OperatorValue = 'eq' | 'neq' | 'gt' | 'gte' | 'lt' | 'lte' | 'in' | 'nin' | 'between' | 'ndef' | 'def' | 'match';
|
|
@@ -23086,6 +23093,8 @@ declare const RICHTEXT_OPERATORS: OperatorType;
|
|
|
23086
23093
|
declare const CHECKBOX_OPERATORS: OperatorType;
|
|
23087
23094
|
/** @deprecated beta - uniform system field operators */
|
|
23088
23095
|
declare const SYSTEM_FIELD_OPERATORS: OperatorType;
|
|
23096
|
+
/** @deprecated beta - uniform publish status field operators */
|
|
23097
|
+
declare const PUBLISH_STATUS_FIELD_OPERATORS: OperatorType;
|
|
23089
23098
|
|
|
23090
23099
|
/** @description beta - filter button type */
|
|
23091
23100
|
type FilterButtonProps = {
|
|
@@ -23114,15 +23123,107 @@ declare const FilterButton: ({ text, icon, filterCount, hasSelectedValue, dataTe
|
|
|
23114
23123
|
* @deprecated beta - Default filter controls for search and filter
|
|
23115
23124
|
* @example <FilterControls />
|
|
23116
23125
|
*/
|
|
23117
|
-
declare const FilterControls: ({ children,
|
|
23126
|
+
declare const FilterControls: ({ children, hideSearchInput, }: {
|
|
23118
23127
|
/** optional param to allow you to add your own controls */
|
|
23119
23128
|
children?: ReactNode;
|
|
23120
23129
|
/** optional param to hide the search input */
|
|
23121
23130
|
hideSearchInput?: boolean | undefined;
|
|
23122
|
-
/** The default sort by value */
|
|
23123
|
-
defaultSortByValue: string;
|
|
23124
23131
|
}) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23125
23132
|
|
|
23133
|
+
type FilterEditorProps = Record<FilterEditor, ComponentType<{
|
|
23134
|
+
label?: string;
|
|
23135
|
+
value?: string;
|
|
23136
|
+
options: any;
|
|
23137
|
+
onChange: (value: any) => void;
|
|
23138
|
+
}> | (() => ReactNode) | null>;
|
|
23139
|
+
type ComboboxOption = {
|
|
23140
|
+
label: string;
|
|
23141
|
+
value: string;
|
|
23142
|
+
};
|
|
23143
|
+
type SingleValueComboboxProps = Omit<FilterEditorCommonInputProps, 'value'> & {
|
|
23144
|
+
value?: string;
|
|
23145
|
+
options: ComboboxOption[];
|
|
23146
|
+
onChange: (e: string) => void;
|
|
23147
|
+
};
|
|
23148
|
+
type MultiValueComboboxProps = Omit<FilterEditorCommonInputProps, 'value'> & {
|
|
23149
|
+
value?: string[];
|
|
23150
|
+
options: ComboboxOption[];
|
|
23151
|
+
onChange: (e: string[]) => void;
|
|
23152
|
+
};
|
|
23153
|
+
type FilterEditorCommonInputProps = {
|
|
23154
|
+
ariaLabel: string;
|
|
23155
|
+
onChange: (e: string | string[]) => void;
|
|
23156
|
+
disabled?: boolean;
|
|
23157
|
+
value?: string | string[];
|
|
23158
|
+
readOnly?: boolean;
|
|
23159
|
+
valueTestId?: string;
|
|
23160
|
+
bindable?: boolean;
|
|
23161
|
+
};
|
|
23162
|
+
/**
|
|
23163
|
+
* @deprecated beta - Multie select filter component
|
|
23164
|
+
* @example <FilterMultiChoiceEditor options={options} value={options.filter((option) => values.includes(option.value)} onChange={(e) => onChange(e.map((option) => option.value))} />
|
|
23165
|
+
*/
|
|
23166
|
+
declare const FilterMultiChoiceEditor: ({ value, options, disabled, readOnly, valueTestId, ...props }: MultiValueComboboxProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23167
|
+
/**
|
|
23168
|
+
* @deprecated beta - Single select filter component
|
|
23169
|
+
* @example <FilterSingleChoiceEditor options={options} value={options.find((option) => values.includes(option.value)} onChange={(e) => onChange(e.value)} />
|
|
23170
|
+
*/
|
|
23171
|
+
declare const FilterSingleChoiceEditor: ({ options, value, disabled, readOnly, onChange, valueTestId, }: SingleValueComboboxProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23172
|
+
/**
|
|
23173
|
+
* @deprecated beta - Status multi select filter component that renders a custom dropdown menu
|
|
23174
|
+
* @example <StatusMultiEditor options={options} value={value} onChange={onChange} />
|
|
23175
|
+
*/
|
|
23176
|
+
declare const StatusMultiEditor: ({ options, value, disabled, readOnly, onChange, valueTestId, }: MultiValueComboboxProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23177
|
+
/**
|
|
23178
|
+
* @deprecated beta - Status single select filter component that renders a custom dropdown menu
|
|
23179
|
+
* @example <StatusSingleEditor options={options} value={value} onChange={onChange} />
|
|
23180
|
+
*/
|
|
23181
|
+
declare const StatusSingleEditor: ({ options, value, disabled, readOnly, onChange, valueTestId, }: SingleValueComboboxProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23182
|
+
/**
|
|
23183
|
+
* @deprecated beta - Renders a text input field for filtering
|
|
23184
|
+
* @example <TextEditor ariaLabel="Search" value={value} onChange={onChange} />
|
|
23185
|
+
*/
|
|
23186
|
+
declare const TextEditor: ({ onChange, ariaLabel, value, readOnly, valueTestId, }: FilterEditorCommonInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23187
|
+
/**
|
|
23188
|
+
* @deprecated beta - Renders a number range input field for filtering
|
|
23189
|
+
* @example <NumberRangeEditor ariaLabel="Number Range" value={value} onChange={onChange} />
|
|
23190
|
+
*/
|
|
23191
|
+
declare const NumberRangeEditor: ({ onChange, disabled, ariaLabel, value, readOnly, valueTestId, }: FilterEditorCommonInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23192
|
+
/**
|
|
23193
|
+
* @deprecated beta - Renders a number input field for filtering
|
|
23194
|
+
* @example <NumberEditor ariaLabel="Number" value={value} onChange={onChange} />
|
|
23195
|
+
*/
|
|
23196
|
+
declare const NumberEditor: ({ ariaLabel, onChange, disabled, value, readOnly, valueTestId, }: FilterEditorCommonInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23197
|
+
/**
|
|
23198
|
+
* @deprecated beta - Renders a date input field for filtering
|
|
23199
|
+
* @example <DateEditor ariaLabel="Date" value={value} onChange={onChange} />
|
|
23200
|
+
*/
|
|
23201
|
+
declare const DateEditor: ({ onChange, ariaLabel, disabled, value, readOnly, valueTestId, }: FilterEditorCommonInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23202
|
+
/**
|
|
23203
|
+
* @deprecated beta - Renders a date range input field for filtering
|
|
23204
|
+
* @example <DateRangeEditor ariaLabel="Date Range" value={value} onChange={onChange} />
|
|
23205
|
+
*/
|
|
23206
|
+
declare const DateRangeEditor: ({ ariaLabel, onChange, disabled, value, readOnly, valueTestId, }: FilterEditorCommonInputProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23207
|
+
type FilterEditorRendererProps = Pick<FilterOption, 'readOnly' | 'disabled' | 'bindable'> & {
|
|
23208
|
+
/** The type of filter editor to render */
|
|
23209
|
+
editorType: FilterEditor;
|
|
23210
|
+
/** The options for the filter editor */
|
|
23211
|
+
options?: Array<Operator>;
|
|
23212
|
+
/** The value for the filter editor */
|
|
23213
|
+
value?: string | string[] | InputOption[] | InputOption;
|
|
23214
|
+
/** The onChange event for the filter editor */
|
|
23215
|
+
onChange: (e: string) => void;
|
|
23216
|
+
/** Sets the data-testid value */
|
|
23217
|
+
valueTestId?: string;
|
|
23218
|
+
};
|
|
23219
|
+
/**
|
|
23220
|
+
* @deprecated beta - Renders a filter editor component
|
|
23221
|
+
* @example <FilterEditorRenderer editorType="multiChoice" options={options} value={value} onChange={onChange} />
|
|
23222
|
+
*/
|
|
23223
|
+
declare const FilterEditorRenderer: ({ editorType, ...props }: FilterEditorRendererProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
|
|
23224
|
+
/** @deprecated beta - A mapper for filter editor components */
|
|
23225
|
+
declare const filterMapper: Record<FilterEditor, ComponentType<any> | null>;
|
|
23226
|
+
|
|
23126
23227
|
type FilterRowProps = {
|
|
23127
23228
|
/** the index of the filter row */
|
|
23128
23229
|
index: number;
|
|
@@ -23144,15 +23245,15 @@ declare const FilterItem: ({ index, paramOptions, operatorOptions, valueOptions,
|
|
|
23144
23245
|
type FilterItemsProps = {
|
|
23145
23246
|
/** The text for the add button */
|
|
23146
23247
|
addButtonText?: string;
|
|
23147
|
-
/** The text for the reset button */
|
|
23148
|
-
resetButtonText?: string;
|
|
23149
23248
|
};
|
|
23150
23249
|
/** @deprecated beta - A filter items component used to display filter options */
|
|
23151
|
-
declare const FilterItems: ({ addButtonText
|
|
23250
|
+
declare const FilterItems: ({ addButtonText }: FilterItemsProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23152
23251
|
|
|
23153
23252
|
type SearchAndFilterOptionsContainerProps = {
|
|
23154
23253
|
/** The button row to be displayed at the bottom of the container */
|
|
23155
23254
|
buttonRow?: React__default.ReactNode;
|
|
23255
|
+
/** The sort controls to be displayed at the bottom of the container */
|
|
23256
|
+
sortControls?: React__default.ReactNode;
|
|
23156
23257
|
/** The children of the container */
|
|
23157
23258
|
children: React__default.ReactNode;
|
|
23158
23259
|
};
|
|
@@ -23160,7 +23261,7 @@ type SearchAndFilterOptionsContainerProps = {
|
|
|
23160
23261
|
* @deprecated beta - A container component for search and filter options
|
|
23161
23262
|
* @example <SearchAndFilterOptionsContainer buttonRow={<button>Button</button>}>Children</SearchAndFilterOptionsContainer>
|
|
23162
23263
|
* */
|
|
23163
|
-
declare const SearchAndFilterOptionsContainer: ({ buttonRow, children, }: SearchAndFilterOptionsContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23264
|
+
declare const SearchAndFilterOptionsContainer: ({ buttonRow, sortControls, children, }: SearchAndFilterOptionsContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23164
23265
|
type FiltersProps = {
|
|
23165
23266
|
/** The id of the filter menu */
|
|
23166
23267
|
id: string;
|
|
@@ -23168,22 +23269,30 @@ type FiltersProps = {
|
|
|
23168
23269
|
filterTitle?: string;
|
|
23169
23270
|
/** The controls to be displayed at the bottom of the filter menu */
|
|
23170
23271
|
menuControls?: React__default.ReactNode;
|
|
23272
|
+
/** Sort options controls that display at the bottom of the filter menu */
|
|
23273
|
+
sortControls?: React__default.ReactNode;
|
|
23171
23274
|
/** The children of the filter menu */
|
|
23172
23275
|
children: React__default.ReactNode;
|
|
23173
23276
|
/** Sets the data-test-id attribute for the filter menu */
|
|
23174
23277
|
dataTestId?: string;
|
|
23278
|
+
/** The text for the reset button
|
|
23279
|
+
* @default 'reset'
|
|
23280
|
+
*/
|
|
23281
|
+
resetButtonText?: string;
|
|
23175
23282
|
};
|
|
23176
23283
|
/**
|
|
23177
23284
|
* @deprecated beta - A filter menu component used to display filter options
|
|
23178
23285
|
* @example <FilterMenu id="search-and-filter-options">Children</FilterMenu>
|
|
23179
23286
|
* */
|
|
23180
|
-
declare const FilterMenu: ({ id, filterTitle, menuControls, children, dataTestId, }: FiltersProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23287
|
+
declare const FilterMenu: ({ id, filterTitle, menuControls, sortControls, children, dataTestId, resetButtonText, }: FiltersProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23181
23288
|
|
|
23289
|
+
type FilterMapper = Record<string, ComponentType<any> | null>;
|
|
23182
23290
|
type SearchAndFilterProviderProps = {
|
|
23183
23291
|
/** sets the filter values */
|
|
23184
23292
|
filters: Filter[];
|
|
23185
23293
|
/** sets the filter mode */
|
|
23186
|
-
|
|
23294
|
+
/** sets the filter visibility */
|
|
23295
|
+
filterVisible?: boolean;
|
|
23187
23296
|
/** function to trigger search change event */
|
|
23188
23297
|
onSearchChange?: (term: string) => void;
|
|
23189
23298
|
/** function to trigger filter change events */
|
|
@@ -23191,7 +23300,7 @@ type SearchAndFilterProviderProps = {
|
|
|
23191
23300
|
/** function to trigger sort change events */
|
|
23192
23301
|
onSortChange: (sort: string) => void;
|
|
23193
23302
|
/** sets the reset filter values
|
|
23194
|
-
* @default []
|
|
23303
|
+
* @default "[{ field: '', operator: '', value: '' }]"
|
|
23195
23304
|
*/
|
|
23196
23305
|
resetFilterValues?: Filter[];
|
|
23197
23306
|
/** sets the list of filter options for each filter row */
|
|
@@ -23200,8 +23309,16 @@ type SearchAndFilterProviderProps = {
|
|
|
23200
23309
|
sortOptions: FilterOption[];
|
|
23201
23310
|
/** the default sort by value */
|
|
23202
23311
|
defaultSortByValue: string;
|
|
23312
|
+
/** sets the list of locale options */
|
|
23313
|
+
localeOptions?: LocaleOptions;
|
|
23314
|
+
/** function to trigger locale change events */
|
|
23315
|
+
onLocaleChange?: (locale: string) => void;
|
|
23316
|
+
/** sets the default locale option value */
|
|
23317
|
+
defaultLocale?: string;
|
|
23203
23318
|
/** the total number of results */
|
|
23204
23319
|
totalResults?: number;
|
|
23320
|
+
/** the filter mapper function */
|
|
23321
|
+
filterMapper?: FilterMapper;
|
|
23205
23322
|
/** sets child components giving access to useSearchAndFilter context */
|
|
23206
23323
|
children: ReactNode;
|
|
23207
23324
|
};
|
|
@@ -23212,9 +23329,9 @@ type SearchAndFilterContextProps = {
|
|
|
23212
23329
|
/** sets the search term value */
|
|
23213
23330
|
setSearchTerm: (term: string) => void;
|
|
23214
23331
|
/** current filter visibility */
|
|
23215
|
-
filterVisibility?:
|
|
23332
|
+
filterVisibility?: boolean;
|
|
23216
23333
|
/** sets the filter visibility */
|
|
23217
|
-
setFilterVisibility: (
|
|
23334
|
+
setFilterVisibility: (visible: boolean) => void;
|
|
23218
23335
|
/** sets the initial filters */
|
|
23219
23336
|
filters: Filter[];
|
|
23220
23337
|
/** function to update the current filters */
|
|
@@ -23227,14 +23344,22 @@ type SearchAndFilterContextProps = {
|
|
|
23227
23344
|
handleResetFilters: (filters?: Filter[]) => void;
|
|
23228
23345
|
/** function that deletes a row and it's values visually and from state */
|
|
23229
23346
|
handleDeleteFilter: (index: number) => void;
|
|
23347
|
+
/** function to handle locale change */
|
|
23348
|
+
handleLocaleChange: (locale: string) => void;
|
|
23230
23349
|
/** sets the initial list of filter options */
|
|
23231
23350
|
filterOptions: FilterOption[];
|
|
23232
23351
|
/** sets the initial list of sort options */
|
|
23233
23352
|
sortOptions: FilterOption[];
|
|
23234
|
-
/** a
|
|
23353
|
+
/** a value of the selected sort by value */
|
|
23235
23354
|
sortByValue: string;
|
|
23355
|
+
/** sets the initial list of locale options */
|
|
23356
|
+
localeOptions?: LocaleOptions;
|
|
23357
|
+
/** the value of the selected locale */
|
|
23358
|
+
localeValue?: string;
|
|
23236
23359
|
/** a valid list of valid filter options */
|
|
23237
23360
|
validFilterQuery: Filter[] | undefined;
|
|
23361
|
+
/** a component list to map filter options */
|
|
23362
|
+
filterMapper?: FilterMapper;
|
|
23238
23363
|
/** the total number of results */
|
|
23239
23364
|
totalResults?: number;
|
|
23240
23365
|
};
|
|
@@ -23243,7 +23368,7 @@ declare const SearchAndFilterContext: React$1.Context<SearchAndFilterContextProp
|
|
|
23243
23368
|
* @deprecated beta - Search and filter provider
|
|
23244
23369
|
* @example <SearchAndFilterProvider filters={filters} filterOptions={filterOptions} onSearchChange={onSearchChange} onChange={onChange}>Children</SearchAndFilterProvider>
|
|
23245
23370
|
* */
|
|
23246
|
-
declare const SearchAndFilterProvider: ({ filters, filterOptions, sortOptions, defaultSortByValue,
|
|
23371
|
+
declare const SearchAndFilterProvider: ({ filters, filterOptions, sortOptions, defaultSortByValue, defaultLocale, localeOptions, onLocaleChange, filterVisible, onSearchChange, onChange, onSortChange, resetFilterValues, totalResults, filterMapper, children, }: SearchAndFilterProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23247
23372
|
/** @deprecated beta - Search and filter hook
|
|
23248
23373
|
* @example const { searchTerm, setSearchTerm, filterVisibility, setFilterVisibility, filters, setFilters, handleAddFilter, handleResetFilters, handleDeleteFilter, filterOptions, validFilterQuery } = useSearchAndFilter();
|
|
23249
23374
|
*/
|
|
@@ -23253,9 +23378,9 @@ declare const useSearchAndFilter: () => {
|
|
|
23253
23378
|
/** sets the search term value */
|
|
23254
23379
|
setSearchTerm: (term: string) => void;
|
|
23255
23380
|
/** current filter visibility */
|
|
23256
|
-
filterVisibility?:
|
|
23381
|
+
filterVisibility?: boolean | undefined;
|
|
23257
23382
|
/** sets the filter visibility */
|
|
23258
|
-
setFilterVisibility: (
|
|
23383
|
+
setFilterVisibility: (visible: boolean) => void;
|
|
23259
23384
|
/** sets the initial filters */
|
|
23260
23385
|
filters: Filter[];
|
|
23261
23386
|
/** function to update the current filters */
|
|
@@ -23268,14 +23393,22 @@ declare const useSearchAndFilter: () => {
|
|
|
23268
23393
|
handleResetFilters: (filters?: Filter[]) => void;
|
|
23269
23394
|
/** function that deletes a row and it's values visually and from state */
|
|
23270
23395
|
handleDeleteFilter: (index: number) => void;
|
|
23396
|
+
/** function to handle locale change */
|
|
23397
|
+
handleLocaleChange: (locale: string) => void;
|
|
23271
23398
|
/** sets the initial list of filter options */
|
|
23272
23399
|
filterOptions: FilterOption[];
|
|
23273
23400
|
/** sets the initial list of sort options */
|
|
23274
23401
|
sortOptions: FilterOption[];
|
|
23275
|
-
/** a
|
|
23402
|
+
/** a value of the selected sort by value */
|
|
23276
23403
|
sortByValue: string;
|
|
23404
|
+
/** sets the initial list of locale options */
|
|
23405
|
+
localeOptions?: LocaleOptions | undefined;
|
|
23406
|
+
/** the value of the selected locale */
|
|
23407
|
+
localeValue?: string | undefined;
|
|
23277
23408
|
/** a valid list of valid filter options */
|
|
23278
23409
|
validFilterQuery: Filter[] | undefined;
|
|
23410
|
+
/** a component list to map filter options */
|
|
23411
|
+
filterMapper?: FilterMapper | undefined;
|
|
23279
23412
|
/** the total number of results */
|
|
23280
23413
|
totalResults?: number | undefined;
|
|
23281
23414
|
};
|
|
@@ -23286,11 +23419,9 @@ type SearchAndFilterProps = Omit<SearchAndFilterProviderProps, 'children'> & {
|
|
|
23286
23419
|
*/
|
|
23287
23420
|
filterControls?: React$1.ReactNode;
|
|
23288
23421
|
/** sets the filter mode */
|
|
23289
|
-
|
|
23422
|
+
filterVisible?: boolean;
|
|
23290
23423
|
/** The view switch controls to be displayed */
|
|
23291
23424
|
viewSwitchControls?: React$1.ReactNode;
|
|
23292
|
-
/** The default sort by value */
|
|
23293
|
-
defaultSortByValue: string;
|
|
23294
23425
|
/** The number of total results */
|
|
23295
23426
|
totalResults?: number;
|
|
23296
23427
|
/** The results container view
|
|
@@ -23301,12 +23432,14 @@ type SearchAndFilterProps = Omit<SearchAndFilterProviderProps, 'children'> & {
|
|
|
23301
23432
|
resetFilterValues?: Filter[];
|
|
23302
23433
|
/** The children of the search and filter component */
|
|
23303
23434
|
children?: React$1.ReactNode;
|
|
23435
|
+
/** The filter mapper function */
|
|
23436
|
+
filterMapper?: Record<FilterEditor, React$1.ComponentType<any> | null>;
|
|
23304
23437
|
};
|
|
23305
23438
|
/**
|
|
23306
23439
|
* @deprecated beta - Search and filter component
|
|
23307
23440
|
* @example <SearchAndFilter filters={filters} filterOptions={filterOptions} onChange={onChange} onSearchChange={onSearchChange} onSearchReset={onSearchReset} totalResults={totalResults} />
|
|
23308
23441
|
* */
|
|
23309
|
-
declare const SearchAndFilter: ({ filters, filterOptions,
|
|
23442
|
+
declare const SearchAndFilter: ({ filters, filterOptions, filterVisible, sortOptions, defaultSortByValue, filterControls, viewSwitchControls, resultsContainerView, children, filterMapper, onChange, onSearchChange, onSortChange, onLocaleChange, totalResults, resetFilterValues, defaultLocale, localeOptions, }: SearchAndFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23310
23443
|
|
|
23311
23444
|
type SearchAndFilterResultContainerProps = {
|
|
23312
23445
|
/** The label for the clear button
|
|
@@ -23340,6 +23473,7 @@ type SegmentedControlOption<TValue extends string = string> = {
|
|
|
23340
23473
|
icon?: IconType;
|
|
23341
23474
|
tooltip?: string;
|
|
23342
23475
|
disabled?: boolean;
|
|
23476
|
+
'data-testid'?: string;
|
|
23343
23477
|
};
|
|
23344
23478
|
type SegmentedControlProps<TValue extends string = string> = Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange'> & {
|
|
23345
23479
|
/** A unique name for the component, used to group the options */
|
|
@@ -23363,13 +23497,19 @@ type SegmentedControlProps<TValue extends string = string> = Omit<React__default
|
|
|
23363
23497
|
* The size of the input
|
|
23364
23498
|
* @default 'md'
|
|
23365
23499
|
*/
|
|
23366
|
-
size?: 'sm' | 'md' | 'lg';
|
|
23500
|
+
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
23501
|
+
/** Hides the text of the options */
|
|
23502
|
+
hideOptionText?: boolean;
|
|
23503
|
+
/** The size of the icon
|
|
23504
|
+
* @default '1.5em'
|
|
23505
|
+
*/
|
|
23506
|
+
iconSize?: string;
|
|
23367
23507
|
};
|
|
23368
23508
|
/**
|
|
23369
23509
|
* Horizontal control with multiple segments. Can be used as a replacement of radio buttons.
|
|
23370
23510
|
* @example <SegmentedControl name="mySegmentedControl" value={value} options={[{label: 'Option 1', value: 'option1',label: 'Option 2', value: 'option2'}]} onChange={setValue} />
|
|
23371
23511
|
*/
|
|
23372
|
-
declare const SegmentedControl: <TValue extends string = string>({ name, options, value, onChange, noCheckmark, disabled, orientation, size, ...props }: SegmentedControlProps<TValue>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23512
|
+
declare const SegmentedControl: <TValue extends string = string>({ name, options, value, onChange, noCheckmark, disabled, orientation, size, hideOptionText, iconSize, ...props }: SegmentedControlProps<TValue>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23373
23513
|
|
|
23374
23514
|
declare function ShortcutContext({ children }: {
|
|
23375
23515
|
children: React__default.ReactNode;
|
|
@@ -23814,4 +23954,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
23814
23954
|
};
|
|
23815
23955
|
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23816
23956
|
|
|
23817
|
-
export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, type ArrowPositionProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, CHECKBOX_OPERATORS, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, ConnectToDataElementButton, type ConnectToDataElementButtonProps, Container, type ContainerProps, Counter, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DATE_OPERATORS, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, Fieldset, type FieldsetProps, type Filter, FilterButton, type FilterButtonProps, FilterControls, type FilterEditor, FilterItem, FilterItems, type FilterItemsProps, FilterMenu, type FilterOption, type FilterRowProps, type FiltersProps, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, InlineAlert, type InlineAlertProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputOption, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, Label, LabelLeadingIcon, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuGroup, type MenuGroupProps, MenuItem, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, Modal, ModalDialog, type ModalDialogProps, type ModalProps, MultilineChip, type MultilineChipProps, NUMBER_OPERATORS, type Operator, type OperatorType, type OperatorValue, type OperatorValueType, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, type ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, RICHTEXT_OPERATORS, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, SYSTEM_DATE_OPERATORS, SYSTEM_FIELD_OPERATORS, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SearchAndFilter, SearchAndFilterContext, type SearchAndFilterContextProps, SearchAndFilterOptionsContainer, type SearchAndFilterOptionsContainerProps, type SearchAndFilterProps, SearchAndFilterProvider, type SearchAndFilterProviderProps, SearchAndFilterResultContainer, type SearchAndFilterResultContainerProps, SearchOnlyContext, SearchOnlyFilter, type SearchOnlyProviderProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SerializedLinkNode, ShortcutContext, ShortcutRevealer, Skeleton, type SkeletonProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, SuccessMessage, type SuccessMessageProps, Switch, type SwitchProps, TAKEOVER_STACK_ID, TEXTBOX_OPERATORS, TabButton, TabButtonGroup, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, Textarea, type TextareaProps, Theme, type ThemeProps, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, USER_OPERATORS, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, type filterMode, fullWidthScreenIcon, getDrawerAttributes, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spin, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useSearchAndFilter, useShortcut, warningIcon, yesNoIcon };
|
|
23957
|
+
export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, type ArrowPositionProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, CHECKBOX_OPERATORS, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, ConnectToDataElementButton, type ConnectToDataElementButtonProps, Container, type ContainerProps, Counter, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DATE_OPERATORS, DashedBox, type DashedBoxProps, DateEditor, DateRangeEditor, DateTimePicker, type DateTimePickerProps, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, Fieldset, type FieldsetProps, type Filter, FilterButton, type FilterButtonProps, FilterControls, type FilterEditor, type FilterEditorCommonInputProps, type FilterEditorProps, FilterEditorRenderer, type FilterEditorRendererProps, FilterItem, FilterItems, type FilterItemsProps, type FilterMapper, FilterMenu, FilterMultiChoiceEditor, type FilterOption, type FilterRowProps, FilterSingleChoiceEditor, type FiltersProps, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, InlineAlert, type InlineAlertProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputOption, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, Label, LabelLeadingIcon, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuGroup, type MenuGroupProps, MenuItem, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, Modal, ModalDialog, type ModalDialogProps, type ModalProps, MultilineChip, type MultilineChipProps, NUMBER_OPERATORS, NumberEditor, NumberRangeEditor, type Operator, type OperatorType, type OperatorValue, type OperatorValueType, PUBLISH_STATUS_FIELD_OPERATORS, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, type ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, RICHTEXT_OPERATORS, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, SYSTEM_DATE_OPERATORS, SYSTEM_FIELD_OPERATORS, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SearchAndFilter, SearchAndFilterContext, type SearchAndFilterContextProps, SearchAndFilterOptionsContainer, type SearchAndFilterOptionsContainerProps, type SearchAndFilterProps, SearchAndFilterProvider, type SearchAndFilterProviderProps, SearchAndFilterResultContainer, type SearchAndFilterResultContainerProps, SearchOnlyContext, SearchOnlyFilter, type SearchOnlyProviderProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SerializedLinkNode, ShortcutContext, ShortcutRevealer, Skeleton, type SkeletonProps, StatusBullet, type StatusBulletProps, StatusMultiEditor, StatusSingleEditor, type StatusTypeProps, SuccessMessage, type SuccessMessageProps, Switch, type SwitchProps, TAKEOVER_STACK_ID, TEXTBOX_OPERATORS, TabButton, TabButtonGroup, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, TextEditor, Textarea, type TextareaProps, Theme, type ThemeProps, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, USER_OPERATORS, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, filterMapper, type filterMode, fullWidthScreenIcon, getDrawerAttributes, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spin, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useSearchAndFilter, useShortcut, warningIcon, yesNoIcon };
|