@reportportal/ui-kit 0.0.1-alpha.17 → 0.0.1-alpha.171
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/README.md +28 -2
- package/dist/actionMenu-77a63b96.js +155 -0
- package/dist/actionMenu.js +30 -0
- package/dist/adaptiveTagList.js +189 -0
- package/dist/attachedFile.js +9 -0
- package/dist/autocompletes.js +780 -0
- package/dist/baseIconButton-251479f7.js +25 -0
- package/dist/baseIconButton.js +1 -1
- package/dist/breadcrumbs-9b38b89c.js +184 -0
- package/dist/breadcrumbs.js +13 -0
- package/dist/bubblesLoader-f3ffa240.js +28 -0
- package/dist/bubblesLoader.js +1 -1
- package/dist/bulkPanel.js +222 -0
- package/dist/button-97d9e587.js +66 -0
- package/dist/button.js +1 -1
- package/dist/calendarArrow-44c7e60e.js +5 -0
- package/dist/checkbox-493fdc63.js +73 -0
- package/dist/checkbox.js +1 -1
- package/dist/chevronDownDropdown-0260bb66.js +5 -0
- package/dist/chip.js +72 -0
- package/dist/clear-53660571.js +5 -0
- package/dist/close-4d480ef7.js +5 -0
- package/dist/common/constants/floatingUi.d.ts +8 -0
- package/dist/common/constants/sortable.d.ts +1 -0
- package/dist/common/hooks/index.d.ts +3 -0
- package/dist/common/hooks/useOnClickOutside.d.ts +5 -1
- package/dist/common/hooks/useSortable.d.ts +3 -0
- package/dist/common/hooks/useTreeDropValidation.d.ts +5 -0
- package/dist/common/hooks/useTreeSortable.d.ts +3 -0
- package/dist/common/hooks.js +67 -0
- package/dist/common/types/commonTypes.d.ts +4 -0
- package/dist/common/types/index.d.ts +2 -0
- package/dist/common/types/sortableTypes.d.ts +168 -0
- package/dist/common/utils/floatingUi.d.ts +3 -0
- package/dist/common/utils/getFileExtension.d.ts +1 -0
- package/dist/common/utils/htmlAttributes.d.ts +20 -0
- package/dist/common/utils/index.d.ts +4 -0
- package/dist/common/utils/isString.d.ts +1 -0
- package/dist/common/utils/testUtils.d.ts +3 -0
- package/dist/common.js +21 -0
- package/dist/components/actionMenu/actionMenu.d.ts +33 -0
- package/dist/components/actionMenu/constants.d.ts +3 -0
- package/dist/components/actionMenu/index.d.ts +18 -0
- package/dist/components/adaptiveTagList/adaptiveTagList.d.ts +11 -0
- package/dist/components/adaptiveTagList/constants.d.ts +6 -0
- package/dist/components/adaptiveTagList/index.d.ts +2 -0
- package/dist/components/attachedFile/attachedFile.d.ts +14 -0
- package/dist/components/attachedFile/index.d.ts +2 -0
- package/dist/components/autocompletes/common/autocompleteMenu/autocompleteMenu.d.ts +10 -0
- package/dist/components/autocompletes/common/autocompleteMenu/index.d.ts +1 -0
- package/dist/components/autocompletes/common/autocompleteOption/autocompleteOption.d.ts +13 -0
- package/dist/components/autocompletes/common/autocompleteOption/index.d.ts +1 -0
- package/dist/components/autocompletes/common/autocompleteOptions.d.ts +19 -0
- package/dist/components/autocompletes/common/autocompletePrompt/autocompletePrompt.d.ts +7 -0
- package/dist/components/autocompletes/common/autocompletePrompt/index.d.ts +1 -0
- package/dist/components/autocompletes/common/index.d.ts +19 -0
- package/dist/components/autocompletes/constants.d.ts +2 -0
- package/dist/components/autocompletes/index.d.ts +3 -0
- package/dist/components/autocompletes/multipleAutocomplete/index.d.ts +17 -0
- package/dist/components/autocompletes/multipleAutocomplete/multipleAutocomplete.d.ts +53 -0
- package/dist/components/autocompletes/multipleAutocomplete/multipleDownshift.d.ts +25 -0
- package/dist/components/autocompletes/multipleAutocomplete/selectedItems/index.d.ts +1 -0
- package/dist/components/autocompletes/multipleAutocomplete/selectedItems/selectedItems.d.ts +41 -0
- package/dist/components/autocompletes/singleAutocomplete/index.d.ts +1 -0
- package/dist/components/autocompletes/singleAutocomplete/singleAutocomplete.d.ts +42 -0
- package/dist/components/autocompletes/types.d.ts +8 -0
- package/dist/components/autocompletes/utils.d.ts +5 -0
- package/dist/components/{icons/baseIconButton → baseIconButton}/baseIconButton.d.ts +1 -0
- package/dist/components/{icons/baseIconButton → baseIconButton}/index.d.ts +1 -0
- package/dist/components/breadcrumbs/breadcrumb/breadcrumb.d.ts +10 -0
- package/dist/components/breadcrumbs/breadcrumb/index.d.ts +1 -0
- package/dist/components/breadcrumbs/breadcrumbs.d.ts +3 -0
- package/dist/components/breadcrumbs/breadcrumbsProvider/breadcrumbsProvider.d.ts +13 -0
- package/dist/components/breadcrumbs/breadcrumbsProvider/hooks.d.ts +3 -0
- package/dist/components/breadcrumbs/breadcrumbsProvider/index.d.ts +1 -0
- package/dist/components/breadcrumbs/hiddenBreadcrumbs/hiddenBreadcrumbs.d.ts +6 -0
- package/dist/components/breadcrumbs/hiddenBreadcrumbs/index.d.ts +2 -0
- package/dist/components/breadcrumbs/index.d.ts +5 -0
- package/dist/components/breadcrumbs/tree/index.d.ts +1 -0
- package/dist/components/breadcrumbs/tree/tree.d.ts +7 -0
- package/dist/components/breadcrumbs/types.d.ts +24 -0
- package/dist/components/bubblesLoader/bubblesLoader.d.ts +2 -0
- package/dist/components/bubblesLoader/index.d.ts +1 -0
- package/dist/components/bulkPanel/bulkPanel.d.ts +3 -0
- package/dist/components/bulkPanel/index.d.ts +2 -0
- package/dist/components/bulkPanel/types.d.ts +46 -0
- package/dist/components/button/button.d.ts +5 -4
- package/dist/components/button/index.d.ts +1 -0
- package/dist/components/checkbox/checkbox.d.ts +2 -1
- package/dist/components/checkbox/index.d.ts +1 -0
- package/dist/components/chip/chip.d.ts +15 -0
- package/dist/components/chip/index.d.ts +2 -0
- package/dist/components/datePicker/datePicker.d.ts +17 -7
- package/dist/components/datePicker/header/datePickerHeader.d.ts +1 -0
- package/dist/components/datePicker/header/index.d.ts +1 -0
- package/dist/components/datePicker/index.d.ts +3 -1
- package/dist/components/datePicker/utils.d.ts +2 -1
- package/dist/components/dropdown/constants.d.ts +4 -0
- package/dist/components/dropdown/dropdown.d.ts +36 -5
- package/dist/components/dropdown/dropdownOption/dropdownOption.d.ts +1 -0
- package/dist/components/dropdown/dropdownOption/index.d.ts +1 -0
- package/dist/components/dropdown/index.d.ts +2 -0
- package/dist/components/dropdown/types.d.ts +11 -0
- package/dist/components/dropdown/utils.d.ts +6 -2
- package/dist/components/fieldLabel/fieldLabel.d.ts +7 -0
- package/dist/components/fieldLabel/index.d.ts +1 -0
- package/dist/components/fieldNumber/constants.d.ts +1 -0
- package/dist/components/fieldNumber/fieldNumber.d.ts +3 -3
- package/dist/components/fieldNumber/index.d.ts +1 -0
- package/dist/components/fieldText/fieldText.d.ts +12 -4
- package/dist/components/fieldText/index.d.ts +3 -1
- package/dist/components/fieldTextFlex/fieldTextFlex.d.ts +5 -2
- package/dist/components/fieldTextFlex/index.d.ts +1 -0
- package/dist/components/fileDropArea/attachedFilesList/attachedFilesList.d.ts +21 -0
- package/dist/components/fileDropArea/attachedFilesList/index.d.ts +5 -0
- package/dist/components/fileDropArea/browseButton/browseButton.d.ts +9 -0
- package/dist/components/fileDropArea/browseButton/index.d.ts +4 -0
- package/dist/components/fileDropArea/constants.d.ts +2 -0
- package/dist/components/fileDropArea/dropZone/dropZone.d.ts +10 -0
- package/dist/components/fileDropArea/dropZone/index.d.ts +4 -0
- package/dist/components/fileDropArea/errorMessage/errorMessage.d.ts +5 -0
- package/dist/components/fileDropArea/errorMessage/index.d.ts +4 -0
- package/dist/components/fileDropArea/fileDropArea.d.ts +19 -0
- package/dist/components/fileDropArea/fileDropAreaProvider/fileDropAreaProvider.d.ts +17 -0
- package/dist/components/fileDropArea/fileDropAreaProvider/index.d.ts +1 -0
- package/dist/components/fileDropArea/fileDropAreaProvider/useFileDropAreaContext.d.ts +3 -0
- package/dist/components/fileDropArea/hooks/index.d.ts +1 -0
- package/dist/components/fileDropArea/hooks/useFileDropArea.d.ts +13 -0
- package/dist/components/fileDropArea/hooks/useFileProcessing.d.ts +13 -0
- package/dist/components/fileDropArea/hooks/useOverlayDropArea.d.ts +22 -0
- package/dist/components/fileDropArea/index.d.ts +6 -0
- package/dist/components/fileDropArea/types.d.ts +58 -0
- package/dist/components/fileDropArea/utils/getValidationErrorMessage.d.ts +3 -0
- package/dist/components/fileDropArea/utils/index.d.ts +2 -0
- package/dist/components/fileDropArea/utils/validateFile.d.ts +3 -0
- package/dist/components/filterItem/filterItem.d.ts +18 -0
- package/dist/components/filterItem/index.d.ts +17 -0
- package/dist/components/filtersButton/filtersButton.d.ts +9 -0
- package/dist/components/filtersButton/index.d.ts +2 -0
- package/dist/components/icons/index.d.ts +63 -9
- package/dist/components/index.d.ts +32 -10
- package/dist/components/issueList/constants.d.ts +5 -0
- package/dist/components/issueList/index.d.ts +2 -0
- package/dist/components/issueList/issueList.d.ts +18 -0
- package/dist/components/maxValueDisplay/index.d.ts +4 -0
- package/dist/components/maxValueDisplay/maxValueDisplay.d.ts +8 -0
- package/dist/components/maxValueDisplay/utils/index.d.ts +1 -0
- package/dist/components/maxValueDisplay/utils/isPositiveInteger.d.ts +1 -0
- package/dist/components/modal/index.d.ts +1 -0
- package/dist/components/modal/modal.d.ts +4 -4
- package/dist/components/modal/modalContent/modalContent.d.ts +3 -2
- package/dist/components/modal/modalFooter/modalFooter.d.ts +3 -1
- package/dist/components/modal/modalHeader/modalHeader.d.ts +1 -0
- package/dist/components/modal/types.d.ts +6 -0
- package/dist/components/pagination/index.d.ts +1 -0
- package/dist/components/pagination/itemsCounter/itemCounter.d.ts +5 -2
- package/dist/components/pagination/pageControls/activePage/activePage.d.ts +1 -0
- package/dist/components/pagination/pageControls/activePage/pageSelector/pageSelector.d.ts +1 -0
- package/dist/components/pagination/pageControls/pageControls.d.ts +1 -0
- package/dist/components/pagination/pageControls/pageNavigator/bar/bar.d.ts +1 -0
- package/dist/components/pagination/pageControls/pageNavigator/pageNavigator.d.ts +1 -0
- package/dist/components/pagination/pageSizeControl/pageSizeControl.d.ts +1 -0
- package/dist/components/pagination/pageSizeControl/sizeSelector/sizeSelector.d.ts +1 -0
- package/dist/components/pagination/pagination.d.ts +6 -2
- package/dist/components/popover/index.d.ts +4 -1
- package/dist/components/popover/popover.d.ts +3 -2
- package/dist/components/radio/index.d.ts +1 -0
- package/dist/components/radio/radio.d.ts +1 -0
- package/dist/components/radio/radioGroup.d.ts +1 -0
- package/dist/components/segmentedControl/index.d.ts +17 -0
- package/dist/components/segmentedControl/segmentedControl.d.ts +4 -0
- package/dist/components/segmentedControl/types.d.ts +18 -0
- package/dist/components/selection/index.d.ts +5 -0
- package/dist/components/selection/selection.d.ts +12 -0
- package/dist/components/selection/types.d.ts +1 -0
- package/dist/components/sidePanel/index.d.ts +2 -0
- package/dist/components/sidePanel/sidePanel.d.ts +21 -0
- package/dist/components/sortable/dragLayer/dragLayer.d.ts +3 -0
- package/dist/components/sortable/dragLayer/index.d.ts +1 -0
- package/dist/components/sortable/helpers.d.ts +11 -0
- package/dist/components/sortable/index.d.ts +5 -0
- package/dist/components/sortable/sortableItem/index.d.ts +1 -0
- package/dist/components/sortable/sortableItem/sortableItem.d.ts +3 -0
- package/dist/components/sortable/sortableList/index.d.ts +1 -0
- package/dist/components/sortable/sortableList/sortableList.d.ts +5 -0
- package/dist/components/sortable/treeSortableContainer/TreeSortableContext.d.ts +11 -0
- package/dist/components/sortable/treeSortableContainer/index.d.ts +2 -0
- package/dist/components/sortable/treeSortableContainer/treeSortableContainer.d.ts +3 -0
- package/dist/components/sortable/treeSortableItem/index.d.ts +1 -0
- package/dist/components/sortable/treeSortableItem/treeSortableItem.d.ts +3 -0
- package/dist/components/spinLoader/index.d.ts +4 -0
- package/dist/components/spinLoader/spinLoader.d.ts +8 -0
- package/dist/components/systemAlert/index.d.ts +1 -0
- package/dist/components/systemAlert/systemAlert.d.ts +4 -0
- package/dist/components/systemAlert/types.d.ts +22 -0
- package/dist/components/systemMessage/index.d.ts +1 -0
- package/dist/components/systemMessage/systemMessage.d.ts +1 -0
- package/dist/components/table/constants.d.ts +6 -0
- package/dist/components/table/gradientOverlay/gradientOverlay.d.ts +19 -0
- package/dist/components/table/gradientOverlay/index.d.ts +2 -0
- package/dist/components/table/hooks/index.d.ts +8 -0
- package/dist/components/table/hooks/useCheckboxRowSync.d.ts +10 -0
- package/dist/components/table/hooks/useColumnResize.d.ts +21 -0
- package/dist/components/table/hooks/useColumnWidths.d.ts +8 -0
- package/dist/components/table/hooks/useGradientPosition.d.ts +24 -0
- package/dist/components/table/hooks/useTableColumns.d.ts +13 -0
- package/dist/components/table/hooks/useTableExpansion.d.ts +15 -0
- package/dist/components/table/hooks/useTableHover.d.ts +10 -0
- package/dist/components/table/index.d.ts +2 -0
- package/dist/components/table/resizeHandle/index.d.ts +1 -0
- package/dist/components/table/resizeHandle/resizeHandle.d.ts +2 -0
- package/dist/components/table/table.d.ts +1 -0
- package/dist/components/table/types.d.ts +43 -9
- package/dist/components/table/utils.d.ts +10 -1
- package/dist/components/themeProvider/index.d.ts +1 -0
- package/dist/components/themeProvider/themeProvider.d.ts +1 -0
- package/dist/components/toggle/index.d.ts +1 -0
- package/dist/components/toggle/toggle.d.ts +1 -0
- package/dist/components/tooltip/tooltip.d.ts +10 -1
- package/dist/datePicker-cde99de3.js +222 -0
- package/dist/datePicker.js +32 -0
- package/dist/dropdown-0260bb66.js +5 -0
- package/dist/dropdown-7d024c49.js +642 -0
- package/dist/dropdown.js +13 -3
- package/dist/fieldLabel.js +18 -0
- package/dist/fieldNumber-d1b5a7a1.js +140 -0
- package/dist/fieldNumber.js +5 -2
- package/dist/fieldText-1749da7a.js +167 -0
- package/dist/fieldText.js +7 -2
- package/dist/fieldTextFlex-2f51c173.js +80 -0
- package/dist/fieldTextFlex.js +3 -1
- package/dist/fileDropArea.js +325 -0
- package/dist/filterItem.js +96 -0
- package/dist/filterOutline-819b4b0d.js +6 -0
- package/dist/filtersButton.js +25 -0
- package/dist/floatingUi-41f8c7b5.js +29 -0
- package/dist/fonts/OpenSans/OpenSans-Bold.ttf +0 -0
- package/dist/fonts/OpenSans/OpenSans-Medium.ttf +0 -0
- package/dist/icons.js +89 -0
- package/dist/index-1a874a8b.js +110 -0
- package/dist/index.js +188 -242
- package/dist/isEmpty-ccacb5ff.js +38 -0
- package/dist/issueList.js +125 -0
- package/dist/maxValueDisplay-9be01a75.js +13 -0
- package/dist/maxValueDisplay.js +6 -0
- package/dist/meatballMenu-535635a9.js +5 -0
- package/dist/minus-2857540f.js +5 -0
- package/dist/modal.js +170 -14
- package/dist/openEye-950159cb.js +6 -0
- package/dist/pagination-4ded0ec6.js +355 -0
- package/dist/pagination.js +12 -5
- package/dist/plus-199fb2a8.js +5 -0
- package/dist/popover.js +58 -73
- package/dist/prevPage-87faf576.js +6 -0
- package/dist/radio-62546efa.js +76 -0
- package/dist/radio.js +1 -1
- package/dist/resizeColumn-46b5b30f.js +7 -0
- package/dist/segmentedControl.js +62 -0
- package/dist/selection-9124d029.js +38 -0
- package/dist/selection.js +10 -0
- package/dist/sidePanel.js +131 -0
- package/dist/sortable.js +302 -0
- package/dist/spinLoader-c4a53718.js +11 -0
- package/dist/spinLoader.js +7 -0
- package/dist/style.css +15 -1
- package/dist/success-8fd8bd2c.js +7 -0
- package/dist/systemAlert.js +69 -0
- package/dist/systemMessage-924fdaa6.js +30 -0
- package/dist/systemMessage.js +1 -1
- package/dist/table-03bd209d.js +1099 -0
- package/dist/table.js +10 -3
- package/dist/toggle-304107fa.js +59 -0
- package/dist/toggle.js +1 -1
- package/dist/tooltip.js +90 -57
- package/dist/tree-e7a0ef42.js +5 -0
- package/dist/useOnClickOutside-8f7d68a1.js +25 -0
- package/dist/useTreeSortable-70a9c8f5.js +179 -0
- package/dist/useWindowResize-a7e1ac92.js +16 -0
- package/dist/warning-537ead32.js +5 -0
- package/dist/xls-995781cc.js +11 -0
- package/package.json +51 -17
- package/dist/baseIconButton-7bc53dec.js +0 -25
- package/dist/bubblesLoader-a7e709d4.js +0 -17
- package/dist/button-bb309472.js +0 -62
- package/dist/checkbox-6777be17.js +0 -73
- package/dist/dropdown-50124296.js +0 -215
- package/dist/fieldNumber-46fe79b9.js +0 -127
- package/dist/fieldText-49fe2895.js +0 -102
- package/dist/fieldTextFlex-5bddf46a.js +0 -67
- package/dist/index-2a2d261a.js +0 -145
- package/dist/pagination-39b1fa15.js +0 -346
- package/dist/radio-fd49a09c.js +0 -76
- package/dist/systemMessage-1ced6079.js +0 -30
- package/dist/table-83e050dc.js +0 -147
- package/dist/toggle-9284387b.js +0 -67
- package/dist/useOnClickOutside-c332f7d3.js +0 -16
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright 2025 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export { SelectedItems } from './selectedItems';
|
|
17
|
+
export { MultipleAutocomplete } from './multipleAutocomplete';
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { ComponentProps, ReactNode } from 'react';
|
|
2
|
+
import { ControllerStateAndHelpers } from 'downshift';
|
|
3
|
+
import { default as FieldText } from '../../fieldText';
|
|
4
|
+
import { AutocompleteMenu } from '../common/autocompleteMenu';
|
|
5
|
+
import { DownshiftStore, MultipleDownshiftProps } from './multipleDownshift';
|
|
6
|
+
import { GetItemPropsT } from '../types';
|
|
7
|
+
|
|
8
|
+
export interface MultipleAutocompleteProps<T> {
|
|
9
|
+
options: T[];
|
|
10
|
+
loading: boolean;
|
|
11
|
+
onStateChange: MultipleDownshiftProps<T>['onStateChange'];
|
|
12
|
+
value: T[];
|
|
13
|
+
placeholder: string;
|
|
14
|
+
error: string | boolean;
|
|
15
|
+
touched: boolean;
|
|
16
|
+
creatable: boolean;
|
|
17
|
+
editable: boolean;
|
|
18
|
+
renderOption?: (value: T, index: number, isNew: boolean, getItemProps: GetItemPropsT<T>) => ReactNode;
|
|
19
|
+
onChange: (selectedItems: T | T[] | null, downshift: ControllerStateAndHelpers<T> | null) => void;
|
|
20
|
+
onFocus: () => void;
|
|
21
|
+
onBlur: () => void;
|
|
22
|
+
disabled: boolean;
|
|
23
|
+
mobileDisabled: boolean;
|
|
24
|
+
inputProps: ComponentProps<typeof FieldText>;
|
|
25
|
+
parseValueToString: (value: T | null) => string;
|
|
26
|
+
minLength?: number | null;
|
|
27
|
+
maxLength?: number | null;
|
|
28
|
+
async?: boolean;
|
|
29
|
+
customClass: string;
|
|
30
|
+
createWithoutConfirmation: boolean;
|
|
31
|
+
getItemValidationErrorType?: (item: T) => string;
|
|
32
|
+
clearItemsError: () => void;
|
|
33
|
+
isDropdownMode?: boolean;
|
|
34
|
+
getAdditionalCreationCondition: (value: string) => boolean;
|
|
35
|
+
highlightUnStoredItem: boolean;
|
|
36
|
+
parseInputValueFn: ((value: string) => T[]) | null;
|
|
37
|
+
handleUnStoredItemCb: ((newSelectedItems: DownshiftStore<T>, prevSelectedItems: DownshiftStore<T>) => void) | null;
|
|
38
|
+
dataAutomationId?: string;
|
|
39
|
+
existingItemsMap: Record<string | number, boolean>;
|
|
40
|
+
optionVariant: ComponentProps<typeof AutocompleteMenu>['optionVariant'];
|
|
41
|
+
customizeNewSelectedValue: (value: T) => T;
|
|
42
|
+
renderCustomSelectedItem?: (item: T) => ReactNode;
|
|
43
|
+
getUniqKey?: (item: T) => string;
|
|
44
|
+
customEmptyListMessage?: string;
|
|
45
|
+
customNoMatchesMessage?: string;
|
|
46
|
+
useFixedPositioning?: boolean;
|
|
47
|
+
newItemButtonText?: string;
|
|
48
|
+
menuClassName?: string;
|
|
49
|
+
selectedItemSingleLine?: boolean;
|
|
50
|
+
selectedItemClassName?: string;
|
|
51
|
+
selectedItemTextClassName?: string;
|
|
52
|
+
}
|
|
53
|
+
export declare const MultipleAutocomplete: <T>(componentsProps: MultipleAutocompleteProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ControllerStateAndHelpers, DownshiftProps } from 'downshift';
|
|
2
|
+
|
|
3
|
+
export type DownshiftStore<T> = {
|
|
4
|
+
[key: string]: boolean;
|
|
5
|
+
} | T[];
|
|
6
|
+
export interface MultipleDownshiftProps<T> extends Partial<DownshiftProps<T>> {
|
|
7
|
+
options: T[];
|
|
8
|
+
selectedItems: T[];
|
|
9
|
+
handleUnStoredItemCb: ((newSelectedItems: DownshiftStore<T>, prevSelectedItems: DownshiftStore<T>) => void) | null;
|
|
10
|
+
existingItemsMap: {
|
|
11
|
+
[key: string]: boolean;
|
|
12
|
+
};
|
|
13
|
+
customizeNewSelectedValue: (value: T) => T;
|
|
14
|
+
getOptionUniqKey?: (option: T) => keyof T;
|
|
15
|
+
getOptionUniqKeyValue?: (option: T) => string;
|
|
16
|
+
onChange: (selectedItems: T | T[] | null, downshift: ControllerStateAndHelpers<T> | null) => void;
|
|
17
|
+
}
|
|
18
|
+
export type GetStateAndHelpersT<T> = ControllerStateAndHelpers<T> & {
|
|
19
|
+
removeItem: (removedItem: T, downshift: ControllerStateAndHelpers<T> | null) => void;
|
|
20
|
+
editItem: (oldItem: T, newValue: string) => void;
|
|
21
|
+
handleChange: MultipleDownshiftProps<T>['onChange'];
|
|
22
|
+
getOptionUniqKeyValue?: (option: T) => string;
|
|
23
|
+
storedItemsMap: MultipleDownshiftProps<T>['existingItemsMap'];
|
|
24
|
+
};
|
|
25
|
+
export declare const MultipleDownshift: <T>({ options, onChange, selectedItems, handleUnStoredItemCb, existingItemsMap, children, customizeNewSelectedValue, getOptionUniqKey, getOptionUniqKeyValue, ...props }: MultipleDownshiftProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SelectedItems } from './selectedItems';
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
|
|
3
|
+
type VariantType = 'light' | 'dark';
|
|
4
|
+
interface SelectedItemProps<T> {
|
|
5
|
+
item: T;
|
|
6
|
+
onRemoveItem: (item: T) => void;
|
|
7
|
+
parseValueToString?: (value: T) => string;
|
|
8
|
+
editItem: (oldItem: T, newValue: string) => void;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
mobileDisabled?: boolean;
|
|
11
|
+
error?: string | boolean;
|
|
12
|
+
editable?: boolean;
|
|
13
|
+
getAdditionalCreationCondition?: (value: string) => boolean;
|
|
14
|
+
storedOption?: boolean;
|
|
15
|
+
highlightUnStoredItem?: boolean;
|
|
16
|
+
variant?: VariantType;
|
|
17
|
+
getItemName?: (item: T) => string;
|
|
18
|
+
changeItemHandler?: (item: T, value: string) => T;
|
|
19
|
+
singleLine?: boolean;
|
|
20
|
+
className?: string;
|
|
21
|
+
textClassName?: string;
|
|
22
|
+
}
|
|
23
|
+
type SelectedItemsProps<T> = Omit<SelectedItemProps<T>, 'item' | 'editItem'> & {
|
|
24
|
+
items?: T[];
|
|
25
|
+
onRemoveItem?: (item: T) => void;
|
|
26
|
+
parseValueToString: (value: T | null) => string;
|
|
27
|
+
editItem: (oldItem: T, newValue: string) => void;
|
|
28
|
+
disabled?: boolean;
|
|
29
|
+
mobileDisabled?: boolean;
|
|
30
|
+
storedItemsMap?: Record<string, boolean>;
|
|
31
|
+
highlightUnStoredItem?: boolean;
|
|
32
|
+
editable?: boolean;
|
|
33
|
+
variant?: VariantType;
|
|
34
|
+
getItemValidationErrorType?: ((item: T) => string) | null;
|
|
35
|
+
renderCustomSelectedItem?: (item: T) => ReactNode;
|
|
36
|
+
selectedItemSingleLine?: boolean;
|
|
37
|
+
selectedItemClassName?: string;
|
|
38
|
+
selectedItemTextClassName?: string;
|
|
39
|
+
};
|
|
40
|
+
export declare const SelectedItems: <T>({ items, parseValueToString, getItemValidationErrorType, storedItemsMap, highlightUnStoredItem, renderCustomSelectedItem, selectedItemSingleLine, selectedItemClassName, selectedItemTextClassName, ...props }: SelectedItemsProps<T>) => (string | number | boolean | Iterable<ReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined)[];
|
|
41
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SingleAutocomplete } from './singleAutocomplete';
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { ComponentProps, FocusEvent, ReactNode, Ref } from 'react';
|
|
2
|
+
import { default as Downshift, DownshiftState, StateChangeOptions } from 'downshift';
|
|
3
|
+
import { default as FieldText } from '../../fieldText';
|
|
4
|
+
import { AutocompleteMenu } from '../common/autocompleteMenu';
|
|
5
|
+
import { GetItemPropsT } from '../types';
|
|
6
|
+
|
|
7
|
+
export interface SingleAutocompleteProps<T> {
|
|
8
|
+
options: T[];
|
|
9
|
+
loading?: boolean;
|
|
10
|
+
onStateChange: ComponentProps<typeof Downshift<T>>['onStateChange'];
|
|
11
|
+
value: T | null;
|
|
12
|
+
placeholder: string;
|
|
13
|
+
onChange: ComponentProps<typeof Downshift<T>>['onChange'];
|
|
14
|
+
onFocus: () => void;
|
|
15
|
+
onBlur: (e: FocusEvent<HTMLInputElement>) => void;
|
|
16
|
+
disabled?: boolean;
|
|
17
|
+
inputProps?: ComponentProps<typeof FieldText>;
|
|
18
|
+
parseValueToString: (value: T | null) => string;
|
|
19
|
+
renderOption?: (value: T, index: number, isNew: boolean, getItemProps: GetItemPropsT<T>) => ReactNode;
|
|
20
|
+
minLength?: number;
|
|
21
|
+
maxLength?: number | null;
|
|
22
|
+
async?: boolean;
|
|
23
|
+
optionVariant?: ComponentProps<typeof AutocompleteMenu>['optionVariant'];
|
|
24
|
+
isRequired?: boolean;
|
|
25
|
+
error: string;
|
|
26
|
+
touched?: boolean;
|
|
27
|
+
setTouch?: (value: boolean) => void;
|
|
28
|
+
createWithoutConfirmation: boolean;
|
|
29
|
+
menuClassName?: string;
|
|
30
|
+
icon?: ReactNode;
|
|
31
|
+
isDropdownMode?: boolean;
|
|
32
|
+
skipOptionCreation?: boolean;
|
|
33
|
+
isOptionUnique?: (value: boolean | null) => void;
|
|
34
|
+
refFunction?: Ref<HTMLInputElement>;
|
|
35
|
+
stateReducer?: (state: DownshiftState<T>, changes: StateChangeOptions<T>) => Partial<StateChangeOptions<T>>;
|
|
36
|
+
useFixedPositioning: boolean;
|
|
37
|
+
getUniqKey?: (item: T) => string;
|
|
38
|
+
customEmptyListMessage?: string;
|
|
39
|
+
customNoMatchesMessage?: string;
|
|
40
|
+
newItemButtonText?: string;
|
|
41
|
+
}
|
|
42
|
+
export declare const SingleAutocomplete: <T>(componentProps: SingleAutocompleteProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { GetItemPropsOptions } from 'downshift';
|
|
2
|
+
|
|
3
|
+
export type GetOptionUniqKeyT<T> = (value: T) => keyof T;
|
|
4
|
+
export interface AdditionalDownshiftFields {
|
|
5
|
+
isActive?: boolean;
|
|
6
|
+
}
|
|
7
|
+
export type OptionVariant = 'light' | 'dark' | string;
|
|
8
|
+
export type GetItemPropsT<T> = (args: GetItemPropsOptions<T> & AdditionalDownshiftFields) => GetItemPropsOptions<T> & AdditionalDownshiftFields;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { GetOptionUniqKeyT } from './types';
|
|
2
|
+
|
|
3
|
+
export declare const getUniqKey: <T>(option: T, getOptionUniqKey?: GetOptionUniqKeyT<T>) => string;
|
|
4
|
+
export declare const isEqual: <T>(option: T, item: T) => boolean;
|
|
5
|
+
export declare const compareOptionWithItem: <T>(option: T, item: T, getUniqKeyCb?: GetOptionUniqKeyT<T>) => boolean;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BreadcrumbDescriptor } from '../types';
|
|
2
|
+
|
|
3
|
+
interface BreadcrumbProps {
|
|
4
|
+
descriptor: BreadcrumbDescriptor;
|
|
5
|
+
titleTailNumChars?: number;
|
|
6
|
+
isClickable?: boolean;
|
|
7
|
+
variant?: 'default' | 'dark';
|
|
8
|
+
}
|
|
9
|
+
export declare const Breadcrumb: React.FC<BreadcrumbProps>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Breadcrumb } from './breadcrumb';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { LinkComponentType } from '../types';
|
|
3
|
+
|
|
4
|
+
export interface BreadcrumbsContextValue {
|
|
5
|
+
LinkComponent?: LinkComponentType;
|
|
6
|
+
}
|
|
7
|
+
export declare const BreadcrumbsContext: import('react').Context<BreadcrumbsContextValue | undefined>;
|
|
8
|
+
interface BreadcrumbsProviderProps {
|
|
9
|
+
children: ReactNode;
|
|
10
|
+
LinkComponent?: LinkComponentType;
|
|
11
|
+
}
|
|
12
|
+
export declare const BreadcrumbsProvider: ({ children, LinkComponent }: BreadcrumbsProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { BreadcrumbsProvider } from './breadcrumbsProvider';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Tree } from './tree';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
|
|
3
|
+
export interface BreadcrumbDescriptor {
|
|
4
|
+
title: string | ReactNode;
|
|
5
|
+
link?: object | string;
|
|
6
|
+
onClick?: () => void;
|
|
7
|
+
}
|
|
8
|
+
export interface TreeDescriptor extends BreadcrumbDescriptor {
|
|
9
|
+
link: object | string;
|
|
10
|
+
children?: TreeDescriptor[];
|
|
11
|
+
}
|
|
12
|
+
export type LinkComponentType = React.ComponentType<{
|
|
13
|
+
to: object | string;
|
|
14
|
+
className?: string;
|
|
15
|
+
onClick?: () => void;
|
|
16
|
+
children: React.ReactNode;
|
|
17
|
+
}>;
|
|
18
|
+
export interface BreadcrumbsProps {
|
|
19
|
+
descriptors: BreadcrumbDescriptor[];
|
|
20
|
+
LinkComponent?: LinkComponentType;
|
|
21
|
+
tree?: TreeDescriptor[];
|
|
22
|
+
dataAutomationId?: string;
|
|
23
|
+
isBackButton?: boolean;
|
|
24
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { ButtonProps } from '../button';
|
|
3
|
+
|
|
4
|
+
export interface BulkPanelItem {
|
|
5
|
+
id: string | number;
|
|
6
|
+
label?: string;
|
|
7
|
+
name?: string;
|
|
8
|
+
tooltipContent?: ReactNode;
|
|
9
|
+
}
|
|
10
|
+
export interface BulkPanelAction {
|
|
11
|
+
label: string;
|
|
12
|
+
variant?: ButtonProps['variant'];
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
onClick?: () => void;
|
|
15
|
+
/**
|
|
16
|
+
* Called to validate items. May be called multiple times if items change.
|
|
17
|
+
* Should return INELIGIBLE items array.
|
|
18
|
+
* If not provided or returns empty array - all items are eligible and onProceed is called immediately.
|
|
19
|
+
*/
|
|
20
|
+
onValidate?: (items: BulkPanelItem[]) => BulkPanelItem[];
|
|
21
|
+
/**
|
|
22
|
+
* @param direct - true if all items were eligible and proceed was called directly, false if called via Proceed button
|
|
23
|
+
*/
|
|
24
|
+
onProceed: (eligibleItems: BulkPanelItem[], direct?: boolean) => void;
|
|
25
|
+
onCancel?: () => void;
|
|
26
|
+
}
|
|
27
|
+
export interface BulkPanelCaptions {
|
|
28
|
+
selected?: string;
|
|
29
|
+
clearSelection?: string;
|
|
30
|
+
selectedItems?: string;
|
|
31
|
+
eligibleTab?: string;
|
|
32
|
+
ineligibleTab?: string;
|
|
33
|
+
ineligibleInfoMessage?: (ineligibleCount: number) => ReactNode | string;
|
|
34
|
+
cancelButton?: (actionLabel: string) => ReactNode | string;
|
|
35
|
+
proceedButton?: (eligibleCount: number) => ReactNode | string;
|
|
36
|
+
}
|
|
37
|
+
export interface BulkPanelProps {
|
|
38
|
+
items: BulkPanelItem[];
|
|
39
|
+
actions?: BulkPanelAction[];
|
|
40
|
+
captions?: BulkPanelCaptions;
|
|
41
|
+
infoMessage?: ReactNode;
|
|
42
|
+
className?: string;
|
|
43
|
+
portalRoot?: Element;
|
|
44
|
+
onRemoveItem: (id: string | number) => void;
|
|
45
|
+
onClearSelection: () => void;
|
|
46
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactNode, ComponentPropsWithRef, MouseEventHandler } from 'react';
|
|
2
|
+
|
|
2
3
|
type IconPlace = 'start' | 'end';
|
|
3
|
-
type ButtonVariant = 'primary' | 'ghost' | 'danger' | 'text';
|
|
4
|
-
type ButtonWidth = 'content' | 'wide-content' | 'parent';
|
|
4
|
+
type ButtonVariant = 'primary' | 'ghost' | 'danger' | 'text' | 'ghost-danger' | 'text-danger';
|
|
5
|
+
type ButtonWidth = 'content' | 'wide-content' | 'parent' | 'min-width';
|
|
5
6
|
export interface ButtonProps extends ComponentPropsWithRef<'button'> {
|
|
6
7
|
children?: ReactNode;
|
|
7
8
|
icon?: ReactNode;
|
|
@@ -14,5 +15,5 @@ export interface ButtonProps extends ComponentPropsWithRef<'button'> {
|
|
|
14
15
|
className?: string;
|
|
15
16
|
variant?: ButtonVariant;
|
|
16
17
|
}
|
|
17
|
-
export declare const Button:
|
|
18
|
+
export declare const Button: (props: ButtonProps & import('react').RefAttributes<HTMLButtonElement>) => import('react').ReactElement<any, string | import('react').JSXElementConstructor<any>> | null;
|
|
18
19
|
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ReactNode, MouseEvent } from 'react';
|
|
2
|
+
|
|
3
|
+
export type ChipVariant = 'default' | 'error' | 'warning' | 'link';
|
|
4
|
+
export interface ChipProps {
|
|
5
|
+
children: ReactNode;
|
|
6
|
+
variant?: ChipVariant;
|
|
7
|
+
link?: string;
|
|
8
|
+
onClick?: (event: MouseEvent<HTMLElement>) => void;
|
|
9
|
+
onRemove?: (event: MouseEvent<HTMLButtonElement>) => void;
|
|
10
|
+
className?: string;
|
|
11
|
+
maxWidth?: number;
|
|
12
|
+
title?: string;
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare const Chip: ({ children, variant, link, onClick, onRemove, className, maxWidth, title, disabled, }: ChipProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import { ReactNode, ReactElement } from 'react';
|
|
2
|
+
import { Placement } from '@floating-ui/react';
|
|
3
|
+
|
|
4
|
+
type DateRangeValue = [Date | null, Date | null];
|
|
5
|
+
interface DatePickerBaseProps {
|
|
4
6
|
onBlur?: () => void;
|
|
5
7
|
onFocus?: () => void;
|
|
6
8
|
headerNodes?: ReactNode;
|
|
7
9
|
disabled?: boolean;
|
|
8
10
|
shouldCloseOnSelect?: boolean;
|
|
9
11
|
fixedHeight?: boolean;
|
|
10
|
-
startDate?: Date | undefined;
|
|
11
|
-
endDate?: Date | undefined;
|
|
12
12
|
customClassName?: string;
|
|
13
13
|
popperClassName?: string;
|
|
14
14
|
calendarClassName?: string;
|
|
@@ -17,8 +17,18 @@ interface DatePickerProps {
|
|
|
17
17
|
yearsOptions?: number[];
|
|
18
18
|
placeholder?: string;
|
|
19
19
|
dateFormat?: string;
|
|
20
|
-
|
|
20
|
+
popperPlacement?: Placement;
|
|
21
|
+
}
|
|
22
|
+
interface DatePickerSingleProps extends DatePickerBaseProps {
|
|
23
|
+
selectsRange?: false;
|
|
21
24
|
value?: Date | null;
|
|
25
|
+
onChange?: (date: Date | null) => void;
|
|
26
|
+
}
|
|
27
|
+
interface DatePickerRangeProps extends DatePickerBaseProps {
|
|
28
|
+
selectsRange: true;
|
|
29
|
+
value?: DateRangeValue;
|
|
30
|
+
onChange?: (dates: DateRangeValue) => void;
|
|
22
31
|
}
|
|
23
|
-
|
|
32
|
+
type DatePickerProps = DatePickerSingleProps | DatePickerRangeProps;
|
|
33
|
+
export declare const DatePicker: (props: DatePickerProps) => import("react/jsx-runtime").JSX.Element;
|
|
24
34
|
export {};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { Locale } from 'date-fns';
|
|
2
|
+
|
|
2
3
|
export declare const registerDatePickerLocale: (language: string, locale: Locale) => void;
|
|
3
|
-
export declare const getYearsFrom: (start: number, amountYearsToGenerate?: number) => number[];
|
|
4
|
+
export declare const getYearsFrom: (start: number, extraYear: number, amountYearsToGenerate?: number) => number[];
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { KeyCodes } from '../../common/constants/keyCodes';
|
|
2
|
+
|
|
2
3
|
export declare const OPEN_DROPDOWN_KEY_CODES: KeyCodes[];
|
|
3
4
|
export declare const CLOSE_DROPDOWN_KEY_CODES: KeyCodes[];
|
|
4
5
|
export declare enum EventName {
|
|
5
6
|
ON_KEY_DOWN = "onKeyDown",
|
|
6
7
|
ON_CLICK = "onClick"
|
|
7
8
|
}
|
|
9
|
+
export declare const SCROLLBARS_AUTO_HEIGHT_MAX = 240;
|
|
10
|
+
export declare const DROPDOWN_PORTAL_MENU_ATTR = "data-dropdown-portal-menu";
|
|
11
|
+
export declare const DEFAULT_VISIBLE_TAG_LINES = 10;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { ReactNode, FC } from 'react';
|
|
1
|
+
import { ReactNode, FC, ComponentPropsWithRef } from 'react';
|
|
2
2
|
import { DropdownVariant, RenderDropdownOption, DropdownOptionType, DropdownValue } from './types';
|
|
3
|
-
|
|
3
|
+
|
|
4
|
+
export interface DropdownProps extends Omit<ComponentPropsWithRef<'div'>, 'onChange' | 'onFocus' | 'onBlur' | 'title'> {
|
|
4
5
|
options: DropdownOptionType[];
|
|
5
|
-
value: DropdownValue;
|
|
6
|
+
value: DropdownValue | DropdownValue[];
|
|
6
7
|
disabled?: boolean;
|
|
7
8
|
error?: string;
|
|
8
9
|
mobileDisabled?: boolean;
|
|
@@ -14,11 +15,41 @@ interface DropdownProps {
|
|
|
14
15
|
transparentBackground?: boolean;
|
|
15
16
|
className?: string;
|
|
16
17
|
toggleButtonClassName?: string;
|
|
17
|
-
|
|
18
|
+
selectListClassName?: string;
|
|
19
|
+
label?: ReactNode;
|
|
20
|
+
onChange: (value: DropdownValue | DropdownValue[]) => void;
|
|
18
21
|
onFocus?: () => void;
|
|
19
22
|
onBlur?: () => void;
|
|
20
23
|
renderOption?: RenderDropdownOption;
|
|
21
24
|
isListWidthLimited?: boolean;
|
|
25
|
+
multiSelect?: boolean;
|
|
26
|
+
optionAll?: DropdownOptionType;
|
|
27
|
+
isOptionAllVisible?: boolean;
|
|
28
|
+
onSelectAll?: () => void;
|
|
29
|
+
formatDisplayedValue?: (value: string | undefined) => string;
|
|
30
|
+
notScrollable?: boolean;
|
|
31
|
+
footer?: ReactNode | ((closeHandler: () => void) => ReactNode);
|
|
32
|
+
/**
|
|
33
|
+
* For nested options: whether to include parent group values in the onChange callback
|
|
34
|
+
* when all children are selected. Default: false (only leaf values are included)
|
|
35
|
+
*/
|
|
36
|
+
includeGroupValue?: boolean;
|
|
37
|
+
/** Whether to show a clear button to reset the selection */
|
|
38
|
+
clearable?: boolean;
|
|
39
|
+
/** Callback fired when the clear button is clicked */
|
|
40
|
+
onClear?: () => void;
|
|
41
|
+
/** ARIA label for the clear button */
|
|
42
|
+
clearButtonAriaLabel?: string;
|
|
43
|
+
/**
|
|
44
|
+
* Portal root element for dropdown menu rendering.
|
|
45
|
+
* When provided, the menu will be rendered in this element using React Portal.
|
|
46
|
+
* Useful for preventing clipping in containers with overflow: hidden (e.g., Modal, SidePanel).
|
|
47
|
+
* @example menuPortalRoot={document.body}
|
|
48
|
+
*/
|
|
49
|
+
menuPortalRoot?: Element;
|
|
50
|
+
/** Whether to render selected values as tags using AdaptiveTagList (only for multiSelect mode) */
|
|
51
|
+
isMultiSelectWithTags?: boolean;
|
|
52
|
+
/** Message to display when no options match the search term */
|
|
53
|
+
noMatchesMessage?: string;
|
|
22
54
|
}
|
|
23
55
|
export declare const Dropdown: FC<DropdownProps>;
|
|
24
|
-
export {};
|