@moysklad/uikit 28.1.0 → 30.4.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/README.md +3 -0
- package/dist/colorVariables.css +10 -0
- package/dist/components/AutoComplete/AutoComplete.d.ts +4 -2
- package/dist/components/AutoComplete/AutoComplete.js +45 -31
- package/dist/components/Badge/Badge.js +2 -3
- package/dist/components/Badge/Badge_module.css +2 -3
- package/dist/components/BottomSheet/BottomSheet.js +2 -2
- package/dist/components/Breadcrumbs/BreadcrumbItem.d.ts +5 -3
- package/dist/components/Breadcrumbs/BreadcrumbItem.js +39 -8
- package/dist/components/Breadcrumbs/Breadcrumbs.d.ts +4 -1
- package/dist/components/Breadcrumbs/Breadcrumbs.js +10 -6
- package/dist/components/Button/Button.d.ts +1 -0
- package/dist/components/Button/Button.js +2 -2
- package/dist/components/Button/Button.module.js +1 -0
- package/dist/components/Button/Button_module.css +4 -0
- package/dist/components/Carousel/Carousel.js +5 -4
- package/dist/components/Checkbox/Checkbox.d.ts +1 -1
- package/dist/components/Chip/Chip.helpers.js +5 -2
- package/dist/components/Chip/Chip.js +9 -3
- package/dist/components/Chip/Chip.legacy_module.css +2 -2
- package/dist/components/Chip/Chip.types.d.ts +10 -4
- package/dist/components/Chip/Chip_module.css +5 -5
- package/dist/components/Chip/components/ChipLabel.d.ts +3 -1
- package/dist/components/Chip/components/ChipLabel.js +4 -2
- package/dist/components/Chip/components/ChipMainButton.d.ts +3 -4
- package/dist/components/Chip/components/ChipMainButton.js +2 -1
- package/dist/components/Chip/components/ChipRoot.d.ts +3 -2
- package/dist/components/Chip/components/ChipRoot.js +2 -1
- package/dist/components/Dropdown/Dropdown.d.ts +2 -0
- package/dist/components/Dropdown/Dropdown.js +7 -4
- package/dist/components/Dropdown/hooks/usePosition.d.ts +2 -1
- package/dist/components/Dropdown/hooks/usePosition.js +3 -3
- package/dist/components/EditableTitle/EditableTitle.js +1 -1
- package/dist/components/FieldLabel/FieldLabel.constants.d.ts +1 -0
- package/dist/components/FieldLabel/FieldLabel.constants.js +5 -0
- package/dist/components/FieldLabel/FieldLabel.d.ts +17 -0
- package/dist/components/FieldLabel/FieldLabel.js +76 -0
- package/dist/components/FieldLabel/FieldLabel.module.js +11 -0
- package/dist/components/FieldLabel/FieldLabel_module.css +42 -0
- package/dist/components/FieldLabel/components/HelpButton.d.ts +8 -0
- package/dist/components/FieldLabel/components/HelpButton.js +15 -0
- package/dist/components/FieldLabel/components/HelpButton.module.js +5 -0
- package/dist/components/FieldLabel/components/HelpButton_module.css +8 -0
- package/dist/components/FieldLabel/components/index.d.ts +1 -0
- package/dist/components/FieldLabel/components/index.js +1 -0
- package/dist/components/FileUploader/FileUploader.helpers.d.ts +1 -0
- package/dist/components/FileUploader/FileUploader.helpers.js +4 -1
- package/dist/components/FileUploader/FileUploader.js +3 -1
- package/dist/components/FileUploader/FileUploader.types.d.ts +1 -0
- package/dist/components/FileUploader/components/FileUploaderPreview/FileUploaderPreview.js +4 -4
- package/dist/components/Help/Help.d.ts +12 -5
- package/dist/components/Help/Help.js +22 -7
- package/dist/components/Help/Help.module.js +6 -2
- package/dist/components/Help/Help_module.css +36 -8
- package/dist/components/Hint/Hint.js +4 -5
- package/dist/components/Hint/Hint.module.js +2 -3
- package/dist/components/Hint/Hint_module.css +0 -9
- package/dist/components/Info/Info.d.ts +1 -4
- package/dist/components/Info/Info.js +27 -4
- package/dist/components/Info/Info.module.js +4 -1
- package/dist/components/Info/Info_module.css +21 -0
- package/dist/components/Input/Input.d.ts +10 -0
- package/dist/components/Input/Input.js +93 -42
- package/dist/components/Input/Input.module.js +19 -3
- package/dist/components/Input/Input_module.css +156 -19
- package/dist/components/Input/components/InfoBlock.d.ts +12 -0
- package/dist/components/Input/components/InfoBlock.js +29 -0
- package/dist/components/InputClear/InputClear.d.ts +5 -2
- package/dist/components/InputClear/InputClear.js +10 -4
- package/dist/components/InputClear/InputClear.module.js +3 -1
- package/dist/components/InputClear/InputClear_module.css +23 -10
- package/dist/components/InputUnit/InputUnit.d.ts +3 -0
- package/dist/components/InputUnit/InputUnit.js +42 -32
- package/dist/components/InputUnit/InputUnit.module.js +6 -1
- package/dist/components/InputUnit/InputUnit_module.css +27 -29
- package/dist/components/InputUnit/SelectUnit/SelectUnit.d.ts +1 -1
- package/dist/components/InputUnit/SelectUnit/SelectUnit.js +1 -4
- package/dist/components/InputUnit/SelectUnit/SelectUnit.module.js +1 -0
- package/dist/components/InputUnit/SelectUnit/SelectUnitVisible.d.ts +1 -1
- package/dist/components/InputUnit/SelectUnit/SelectUnitVisible.js +7 -2
- package/dist/components/InputUnit/SelectUnit/SelectUnit_module.css +29 -37
- package/dist/components/InputUnit/SelectUnit/type.d.ts +1 -0
- package/dist/components/InputUnit/Unit/Unit.js +1 -2
- package/dist/components/InputUnit/Unit/Unit_module.css +1 -0
- package/dist/components/Label/Label.d.ts +1 -0
- package/dist/components/LabelValue/LabelValue.js +18 -52
- package/dist/components/LabelValue/LabelValue.module.js +0 -3
- package/dist/components/LabelValue/LabelValue_module.css +0 -17
- package/dist/components/LabelValueCheckbox/LabelValueCheckbox.d.ts +10 -0
- package/dist/components/LabelValueCheckbox/LabelValueCheckbox.js +22 -0
- package/dist/components/LabelValueCheckbox/LabelValueCheckbox.module.js +5 -0
- package/dist/components/LabelValueCheckbox/LabelValueCheckbox_module.css +5 -0
- package/dist/components/LabelValueSelect/Input/Input_module.css +1 -3
- package/dist/components/MentionsTextfield/MentionsTextfield.d.ts +1 -1
- package/dist/components/MentionsTextfield/MentionsTextfield.js +41 -25
- package/dist/components/MentionsTextfield/OptionForStory/OptionForStory.d.ts +7 -0
- package/dist/components/MentionsTextfield/OptionForStory/OptionForStory.js +27 -0
- package/dist/components/MentionsTextfield/OptionForStory/OptionForStory.module.js +8 -0
- package/dist/components/MentionsTextfield/OptionForStory/OptionForStory_module.css +25 -0
- package/dist/components/MentionsTextfield/OptionForStory/index.d.ts +1 -0
- package/dist/components/MentionsTextfield/OptionForStory/index.js +1 -0
- package/dist/components/Multiselect/DropdownContent/MultiselectDropdownContent.js +5 -4
- package/dist/components/Multiselect/Input/Input_module.css +1 -3
- package/dist/components/Multiselect/Multiselect.d.ts +4 -0
- package/dist/components/Select/Combobox/Combobox_module.css +2 -6
- package/dist/components/Select/DropDownWithColors/DropDownWithColors.d.ts +1 -0
- package/dist/components/Select/DropDownWithColors/DropDownWithColors.js +2 -1
- package/dist/components/Select/DropdownActionsContainer/DropdownActionsContainer.d.ts +3 -0
- package/dist/components/Select/DropdownActionsContainer/DropdownActionsContainer.js +17 -0
- package/dist/components/Select/DropdownActionsContainer/DropdownActionsContainer.module.js +6 -0
- package/dist/components/Select/DropdownActionsContainer/DropdownActionsContainer_module.css +12 -0
- package/dist/components/Select/OptionsList/OptionsList.d.ts +2 -1
- package/dist/components/Select/OptionsList/OptionsList.js +3 -2
- package/dist/components/Select/OptionsList/OptionsList_module.css +4 -0
- package/dist/components/Select/Select.d.ts +8 -2
- package/dist/components/Select/Select.js +29 -34
- package/dist/components/Select/Select.module.js +1 -2
- package/dist/components/Select/Select_module.css +2 -14
- package/dist/components/Select/ShortVariant/ShortVariant.d.ts +5 -1
- package/dist/components/Select/ShortVariant/ShortVariant.js +5 -4
- package/dist/components/Select/ShortVariant/ShortVariant.module.js +1 -0
- package/dist/components/Select/ShortVariant/ShortVariant_module.css +5 -1
- package/dist/components/Select/types.d.ts +1 -0
- package/dist/components/Select/useDropdownPadding.d.ts +5 -0
- package/dist/components/Select/useDropdownPadding.js +22 -0
- package/dist/components/Textfield/Textfield.d.ts +18 -2
- package/dist/components/Textfield/Textfield.js +37 -13
- package/dist/components/Textfield/Textfield.module.js +2 -1
- package/dist/components/Textfield/Textfield_module.css +95 -23
- package/dist/components/Textfield/components/ActionButton/ActionButton.d.ts +9 -0
- package/dist/components/Textfield/components/ActionButton/ActionButton.js +12 -0
- package/dist/components/Textfield/components/ActionButton/ActionButton.module.js +9 -0
- package/dist/components/Textfield/components/ActionButton/ActionButton_module.css +54 -0
- package/dist/components/Textfield/components/ActionButton/index.d.ts +1 -0
- package/dist/components/Textfield/components/ActionButton/index.js +1 -0
- package/dist/components/Textfield/components/Container/Container.js +6 -3
- package/dist/components/Textfield/components/Counter/Counter.d.ts +3 -1
- package/dist/components/Textfield/components/Counter/Counter.js +5 -3
- package/dist/components/Textfield/components/Info/Info.d.ts +3 -1
- package/dist/components/Textfield/components/Info/Info.js +9 -4
- package/dist/components/Textfield/components/InnerContainer/InnerContainer.d.ts +3 -6
- package/dist/components/Textfield/components/InnerContainer/InnerContainer.js +2 -8
- package/dist/components/Textfield/components/InputContainer/InputContainer.d.ts +14 -3
- package/dist/components/Textfield/components/InputContainer/InputContainer.js +74 -5
- package/dist/components/Textfield/components/InputContainer/InputContainer.module.js +7 -1
- package/dist/components/Textfield/components/InputContainer/InputContainer_module.css +36 -7
- package/dist/components/Textfield/components/Label/Label.d.ts +2 -0
- package/dist/components/Textfield/components/Label/Label.js +11 -5
- package/dist/components/Textfield/components/Label/Label_module.css +1 -1
- package/dist/components/Textfield/components/ResizeHandle/ResizeHandle.d.ts +10 -0
- package/dist/components/Textfield/components/ResizeHandle/ResizeHandle.js +50 -0
- package/dist/components/Textfield/components/ResizeHandle/ResizeHandle.module.js +7 -0
- package/dist/components/Textfield/components/ResizeHandle/ResizeHandle_module.css +21 -0
- package/dist/components/Textfield/components/ResizeHandle/index.d.ts +1 -0
- package/dist/components/Textfield/components/ResizeHandle/index.js +1 -0
- package/dist/components/Textfield/consts/index.d.ts +2 -0
- package/dist/components/Textfield/consts/index.js +3 -0
- package/dist/components/Textfield/types/index.d.ts +12 -0
- package/dist/components/Textfield/types/index.js +5 -0
- package/dist/components/Textfield/utils/index.d.ts +3 -0
- package/dist/components/Textfield/utils/index.js +8 -0
- package/dist/components/Tooltip/Tooltip.d.ts +4 -1
- package/dist/components/Tooltip/Tooltip.js +9 -9
- package/dist/components/Tooltip/Tooltip.module.js +3 -1
- package/dist/components/Tooltip/Tooltip_module.css +13 -3
- package/dist/components/Tooltip/{consts.d.ts → constants/ArrowAlign.d.ts} +0 -2
- package/dist/components/Tooltip/constants/TooltipBodyColor.d.ts +4 -0
- package/dist/components/Tooltip/constants/TooltipBodyColor.js +5 -0
- package/dist/components/Tooltip/constants/index.d.ts +2 -0
- package/dist/components/Tooltip/constants/index.js +2 -0
- package/dist/components/Tooltip/hooks.d.ts +2 -2
- package/dist/components/Tooltip/hooks.js +1 -1
- package/dist/components/Tooltip/types.d.ts +4 -0
- package/dist/components/Tooltip/types.js +0 -0
- package/dist/components/ViewersStack/ViewersStack.d.ts +13 -0
- package/dist/components/ViewersStack/ViewersStack.js +77 -0
- package/dist/components/ViewersStack/ViewersStack.module.js +7 -0
- package/dist/components/ViewersStack/ViewersStack_module.css +18 -0
- package/dist/components/ViewersStack/components/Avatar/Avatar.d.ts +13 -0
- package/dist/components/ViewersStack/components/Avatar/Avatar.js +35 -0
- package/dist/components/ViewersStack/components/Avatar/Avatar.module.js +13 -0
- package/dist/components/ViewersStack/components/Avatar/Avatar_module.css +45 -0
- package/dist/components/ViewersStack/components/Counter/Counter.d.ts +9 -0
- package/dist/components/ViewersStack/components/Counter/Counter.js +27 -0
- package/dist/components/ViewersStack/components/Counter/Counter.module.js +5 -0
- package/dist/components/ViewersStack/components/Counter/Counter_module.css +20 -0
- package/dist/components/ViewersStack/components/ViewersTooltip/ViewersTooltip.d.ts +15 -0
- package/dist/components/ViewersStack/components/ViewersTooltip/ViewersTooltip.js +41 -0
- package/dist/components/ViewersStack/components/ViewersTooltip/ViewersTooltip.module.js +6 -0
- package/dist/components/ViewersStack/components/ViewersTooltip/ViewersTooltip_module.css +14 -0
- package/dist/components/ViewersStack/components/ViewersTooltipOverlayItem/ViewersTooltipOverlayItem.d.ts +6 -0
- package/dist/components/ViewersStack/components/ViewersTooltipOverlayItem/ViewersTooltipOverlayItem.js +53 -0
- package/dist/components/ViewersStack/components/ViewersTooltipOverlayItem/ViewersTooltipOverlayItem.module.js +7 -0
- package/dist/components/ViewersStack/components/ViewersTooltipOverlayItem/ViewersTooltipOverlayItem_module.css +18 -0
- package/dist/components/ViewersStack/components/common.module.js +7 -0
- package/dist/components/ViewersStack/components/common_module.css +27 -0
- package/dist/components/ViewersStack/types.d.ts +22 -0
- package/dist/components/ViewersStack/types.js +17 -0
- package/dist/components/ViewersStack/utils.d.ts +3 -0
- package/dist/components/ViewersStack/utils.js +17 -0
- package/dist/components/{EditableTitle → _shared/HintWithSkip}/HintWithSkip.d.ts +1 -1
- package/dist/components/{EditableTitle → _shared/HintWithSkip}/HintWithSkip.js +1 -1
- package/dist/data-grid/Table/Table.d.ts +14 -22
- package/dist/data-grid/Table/Table.js +99 -61
- package/dist/data-grid/Table/Table.module.js +2 -0
- package/dist/data-grid/Table/Table_module.css +23 -0
- package/dist/data-grid/Table/components/Body/Body.d.ts +10 -14
- package/dist/data-grid/Table/components/Body/Body.js +11 -47
- package/dist/data-grid/Table/components/DraggableRow/DraggableRow.js +1 -1
- package/dist/data-grid/Table/components/Footer/Footer.module.js +0 -1
- package/dist/data-grid/Table/components/Footer/FooterContent.d.ts +9 -0
- package/dist/data-grid/Table/components/Footer/{Footer.js → FooterContent.js} +4 -5
- package/dist/data-grid/Table/components/Footer/Footer_module.css +0 -5
- package/dist/data-grid/Table/components/Header/Header.module.js +0 -1
- package/dist/data-grid/Table/components/Header/HeaderCell.js +3 -1
- package/dist/data-grid/Table/components/Header/HeaderContent.d.ts +1 -0
- package/dist/data-grid/Table/components/Header/{Header.js → HeaderContent.js} +8 -6
- package/dist/data-grid/Table/components/Header/Header_module.css +0 -15
- package/dist/data-grid/Table/components/Row/Row.d.ts +13 -0
- package/dist/data-grid/Table/components/Row/Row.js +40 -0
- package/dist/data-grid/Table/components/Row/Row.module.js +14 -0
- package/dist/data-grid/Table/components/{TableRow/TableRow_module.css → Row/Row_module.css} +7 -7
- package/dist/data-grid/Table/components/SubRows/SubRows.d.ts +5 -4
- package/dist/data-grid/Table/components/SubRows/SubRows.js +3 -3
- package/dist/data-grid/Table/components/TableCell/TableCell.js +2 -0
- package/dist/data-grid/Table/components/TableDragOverlay/TableDragOverlay.d.ts +5 -6
- package/dist/data-grid/Table/components/TableDragOverlay/TableDragOverlay.js +2 -2
- package/dist/data-grid/Table/components/TableRow/TableRow.d.ts +6 -14
- package/dist/data-grid/Table/components/TableRow/TableRow.js +34 -25
- package/dist/data-grid/Table/components/VirtualTable/VirtualTable.d.ts +10 -0
- package/dist/data-grid/Table/components/VirtualTable/VirtualTable.js +78 -0
- package/dist/data-grid/Table/components/VirtualTable/VirtualTableRow.d.ts +11 -0
- package/dist/data-grid/Table/components/VirtualTable/VirtualTableRow.js +18 -0
- package/dist/data-grid/Table/components/index.d.ts +3 -3
- package/dist/data-grid/Table/components/index.js +2 -2
- package/dist/data-grid/Table/constants.d.ts +2 -0
- package/dist/data-grid/Table/constants.js +3 -1
- package/dist/data-grid/Table/hooks/index.d.ts +1 -0
- package/dist/data-grid/Table/hooks/index.js +1 -0
- package/dist/data-grid/Table/hooks/useRowContext.d.ts +16 -0
- package/dist/data-grid/Table/hooks/useRowContext.js +44 -0
- package/dist/data-grid/Table/hooks/useTableContext.d.ts +7 -2
- package/dist/data-grid/Table/hooks/useTableContext.js +12 -2
- package/dist/data-grid/Table/index.d.ts +2 -2
- package/dist/data-grid/Table/types.d.ts +8 -1
- package/dist/data-grid/Table/types.js +5 -0
- package/dist/data-grid/Table/utils/compareColumnIds.d.ts +1 -0
- package/dist/data-grid/Table/utils/compareColumnIds.js +6 -0
- package/dist/data-grid/Table/utils/getColumnWidthStyles.d.ts +5 -0
- package/dist/data-grid/Table/utils/getColumnWidthStyles.js +4 -1
- package/dist/data-grid/Table/utils/getTableColumnIds.d.ts +3 -0
- package/dist/data-grid/Table/utils/getTableColumnIds.js +5 -0
- package/dist/data-grid/Table/utils/index.d.ts +2 -0
- package/dist/data-grid/Table/utils/index.js +2 -0
- package/dist/data-grid/Table/utils/withDnD.js +1 -1
- package/dist/data-grid/base/DropdownItem/DropdownItem.d.ts +3 -3
- package/dist/data-grid/base/DropdownItem/DropdownItem.js +3 -2
- package/dist/data-grid/base/OverflowHint/OverflowHint.d.ts +1 -0
- package/dist/data-grid/base/OverflowHint/OverflowHint.js +5 -3
- package/dist/data-grid/base/OverflowHint/utils.d.ts +1 -0
- package/dist/data-grid/base/OverflowHint/utils.js +7 -0
- package/dist/data-grid/cells/AutoCompleteCell/AutoCompleteCell.js +3 -4
- package/dist/data-grid/cells/DecimalCell/DecimalCell_module.css +1 -1
- package/dist/data-grid/cells/FileCell/FileCell_module.css +1 -1
- package/dist/data-grid/cells/ImageCell/ImageCell.d.ts +1 -0
- package/dist/data-grid/cells/ImageCell/ImageCell.js +5 -2
- package/dist/data-grid/cells/IndexCheckboxDndCell/IndexCheckboxDndCell.d.ts +7 -2
- package/dist/data-grid/cells/IndexCheckboxDndCell/IndexCheckboxDndCell.js +6 -4
- package/dist/data-grid/cells/InputCell/InputCell.js +3 -4
- package/dist/data-grid/cells/IntegerCell/IntegerCell_module.css +1 -1
- package/dist/data-grid/cells/LinkCell/LinkCell_module.css +1 -1
- package/dist/data-grid/cells/NameCell/NameCell.js +3 -0
- package/dist/data-grid/cells/NameCell/NameCell_module.css +2 -2
- package/dist/data-grid/cells/NumberInputCell/NumberInputCell.js +19 -17
- package/dist/data-grid/cells/SelectCell/SelectCell.js +3 -4
- package/dist/data-grid/cells/TextCell/TextCell_module.css +1 -1
- package/dist/data-grid/cells/ToggleCell/ToggleCell_module.css +1 -1
- package/dist/data-grid/cells/components/EditableCellWrapper/EditableCellWrapper.d.ts +3 -0
- package/dist/data-grid/cells/components/EditableCellWrapper/EditableCellWrapper.js +9 -0
- package/dist/data-grid/cells/components/EditableCellWrapper/EditableCellWrapper.module.js +5 -0
- package/dist/data-grid/cells/{NumberInputCell/NumberInputCell_module.css → components/EditableCellWrapper/EditableCellWrapper_module.css} +2 -2
- package/dist/data-grid/cells/components/EditableCellWrapper/index.d.ts +1 -0
- package/dist/data-grid/cells/components/EditableCellWrapper/index.js +1 -0
- package/dist/data-grid/cells/components/RowActionsMenu/RowActionsMenu.d.ts +4 -3
- package/dist/data-grid/cells/components/RowActionsMenu/RowActionsMenu.js +13 -13
- package/dist/data-grid/cells/components/TableInput/TableInput.js +19 -3
- package/dist/data-grid/cells/components/TableInput/TableInput_module.css +1 -1
- package/dist/data-grid/cells/components/TableNumberInput/TableNumberInput.d.ts +4 -3
- package/dist/data-grid/cells/components/TableNumberInput/TableNumberInput.js +44 -55
- package/dist/data-grid/cells/components/TableSelect/ActionButton/ActionButton.d.ts +4 -1
- package/dist/data-grid/cells/components/TableSelect/ActionButton/ActionButton.js +4 -3
- package/dist/data-grid/cells/components/TableSelect/TableSelect.d.ts +15 -10
- package/dist/data-grid/cells/components/TableSelect/TableSelect.js +11 -7
- package/dist/data-grid/cells/components/index.d.ts +1 -0
- package/dist/data-grid/cells/components/index.js +1 -0
- package/dist/data-grid/cells/index.d.ts +1 -1
- package/dist/data-grid/cells/index.js +1 -1
- package/dist/data-grid/headers/PlainTextHeader.js +3 -2
- package/dist/data-grid/headers/components/Dropdown/DropdownArrowBtn/DropdownArrowBtn.js +5 -1
- package/dist/data-grid/headers/components/Dropdown/Option/Option.d.ts +1 -1
- package/dist/data-grid/headers/components/Dropdown/Option/Option.js +2 -2
- package/dist/data-grid/headers/components/Dropdown/Option/Option_module.css +10 -2
- package/dist/data-grid/headers/components/HeaderBuilder/HeaderBuilder.d.ts +13 -3
- package/dist/data-grid/headers/components/HeaderBuilder/HeaderBuilder.js +64 -83
- package/dist/data-grid/headers/components/HeaderBuilder/HeaderBuilder.module.js +2 -1
- package/dist/data-grid/headers/components/HeaderBuilder/HeaderBuilder_module.css +21 -0
- package/dist/data-grid/headers/components/HeaderSortGroups/components/SortByOption/SortByOption.js +7 -15
- package/dist/data-grid/headers/components/HideColumn/HideColumn.js +8 -13
- package/dist/data-grid/headers/components/ResetFilter/ResetFilter.js +7 -10
- package/dist/data-grid/headers/components/ResetFilter/ResetFilter.module.js +0 -1
- package/dist/data-grid/headers/components/ResetFilter/ResetFilter_module.css +1 -21
- package/dist/data-grid/headers/components/index.d.ts +1 -1
- package/dist/data-grid/headers/index.d.ts +1 -1
- package/dist/data-grid/headers/types/types.d.ts +1 -0
- package/dist/data-grid/types/index.d.ts +1 -0
- package/dist/data-grid/utils/isOverflowed.js +21 -1
- package/dist/hooks/useDebounceCallback/useDebounceCallback.d.ts +2 -0
- package/dist/hooks/useDebounceCallback/useDebounceCallback.js +21 -0
- package/dist/hooks/useDismissOnFocusOutside/index.d.ts +2 -1
- package/dist/hooks/useDismissOnFocusOutside/index.js +4 -3
- package/dist/hooks/useDismissOnOutsideClick/index.d.ts +2 -1
- package/dist/hooks/useDismissOnOutsideClick/index.js +4 -3
- package/dist/hooks/useTextField/useTextField.d.ts +4 -5
- package/dist/hooks/useTextField/useTextField.js +6 -24
- package/dist/hooks/useUnmount/useUnmount.d.ts +1 -0
- package/dist/hooks/useUnmount/useUnmount.js +9 -0
- package/dist/icon/components/MyApps12Icon.d.ts +8 -0
- package/dist/icon/components/MyApps12Icon.js +18 -0
- package/dist/icon/components/MyApps16Icon.d.ts +8 -0
- package/dist/icon/components/MyApps16Icon.js +17 -0
- package/dist/icon/components/MyApps20Icon.d.ts +8 -0
- package/dist/icon/components/MyApps20Icon.js +18 -0
- package/dist/icon/components/Smile12Icon.d.ts +8 -0
- package/dist/icon/components/Smile12Icon.js +17 -0
- package/dist/icon/components/Smile16Icon.d.ts +8 -0
- package/dist/icon/components/Smile16Icon.js +16 -0
- package/dist/icon/components/Smile20Icon.d.ts +8 -0
- package/dist/icon/components/Smile20Icon.js +17 -0
- package/dist/icon/index.d.ts +6 -0
- package/dist/icon/index.js +6 -0
- package/dist/index.d.ts +4 -4
- package/dist/index.js +3 -1
- package/dist/utils/debounce/debounce.d.ts +10 -0
- package/dist/utils/debounce/debounce.js +73 -0
- package/dist/utils/isRecordEqual/isRecordEqual.d.ts +1 -0
- package/dist/utils/isRecordEqual/isRecordEqual.js +9 -0
- package/dist/utils/utils.d.ts +2 -0
- package/dist/utils/utils.js +2 -0
- package/package.json +22 -3
- package/dist/components/LabelValue/HelpButton/HelpButton.module.js +0 -8
- package/dist/components/LabelValue/HelpButton/HelpButton_module.css +0 -44
- package/dist/components/LabelValue/HelpButton/index.d.ts +0 -8
- package/dist/components/LabelValue/HelpButton/index.js +0 -36
- package/dist/components/Textfield/components/ClearIcon/ClearIcon.d.ts +0 -6
- package/dist/components/Textfield/components/ClearIcon/ClearIcon.js +0 -13
- package/dist/components/Textfield/components/ClearIcon/ClearIcon.module.js +0 -6
- package/dist/components/Textfield/components/ClearIcon/ClearIcon_module.css +0 -11
- package/dist/data-grid/Table/components/Footer/Footer.d.ts +0 -9
- package/dist/data-grid/Table/components/Header/Header.d.ts +0 -8
- package/dist/data-grid/Table/components/TableRow/TableRow.module.js +0 -14
- package/dist/data-grid/cells/AutoCompleteCell/AutoCompleteCell.module.js +0 -5
- package/dist/data-grid/cells/AutoCompleteCell/AutoCompleteCell_module.css +0 -8
- package/dist/data-grid/cells/InputCell/InputCell.module.js +0 -5
- package/dist/data-grid/cells/InputCell/InputCell_module.css +0 -8
- package/dist/data-grid/cells/NumberInputCell/NumberInputCell.module.js +0 -5
- package/dist/data-grid/cells/SelectCell/SelectCell.module.js +0 -8
- package/dist/data-grid/cells/SelectCell/SelectCell_module.css +0 -33
- package/dist/data-grid/headers/components/HeaderSortGroups/components/SortByOption/SortByOption.module.js +0 -7
- package/dist/data-grid/headers/components/HeaderSortGroups/components/SortByOption/SortByOption_module.css +0 -22
- package/dist/data-grid/headers/components/HideColumn/HideColumn.module.js +0 -6
- package/dist/data-grid/headers/components/HideColumn/HideColumn_module.css +0 -20
- /package/dist/components/Tooltip/{consts.js → constants/ArrowAlign.js} +0 -0
|
@@ -6,6 +6,7 @@ const HeaderBuilder_module = {
|
|
|
6
6
|
iconContainerClassName: "iconContainerClassName-imS1yx",
|
|
7
7
|
wrapper: "wrapper-tYoNBG",
|
|
8
8
|
arrow: "arrow-WYLP8q",
|
|
9
|
-
rotated: "rotated-yMd59y"
|
|
9
|
+
rotated: "rotated-yMd59y",
|
|
10
|
+
dropdownContainer: "dropdownContainer-G8K0DA"
|
|
10
11
|
};
|
|
11
12
|
export default HeaderBuilder_module;
|
|
@@ -68,3 +68,24 @@
|
|
|
68
68
|
transform: rotate(180deg);
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
+
.dropdownContainer-G8K0DA {
|
|
72
|
+
background: var(--light-white);
|
|
73
|
+
flex-direction: column;
|
|
74
|
+
padding: 4px;
|
|
75
|
+
display: flex;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.dropdownContainer-G8K0DA ::-webkit-scrollbar {
|
|
79
|
+
width: 15px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.dropdownContainer-G8K0DA ::-webkit-scrollbar-track {
|
|
83
|
+
background: var(--light-white);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.dropdownContainer-G8K0DA ::-webkit-scrollbar-thumb {
|
|
87
|
+
border: 4px solid var(--light-white);
|
|
88
|
+
background-color: var(--light-grey-400);
|
|
89
|
+
border-radius: 8px;
|
|
90
|
+
}
|
|
91
|
+
|
package/dist/data-grid/headers/components/HeaderSortGroups/components/SortByOption/SortByOption.js
CHANGED
|
@@ -2,22 +2,14 @@ import { jsx, jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
import { memo } from "react";
|
|
3
3
|
import { Text } from "../../../../../../components/Text/Text.js";
|
|
4
4
|
import { Option } from "../../../Dropdown/Option/Option.js";
|
|
5
|
-
|
|
6
|
-
const SortByOption = /*#__PURE__*/ memo(({ onSelect, icon, label })=>/*#__PURE__*/ jsx(Option, {
|
|
7
|
-
className: SortByOption_module.option,
|
|
5
|
+
const SortByOption = /*#__PURE__*/ memo(({ onSelect, icon, label })=>/*#__PURE__*/ jsxs(Option, {
|
|
8
6
|
onSelect: onSelect,
|
|
9
|
-
children:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
children: /*#__PURE__*/ jsx(Text.Body, {
|
|
16
|
-
children: label
|
|
17
|
-
})
|
|
18
|
-
})
|
|
19
|
-
]
|
|
20
|
-
})
|
|
7
|
+
children: [
|
|
8
|
+
icon,
|
|
9
|
+
/*#__PURE__*/ jsx(Text.Body, {
|
|
10
|
+
children: label
|
|
11
|
+
})
|
|
12
|
+
]
|
|
21
13
|
}));
|
|
22
14
|
SortByOption.displayName = 'SortByOption';
|
|
23
15
|
export { SortByOption };
|
|
@@ -1,28 +1,23 @@
|
|
|
1
1
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { memo } from "react";
|
|
3
3
|
import { Text } from "../../../../components/Text/Text.js";
|
|
4
|
-
import { Divider } from "../../../base/
|
|
4
|
+
import { Divider } from "../../../base/Divider/Divider.js";
|
|
5
5
|
import { EyeEyeballHide16Icon } from "../../../../icon/index.js";
|
|
6
6
|
import { useLocale } from "../../../locale/useLocale.js";
|
|
7
7
|
import { Option } from "../Dropdown/Option/Option.js";
|
|
8
|
-
import HideColumn_module from "./HideColumn.module.js";
|
|
9
8
|
const HideColumn = /*#__PURE__*/ memo(({ onVisibleChange, isShowDivider = false })=>{
|
|
10
9
|
const { hideColumnLabel } = useLocale('Headers');
|
|
11
10
|
return /*#__PURE__*/ jsxs(Fragment, {
|
|
12
11
|
children: [
|
|
13
12
|
isShowDivider && /*#__PURE__*/ jsx(Divider, {}),
|
|
14
|
-
/*#__PURE__*/
|
|
13
|
+
/*#__PURE__*/ jsxs(Option, {
|
|
15
14
|
onSelect: onVisibleChange,
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
children: hideColumnLabel
|
|
23
|
-
})
|
|
24
|
-
]
|
|
25
|
-
})
|
|
15
|
+
children: [
|
|
16
|
+
/*#__PURE__*/ jsx(EyeEyeballHide16Icon, {}),
|
|
17
|
+
/*#__PURE__*/ jsx(Text.Body, {
|
|
18
|
+
children: hideColumnLabel
|
|
19
|
+
})
|
|
20
|
+
]
|
|
26
21
|
})
|
|
27
22
|
]
|
|
28
23
|
});
|
|
@@ -10,19 +10,16 @@ const ResetFilter = ({ onFilterReset })=>{
|
|
|
10
10
|
return /*#__PURE__*/ jsxs(Fragment, {
|
|
11
11
|
children: [
|
|
12
12
|
/*#__PURE__*/ jsx(Divider, {}),
|
|
13
|
-
/*#__PURE__*/
|
|
13
|
+
/*#__PURE__*/ jsxs(Option, {
|
|
14
14
|
"data-test-id": "filter-reset-btn",
|
|
15
15
|
onClick: onFilterReset,
|
|
16
16
|
className: ResetFilter_module.option,
|
|
17
|
-
children:
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
})
|
|
24
|
-
]
|
|
25
|
-
})
|
|
17
|
+
children: [
|
|
18
|
+
/*#__PURE__*/ jsx(ClearFilter20Icon, {}),
|
|
19
|
+
/*#__PURE__*/ jsx(Text.Body, {
|
|
20
|
+
children: resetFilterLabel
|
|
21
|
+
})
|
|
22
|
+
]
|
|
26
23
|
})
|
|
27
24
|
]
|
|
28
25
|
});
|
|
@@ -1,25 +1,5 @@
|
|
|
1
|
-
.
|
|
2
|
-
align-items: center;
|
|
3
|
-
gap: 8px;
|
|
4
|
-
padding-left: 0;
|
|
5
|
-
display: flex;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.resetFilter-n7veAz svg {
|
|
1
|
+
.option-gv3fnL svg {
|
|
9
2
|
width: 16px;
|
|
10
3
|
height: 16px;
|
|
11
4
|
}
|
|
12
5
|
|
|
13
|
-
.option-gv3fnL {
|
|
14
|
-
border-radius: 8px;
|
|
15
|
-
padding: 6px 12px;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.option-gv3fnL:hover {
|
|
19
|
-
background: var(--light-grey-100);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.option-gv3fnL:active {
|
|
23
|
-
background-color: #f1f4f8;
|
|
24
|
-
}
|
|
25
|
-
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { Dash } from './Dash/Dash';
|
|
2
2
|
export * from './Dropdown';
|
|
3
3
|
export { DropdownTitle } from './DropdownTitle/DropdownTitle';
|
|
4
|
-
export { HeaderBuilder } from './HeaderBuilder/HeaderBuilder';
|
|
4
|
+
export { HeaderBuilder, type HeaderBuilderProps, } from './HeaderBuilder/HeaderBuilder';
|
|
5
5
|
export { AccountSelect } from './HeaderFilters/AccountSelect/AccountSelect';
|
|
6
6
|
export { Dater } from './HeaderFilters/Dater/Dater';
|
|
7
7
|
export { MultiSelect } from './HeaderFilters/MultiSelect/MultiSelect';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { AccountHeader } from './AccountHeader';
|
|
2
2
|
export { BooleanHeader } from './BooleanHeader';
|
|
3
3
|
export { CheckboxHeader } from './CheckboxHeader';
|
|
4
|
-
export { AccountSelect, AlphabeticallySort, CheckboxOption, Dash, Dater, Dropdown, DropdownArrowBtn, DropdownTitle, DuoDirectionSort, HeaderBuilder, HideColumn, MultiSelect, Option, Range, ResetFilter, Search, Select, WarningMsg, } from './components';
|
|
4
|
+
export { AccountSelect, AlphabeticallySort, CheckboxOption, Dash, Dater, Dropdown, DropdownArrowBtn, DropdownTitle, DuoDirectionSort, HeaderBuilder, type HeaderBuilderProps, HideColumn, MultiSelect, Option, Range, ResetFilter, Search, Select, WarningMsg, } from './components';
|
|
5
5
|
export { DateHeader } from './DateHeader';
|
|
6
6
|
export { DictHeader } from './DictHeader';
|
|
7
7
|
export { LinkHeader } from './LinkHeader';
|
|
@@ -17,6 +17,7 @@ export type DefaultHeaderMeta = {
|
|
|
17
17
|
btnClassName?: string;
|
|
18
18
|
onColumnToggle?: (columnId: string, isVisible: boolean) => void;
|
|
19
19
|
isScrollToDropdownDisabled?: boolean;
|
|
20
|
+
isHidden?: boolean;
|
|
20
21
|
maxSizeInDefaultView?: number;
|
|
21
22
|
minSizeInDefaultView?: number;
|
|
22
23
|
};
|
|
@@ -1,2 +1,22 @@
|
|
|
1
|
-
const
|
|
1
|
+
const OVERFLOW_SUBPIXEL_TOLERANCE = 0.1;
|
|
2
|
+
const TEXT_FORM_CONTROLS = [
|
|
3
|
+
HTMLInputElement,
|
|
4
|
+
HTMLTextAreaElement
|
|
5
|
+
];
|
|
6
|
+
const isOverflowed = (element)=>{
|
|
7
|
+
const isTextFormControl = TEXT_FORM_CONTROLS.some((ElementClass)=>element instanceof ElementClass);
|
|
8
|
+
if (isTextFormControl) return element.scrollWidth > element.clientWidth;
|
|
9
|
+
if ("u" < typeof document || !element.isConnected) return false;
|
|
10
|
+
const range = document.createRange();
|
|
11
|
+
range.selectNodeContents(element);
|
|
12
|
+
const { width: contentWidth } = range.getBoundingClientRect();
|
|
13
|
+
const { width: elementWidth } = element.getBoundingClientRect();
|
|
14
|
+
const style = getComputedStyle(element);
|
|
15
|
+
const paddingLeft = parseFloat(style.paddingLeft) || 0;
|
|
16
|
+
const paddingRight = parseFloat(style.paddingRight) || 0;
|
|
17
|
+
const borderLeft = parseFloat(style.borderLeftWidth) || 0;
|
|
18
|
+
const borderRight = parseFloat(style.borderRightWidth) || 0;
|
|
19
|
+
const contentBoxWidth = elementWidth - paddingLeft - paddingRight - borderLeft - borderRight;
|
|
20
|
+
return contentWidth - contentBoxWidth > OVERFLOW_SUBPIXEL_TOLERANCE;
|
|
21
|
+
};
|
|
2
22
|
export { isOverflowed };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { useEffect, useMemo, useRef } from "react";
|
|
2
|
+
import { debounce } from "../../utils/debounce/debounce.js";
|
|
3
|
+
import { useUnmount } from "../useUnmount/useUnmount.js";
|
|
4
|
+
const useDebounceCallback = (fn, delay = 500, options)=>{
|
|
5
|
+
const debouncedFn = useRef();
|
|
6
|
+
useUnmount(()=>{
|
|
7
|
+
debouncedFn.current?.cancel();
|
|
8
|
+
});
|
|
9
|
+
const debounced = useMemo(()=>debounce(fn, delay, options), [
|
|
10
|
+
fn,
|
|
11
|
+
delay,
|
|
12
|
+
options
|
|
13
|
+
]);
|
|
14
|
+
useEffect(()=>{
|
|
15
|
+
debouncedFn.current = debounced;
|
|
16
|
+
}, [
|
|
17
|
+
debounced
|
|
18
|
+
]);
|
|
19
|
+
return debounced;
|
|
20
|
+
};
|
|
21
|
+
export { useDebounceCallback };
|
|
@@ -4,6 +4,7 @@ interface UseDismissOnFocusOutsideOptions {
|
|
|
4
4
|
ref: RefObject<HTMLElement>;
|
|
5
5
|
onDismiss: () => void;
|
|
6
6
|
ignoreRefs?: Array<RefObject<HTMLElement>>;
|
|
7
|
+
shouldIgnoreTarget?: (target: Node) => boolean;
|
|
7
8
|
}
|
|
8
|
-
export declare const useDismissOnFocusOutside: ({ enabled, ref, onDismiss, ignoreRefs, }: UseDismissOnFocusOutsideOptions) => void;
|
|
9
|
+
export declare const useDismissOnFocusOutside: ({ enabled, ref, onDismiss, ignoreRefs, shouldIgnoreTarget, }: UseDismissOnFocusOutsideOptions) => void;
|
|
9
10
|
export {};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { useEffect } from "react";
|
|
2
|
-
const useDismissOnFocusOutside = ({ enabled, ref, onDismiss, ignoreRefs = [] })=>{
|
|
2
|
+
const useDismissOnFocusOutside = ({ enabled, ref, onDismiss, ignoreRefs = [], shouldIgnoreTarget })=>{
|
|
3
3
|
useEffect(()=>{
|
|
4
4
|
if (!enabled) return;
|
|
5
5
|
const onFocusin = (event)=>{
|
|
6
6
|
const target = event.target;
|
|
7
|
-
if (!target || ignoreRefs.some((itemRef)=>itemRef.current?.contains(target)) || ref.current?.contains(target)) return;
|
|
7
|
+
if (!target || shouldIgnoreTarget?.(target) || ignoreRefs.some((itemRef)=>itemRef.current?.contains(target)) || ref.current?.contains(target)) return;
|
|
8
8
|
onDismiss();
|
|
9
9
|
};
|
|
10
10
|
document.addEventListener('focusin', onFocusin);
|
|
@@ -15,7 +15,8 @@ const useDismissOnFocusOutside = ({ enabled, ref, onDismiss, ignoreRefs = [] })=
|
|
|
15
15
|
enabled,
|
|
16
16
|
ref,
|
|
17
17
|
onDismiss,
|
|
18
|
-
ignoreRefs
|
|
18
|
+
ignoreRefs,
|
|
19
|
+
shouldIgnoreTarget
|
|
19
20
|
]);
|
|
20
21
|
};
|
|
21
22
|
export { useDismissOnFocusOutside };
|
|
@@ -4,6 +4,7 @@ interface UseDismissOnOutsideClickOptions {
|
|
|
4
4
|
ref: RefObject<HTMLElement>;
|
|
5
5
|
onDismiss: () => void;
|
|
6
6
|
ignoreRefs?: Array<RefObject<HTMLElement>>;
|
|
7
|
+
shouldIgnoreTarget?: (target: Node) => boolean;
|
|
7
8
|
}
|
|
8
|
-
export declare const useDismissOnOutsideClick: ({ enabled, ref, onDismiss, ignoreRefs, }: UseDismissOnOutsideClickOptions) => void;
|
|
9
|
+
export declare const useDismissOnOutsideClick: ({ enabled, ref, onDismiss, ignoreRefs, shouldIgnoreTarget, }: UseDismissOnOutsideClickOptions) => void;
|
|
9
10
|
export {};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { useEffect } from "react";
|
|
2
|
-
const useDismissOnOutsideClick = ({ enabled, ref, onDismiss, ignoreRefs = [] })=>{
|
|
2
|
+
const useDismissOnOutsideClick = ({ enabled, ref, onDismiss, ignoreRefs = [], shouldIgnoreTarget })=>{
|
|
3
3
|
useEffect(()=>{
|
|
4
4
|
if (!enabled) return;
|
|
5
5
|
const onMousedown = (event)=>{
|
|
6
6
|
const target = event.target;
|
|
7
|
-
if (!target || ignoreRefs.some((itemRef)=>itemRef.current?.contains(target)) || !ref.current || ref.current.contains(target)) return;
|
|
7
|
+
if (!target || shouldIgnoreTarget?.(target) || ignoreRefs.some((itemRef)=>itemRef.current?.contains(target)) || !ref.current || ref.current.contains(target)) return;
|
|
8
8
|
onDismiss();
|
|
9
9
|
};
|
|
10
10
|
document.addEventListener('mousedown', onMousedown);
|
|
@@ -15,7 +15,8 @@ const useDismissOnOutsideClick = ({ enabled, ref, onDismiss, ignoreRefs = [] })=
|
|
|
15
15
|
enabled,
|
|
16
16
|
ref,
|
|
17
17
|
onDismiss,
|
|
18
|
-
ignoreRefs
|
|
18
|
+
ignoreRefs,
|
|
19
|
+
shouldIgnoreTarget
|
|
19
20
|
]);
|
|
20
21
|
};
|
|
21
22
|
export { useDismissOnOutsideClick };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type RefObject
|
|
1
|
+
import { type RefObject } from 'react';
|
|
2
2
|
interface Options {
|
|
3
3
|
value?: string;
|
|
4
4
|
ref: RefObject<HTMLTextAreaElement>;
|
|
@@ -8,14 +8,13 @@ interface Options {
|
|
|
8
8
|
limit?: number;
|
|
9
9
|
resetHeightOnClear?: boolean;
|
|
10
10
|
fitContentHeightOnInit?: boolean;
|
|
11
|
-
|
|
12
|
-
onChange?: TextareaHTMLAttributes<HTMLTextAreaElement>['onChange'];
|
|
11
|
+
hasResizeHandles?: boolean;
|
|
13
12
|
}
|
|
14
|
-
export declare const useTextField: ({ ref, autoVerticalResize, value, minHeight, maxHeight, limit, resetHeightOnClear, fitContentHeightOnInit,
|
|
13
|
+
export declare const useTextField: ({ ref, autoVerticalResize, value, minHeight, maxHeight, limit, resetHeightOnClear, fitContentHeightOnInit, hasResizeHandles, }: Options) => {
|
|
15
14
|
height: number;
|
|
15
|
+
setHeight: import("react").Dispatch<import("react").SetStateAction<number>>;
|
|
16
16
|
isFocused: boolean;
|
|
17
17
|
setIsFocused: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
18
18
|
isLimitError: boolean;
|
|
19
|
-
handleClear: () => void;
|
|
20
19
|
};
|
|
21
20
|
export {};
|
|
@@ -1,22 +1,10 @@
|
|
|
1
1
|
import { useLayoutEffect, useState } from "react";
|
|
2
|
-
import { createSyntheticEvent } from "../../common/react/createSyntheticEvent.js";
|
|
3
|
-
const createChangeEvent = (value)=>{
|
|
4
|
-
const nativeEvent = new Event('change');
|
|
5
|
-
Object.defineProperty(nativeEvent, 'target', {
|
|
6
|
-
writable: false,
|
|
7
|
-
value: {
|
|
8
|
-
value
|
|
9
|
-
}
|
|
10
|
-
});
|
|
11
|
-
const event = createSyntheticEvent(nativeEvent);
|
|
12
|
-
return event;
|
|
13
|
-
};
|
|
14
2
|
const clampHeight = (h, minHeight, maxHeight)=>{
|
|
15
3
|
let next = h > minHeight ? h : minHeight;
|
|
16
4
|
if (maxHeight) next = next < maxHeight ? next : maxHeight;
|
|
17
5
|
return next;
|
|
18
6
|
};
|
|
19
|
-
const useTextField = ({ ref, autoVerticalResize, value, minHeight, maxHeight, limit, resetHeightOnClear, fitContentHeightOnInit,
|
|
7
|
+
const useTextField = ({ ref, autoVerticalResize, value, minHeight, maxHeight, limit, resetHeightOnClear, fitContentHeightOnInit, hasResizeHandles })=>{
|
|
20
8
|
const [isFocused, setIsFocused] = useState(false);
|
|
21
9
|
const [height, setHeight] = useState(0);
|
|
22
10
|
const isLimitError = limit ? (value?.length ?? 0) > limit : false;
|
|
@@ -32,12 +20,13 @@ const useTextField = ({ ref, autoVerticalResize, value, minHeight, maxHeight, li
|
|
|
32
20
|
const el = ref.current;
|
|
33
21
|
const prevHeight = el.style.height;
|
|
34
22
|
el.style.height = '0px';
|
|
35
|
-
const
|
|
23
|
+
const contentHeight = clampHeight(el.scrollHeight, minHeight, maxHeight);
|
|
36
24
|
el.style.height = prevHeight;
|
|
37
|
-
setHeight((prev)=>
|
|
25
|
+
setHeight((prev)=>hasResizeHandles ? Math.max(contentHeight, prev) : contentHeight);
|
|
38
26
|
}, [
|
|
39
27
|
value,
|
|
40
28
|
autoVerticalResize,
|
|
29
|
+
hasResizeHandles,
|
|
41
30
|
minHeight,
|
|
42
31
|
maxHeight,
|
|
43
32
|
resetHeightOnClear
|
|
@@ -49,19 +38,12 @@ const useTextField = ({ ref, autoVerticalResize, value, minHeight, maxHeight, li
|
|
|
49
38
|
}, [
|
|
50
39
|
fitContentHeightOnInit
|
|
51
40
|
]);
|
|
52
|
-
const handleClear = ()=>{
|
|
53
|
-
if (onChange) {
|
|
54
|
-
const event = createChangeEvent('');
|
|
55
|
-
onChange(event);
|
|
56
|
-
}
|
|
57
|
-
onClear?.();
|
|
58
|
-
};
|
|
59
41
|
return {
|
|
60
42
|
height,
|
|
43
|
+
setHeight,
|
|
61
44
|
isFocused,
|
|
62
45
|
setIsFocused,
|
|
63
|
-
isLimitError
|
|
64
|
-
handleClear
|
|
46
|
+
isLimitError
|
|
65
47
|
};
|
|
66
48
|
};
|
|
67
49
|
export { useTextField };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const useUnmount: (func: () => void) => void;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
const MyApps12Icon = ({ stroke = 'currentColor', className })=>/*#__PURE__*/ jsx("svg", {
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
width: 12,
|
|
5
|
+
height: 12,
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 12 12",
|
|
8
|
+
className: className,
|
|
9
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
10
|
+
stroke: stroke,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
strokeWidth: 0.9,
|
|
14
|
+
d: "M3.817 1.643c.27.263.431.62.45.997L5.64 1.275a.502.502 0 0 1 .75 0L7.5 2.43a1.6 1.6 0 0 0-.428.3 1.545 1.545 0 0 0 2.183 2.183q.184-.19.3-.428l1.17 1.155a.5.5 0 0 1 0 .75L9.36 7.733A1.537 1.537 0 1 1 7.732 9.36L6.36 10.725a.503.503 0 0 1-.75 0L4.5 9.57q.238-.116.427-.3A1.549 1.549 0 1 0 2.43 7.515L1.275 6.36a.502.502 0 0 1 0-.75L2.64 4.268a1.5 1.5 0 0 1-.998-.45 1.538 1.538 0 1 1 2.175-2.175"
|
|
15
|
+
})
|
|
16
|
+
});
|
|
17
|
+
MyApps12Icon.displayName = 'MyApps12Icon';
|
|
18
|
+
export { MyApps12Icon };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
const MyApps16Icon = ({ stroke = 'currentColor', className })=>/*#__PURE__*/ jsx("svg", {
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
width: 16,
|
|
5
|
+
height: 16,
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 16 16",
|
|
8
|
+
className: className,
|
|
9
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
10
|
+
stroke: stroke,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
d: "M4.892 1.769c.388.379.618.89.646 1.432l1.97-1.96a.722.722 0 0 1 1.077 0L10.179 2.9q-.342.166-.614.43a2.218 2.218 0 0 0 3.133 3.134c.176-.18.321-.388.431-.614l1.68 1.658a.72.72 0 0 1 0 1.077l-1.96 1.927a2.208 2.208 0 1 1-2.337 2.337l-1.97 1.96a.722.722 0 0 1-1.077 0L5.871 13.15q.342-.166.614-.431A2.223 2.223 0 1 0 2.9 10.2L1.241 8.542a.722.722 0 0 1 0-1.077l1.96-1.927a2.15 2.15 0 0 1-1.432-.646 2.208 2.208 0 1 1 3.123-3.123"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
MyApps16Icon.displayName = 'MyApps16Icon';
|
|
17
|
+
export { MyApps16Icon };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
const MyApps20Icon = ({ stroke = 'currentColor', className })=>/*#__PURE__*/ jsx("svg", {
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
width: 20,
|
|
5
|
+
height: 20,
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 20 20",
|
|
8
|
+
className: className,
|
|
9
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
10
|
+
stroke: stroke,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
strokeWidth: 1.1,
|
|
14
|
+
d: "M5.986 1.985c.497.486.792 1.14.827 1.835l2.525-2.511a.924.924 0 0 1 1.38 0l2.041 2.124a3 3 0 0 0-.786.552A2.842 2.842 0 0 0 15.987 8c.225-.231.411-.497.552-.787l2.152 2.125a.924.924 0 0 1 0 1.38l-2.51 2.469a2.828 2.828 0 1 1-2.994 2.993l-2.525 2.511a.923.923 0 0 1-1.38 0l-2.041-2.124c.29-.141.555-.327.786-.552A2.848 2.848 0 0 0 3.985 12c-.225.231-.41.497-.552.787L1.31 10.662a.924.924 0 0 1 0-1.38l2.51-2.469a2.76 2.76 0 0 1-1.834-.827 2.829 2.829 0 0 1 4-4.001"
|
|
15
|
+
})
|
|
16
|
+
});
|
|
17
|
+
MyApps20Icon.displayName = 'MyApps20Icon';
|
|
18
|
+
export { MyApps20Icon };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
const Smile12Icon = ({ stroke = 'currentColor', className })=>/*#__PURE__*/ jsx("svg", {
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
width: 12,
|
|
5
|
+
height: 12,
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 12 12",
|
|
8
|
+
className: className,
|
|
9
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
10
|
+
stroke: stroke,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeWidth: 0.9,
|
|
13
|
+
d: "M3.8 7.1S4.625 8.475 6 8.475 8.2 7.1 8.2 7.1M11.5 6a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0ZM4.281 4.281a.344.344 0 1 1-.687 0 .344.344 0 0 1 .687 0Zm4.125 0a.344.344 0 1 1-.687 0 .344.344 0 0 1 .687 0Z"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
Smile12Icon.displayName = 'Smile12Icon';
|
|
17
|
+
export { Smile12Icon };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
const Smile16Icon = ({ stroke = 'currentColor', className })=>/*#__PURE__*/ jsx("svg", {
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
width: 16,
|
|
5
|
+
height: 16,
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 16 16",
|
|
8
|
+
className: className,
|
|
9
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
10
|
+
stroke: stroke,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
d: "M5 9.5s1.125 1.875 3 1.875S11 9.5 11 9.5M15.5 8a7.5 7.5 0 1 1-15 0 7.5 7.5 0 0 1 15 0ZM5.656 5.656a.469.469 0 1 1-.937 0 .469.469 0 0 1 .937 0Zm5.625 0a.469.469 0 1 1-.937 0 .469.469 0 0 1 .937 0Z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
Smile16Icon.displayName = 'Smile16Icon';
|
|
16
|
+
export { Smile16Icon };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
const Smile20Icon = ({ stroke = 'currentColor', className })=>/*#__PURE__*/ jsx("svg", {
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
width: 20,
|
|
5
|
+
height: 20,
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 20 20",
|
|
8
|
+
className: className,
|
|
9
|
+
children: /*#__PURE__*/ jsx("path", {
|
|
10
|
+
stroke: stroke,
|
|
11
|
+
strokeLinecap: "round",
|
|
12
|
+
strokeWidth: 1.1,
|
|
13
|
+
d: "M6.26 11.87s1.403 2.338 3.74 2.338 3.74-2.338 3.74-2.338M19.35 10a9.35 9.35 0 1 1-18.7 0 9.35 9.35 0 0 1 18.7 0ZM7.078 7.078a.584.584 0 1 1-1.169 0 .584.584 0 0 1 1.17 0Zm7.013 0a.584.584 0 1 1-1.17 0 .584.584 0 0 1 1.17 0Z"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
Smile20Icon.displayName = 'Smile20Icon';
|
|
17
|
+
export { Smile20Icon };
|
package/dist/icon/index.d.ts
CHANGED
|
@@ -160,6 +160,9 @@ export { Minus20Icon } from './components/Minus20Icon';
|
|
|
160
160
|
export { Money12Icon } from './components/Money12Icon';
|
|
161
161
|
export { Money16Icon } from './components/Money16Icon';
|
|
162
162
|
export { Money20Icon } from './components/Money20Icon';
|
|
163
|
+
export { MyApps12Icon } from './components/MyApps12Icon';
|
|
164
|
+
export { MyApps16Icon } from './components/MyApps16Icon';
|
|
165
|
+
export { MyApps20Icon } from './components/MyApps20Icon';
|
|
163
166
|
export { NewDesign12Icon } from './components/NewDesign12Icon';
|
|
164
167
|
export { NewDesign16Icon } from './components/NewDesign16Icon';
|
|
165
168
|
export { NewDesign20Icon } from './components/NewDesign20Icon';
|
|
@@ -250,6 +253,9 @@ export { SendMessage20Icon } from './components/SendMessage20Icon';
|
|
|
250
253
|
export { Settings12Icon } from './components/Settings12Icon';
|
|
251
254
|
export { Settings16Icon } from './components/Settings16Icon';
|
|
252
255
|
export { Settings20Icon } from './components/Settings20Icon';
|
|
256
|
+
export { Smile12Icon } from './components/Smile12Icon';
|
|
257
|
+
export { Smile16Icon } from './components/Smile16Icon';
|
|
258
|
+
export { Smile20Icon } from './components/Smile20Icon';
|
|
253
259
|
export { SocialUpRating20Icon } from './components/SocialUpRating20Icon';
|
|
254
260
|
export { SortByCode12Icon } from './components/SortByCode12Icon';
|
|
255
261
|
export { SortByCode16Icon } from './components/SortByCode16Icon';
|
package/dist/icon/index.js
CHANGED
|
@@ -157,6 +157,9 @@ export { Minus20Icon } from "./components/Minus20Icon.js";
|
|
|
157
157
|
export { Money12Icon } from "./components/Money12Icon.js";
|
|
158
158
|
export { Money16Icon } from "./components/Money16Icon.js";
|
|
159
159
|
export { Money20Icon } from "./components/Money20Icon.js";
|
|
160
|
+
export { MyApps12Icon } from "./components/MyApps12Icon.js";
|
|
161
|
+
export { MyApps16Icon } from "./components/MyApps16Icon.js";
|
|
162
|
+
export { MyApps20Icon } from "./components/MyApps20Icon.js";
|
|
160
163
|
export { NewDesign12Icon } from "./components/NewDesign12Icon.js";
|
|
161
164
|
export { NewDesign16Icon } from "./components/NewDesign16Icon.js";
|
|
162
165
|
export { NewDesign20Icon } from "./components/NewDesign20Icon.js";
|
|
@@ -247,6 +250,9 @@ export { SendMessage20Icon } from "./components/SendMessage20Icon.js";
|
|
|
247
250
|
export { Settings12Icon } from "./components/Settings12Icon.js";
|
|
248
251
|
export { Settings16Icon } from "./components/Settings16Icon.js";
|
|
249
252
|
export { Settings20Icon } from "./components/Settings20Icon.js";
|
|
253
|
+
export { Smile12Icon } from "./components/Smile12Icon.js";
|
|
254
|
+
export { Smile16Icon } from "./components/Smile16Icon.js";
|
|
255
|
+
export { Smile20Icon } from "./components/Smile20Icon.js";
|
|
250
256
|
export { SocialUpRating20Icon } from "./components/SocialUpRating20Icon.js";
|
|
251
257
|
export { SortByCode12Icon } from "./components/SortByCode12Icon.js";
|
|
252
258
|
export { SortByCode16Icon } from "./components/SortByCode16Icon.js";
|