@elliemae/ds-form 1.60.0 → 2.0.0-alpha.12
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/cjs/Checkbox/DSCheckbox.js +112 -101
- package/cjs/Checkbox/defaultProps.js +3 -6
- package/cjs/Checkbox/elements/CheckMark.js +1 -2
- package/cjs/Checkbox/index.js +9 -18
- package/cjs/Checkbox/props.js +2 -3
- package/cjs/CheckboxGroup/DSCheckboxGroup.js +67 -112
- package/cjs/CheckboxGroup/defaultProps.js +2 -5
- package/cjs/CheckboxGroup/index.js +4 -59
- package/cjs/CheckboxGroup/props.js +5 -16
- package/cjs/ComboBox/DSComboBox.js +9 -79
- package/cjs/ComboBox/index.js +13 -120
- package/cjs/ComboBox/v1/DSComboBox.js +210 -504
- package/cjs/ComboBox/v1/components/AllOption.js +21 -21
- package/cjs/ComboBox/v1/components/ClearIndicator.js +32 -26
- package/cjs/ComboBox/v1/components/Control.js +23 -10
- package/cjs/ComboBox/v1/components/CustomOption.js +29 -17
- package/cjs/ComboBox/v1/components/CustomOptionMulti.js +31 -30
- package/cjs/ComboBox/v1/components/DropdownIndicator.js +41 -27
- package/cjs/ComboBox/v1/components/MenuList.js +57 -61
- package/cjs/ComboBox/v1/components/MultiSelectHeader.js +10 -11
- package/cjs/ComboBox/v1/components/MultiValueLabel.js +7 -5
- package/cjs/ComboBox/v1/components/MultiValueRemove.js +20 -6
- package/cjs/ComboBox/v1/components/SelectMenu.js +37 -24
- package/cjs/ComboBox/v1/components/SingleValueLabel.js +7 -11
- package/cjs/ComboBox/v1/components/ValueContainer.js +25 -9
- package/cjs/ComboBox/v1/components/calculateWidth.js +7 -4
- package/cjs/ComboBox/v1/components/getoptions.js +9 -12
- package/cjs/ComboBox/v1/index.js +8 -55
- package/cjs/ComboBox/v1/withSelectStringValueConverter.js +50 -71
- package/cjs/ComboBox/v2/Combobox.js +254 -377
- package/cjs/ComboBox/v2/components/AllOption.js +21 -21
- package/cjs/ComboBox/v2/components/ClearIndicator.js +52 -36
- package/cjs/ComboBox/v2/components/Content.js +24 -17
- package/cjs/ComboBox/v2/components/Control.js +23 -10
- package/cjs/ComboBox/v2/components/CustomOption.js +53 -39
- package/cjs/ComboBox/v2/components/CustomOptionMulti.js +41 -39
- package/cjs/ComboBox/v2/components/DropdownIndicator.js +55 -47
- package/cjs/ComboBox/v2/components/GroupHeading.js +28 -14
- package/cjs/ComboBox/v2/components/IndicatorSeparator.js +18 -7
- package/cjs/ComboBox/v2/components/LoadingIndicator.js +10 -11
- package/cjs/ComboBox/v2/components/MenuList.js +66 -94
- package/cjs/ComboBox/v2/components/MultiSelectHeader.js +35 -54
- package/cjs/ComboBox/v2/components/MultiValueLabel.js +7 -5
- package/cjs/ComboBox/v2/components/MultiValueRemove.js +22 -17
- package/cjs/ComboBox/v2/components/SelectMenu.js +34 -22
- package/cjs/ComboBox/v2/components/SingleValueLabel.js +7 -11
- package/cjs/ComboBox/v2/components/ValueContainer.js +37 -30
- package/cjs/ComboBox/v2/components/calculateWidth.js +7 -4
- package/cjs/ComboBox/v2/components/getoptions.js +9 -12
- package/cjs/ComboBox/v2/components/useMenuListHeight.js +25 -40
- package/cjs/ComboBox/v2/components/utils.js +1 -4
- package/cjs/ComboBox/v2/context.js +1 -2
- package/cjs/ComboBox/v2/index.js +4 -62
- package/cjs/ComboBox/v2/mockOptions.js +1 -2
- package/cjs/ComboBox/v3/ComboBox.js +17 -56
- package/cjs/ComboBox/v3/ComboBoxCTX.js +26 -20
- package/cjs/ComboBox/v3/ComboboxDataTestids.js +4 -3
- package/cjs/ComboBox/v3/config/constants.js +1 -2
- package/cjs/ComboBox/v3/config/useComboBox.js +92 -79
- package/cjs/ComboBox/v3/config/useGetPropsWithDefault.js +2 -6
- package/cjs/ComboBox/v3/index.d.js +0 -1
- package/cjs/ComboBox/v3/index.js +3 -50
- package/cjs/ComboBox/v3/parts/a11y-messages/MultiAllyMessages.js +18 -18
- package/cjs/ComboBox/v3/parts/a11y-messages/SingleAllyMessages.js +13 -12
- package/cjs/ComboBox/v3/parts/a11y-messages/index.js +4 -10
- package/cjs/ComboBox/v3/parts/a11y-messages/styled.js +1 -2
- package/cjs/ComboBox/v3/parts/container/Container.js +49 -68
- package/cjs/ComboBox/v3/parts/container/index.js +2 -42
- package/cjs/ComboBox/v3/parts/container/styled.js +3 -4
- package/cjs/ComboBox/v3/parts/controls/Controls.js +38 -50
- package/cjs/ComboBox/v3/parts/controls/index.js +2 -29
- package/cjs/ComboBox/v3/parts/controls/styled.js +39 -22
- package/cjs/ComboBox/v3/parts/controls-input/ControlsInput.js +36 -34
- package/cjs/ComboBox/v3/parts/controls-input/styled.js +6 -9
- package/cjs/ComboBox/v3/parts/controls-input/useControlsInput.js +50 -63
- package/cjs/ComboBox/v3/parts/dropdown-indicator/DropdownIndicator.js +13 -18
- package/cjs/ComboBox/v3/parts/dropdown-indicator/index.js +0 -1
- package/cjs/ComboBox/v3/parts/dropdown-indicator/styled.js +2 -3
- package/cjs/ComboBox/v3/parts/empty-state/index.js +13 -10
- package/cjs/ComboBox/v3/parts/empty-state/styled.js +2 -3
- package/cjs/ComboBox/v3/parts/header-list/HeaderList.js +80 -56
- package/cjs/ComboBox/v3/parts/header-list/index.js +2 -11
- package/cjs/ComboBox/v3/parts/header-list/styled.js +32 -14
- package/cjs/ComboBox/v3/parts/header-list/useHeaderListHandlers.js +73 -0
- package/cjs/ComboBox/v3/parts/menu-list/MenuList.js +65 -55
- package/cjs/ComboBox/v3/parts/menu-list/index.js +2 -20
- package/cjs/ComboBox/v3/parts/menu-list/styled.js +18 -7
- package/cjs/ComboBox/v3/parts/menu-list/useItemRenderer.js +105 -0
- package/cjs/ComboBox/v3/parts/menu-list/useMenuList.js +49 -85
- package/cjs/ComboBox/v3/parts/multi-selected-values-container/MultiSelectedValuesContainer.js +47 -61
- package/cjs/ComboBox/v3/parts/multi-selected-values-container/index.js +2 -15
- package/cjs/ComboBox/v3/parts/multi-selected-values-container/styled.js +3 -4
- package/cjs/ComboBox/v3/parts/multi-selected-values-container/useGroupPills.js +38 -43
- package/cjs/ComboBox/v3/parts/single-selected-value-container/SingleSelectedValueContainer.js +13 -12
- package/cjs/ComboBox/v3/parts/single-selected-value-container/index.js +2 -8
- package/cjs/ComboBox/v3/parts/single-selected-value-container/styled.js +1 -2
- package/cjs/ComboBox/v3/propTypes.js +16 -13
- package/cjs/ComboBox/v3/utils/hooks/useKeyboardNavigation.js +67 -76
- package/cjs/ComboBox/v3/utils/hooks/useOnElementResize.js +15 -30
- package/cjs/ComboBox/v3/utils/listHelper.js +17 -26
- package/cjs/ComboBoxFreeSolo/ComboBoxFreeSolo.js +55 -245
- package/cjs/ComboBoxFreeSolo/components/MultiValueLabel.js +25 -33
- package/cjs/ComboBoxFreeSolo/components/MultiValueRemove.js +25 -21
- package/cjs/ComboBoxFreeSolo/components/SingleValue.js +24 -16
- package/cjs/ComboBoxFreeSolo/components/SingleValueRemove.js +37 -31
- package/cjs/ComboBoxFreeSolo/index.js +2 -119
- package/cjs/DateInput/DSDateInput.js +60 -76
- package/cjs/DateInput/components/DateInputImpl.js +43 -64
- package/cjs/DateInput/components/DateInputs.js +189 -225
- package/cjs/DateInput/components/utils.js +99 -97
- package/cjs/DateInput/defaultProps.js +3 -6
- package/cjs/DateInput/index.js +5 -35
- package/cjs/DateInput/props.js +1 -2
- package/cjs/DateInputV2/components/DSDateInput.js +29 -54
- package/cjs/DateInputV2/components/DateInputs.js +86 -104
- package/cjs/DateInputV2/components/helpers.js +14 -22
- package/cjs/DateInputV2/components/props.js +2 -3
- package/cjs/DateInputV2/components/propsTypes.js +18 -19
- package/cjs/DateInputV2/components/styled.js +18 -17
- package/cjs/DateInputV2/components/utils.js +106 -104
- package/cjs/DateInputV2/index.js +6 -39
- package/cjs/ExpandableInput/DSExpandableInput.js +20 -53
- package/cjs/ExpandableInput/ExpandableInputImpl.js +71 -91
- package/cjs/ExpandableInput/index.js +2 -25
- package/cjs/FloatingLabelInput/DSFloatingLabelInput.js +109 -77
- package/cjs/FloatingLabelInput/FloatingLabelInputImpl.js +164 -188
- package/cjs/FloatingLabelInput/getSvgPath.js +19 -23
- package/cjs/FloatingLabelInput/index.js +2 -34
- package/cjs/FormItem/DSFormItemLayout.js +164 -174
- package/cjs/FormItem/Error/DSError.js +13 -14
- package/cjs/FormItem/Feedback.js +12 -10
- package/cjs/FormItem/Label/DSLabel.js +20 -33
- package/cjs/FormItem/Suffix/Suffix.js +5 -6
- package/cjs/FormItem/ValidationFieldWrapper.js +94 -116
- package/cjs/FormItem/defaultProps.js +14 -39
- package/cjs/FormItem/index.js +8 -51
- package/cjs/FormItem/props.js +3 -4
- package/cjs/FormItem/variants.js +1 -2
- package/cjs/Input/DSInput.js +48 -75
- package/cjs/Input/InputAddonWrapper.js +92 -116
- package/cjs/Input/InputImpl.js +298 -314
- package/cjs/Input/index.js +4 -24
- package/cjs/InputGroup/AddonWrapper.js +36 -55
- package/cjs/InputGroup/DSInputGroup.js +23 -31
- package/cjs/InputGroup/defaultProps.js +1 -2
- package/cjs/InputGroup/index.js +3 -16
- package/cjs/InputGroup/props.js +1 -2
- package/cjs/InputMask/DSInputMask.js +73 -126
- package/cjs/InputMask/DSInputMaskDeprecated.js +221 -291
- package/cjs/InputMask/InputMaskContext.js +6 -17
- package/cjs/InputMask/MaskPipes.js +4 -5
- package/cjs/InputMask/MaskTypes.js +17 -23
- package/cjs/InputMask/addons/AutoCorrectedDatePipe.js +35 -32
- package/cjs/InputMask/defaultProps.js +10 -26
- package/cjs/InputMask/index.js +8 -49
- package/cjs/InputMask/mask_types/DateInputMask.js +91 -157
- package/cjs/InputMask/mask_types/DateTimeInputMask.js +93 -163
- package/cjs/InputMask/mask_types/DictionaryInputMask.js +89 -155
- package/cjs/InputMask/mask_types/NumberInputMask.js +140 -218
- package/cjs/InputMask/mask_types/PhoneInputMask.js +93 -165
- package/cjs/InputMask/mask_types/PhoneInternationalInputMask.js +93 -165
- package/cjs/InputMask/mask_types/SsnInputMask.js +92 -159
- package/cjs/InputMask/mask_types/UsZipCodeInputMask.js +83 -141
- package/cjs/InputMask/mask_types/ZipCodeSearchInputMask.js +91 -157
- package/cjs/InputMask/mask_types/index.js +76 -121
- package/cjs/InputMask/props.js +1 -2
- package/cjs/InputMask/types/index.js +0 -1
- package/cjs/InputMask/utils/setCaretPosition.js +2 -3
- package/cjs/InputProtected/DSInputProtected.js +56 -94
- package/cjs/InputProtected/defaultProps.js +4 -7
- package/cjs/InputProtected/index.js +7 -57
- package/cjs/InputProtected/options.js +2 -3
- package/cjs/InputProtected/props.js +4 -5
- package/cjs/LargeInputText/DSLargeInputText.js +108 -96
- package/cjs/LargeInputText/defaultProps.js +8 -23
- package/cjs/LargeInputText/index.js +3 -10
- package/cjs/LargeInputText/props.js +1 -2
- package/cjs/MenuItem/components/MenuItem/index.js +28 -28
- package/cjs/MenuItem/components/MenuItem/styled.js +1 -2
- package/cjs/MenuItem/components/MultiMenuItem/MultiMenuItem.js +41 -40
- package/cjs/MenuItem/components/MultiMenuItem/styled.js +1 -2
- package/cjs/MenuItem/components/Section/index.js +21 -20
- package/cjs/MenuItem/components/Section/props.js +2 -3
- package/cjs/MenuItem/components/Section/styled.js +4 -7
- package/cjs/MenuItem/components/Separator/index.js +17 -13
- package/cjs/MenuItem/components/Separator/styled.js +4 -7
- package/cjs/MenuItem/components/SingleMenuItem/SingleMenuItem.js +39 -39
- package/cjs/MenuItem/components/SubmenuItem/index.js +70 -70
- package/cjs/MenuItem/components/SubmenuItem/styled.js +4 -8
- package/cjs/MenuItem/components/index.js +15 -41
- package/cjs/MenuItem/components/styled.js +20 -27
- package/cjs/MenuItem/index.js +15 -41
- package/cjs/MenuItem/props.js +2 -3
- package/cjs/Radio/Circle.js +11 -9
- package/cjs/Radio/DSRadio.js +99 -89
- package/cjs/Radio/index.js +3 -11
- package/cjs/RadioGroup/DSRadioGroup.js +64 -99
- package/cjs/RadioGroup/defaultProps.js +2 -5
- package/cjs/RadioGroup/index.js +2 -55
- package/cjs/RadioGroup/props.js +2 -3
- package/cjs/RequiredMark/RequiredMark.js +15 -14
- package/cjs/RequiredMark/index.js +2 -5
- package/cjs/SearchBox/DSSearchBox.js +61 -86
- package/cjs/SearchBox/NavSearchBox.js +106 -135
- package/cjs/SearchBox/SButton.js +15 -29
- package/cjs/SearchBox/SearchBoxToggle.js +41 -67
- package/cjs/SearchBox/defaultProps.js +8 -21
- package/cjs/SearchBox/index.js +8 -42
- package/cjs/SearchBox/props.js +2 -3
- package/cjs/SearchBox/styled.js +2 -25
- package/cjs/SearchBox/useSearch.js +37 -41
- package/cjs/SearchBox/withSearchable.js +117 -144
- package/cjs/TextBox/DSTextBox.js +47 -72
- package/cjs/TextBox/index.js +3 -26
- package/cjs/TimeInput/DSTimeInput.js +47 -71
- package/cjs/TimeInput/TimeInputImpl.js +36 -85
- package/cjs/TimeInput/TimeInputs.js +168 -192
- package/cjs/TimeInput/index.js +5 -34
- package/cjs/TimeInput/utils.js +149 -21
- package/cjs/Toggle/DSToggle.js +37 -41
- package/cjs/Toggle/DSToggleImpl.js +206 -235
- package/cjs/Toggle/DSToggleRender.js +84 -122
- package/cjs/Toggle/index.js +3 -23
- package/cjs/Toggle/props.js +13 -14
- package/cjs/Toggle/toggleHelper.js +33 -32
- package/cjs/index.js +110 -297
- package/esm/Checkbox/DSCheckbox.js +96 -88
- package/esm/Checkbox/defaultProps.js +3 -6
- package/esm/Checkbox/elements/CheckMark.js +1 -2
- package/esm/Checkbox/index.js +1 -13
- package/esm/Checkbox/props.js +2 -3
- package/esm/CheckboxGroup/DSCheckboxGroup.js +56 -101
- package/esm/CheckboxGroup/defaultProps.js +2 -5
- package/esm/CheckboxGroup/index.js +0 -55
- package/esm/CheckboxGroup/props.js +2 -13
- package/esm/ComboBox/DSComboBox.js +1 -72
- package/esm/ComboBox/index.js +1 -109
- package/esm/ComboBox/v1/DSComboBox.js +187 -475
- package/esm/ComboBox/v1/components/AllOption.js +18 -18
- package/esm/ComboBox/v1/components/ClearIndicator.js +31 -25
- package/esm/ComboBox/v1/components/Control.js +21 -9
- package/esm/ComboBox/v1/components/CustomOption.js +24 -13
- package/esm/ComboBox/v1/components/CustomOptionMulti.js +26 -26
- package/esm/ComboBox/v1/components/DropdownIndicator.js +37 -23
- package/esm/ComboBox/v1/components/MenuList.js +53 -57
- package/esm/ComboBox/v1/components/MultiSelectHeader.js +9 -10
- package/esm/ComboBox/v1/components/MultiValueLabel.js +6 -4
- package/esm/ComboBox/v1/components/MultiValueRemove.js +19 -5
- package/esm/ComboBox/v1/components/SelectMenu.js +35 -23
- package/esm/ComboBox/v1/components/SingleValueLabel.js +6 -9
- package/esm/ComboBox/v1/components/ValueContainer.js +21 -6
- package/esm/ComboBox/v1/components/calculateWidth.js +7 -4
- package/esm/ComboBox/v1/components/getoptions.js +9 -8
- package/esm/ComboBox/v1/index.js +1 -49
- package/esm/ComboBox/v1/withSelectStringValueConverter.js +50 -64
- package/esm/ComboBox/v2/Combobox.js +236 -356
- package/esm/ComboBox/v2/components/AllOption.js +18 -18
- package/esm/ComboBox/v2/components/ClearIndicator.js +50 -34
- package/esm/ComboBox/v2/components/Content.js +22 -15
- package/esm/ComboBox/v2/components/Control.js +21 -9
- package/esm/ComboBox/v2/components/CustomOption.js +49 -36
- package/esm/ComboBox/v2/components/CustomOptionMulti.js +35 -34
- package/esm/ComboBox/v2/components/DropdownIndicator.js +53 -44
- package/esm/ComboBox/v2/components/GroupHeading.js +25 -12
- package/esm/ComboBox/v2/components/IndicatorSeparator.js +16 -5
- package/esm/ComboBox/v2/components/LoadingIndicator.js +9 -10
- package/esm/ComboBox/v2/components/MenuList.js +60 -86
- package/esm/ComboBox/v2/components/MultiSelectHeader.js +34 -52
- package/esm/ComboBox/v2/components/MultiValueLabel.js +6 -4
- package/esm/ComboBox/v2/components/MultiValueRemove.js +19 -12
- package/esm/ComboBox/v2/components/SelectMenu.js +31 -19
- package/esm/ComboBox/v2/components/SingleValueLabel.js +6 -9
- package/esm/ComboBox/v2/components/ValueContainer.js +35 -27
- package/esm/ComboBox/v2/components/calculateWidth.js +7 -4
- package/esm/ComboBox/v2/components/getoptions.js +9 -8
- package/esm/ComboBox/v2/components/useMenuListHeight.js +25 -40
- package/esm/ComboBox/v2/components/utils.js +1 -4
- package/esm/ComboBox/v2/context.js +1 -2
- package/esm/ComboBox/v2/index.js +0 -58
- package/esm/ComboBox/v2/mockOptions.js +1 -2
- package/esm/ComboBox/v3/ComboBox.js +11 -50
- package/esm/ComboBox/v3/ComboBoxCTX.js +20 -14
- package/esm/ComboBox/v3/ComboboxDataTestids.js +4 -3
- package/esm/ComboBox/v3/config/constants.js +1 -2
- package/esm/ComboBox/v3/config/useComboBox.js +86 -73
- package/esm/ComboBox/v3/config/useGetPropsWithDefault.js +1 -5
- package/esm/ComboBox/v3/index.d.js +0 -1
- package/esm/ComboBox/v3/index.js +0 -47
- package/esm/ComboBox/v3/parts/a11y-messages/MultiAllyMessages.js +15 -15
- package/esm/ComboBox/v3/parts/a11y-messages/SingleAllyMessages.js +11 -10
- package/esm/ComboBox/v3/parts/a11y-messages/index.js +0 -6
- package/esm/ComboBox/v3/parts/a11y-messages/styled.js +1 -2
- package/esm/ComboBox/v3/parts/container/Container.js +45 -64
- package/esm/ComboBox/v3/parts/container/index.js +0 -40
- package/esm/ComboBox/v3/parts/container/styled.js +3 -4
- package/esm/ComboBox/v3/parts/controls/Controls.js +31 -43
- package/esm/ComboBox/v3/parts/controls/index.js +0 -27
- package/esm/ComboBox/v3/parts/controls/styled.js +39 -23
- package/esm/ComboBox/v3/parts/controls-input/ControlsInput.js +30 -28
- package/esm/ComboBox/v3/parts/controls-input/styled.js +6 -9
- package/esm/ComboBox/v3/parts/controls-input/useControlsInput.js +49 -58
- package/esm/ComboBox/v3/parts/dropdown-indicator/DropdownIndicator.js +9 -14
- package/esm/ComboBox/v3/parts/dropdown-indicator/index.js +0 -1
- package/esm/ComboBox/v3/parts/dropdown-indicator/styled.js +2 -3
- package/esm/ComboBox/v3/parts/empty-state/index.js +11 -8
- package/esm/ComboBox/v3/parts/empty-state/styled.js +2 -3
- package/esm/ComboBox/v3/parts/header-list/HeaderList.js +75 -51
- package/esm/ComboBox/v3/parts/header-list/index.js +0 -9
- package/esm/ComboBox/v3/parts/header-list/styled.js +29 -14
- package/esm/ComboBox/v3/parts/header-list/useHeaderListHandlers.js +69 -0
- package/esm/ComboBox/v3/parts/menu-list/MenuList.js +59 -49
- package/esm/ComboBox/v3/parts/menu-list/index.js +0 -18
- package/esm/ComboBox/v3/parts/menu-list/styled.js +18 -8
- package/esm/ComboBox/v3/parts/menu-list/useItemRenderer.js +97 -0
- package/esm/ComboBox/v3/parts/menu-list/useMenuList.js +48 -79
- package/esm/ComboBox/v3/parts/multi-selected-values-container/MultiSelectedValuesContainer.js +41 -55
- package/esm/ComboBox/v3/parts/multi-selected-values-container/index.js +0 -13
- package/esm/ComboBox/v3/parts/multi-selected-values-container/styled.js +3 -4
- package/esm/ComboBox/v3/parts/multi-selected-values-container/useGroupPills.js +36 -36
- package/esm/ComboBox/v3/parts/single-selected-value-container/SingleSelectedValueContainer.js +11 -10
- package/esm/ComboBox/v3/parts/single-selected-value-container/index.js +0 -6
- package/esm/ComboBox/v3/parts/single-selected-value-container/styled.js +1 -2
- package/esm/ComboBox/v3/propTypes.js +16 -13
- package/esm/ComboBox/v3/utils/hooks/useKeyboardNavigation.js +64 -73
- package/esm/ComboBox/v3/utils/hooks/useOnElementResize.js +15 -26
- package/esm/ComboBox/v3/utils/listHelper.js +17 -26
- package/esm/ComboBoxFreeSolo/ComboBoxFreeSolo.js +46 -235
- package/esm/ComboBoxFreeSolo/components/MultiValueLabel.js +23 -31
- package/esm/ComboBoxFreeSolo/components/MultiValueRemove.js +22 -18
- package/esm/ComboBoxFreeSolo/components/SingleValue.js +20 -13
- package/esm/ComboBoxFreeSolo/components/SingleValueRemove.js +35 -28
- package/esm/ComboBoxFreeSolo/index.js +0 -117
- package/esm/DateInput/DSDateInput.js +50 -65
- package/esm/DateInput/components/DateInputImpl.js +41 -60
- package/esm/DateInput/components/DateInputs.js +169 -203
- package/esm/DateInput/components/utils.js +99 -96
- package/esm/DateInput/defaultProps.js +3 -6
- package/esm/DateInput/index.js +0 -30
- package/esm/DateInput/props.js +1 -2
- package/esm/DateInputV2/components/DSDateInput.js +23 -48
- package/esm/DateInputV2/components/DateInputs.js +76 -94
- package/esm/DateInputV2/components/helpers.js +11 -19
- package/esm/DateInputV2/components/props.js +2 -3
- package/esm/DateInputV2/components/propsTypes.js +1 -2
- package/esm/DateInputV2/components/styled.js +18 -17
- package/esm/DateInputV2/components/utils.js +106 -103
- package/esm/DateInputV2/index.js +0 -33
- package/esm/ExpandableInput/DSExpandableInput.js +18 -51
- package/esm/ExpandableInput/ExpandableInputImpl.js +66 -82
- package/esm/ExpandableInput/index.js +0 -23
- package/esm/FloatingLabelInput/DSFloatingLabelInput.js +105 -73
- package/esm/FloatingLabelInput/FloatingLabelInputImpl.js +160 -179
- package/esm/FloatingLabelInput/getSvgPath.js +19 -23
- package/esm/FloatingLabelInput/index.js +0 -32
- package/esm/FormItem/DSFormItemLayout.js +150 -159
- package/esm/FormItem/Error/DSError.js +11 -12
- package/esm/FormItem/Feedback.js +11 -9
- package/esm/FormItem/Label/DSLabel.js +18 -30
- package/esm/FormItem/Suffix/Suffix.js +4 -5
- package/esm/FormItem/ValidationFieldWrapper.js +93 -110
- package/esm/FormItem/defaultProps.js +6 -31
- package/esm/FormItem/index.js +0 -43
- package/esm/FormItem/props.js +1 -2
- package/esm/FormItem/variants.js +1 -2
- package/esm/Input/DSInput.js +42 -68
- package/esm/Input/InputAddonWrapper.js +91 -107
- package/esm/Input/InputImpl.js +259 -268
- package/esm/Input/index.js +0 -20
- package/esm/InputGroup/AddonWrapper.js +37 -51
- package/esm/InputGroup/DSInputGroup.js +18 -22
- package/esm/InputGroup/defaultProps.js +1 -2
- package/esm/InputGroup/index.js +0 -13
- package/esm/InputGroup/props.js +1 -2
- package/esm/InputMask/DSInputMask.js +57 -106
- package/esm/InputMask/DSInputMaskDeprecated.js +219 -281
- package/esm/InputMask/InputMaskContext.js +6 -17
- package/esm/InputMask/MaskPipes.js +2 -3
- package/esm/InputMask/MaskTypes.js +16 -22
- package/esm/InputMask/addons/AutoCorrectedDatePipe.js +35 -32
- package/esm/InputMask/defaultProps.js +8 -24
- package/esm/InputMask/index.js +0 -41
- package/esm/InputMask/mask_types/DateInputMask.js +88 -152
- package/esm/InputMask/mask_types/DateTimeInputMask.js +90 -158
- package/esm/InputMask/mask_types/DictionaryInputMask.js +84 -148
- package/esm/InputMask/mask_types/NumberInputMask.js +136 -212
- package/esm/InputMask/mask_types/PhoneInputMask.js +90 -159
- package/esm/InputMask/mask_types/PhoneInternationalInputMask.js +90 -159
- package/esm/InputMask/mask_types/SsnInputMask.js +89 -153
- package/esm/InputMask/mask_types/UsZipCodeInputMask.js +79 -135
- package/esm/InputMask/mask_types/ZipCodeSearchInputMask.js +88 -152
- package/esm/InputMask/mask_types/index.js +63 -107
- package/esm/InputMask/props.js +1 -2
- package/esm/InputMask/types/index.js +0 -1
- package/esm/InputMask/utils/setCaretPosition.js +2 -3
- package/esm/InputProtected/DSInputProtected.js +43 -80
- package/esm/InputProtected/defaultProps.js +2 -5
- package/esm/InputProtected/index.js +0 -50
- package/esm/InputProtected/options.js +2 -3
- package/esm/InputProtected/props.js +1 -2
- package/esm/LargeInputText/DSLargeInputText.js +102 -90
- package/esm/LargeInputText/defaultProps.js +8 -23
- package/esm/LargeInputText/index.js +0 -7
- package/esm/LargeInputText/props.js +1 -2
- package/esm/MenuItem/components/MenuItem/index.js +23 -23
- package/esm/MenuItem/components/MenuItem/styled.js +1 -2
- package/esm/MenuItem/components/MultiMenuItem/MultiMenuItem.js +35 -34
- package/esm/MenuItem/components/MultiMenuItem/styled.js +1 -2
- package/esm/MenuItem/components/Section/index.js +17 -16
- package/esm/MenuItem/components/Section/props.js +2 -3
- package/esm/MenuItem/components/Section/styled.js +4 -7
- package/esm/MenuItem/components/Separator/index.js +15 -11
- package/esm/MenuItem/components/Separator/styled.js +4 -7
- package/esm/MenuItem/components/SingleMenuItem/SingleMenuItem.js +34 -34
- package/esm/MenuItem/components/SubmenuItem/index.js +65 -64
- package/esm/MenuItem/components/SubmenuItem/styled.js +3 -7
- package/esm/MenuItem/components/index.js +0 -26
- package/esm/MenuItem/components/styled.js +21 -29
- package/esm/MenuItem/index.js +0 -26
- package/esm/MenuItem/props.js +2 -3
- package/esm/Radio/Circle.js +10 -8
- package/esm/Radio/DSRadio.js +94 -84
- package/esm/Radio/index.js +0 -8
- package/esm/RadioGroup/DSRadioGroup.js +55 -91
- package/esm/RadioGroup/defaultProps.js +2 -5
- package/esm/RadioGroup/index.js +0 -53
- package/esm/RadioGroup/props.js +2 -3
- package/esm/RequiredMark/RequiredMark.js +14 -13
- package/esm/RequiredMark/index.js +0 -3
- package/esm/SearchBox/DSSearchBox.js +52 -78
- package/esm/SearchBox/NavSearchBox.js +98 -126
- package/esm/SearchBox/SButton.js +13 -27
- package/esm/SearchBox/SearchBoxToggle.js +38 -63
- package/esm/SearchBox/defaultProps.js +8 -21
- package/esm/SearchBox/index.js +0 -34
- package/esm/SearchBox/props.js +2 -3
- package/esm/SearchBox/styled.js +1 -24
- package/esm/SearchBox/useSearch.js +37 -36
- package/esm/SearchBox/withSearchable.js +116 -135
- package/esm/TextBox/DSTextBox.js +42 -66
- package/esm/TextBox/index.js +0 -23
- package/esm/TimeInput/DSTimeInput.js +40 -64
- package/esm/TimeInput/TimeInputImpl.js +35 -83
- package/esm/TimeInput/TimeInputs.js +133 -156
- package/esm/TimeInput/index.js +0 -29
- package/esm/TimeInput/utils.js +135 -3
- package/esm/Toggle/DSToggle.js +32 -35
- package/esm/Toggle/DSToggleImpl.js +202 -225
- package/esm/Toggle/DSToggleRender.js +82 -119
- package/esm/Toggle/index.js +0 -20
- package/esm/Toggle/props.js +2 -3
- package/esm/Toggle/toggleHelper.js +33 -32
- package/esm/index.js +3 -194
- package/package.json +961 -31
- package/types/Checkbox/DSCheckbox.d.ts +113 -0
- package/types/Checkbox/defaultProps.d.ts +11 -0
- package/types/Checkbox/elements/CheckMark.d.ts +2 -0
- package/types/Checkbox/index.d.ts +2 -0
- package/types/Checkbox/props.d.ts +60 -0
- package/types/Checkbox/tests/DSCheckbox.events.test.d.ts +1 -0
- package/types/CheckboxGroup/DSCheckboxGroup.d.ts +82 -0
- package/types/CheckboxGroup/defaultProps.d.ts +14 -0
- package/types/CheckboxGroup/index.d.ts +2 -0
- package/types/CheckboxGroup/props.d.ts +57 -0
- package/types/CheckboxGroup/tests/DSCheckboxGroup.events.test.d.ts +1 -0
- package/types/ComboBox/DSComboBox.d.ts +3 -0
- package/types/ComboBox/index.d.ts +4 -0
- package/types/ComboBox/v1/DSComboBox.d.ts +66 -0
- package/types/ComboBox/v1/components/AllOption.d.ts +6 -0
- package/types/ComboBox/v1/components/ClearIndicator.d.ts +3 -0
- package/types/ComboBox/v1/components/Control.d.ts +3 -0
- package/types/ComboBox/v1/components/CustomOption.d.ts +8 -0
- package/types/ComboBox/v1/components/CustomOptionMulti.d.ts +8 -0
- package/types/ComboBox/v1/components/DropdownIndicator.d.ts +20 -0
- package/types/ComboBox/v1/components/MenuList.d.ts +3 -0
- package/types/ComboBox/v1/components/MultiSelectHeader.d.ts +3 -0
- package/types/ComboBox/v1/components/MultiValueLabel.d.ts +5 -0
- package/types/ComboBox/v1/components/MultiValueRemove.d.ts +3 -0
- package/types/ComboBox/v1/components/SelectMenu.d.ts +3 -0
- package/types/ComboBox/v1/components/SingleValueLabel.d.ts +11 -0
- package/types/ComboBox/v1/components/ValueContainer.d.ts +6 -0
- package/types/ComboBox/v1/components/calculateWidth.d.ts +1 -0
- package/types/ComboBox/v1/components/getoptions.d.ts +6 -0
- package/types/ComboBox/v1/index.d.ts +2 -0
- package/types/ComboBox/v1/withSelectStringValueConverter.d.ts +63 -0
- package/types/ComboBox/v2/Combobox.d.ts +120 -0
- package/types/ComboBox/v2/components/AllOption.d.ts +6 -0
- package/types/ComboBox/v2/components/ClearIndicator.d.ts +3 -0
- package/types/ComboBox/v2/components/Content.d.ts +14 -0
- package/types/ComboBox/v2/components/Control.d.ts +3 -0
- package/types/ComboBox/v2/components/CustomOption.d.ts +8 -0
- package/types/ComboBox/v2/components/CustomOptionMulti.d.ts +8 -0
- package/types/ComboBox/v2/components/DropdownIndicator.d.ts +23 -0
- package/types/ComboBox/v2/components/GroupHeading.d.ts +3 -0
- package/types/ComboBox/v2/components/IndicatorSeparator.d.ts +5 -0
- package/types/ComboBox/v2/components/LoadingIndicator.d.ts +3 -0
- package/types/ComboBox/v2/components/MenuList.d.ts +3 -0
- package/types/ComboBox/v2/components/MultiSelectHeader.d.ts +9 -0
- package/types/ComboBox/v2/components/MultiValueLabel.d.ts +5 -0
- package/types/ComboBox/v2/components/MultiValueRemove.d.ts +6 -0
- package/types/ComboBox/v2/components/SelectMenu.d.ts +3 -0
- package/types/ComboBox/v2/components/SingleValueLabel.d.ts +11 -0
- package/types/ComboBox/v2/components/ValueContainer.d.ts +6 -0
- package/types/ComboBox/v2/components/calculateWidth.d.ts +1 -0
- package/types/ComboBox/v2/components/getoptions.d.ts +6 -0
- package/types/ComboBox/v2/components/tests/ClearIndicator.test.d.ts +1 -0
- package/types/ComboBox/v2/components/useMenuListHeight.d.ts +1 -0
- package/types/ComboBox/v2/components/utils.d.ts +1 -0
- package/types/ComboBox/v2/context.d.ts +2 -0
- package/types/ComboBox/v2/index.d.ts +2 -0
- package/types/ComboBox/v2/mockOptions.d.ts +5 -0
- package/types/ComboBox/v2/tests/Combobox.test.d.ts +1 -0
- package/types/ComboBox/v3/ComboBox.d.ts +62 -0
- package/types/ComboBox/v3/ComboBoxCTX.d.ts +6 -0
- package/types/ComboBox/v3/ComboboxDataTestids.d.ts +11 -0
- package/types/ComboBox/v3/config/constants.d.ts +8 -0
- package/types/ComboBox/v3/config/useComboBox.d.ts +2 -0
- package/types/ComboBox/v3/config/useGetPropsWithDefault.d.ts +2 -0
- package/types/ComboBox/v3/index.d.ts +1 -0
- package/types/ComboBox/v3/parts/a11y-messages/MultiAllyMessages.d.ts +3 -0
- package/types/ComboBox/v3/parts/a11y-messages/SingleAllyMessages.d.ts +3 -0
- package/types/ComboBox/v3/parts/a11y-messages/index.d.ts +2 -0
- package/types/ComboBox/v3/parts/a11y-messages/styled.d.ts +1 -0
- package/types/ComboBox/v3/parts/container/Container.d.ts +3 -0
- package/types/ComboBox/v3/parts/container/index.d.ts +1 -0
- package/types/ComboBox/v3/parts/container/styled.d.ts +3 -0
- package/types/ComboBox/v3/parts/controls/Controls.d.ts +3 -0
- package/types/ComboBox/v3/parts/controls/index.d.ts +1 -0
- package/types/ComboBox/v3/parts/controls/styled.d.ts +7 -0
- package/types/ComboBox/v3/parts/controls-input/ControlsInput.d.ts +3 -0
- package/types/ComboBox/v3/parts/controls-input/styled.d.ts +4 -0
- package/types/ComboBox/v3/parts/controls-input/useControlsInput.d.ts +12 -0
- package/types/ComboBox/v3/parts/dropdown-indicator/DropdownIndicator.d.ts +3 -0
- package/types/ComboBox/v3/parts/dropdown-indicator/index.d.ts +0 -0
- package/types/ComboBox/v3/parts/dropdown-indicator/styled.d.ts +1 -0
- package/types/ComboBox/v3/parts/empty-state/index.d.ts +3 -0
- package/types/ComboBox/v3/parts/empty-state/styled.d.ts +2 -0
- package/types/ComboBox/v3/parts/header-list/HeaderList.d.ts +3 -0
- package/types/ComboBox/v3/parts/header-list/index.d.ts +1 -0
- package/types/ComboBox/v3/parts/header-list/styled.d.ts +7 -0
- package/types/ComboBox/v3/parts/header-list/useHeaderListHandlers.d.ts +12 -0
- package/types/ComboBox/v3/parts/menu-list/MenuList.d.ts +3 -0
- package/types/ComboBox/v3/parts/menu-list/index.d.ts +1 -0
- package/types/ComboBox/v3/parts/menu-list/styled.d.ts +10 -0
- package/types/ComboBox/v3/parts/menu-list/useItemRenderer.d.ts +2 -0
- package/types/ComboBox/v3/parts/menu-list/useMenuList.d.ts +2 -0
- package/types/ComboBox/v3/parts/multi-selected-values-container/MultiSelectedValuesContainer.d.ts +3 -0
- package/types/ComboBox/v3/parts/multi-selected-values-container/index.d.ts +1 -0
- package/types/ComboBox/v3/parts/multi-selected-values-container/styled.d.ts +3 -0
- package/types/ComboBox/v3/parts/multi-selected-values-container/useGroupPills.d.ts +2 -0
- package/types/ComboBox/v3/parts/single-selected-value-container/SingleSelectedValueContainer.d.ts +3 -0
- package/types/ComboBox/v3/parts/single-selected-value-container/index.d.ts +1 -0
- package/types/ComboBox/v3/parts/single-selected-value-container/styled.d.ts +1 -0
- package/types/ComboBox/v3/propTypes.d.ts +51 -0
- package/types/ComboBox/v3/tests/combobox-general.test.d.ts +1 -0
- package/types/ComboBox/v3/tests/combobox-multi-select.test.d.ts +1 -0
- package/types/ComboBox/v3/tests/combobox-single-select.test.d.ts +1 -0
- package/types/ComboBox/v3/tests/combobox-special-keys.test.d.ts +1 -0
- package/types/ComboBox/v3/tests/utils.d.ts +22 -0
- package/types/ComboBox/v3/utils/hooks/useKeyboardNavigation.d.ts +4 -0
- package/types/ComboBox/v3/utils/hooks/useOnElementResize.d.ts +3 -0
- package/types/ComboBox/v3/utils/listHelper.d.ts +7 -0
- package/types/ComboBoxFreeSolo/ComboBoxFreeSolo.d.ts +77 -0
- package/types/ComboBoxFreeSolo/components/MultiValueLabel.d.ts +6 -0
- package/types/ComboBoxFreeSolo/components/MultiValueRemove.d.ts +6 -0
- package/types/ComboBoxFreeSolo/components/SingleValue.d.ts +3 -0
- package/types/ComboBoxFreeSolo/components/SingleValueRemove.d.ts +6 -0
- package/types/ComboBoxFreeSolo/index.d.ts +1 -0
- package/types/DateInput/DSDateInput.d.ts +143 -0
- package/types/DateInput/components/DateInputImpl.d.ts +40 -0
- package/types/DateInput/components/DateInputs.d.ts +40 -0
- package/types/DateInput/components/utils.d.ts +40 -0
- package/types/DateInput/defaultProps.d.ts +18 -0
- package/types/DateInput/index.d.ts +2 -0
- package/types/DateInput/props.d.ts +141 -0
- package/types/DateInput/tests/DSDateInput.events.test.d.ts +1 -0
- package/types/DateInputV2/components/DSDateInput.d.ts +108 -0
- package/types/DateInputV2/components/DateInputs.d.ts +33 -0
- package/types/DateInputV2/components/helpers.d.ts +1 -0
- package/types/DateInputV2/components/props.d.ts +104 -0
- package/types/DateInputV2/components/propsTypes.d.ts +21 -0
- package/types/DateInputV2/components/styled.d.ts +5 -0
- package/types/DateInputV2/components/utils.d.ts +42 -0
- package/types/DateInputV2/index.d.ts +3 -0
- package/types/DateInputV2/tests/DateInput.test.d.ts +1 -0
- package/types/ExpandableInput/DSExpandableInput.d.ts +15 -0
- package/types/ExpandableInput/ExpandableInputImpl.d.ts +5 -0
- package/types/ExpandableInput/index.d.ts +1 -0
- package/types/FloatingLabelInput/DSFloatingLabelInput.d.ts +188 -0
- package/types/FloatingLabelInput/FloatingLabelInputImpl.d.ts +26 -0
- package/types/FloatingLabelInput/getSvgPath.d.ts +9 -0
- package/types/FloatingLabelInput/index.d.ts +1 -0
- package/types/FormItem/DSFormItemLayout.d.ts +518 -0
- package/types/FormItem/Error/DSError.d.ts +34 -0
- package/types/FormItem/Feedback.d.ts +6 -0
- package/types/FormItem/Label/DSLabel.d.ts +23 -0
- package/types/FormItem/Suffix/Suffix.d.ts +4 -0
- package/types/FormItem/ValidationFieldWrapper.d.ts +19 -0
- package/types/FormItem/defaultProps.d.ts +197 -0
- package/types/FormItem/index.d.ts +2 -0
- package/types/FormItem/props.d.ts +270 -0
- package/types/FormItem/tests/DSFormItem.events.test.d.ts +1 -0
- package/types/FormItem/variants.d.ts +8 -0
- package/types/Input/DSInput.d.ts +32 -0
- package/types/Input/InputAddonWrapper.d.ts +13 -0
- package/types/Input/InputImpl.d.ts +73 -0
- package/types/Input/index.d.ts +2 -0
- package/types/Input/tests/Input.test.d.ts +1 -0
- package/types/InputGroup/AddonWrapper.d.ts +6 -0
- package/types/InputGroup/DSInputGroup.d.ts +80 -0
- package/types/InputGroup/defaultProps.d.ts +8 -0
- package/types/InputGroup/index.d.ts +2 -0
- package/types/InputGroup/props.d.ts +60 -0
- package/types/InputGroup/tests/DSInputGroup.events.test.d.ts +1 -0
- package/types/InputMask/DSInputMask.d.ts +218 -0
- package/types/InputMask/DSInputMaskDeprecated.d.ts +17 -0
- package/types/InputMask/InputMaskContext.d.ts +18 -0
- package/types/InputMask/MaskPipes.d.ts +18 -0
- package/types/InputMask/MaskTypes.d.ts +15 -0
- package/types/InputMask/addons/AutoCorrectedDatePipe.d.ts +8 -0
- package/types/InputMask/defaultProps.d.ts +28 -0
- package/types/InputMask/index.d.ts +2 -0
- package/types/InputMask/mask_types/DateInputMask.d.ts +74 -0
- package/types/InputMask/mask_types/DateTimeInputMask.d.ts +74 -0
- package/types/InputMask/mask_types/DictionaryInputMask.d.ts +80 -0
- package/types/InputMask/mask_types/NumberInputMask.d.ts +98 -0
- package/types/InputMask/mask_types/PhoneInputMask.d.ts +74 -0
- package/types/InputMask/mask_types/PhoneInternationalInputMask.d.ts +74 -0
- package/types/InputMask/mask_types/SsnInputMask.d.ts +74 -0
- package/types/InputMask/mask_types/UsZipCodeInputMask.d.ts +74 -0
- package/types/InputMask/mask_types/ZipCodeSearchInputMask.d.ts +74 -0
- package/types/InputMask/mask_types/index.d.ts +42 -0
- package/types/InputMask/props.d.ts +254 -0
- package/types/InputMask/tests/DSInputMask.test.d.ts +1 -0
- package/types/InputMask/tests/NumberInputMask.test.d.ts +1 -0
- package/types/InputMask/tests/events/DateInputMask.events.test.d.ts +1 -0
- package/types/InputMask/tests/events/DateTimeInputMask.events.test.d.ts +1 -0
- package/types/InputMask/tests/events/NumberInputMask.events.test.d.ts +1 -0
- package/types/InputMask/tests/events/PercentInputMask.events.test.d.ts +1 -0
- package/types/InputMask/tests/events/PhoneInputMask.events.test.d.ts +1 -0
- package/types/InputMask/tests/events/PhoneInternationalInputMask.events.test.d.ts +1 -0
- package/types/InputMask/tests/events/SsnInputMask.events.test.d.ts +1 -0
- package/types/InputMask/tests/events/UsZipCodeInputMask.events.test.d.ts +1 -0
- package/types/InputMask/tests/events/ZipCodeSearchInputMask.events.test.d.ts +1 -0
- package/types/InputMask/types/index.d.ts +5 -0
- package/types/InputMask/utils/setCaretPosition.d.ts +2 -0
- package/types/InputProtected/DSInputProtected.d.ts +80 -0
- package/types/InputProtected/defaultProps.d.ts +4 -0
- package/types/InputProtected/index.d.ts +3 -0
- package/types/InputProtected/options.d.ts +8 -0
- package/types/InputProtected/props.d.ts +49 -0
- package/types/InputProtected/tests/DSInputProtected.events.test.d.ts +1 -0
- package/types/InputProtected/tests/DSInputProtected.test.d.ts +1 -0
- package/types/LargeInputText/DSLargeInputText.d.ts +233 -0
- package/types/LargeInputText/defaultProps.d.ts +31 -0
- package/types/LargeInputText/index.d.ts +2 -0
- package/types/LargeInputText/props.d.ts +231 -0
- package/types/LargeInputText/tests/DSLargeInputText.events.test.d.ts +1 -0
- package/types/LargeInputText/tests/DSLargeInputText.test.d.ts +1 -0
- package/types/MenuItem/components/MenuItem/index.d.ts +20 -0
- package/types/MenuItem/components/MenuItem/styled.d.ts +1 -0
- package/types/MenuItem/components/MultiMenuItem/MultiMenuItem.d.ts +21 -0
- package/types/MenuItem/components/MultiMenuItem/styled.d.ts +1 -0
- package/types/MenuItem/components/Section/index.d.ts +12 -0
- package/types/MenuItem/components/Section/props.d.ts +14 -0
- package/types/MenuItem/components/Section/styled.d.ts +2 -0
- package/types/MenuItem/components/Separator/index.d.ts +8 -0
- package/types/MenuItem/components/Separator/styled.d.ts +2 -0
- package/types/MenuItem/components/SingleMenuItem/SingleMenuItem.d.ts +16 -0
- package/types/MenuItem/components/SubmenuItem/index.d.ts +20 -0
- package/types/MenuItem/components/SubmenuItem/styled.d.ts +2 -0
- package/types/MenuItem/components/index.d.ts +6 -0
- package/types/MenuItem/components/styled.d.ts +3 -0
- package/types/MenuItem/index.d.ts +1 -0
- package/types/MenuItem/props.d.ts +37 -0
- package/types/Radio/Circle.d.ts +7 -0
- package/types/Radio/DSRadio.d.ts +147 -0
- package/types/Radio/index.d.ts +2 -0
- package/types/RadioGroup/DSRadioGroup.d.ts +81 -0
- package/types/RadioGroup/defaultProps.d.ts +12 -0
- package/types/RadioGroup/index.d.ts +1 -0
- package/types/RadioGroup/props.d.ts +56 -0
- package/types/RadioGroup/tests/DSRadioGroup.events.test.d.ts +1 -0
- package/types/RequiredMark/RequiredMark.d.ts +6 -0
- package/types/RequiredMark/index.d.ts +1 -0
- package/types/SearchBox/DSSearchBox.d.ts +196 -0
- package/types/SearchBox/NavSearchBox.d.ts +36 -0
- package/types/SearchBox/SButton.d.ts +30 -0
- package/types/SearchBox/SearchBoxToggle.d.ts +13 -0
- package/types/SearchBox/defaultProps.d.ts +26 -0
- package/types/SearchBox/index.d.ts +3 -0
- package/types/SearchBox/props.d.ts +173 -0
- package/types/SearchBox/styled.d.ts +1 -0
- package/types/SearchBox/tests/DSNavSearchBox.events.test.d.ts +1 -0
- package/types/SearchBox/tests/DSSearchBox.events.test.d.ts +1 -0
- package/types/SearchBox/tests/DSSearchBox.test.d.ts +1 -0
- package/types/SearchBox/useSearch.d.ts +9 -0
- package/types/TextBox/DSTextBox.d.ts +230 -0
- package/types/TextBox/index.d.ts +2 -0
- package/types/TextBox/tests/DSTextBox.test.d.ts +1 -0
- package/types/TimeInput/DSTimeInput.d.ts +131 -0
- package/types/TimeInput/TimeInputImpl.d.ts +55 -0
- package/types/TimeInput/TimeInputs.d.ts +17 -0
- package/types/TimeInput/index.d.ts +2 -0
- package/types/TimeInput/utils.d.ts +39 -0
- package/types/Toggle/DSToggle.d.ts +146 -0
- package/types/Toggle/DSToggleImpl.d.ts +56 -0
- package/types/Toggle/DSToggleRender.d.ts +32 -0
- package/types/Toggle/index.d.ts +2 -0
- package/types/Toggle/props.d.ts +47 -0
- package/types/Toggle/toggleHelper.d.ts +24 -0
- package/types/index.d.ts +43 -0
- package/Checkbox/DSCheckbox/package.json +0 -10
- package/Checkbox/defaultProps/package.json +0 -10
- package/Checkbox/elements/CheckMark/package.json +0 -10
- package/Checkbox/package.json +0 -10
- package/Checkbox/props/package.json +0 -10
- package/CheckboxGroup/DSCheckboxGroup/package.json +0 -10
- package/CheckboxGroup/defaultProps/package.json +0 -10
- package/CheckboxGroup/package.json +0 -10
- package/CheckboxGroup/props/package.json +0 -10
- package/ComboBox/DSComboBox/package.json +0 -10
- package/ComboBox/package.json +0 -10
- package/ComboBox/v1/DSComboBox/package.json +0 -10
- package/ComboBox/v1/components/AllOption/package.json +0 -10
- package/ComboBox/v1/components/ClearIndicator/package.json +0 -10
- package/ComboBox/v1/components/Control/package.json +0 -10
- package/ComboBox/v1/components/CustomOption/package.json +0 -10
- package/ComboBox/v1/components/CustomOptionMulti/package.json +0 -10
- package/ComboBox/v1/components/DropdownIndicator/package.json +0 -10
- package/ComboBox/v1/components/MenuList/package.json +0 -10
- package/ComboBox/v1/components/MultiSelectHeader/package.json +0 -10
- package/ComboBox/v1/components/MultiValueLabel/package.json +0 -10
- package/ComboBox/v1/components/MultiValueRemove/package.json +0 -10
- package/ComboBox/v1/components/SelectMenu/package.json +0 -10
- package/ComboBox/v1/components/SingleValueLabel/package.json +0 -10
- package/ComboBox/v1/components/ValueContainer/package.json +0 -10
- package/ComboBox/v1/components/calculateWidth/package.json +0 -10
- package/ComboBox/v1/components/getoptions/package.json +0 -10
- package/ComboBox/v1/package.json +0 -10
- package/ComboBox/v1/withSelectStringValueConverter/package.json +0 -10
- package/ComboBox/v2/Combobox/package.json +0 -10
- package/ComboBox/v2/components/AllOption/package.json +0 -10
- package/ComboBox/v2/components/ClearIndicator/package.json +0 -10
- package/ComboBox/v2/components/Content/package.json +0 -10
- package/ComboBox/v2/components/Control/package.json +0 -10
- package/ComboBox/v2/components/CustomOption/package.json +0 -10
- package/ComboBox/v2/components/CustomOptionMulti/package.json +0 -10
- package/ComboBox/v2/components/DropdownIndicator/package.json +0 -10
- package/ComboBox/v2/components/GroupHeading/package.json +0 -10
- package/ComboBox/v2/components/IndicatorSeparator/package.json +0 -10
- package/ComboBox/v2/components/LoadingIndicator/package.json +0 -10
- package/ComboBox/v2/components/MenuList/package.json +0 -10
- package/ComboBox/v2/components/MultiSelectHeader/package.json +0 -10
- package/ComboBox/v2/components/MultiValueLabel/package.json +0 -10
- package/ComboBox/v2/components/MultiValueRemove/package.json +0 -10
- package/ComboBox/v2/components/SelectMenu/package.json +0 -10
- package/ComboBox/v2/components/SingleValueLabel/package.json +0 -10
- package/ComboBox/v2/components/ValueContainer/package.json +0 -10
- package/ComboBox/v2/components/calculateWidth/package.json +0 -10
- package/ComboBox/v2/components/getoptions/package.json +0 -10
- package/ComboBox/v2/components/useMenuListHeight/package.json +0 -10
- package/ComboBox/v2/components/utils/package.json +0 -10
- package/ComboBox/v2/context/package.json +0 -10
- package/ComboBox/v2/mockOptions/package.json +0 -10
- package/ComboBox/v2/package.json +0 -10
- package/ComboBox/v3/ComboBox/package.json +0 -10
- package/ComboBox/v3/ComboBoxCTX/package.json +0 -10
- package/ComboBox/v3/ComboboxDataTestids/package.json +0 -10
- package/ComboBox/v3/config/constants/package.json +0 -10
- package/ComboBox/v3/config/useComboBox/package.json +0 -10
- package/ComboBox/v3/config/useGetPropsWithDefault/package.json +0 -10
- package/ComboBox/v3/package.json +0 -10
- package/ComboBox/v3/parts/a11y-messages/MultiAllyMessages/package.json +0 -10
- package/ComboBox/v3/parts/a11y-messages/SingleAllyMessages/package.json +0 -10
- package/ComboBox/v3/parts/a11y-messages/package.json +0 -10
- package/ComboBox/v3/parts/a11y-messages/styled/package.json +0 -10
- package/ComboBox/v3/parts/container/Container/package.json +0 -10
- package/ComboBox/v3/parts/container/package.json +0 -10
- package/ComboBox/v3/parts/container/styled/package.json +0 -10
- package/ComboBox/v3/parts/controls/Controls/package.json +0 -10
- package/ComboBox/v3/parts/controls/package.json +0 -10
- package/ComboBox/v3/parts/controls/styled/package.json +0 -10
- package/ComboBox/v3/parts/controls-input/ControlsInput/package.json +0 -10
- package/ComboBox/v3/parts/controls-input/styled/package.json +0 -10
- package/ComboBox/v3/parts/controls-input/useControlsInput/package.json +0 -10
- package/ComboBox/v3/parts/dropdown-indicator/DropdownIndicator/package.json +0 -10
- package/ComboBox/v3/parts/dropdown-indicator/package.json +0 -10
- package/ComboBox/v3/parts/dropdown-indicator/styled/package.json +0 -10
- package/ComboBox/v3/parts/empty-state/package.json +0 -10
- package/ComboBox/v3/parts/empty-state/styled/package.json +0 -10
- package/ComboBox/v3/parts/header-list/HeaderList/package.json +0 -10
- package/ComboBox/v3/parts/header-list/package.json +0 -10
- package/ComboBox/v3/parts/header-list/styled/package.json +0 -10
- package/ComboBox/v3/parts/menu-list/MenuList/package.json +0 -10
- package/ComboBox/v3/parts/menu-list/package.json +0 -10
- package/ComboBox/v3/parts/menu-list/styled/package.json +0 -10
- package/ComboBox/v3/parts/menu-list/useMenuList/package.json +0 -10
- package/ComboBox/v3/parts/multi-selected-values-container/MultiSelectedValuesContainer/package.json +0 -10
- package/ComboBox/v3/parts/multi-selected-values-container/package.json +0 -10
- package/ComboBox/v3/parts/multi-selected-values-container/styled/package.json +0 -10
- package/ComboBox/v3/parts/multi-selected-values-container/useGroupPills/package.json +0 -10
- package/ComboBox/v3/parts/single-selected-value-container/SingleSelectedValueContainer/package.json +0 -10
- package/ComboBox/v3/parts/single-selected-value-container/package.json +0 -10
- package/ComboBox/v3/parts/single-selected-value-container/styled/package.json +0 -10
- package/ComboBox/v3/propTypes/package.json +0 -10
- package/ComboBox/v3/tests/utils/package.json +0 -10
- package/ComboBox/v3/utils/hooks/useKeyboardNavigation/package.json +0 -10
- package/ComboBox/v3/utils/hooks/useOnElementResize/package.json +0 -10
- package/ComboBox/v3/utils/hooks/useOnWindowResize/package.json +0 -10
- package/ComboBox/v3/utils/listHelper/package.json +0 -10
- package/ComboBoxFreeSolo/ComboBoxFreeSolo/package.json +0 -10
- package/ComboBoxFreeSolo/components/MultiValueLabel/package.json +0 -10
- package/ComboBoxFreeSolo/components/MultiValueRemove/package.json +0 -10
- package/ComboBoxFreeSolo/components/SingleValue/package.json +0 -10
- package/ComboBoxFreeSolo/components/SingleValueRemove/package.json +0 -10
- package/ComboBoxFreeSolo/package.json +0 -10
- package/DateInput/DSDateInput/package.json +0 -10
- package/DateInput/components/DateInputImpl/package.json +0 -10
- package/DateInput/components/DateInputs/package.json +0 -10
- package/DateInput/components/utils/package.json +0 -10
- package/DateInput/defaultProps/package.json +0 -10
- package/DateInput/package.json +0 -10
- package/DateInput/props/package.json +0 -10
- package/DateInputV2/components/DSDateInput/package.json +0 -10
- package/DateInputV2/components/DateInputs/package.json +0 -10
- package/DateInputV2/components/helpers/package.json +0 -10
- package/DateInputV2/components/props/package.json +0 -10
- package/DateInputV2/components/propsTypes/package.json +0 -10
- package/DateInputV2/components/styled/package.json +0 -10
- package/DateInputV2/components/utils/package.json +0 -10
- package/DateInputV2/package.json +0 -10
- package/ExpandableInput/DSExpandableInput/package.json +0 -10
- package/ExpandableInput/ExpandableInputImpl/package.json +0 -10
- package/ExpandableInput/package.json +0 -10
- package/FloatingLabelInput/DSFloatingLabelInput/package.json +0 -10
- package/FloatingLabelInput/FloatingLabelInputImpl/package.json +0 -10
- package/FloatingLabelInput/getSvgPath/package.json +0 -10
- package/FloatingLabelInput/package.json +0 -10
- package/FormItem/DSFormItemLayout/package.json +0 -10
- package/FormItem/Error/DSError/package.json +0 -10
- package/FormItem/Feedback/package.json +0 -10
- package/FormItem/Label/DSLabel/package.json +0 -10
- package/FormItem/Suffix/Suffix/package.json +0 -10
- package/FormItem/ValidationFieldWrapper/package.json +0 -10
- package/FormItem/defaultProps/package.json +0 -10
- package/FormItem/package.json +0 -10
- package/FormItem/props/package.json +0 -10
- package/FormItem/variants/package.json +0 -10
- package/Input/DSInput/package.json +0 -10
- package/Input/InputAddonWrapper/package.json +0 -10
- package/Input/InputImpl/package.json +0 -10
- package/Input/package.json +0 -10
- package/InputGroup/AddonWrapper/package.json +0 -10
- package/InputGroup/DSInputGroup/package.json +0 -10
- package/InputGroup/defaultProps/package.json +0 -10
- package/InputGroup/package.json +0 -10
- package/InputGroup/props/package.json +0 -10
- package/InputMask/DSInputMask/package.json +0 -10
- package/InputMask/DSInputMaskDeprecated/package.json +0 -10
- package/InputMask/InputMaskContext/package.json +0 -10
- package/InputMask/MaskPipes/package.json +0 -10
- package/InputMask/MaskTypes/package.json +0 -10
- package/InputMask/addons/AutoCorrectedDatePipe/package.json +0 -10
- package/InputMask/defaultProps/package.json +0 -10
- package/InputMask/mask_types/DateInputMask/package.json +0 -10
- package/InputMask/mask_types/DateTimeInputMask/package.json +0 -10
- package/InputMask/mask_types/DictionaryInputMask/package.json +0 -10
- package/InputMask/mask_types/NumberInputMask/package.json +0 -10
- package/InputMask/mask_types/PhoneInputMask/package.json +0 -10
- package/InputMask/mask_types/PhoneInternationalInputMask/package.json +0 -10
- package/InputMask/mask_types/SsnInputMask/package.json +0 -10
- package/InputMask/mask_types/UsZipCodeInputMask/package.json +0 -10
- package/InputMask/mask_types/ZipCodeSearchInputMask/package.json +0 -10
- package/InputMask/mask_types/package.json +0 -10
- package/InputMask/package.json +0 -10
- package/InputMask/props/package.json +0 -10
- package/InputMask/types/package.json +0 -10
- package/InputMask/utils/setCaretPosition/package.json +0 -10
- package/InputProtected/DSInputProtected/package.json +0 -10
- package/InputProtected/defaultProps/package.json +0 -10
- package/InputProtected/options/package.json +0 -10
- package/InputProtected/package.json +0 -10
- package/InputProtected/props/package.json +0 -10
- package/LargeInputText/DSLargeInputText/package.json +0 -10
- package/LargeInputText/defaultProps/package.json +0 -10
- package/LargeInputText/package.json +0 -10
- package/LargeInputText/props/package.json +0 -10
- package/MenuItem/components/MenuItem/package.json +0 -10
- package/MenuItem/components/MenuItem/styled/package.json +0 -10
- package/MenuItem/components/MultiMenuItem/MultiMenuItem/package.json +0 -10
- package/MenuItem/components/MultiMenuItem/styled/package.json +0 -10
- package/MenuItem/components/Section/package.json +0 -10
- package/MenuItem/components/Section/props/package.json +0 -10
- package/MenuItem/components/Section/styled/package.json +0 -10
- package/MenuItem/components/Separator/package.json +0 -10
- package/MenuItem/components/Separator/styled/package.json +0 -10
- package/MenuItem/components/SingleMenuItem/SingleMenuItem/package.json +0 -10
- package/MenuItem/components/SingleMenuItem/styled/package.json +0 -10
- package/MenuItem/components/SubmenuItem/package.json +0 -10
- package/MenuItem/components/SubmenuItem/styled/package.json +0 -10
- package/MenuItem/components/package.json +0 -10
- package/MenuItem/components/styled/package.json +0 -10
- package/MenuItem/package.json +0 -10
- package/MenuItem/props/package.json +0 -10
- package/Radio/Circle/package.json +0 -10
- package/Radio/DSRadio/package.json +0 -10
- package/Radio/package.json +0 -10
- package/RadioGroup/DSRadioGroup/package.json +0 -10
- package/RadioGroup/defaultProps/package.json +0 -10
- package/RadioGroup/package.json +0 -10
- package/RadioGroup/props/package.json +0 -10
- package/RequiredMark/RequiredMark/package.json +0 -10
- package/RequiredMark/package.json +0 -10
- package/SearchBox/DSSearchBox/package.json +0 -10
- package/SearchBox/NavSearchBox/package.json +0 -10
- package/SearchBox/SButton/package.json +0 -10
- package/SearchBox/SearchBoxToggle/package.json +0 -10
- package/SearchBox/defaultProps/package.json +0 -10
- package/SearchBox/package.json +0 -10
- package/SearchBox/props/package.json +0 -10
- package/SearchBox/styled/package.json +0 -10
- package/SearchBox/useSearch/package.json +0 -10
- package/SearchBox/withSearchable/package.json +0 -10
- package/TextBox/DSTextBox/package.json +0 -10
- package/TextBox/package.json +0 -10
- package/TimeInput/DSTimeInput/package.json +0 -10
- package/TimeInput/TimeInputImpl/package.json +0 -10
- package/TimeInput/TimeInputs/package.json +0 -10
- package/TimeInput/package.json +0 -10
- package/TimeInput/utils/package.json +0 -10
- package/Toggle/DSToggle/package.json +0 -10
- package/Toggle/DSToggleImpl/package.json +0 -10
- package/Toggle/DSToggleRender/package.json +0 -10
- package/Toggle/package.json +0 -10
- package/Toggle/props/package.json +0 -10
- package/Toggle/toggleHelper/package.json +0 -10
- package/cjs/Checkbox/DSCheckbox.js.map +0 -1
- package/cjs/Checkbox/defaultProps.js.map +0 -1
- package/cjs/Checkbox/elements/CheckMark.js.map +0 -1
- package/cjs/Checkbox/index.js.map +0 -1
- package/cjs/Checkbox/props.js.map +0 -1
- package/cjs/CheckboxGroup/DSCheckboxGroup.js.map +0 -1
- package/cjs/CheckboxGroup/defaultProps.js.map +0 -1
- package/cjs/CheckboxGroup/index.js.map +0 -1
- package/cjs/CheckboxGroup/props.js.map +0 -1
- package/cjs/ComboBox/DSComboBox.js.map +0 -1
- package/cjs/ComboBox/index.js.map +0 -1
- package/cjs/ComboBox/v1/DSComboBox.js.map +0 -1
- package/cjs/ComboBox/v1/components/AllOption.js.map +0 -1
- package/cjs/ComboBox/v1/components/ClearIndicator.js.map +0 -1
- package/cjs/ComboBox/v1/components/Control.js.map +0 -1
- package/cjs/ComboBox/v1/components/CustomOption.js.map +0 -1
- package/cjs/ComboBox/v1/components/CustomOptionMulti.js.map +0 -1
- package/cjs/ComboBox/v1/components/DropdownIndicator.js.map +0 -1
- package/cjs/ComboBox/v1/components/MenuList.js.map +0 -1
- package/cjs/ComboBox/v1/components/MultiSelectHeader.js.map +0 -1
- package/cjs/ComboBox/v1/components/MultiValueLabel.js.map +0 -1
- package/cjs/ComboBox/v1/components/MultiValueRemove.js.map +0 -1
- package/cjs/ComboBox/v1/components/SelectMenu.js.map +0 -1
- package/cjs/ComboBox/v1/components/SingleValueLabel.js.map +0 -1
- package/cjs/ComboBox/v1/components/ValueContainer.js.map +0 -1
- package/cjs/ComboBox/v1/components/calculateWidth.js.map +0 -1
- package/cjs/ComboBox/v1/components/getoptions.js.map +0 -1
- package/cjs/ComboBox/v1/index.js.map +0 -1
- package/cjs/ComboBox/v1/withSelectStringValueConverter.js.map +0 -1
- package/cjs/ComboBox/v2/Combobox.js.map +0 -1
- package/cjs/ComboBox/v2/components/AllOption.js.map +0 -1
- package/cjs/ComboBox/v2/components/ClearIndicator.js.map +0 -1
- package/cjs/ComboBox/v2/components/Content.js.map +0 -1
- package/cjs/ComboBox/v2/components/Control.js.map +0 -1
- package/cjs/ComboBox/v2/components/CustomOption.js.map +0 -1
- package/cjs/ComboBox/v2/components/CustomOptionMulti.js.map +0 -1
- package/cjs/ComboBox/v2/components/DropdownIndicator.js.map +0 -1
- package/cjs/ComboBox/v2/components/GroupHeading.js.map +0 -1
- package/cjs/ComboBox/v2/components/IndicatorSeparator.js.map +0 -1
- package/cjs/ComboBox/v2/components/LoadingIndicator.js.map +0 -1
- package/cjs/ComboBox/v2/components/MenuList.js.map +0 -1
- package/cjs/ComboBox/v2/components/MultiSelectHeader.js.map +0 -1
- package/cjs/ComboBox/v2/components/MultiValueLabel.js.map +0 -1
- package/cjs/ComboBox/v2/components/MultiValueRemove.js.map +0 -1
- package/cjs/ComboBox/v2/components/SelectMenu.js.map +0 -1
- package/cjs/ComboBox/v2/components/SingleValueLabel.js.map +0 -1
- package/cjs/ComboBox/v2/components/ValueContainer.js.map +0 -1
- package/cjs/ComboBox/v2/components/calculateWidth.js.map +0 -1
- package/cjs/ComboBox/v2/components/getoptions.js.map +0 -1
- package/cjs/ComboBox/v2/components/useMenuListHeight.js.map +0 -1
- package/cjs/ComboBox/v2/components/utils.js.map +0 -1
- package/cjs/ComboBox/v2/context.js.map +0 -1
- package/cjs/ComboBox/v2/index.js.map +0 -1
- package/cjs/ComboBox/v2/mockOptions.js.map +0 -1
- package/cjs/ComboBox/v3/ComboBox.js.map +0 -1
- package/cjs/ComboBox/v3/ComboBoxCTX.js.map +0 -1
- package/cjs/ComboBox/v3/ComboboxDataTestids.js.map +0 -1
- package/cjs/ComboBox/v3/config/constants.js.map +0 -1
- package/cjs/ComboBox/v3/config/useComboBox.js.map +0 -1
- package/cjs/ComboBox/v3/config/useGetPropsWithDefault.js.map +0 -1
- package/cjs/ComboBox/v3/index.d.js.map +0 -1
- package/cjs/ComboBox/v3/index.js.map +0 -1
- package/cjs/ComboBox/v3/parts/a11y-messages/MultiAllyMessages.js.map +0 -1
- package/cjs/ComboBox/v3/parts/a11y-messages/SingleAllyMessages.js.map +0 -1
- package/cjs/ComboBox/v3/parts/a11y-messages/index.js.map +0 -1
- package/cjs/ComboBox/v3/parts/a11y-messages/styled.js.map +0 -1
- package/cjs/ComboBox/v3/parts/container/Container.js.map +0 -1
- package/cjs/ComboBox/v3/parts/container/index.js.map +0 -1
- package/cjs/ComboBox/v3/parts/container/styled.js.map +0 -1
- package/cjs/ComboBox/v3/parts/controls/Controls.js.map +0 -1
- package/cjs/ComboBox/v3/parts/controls/index.js.map +0 -1
- package/cjs/ComboBox/v3/parts/controls/styled.js.map +0 -1
- package/cjs/ComboBox/v3/parts/controls-input/ControlsInput.js.map +0 -1
- package/cjs/ComboBox/v3/parts/controls-input/styled.js.map +0 -1
- package/cjs/ComboBox/v3/parts/controls-input/useControlsInput.js.map +0 -1
- package/cjs/ComboBox/v3/parts/dropdown-indicator/DropdownIndicator.js.map +0 -1
- package/cjs/ComboBox/v3/parts/dropdown-indicator/index.js.map +0 -1
- package/cjs/ComboBox/v3/parts/dropdown-indicator/styled.js.map +0 -1
- package/cjs/ComboBox/v3/parts/empty-state/index.js.map +0 -1
- package/cjs/ComboBox/v3/parts/empty-state/styled.js.map +0 -1
- package/cjs/ComboBox/v3/parts/header-list/HeaderList.js.map +0 -1
- package/cjs/ComboBox/v3/parts/header-list/index.js.map +0 -1
- package/cjs/ComboBox/v3/parts/header-list/styled.js.map +0 -1
- package/cjs/ComboBox/v3/parts/menu-list/MenuList.js.map +0 -1
- package/cjs/ComboBox/v3/parts/menu-list/index.js.map +0 -1
- package/cjs/ComboBox/v3/parts/menu-list/styled.js.map +0 -1
- package/cjs/ComboBox/v3/parts/menu-list/useMenuList.js.map +0 -1
- package/cjs/ComboBox/v3/parts/multi-selected-values-container/MultiSelectedValuesContainer.js.map +0 -1
- package/cjs/ComboBox/v3/parts/multi-selected-values-container/index.js.map +0 -1
- package/cjs/ComboBox/v3/parts/multi-selected-values-container/styled.js.map +0 -1
- package/cjs/ComboBox/v3/parts/multi-selected-values-container/useGroupPills.js.map +0 -1
- package/cjs/ComboBox/v3/parts/single-selected-value-container/SingleSelectedValueContainer.js.map +0 -1
- package/cjs/ComboBox/v3/parts/single-selected-value-container/index.js.map +0 -1
- package/cjs/ComboBox/v3/parts/single-selected-value-container/styled.js.map +0 -1
- package/cjs/ComboBox/v3/propTypes.js.map +0 -1
- package/cjs/ComboBox/v3/tests/utils.js +0 -51
- package/cjs/ComboBox/v3/tests/utils.js.map +0 -1
- package/cjs/ComboBox/v3/utils/hooks/useKeyboardNavigation.js.map +0 -1
- package/cjs/ComboBox/v3/utils/hooks/useOnElementResize.js.map +0 -1
- package/cjs/ComboBox/v3/utils/hooks/useOnWindowResize.js +0 -51
- package/cjs/ComboBox/v3/utils/hooks/useOnWindowResize.js.map +0 -1
- package/cjs/ComboBox/v3/utils/listHelper.js.map +0 -1
- package/cjs/ComboBoxFreeSolo/ComboBoxFreeSolo.js.map +0 -1
- package/cjs/ComboBoxFreeSolo/components/MultiValueLabel.js.map +0 -1
- package/cjs/ComboBoxFreeSolo/components/MultiValueRemove.js.map +0 -1
- package/cjs/ComboBoxFreeSolo/components/SingleValue.js.map +0 -1
- package/cjs/ComboBoxFreeSolo/components/SingleValueRemove.js.map +0 -1
- package/cjs/ComboBoxFreeSolo/index.js.map +0 -1
- package/cjs/DateInput/DSDateInput.js.map +0 -1
- package/cjs/DateInput/components/DateInputImpl.js.map +0 -1
- package/cjs/DateInput/components/DateInputs.js.map +0 -1
- package/cjs/DateInput/components/utils.js.map +0 -1
- package/cjs/DateInput/defaultProps.js.map +0 -1
- package/cjs/DateInput/index.js.map +0 -1
- package/cjs/DateInput/props.js.map +0 -1
- package/cjs/DateInputV2/components/DSDateInput.js.map +0 -1
- package/cjs/DateInputV2/components/DateInputs.js.map +0 -1
- package/cjs/DateInputV2/components/helpers.js.map +0 -1
- package/cjs/DateInputV2/components/props.js.map +0 -1
- package/cjs/DateInputV2/components/propsTypes.js.map +0 -1
- package/cjs/DateInputV2/components/styled.js.map +0 -1
- package/cjs/DateInputV2/components/utils.js.map +0 -1
- package/cjs/DateInputV2/index.js.map +0 -1
- package/cjs/ExpandableInput/DSExpandableInput.js.map +0 -1
- package/cjs/ExpandableInput/ExpandableInputImpl.js.map +0 -1
- package/cjs/ExpandableInput/index.js.map +0 -1
- package/cjs/FloatingLabelInput/DSFloatingLabelInput.js.map +0 -1
- package/cjs/FloatingLabelInput/FloatingLabelInputImpl.js.map +0 -1
- package/cjs/FloatingLabelInput/getSvgPath.js.map +0 -1
- package/cjs/FloatingLabelInput/index.js.map +0 -1
- package/cjs/FormItem/DSFormItemLayout.js.map +0 -1
- package/cjs/FormItem/Error/DSError.js.map +0 -1
- package/cjs/FormItem/Feedback.js.map +0 -1
- package/cjs/FormItem/Label/DSLabel.js.map +0 -1
- package/cjs/FormItem/Suffix/Suffix.js.map +0 -1
- package/cjs/FormItem/ValidationFieldWrapper.js.map +0 -1
- package/cjs/FormItem/defaultProps.js.map +0 -1
- package/cjs/FormItem/index.js.map +0 -1
- package/cjs/FormItem/props.js.map +0 -1
- package/cjs/FormItem/variants.js.map +0 -1
- package/cjs/Input/DSInput.js.map +0 -1
- package/cjs/Input/InputAddonWrapper.js.map +0 -1
- package/cjs/Input/InputImpl.js.map +0 -1
- package/cjs/Input/index.js.map +0 -1
- package/cjs/InputGroup/AddonWrapper.js.map +0 -1
- package/cjs/InputGroup/DSInputGroup.js.map +0 -1
- package/cjs/InputGroup/defaultProps.js.map +0 -1
- package/cjs/InputGroup/index.js.map +0 -1
- package/cjs/InputGroup/props.js.map +0 -1
- package/cjs/InputMask/DSInputMask.js.map +0 -1
- package/cjs/InputMask/DSInputMaskDeprecated.js.map +0 -1
- package/cjs/InputMask/InputMaskContext.js.map +0 -1
- package/cjs/InputMask/MaskPipes.js.map +0 -1
- package/cjs/InputMask/MaskTypes.js.map +0 -1
- package/cjs/InputMask/addons/AutoCorrectedDatePipe.js.map +0 -1
- package/cjs/InputMask/defaultProps.js.map +0 -1
- package/cjs/InputMask/index.js.map +0 -1
- package/cjs/InputMask/mask_types/DateInputMask.js.map +0 -1
- package/cjs/InputMask/mask_types/DateTimeInputMask.js.map +0 -1
- package/cjs/InputMask/mask_types/DictionaryInputMask.js.map +0 -1
- package/cjs/InputMask/mask_types/NumberInputMask.js.map +0 -1
- package/cjs/InputMask/mask_types/PhoneInputMask.js.map +0 -1
- package/cjs/InputMask/mask_types/PhoneInternationalInputMask.js.map +0 -1
- package/cjs/InputMask/mask_types/SsnInputMask.js.map +0 -1
- package/cjs/InputMask/mask_types/UsZipCodeInputMask.js.map +0 -1
- package/cjs/InputMask/mask_types/ZipCodeSearchInputMask.js.map +0 -1
- package/cjs/InputMask/mask_types/index.js.map +0 -1
- package/cjs/InputMask/props.js.map +0 -1
- package/cjs/InputMask/types/index.js.map +0 -1
- package/cjs/InputMask/utils/setCaretPosition.js.map +0 -1
- package/cjs/InputProtected/DSInputProtected.js.map +0 -1
- package/cjs/InputProtected/defaultProps.js.map +0 -1
- package/cjs/InputProtected/index.js.map +0 -1
- package/cjs/InputProtected/options.js.map +0 -1
- package/cjs/InputProtected/props.js.map +0 -1
- package/cjs/LargeInputText/DSLargeInputText.js.map +0 -1
- package/cjs/LargeInputText/defaultProps.js.map +0 -1
- package/cjs/LargeInputText/index.js.map +0 -1
- package/cjs/LargeInputText/props.js.map +0 -1
- package/cjs/MenuItem/components/MenuItem/index.js.map +0 -1
- package/cjs/MenuItem/components/MenuItem/styled.js.map +0 -1
- package/cjs/MenuItem/components/MultiMenuItem/MultiMenuItem.js.map +0 -1
- package/cjs/MenuItem/components/MultiMenuItem/styled.js.map +0 -1
- package/cjs/MenuItem/components/Section/index.js.map +0 -1
- package/cjs/MenuItem/components/Section/props.js.map +0 -1
- package/cjs/MenuItem/components/Section/styled.js.map +0 -1
- package/cjs/MenuItem/components/Separator/index.js.map +0 -1
- package/cjs/MenuItem/components/Separator/styled.js.map +0 -1
- package/cjs/MenuItem/components/SingleMenuItem/SingleMenuItem.js.map +0 -1
- package/cjs/MenuItem/components/SingleMenuItem/styled.js +0 -20
- package/cjs/MenuItem/components/SingleMenuItem/styled.js.map +0 -1
- package/cjs/MenuItem/components/SubmenuItem/index.js.map +0 -1
- package/cjs/MenuItem/components/SubmenuItem/styled.js.map +0 -1
- package/cjs/MenuItem/components/index.js.map +0 -1
- package/cjs/MenuItem/components/styled.js.map +0 -1
- package/cjs/MenuItem/index.js.map +0 -1
- package/cjs/MenuItem/props.js.map +0 -1
- package/cjs/Radio/Circle.js.map +0 -1
- package/cjs/Radio/DSRadio.js.map +0 -1
- package/cjs/Radio/index.js.map +0 -1
- package/cjs/RadioGroup/DSRadioGroup.js.map +0 -1
- package/cjs/RadioGroup/defaultProps.js.map +0 -1
- package/cjs/RadioGroup/index.js.map +0 -1
- package/cjs/RadioGroup/props.js.map +0 -1
- package/cjs/RequiredMark/RequiredMark.js.map +0 -1
- package/cjs/RequiredMark/index.js.map +0 -1
- package/cjs/SearchBox/DSSearchBox.js.map +0 -1
- package/cjs/SearchBox/NavSearchBox.js.map +0 -1
- package/cjs/SearchBox/SButton.js.map +0 -1
- package/cjs/SearchBox/SearchBoxToggle.js.map +0 -1
- package/cjs/SearchBox/defaultProps.js.map +0 -1
- package/cjs/SearchBox/index.js.map +0 -1
- package/cjs/SearchBox/props.js.map +0 -1
- package/cjs/SearchBox/styled.js.map +0 -1
- package/cjs/SearchBox/useSearch.js.map +0 -1
- package/cjs/SearchBox/withSearchable.js.map +0 -1
- package/cjs/TextBox/DSTextBox.js.map +0 -1
- package/cjs/TextBox/index.js.map +0 -1
- package/cjs/TimeInput/DSTimeInput.js.map +0 -1
- package/cjs/TimeInput/TimeInputImpl.js.map +0 -1
- package/cjs/TimeInput/TimeInputs.js.map +0 -1
- package/cjs/TimeInput/index.js.map +0 -1
- package/cjs/TimeInput/utils.js.map +0 -1
- package/cjs/Toggle/DSToggle.js.map +0 -1
- package/cjs/Toggle/DSToggleImpl.js.map +0 -1
- package/cjs/Toggle/DSToggleRender.js.map +0 -1
- package/cjs/Toggle/index.js.map +0 -1
- package/cjs/Toggle/props.js.map +0 -1
- package/cjs/Toggle/toggleHelper.js.map +0 -1
- package/cjs/index.js.map +0 -1
- package/cjs/prop-types-0d5610b3.js +0 -49
- package/cjs/prop-types-0d5610b3.js.map +0 -1
- package/cjs/utils-f82fe290.js +0 -191
- package/cjs/utils-f82fe290.js.map +0 -1
- package/esm/Checkbox/DSCheckbox.js.map +0 -1
- package/esm/Checkbox/defaultProps.js.map +0 -1
- package/esm/Checkbox/elements/CheckMark.js.map +0 -1
- package/esm/Checkbox/index.js.map +0 -1
- package/esm/Checkbox/props.js.map +0 -1
- package/esm/CheckboxGroup/DSCheckboxGroup.js.map +0 -1
- package/esm/CheckboxGroup/defaultProps.js.map +0 -1
- package/esm/CheckboxGroup/index.js.map +0 -1
- package/esm/CheckboxGroup/props.js.map +0 -1
- package/esm/ComboBox/DSComboBox.js.map +0 -1
- package/esm/ComboBox/index.js.map +0 -1
- package/esm/ComboBox/v1/DSComboBox.js.map +0 -1
- package/esm/ComboBox/v1/components/AllOption.js.map +0 -1
- package/esm/ComboBox/v1/components/ClearIndicator.js.map +0 -1
- package/esm/ComboBox/v1/components/Control.js.map +0 -1
- package/esm/ComboBox/v1/components/CustomOption.js.map +0 -1
- package/esm/ComboBox/v1/components/CustomOptionMulti.js.map +0 -1
- package/esm/ComboBox/v1/components/DropdownIndicator.js.map +0 -1
- package/esm/ComboBox/v1/components/MenuList.js.map +0 -1
- package/esm/ComboBox/v1/components/MultiSelectHeader.js.map +0 -1
- package/esm/ComboBox/v1/components/MultiValueLabel.js.map +0 -1
- package/esm/ComboBox/v1/components/MultiValueRemove.js.map +0 -1
- package/esm/ComboBox/v1/components/SelectMenu.js.map +0 -1
- package/esm/ComboBox/v1/components/SingleValueLabel.js.map +0 -1
- package/esm/ComboBox/v1/components/ValueContainer.js.map +0 -1
- package/esm/ComboBox/v1/components/calculateWidth.js.map +0 -1
- package/esm/ComboBox/v1/components/getoptions.js.map +0 -1
- package/esm/ComboBox/v1/index.js.map +0 -1
- package/esm/ComboBox/v1/withSelectStringValueConverter.js.map +0 -1
- package/esm/ComboBox/v2/Combobox.js.map +0 -1
- package/esm/ComboBox/v2/components/AllOption.js.map +0 -1
- package/esm/ComboBox/v2/components/ClearIndicator.js.map +0 -1
- package/esm/ComboBox/v2/components/Content.js.map +0 -1
- package/esm/ComboBox/v2/components/Control.js.map +0 -1
- package/esm/ComboBox/v2/components/CustomOption.js.map +0 -1
- package/esm/ComboBox/v2/components/CustomOptionMulti.js.map +0 -1
- package/esm/ComboBox/v2/components/DropdownIndicator.js.map +0 -1
- package/esm/ComboBox/v2/components/GroupHeading.js.map +0 -1
- package/esm/ComboBox/v2/components/IndicatorSeparator.js.map +0 -1
- package/esm/ComboBox/v2/components/LoadingIndicator.js.map +0 -1
- package/esm/ComboBox/v2/components/MenuList.js.map +0 -1
- package/esm/ComboBox/v2/components/MultiSelectHeader.js.map +0 -1
- package/esm/ComboBox/v2/components/MultiValueLabel.js.map +0 -1
- package/esm/ComboBox/v2/components/MultiValueRemove.js.map +0 -1
- package/esm/ComboBox/v2/components/SelectMenu.js.map +0 -1
- package/esm/ComboBox/v2/components/SingleValueLabel.js.map +0 -1
- package/esm/ComboBox/v2/components/ValueContainer.js.map +0 -1
- package/esm/ComboBox/v2/components/calculateWidth.js.map +0 -1
- package/esm/ComboBox/v2/components/getoptions.js.map +0 -1
- package/esm/ComboBox/v2/components/useMenuListHeight.js.map +0 -1
- package/esm/ComboBox/v2/components/utils.js.map +0 -1
- package/esm/ComboBox/v2/context.js.map +0 -1
- package/esm/ComboBox/v2/index.js.map +0 -1
- package/esm/ComboBox/v2/mockOptions.js.map +0 -1
- package/esm/ComboBox/v3/ComboBox.js.map +0 -1
- package/esm/ComboBox/v3/ComboBoxCTX.js.map +0 -1
- package/esm/ComboBox/v3/ComboboxDataTestids.js.map +0 -1
- package/esm/ComboBox/v3/config/constants.js.map +0 -1
- package/esm/ComboBox/v3/config/useComboBox.js.map +0 -1
- package/esm/ComboBox/v3/config/useGetPropsWithDefault.js.map +0 -1
- package/esm/ComboBox/v3/index.d.js.map +0 -1
- package/esm/ComboBox/v3/index.js.map +0 -1
- package/esm/ComboBox/v3/parts/a11y-messages/MultiAllyMessages.js.map +0 -1
- package/esm/ComboBox/v3/parts/a11y-messages/SingleAllyMessages.js.map +0 -1
- package/esm/ComboBox/v3/parts/a11y-messages/index.js.map +0 -1
- package/esm/ComboBox/v3/parts/a11y-messages/styled.js.map +0 -1
- package/esm/ComboBox/v3/parts/container/Container.js.map +0 -1
- package/esm/ComboBox/v3/parts/container/index.js.map +0 -1
- package/esm/ComboBox/v3/parts/container/styled.js.map +0 -1
- package/esm/ComboBox/v3/parts/controls/Controls.js.map +0 -1
- package/esm/ComboBox/v3/parts/controls/index.js.map +0 -1
- package/esm/ComboBox/v3/parts/controls/styled.js.map +0 -1
- package/esm/ComboBox/v3/parts/controls-input/ControlsInput.js.map +0 -1
- package/esm/ComboBox/v3/parts/controls-input/styled.js.map +0 -1
- package/esm/ComboBox/v3/parts/controls-input/useControlsInput.js.map +0 -1
- package/esm/ComboBox/v3/parts/dropdown-indicator/DropdownIndicator.js.map +0 -1
- package/esm/ComboBox/v3/parts/dropdown-indicator/index.js.map +0 -1
- package/esm/ComboBox/v3/parts/dropdown-indicator/styled.js.map +0 -1
- package/esm/ComboBox/v3/parts/empty-state/index.js.map +0 -1
- package/esm/ComboBox/v3/parts/empty-state/styled.js.map +0 -1
- package/esm/ComboBox/v3/parts/header-list/HeaderList.js.map +0 -1
- package/esm/ComboBox/v3/parts/header-list/index.js.map +0 -1
- package/esm/ComboBox/v3/parts/header-list/styled.js.map +0 -1
- package/esm/ComboBox/v3/parts/menu-list/MenuList.js.map +0 -1
- package/esm/ComboBox/v3/parts/menu-list/index.js.map +0 -1
- package/esm/ComboBox/v3/parts/menu-list/styled.js.map +0 -1
- package/esm/ComboBox/v3/parts/menu-list/useMenuList.js.map +0 -1
- package/esm/ComboBox/v3/parts/multi-selected-values-container/MultiSelectedValuesContainer.js.map +0 -1
- package/esm/ComboBox/v3/parts/multi-selected-values-container/index.js.map +0 -1
- package/esm/ComboBox/v3/parts/multi-selected-values-container/styled.js.map +0 -1
- package/esm/ComboBox/v3/parts/multi-selected-values-container/useGroupPills.js.map +0 -1
- package/esm/ComboBox/v3/parts/single-selected-value-container/SingleSelectedValueContainer.js.map +0 -1
- package/esm/ComboBox/v3/parts/single-selected-value-container/index.js.map +0 -1
- package/esm/ComboBox/v3/parts/single-selected-value-container/styled.js.map +0 -1
- package/esm/ComboBox/v3/propTypes.js.map +0 -1
- package/esm/ComboBox/v3/tests/utils.js +0 -46
- package/esm/ComboBox/v3/tests/utils.js.map +0 -1
- package/esm/ComboBox/v3/utils/hooks/useKeyboardNavigation.js.map +0 -1
- package/esm/ComboBox/v3/utils/hooks/useOnElementResize.js.map +0 -1
- package/esm/ComboBox/v3/utils/hooks/useOnWindowResize.js +0 -43
- package/esm/ComboBox/v3/utils/hooks/useOnWindowResize.js.map +0 -1
- package/esm/ComboBox/v3/utils/listHelper.js.map +0 -1
- package/esm/ComboBoxFreeSolo/ComboBoxFreeSolo.js.map +0 -1
- package/esm/ComboBoxFreeSolo/components/MultiValueLabel.js.map +0 -1
- package/esm/ComboBoxFreeSolo/components/MultiValueRemove.js.map +0 -1
- package/esm/ComboBoxFreeSolo/components/SingleValue.js.map +0 -1
- package/esm/ComboBoxFreeSolo/components/SingleValueRemove.js.map +0 -1
- package/esm/ComboBoxFreeSolo/index.js.map +0 -1
- package/esm/DateInput/DSDateInput.js.map +0 -1
- package/esm/DateInput/components/DateInputImpl.js.map +0 -1
- package/esm/DateInput/components/DateInputs.js.map +0 -1
- package/esm/DateInput/components/utils.js.map +0 -1
- package/esm/DateInput/defaultProps.js.map +0 -1
- package/esm/DateInput/index.js.map +0 -1
- package/esm/DateInput/props.js.map +0 -1
- package/esm/DateInputV2/components/DSDateInput.js.map +0 -1
- package/esm/DateInputV2/components/DateInputs.js.map +0 -1
- package/esm/DateInputV2/components/helpers.js.map +0 -1
- package/esm/DateInputV2/components/props.js.map +0 -1
- package/esm/DateInputV2/components/propsTypes.js.map +0 -1
- package/esm/DateInputV2/components/styled.js.map +0 -1
- package/esm/DateInputV2/components/utils.js.map +0 -1
- package/esm/DateInputV2/index.js.map +0 -1
- package/esm/ExpandableInput/DSExpandableInput.js.map +0 -1
- package/esm/ExpandableInput/ExpandableInputImpl.js.map +0 -1
- package/esm/ExpandableInput/index.js.map +0 -1
- package/esm/FloatingLabelInput/DSFloatingLabelInput.js.map +0 -1
- package/esm/FloatingLabelInput/FloatingLabelInputImpl.js.map +0 -1
- package/esm/FloatingLabelInput/getSvgPath.js.map +0 -1
- package/esm/FloatingLabelInput/index.js.map +0 -1
- package/esm/FormItem/DSFormItemLayout.js.map +0 -1
- package/esm/FormItem/Error/DSError.js.map +0 -1
- package/esm/FormItem/Feedback.js.map +0 -1
- package/esm/FormItem/Label/DSLabel.js.map +0 -1
- package/esm/FormItem/Suffix/Suffix.js.map +0 -1
- package/esm/FormItem/ValidationFieldWrapper.js.map +0 -1
- package/esm/FormItem/defaultProps.js.map +0 -1
- package/esm/FormItem/index.js.map +0 -1
- package/esm/FormItem/props.js.map +0 -1
- package/esm/FormItem/variants.js.map +0 -1
- package/esm/Input/DSInput.js.map +0 -1
- package/esm/Input/InputAddonWrapper.js.map +0 -1
- package/esm/Input/InputImpl.js.map +0 -1
- package/esm/Input/index.js.map +0 -1
- package/esm/InputGroup/AddonWrapper.js.map +0 -1
- package/esm/InputGroup/DSInputGroup.js.map +0 -1
- package/esm/InputGroup/defaultProps.js.map +0 -1
- package/esm/InputGroup/index.js.map +0 -1
- package/esm/InputGroup/props.js.map +0 -1
- package/esm/InputMask/DSInputMask.js.map +0 -1
- package/esm/InputMask/DSInputMaskDeprecated.js.map +0 -1
- package/esm/InputMask/InputMaskContext.js.map +0 -1
- package/esm/InputMask/MaskPipes.js.map +0 -1
- package/esm/InputMask/MaskTypes.js.map +0 -1
- package/esm/InputMask/addons/AutoCorrectedDatePipe.js.map +0 -1
- package/esm/InputMask/defaultProps.js.map +0 -1
- package/esm/InputMask/index.js.map +0 -1
- package/esm/InputMask/mask_types/DateInputMask.js.map +0 -1
- package/esm/InputMask/mask_types/DateTimeInputMask.js.map +0 -1
- package/esm/InputMask/mask_types/DictionaryInputMask.js.map +0 -1
- package/esm/InputMask/mask_types/NumberInputMask.js.map +0 -1
- package/esm/InputMask/mask_types/PhoneInputMask.js.map +0 -1
- package/esm/InputMask/mask_types/PhoneInternationalInputMask.js.map +0 -1
- package/esm/InputMask/mask_types/SsnInputMask.js.map +0 -1
- package/esm/InputMask/mask_types/UsZipCodeInputMask.js.map +0 -1
- package/esm/InputMask/mask_types/ZipCodeSearchInputMask.js.map +0 -1
- package/esm/InputMask/mask_types/index.js.map +0 -1
- package/esm/InputMask/props.js.map +0 -1
- package/esm/InputMask/types/index.js.map +0 -1
- package/esm/InputMask/utils/setCaretPosition.js.map +0 -1
- package/esm/InputProtected/DSInputProtected.js.map +0 -1
- package/esm/InputProtected/defaultProps.js.map +0 -1
- package/esm/InputProtected/index.js.map +0 -1
- package/esm/InputProtected/options.js.map +0 -1
- package/esm/InputProtected/props.js.map +0 -1
- package/esm/LargeInputText/DSLargeInputText.js.map +0 -1
- package/esm/LargeInputText/defaultProps.js.map +0 -1
- package/esm/LargeInputText/index.js.map +0 -1
- package/esm/LargeInputText/props.js.map +0 -1
- package/esm/MenuItem/components/MenuItem/index.js.map +0 -1
- package/esm/MenuItem/components/MenuItem/styled.js.map +0 -1
- package/esm/MenuItem/components/MultiMenuItem/MultiMenuItem.js.map +0 -1
- package/esm/MenuItem/components/MultiMenuItem/styled.js.map +0 -1
- package/esm/MenuItem/components/Section/index.js.map +0 -1
- package/esm/MenuItem/components/Section/props.js.map +0 -1
- package/esm/MenuItem/components/Section/styled.js.map +0 -1
- package/esm/MenuItem/components/Separator/index.js.map +0 -1
- package/esm/MenuItem/components/Separator/styled.js.map +0 -1
- package/esm/MenuItem/components/SingleMenuItem/SingleMenuItem.js.map +0 -1
- package/esm/MenuItem/components/SingleMenuItem/styled.js +0 -11
- package/esm/MenuItem/components/SingleMenuItem/styled.js.map +0 -1
- package/esm/MenuItem/components/SubmenuItem/index.js.map +0 -1
- package/esm/MenuItem/components/SubmenuItem/styled.js.map +0 -1
- package/esm/MenuItem/components/index.js.map +0 -1
- package/esm/MenuItem/components/styled.js.map +0 -1
- package/esm/MenuItem/index.js.map +0 -1
- package/esm/MenuItem/props.js.map +0 -1
- package/esm/Radio/Circle.js.map +0 -1
- package/esm/Radio/DSRadio.js.map +0 -1
- package/esm/Radio/index.js.map +0 -1
- package/esm/RadioGroup/DSRadioGroup.js.map +0 -1
- package/esm/RadioGroup/defaultProps.js.map +0 -1
- package/esm/RadioGroup/index.js.map +0 -1
- package/esm/RadioGroup/props.js.map +0 -1
- package/esm/RequiredMark/RequiredMark.js.map +0 -1
- package/esm/RequiredMark/index.js.map +0 -1
- package/esm/SearchBox/DSSearchBox.js.map +0 -1
- package/esm/SearchBox/NavSearchBox.js.map +0 -1
- package/esm/SearchBox/SButton.js.map +0 -1
- package/esm/SearchBox/SearchBoxToggle.js.map +0 -1
- package/esm/SearchBox/defaultProps.js.map +0 -1
- package/esm/SearchBox/index.js.map +0 -1
- package/esm/SearchBox/props.js.map +0 -1
- package/esm/SearchBox/styled.js.map +0 -1
- package/esm/SearchBox/useSearch.js.map +0 -1
- package/esm/SearchBox/withSearchable.js.map +0 -1
- package/esm/TextBox/DSTextBox.js.map +0 -1
- package/esm/TextBox/index.js.map +0 -1
- package/esm/TimeInput/DSTimeInput.js.map +0 -1
- package/esm/TimeInput/TimeInputImpl.js.map +0 -1
- package/esm/TimeInput/TimeInputs.js.map +0 -1
- package/esm/TimeInput/index.js.map +0 -1
- package/esm/TimeInput/utils.js.map +0 -1
- package/esm/Toggle/DSToggle.js.map +0 -1
- package/esm/Toggle/DSToggleImpl.js.map +0 -1
- package/esm/Toggle/DSToggleRender.js.map +0 -1
- package/esm/Toggle/index.js.map +0 -1
- package/esm/Toggle/props.js.map +0 -1
- package/esm/Toggle/toggleHelper.js.map +0 -1
- package/esm/index.js.map +0 -1
- package/esm/prop-types-45aa1e9c.js +0 -42
- package/esm/prop-types-45aa1e9c.js.map +0 -1
- package/esm/utils-ced363ec.js +0 -162
- package/esm/utils-ced363ec.js.map +0 -1
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import
|
|
1
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
2
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
3
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
4
|
+
import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
5
|
+
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
6
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
7
|
+
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
2
8
|
import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
|
|
3
|
-
import
|
|
9
|
+
import 'react';
|
|
4
10
|
import { DSCheckbox } from '../../../Checkbox/DSCheckbox.js';
|
|
5
|
-
import 'react-
|
|
6
|
-
import 'uid';
|
|
7
|
-
import '@elliemae/ds-classnames';
|
|
8
|
-
import '@elliemae/ds-utilities';
|
|
9
|
-
import '../../../Checkbox/elements/CheckMark.js';
|
|
10
|
-
import 'styled-components';
|
|
11
|
-
import '../../../Checkbox/defaultProps.js';
|
|
12
|
-
import '../../../prop-types-45aa1e9c.js';
|
|
13
|
-
import '../../../Checkbox/props.js';
|
|
11
|
+
import { jsx } from 'react/jsx-runtime';
|
|
14
12
|
|
|
15
|
-
|
|
13
|
+
const _excluded = ["children"];
|
|
16
14
|
|
|
17
|
-
var
|
|
18
|
-
_ref.children;
|
|
19
|
-
var rest = _objectWithoutProperties(_ref, _excluded);
|
|
15
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
20
16
|
|
|
21
|
-
|
|
17
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
18
|
+
|
|
19
|
+
const MultiSelectHeader = _ref => {
|
|
20
|
+
let rest = _objectWithoutProperties(_ref, _excluded);
|
|
21
|
+
|
|
22
|
+
return /*#__PURE__*/_jsx("div", {
|
|
22
23
|
className: "combobox-multi-select-all"
|
|
23
|
-
}, /*#__PURE__*/
|
|
24
|
+
}, void 0, /*#__PURE__*/jsx(DSCheckbox, _objectSpread({
|
|
24
25
|
labelText: "All"
|
|
25
26
|
}, rest)));
|
|
26
27
|
};
|
|
27
28
|
|
|
28
29
|
export { MultiSelectHeader as default };
|
|
29
|
-
//# sourceMappingURL=AllOption.js.map
|
|
@@ -1,35 +1,41 @@
|
|
|
1
|
-
import
|
|
1
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
2
|
+
import 'react';
|
|
2
3
|
import { CloseCircle } from '@elliemae/ds-icons';
|
|
3
4
|
import DSButton from '@elliemae/ds-button';
|
|
5
|
+
import { jsx } from 'react/jsx-runtime';
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
var _CloseCircle;
|
|
6
8
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
const ClearIndicator = props => {
|
|
10
|
+
const {
|
|
11
|
+
getStyles,
|
|
12
|
+
innerProps: {
|
|
13
|
+
ref
|
|
14
|
+
},
|
|
15
|
+
innerRef
|
|
16
|
+
} = props;
|
|
17
|
+
return /*#__PURE__*/jsx("div", {
|
|
12
18
|
ref: ref,
|
|
13
19
|
"aria-hidden": "false",
|
|
14
|
-
style: getStyles('clearIndicator', props)
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
20
|
+
style: getStyles('clearIndicator', props),
|
|
21
|
+
children: /*#__PURE__*/_jsx(DSButton, {
|
|
22
|
+
"aria-label": "clear-indicator",
|
|
23
|
+
buttonType: "text",
|
|
24
|
+
className: "clear-indicator",
|
|
25
|
+
icon: _CloseCircle || (_CloseCircle = /*#__PURE__*/_jsx(CloseCircle, {
|
|
26
|
+
size: "m"
|
|
27
|
+
})),
|
|
28
|
+
innerRef: innerRef,
|
|
29
|
+
onKeyDown: e => {
|
|
30
|
+
if (e.keyCode === 32 || e.keyCode === 13) {
|
|
31
|
+
e.preventDefault();
|
|
32
|
+
props.clearValue();
|
|
33
|
+
}
|
|
28
34
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
35
|
+
props.onKeyDown(e);
|
|
36
|
+
}
|
|
37
|
+
})
|
|
38
|
+
});
|
|
32
39
|
};
|
|
33
40
|
|
|
34
41
|
export { ClearIndicator as default };
|
|
35
|
-
//# sourceMappingURL=ClearIndicator.js.map
|
|
@@ -1,15 +1,27 @@
|
|
|
1
|
-
import
|
|
1
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
2
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
3
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
4
|
+
import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
5
|
+
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
6
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
7
|
+
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
8
|
+
import 'react';
|
|
2
9
|
import { components } from 'react-select';
|
|
3
10
|
import { Reference } from 'react-popper';
|
|
11
|
+
import { jsx } from 'react/jsx-runtime';
|
|
4
12
|
|
|
5
|
-
var
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
13
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
14
|
+
|
|
15
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
16
|
+
|
|
17
|
+
const Control = props => /*#__PURE__*/_jsx(Reference, {}, void 0, _ref => {
|
|
18
|
+
let {
|
|
19
|
+
ref
|
|
20
|
+
} = _ref;
|
|
21
|
+
return /*#__PURE__*/jsx("div", {
|
|
22
|
+
ref: ref,
|
|
23
|
+
children: /*#__PURE__*/jsx(components.Control, _objectSpread({}, props))
|
|
11
24
|
});
|
|
12
|
-
};
|
|
25
|
+
});
|
|
13
26
|
|
|
14
27
|
export { Control as default };
|
|
15
|
-
//# sourceMappingURL=Control.js.map
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
2
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
3
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
4
|
+
import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
5
|
+
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
6
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
1
7
|
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
2
8
|
import React from 'react';
|
|
3
9
|
import { get } from 'lodash';
|
|
@@ -7,18 +13,24 @@ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (O
|
|
|
7
13
|
|
|
8
14
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
9
15
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
const CustomOption = _ref => {
|
|
17
|
+
let {
|
|
18
|
+
index,
|
|
19
|
+
data,
|
|
20
|
+
style,
|
|
21
|
+
isScrolling
|
|
22
|
+
} = _ref;
|
|
23
|
+
const {
|
|
24
|
+
items,
|
|
25
|
+
options: {
|
|
26
|
+
useTruncatedText
|
|
27
|
+
}
|
|
28
|
+
} = data;
|
|
29
|
+
const option = items[index];
|
|
18
30
|
|
|
19
|
-
|
|
20
|
-
style
|
|
21
|
-
onClick:
|
|
31
|
+
const optionProps = _objectSpread(_objectSpread({}, option.props.innerProps), {}, {
|
|
32
|
+
style,
|
|
33
|
+
onClick: e => {
|
|
22
34
|
e.stopPropagation();
|
|
23
35
|
if (option.props.innerProps.onClick) option.props.innerProps.onClick(e);
|
|
24
36
|
}
|
|
@@ -27,7 +39,7 @@ var CustomOption = function CustomOption(_ref) {
|
|
|
27
39
|
if (useTruncatedText && !isScrolling && get(option, 'props.selectProps.menuIsOpen')) {
|
|
28
40
|
return /*#__PURE__*/React.cloneElement(option, _objectSpread(_objectSpread({}, option.props), {}, {
|
|
29
41
|
innerProps: optionProps
|
|
30
|
-
}), /*#__PURE__*/
|
|
42
|
+
}), /*#__PURE__*/_jsx(DSTruncatedTooltipText, {
|
|
31
43
|
value: option.props.children
|
|
32
44
|
}));
|
|
33
45
|
}
|
|
@@ -38,4 +50,3 @@ var CustomOption = function CustomOption(_ref) {
|
|
|
38
50
|
};
|
|
39
51
|
|
|
40
52
|
export { CustomOption as default };
|
|
41
|
-
//# sourceMappingURL=CustomOption.js.map
|
|
@@ -1,35 +1,36 @@
|
|
|
1
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
2
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
3
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
4
|
+
import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
5
|
+
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
6
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
1
7
|
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
2
8
|
import React from 'react';
|
|
3
9
|
import DSTruncatedTooltipText from '@elliemae/ds-truncated-tooltip-text';
|
|
4
10
|
import { DSCheckbox } from '../../../Checkbox/DSCheckbox.js';
|
|
5
|
-
import '@babel/runtime/helpers/esm/extends';
|
|
6
|
-
import '@babel/runtime/helpers/esm/objectWithoutProperties';
|
|
7
|
-
import 'react-desc';
|
|
8
|
-
import 'uid';
|
|
9
|
-
import '@elliemae/ds-classnames';
|
|
10
|
-
import '@elliemae/ds-utilities';
|
|
11
|
-
import '../../../Checkbox/elements/CheckMark.js';
|
|
12
|
-
import 'styled-components';
|
|
13
|
-
import '../../../Checkbox/defaultProps.js';
|
|
14
|
-
import '../../../prop-types-45aa1e9c.js';
|
|
15
|
-
import '../../../Checkbox/props.js';
|
|
16
11
|
|
|
17
12
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
18
13
|
|
|
19
14
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
20
15
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
16
|
+
const CustomOptionMulti = _ref => {
|
|
17
|
+
let {
|
|
18
|
+
index,
|
|
19
|
+
data,
|
|
20
|
+
style,
|
|
21
|
+
isScrolling
|
|
22
|
+
} = _ref;
|
|
23
|
+
const {
|
|
24
|
+
items,
|
|
25
|
+
options: {
|
|
26
|
+
useTruncatedText
|
|
27
|
+
}
|
|
28
|
+
} = data;
|
|
29
|
+
const option = items[index];
|
|
29
30
|
|
|
30
|
-
|
|
31
|
-
style
|
|
32
|
-
onClick:
|
|
31
|
+
const optionProps = _objectSpread(_objectSpread({}, option.props.innerProps), {}, {
|
|
32
|
+
style,
|
|
33
|
+
onClick: e => {
|
|
33
34
|
e.stopPropagation();
|
|
34
35
|
if (option.props.innerProps.onClick) option.props.innerProps.onClick(e);
|
|
35
36
|
}
|
|
@@ -38,12 +39,12 @@ var CustomOptionMulti = function CustomOptionMulti(_ref) {
|
|
|
38
39
|
if (useTruncatedText && !isScrolling) {
|
|
39
40
|
return /*#__PURE__*/React.cloneElement(option, _objectSpread(_objectSpread({}, option.props), {}, {
|
|
40
41
|
innerProps: optionProps
|
|
41
|
-
}), /*#__PURE__*/
|
|
42
|
+
}), /*#__PURE__*/_jsx(DSTruncatedTooltipText, {
|
|
42
43
|
value: option.props.children
|
|
43
44
|
}));
|
|
44
45
|
}
|
|
45
46
|
|
|
46
|
-
|
|
47
|
+
let allSelected = false;
|
|
47
48
|
|
|
48
49
|
if (option.props.value === 'SELECT_ALL_COMBOBOX') {
|
|
49
50
|
if (option.props.selectProps.value.length === option.props.selectProps.options.length - 1 || option.props.selectProps.value.length === option.props.selectProps.options.length) {
|
|
@@ -53,7 +54,7 @@ var CustomOptionMulti = function CustomOptionMulti(_ref) {
|
|
|
53
54
|
|
|
54
55
|
return /*#__PURE__*/React.cloneElement(option, _objectSpread(_objectSpread({}, option.props), {}, {
|
|
55
56
|
innerProps: optionProps,
|
|
56
|
-
children: /*#__PURE__*/
|
|
57
|
+
children: /*#__PURE__*/_jsx("div", {}, void 0, /*#__PURE__*/_jsx(DSCheckbox, {
|
|
57
58
|
checked: option.props.isSelected || allSelected,
|
|
58
59
|
labelText: option.props.children
|
|
59
60
|
}))
|
|
@@ -61,4 +62,3 @@ var CustomOptionMulti = function CustomOptionMulti(_ref) {
|
|
|
61
62
|
};
|
|
62
63
|
|
|
63
64
|
export { CustomOptionMulti as default };
|
|
64
|
-
//# sourceMappingURL=CustomOptionMulti.js.map
|
|
@@ -1,38 +1,52 @@
|
|
|
1
|
-
import
|
|
1
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
2
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
3
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
4
|
+
import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
5
|
+
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
6
|
+
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
7
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
2
8
|
import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
|
|
3
|
-
import
|
|
9
|
+
import 'react';
|
|
4
10
|
import { ChevronSmallDown } from '@elliemae/ds-icons';
|
|
5
11
|
import DSButton from '@elliemae/ds-button';
|
|
12
|
+
import { jsx } from 'react/jsx-runtime';
|
|
6
13
|
|
|
7
|
-
var
|
|
14
|
+
var _ChevronSmallDown;
|
|
8
15
|
|
|
9
|
-
|
|
10
|
-
var innerRef = _ref.innerRef,
|
|
11
|
-
onKeyDown = _ref.onKeyDown;
|
|
12
|
-
_ref.clearValue;
|
|
13
|
-
_ref.getStyles;
|
|
14
|
-
_ref.getValue;
|
|
15
|
-
_ref.setValue;
|
|
16
|
-
_ref.hasStyle;
|
|
17
|
-
_ref.hasValue;
|
|
18
|
-
_ref.isMulti;
|
|
19
|
-
_ref.isRtl;
|
|
20
|
-
_ref.isDisabled;
|
|
21
|
-
_ref.isFocused;
|
|
22
|
-
_ref.selectOption;
|
|
23
|
-
_ref.selectProps;
|
|
24
|
-
_ref.innerProps;
|
|
25
|
-
var rest = _objectWithoutProperties(_ref, _excluded);
|
|
16
|
+
const _excluded = ["innerRef", "onKeyDown", "clearValue", "getStyles", "getValue", "setValue", "hasStyle", "hasValue", "isMulti", "isRtl", "isDisabled", "isFocused", "selectOption", "selectProps", "innerProps"];
|
|
26
17
|
|
|
27
|
-
|
|
18
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
19
|
+
|
|
20
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
21
|
+
|
|
22
|
+
const DropdownIndicator = _ref => {
|
|
23
|
+
let {
|
|
24
|
+
innerRef,
|
|
25
|
+
onKeyDown,
|
|
26
|
+
clearValue,
|
|
27
|
+
getStyles,
|
|
28
|
+
getValue,
|
|
29
|
+
setValue,
|
|
30
|
+
hasStyle,
|
|
31
|
+
hasValue,
|
|
32
|
+
isMulti,
|
|
33
|
+
isRtl,
|
|
34
|
+
isDisabled,
|
|
35
|
+
isFocused,
|
|
36
|
+
selectOption,
|
|
37
|
+
selectProps,
|
|
38
|
+
innerProps
|
|
39
|
+
} = _ref,
|
|
40
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
41
|
+
|
|
42
|
+
return /*#__PURE__*/jsx(DSButton, _objectSpread({
|
|
28
43
|
"aria-label": "dropdown-indicator",
|
|
29
44
|
buttonType: "text",
|
|
30
45
|
className: "dropdown-indicator",
|
|
31
|
-
icon: /*#__PURE__*/
|
|
46
|
+
icon: _ChevronSmallDown || (_ChevronSmallDown = /*#__PURE__*/_jsx(ChevronSmallDown, {})),
|
|
32
47
|
innerRef: innerRef,
|
|
33
48
|
onKeyDown: onKeyDown
|
|
34
49
|
}, rest));
|
|
35
50
|
};
|
|
36
51
|
|
|
37
52
|
export { DropdownIndicator as default };
|
|
38
|
-
//# sourceMappingURL=DropdownIndicator.js.map
|
|
@@ -1,5 +1,12 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
2
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
3
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
4
|
+
import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
5
|
+
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
6
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
7
|
+
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
8
|
+
import 'core-js/modules/web.dom-collections.iterator.js';
|
|
9
|
+
import { useRef, useState, useEffect } from 'react';
|
|
3
10
|
import { components } from 'react-select';
|
|
4
11
|
import { FixedSizeList } from 'react-window';
|
|
5
12
|
import memoize from 'memoize-one';
|
|
@@ -7,93 +14,82 @@ import { debounce } from 'lodash';
|
|
|
7
14
|
import CustomOption from './CustomOption.js';
|
|
8
15
|
import CustomOptionMulti from './CustomOptionMulti.js';
|
|
9
16
|
import MultiSelectHeader from './MultiSelectHeader.js';
|
|
10
|
-
import '
|
|
11
|
-
import '@elliemae/ds-truncated-tooltip-text';
|
|
12
|
-
import '../../../Checkbox/DSCheckbox.js';
|
|
13
|
-
import '@babel/runtime/helpers/esm/extends';
|
|
14
|
-
import '@babel/runtime/helpers/esm/objectWithoutProperties';
|
|
15
|
-
import 'react-desc';
|
|
16
|
-
import 'uid';
|
|
17
|
-
import '@elliemae/ds-classnames';
|
|
18
|
-
import '@elliemae/ds-utilities';
|
|
19
|
-
import '../../../Checkbox/elements/CheckMark.js';
|
|
20
|
-
import 'styled-components';
|
|
21
|
-
import '../../../Checkbox/defaultProps.js';
|
|
22
|
-
import '../../../prop-types-45aa1e9c.js';
|
|
23
|
-
import '../../../Checkbox/props.js';
|
|
17
|
+
import { jsx } from 'react/jsx-runtime';
|
|
24
18
|
|
|
25
|
-
var
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
19
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
20
|
+
|
|
21
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
22
|
+
const createItemData = memoize((items, options) => ({
|
|
23
|
+
items,
|
|
24
|
+
options
|
|
25
|
+
}));
|
|
31
26
|
|
|
32
|
-
|
|
27
|
+
const scrollTo = (listRef, type) => {
|
|
33
28
|
if (listRef && listRef.current && listRef.current.props) {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
29
|
+
const {
|
|
30
|
+
items
|
|
31
|
+
} = listRef.current.props.itemData;
|
|
32
|
+
const index = items.findIndex(item => item.props.isFocused);
|
|
38
33
|
listRef.current.scrollToItem(index, type);
|
|
39
34
|
}
|
|
40
35
|
}; // const scrollToMouse = debounce(scrollTo, 500)
|
|
41
36
|
|
|
42
37
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
var MenuList = function MenuList(props) {
|
|
46
|
-
var listRef = useRef(null);
|
|
38
|
+
const scrollToKeyword = debounce(scrollTo, 50);
|
|
47
39
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
setInside = _useState2[1];
|
|
40
|
+
const MenuList = props => {
|
|
41
|
+
const listRef = useRef(null);
|
|
42
|
+
const [inside, setInside] = useState(false);
|
|
52
43
|
|
|
53
|
-
|
|
44
|
+
const handleKeyDown = () => {
|
|
54
45
|
setInside(false);
|
|
55
46
|
};
|
|
56
47
|
|
|
57
|
-
useEffect(
|
|
48
|
+
useEffect(() => {
|
|
58
49
|
window.addEventListener('keydown', handleKeyDown);
|
|
59
|
-
return
|
|
50
|
+
return () => {
|
|
60
51
|
window.removeEventListener('keydown', handleKeyDown);
|
|
61
52
|
};
|
|
62
53
|
});
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
54
|
+
const {
|
|
55
|
+
children: options,
|
|
56
|
+
selectProps,
|
|
57
|
+
isMulti
|
|
58
|
+
} = props;
|
|
59
|
+
const {
|
|
60
|
+
customMenuItemOptions
|
|
61
|
+
} = selectProps;
|
|
62
|
+
const {
|
|
63
|
+
itemSize = 35
|
|
64
|
+
} = customMenuItemOptions;
|
|
65
|
+
const itemData = createItemData(options, customMenuItemOptions);
|
|
66
|
+
const maxOptionsScreen = 10;
|
|
67
|
+
const safeOptionLength = options.length || 1;
|
|
68
|
+
const height = itemSize * (safeOptionLength < maxOptionsScreen ? safeOptionLength : maxOptionsScreen);
|
|
69
|
+
const RenderOption = !isMulti ? CustomOption : CustomOptionMulti;
|
|
70
|
+
if (!options.length) return /*#__PURE__*/jsx(components.MenuList, _objectSpread({}, props));
|
|
75
71
|
|
|
76
72
|
if (listRef && listRef.current && !inside) {
|
|
77
73
|
scrollToKeyword(listRef, 'center'); // use autoScroll
|
|
78
74
|
}
|
|
79
75
|
|
|
80
|
-
return /*#__PURE__*/
|
|
81
|
-
onMouseLeave:
|
|
76
|
+
return /*#__PURE__*/_jsx("div", {
|
|
77
|
+
onMouseLeave: () => {
|
|
82
78
|
setInside(false);
|
|
83
79
|
}
|
|
84
|
-
}, isMulti && /*#__PURE__*/
|
|
80
|
+
}, void 0, isMulti && /*#__PURE__*/jsx(MultiSelectHeader, _objectSpread({}, props)), /*#__PURE__*/jsx(FixedSizeList, {
|
|
85
81
|
ref: listRef,
|
|
86
82
|
className: "combobox-menu-list ".concat(isMulti && 'combobox-menu-list-is-multi'),
|
|
87
83
|
height: height,
|
|
88
84
|
itemCount: options.length,
|
|
89
85
|
itemData: itemData,
|
|
90
86
|
itemSize: itemSize,
|
|
91
|
-
onScroll:
|
|
87
|
+
onScroll: () => {
|
|
92
88
|
setInside(true);
|
|
93
89
|
},
|
|
94
|
-
useIsScrolling: true
|
|
95
|
-
|
|
90
|
+
useIsScrolling: true,
|
|
91
|
+
children: RenderOption
|
|
92
|
+
}));
|
|
96
93
|
};
|
|
97
94
|
|
|
98
95
|
export { MenuList as default };
|
|
99
|
-
//# sourceMappingURL=MenuList.js.map
|
|
@@ -1,15 +1,14 @@
|
|
|
1
|
-
import
|
|
1
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
2
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
3
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
4
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
5
|
+
import 'react';
|
|
2
6
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
var count = props.children.filter(function (child) {
|
|
7
|
-
return child.props.isSelected;
|
|
8
|
-
}).length;
|
|
9
|
-
return /*#__PURE__*/React.createElement("div", {
|
|
7
|
+
const MultiSelectHeader = props => {
|
|
8
|
+
const count = props.children.filter(child => child.props.isSelected).length;
|
|
9
|
+
return /*#__PURE__*/_jsx("div", {
|
|
10
10
|
className: "combobox-multi-select-header"
|
|
11
|
-
}, "".concat(count, " selected"));
|
|
11
|
+
}, void 0, "".concat(count, " selected"));
|
|
12
12
|
};
|
|
13
13
|
|
|
14
14
|
export { MultiSelectHeader as default };
|
|
15
|
-
//# sourceMappingURL=MultiSelectHeader.js.map
|
|
@@ -1,14 +1,16 @@
|
|
|
1
|
-
import
|
|
1
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
2
|
+
import 'react';
|
|
2
3
|
import { PopperPositions } from '@elliemae/ds-popper';
|
|
3
4
|
import DSTruncatedTooltipText from '@elliemae/ds-truncated-tooltip-text';
|
|
4
5
|
|
|
5
6
|
function MultiValueLabel(_ref) {
|
|
6
|
-
|
|
7
|
-
|
|
7
|
+
let {
|
|
8
|
+
children
|
|
9
|
+
} = _ref;
|
|
10
|
+
return /*#__PURE__*/_jsx(DSTruncatedTooltipText, {
|
|
8
11
|
tooltipPlacement: PopperPositions.TOP,
|
|
9
12
|
value: children
|
|
10
13
|
});
|
|
11
14
|
}
|
|
12
15
|
|
|
13
16
|
export { MultiValueLabel as default };
|
|
14
|
-
//# sourceMappingURL=MultiValueLabel.js.map
|
|
@@ -1,16 +1,30 @@
|
|
|
1
|
-
import
|
|
1
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
2
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
3
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
4
|
+
import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
5
|
+
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
6
|
+
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
7
|
+
import 'react';
|
|
2
8
|
import { get } from 'lodash';
|
|
3
9
|
import { components } from 'react-select';
|
|
10
|
+
import { jsx } from 'react/jsx-runtime';
|
|
11
|
+
|
|
12
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
13
|
+
|
|
14
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
4
15
|
|
|
5
16
|
function MultiValueRemove(props) {
|
|
6
|
-
|
|
17
|
+
const value = get(props, 'selectProps.value');
|
|
7
18
|
|
|
8
19
|
if (Array.isArray(value) && value.length > 1) {
|
|
9
|
-
return /*#__PURE__*/
|
|
20
|
+
return /*#__PURE__*/jsx(components.MultiValueRemove, _objectSpread(_objectSpread({}, props), {}, {
|
|
21
|
+
children: ","
|
|
22
|
+
}));
|
|
10
23
|
}
|
|
11
24
|
|
|
12
|
-
return /*#__PURE__*/
|
|
25
|
+
return /*#__PURE__*/jsx(components.MultiValueRemove, _objectSpread(_objectSpread({}, props), {}, {
|
|
26
|
+
children: " "
|
|
27
|
+
}));
|
|
13
28
|
}
|
|
14
29
|
|
|
15
30
|
export { MultiValueRemove as default };
|
|
16
|
-
//# sourceMappingURL=MultiValueRemove.js.map
|