@sprinklrjs/spaceweb 11.0.0 → 12.14.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/allComponentsAndUtilities.d.ts +1 -0
- package/allComponentsAndUtilities.js +2 -1
- package/asyncSelect/asyncSelect.d.ts +4 -2
- package/asyncSelect/asyncSelect.js +43 -108
- package/asyncSelect/groupedAsyncSelect.d.ts +5 -0
- package/asyncSelect/groupedAsyncSelect.js +41 -0
- package/asyncSelect/helpers.d.ts +8 -2
- package/asyncSelect/helpers.js +35 -4
- package/asyncSelect/hooks/useAsyncOptionHandlers.d.ts +16 -11
- package/asyncSelect/hooks/useAsyncOptionHandlers.js +73 -26
- package/asyncSelect/hooks/useAsyncSelect.d.ts +10 -0
- package/asyncSelect/hooks/useAsyncSelect.js +182 -0
- package/asyncSelect/hooks/useResolveSelectedOptions.d.ts +10 -7
- package/asyncSelect/hooks/useResolveSelectedOptions.js +59 -47
- package/asyncSelect/index.d.ts +4 -1
- package/asyncSelect/index.js +8 -0
- package/asyncSelect/types.d.ts +61 -9
- package/avatar/avatar.js +12 -2
- package/avatar/styled-component.js +7 -22
- package/badge/styled-component.js +10 -8
- package/banner/banner.js +1 -1
- package/breadcrumb/breadcrumb-item.d.ts +7 -0
- package/breadcrumb/breadcrumb-item.js +41 -0
- package/breadcrumb/breadcrumb.d.ts +7 -0
- package/breadcrumb/breadcrumb.js +29 -0
- package/breadcrumb/index.d.ts +4 -0
- package/breadcrumb/index.js +17 -0
- package/breadcrumb/package.json +4 -0
- package/breadcrumb/styled-components.d.ts +7 -0
- package/breadcrumb/styled-components.js +19 -0
- package/breadcrumb/types.d.ts +38 -0
- package/breadcrumb/types.js +2 -0
- package/button/Button.d.ts +2 -0
- package/button/Button.js +13 -1
- package/button/IconButton/IconButton.d.ts +2 -4
- package/button/IconButton/IconButton.js +5 -2
- package/button/IconButton/types.d.ts +10 -1
- package/button/basewebAdapter.d.ts +3 -1
- package/button/styled-components.js +30 -25
- package/button/types.d.ts +3 -0
- package/button-group/ButtonGroup.d.ts +1 -0
- package/button-group/ButtonGroup.js +9 -5
- package/button-group/StatefulButtonGroup.d.ts +1 -0
- package/button-group/styled-components.d.ts +34 -0
- package/button-group/styled-components.js +57 -9
- package/button-group/types.d.ts +2 -0
- package/checkbox/basewebAdapters.js +6 -1
- package/color-picker/ColorPalette.d.ts +9 -0
- package/color-picker/ColorPalette.js +26 -0
- package/color-picker/ColorPicker.d.ts +3 -0
- package/color-picker/ColorPicker.js +35 -0
- package/color-picker/Swatch.d.ts +12 -0
- package/color-picker/Swatch.js +40 -0
- package/color-picker/colors.d.ts +1 -0
- package/color-picker/colors.js +109 -0
- package/color-picker/getContrastRatio.d.ts +1 -0
- package/color-picker/getContrastRatio.js +23 -0
- package/color-picker/index.d.ts +3 -0
- package/color-picker/index.js +7 -0
- package/color-picker/locale.d.ts +3 -0
- package/color-picker/locale.js +2 -0
- package/color-picker/package.json +4 -0
- package/color-picker/styled-component.d.ts +1 -0
- package/color-picker/styled-component.js +5 -0
- package/color-picker/types.d.ts +15 -0
- package/color-picker/types.js +2 -0
- package/currency/Currency.d.ts +3 -0
- package/currency/Currency.js +14 -0
- package/currency/constants.d.ts +3 -0
- package/currency/constants.js +8 -0
- package/currency/index.d.ts +5 -0
- package/currency/index.js +12 -0
- package/currency/package.json +4 -0
- package/currency/types.d.ts +7 -0
- package/currency/types.js +2 -0
- package/currency/useCurrency.d.ts +2 -0
- package/currency/useCurrency.js +12 -0
- package/currency/utils.d.ts +8 -0
- package/currency/utils.js +11 -0
- package/date-input/Before.d.ts +4 -2
- package/date-input/Before.js +4 -4
- package/date-input/CalendarIconButton.js +7 -1
- package/date-input/DateInput.d.ts +1 -1
- package/date-input/DateInput.js +46 -25
- package/date-input/styled-components.d.ts +2 -2
- package/date-input/styled-components.js +10 -8
- package/date-input/types.d.ts +4 -2
- package/date-picker/Calendar.js +5 -3
- package/date-picker/DateInput.js +16 -14
- package/date-picker/DatePickerContent.d.ts +9 -3
- package/date-picker/DatePickerContent.js +59 -8
- package/date-picker/DatePickerInput.js +9 -6
- package/date-picker/StatelessDatePicker.js +35 -16
- package/date-picker/locale.d.ts +2 -0
- package/date-picker/stateful-container.js +11 -8
- package/date-picker/styled-components.js +53 -3
- package/date-picker/types.d.ts +10 -1
- package/date-picker/utils.d.ts +3 -1
- package/date-picker/utils.js +8 -3
- package/date-time/DateTime.d.ts +3 -0
- package/date-time/DateTime.js +12 -0
- package/date-time/index.d.ts +3 -0
- package/date-time/index.js +9 -0
- package/date-time/package.json +4 -0
- package/date-time/types.d.ts +21 -0
- package/date-time/types.js +18 -0
- package/date-time/useDateTime.d.ts +2 -0
- package/date-time/useDateTime.js +13 -0
- package/date-time/variants.d.ts +4 -0
- package/date-time/variants.js +87 -0
- package/esm/allComponentsAndUtilities.d.ts +1 -0
- package/esm/allComponentsAndUtilities.js +2 -0
- package/esm/asyncSelect/asyncSelect.d.ts +4 -2
- package/esm/asyncSelect/asyncSelect.js +46 -111
- package/esm/asyncSelect/groupedAsyncSelect.d.ts +5 -0
- package/esm/asyncSelect/groupedAsyncSelect.js +37 -0
- package/esm/asyncSelect/helpers.d.ts +8 -2
- package/esm/asyncSelect/helpers.js +31 -3
- package/esm/asyncSelect/hooks/useAsyncOptionHandlers.d.ts +16 -11
- package/esm/asyncSelect/hooks/useAsyncOptionHandlers.js +76 -29
- package/esm/asyncSelect/hooks/useAsyncSelect.d.ts +10 -0
- package/esm/asyncSelect/hooks/useAsyncSelect.js +178 -0
- package/esm/asyncSelect/hooks/useResolveSelectedOptions.d.ts +10 -7
- package/esm/asyncSelect/hooks/useResolveSelectedOptions.js +62 -50
- package/esm/asyncSelect/index.d.ts +4 -1
- package/esm/asyncSelect/index.js +3 -0
- package/esm/asyncSelect/types.d.ts +61 -9
- package/esm/avatar/avatar.js +12 -2
- package/esm/avatar/styled-component.js +7 -22
- package/esm/badge/styled-component.js +10 -8
- package/esm/banner/banner.js +1 -1
- package/esm/breadcrumb/breadcrumb-item.d.ts +7 -0
- package/esm/breadcrumb/breadcrumb-item.js +39 -0
- package/esm/breadcrumb/breadcrumb.d.ts +7 -0
- package/esm/breadcrumb/breadcrumb.js +27 -0
- package/esm/breadcrumb/index.d.ts +4 -0
- package/esm/breadcrumb/index.js +3 -0
- package/esm/breadcrumb/styled-components.d.ts +7 -0
- package/esm/breadcrumb/styled-components.js +15 -0
- package/esm/breadcrumb/types.d.ts +38 -0
- package/esm/breadcrumb/types.js +1 -0
- package/esm/button/Button.d.ts +2 -0
- package/esm/button/Button.js +13 -1
- package/esm/button/IconButton/IconButton.d.ts +2 -4
- package/esm/button/IconButton/IconButton.js +5 -2
- package/esm/button/IconButton/types.d.ts +10 -1
- package/esm/button/basewebAdapter.d.ts +3 -1
- package/esm/button/styled-components.js +30 -25
- package/esm/button/types.d.ts +3 -0
- package/esm/button-group/ButtonGroup.d.ts +1 -0
- package/esm/button-group/ButtonGroup.js +9 -5
- package/esm/button-group/StatefulButtonGroup.d.ts +1 -0
- package/esm/button-group/styled-components.d.ts +34 -0
- package/esm/button-group/styled-components.js +55 -8
- package/esm/button-group/types.d.ts +2 -0
- package/esm/checkbox/basewebAdapters.js +6 -1
- package/esm/color-picker/ColorPalette.d.ts +9 -0
- package/esm/color-picker/ColorPalette.js +22 -0
- package/esm/color-picker/ColorPicker.d.ts +3 -0
- package/esm/color-picker/ColorPicker.js +31 -0
- package/esm/color-picker/Swatch.d.ts +12 -0
- package/esm/color-picker/Swatch.js +37 -0
- package/esm/color-picker/colors.d.ts +1 -0
- package/esm/color-picker/colors.js +106 -0
- package/esm/color-picker/getContrastRatio.d.ts +1 -0
- package/esm/color-picker/getContrastRatio.js +19 -0
- package/esm/color-picker/index.d.ts +3 -0
- package/esm/color-picker/index.js +2 -0
- package/esm/color-picker/locale.d.ts +3 -0
- package/esm/color-picker/locale.js +1 -0
- package/esm/color-picker/styled-component.d.ts +1 -0
- package/esm/color-picker/styled-component.js +2 -0
- package/esm/color-picker/types.d.ts +15 -0
- package/esm/color-picker/types.js +1 -0
- package/esm/currency/Currency.d.ts +3 -0
- package/esm/currency/Currency.js +10 -0
- package/esm/currency/constants.d.ts +3 -0
- package/esm/currency/constants.js +5 -0
- package/esm/currency/index.d.ts +5 -0
- package/esm/currency/index.js +5 -0
- package/esm/currency/types.d.ts +7 -0
- package/esm/currency/types.js +1 -0
- package/esm/currency/useCurrency.d.ts +2 -0
- package/esm/currency/useCurrency.js +8 -0
- package/esm/currency/utils.d.ts +8 -0
- package/esm/currency/utils.js +7 -0
- package/esm/date-input/Before.d.ts +4 -2
- package/esm/date-input/Before.js +4 -4
- package/esm/date-input/CalendarIconButton.js +7 -1
- package/esm/date-input/DateInput.d.ts +1 -1
- package/esm/date-input/DateInput.js +47 -26
- package/esm/date-input/styled-components.d.ts +2 -2
- package/esm/date-input/styled-components.js +10 -7
- package/esm/date-input/types.d.ts +4 -2
- package/esm/date-picker/Calendar.js +5 -3
- package/esm/date-picker/DateInput.js +17 -15
- package/esm/date-picker/DatePickerContent.d.ts +9 -3
- package/esm/date-picker/DatePickerContent.js +60 -9
- package/esm/date-picker/DatePickerInput.js +9 -6
- package/esm/date-picker/StatelessDatePicker.js +35 -16
- package/esm/date-picker/locale.d.ts +2 -0
- package/esm/date-picker/stateful-container.js +11 -8
- package/esm/date-picker/styled-components.js +53 -3
- package/esm/date-picker/types.d.ts +10 -1
- package/esm/date-picker/utils.d.ts +3 -1
- package/esm/date-picker/utils.js +9 -4
- package/esm/date-time/DateTime.d.ts +3 -0
- package/esm/date-time/DateTime.js +8 -0
- package/esm/date-time/index.d.ts +3 -0
- package/esm/date-time/index.js +3 -0
- package/esm/date-time/types.d.ts +21 -0
- package/esm/date-time/types.js +15 -0
- package/esm/date-time/useDateTime.d.ts +2 -0
- package/esm/date-time/useDateTime.js +9 -0
- package/esm/date-time/variants.d.ts +4 -0
- package/esm/date-time/variants.js +84 -0
- package/esm/form-control/form-control.d.ts +1 -1
- package/esm/form-control/form-control.js +17 -12
- package/esm/form-control/styled-component.js +17 -6
- package/esm/helpers/ClearIconButton.js +3 -1
- package/esm/helpers/StyledTombstone.d.ts +1 -0
- package/esm/helpers/StyledTombstone.js +17 -0
- package/esm/helpers/baseui/useConvertOverrides.js +6 -1
- package/esm/helpers/commonStyles.js +3 -6
- package/esm/helpers/index.d.ts +1 -0
- package/esm/helpers/index.js +8 -0
- package/esm/helpers/themeHelpers.d.ts +1 -0
- package/esm/helpers/themeHelpers.js +13 -0
- package/esm/hooks/useAutoFocus.js +6 -0
- package/esm/hooks/useMatchMedia.js +13 -2
- package/esm/icon/components/alert-solid.js +2 -0
- package/esm/icon/components/alert.js +2 -0
- package/esm/icon/components/calendar-solid.js +2 -0
- package/esm/icon/components/chevron-down.js +2 -0
- package/esm/icon/components/chevron-left.d.ts +3 -0
- package/esm/icon/components/chevron-left.js +8 -0
- package/esm/icon/components/chevron-right.d.ts +3 -0
- package/esm/icon/components/chevron-right.js +8 -0
- package/esm/icon/components/close.js +2 -0
- package/esm/icon/components/error-clr.js +2 -0
- package/esm/icon/components/error-solid.js +2 -0
- package/esm/icon/components/error.js +2 -0
- package/esm/icon/components/imagePreview.js +2 -0
- package/esm/icon/components/info.js +2 -0
- package/esm/icon/components/play-video.js +2 -0
- package/esm/icon/components/reset-color.d.ts +3 -0
- package/esm/icon/components/reset-color.js +8 -0
- package/esm/icon/components/search.js +2 -0
- package/esm/icon/components/tick.js +2 -0
- package/esm/icon/components/tickCircle-solid.js +2 -0
- package/esm/icon/components/user.js +2 -0
- package/esm/icon/components/video-non-playable.js +2 -0
- package/esm/index.d.ts +2 -0
- package/esm/index.js +2 -0
- package/esm/input/basewebAdapters.js +18 -3
- package/esm/input/styled-components.js +8 -6
- package/esm/input/types.d.ts +4 -1
- package/esm/layer/useLayersContextValue.js +3 -2
- package/esm/list/avatar-list-item.d.ts +12 -22
- package/esm/list/avatar-list-item.js +6 -4
- package/esm/list/index.d.ts +1 -1
- package/esm/list/index.js +1 -1
- package/esm/list/list-item.d.ts +3 -1
- package/esm/list/list-item.js +9 -6
- package/esm/list/styled-component.d.ts +1 -0
- package/esm/list/styled-component.js +23 -15
- package/esm/list/types.d.ts +3 -0
- package/esm/locale/en_US.js +26 -0
- package/esm/locale/types.d.ts +19 -0
- package/esm/menu/MenuContext.d.ts +2 -1
- package/esm/menu/MenuContext.js +1 -0
- package/esm/menu/menu-item.d.ts +4 -1
- package/esm/menu/menu-item.js +11 -11
- package/esm/menu/menu.d.ts +1 -0
- package/esm/menu/menu.js +11 -11
- package/esm/menu/types.d.ts +1 -0
- package/esm/menu/useKeyboardNavigation.d.ts +6 -3
- package/esm/menu/useKeyboardNavigation.js +21 -14
- package/esm/menu/useStatefulMenu.d.ts +5 -2
- package/esm/menu/useStatefulMenu.js +14 -8
- package/esm/modal/modal.js +3 -1
- package/esm/modal/overrides.d.ts +2 -2
- package/esm/modal/overrides.js +6 -7
- package/esm/modal/styled-components.js +7 -7
- package/esm/number/Number.d.ts +3 -0
- package/esm/number/Number.js +10 -0
- package/esm/number/constants.d.ts +2 -0
- package/esm/number/constants.js +4 -0
- package/esm/number/index.d.ts +5 -0
- package/esm/number/index.js +5 -0
- package/esm/number/types.d.ts +6 -0
- package/esm/number/types.js +1 -0
- package/esm/number/useNumber.d.ts +2 -0
- package/esm/number/useNumber.js +8 -0
- package/esm/overrides/index.d.ts +1 -1
- package/esm/overrides/index.js +1 -1
- package/esm/overrides/mergeOverrides.d.ts +3 -2
- package/esm/overrides/mergeOverrides.js +1 -1
- package/esm/payment-card/basewebAdapters.d.ts +2 -0
- package/esm/payment-card/basewebAdapters.js +23 -1
- package/esm/payment-card/styled-components.js +25 -6
- package/esm/phone-input/country-select-container.js +1 -1
- package/esm/phone-input/country-select.js +3 -3
- package/esm/phone-input/default-props.d.ts +5 -5
- package/esm/phone-input/default-props.js +7 -7
- package/esm/phone-input/flag-container.js +1 -1
- package/esm/phone-input/phone-input.d.ts +0 -4
- package/esm/phone-input/phone-input.js +20 -12
- package/esm/phone-input/stateful-phone-input-container.js +4 -3
- package/esm/phone-input/stateful-phone-input.d.ts +0 -4
- package/esm/phone-input/styled-components.d.ts +9 -1
- package/esm/phone-input/styled-components.js +21 -7
- package/esm/phone-input/types.d.ts +2 -1
- package/esm/phone-input/utils.d.ts +5 -1
- package/esm/phone-input/utils.js +6 -1
- package/esm/popover/adapter.d.ts +1 -0
- package/esm/popover/adapter.js +15 -0
- package/esm/popover/overrides.js +8 -19
- package/esm/popover/popover.d.ts +1 -0
- package/esm/popover/popover.js +9 -4
- package/esm/popover/stateful-popover.js +2 -2
- package/esm/popover/types.d.ts +3 -0
- package/esm/popover/utils.d.ts +12 -0
- package/esm/popover/utils.js +9 -0
- package/esm/progress/linear/styled-component.d.ts +1 -1
- package/esm/progress/linear/styled-component.js +5 -5
- package/esm/radio/styled-components.js +5 -5
- package/esm/search/index.d.ts +1 -0
- package/esm/search/index.js +1 -0
- package/esm/search/search.d.ts +1 -1
- package/esm/search/search.js +15 -6
- package/esm/search/stateful-search.d.ts +3 -0
- package/esm/search/stateful-search.js +15 -0
- package/esm/search/styled-components.d.ts +1 -10
- package/esm/search/styled-components.js +54 -24
- package/esm/search/types.d.ts +8 -2
- package/esm/select/base-select.d.ts +22 -5
- package/esm/select/base-select.js +174 -82
- package/esm/select/constants.d.ts +3 -0
- package/esm/select/constants.js +3 -1
- package/esm/select/default-props.d.ts +1 -0
- package/esm/select/default-props.js +3 -0
- package/esm/select/index.d.ts +2 -2
- package/esm/select/index.js +2 -2
- package/esm/select/locale.d.ts +4 -0
- package/esm/select/mobileSelect/MobileSheet.js +3 -1
- package/esm/select/multi-value.js +22 -12
- package/esm/select/overlaySelect/OverlaySelect.js +1 -0
- package/esm/select/overlaySelect/hooks/useOverlaySelectOverrides.d.ts +2 -1
- package/esm/select/overlaySelect/hooks/useOverlaySelectOverrides.js +13 -16
- package/esm/select/overrides.d.ts +3 -0
- package/esm/select/overrides.js +19 -6
- package/esm/select/select.d.ts +1 -0
- package/esm/select/select.js +9 -3
- package/esm/select/selectMenuAdapter/CollapsibleSelectMenu.d.ts +118 -0
- package/esm/select/selectMenuAdapter/CollapsibleSelectMenu.js +70 -0
- package/esm/select/selectMenuAdapter/SelectMenuAdapter.d.ts +2 -34
- package/esm/select/selectMenuAdapter/SelectMenuAdapter.js +3 -3
- package/esm/select/selectMenuAdapter/SelectMenuItem.d.ts +4 -1
- package/esm/select/selectMenuAdapter/hooks/useGetExpandedGroup.d.ts +6 -0
- package/esm/select/selectMenuAdapter/hooks/useGetExpandedGroup.js +16 -0
- package/esm/select/selectMenuAdapter/types.d.ts +42 -0
- package/esm/select/selectMenuAdapter/types.js +1 -0
- package/esm/select/stateful-select.d.ts +1 -0
- package/esm/select/styled-component.d.ts +10 -1
- package/esm/select/styled-component.js +39 -15
- package/esm/select/types.d.ts +23 -1
- package/esm/select/types.js +1 -0
- package/esm/select/utils/default-filter-options.d.ts +2 -1
- package/esm/select/utils/default-filter-options.js +5 -1
- package/esm/select/utils/hidden-element.d.ts +6 -0
- package/esm/select/utils/hidden-element.js +16 -0
- package/esm/select/utils/merge-options.d.ts +2 -0
- package/esm/select/utils/merge-options.js +18 -0
- package/esm/select/utils/test-utils.d.ts +1 -0
- package/esm/select/utils/test-utils.js +7 -0
- package/esm/slider/styled-components.js +4 -4
- package/esm/snackbar/Snackbar.js +12 -12
- package/esm/snackbar/styled-component.js +9 -6
- package/esm/spacewebProvider/SpacewebProvider.d.ts +2 -0
- package/esm/spacewebProvider/SpacewebProvider.js +9 -9
- package/esm/stack/stack.js +6 -13
- package/esm/style/_buildUtils.d.ts +1 -1
- package/esm/style/_buildUtils.js +3 -1
- package/esm/style/_parseStyle.js +7 -2
- package/esm/style/useMemoizedStyletron.js +6 -1
- package/esm/switch/styled-components.js +3 -3
- package/esm/tag/avatar-tag.js +23 -16
- package/esm/tag/styled-components.js +32 -27
- package/esm/tag/tag.js +20 -12
- package/esm/tag/types.d.ts +2 -2
- package/esm/tag/utils.d.ts +50 -0
- package/esm/tag/utils.js +64 -0
- package/esm/textarea/basewebAdapters.js +3 -3
- package/esm/textarea/textarea.js +3 -3
- package/esm/textarea/types.d.ts +2 -2
- package/esm/theme/Provider.d.ts +10 -0
- package/esm/theme/Provider.js +61 -0
- package/esm/theme/context.d.ts +1 -10
- package/esm/theme/context.js +1 -61
- package/esm/theme/index.d.ts +1 -0
- package/esm/theme/index.js +1 -0
- package/esm/time-picker/TimePicker.js +4 -1
- package/esm/time-range-picker/RangeSelectorContainer.js +1 -1
- package/esm/time-range-picker/TimeRangePicker.js +20 -12
- package/esm/time-range-picker/index.d.ts +1 -1
- package/esm/time-range-picker/index.js +1 -1
- package/esm/time-range-picker/types.d.ts +1 -2
- package/esm/time-range-picker/utils.d.ts +33 -4
- package/esm/time-range-picker/utils.js +49 -15
- package/esm/time-zone-picker/types.d.ts +2 -0
- package/esm/tooltip/overrides.js +0 -1
- package/esm/tooltip/stateful-tooltip.js +2 -2
- package/esm/tooltip/tooltip.d.ts +1 -1
- package/esm/tooltip/tooltip.js +5 -2
- package/esm/tooltip/types.d.ts +2 -0
- package/esm/types.d.ts +2 -1
- package/esm/typography/Typography.js +14 -1
- package/esm/typography/constants.d.ts +56 -0
- package/esm/typography/constants.js +56 -0
- package/esm/typography/index.d.ts +1 -0
- package/esm/typography/index.js +1 -0
- package/esm/typography/styled-components.js +12 -4
- package/esm/typography/types.d.ts +1 -1
- package/esm/utils/intlNumberFormatUtils/index.d.ts +7 -0
- package/esm/utils/intlNumberFormatUtils/index.js +36 -0
- package/esm/utils/intlNumberFormatUtils/types.d.ts +21 -0
- package/esm/utils/intlNumberFormatUtils/types.js +6 -0
- package/form-control/form-control.d.ts +1 -1
- package/form-control/form-control.js +16 -11
- package/form-control/styled-component.js +17 -6
- package/helpers/ClearIconButton.js +3 -1
- package/helpers/StyledTombstone.d.ts +1 -0
- package/helpers/StyledTombstone.js +21 -0
- package/helpers/baseui/useConvertOverrides.js +6 -1
- package/helpers/commonStyles.js +3 -6
- package/helpers/index.d.ts +1 -0
- package/helpers/index.js +10 -1
- package/helpers/themeHelpers.d.ts +1 -0
- package/helpers/themeHelpers.js +15 -1
- package/hooks/useAutoFocus.js +6 -0
- package/hooks/useMatchMedia.js +13 -2
- package/icon/components/alert-solid.js +2 -0
- package/icon/components/alert.js +2 -0
- package/icon/components/calendar-solid.js +2 -0
- package/icon/components/chevron-down.js +2 -0
- package/icon/components/chevron-left.d.ts +3 -0
- package/icon/components/chevron-left.js +11 -0
- package/icon/components/chevron-right.d.ts +3 -0
- package/icon/components/chevron-right.js +11 -0
- package/icon/components/close.js +2 -0
- package/icon/components/error-clr.js +2 -0
- package/icon/components/error-solid.js +2 -0
- package/icon/components/error.js +2 -0
- package/icon/components/imagePreview.js +2 -0
- package/icon/components/info.js +2 -0
- package/icon/components/play-video.js +2 -0
- package/icon/components/reset-color.d.ts +3 -0
- package/icon/components/reset-color.js +11 -0
- package/icon/components/search.js +2 -0
- package/icon/components/tick.js +2 -0
- package/icon/components/tickCircle-solid.js +2 -0
- package/icon/components/user.js +2 -0
- package/icon/components/video-non-playable.js +2 -0
- package/index.d.ts +2 -0
- package/index.js +3 -0
- package/input/basewebAdapters.js +18 -3
- package/input/styled-components.js +7 -5
- package/input/types.d.ts +4 -1
- package/layer/useLayersContextValue.js +2 -1
- package/list/avatar-list-item.d.ts +12 -22
- package/list/avatar-list-item.js +5 -3
- package/list/index.d.ts +1 -1
- package/list/index.js +2 -1
- package/list/list-item.d.ts +3 -1
- package/list/list-item.js +9 -6
- package/list/styled-component.d.ts +1 -0
- package/list/styled-component.js +24 -16
- package/list/types.d.ts +3 -0
- package/locale/en_US.js +26 -0
- package/locale/types.d.ts +19 -0
- package/menu/MenuContext.d.ts +2 -1
- package/menu/MenuContext.js +1 -0
- package/menu/menu-item.d.ts +4 -1
- package/menu/menu-item.js +11 -11
- package/menu/menu.d.ts +1 -0
- package/menu/menu.js +11 -11
- package/menu/types.d.ts +1 -0
- package/menu/useKeyboardNavigation.d.ts +6 -3
- package/menu/useKeyboardNavigation.js +21 -14
- package/menu/useStatefulMenu.d.ts +5 -2
- package/menu/useStatefulMenu.js +14 -8
- package/modal/modal.js +3 -1
- package/modal/overrides.d.ts +2 -2
- package/modal/overrides.js +6 -7
- package/modal/styled-components.js +7 -7
- package/number/Number.d.ts +3 -0
- package/number/Number.js +14 -0
- package/number/constants.d.ts +2 -0
- package/number/constants.js +7 -0
- package/number/index.d.ts +5 -0
- package/number/index.js +12 -0
- package/number/package.json +4 -0
- package/number/types.d.ts +6 -0
- package/number/types.js +2 -0
- package/number/useNumber.d.ts +2 -0
- package/number/useNumber.js +12 -0
- package/overrides/index.d.ts +1 -1
- package/overrides/index.js +2 -1
- package/overrides/mergeOverrides.d.ts +3 -2
- package/overrides/mergeOverrides.js +2 -1
- package/package.json +8 -5
- package/payment-card/basewebAdapters.d.ts +2 -0
- package/payment-card/basewebAdapters.js +23 -1
- package/payment-card/styled-components.js +24 -5
- package/phone-input/country-select-container.js +1 -1
- package/phone-input/country-select.js +3 -3
- package/phone-input/default-props.d.ts +5 -5
- package/phone-input/default-props.js +8 -7
- package/phone-input/flag-container.js +1 -1
- package/phone-input/phone-input.d.ts +0 -4
- package/phone-input/phone-input.js +19 -11
- package/phone-input/stateful-phone-input-container.js +4 -3
- package/phone-input/stateful-phone-input.d.ts +0 -4
- package/phone-input/styled-components.d.ts +9 -1
- package/phone-input/styled-components.js +22 -7
- package/phone-input/types.d.ts +2 -1
- package/phone-input/utils.d.ts +5 -1
- package/phone-input/utils.js +7 -1
- package/popover/adapter.d.ts +1 -0
- package/popover/adapter.js +16 -1
- package/popover/overrides.js +8 -19
- package/popover/popover.d.ts +1 -0
- package/popover/popover.js +8 -3
- package/popover/stateful-popover.js +2 -2
- package/popover/types.d.ts +3 -0
- package/popover/utils.d.ts +12 -0
- package/popover/utils.js +11 -1
- package/progress/linear/styled-component.d.ts +1 -1
- package/progress/linear/styled-component.js +5 -5
- package/radio/styled-components.js +5 -5
- package/search/index.d.ts +1 -0
- package/search/index.js +3 -1
- package/search/search.d.ts +1 -1
- package/search/search.js +14 -5
- package/search/stateful-search.d.ts +3 -0
- package/search/stateful-search.js +19 -0
- package/search/styled-components.d.ts +1 -10
- package/search/styled-components.js +56 -25
- package/search/types.d.ts +8 -2
- package/select/base-select.d.ts +22 -5
- package/select/base-select.js +172 -80
- package/select/constants.d.ts +3 -0
- package/select/constants.js +4 -2
- package/select/default-props.d.ts +1 -0
- package/select/default-props.js +3 -0
- package/select/index.d.ts +2 -2
- package/select/index.js +4 -1
- package/select/locale.d.ts +4 -0
- package/select/mobileSelect/MobileSheet.js +3 -1
- package/select/multi-value.js +21 -11
- package/select/overlaySelect/OverlaySelect.js +1 -0
- package/select/overlaySelect/hooks/useOverlaySelectOverrides.d.ts +2 -1
- package/select/overlaySelect/hooks/useOverlaySelectOverrides.js +13 -16
- package/select/overrides.d.ts +3 -0
- package/select/overrides.js +20 -6
- package/select/select.d.ts +1 -0
- package/select/select.js +9 -3
- package/select/selectMenuAdapter/CollapsibleSelectMenu.d.ts +118 -0
- package/select/selectMenuAdapter/CollapsibleSelectMenu.js +74 -0
- package/select/selectMenuAdapter/SelectMenuAdapter.d.ts +2 -34
- package/select/selectMenuAdapter/SelectMenuAdapter.js +3 -3
- package/select/selectMenuAdapter/SelectMenuItem.d.ts +4 -1
- package/select/selectMenuAdapter/hooks/useGetExpandedGroup.d.ts +6 -0
- package/select/selectMenuAdapter/hooks/useGetExpandedGroup.js +20 -0
- package/select/selectMenuAdapter/types.d.ts +42 -0
- package/select/selectMenuAdapter/types.js +2 -0
- package/select/stateful-select.d.ts +1 -0
- package/select/styled-component.d.ts +10 -1
- package/select/styled-component.js +38 -14
- package/select/types.d.ts +23 -1
- package/select/types.js +2 -1
- package/select/utils/default-filter-options.d.ts +2 -1
- package/select/utils/default-filter-options.js +6 -5
- package/select/utils/hidden-element.d.ts +6 -0
- package/select/utils/hidden-element.js +19 -0
- package/select/utils/merge-options.d.ts +2 -0
- package/select/utils/merge-options.js +22 -0
- package/select/utils/test-utils.d.ts +1 -0
- package/select/utils/test-utils.js +11 -0
- package/slider/styled-components.js +4 -4
- package/snackbar/Snackbar.js +12 -12
- package/snackbar/styled-component.js +9 -6
- package/spacewebProvider/SpacewebProvider.d.ts +2 -0
- package/spacewebProvider/SpacewebProvider.js +8 -8
- package/stack/stack.js +6 -13
- package/style/_buildUtils.d.ts +1 -1
- package/style/_buildUtils.js +3 -1
- package/style/_parseStyle.js +7 -2
- package/style/useMemoizedStyletron.js +6 -1
- package/switch/styled-components.js +3 -3
- package/tag/avatar-tag.js +23 -16
- package/tag/styled-components.js +32 -27
- package/tag/tag.js +19 -11
- package/tag/types.d.ts +2 -2
- package/tag/utils.d.ts +50 -0
- package/tag/utils.js +67 -1
- package/textarea/basewebAdapters.js +2 -2
- package/textarea/textarea.js +2 -2
- package/textarea/types.d.ts +2 -2
- package/theme/Provider.d.ts +10 -0
- package/theme/Provider.js +65 -0
- package/theme/context.d.ts +1 -10
- package/theme/context.js +1 -61
- package/theme/index.d.ts +1 -0
- package/theme/index.js +1 -0
- package/time-picker/TimePicker.js +4 -1
- package/time-range-picker/RangeSelectorContainer.js +1 -1
- package/time-range-picker/TimeRangePicker.js +19 -11
- package/time-range-picker/index.d.ts +1 -1
- package/time-range-picker/index.js +4 -1
- package/time-range-picker/types.d.ts +1 -2
- package/time-range-picker/utils.d.ts +33 -4
- package/time-range-picker/utils.js +53 -17
- package/time-zone-picker/types.d.ts +2 -0
- package/tooltip/overrides.js +0 -1
- package/tooltip/stateful-tooltip.js +2 -2
- package/tooltip/tooltip.d.ts +1 -1
- package/tooltip/tooltip.js +5 -2
- package/tooltip/types.d.ts +2 -0
- package/tsconfig.tsbuildinfo +1 -1
- package/types.d.ts +2 -1
- package/typography/Typography.js +14 -1
- package/typography/constants.d.ts +56 -0
- package/typography/constants.js +57 -1
- package/typography/index.d.ts +1 -0
- package/typography/index.js +3 -1
- package/typography/styled-components.js +11 -3
- package/typography/types.d.ts +1 -1
- package/utils/intlNumberFormatUtils/index.d.ts +7 -0
- package/utils/intlNumberFormatUtils/index.js +40 -0
- package/utils/intlNumberFormatUtils/types.d.ts +21 -0
- package/utils/intlNumberFormatUtils/types.js +9 -0
- package/utils/package.json +4 -0
- package/esm/icon/components/chevron-right-solid.d.ts +0 -3
- package/esm/icon/components/chevron-right-solid.js +0 -6
- package/icon/components/chevron-right-solid.d.ts +0 -3
- package/icon/components/chevron-right-solid.js +0 -9
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { __assign, __awaiter, __extends, __generator, __read, __spreadArray } from "tslib";
|
|
2
2
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
-
import { normalizeOptions } from 'baseui/select/utils';
|
|
4
3
|
import _noop from 'lodash/noop';
|
|
5
4
|
import _pick from 'lodash/pick';
|
|
6
5
|
import _omit from 'lodash/omit';
|
|
6
|
+
import _keyBy from 'lodash/keyBy';
|
|
7
7
|
import memoizeOne from 'memoize-one';
|
|
8
8
|
import { Component } from 'react';
|
|
9
9
|
import * as React from 'react';
|
|
@@ -18,40 +18,52 @@ import { typeAdaptor } from './adaptor';
|
|
|
18
18
|
import { STATE_CHANGE_TYPE } from './constants';
|
|
19
19
|
import defaultProps from './default-props';
|
|
20
20
|
import MultiValue from './multi-value';
|
|
21
|
-
import { getControlContainerStyles, getSearchIconContainerStyles, getSearchIconStyles, getValueContainerStyles, getValueTypography, SelectArrow, } from './overrides';
|
|
21
|
+
import { getControlContainerStyles, getSearchIconContainerStyles, getSearchIconStyles, getValueContainerStyles, getValueTypography, SelectArrow, SingleValueTombstone, } from './overrides';
|
|
22
22
|
import { getPlaceholderTypography } from '../input/styled-components';
|
|
23
23
|
import SelectMenuAdapter from './selectMenuAdapter';
|
|
24
24
|
import ClearIconButton from '../helpers/ClearIconButton';
|
|
25
25
|
import { Input, InputContainer, StyledSelect } from './styled-component';
|
|
26
|
-
import { SELECT_ALL_ID } from './types';
|
|
26
|
+
import { SELECT_ALL_ID, CLEAR_OPTION_ID, } from './types';
|
|
27
27
|
import { add$props } from '../helpers';
|
|
28
28
|
import { combineRefs } from '../hooks/useCombinedRef';
|
|
29
29
|
import { getUniqueId } from '../hooks/useUniqueId';
|
|
30
|
+
import { mergeOptions } from './utils/merge-options';
|
|
30
31
|
var BaseSelect = /** @class */ (function (_super) {
|
|
31
32
|
__extends(BaseSelect, _super);
|
|
32
33
|
function BaseSelect() {
|
|
33
34
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
35
|
+
_this.state = {
|
|
36
|
+
isContainerFocused: false,
|
|
37
|
+
};
|
|
38
|
+
_this.lastSelectedValue = _this.props.value;
|
|
34
39
|
_this.id = getUniqueId();
|
|
35
40
|
_this.menuId = getUniqueId();
|
|
41
|
+
_this.getMemoizedNormalizedOptions = memoizeOne(function (valueKey, options1, options2) { return mergeOptions(valueKey, options1, options2); });
|
|
42
|
+
_this.getValueByIdMap = memoizeOne(function (value, valueKey) { return _keyBy(value, valueKey); });
|
|
36
43
|
_this.shouldDisplaySelectAll = function () {
|
|
37
|
-
var _a = _this.props, multi = _a.multi, hideSelectAll = _a.hideSelectAll, options = _a.options;
|
|
38
|
-
return (multi && !hideSelectAll && _this.
|
|
44
|
+
var _a = _this.props, multi = _a.multi, hideSelectAll = _a.hideSelectAll, options = _a.options, valueKey = _a.valueKey;
|
|
45
|
+
return (multi && !hideSelectAll && _this.getMemoizedNormalizedOptions(valueKey, options, _this.createdOptions).length > 0);
|
|
39
46
|
};
|
|
40
|
-
_this.getNormalizedOptions = memoizeOne(function (options) { return normalizeOptions(options); });
|
|
41
|
-
_this.isSelectAllChecked = memoizeOne(
|
|
42
47
|
// in creatable select, value length can be more than length of options
|
|
43
|
-
function (value, options) {
|
|
44
|
-
return
|
|
45
|
-
|
|
48
|
+
_this.isSelectAllChecked = function (value, options) {
|
|
49
|
+
return _this.props.__selectAllShouldReturnAllOptions
|
|
50
|
+
? _this.props.__selectAllSelected
|
|
51
|
+
: (value === null || value === void 0 ? void 0 : value.length) >=
|
|
52
|
+
_this.getMemoizedNormalizedOptions(_this.props.valueKey, options, _this.createdOptions).filter(function (opt) { return !opt.disabled; }).length;
|
|
53
|
+
};
|
|
46
54
|
_this.getSelectOverrides =
|
|
47
55
|
// FIXME: Remove use of any
|
|
48
56
|
function () {
|
|
49
|
-
var _a
|
|
57
|
+
var _a;
|
|
58
|
+
var _b = _this.props, _c = _b.id, id = _c === void 0 ? _this.id : _c, valueKey = _b.valueKey, labelKey = _b.labelKey, value = _b.value, multi = _b.multi, overrides = _b.overrides, noResultsMsg = _b.noResultsMsg, options = _b.options, className = _b.className, style = _b.style, intent = _b.intent, size = _b.size, disabled = _b.disabled, captureScroll = _b.captureScroll, placement = _b.placement, popoverMinWidth = _b.popoverMinWidth, searchable = _b.searchable, virtual = _b.virtual, ignoreBoundary = _b.ignoreBoundary, clearAsOption = _b.clearAsOption, selectOnTab = _b.selectOnTab;
|
|
50
59
|
return {
|
|
51
60
|
Root: {
|
|
52
61
|
style: [className, style],
|
|
53
62
|
// https://github.com/uber/baseweb/issues/3702#issuecomment-792665393
|
|
54
|
-
props: {
|
|
63
|
+
props: {
|
|
64
|
+
tabIndex: -1,
|
|
65
|
+
onFocus: function () { return _this.setState({ isContainerFocused: true }); },
|
|
66
|
+
},
|
|
55
67
|
},
|
|
56
68
|
StatefulMenu: {
|
|
57
69
|
component: SelectMenuAdapter,
|
|
@@ -63,10 +75,12 @@ var BaseSelect = /** @class */ (function (_super) {
|
|
|
63
75
|
labelKey: labelKey,
|
|
64
76
|
multi: multi,
|
|
65
77
|
selectAllSelected: _this.isSelectAllChecked(value, options),
|
|
78
|
+
shouldDisplaySelectAll: _this.shouldDisplaySelectAll(),
|
|
66
79
|
noResultsMsg: noResultsMsg,
|
|
67
80
|
captureScroll: captureScroll,
|
|
68
81
|
virtual: virtual,
|
|
69
82
|
overscanCount: 20,
|
|
83
|
+
selectOnTab: selectOnTab,
|
|
70
84
|
},
|
|
71
85
|
},
|
|
72
86
|
DropdownContainer: {
|
|
@@ -77,26 +91,61 @@ var BaseSelect = /** @class */ (function (_super) {
|
|
|
77
91
|
style: __assign(__assign({}, (popoverMinWidth ? { minWidth: popoverMinWidth } : {})), borderRadius('inherit')),
|
|
78
92
|
},
|
|
79
93
|
// aria-selected is applied on SelectMenuItem. No need to apply it on OptionContent
|
|
80
|
-
OptionContent: {
|
|
94
|
+
OptionContent: {
|
|
95
|
+
style: { fontWeight: 'inherit', wordBreak: 'break-word' },
|
|
96
|
+
props: { 'aria-selected': undefined },
|
|
97
|
+
},
|
|
81
98
|
ControlContainer: { style: getControlContainerStyles, props: add$props({ intent: intent, size: size, disabled: disabled }) },
|
|
82
|
-
ValueContainer: {
|
|
83
|
-
|
|
84
|
-
|
|
99
|
+
ValueContainer: {
|
|
100
|
+
style: getValueContainerStyles,
|
|
101
|
+
props: __assign({}, add$props({ intent: intent, size: size, disabled: disabled })),
|
|
102
|
+
},
|
|
103
|
+
MultiValue: {
|
|
104
|
+
component: MultiValue,
|
|
105
|
+
props: {
|
|
106
|
+
'data-testid': 'combobox-selected-value',
|
|
107
|
+
selectSize: size,
|
|
108
|
+
$value: value,
|
|
109
|
+
$valueByIdMap: _this.getValueByIdMap(value, valueKey),
|
|
110
|
+
$valueKey: valueKey,
|
|
111
|
+
$isContainerFocused: _this.state.isContainerFocused,
|
|
112
|
+
},
|
|
113
|
+
},
|
|
114
|
+
SingleValue: {
|
|
115
|
+
component: ((_a = value === null || value === void 0 ? void 0 : value[0]) === null || _a === void 0 ? void 0 : _a.__loading) ? SingleValueTombstone : undefined,
|
|
116
|
+
style: getValueTypography,
|
|
117
|
+
props: { 'data-testid': 'combobox-selected-value', $selectSize: size, $value: value },
|
|
118
|
+
},
|
|
85
119
|
InputContainer: {
|
|
86
120
|
component: InputContainer,
|
|
87
|
-
props: { menuId: _this.menuId, size: size },
|
|
121
|
+
props: { menuId: _this.menuId, size: size, $value: value, $labelKey: labelKey, placeholder: _this.props.placeholder },
|
|
88
122
|
},
|
|
89
123
|
Input: {
|
|
90
124
|
component: Input,
|
|
91
|
-
props: {
|
|
125
|
+
props: {
|
|
126
|
+
id: id,
|
|
127
|
+
'aria-required': _this.props['aria-required'],
|
|
128
|
+
menuId: searchable ? _this.menuId : null,
|
|
129
|
+
onPaste: _this.handlePaste,
|
|
130
|
+
placeholder: _this.props.placeholder,
|
|
131
|
+
$value: value,
|
|
132
|
+
$labelKey: labelKey,
|
|
133
|
+
'aria-label': _this.props['aria-label'],
|
|
134
|
+
},
|
|
92
135
|
},
|
|
93
136
|
Placeholder: {
|
|
94
137
|
style: getPlaceholderTypography,
|
|
95
138
|
},
|
|
96
|
-
IconsContainer: { style: 'cursor-pointer
|
|
139
|
+
IconsContainer: { style: 'cursor-pointer px-0 sticky top-0' },
|
|
97
140
|
SelectArrow: { component: SelectArrow },
|
|
98
|
-
ClearIcon: {
|
|
99
|
-
|
|
141
|
+
ClearIcon: {
|
|
142
|
+
component: clearAsOption ? function () { return null; } : ClearIconButton,
|
|
143
|
+
props: { tabIndex: _this.state.isContainerFocused ? 0 : -1 },
|
|
144
|
+
},
|
|
145
|
+
SearchIcon: {
|
|
146
|
+
component: Search,
|
|
147
|
+
style: getSearchIconStyles,
|
|
148
|
+
},
|
|
100
149
|
SearchIconContainer: { style: getSearchIconContainerStyles },
|
|
101
150
|
Popover: {
|
|
102
151
|
component: Popover,
|
|
@@ -117,66 +166,38 @@ var BaseSelect = /** @class */ (function (_super) {
|
|
|
117
166
|
},
|
|
118
167
|
};
|
|
119
168
|
};
|
|
120
|
-
_this.mergeOptions = function (options1, options2) {
|
|
121
|
-
var _a;
|
|
122
|
-
var mergedOptions = options1;
|
|
123
|
-
if (Array.isArray(options1)) {
|
|
124
|
-
if (Array.isArray(options2)) {
|
|
125
|
-
mergedOptions = options1.concat(options2);
|
|
126
|
-
}
|
|
127
|
-
else if (typeof options2 === 'object') {
|
|
128
|
-
mergedOptions = __assign({}, options2);
|
|
129
|
-
mergedOptions.__ungrouped = mergedOptions.__ungrouped
|
|
130
|
-
? options1.concat(mergedOptions.__ungrouped)
|
|
131
|
-
: options1;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
else if (typeof options1 === 'object') {
|
|
135
|
-
mergedOptions = __assign({}, options1);
|
|
136
|
-
if (Array.isArray(options2)) {
|
|
137
|
-
mergedOptions.__ungrouped = mergedOptions.__ungrouped
|
|
138
|
-
? (_a = mergedOptions.__ungrouped) === null || _a === void 0 ? void 0 : _a.concat(options2)
|
|
139
|
-
: options2;
|
|
140
|
-
}
|
|
141
|
-
else if (typeof options2 === 'object' && options2) {
|
|
142
|
-
Object.keys(options2).forEach(function (key) {
|
|
143
|
-
if (!mergedOptions) {
|
|
144
|
-
return;
|
|
145
|
-
}
|
|
146
|
-
if (key in mergedOptions) {
|
|
147
|
-
mergedOptions[key] = mergedOptions[key].concat(options2[key]);
|
|
148
|
-
}
|
|
149
|
-
else {
|
|
150
|
-
mergedOptions[key] = options2[key];
|
|
151
|
-
}
|
|
152
|
-
});
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
else {
|
|
156
|
-
mergedOptions = options2;
|
|
157
|
-
}
|
|
158
|
-
return mergedOptions;
|
|
159
|
-
};
|
|
160
169
|
/*
|
|
161
170
|
* 1. Add selected values which are not present in Options (to display newly created option)
|
|
162
171
|
* 2. Add selectAll option in multi-select
|
|
163
172
|
* */
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
var
|
|
167
|
-
var
|
|
168
|
-
|
|
169
|
-
|
|
173
|
+
_this.getOptions = memoizeOne(function (locale, createdOptions, options, shouldPrependClearOption) {
|
|
174
|
+
var _a, _b;
|
|
175
|
+
var _c = _this.props, valueKey = _c.valueKey, labelKey = _c.labelKey, clearAsOptionLabel = _c.clearAsOptionLabel, multi = _c.multi;
|
|
176
|
+
var optionArr = _this.getMemoizedNormalizedOptions(valueKey, options, createdOptions);
|
|
177
|
+
if (shouldPrependClearOption) {
|
|
178
|
+
optionArr = __spreadArray([
|
|
179
|
+
(_a = {},
|
|
180
|
+
_a[valueKey] = CLEAR_OPTION_ID,
|
|
181
|
+
_a[labelKey] = clearAsOptionLabel !== null && clearAsOptionLabel !== void 0 ? clearAsOptionLabel : locale.select.clearOptionLabel,
|
|
182
|
+
_a[CLEAR_OPTION_ID] = true,
|
|
183
|
+
_a)
|
|
184
|
+
], __read(optionArr), false);
|
|
185
|
+
}
|
|
170
186
|
if (!_this.shouldDisplaySelectAll()) {
|
|
171
187
|
return optionArr;
|
|
172
188
|
}
|
|
173
189
|
return __spreadArray([
|
|
174
|
-
(
|
|
190
|
+
(_b = {}, _b[valueKey] = SELECT_ALL_ID, _b[labelKey] = locale.select.selectAllLabel, _b[SELECT_ALL_ID] = true, _b)
|
|
175
191
|
], __read(optionArr), false);
|
|
176
192
|
});
|
|
193
|
+
_this.defaultCreateOption = function (label) {
|
|
194
|
+
var _a;
|
|
195
|
+
var _b = _this.props, labelKey = _b.labelKey, valueKey = _b.valueKey;
|
|
196
|
+
return [(_a = {}, _a[labelKey] = label.trim(), _a[valueKey] = label.trim(), _a)];
|
|
197
|
+
};
|
|
177
198
|
_this.getCreatedOptions = function (option) {
|
|
178
|
-
var _a = _this.props, labelKey = _a.labelKey,
|
|
179
|
-
if (
|
|
199
|
+
var _a = _this.props, labelKey = _a.labelKey, _b = _a.createOption, createOption = _b === void 0 ? _this.defaultCreateOption : _b;
|
|
200
|
+
if (typeof option[labelKey] === 'string') {
|
|
180
201
|
return Promise.resolve(createOption(option[labelKey]));
|
|
181
202
|
}
|
|
182
203
|
return Promise.resolve([
|
|
@@ -193,12 +214,27 @@ var BaseSelect = /** @class */ (function (_super) {
|
|
|
193
214
|
return (__assign(__assign({}, acc), (_a = {}, _a[key] = (_b = options[key]) === null || _b === void 0 ? void 0 : _b.map(function (option) { return (__assign(__assign({}, option), { isCreatable: true })); }), _a)));
|
|
194
215
|
}, {});
|
|
195
216
|
};
|
|
217
|
+
_this.handleBlur = function (e) {
|
|
218
|
+
var _a;
|
|
219
|
+
if (!_this.props.clearable && !_this.props.multi && !_this.props.value.length && _this.lastSelectedValue.length) {
|
|
220
|
+
_this.props.onChange({
|
|
221
|
+
option: _this.lastSelectedValue[0],
|
|
222
|
+
type: STATE_CHANGE_TYPE.select,
|
|
223
|
+
value: _this.lastSelectedValue,
|
|
224
|
+
});
|
|
225
|
+
}
|
|
226
|
+
_this.setState({ isContainerFocused: false });
|
|
227
|
+
(_a = _this.props) === null || _a === void 0 ? void 0 : _a.onBlur(e);
|
|
228
|
+
};
|
|
196
229
|
_this.handleChange = function (params) { return __awaiter(_this, void 0, void 0, function () {
|
|
197
|
-
var _a, options, _b, onChange, value, creatable, prevSelectAllState, newCreatedOptions, newCreatedValues, mergedValue;
|
|
230
|
+
var _a, options, _b, onChange, value, creatable, valueKey, __selectAllShouldReturnAllOptions, multi, prevSelectAllState, newCreatedOptions, newCreatedValues, mergedValue;
|
|
198
231
|
return __generator(this, function (_c) {
|
|
199
232
|
switch (_c.label) {
|
|
200
233
|
case 0:
|
|
201
|
-
_a = this.props, options = _a.options, _b = _a.onChange, onChange = _b === void 0 ? _noop : _b, value = _a.value, creatable = _a.creatable;
|
|
234
|
+
_a = this.props, options = _a.options, _b = _a.onChange, onChange = _b === void 0 ? _noop : _b, value = _a.value, creatable = _a.creatable, valueKey = _a.valueKey, __selectAllShouldReturnAllOptions = _a.__selectAllShouldReturnAllOptions, multi = _a.multi;
|
|
235
|
+
if (params.value.length > 0) {
|
|
236
|
+
this.lastSelectedValue = params.value;
|
|
237
|
+
}
|
|
202
238
|
//select the user input on option selection
|
|
203
239
|
if (params.type === STATE_CHANGE_TYPE.select && this.inputRef.current && 'select' in this.inputRef.current) {
|
|
204
240
|
this.inputRef.current.select();
|
|
@@ -213,22 +249,32 @@ var BaseSelect = /** @class */ (function (_super) {
|
|
|
213
249
|
? { type: STATE_CHANGE_TYPE.clear, value: [] }
|
|
214
250
|
: {
|
|
215
251
|
type: STATE_CHANGE_TYPE.selectAll,
|
|
216
|
-
value:
|
|
252
|
+
value: __selectAllShouldReturnAllOptions
|
|
253
|
+
? []
|
|
254
|
+
: mergeOptions(valueKey, options, this.createdOptions).filter(function (opt) { return !opt.disabled; }),
|
|
217
255
|
});
|
|
218
256
|
}
|
|
219
257
|
return [2 /*return*/];
|
|
220
258
|
}
|
|
259
|
+
if (params.option && params.option[CLEAR_OPTION_ID]) {
|
|
260
|
+
onChange({
|
|
261
|
+
type: STATE_CHANGE_TYPE.clear,
|
|
262
|
+
value: [],
|
|
263
|
+
option: null,
|
|
264
|
+
});
|
|
265
|
+
return [2 /*return*/];
|
|
266
|
+
}
|
|
221
267
|
if (!(creatable && params.type === STATE_CHANGE_TYPE.select && params.option && params.option.isCreatable)) return [3 /*break*/, 2];
|
|
222
268
|
return [4 /*yield*/, this.getCreatedOptions(params.option)];
|
|
223
269
|
case 1:
|
|
224
270
|
newCreatedOptions = _c.sent();
|
|
225
|
-
this.createdOptions =
|
|
271
|
+
this.createdOptions = mergeOptions(valueKey, this.createdOptions, newCreatedOptions);
|
|
226
272
|
newCreatedValues = this.getCreatedValues(newCreatedOptions);
|
|
227
|
-
mergedValue =
|
|
273
|
+
mergedValue = mergeOptions(valueKey, value, newCreatedValues);
|
|
228
274
|
onChange({
|
|
229
275
|
option: __assign(__assign({}, newCreatedOptions === null || newCreatedOptions === void 0 ? void 0 : newCreatedOptions[0]), { isCreatable: true }),
|
|
230
276
|
type: STATE_CHANGE_TYPE.select,
|
|
231
|
-
value:
|
|
277
|
+
value: multi ? mergedValue : [mergedValue[mergedValue.length - 1]],
|
|
232
278
|
});
|
|
233
279
|
return [2 /*return*/];
|
|
234
280
|
case 2:
|
|
@@ -238,22 +284,68 @@ var BaseSelect = /** @class */ (function (_super) {
|
|
|
238
284
|
});
|
|
239
285
|
}); };
|
|
240
286
|
_this.handlePaste = function (e) {
|
|
241
|
-
var _a = _this.props, onPaste = _a.onPaste, _b = _a.onChange, onChange = _b === void 0 ? _noop : _b, value = _a.value;
|
|
287
|
+
var _a = _this.props, onPaste = _a.onPaste, _b = _a.onChange, onChange = _b === void 0 ? _noop : _b, value = _a.value, valueKey = _a.valueKey, multi = _a.multi;
|
|
242
288
|
var pastedOptions = onPaste === null || onPaste === void 0 ? void 0 : onPaste(e);
|
|
243
289
|
if (!pastedOptions) {
|
|
244
290
|
return;
|
|
245
291
|
}
|
|
246
|
-
_this.createdOptions =
|
|
247
|
-
var mergedValue =
|
|
248
|
-
onChange({ type: STATE_CHANGE_TYPE.select, value:
|
|
292
|
+
_this.createdOptions = mergeOptions(valueKey, _this.createdOptions, pastedOptions);
|
|
293
|
+
var mergedValue = mergeOptions(valueKey, value, pastedOptions);
|
|
294
|
+
onChange({ type: STATE_CHANGE_TYPE.select, value: multi ? mergedValue : [mergedValue[mergedValue.length - 1]] });
|
|
249
295
|
};
|
|
296
|
+
_this.handleInputChange = function (e) { return __awaiter(_this, void 0, void 0, function () {
|
|
297
|
+
var _a, _b, onChange, value, valueKey, onInputChange, multi, delimiter, _c, createOption, val, shouldCreateOption, labels, createdOptions, resolvedOptions, err_1, mergedValue;
|
|
298
|
+
var _d, _e;
|
|
299
|
+
return __generator(this, function (_f) {
|
|
300
|
+
switch (_f.label) {
|
|
301
|
+
case 0:
|
|
302
|
+
_a = this.props, _b = _a.onChange, onChange = _b === void 0 ? _noop : _b, value = _a.value, valueKey = _a.valueKey, onInputChange = _a.onInputChange, multi = _a.multi, delimiter = _a.delimiter, _c = _a.createOption, createOption = _c === void 0 ? this.defaultCreateOption : _c;
|
|
303
|
+
onInputChange === null || onInputChange === void 0 ? void 0 : onInputChange(e);
|
|
304
|
+
val = e.target.value;
|
|
305
|
+
shouldCreateOption = typeof delimiter === 'string' && val.includes(delimiter);
|
|
306
|
+
if (!shouldCreateOption) {
|
|
307
|
+
return [2 /*return*/];
|
|
308
|
+
}
|
|
309
|
+
labels = val.split(delimiter).filter(function (label) { return label.trim(); });
|
|
310
|
+
createdOptions = [];
|
|
311
|
+
_f.label = 1;
|
|
312
|
+
case 1:
|
|
313
|
+
_f.trys.push([1, 3, , 4]);
|
|
314
|
+
return [4 /*yield*/, Promise.all(labels.map(function (label) { return createOption(label); }))];
|
|
315
|
+
case 2:
|
|
316
|
+
resolvedOptions = _f.sent();
|
|
317
|
+
createdOptions = resolvedOptions.filter(function (opt) { return !!opt; }).flat();
|
|
318
|
+
return [3 /*break*/, 4];
|
|
319
|
+
case 3:
|
|
320
|
+
err_1 = _f.sent();
|
|
321
|
+
console.error(err_1);
|
|
322
|
+
return [3 /*break*/, 4];
|
|
323
|
+
case 4:
|
|
324
|
+
if (createdOptions.length > 0) {
|
|
325
|
+
this.createdOptions = mergeOptions(valueKey, this.createdOptions, createdOptions);
|
|
326
|
+
mergedValue = mergeOptions(valueKey, value, createdOptions);
|
|
327
|
+
onChange({
|
|
328
|
+
type: STATE_CHANGE_TYPE.inputChange,
|
|
329
|
+
value: multi ? mergedValue : [mergedValue[mergedValue.length - 1]],
|
|
330
|
+
});
|
|
331
|
+
(_d = this.inputRef.current) === null || _d === void 0 ? void 0 : _d.focus();
|
|
332
|
+
(_e = this.inputRef.current) === null || _e === void 0 ? void 0 : _e.setSelectionRange(0, val.length);
|
|
333
|
+
}
|
|
334
|
+
return [2 /*return*/];
|
|
335
|
+
}
|
|
336
|
+
});
|
|
337
|
+
}); };
|
|
250
338
|
_this.inputRef = React.createRef();
|
|
251
339
|
return _this;
|
|
252
340
|
}
|
|
253
341
|
BaseSelect.prototype.render = function () {
|
|
254
342
|
var _this = this;
|
|
255
|
-
var _a = this.props, options = _a.options, selectOverrides = _a.overrides, type = _a.type, controlRef = _a.controlRef, inputRef = _a.inputRef;
|
|
256
|
-
|
|
343
|
+
var _a = this.props, options = _a.options, selectOverrides = _a.overrides, type = _a.type, controlRef = _a.controlRef, inputRef = _a.inputRef, value = _a.value, clearAsOption = _a.clearAsOption, multi = _a.multi;
|
|
344
|
+
var shouldPrependClearOption = clearAsOption && !multi && value && value.length > 0;
|
|
345
|
+
return (_jsx(LocaleConsumer, { children: function (locale) { return (_jsx(SpaceStyleConsumer, { children: function (utils) {
|
|
346
|
+
var _a;
|
|
347
|
+
return (_jsx(StyledSelect, __assign({}, _omit(_this.props, 'size'), { overrides: mergeAndConvertOverrides(_this.getSelectOverrides(), selectOverrides, utils), controlRef: controlRef, inputRef: combineRefs(_this.inputRef, inputRef), options: _this.getOptions(locale, _this.createdOptions, options, shouldPrependClearOption), onChange: _this.handleChange, type: typeAdaptor[type], onInputChange: _this.handleInputChange, placeholder: (_a = _this.props.placeholder) !== null && _a !== void 0 ? _a : locale.select.selectPlaceholder, onBlur: _this.handleBlur }), void 0));
|
|
348
|
+
} }, void 0)); } }, void 0));
|
|
257
349
|
};
|
|
258
350
|
BaseSelect.defaultProps = defaultProps;
|
|
259
351
|
return BaseSelect;
|
|
@@ -3,5 +3,8 @@ export declare const STATE_CHANGE_TYPE: {
|
|
|
3
3
|
readonly remove: "remove";
|
|
4
4
|
readonly clear: "clear";
|
|
5
5
|
readonly selectAll: "selectAll";
|
|
6
|
+
readonly inputChange: "inputChange";
|
|
6
7
|
};
|
|
7
8
|
export declare const UNGROUPED_ID = "__ungrouped";
|
|
9
|
+
export declare const LOADING_KEY = "__loading";
|
|
10
|
+
export declare const CLEARABLE_KEY = "clearable";
|
package/esm/select/constants.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
2
|
import { STATE_CHANGE_TYPE as BASE_STATE_CHANGE_TYPE } from 'baseui/select';
|
|
3
|
-
export var STATE_CHANGE_TYPE = __assign({ selectAll: 'selectAll' }, BASE_STATE_CHANGE_TYPE);
|
|
3
|
+
export var STATE_CHANGE_TYPE = __assign({ selectAll: 'selectAll', inputChange: 'inputChange' }, BASE_STATE_CHANGE_TYPE);
|
|
4
4
|
export var UNGROUPED_ID = '__ungrouped';
|
|
5
|
+
export var LOADING_KEY = '__loading';
|
|
6
|
+
export var CLEARABLE_KEY = 'clearable';
|
|
@@ -37,5 +37,6 @@ declare const defaultProps: {
|
|
|
37
37
|
valueKey: string;
|
|
38
38
|
placement: "auto" | "bottom" | "left" | "right" | "top" | "topLeft" | "topRight" | "rightTop" | "rightBottom" | "bottomRight" | "bottomLeft" | "leftBottom" | "leftTop" | undefined;
|
|
39
39
|
virtual: boolean;
|
|
40
|
+
popoverMinWidth: string;
|
|
40
41
|
};
|
|
41
42
|
export default defaultProps;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import _noop from 'lodash/noop';
|
|
2
2
|
import { filterOptions } from './utils/default-filter-options';
|
|
3
|
+
import { LIST_MIN_WIDTH } from '../list';
|
|
3
4
|
var defaultProps = {
|
|
4
5
|
autoFocus: false,
|
|
5
6
|
backspaceRemoves: true,
|
|
@@ -35,5 +36,7 @@ var defaultProps = {
|
|
|
35
36
|
valueKey: 'id',
|
|
36
37
|
placement: 'bottom',
|
|
37
38
|
virtual: true,
|
|
39
|
+
// popoverMinWidth should have min-width same as the list minWidth
|
|
40
|
+
popoverMinWidth: "".concat(LIST_MIN_WIDTH, "px"),
|
|
38
41
|
};
|
|
39
42
|
export default defaultProps;
|
package/esm/select/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export type { Option, Value, Options, Optgroups, StateReducer, OnChangeParams, ControlRef, ImperativeMethods, SelectProps, AutosizeInputProps, DropdownProps, StatefulSelectProps, StatefulContainerProps, SelectActions, SelectState, AutosizeInputState, StatefulContainerState, } from './types';
|
|
2
|
-
export { SELECT_ALL_ID } from './types';
|
|
2
|
+
export { SELECT_ALL_ID, CLEAR_OPTION_ID } from './types';
|
|
3
3
|
export type { SelectLocale } from './locale';
|
|
4
|
-
export { STATE_CHANGE_TYPE } from './constants';
|
|
4
|
+
export { STATE_CHANGE_TYPE, LOADING_KEY, CLEARABLE_KEY } from './constants';
|
|
5
5
|
export { StyledRoot, StyledClearIcon, StyledControlContainer, StyledDropdownContainer, StyledIconsContainer, StyledInput, StyledInputContainer, StyledInputSizer, StyledPlaceholder, StyledSearchIconContainer, StyledSelectArrow, StyledSingleValue, StyledValueContainer, NoResults, StyledOverlayContentContainer, } from './styled-component';
|
|
6
6
|
export type { StyledSelect } from './styled-component';
|
|
7
7
|
export { default as Select } from './select';
|
package/esm/select/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { SELECT_ALL_ID } from './types';
|
|
2
|
-
export { STATE_CHANGE_TYPE } from './constants';
|
|
1
|
+
export { SELECT_ALL_ID, CLEAR_OPTION_ID } from './types';
|
|
2
|
+
export { STATE_CHANGE_TYPE, LOADING_KEY, CLEARABLE_KEY } from './constants';
|
|
3
3
|
// styled-components
|
|
4
4
|
export { StyledRoot, StyledClearIcon, StyledControlContainer, StyledDropdownContainer, StyledIconsContainer, StyledInput, StyledInputContainer, StyledInputSizer, StyledPlaceholder, StyledSearchIconContainer, StyledSelectArrow, StyledSingleValue, StyledValueContainer, NoResults, StyledOverlayContentContainer, } from './styled-component';
|
|
5
5
|
// components
|
package/esm/select/locale.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ import { useKeyboardViewportShiftOffset } from './hooks/useKeyboardViewportShift
|
|
|
17
17
|
import { useOverrides } from '../../overrides';
|
|
18
18
|
import { styled } from '../../style';
|
|
19
19
|
import { TRANSITION_TYPES } from './AdaptedCSSTransition/constants';
|
|
20
|
+
import { useLocale } from '../../locale';
|
|
20
21
|
var StyledSheetContainer = styled('div', 'spr-ui-01 fixed bottom-0 w-full z-50 flex flex-col', function (_a) {
|
|
21
22
|
var px2rem = _a.px2rem;
|
|
22
23
|
return ({
|
|
@@ -42,6 +43,7 @@ export var MobileSheet = function (_a) {
|
|
|
42
43
|
var _e = __read(useOverrides(overrides === null || overrides === void 0 ? void 0 : overrides.Label, StyledLabel), 2), Label = _e[0], labelProps = _e[1];
|
|
43
44
|
var _f = __read(useOverrides(overrides === null || overrides === void 0 ? void 0 : overrides.Layer, DefaultLayer), 2), Layer = _f[0], layerProps = _f[1];
|
|
44
45
|
var _g = __read(useOverrides(overrides === null || overrides === void 0 ? void 0 : overrides.Backdrop, Backdrop), 2), BackdropComp = _g[0], backdropProps = _g[1];
|
|
45
|
-
|
|
46
|
+
var locale = useLocale();
|
|
47
|
+
return (_jsx(LayersManager, __assign({ zIndex: Z_INDEX.OVERLAY }, { children: _jsx(Layer, __assign({}, layerProps, { children: _jsxs(Box, __assign({ id: "".concat(sheetKey, "-container"), "data-testid": "sheetContainer", role: "contentinfo" }, { children: [_jsx(BackdropComp, __assign({ show: visible, onHide: onHide, backdropKey: sheetKey }, backdropProps), void 0), _jsx(AdaptedCSSTransition, __assign({ show: visible, transitionType: TRANSITION_TYPES.SLIDE_FROM_BOTTOM }, { children: _jsxs(SheetContainer, __assign({ "data-testid": "".concat(sheetKey, "-sheetContainer") }, sheetContainerProps, { className: [{ bottom: offsetBottom }, sheetStyles, sheetContainerProps.className], ref: combinedRef }, { children: [label && (_jsxs(Label, __assign({}, labelProps, { children: [_jsx(IconButton, __assign({ onClick: onHide, "aria-label": locale.select.hideButtonAriaLabel }, { children: _jsx(ChevronDown, { size: 12, className: { transform: 'rotate(90deg)' } }, void 0) }), void 0), _jsx(Typography, __assign({ variant: "h4" }, { children: label }), void 0)] }), void 0)), _jsx(SwipeableTargetArea, { onSwipeStart: onSwipeStart, onSwipe: onSwipe, onSwipeEnd: onSwipeEnd }, void 0), children] }), void 0) }), void 0)] }), void 0) }), void 0) }), void 0));
|
|
46
48
|
};
|
|
47
49
|
MobileSheet.displayName = 'MobileSheet';
|
|
@@ -1,26 +1,36 @@
|
|
|
1
1
|
import { __assign, __read, __rest } from "tslib";
|
|
2
2
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
3
|
import { useMemo } from 'react';
|
|
4
|
-
import {
|
|
5
|
-
import { getComponentSizeTheme } from '../helpers/themeHelpers';
|
|
4
|
+
import { getComponentSizeTheme, getDefaultSize } from '../helpers/themeHelpers';
|
|
6
5
|
import { mergeOverrides, useOverrides } from '../overrides';
|
|
7
6
|
import { useStyle } from '../style';
|
|
8
7
|
import { Tag } from '../tag';
|
|
8
|
+
import { StyledTombstone } from '../helpers/StyledTombstone';
|
|
9
|
+
import { CLEARABLE_KEY, LOADING_KEY } from './constants';
|
|
9
10
|
export default function MultiValue(props) {
|
|
10
|
-
var _a;
|
|
11
|
-
var
|
|
12
|
-
var
|
|
11
|
+
var _a, _b;
|
|
12
|
+
var _c = props.overrides, overrides = _c === void 0 ? {} : _c, onActionClick = props.onActionClick, value = props.value, selectSize = props.selectSize, $disabled = props.$disabled, $valueByIdMap = props.$valueByIdMap, $valueKey = props.$valueKey, $size = props.$size, $isContainerFocused = props.$isContainerFocused, restProps = __rest(props, ["overrides", "onActionClick", "value", "selectSize", "$disabled", "$valueByIdMap", "$valueKey", "$size", "$isContainerFocused"]);
|
|
13
|
+
var _d = __read(useOverrides(overrides.Tag, Tag), 2), TagComponent = _d[0], tagProps = _d[1];
|
|
13
14
|
var theme = useStyle().theme;
|
|
14
|
-
var multiSelectTheme = useMemo(function () { return getComponentSizeTheme(theme, 'multiSelect', selectSize,
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
]);
|
|
18
|
-
|
|
15
|
+
var multiSelectTheme = useMemo(function () { return getComponentSizeTheme(theme, 'multiSelect', selectSize, getDefaultSize(theme)); }, [selectSize, theme]);
|
|
16
|
+
var selectedValue = $valueByIdMap === null || $valueByIdMap === void 0 ? void 0 : $valueByIdMap[value[$valueKey]];
|
|
17
|
+
var disabled = $disabled || (selectedValue === null || selectedValue === void 0 ? void 0 : selectedValue[CLEARABLE_KEY]) === false;
|
|
18
|
+
var isLoading = (_a = value === null || value === void 0 ? void 0 : value[LOADING_KEY]) !== null && _a !== void 0 ? _a : selectedValue === null || selectedValue === void 0 ? void 0 : selectedValue[LOADING_KEY];
|
|
19
|
+
var tagMarginX = multiSelectTheme === null || multiSelectTheme === void 0 ? void 0 : multiSelectTheme.tagMarginX;
|
|
20
|
+
var tagMarginY = multiSelectTheme === null || multiSelectTheme === void 0 ? void 0 : multiSelectTheme.tagMarginY;
|
|
21
|
+
var tagSize = selectSize === 'xxxs' ? 'xxxs' : 'sm';
|
|
22
|
+
return (_jsx(TagComponent, __assign({ variant: "light", intent: "default", "aria-label": "".concat(typeof restProps.children === 'string' ? "".concat(restProps.children, ", ") : '', "close by backspace"), tabIndex: $isContainerFocused ? 0 : -1, onActionClick: onActionClick, "$item": value, "$disabled": disabled, size: tagSize }, restProps, tagProps, { closeable: (_b = tagProps.closeable) !== null && _b !== void 0 ? _b : !disabled, overrides: mergeOverrides({
|
|
19
23
|
Root: {
|
|
20
24
|
style: [
|
|
21
25
|
'box-border',
|
|
22
|
-
|
|
26
|
+
{
|
|
27
|
+
marginRight: tagMarginX,
|
|
28
|
+
marginBottom: tagMarginY,
|
|
29
|
+
marginTop: tagMarginY,
|
|
30
|
+
maxWidth: "calc(100% - ".concat(2 * parseInt(multiSelectTheme.tagMarginX, 10), "px)"),
|
|
31
|
+
},
|
|
23
32
|
],
|
|
24
33
|
},
|
|
25
|
-
|
|
34
|
+
Action: { props: { tabIndex: $isContainerFocused ? 0 : -1 } },
|
|
35
|
+
}, tagProps.overrides) }, { children: isLoading ? (_jsx(StyledTombstone, { "data-testid": "multi-value-tombstone", className: "w-20 h-4 rounded-8" }, void 0)) : (props.children) }), void 0));
|
|
26
36
|
}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { OnChangeParams, OverlaySelectProps } from '../../types';
|
|
3
|
-
declare const useOverlaySelectOverrides: (props: Omit<import("../../types").BaseSelectProps, "children" | "type" | "overlayWidth"> & {
|
|
3
|
+
declare const useOverlaySelectOverrides: (props: Omit<import("../../types").BaseSelectProps, "children" | "type" | "overlayWidth" | "scrollContainer"> & {
|
|
4
4
|
type: "overlay";
|
|
5
5
|
overlayWidth?: string | undefined;
|
|
6
6
|
children: React.ReactNode | ((args: {
|
|
7
7
|
isOpen: boolean;
|
|
8
8
|
}) => React.ReactNode);
|
|
9
|
+
scrollContainer?: "overlayContainer" | "menuContainer" | undefined;
|
|
9
10
|
} & {
|
|
10
11
|
scrollElement: HTMLElement | null;
|
|
11
12
|
}) => {
|