baseui 0.0.0-next-e421cf1 → 0.0.0-next-dfcb85a
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/a11y/a11y.js +8 -8
- package/a11y/index.js +1 -1
- package/a11y/types.js +5 -1
- package/accordion/accordion.js +17 -17
- package/accordion/index.js +50 -21
- package/accordion/panel.js +11 -11
- package/accordion/stateful-panel-container.js +15 -13
- package/accordion/stateful-panel.js +8 -6
- package/accordion/stateless-accordion.js +11 -9
- package/accordion/styled-components.js +5 -5
- package/accordion/types.js +3 -9
- package/app-nav-bar/app-nav-bar.js +13 -13
- package/app-nav-bar/constants.js +1 -1
- package/app-nav-bar/index.js +5 -5
- package/app-nav-bar/mobile-menu.js +23 -20
- package/app-nav-bar/styled-components.js +7 -7
- package/app-nav-bar/types.js +3 -9
- package/app-nav-bar/user-menu.js +19 -17
- package/app-nav-bar/user-profile-tile.js +8 -8
- package/aspect-ratio-box/aspect-ratio-box-body.js +8 -6
- package/aspect-ratio-box/aspect-ratio-box.js +9 -7
- package/aspect-ratio-box/index.js +20 -2
- package/aspect-ratio-box/types.js +5 -1
- package/avatar/avatar.js +7 -7
- package/avatar/index.js +22 -2
- package/avatar/styled-components.js +3 -3
- package/avatar/types.js +5 -1
- package/badge/badge.js +9 -9
- package/badge/constants.js +1 -1
- package/badge/hint-dot.js +10 -10
- package/badge/index.js +31 -17
- package/badge/notification-circle.js +9 -9
- package/badge/styled-components.js +5 -5
- package/badge/types.js +3 -9
- package/badge/utils.js +3 -3
- package/badge/utils.js.flow +1 -1
- package/banner/banner.js +10 -10
- package/banner/index.js +17 -3
- package/banner/styled-components.js +3 -3
- package/banner/types.js +3 -9
- package/block/block.js +10 -8
- package/block/index.js +18 -1
- package/block/styled-components.js +2 -2
- package/block/types.js +5 -1
- package/breadcrumbs/breadcrumbs.js +11 -11
- package/breadcrumbs/index.js +16 -2
- package/breadcrumbs/styled-components.js +4 -4
- package/breadcrumbs/types.js +5 -1
- package/button/button-internals.js +11 -9
- package/button/button.js +22 -20
- package/button/default-props.js +1 -1
- package/button/index.js +38 -13
- package/button/styled-components.js +5 -5
- package/button/types.js +3 -9
- package/button-group/button-group.js +18 -18
- package/button-group/index.js +40 -16
- package/button-group/stateful-button-group.js +9 -7
- package/button-group/stateful-container.js +16 -14
- package/button-group/styled-components.js +2 -2
- package/button-group/types.js +3 -11
- package/card/card.js +13 -10
- package/card/images.js +1 -1
- package/card/index.js +40 -14
- package/card/styled-components.js +3 -3
- package/card/types.js +5 -1
- package/checkbox/checkbox.js +14 -14
- package/checkbox/constants.js +1 -1
- package/checkbox/index.js +57 -29
- package/checkbox/stateful-checkbox-container.js +15 -13
- package/checkbox/stateful-checkbox.js +5 -5
- package/checkbox/styled-components.js +4 -4
- package/checkbox/types.js +3 -1
- package/combobox/combobox.js +15 -12
- package/combobox/index.js +33 -11
- package/combobox/styled-components.js +5 -5
- package/combobox/types.js +3 -9
- package/data-table/column-anchor.js +9 -9
- package/data-table/column-boolean.js +9 -9
- package/data-table/column-categorical.js +20 -18
- package/data-table/column-custom.js +4 -4
- package/data-table/column-datetime.js +20 -20
- package/data-table/column-numerical.js +16 -16
- package/data-table/column-row-index.js +7 -7
- package/data-table/column-string.js +9 -9
- package/data-table/column.js +8 -8
- package/data-table/constants.js +1 -1
- package/data-table/data-table.js +14 -14
- package/data-table/filter-menu.js +12 -12
- package/data-table/filter-shell.js +9 -9
- package/data-table/header-cell.js +12 -12
- package/data-table/index.js +82 -48
- package/data-table/measure-column-widths.js +6 -6
- package/data-table/stateful-container.js +6 -6
- package/data-table/stateful-data-table.js +14 -14
- package/data-table/text-search.js +5 -5
- package/data-table/types.js +3 -9
- package/datepicker/calendar-header.js +27 -27
- package/datepicker/calendar.js +26 -24
- package/datepicker/constants.js +1 -1
- package/datepicker/datepicker.js +24 -24
- package/datepicker/day.js +18 -18
- package/datepicker/index.js +48 -34
- package/datepicker/month.js +16 -16
- package/datepicker/stateful-calendar.js +12 -12
- package/datepicker/stateful-container.js +15 -13
- package/datepicker/stateful-datepicker.js +12 -12
- package/datepicker/styled-components.js +7 -7
- package/datepicker/types.js +3 -9
- package/datepicker/utils/calendar-header-helpers.js +3 -3
- package/datepicker/utils/date-helpers.js +9 -5
- package/datepicker/utils/index.js +1 -1
- package/datepicker/utils/types.js +5 -1
- package/datepicker/week.js +17 -17
- package/dnd-list/index.js +53 -25
- package/dnd-list/list.js +19 -19
- package/dnd-list/stateful-list-container.js +14 -12
- package/dnd-list/stateful-list.js +5 -5
- package/dnd-list/styled-components.js +4 -4
- package/dnd-list/types.js +3 -9
- package/drawer/close-icon.js +4 -4
- package/drawer/constants.js +1 -1
- package/drawer/drawer.js +18 -18
- package/drawer/index.js +27 -13
- package/drawer/styled-components.js +5 -5
- package/drawer/types.js +3 -9
- package/es/a11y/a11y.js +4 -4
- package/es/a11y/index.js +1 -1
- package/es/a11y/types.js +1 -0
- package/es/accordion/accordion.js +4 -4
- package/es/accordion/index.js +9 -7
- package/es/accordion/panel.js +5 -5
- package/es/accordion/stateful-panel-container.js +1 -1
- package/es/accordion/stateful-panel.js +2 -2
- package/es/accordion/stateless-accordion.js +3 -3
- package/es/accordion/styled-components.js +2 -2
- package/es/accordion/types.js +1 -10
- package/es/app-nav-bar/app-nav-bar.js +9 -9
- package/es/app-nav-bar/index.js +5 -5
- package/es/app-nav-bar/mobile-menu.js +11 -11
- package/es/app-nav-bar/styled-components.js +4 -4
- package/es/app-nav-bar/types.js +1 -8
- package/es/app-nav-bar/user-menu.js +12 -12
- package/es/app-nav-bar/user-profile-tile.js +4 -4
- package/es/aspect-ratio-box/aspect-ratio-box-body.js +2 -2
- package/es/aspect-ratio-box/aspect-ratio-box.js +3 -3
- package/es/aspect-ratio-box/index.js +3 -2
- package/es/aspect-ratio-box/types.js +1 -0
- package/es/avatar/avatar.js +3 -3
- package/es/avatar/index.js +4 -2
- package/es/avatar/styled-components.js +1 -1
- package/es/avatar/types.js +1 -0
- package/es/badge/badge.js +5 -5
- package/es/badge/hint-dot.js +6 -6
- package/es/badge/index.js +6 -5
- package/es/badge/notification-circle.js +5 -5
- package/es/badge/styled-components.js +2 -2
- package/es/badge/types.js +1 -8
- package/es/banner/banner.js +6 -6
- package/es/banner/index.js +4 -3
- package/es/banner/styled-components.js +2 -2
- package/es/banner/types.js +1 -8
- package/es/block/block.js +3 -3
- package/es/block/index.js +2 -1
- package/es/block/styled-components.js +2 -2
- package/es/block/types.js +1 -0
- package/es/breadcrumbs/breadcrumbs.js +7 -7
- package/es/breadcrumbs/index.js +3 -2
- package/es/breadcrumbs/styled-components.js +1 -1
- package/es/breadcrumbs/types.js +1 -0
- package/es/button/button-internals.js +4 -4
- package/es/button/button.js +7 -7
- package/es/button/default-props.js +1 -1
- package/es/button/index.js +5 -3
- package/es/button/styled-components.js +2 -2
- package/es/button/types.js +1 -8
- package/es/button-group/button-group.js +6 -6
- package/es/button-group/index.js +8 -6
- package/es/button-group/stateful-button-group.js +3 -3
- package/es/button-group/stateful-container.js +1 -1
- package/es/button-group/styled-components.js +2 -2
- package/es/button-group/types.js +1 -9
- package/es/card/card.js +4 -4
- package/es/card/index.js +3 -2
- package/es/card/styled-components.js +1 -1
- package/es/card/types.js +1 -0
- package/es/checkbox/checkbox.js +5 -5
- package/es/checkbox/index.js +7 -5
- package/es/checkbox/stateful-checkbox-container.js +1 -1
- package/es/checkbox/stateful-checkbox.js +2 -2
- package/es/checkbox/styled-components.js +1 -1
- package/es/checkbox/types.js +1 -7
- package/es/combobox/combobox.js +6 -6
- package/es/combobox/index.js +4 -3
- package/es/combobox/styled-components.js +2 -2
- package/es/combobox/types.js +1 -8
- package/es/data-table/column-anchor.js +5 -5
- package/es/data-table/column-boolean.js +5 -5
- package/es/data-table/column-categorical.js +13 -13
- package/es/data-table/column-custom.js +2 -2
- package/es/data-table/column-datetime.js +13 -13
- package/es/data-table/column-numerical.js +10 -10
- package/es/data-table/column-row-index.js +3 -3
- package/es/data-table/column-string.js +5 -5
- package/es/data-table/column.js +2 -2
- package/es/data-table/data-table.js +7 -7
- package/es/data-table/filter-menu.js +9 -9
- package/es/data-table/filter-shell.js +5 -5
- package/es/data-table/header-cell.js +6 -6
- package/es/data-table/index.js +16 -15
- package/es/data-table/measure-column-widths.js +2 -2
- package/es/data-table/stateful-container.js +1 -1
- package/es/data-table/stateful-data-table.js +10 -10
- package/es/data-table/text-search.js +1 -1
- package/es/data-table/types.js +1 -8
- package/es/datepicker/calendar-header.js +15 -15
- package/es/datepicker/calendar.js +12 -12
- package/es/datepicker/datepicker.js +11 -11
- package/es/datepicker/day.js +8 -8
- package/es/datepicker/index.js +12 -10
- package/es/datepicker/month.js +6 -6
- package/es/datepicker/stateful-calendar.js +3 -3
- package/es/datepicker/stateful-container.js +1 -1
- package/es/datepicker/stateful-datepicker.js +3 -3
- package/es/datepicker/styled-components.js +3 -3
- package/es/datepicker/types.js +1 -10
- package/es/datepicker/utils/calendar-header-helpers.js +1 -1
- package/es/datepicker/utils/types.js +1 -0
- package/es/datepicker/week.js +7 -7
- package/es/dnd-list/index.js +7 -5
- package/es/dnd-list/list.js +7 -7
- package/es/dnd-list/stateful-list.js +2 -2
- package/es/dnd-list/styled-components.js +1 -1
- package/es/dnd-list/types.js +1 -10
- package/es/drawer/close-icon.js +1 -1
- package/es/drawer/drawer.js +8 -8
- package/es/drawer/index.js +4 -3
- package/es/drawer/styled-components.js +2 -2
- package/es/drawer/types.js +1 -10
- package/es/file-uploader/file-uploader.js +8 -8
- package/es/file-uploader/index.js +4 -2
- package/es/file-uploader/styled-components.js +1 -1
- package/es/file-uploader/types.js +1 -0
- package/es/flex-grid/flex-grid-item.js +4 -4
- package/es/flex-grid/flex-grid.js +4 -4
- package/es/flex-grid/index.js +3 -2
- package/es/flex-grid/types.js +1 -0
- package/es/form-control/form-control.js +3 -3
- package/es/form-control/index.js +3 -2
- package/es/form-control/styled-components.js +1 -1
- package/es/form-control/types.js +1 -7
- package/es/header-navigation/header-navigation.js +3 -3
- package/es/header-navigation/index.js +4 -3
- package/es/header-navigation/styled-components.js +2 -2
- package/es/header-navigation/types.js +1 -0
- package/es/heading/heading.js +3 -3
- package/es/heading/index.js +3 -2
- package/es/heading/types.js +1 -7
- package/es/helper/constants.js +1 -1
- package/es/helper/helper-steps.js +5 -5
- package/es/helper/helper.js +4 -4
- package/es/helper/index.js +6 -5
- package/es/helper/stateful-helper.js +3 -3
- package/es/helper/styled-components.js +4 -4
- package/es/helper/types.js +1 -0
- package/es/helpers/base-provider.js +2 -2
- package/es/helpers/overrides.js +25 -24
- package/es/helpers/types.js +1 -7
- package/es/icon/alert.js +4 -4
- package/es/icon/arrow-down.js +4 -4
- package/es/icon/arrow-left.js +4 -4
- package/es/icon/arrow-right.js +4 -4
- package/es/icon/arrow-up.js +4 -4
- package/es/icon/blank.js +4 -4
- package/es/icon/check-indeterminate.js +4 -4
- package/es/icon/check.js +4 -4
- package/es/icon/chevron-down.js +4 -4
- package/es/icon/chevron-left.js +4 -4
- package/es/icon/chevron-right.js +4 -4
- package/es/icon/chevron-up.js +4 -4
- package/es/icon/delete-alt.js +4 -4
- package/es/icon/delete.js +4 -4
- package/es/icon/filter.js +4 -4
- package/es/icon/grab.js +4 -4
- package/es/icon/hide.js +4 -4
- package/es/icon/icon-exports.js +28 -28
- package/es/icon/icon.js +4 -4
- package/es/icon/index.js +4 -3
- package/es/icon/menu.js +4 -4
- package/es/icon/overflow.js +4 -4
- package/es/icon/plus.js +4 -4
- package/es/icon/search.js +4 -4
- package/es/icon/show.js +4 -4
- package/es/icon/spinner.js +4 -4
- package/es/icon/styled-components.js +1 -1
- package/es/icon/triangle-down.js +4 -4
- package/es/icon/triangle-left.js +4 -4
- package/es/icon/triangle-right.js +4 -4
- package/es/icon/triangle-up.js +4 -4
- package/es/icon/types.js +1 -9
- package/es/icon/upload.js +4 -4
- package/es/index.js +5 -5
- package/es/input/base-input.js +9 -9
- package/es/input/index.js +8 -7
- package/es/input/input.js +6 -6
- package/es/input/masked-input.js +3 -3
- package/es/input/stateful-container.js +1 -1
- package/es/input/stateful-input.js +2 -2
- package/es/input/styled-components.js +3 -3
- package/es/input/types.js +1 -8
- package/es/layer/index.js +5 -4
- package/es/layer/layer.js +3 -3
- package/es/layer/layers-manager.js +4 -4
- package/es/layer/tether.js +2 -2
- package/es/layer/types.js +1 -8
- package/es/layout-grid/cell.js +4 -4
- package/es/layout-grid/grid.js +4 -4
- package/es/layout-grid/index.js +5 -5
- package/es/layout-grid/styled-components.js +3 -3
- package/es/layout-grid/types.js +1 -8
- package/es/link/index.js +4 -4
- package/es/link/styled-components.js +1 -1
- package/es/list/index.js +7 -6
- package/es/list/list-heading.js +3 -3
- package/es/list/list-item-label.js +2 -2
- package/es/list/list-item.js +5 -5
- package/es/list/menu-adapter.js +2 -2
- package/es/list/styled-components.js +3 -3
- package/es/list/types.js +1 -8
- package/es/list/utils.js +1 -1
- package/es/locale/en_US.js +12 -12
- package/es/locale/index.js +1 -1
- package/es/locale/types.js +1 -0
- package/es/map-marker/badge-enhancer.js +4 -4
- package/es/map-marker/drag-shadow.js +4 -4
- package/es/map-marker/fixed-marker.js +8 -8
- package/es/map-marker/floating-marker.js +6 -6
- package/es/map-marker/index.js +4 -3
- package/es/map-marker/label-enhancer.js +4 -4
- package/es/map-marker/needle.js +4 -4
- package/es/map-marker/pin-head.js +6 -6
- package/es/map-marker/styled-components.js +2 -2
- package/es/map-marker/types.js +1 -8
- package/es/menu/index.js +10 -8
- package/es/menu/maybe-child-menu.js +4 -4
- package/es/menu/menu.js +6 -6
- package/es/menu/option-list.js +6 -6
- package/es/menu/option-profile.js +4 -4
- package/es/menu/stateful-container.js +3 -3
- package/es/menu/stateful-menu.js +4 -4
- package/es/menu/styled-components.js +2 -2
- package/es/menu/types.js +1 -8
- package/es/modal/index.js +6 -5
- package/es/modal/modal-button.js +3 -3
- package/es/modal/modal.js +8 -8
- package/es/modal/styled-components.js +2 -2
- package/es/modal/types.js +1 -10
- package/es/notification/index.js +2 -2
- package/es/notification/notification.js +3 -3
- package/es/pagination/index.js +8 -6
- package/es/pagination/pagination.js +10 -10
- package/es/pagination/stateful-container.js +2 -2
- package/es/pagination/stateful-pagination.js +3 -3
- package/es/pagination/styled-components.js +1 -1
- package/es/pagination/types.js +1 -8
- package/es/payment-card/index.js +6 -5
- package/es/payment-card/payment-card.js +18 -18
- package/es/payment-card/stateful-payment-card.js +2 -2
- package/es/payment-card/styled-components.js +2 -2
- package/es/payment-card/types.js +1 -0
- package/es/phone-input/base-country-picker.js +7 -7
- package/es/phone-input/constants.js +1 -1
- package/es/phone-input/country-picker.js +6 -6
- package/es/phone-input/country-select-dropdown.js +7 -7
- package/es/phone-input/country-select.js +6 -6
- package/es/phone-input/default-props.js +1 -1
- package/es/phone-input/flag.js +4 -4
- package/es/phone-input/flags/FlagAD.js +1 -1
- package/es/phone-input/flags/FlagAE.js +1 -1
- package/es/phone-input/flags/FlagAF.js +1 -1
- package/es/phone-input/flags/FlagAG.js +1 -1
- package/es/phone-input/flags/FlagAI.js +1 -1
- package/es/phone-input/flags/FlagAL.js +1 -1
- package/es/phone-input/flags/FlagAM.js +1 -1
- package/es/phone-input/flags/FlagAO.js +1 -1
- package/es/phone-input/flags/FlagAR.js +1 -1
- package/es/phone-input/flags/FlagAS.js +1 -1
- package/es/phone-input/flags/FlagAT.js +1 -1
- package/es/phone-input/flags/FlagAU.js +1 -1
- package/es/phone-input/flags/FlagAW.js +1 -1
- package/es/phone-input/flags/FlagAX.js +1 -1
- package/es/phone-input/flags/FlagAZ.js +1 -1
- package/es/phone-input/flags/FlagBA.js +1 -1
- package/es/phone-input/flags/FlagBB.js +1 -1
- package/es/phone-input/flags/FlagBD.js +1 -1
- package/es/phone-input/flags/FlagBE.js +1 -1
- package/es/phone-input/flags/FlagBF.js +1 -1
- package/es/phone-input/flags/FlagBG.js +1 -1
- package/es/phone-input/flags/FlagBH.js +1 -1
- package/es/phone-input/flags/FlagBI.js +1 -1
- package/es/phone-input/flags/FlagBJ.js +1 -1
- package/es/phone-input/flags/FlagBL.js +1 -1
- package/es/phone-input/flags/FlagBM.js +1 -1
- package/es/phone-input/flags/FlagBN.js +1 -1
- package/es/phone-input/flags/FlagBO.js +1 -1
- package/es/phone-input/flags/FlagBR.js +1 -1
- package/es/phone-input/flags/FlagBS.js +1 -1
- package/es/phone-input/flags/FlagBT.js +1 -1
- package/es/phone-input/flags/FlagBV.js +1 -1
- package/es/phone-input/flags/FlagBW.js +1 -1
- package/es/phone-input/flags/FlagBY.js +1 -1
- package/es/phone-input/flags/FlagBZ.js +1 -1
- package/es/phone-input/flags/FlagCA.js +1 -1
- package/es/phone-input/flags/FlagCC.js +1 -1
- package/es/phone-input/flags/FlagCD.js +1 -1
- package/es/phone-input/flags/FlagCF.js +1 -1
- package/es/phone-input/flags/FlagCG.js +1 -1
- package/es/phone-input/flags/FlagCH.js +1 -1
- package/es/phone-input/flags/FlagCI.js +1 -1
- package/es/phone-input/flags/FlagCK.js +1 -1
- package/es/phone-input/flags/FlagCL.js +1 -1
- package/es/phone-input/flags/FlagCM.js +1 -1
- package/es/phone-input/flags/FlagCN.js +1 -1
- package/es/phone-input/flags/FlagCO.js +1 -1
- package/es/phone-input/flags/FlagCR.js +1 -1
- package/es/phone-input/flags/FlagCU.js +1 -1
- package/es/phone-input/flags/FlagCV.js +1 -1
- package/es/phone-input/flags/FlagCW.js +1 -1
- package/es/phone-input/flags/FlagCX.js +1 -1
- package/es/phone-input/flags/FlagCY.js +1 -1
- package/es/phone-input/flags/FlagCZ.js +1 -1
- package/es/phone-input/flags/FlagDE.js +1 -1
- package/es/phone-input/flags/FlagDJ.js +1 -1
- package/es/phone-input/flags/FlagDK.js +1 -1
- package/es/phone-input/flags/FlagDM.js +1 -1
- package/es/phone-input/flags/FlagDO.js +1 -1
- package/es/phone-input/flags/FlagDZ.js +1 -1
- package/es/phone-input/flags/FlagEC.js +1 -1
- package/es/phone-input/flags/FlagEE.js +1 -1
- package/es/phone-input/flags/FlagEG.js +1 -1
- package/es/phone-input/flags/FlagER.js +1 -1
- package/es/phone-input/flags/FlagES.js +1 -1
- package/es/phone-input/flags/FlagET.js +1 -1
- package/es/phone-input/flags/FlagEU.js +1 -1
- package/es/phone-input/flags/FlagFI.js +1 -1
- package/es/phone-input/flags/FlagFJ.js +1 -1
- package/es/phone-input/flags/FlagFK.js +1 -1
- package/es/phone-input/flags/FlagFM.js +1 -1
- package/es/phone-input/flags/FlagFO.js +1 -1
- package/es/phone-input/flags/FlagFR.js +1 -1
- package/es/phone-input/flags/FlagGA.js +1 -1
- package/es/phone-input/flags/FlagGB.js +1 -1
- package/es/phone-input/flags/FlagGD.js +1 -1
- package/es/phone-input/flags/FlagGE.js +1 -1
- package/es/phone-input/flags/FlagGF.js +1 -1
- package/es/phone-input/flags/FlagGG.js +1 -1
- package/es/phone-input/flags/FlagGH.js +1 -1
- package/es/phone-input/flags/FlagGI.js +1 -1
- package/es/phone-input/flags/FlagGL.js +1 -1
- package/es/phone-input/flags/FlagGM.js +1 -1
- package/es/phone-input/flags/FlagGN.js +1 -1
- package/es/phone-input/flags/FlagGP.js +1 -1
- package/es/phone-input/flags/FlagGQ.js +1 -1
- package/es/phone-input/flags/FlagGR.js +1 -1
- package/es/phone-input/flags/FlagGS.js +1 -1
- package/es/phone-input/flags/FlagGT.js +1 -1
- package/es/phone-input/flags/FlagGU.js +1 -1
- package/es/phone-input/flags/FlagGW.js +1 -1
- package/es/phone-input/flags/FlagGY.js +1 -1
- package/es/phone-input/flags/FlagHK.js +1 -1
- package/es/phone-input/flags/FlagHM.js +1 -1
- package/es/phone-input/flags/FlagHN.js +1 -1
- package/es/phone-input/flags/FlagHR.js +1 -1
- package/es/phone-input/flags/FlagHT.js +1 -1
- package/es/phone-input/flags/FlagHU.js +1 -1
- package/es/phone-input/flags/FlagID.js +1 -1
- package/es/phone-input/flags/FlagIE.js +1 -1
- package/es/phone-input/flags/FlagIL.js +1 -1
- package/es/phone-input/flags/FlagIM.js +1 -1
- package/es/phone-input/flags/FlagIN.js +1 -1
- package/es/phone-input/flags/FlagIO.js +1 -1
- package/es/phone-input/flags/FlagIQ.js +1 -1
- package/es/phone-input/flags/FlagIR.js +1 -1
- package/es/phone-input/flags/FlagIS.js +1 -1
- package/es/phone-input/flags/FlagIT.js +1 -1
- package/es/phone-input/flags/FlagJE.js +1 -1
- package/es/phone-input/flags/FlagJM.js +1 -1
- package/es/phone-input/flags/FlagJO.js +1 -1
- package/es/phone-input/flags/FlagJP.js +1 -1
- package/es/phone-input/flags/FlagKE.js +1 -1
- package/es/phone-input/flags/FlagKG.js +1 -1
- package/es/phone-input/flags/FlagKH.js +1 -1
- package/es/phone-input/flags/FlagKI.js +1 -1
- package/es/phone-input/flags/FlagKM.js +1 -1
- package/es/phone-input/flags/FlagKN.js +1 -1
- package/es/phone-input/flags/FlagKP.js +1 -1
- package/es/phone-input/flags/FlagKR.js +1 -1
- package/es/phone-input/flags/FlagKW.js +1 -1
- package/es/phone-input/flags/FlagKY.js +1 -1
- package/es/phone-input/flags/FlagKZ.js +1 -1
- package/es/phone-input/flags/FlagLA.js +1 -1
- package/es/phone-input/flags/FlagLB.js +1 -1
- package/es/phone-input/flags/FlagLC.js +1 -1
- package/es/phone-input/flags/FlagLI.js +1 -1
- package/es/phone-input/flags/FlagLK.js +1 -1
- package/es/phone-input/flags/FlagLR.js +1 -1
- package/es/phone-input/flags/FlagLS.js +1 -1
- package/es/phone-input/flags/FlagLT.js +1 -1
- package/es/phone-input/flags/FlagLU.js +1 -1
- package/es/phone-input/flags/FlagLV.js +1 -1
- package/es/phone-input/flags/FlagLY.js +1 -1
- package/es/phone-input/flags/FlagMA.js +1 -1
- package/es/phone-input/flags/FlagMC.js +1 -1
- package/es/phone-input/flags/FlagMD.js +1 -1
- package/es/phone-input/flags/FlagME.js +1 -1
- package/es/phone-input/flags/FlagMF.js +1 -1
- package/es/phone-input/flags/FlagMG.js +1 -1
- package/es/phone-input/flags/FlagMH.js +1 -1
- package/es/phone-input/flags/FlagMK.js +1 -1
- package/es/phone-input/flags/FlagML.js +1 -1
- package/es/phone-input/flags/FlagMM.js +1 -1
- package/es/phone-input/flags/FlagMN.js +1 -1
- package/es/phone-input/flags/FlagMO.js +1 -1
- package/es/phone-input/flags/FlagMP.js +1 -1
- package/es/phone-input/flags/FlagMQ.js +1 -1
- package/es/phone-input/flags/FlagMR.js +1 -1
- package/es/phone-input/flags/FlagMS.js +1 -1
- package/es/phone-input/flags/FlagMT.js +1 -1
- package/es/phone-input/flags/FlagMU.js +1 -1
- package/es/phone-input/flags/FlagMV.js +1 -1
- package/es/phone-input/flags/FlagMW.js +1 -1
- package/es/phone-input/flags/FlagMX.js +1 -1
- package/es/phone-input/flags/FlagMY.js +1 -1
- package/es/phone-input/flags/FlagMZ.js +1 -1
- package/es/phone-input/flags/FlagNA.js +1 -1
- package/es/phone-input/flags/FlagNC.js +1 -1
- package/es/phone-input/flags/FlagNE.js +1 -1
- package/es/phone-input/flags/FlagNF.js +1 -1
- package/es/phone-input/flags/FlagNG.js +1 -1
- package/es/phone-input/flags/FlagNI.js +1 -1
- package/es/phone-input/flags/FlagNL.js +1 -1
- package/es/phone-input/flags/FlagNO.js +1 -1
- package/es/phone-input/flags/FlagNP.js +1 -1
- package/es/phone-input/flags/FlagNR.js +1 -1
- package/es/phone-input/flags/FlagNU.js +1 -1
- package/es/phone-input/flags/FlagNZ.js +1 -1
- package/es/phone-input/flags/FlagOM.js +1 -1
- package/es/phone-input/flags/FlagPA.js +1 -1
- package/es/phone-input/flags/FlagPE.js +1 -1
- package/es/phone-input/flags/FlagPF.js +1 -1
- package/es/phone-input/flags/FlagPG.js +1 -1
- package/es/phone-input/flags/FlagPH.js +1 -1
- package/es/phone-input/flags/FlagPK.js +1 -1
- package/es/phone-input/flags/FlagPL.js +1 -1
- package/es/phone-input/flags/FlagPM.js +1 -1
- package/es/phone-input/flags/FlagPN.js +1 -1
- package/es/phone-input/flags/FlagPR.js +1 -1
- package/es/phone-input/flags/FlagPS.js +1 -1
- package/es/phone-input/flags/FlagPT.js +1 -1
- package/es/phone-input/flags/FlagPW.js +1 -1
- package/es/phone-input/flags/FlagPY.js +1 -1
- package/es/phone-input/flags/FlagQA.js +1 -1
- package/es/phone-input/flags/FlagRE.js +1 -1
- package/es/phone-input/flags/FlagRO.js +1 -1
- package/es/phone-input/flags/FlagRS.js +1 -1
- package/es/phone-input/flags/FlagRU.js +1 -1
- package/es/phone-input/flags/FlagRW.js +1 -1
- package/es/phone-input/flags/FlagSA.js +1 -1
- package/es/phone-input/flags/FlagSB.js +1 -1
- package/es/phone-input/flags/FlagSC.js +1 -1
- package/es/phone-input/flags/FlagSD.js +1 -1
- package/es/phone-input/flags/FlagSE.js +1 -1
- package/es/phone-input/flags/FlagSG.js +1 -1
- package/es/phone-input/flags/FlagSH.js +1 -1
- package/es/phone-input/flags/FlagSI.js +1 -1
- package/es/phone-input/flags/FlagSJ.js +1 -1
- package/es/phone-input/flags/FlagSK.js +1 -1
- package/es/phone-input/flags/FlagSL.js +1 -1
- package/es/phone-input/flags/FlagSM.js +1 -1
- package/es/phone-input/flags/FlagSN.js +1 -1
- package/es/phone-input/flags/FlagSO.js +1 -1
- package/es/phone-input/flags/FlagSR.js +1 -1
- package/es/phone-input/flags/FlagSS.js +1 -1
- package/es/phone-input/flags/FlagST.js +1 -1
- package/es/phone-input/flags/FlagSV.js +1 -1
- package/es/phone-input/flags/FlagSX.js +1 -1
- package/es/phone-input/flags/FlagSY.js +1 -1
- package/es/phone-input/flags/FlagSZ.js +1 -1
- package/es/phone-input/flags/FlagTC.js +1 -1
- package/es/phone-input/flags/FlagTD.js +1 -1
- package/es/phone-input/flags/FlagTF.js +1 -1
- package/es/phone-input/flags/FlagTG.js +1 -1
- package/es/phone-input/flags/FlagTH.js +1 -1
- package/es/phone-input/flags/FlagTJ.js +1 -1
- package/es/phone-input/flags/FlagTK.js +1 -1
- package/es/phone-input/flags/FlagTL.js +1 -1
- package/es/phone-input/flags/FlagTM.js +1 -1
- package/es/phone-input/flags/FlagTN.js +1 -1
- package/es/phone-input/flags/FlagTO.js +1 -1
- package/es/phone-input/flags/FlagTR.js +1 -1
- package/es/phone-input/flags/FlagTT.js +1 -1
- package/es/phone-input/flags/FlagTV.js +1 -1
- package/es/phone-input/flags/FlagTW.js +1 -1
- package/es/phone-input/flags/FlagTZ.js +1 -1
- package/es/phone-input/flags/FlagUA.js +1 -1
- package/es/phone-input/flags/FlagUG.js +1 -1
- package/es/phone-input/flags/FlagUM.js +1 -1
- package/es/phone-input/flags/FlagUS.js +1 -1
- package/es/phone-input/flags/FlagUY.js +1 -1
- package/es/phone-input/flags/FlagUZ.js +1 -1
- package/es/phone-input/flags/FlagVA.js +1 -1
- package/es/phone-input/flags/FlagVC.js +1 -1
- package/es/phone-input/flags/FlagVE.js +1 -1
- package/es/phone-input/flags/FlagVG.js +1 -1
- package/es/phone-input/flags/FlagVI.js +1 -1
- package/es/phone-input/flags/FlagVN.js +1 -1
- package/es/phone-input/flags/FlagVU.js +1 -1
- package/es/phone-input/flags/FlagWF.js +1 -1
- package/es/phone-input/flags/FlagWS.js +1 -1
- package/es/phone-input/flags/FlagXK.js +1 -1
- package/es/phone-input/flags/FlagYE.js +1 -1
- package/es/phone-input/flags/FlagYT.js +1 -1
- package/es/phone-input/flags/FlagZA.js +1 -1
- package/es/phone-input/flags/FlagZM.js +1 -1
- package/es/phone-input/flags/FlagZW.js +1 -1
- package/es/phone-input/flags/index.js +241 -241
- package/es/phone-input/index.js +9 -8
- package/es/phone-input/phone-input-lite.js +6 -6
- package/es/phone-input/phone-input-next.js +7 -7
- package/es/phone-input/phone-input.js +4 -4
- package/es/phone-input/stateful-phone-input-container.js +2 -2
- package/es/phone-input/stateful-phone-input-next.js +3 -3
- package/es/phone-input/stateful-phone-input.js +3 -3
- package/es/phone-input/styled-components.js +5 -5
- package/es/phone-input/types.js +1 -8
- package/es/pin-code/default-props.js +1 -1
- package/es/pin-code/index.js +4 -4
- package/es/pin-code/pin-code.js +5 -5
- package/es/pin-code/stateful-pin-code-container.js +2 -2
- package/es/pin-code/stateful-pin-code.js +3 -3
- package/es/pin-code/styled-components.js +3 -3
- package/es/pin-code/types.js +1 -8
- package/es/popover/default-props.js +1 -1
- package/es/popover/index.js +7 -5
- package/es/popover/popover.js +7 -7
- package/es/popover/stateful-container.js +1 -1
- package/es/popover/stateful-popover.js +3 -3
- package/es/popover/styled-components.js +3 -3
- package/es/popover/types.js +1 -10
- package/es/popover/utils.js +1 -1
- package/es/progress-bar/index.js +6 -4
- package/es/progress-bar/progressbar-rounded.js +4 -4
- package/es/progress-bar/progressbar.js +4 -4
- package/es/progress-bar/styled-components.js +3 -3
- package/es/progress-bar/types.js +1 -8
- package/es/progress-steps/index.js +5 -4
- package/es/progress-steps/numbered-step.js +4 -4
- package/es/progress-steps/progress-steps.js +3 -3
- package/es/progress-steps/step.js +3 -3
- package/es/progress-steps/styled-components.js +1 -1
- package/es/progress-steps/types.js +1 -0
- package/es/radio/index.js +7 -6
- package/es/radio/radio.js +3 -3
- package/es/radio/radiogroup.js +4 -4
- package/es/radio/stateful-radiogroup-container.js +1 -1
- package/es/radio/stateful-radiogroup.js +2 -2
- package/es/radio/styled-components.js +1 -1
- package/es/radio/types.js +1 -8
- package/es/rating/emoticon-rating.js +5 -5
- package/es/rating/index.js +4 -3
- package/es/rating/star-rating.js +5 -5
- package/es/rating/styled-components.js +2 -2
- package/es/rating/types.js +1 -0
- package/es/select/autosize-input.js +3 -3
- package/es/select/constants.js +1 -1
- package/es/select/default-props.js +2 -2
- package/es/select/dropdown.js +4 -4
- package/es/select/index.js +13 -12
- package/es/select/multi-select.js +3 -3
- package/es/select/multi-value.js +3 -3
- package/es/select/select-component.js +13 -13
- package/es/select/select.js +4 -4
- package/es/select/single-select.js +3 -3
- package/es/select/stateful-select.js +3 -3
- package/es/select/styled-components.js +5 -5
- package/es/select/types.js +1 -8
- package/es/select/value.js +3 -3
- package/es/side-navigation/index.js +5 -3
- package/es/side-navigation/nav-item.js +3 -3
- package/es/side-navigation/nav.js +5 -5
- package/es/side-navigation/stateful-container.js +1 -1
- package/es/side-navigation/stateful-nav.js +2 -2
- package/es/side-navigation/styled-components.js +1 -1
- package/es/side-navigation/types.js +1 -2
- package/es/skeleton/index.js +1 -1
- package/es/skeleton/skeleton.js +3 -3
- package/es/skeleton/styled-components.js +1 -1
- package/es/skeleton/types.js +1 -0
- package/es/slider/index.js +5 -4
- package/es/slider/slider.js +7 -6
- package/es/slider/stateful-slider-container.js +1 -1
- package/es/slider/stateful-slider.js +2 -2
- package/es/slider/styled-components.js +1 -1
- package/es/slider/types.js +1 -7
- package/es/snackbar/index.js +5 -4
- package/es/snackbar/snackbar-context.js +7 -7
- package/es/snackbar/snackbar-element.js +5 -5
- package/es/snackbar/styled-components.js +3 -3
- package/es/snackbar/types.js +1 -8
- package/es/spinner/index.js +4 -2
- package/es/spinner/styled-components.js +2 -2
- package/es/spinner/types.js +1 -7
- package/es/styles/__mocks__/as-primary-export-hoc.js +1 -1
- package/es/styles/__mocks__/styled.js +3 -3
- package/es/styles/index.js +6 -5
- package/es/styles/styled.js +2 -2
- package/es/styles/theme-provider.js +1 -1
- package/es/styles/types.js +1 -0
- package/es/table/filter.js +6 -6
- package/es/table/index.js +7 -5
- package/es/table/sortable-head-cell.js +6 -6
- package/es/table/styled-components.js +2 -2
- package/es/table/table.js +2 -2
- package/es/table/types.js +1 -8
- package/es/table-grid/index.js +3 -3
- package/es/table-grid/sortable-head-cell.js +2 -2
- package/es/table-grid/styled-components.js +3 -3
- package/es/table-semantic/index.js +7 -5
- package/es/table-semantic/styled-components.js +5 -5
- package/es/table-semantic/table-builder.js +7 -7
- package/es/table-semantic/table.js +3 -3
- package/es/table-semantic/types.js +1 -8
- package/es/tabs/index.js +7 -5
- package/es/tabs/stateful-tabs.js +3 -3
- package/es/tabs/styled-components.js +2 -2
- package/es/tabs/tab.js +4 -4
- package/es/tabs/tabs.js +4 -4
- package/es/tabs/types.js +1 -10
- package/es/tabs-motion/index.js +7 -6
- package/es/tabs-motion/stateful-tabs.js +3 -3
- package/es/tabs-motion/styled-components.js +3 -3
- package/es/tabs-motion/tabs.js +7 -7
- package/es/tabs-motion/types.js +1 -8
- package/es/tabs-motion/utils.js +1 -2
- package/es/tag/index.js +4 -3
- package/es/tag/styled-components.js +3 -3
- package/es/tag/tag.js +9 -8
- package/es/tag/types.js +1 -2
- package/es/textarea/constants.js +1 -1
- package/es/textarea/index.js +6 -5
- package/es/textarea/stateful-container.js +1 -1
- package/es/textarea/stateful-textarea.js +2 -2
- package/es/textarea/styled-components.js +2 -2
- package/es/textarea/textarea.js +4 -4
- package/es/textarea/types.js +1 -8
- package/es/themes/dark-theme/borders.js +2 -2
- package/es/themes/dark-theme/color-component-tokens.js +2 -2
- package/es/themes/dark-theme/color-semantic-tokens.js +3 -3
- package/es/themes/dark-theme/color-tokens.js +1 -1
- package/es/themes/dark-theme/create-dark-theme.js +12 -12
- package/es/themes/dark-theme/dark-theme.js +11 -11
- package/es/themes/dark-theme/primitives.js +2 -2
- package/es/themes/index.js +10 -9
- package/es/themes/light-theme/color-component-tokens.js +1 -1
- package/es/themes/light-theme/color-semantic-tokens.js +3 -3
- package/es/themes/light-theme/color-tokens.js +1 -1
- package/es/themes/light-theme/create-light-theme.js +12 -12
- package/es/themes/light-theme/light-theme.js +11 -11
- package/es/themes/light-theme/primitives.js +2 -2
- package/es/themes/move-theme/dark-theme-with-move.js +4 -4
- package/es/themes/move-theme/light-theme-with-move.js +4 -4
- package/es/themes/shared/media-query.js +2 -2
- package/es/themes/types.js +1 -0
- package/es/timepicker/index.js +3 -1
- package/es/timepicker/timepicker.js +6 -6
- package/es/timepicker/types.js +1 -0
- package/es/timezonepicker/index.js +2 -1
- package/es/timezonepicker/timezone-picker.js +5 -5
- package/es/timezonepicker/types.js +1 -9
- package/es/timezonepicker/update-tzdata.js +1 -0
- package/es/toast/index.js +6 -4
- package/es/toast/styled-components.js +3 -3
- package/es/toast/toast.js +7 -7
- package/es/toast/toaster.js +5 -5
- package/es/toast/types.js +1 -8
- package/es/tokens/index.js +2 -1
- package/es/tokens/types.js +1 -0
- package/es/tooltip/constants.js +1 -1
- package/es/tooltip/default-props.js +1 -1
- package/es/tooltip/index.js +7 -5
- package/es/tooltip/stateful-tooltip-container.js +2 -2
- package/es/tooltip/stateful-tooltip.js +2 -2
- package/es/tooltip/styled-components.js +3 -3
- package/es/tooltip/tooltip.js +5 -5
- package/es/tooltip/types.js +1 -0
- package/es/tree-view/index.js +7 -6
- package/es/tree-view/stateful-tree-view.js +2 -2
- package/es/tree-view/styled-components.js +1 -1
- package/es/tree-view/tree-label-interactable.js +3 -3
- package/es/tree-view/tree-label.js +8 -8
- package/es/tree-view/tree-node.js +4 -4
- package/es/tree-view/tree-view.js +6 -6
- package/es/tree-view/types.js +1 -7
- package/es/typography/index.js +2 -2
- package/es/utils/deprecated-component.js +1 -1
- package/esm/a11y/a11y.js +5 -5
- package/esm/a11y/index.js +1 -1
- package/esm/a11y/types.js +1 -0
- package/esm/accordion/accordion.js +15 -15
- package/esm/accordion/index.js +9 -7
- package/esm/accordion/panel.js +8 -8
- package/esm/accordion/stateful-panel-container.js +13 -11
- package/esm/accordion/stateful-panel.js +5 -3
- package/esm/accordion/stateless-accordion.js +8 -6
- package/esm/accordion/styled-components.js +4 -4
- package/esm/accordion/types.js +1 -10
- package/esm/app-nav-bar/app-nav-bar.js +10 -10
- package/esm/app-nav-bar/index.js +5 -5
- package/esm/app-nav-bar/mobile-menu.js +20 -17
- package/esm/app-nav-bar/styled-components.js +6 -6
- package/esm/app-nav-bar/types.js +1 -8
- package/esm/app-nav-bar/user-menu.js +16 -14
- package/esm/app-nav-bar/user-profile-tile.js +5 -5
- package/esm/aspect-ratio-box/aspect-ratio-box-body.js +5 -3
- package/esm/aspect-ratio-box/aspect-ratio-box.js +6 -4
- package/esm/aspect-ratio-box/index.js +3 -2
- package/esm/aspect-ratio-box/types.js +1 -0
- package/esm/avatar/avatar.js +4 -4
- package/esm/avatar/index.js +4 -2
- package/esm/avatar/styled-components.js +3 -3
- package/esm/avatar/types.js +1 -0
- package/esm/badge/badge.js +6 -6
- package/esm/badge/hint-dot.js +7 -7
- package/esm/badge/index.js +6 -5
- package/esm/badge/notification-circle.js +6 -6
- package/esm/badge/styled-components.js +4 -4
- package/esm/badge/types.js +1 -8
- package/esm/banner/banner.js +7 -7
- package/esm/banner/index.js +4 -3
- package/esm/banner/styled-components.js +2 -2
- package/esm/banner/types.js +1 -8
- package/esm/block/block.js +7 -5
- package/esm/block/index.js +2 -1
- package/esm/block/styled-components.js +2 -2
- package/esm/block/types.js +1 -0
- package/esm/breadcrumbs/breadcrumbs.js +8 -8
- package/esm/breadcrumbs/index.js +3 -2
- package/esm/breadcrumbs/styled-components.js +3 -3
- package/esm/breadcrumbs/types.js +1 -0
- package/esm/button/button-internals.js +8 -6
- package/esm/button/button.js +20 -18
- package/esm/button/default-props.js +1 -1
- package/esm/button/index.js +5 -3
- package/esm/button/styled-components.js +4 -4
- package/esm/button/types.js +1 -8
- package/esm/button-group/button-group.js +16 -16
- package/esm/button-group/index.js +8 -6
- package/esm/button-group/stateful-button-group.js +6 -4
- package/esm/button-group/stateful-container.js +14 -12
- package/esm/button-group/styled-components.js +2 -2
- package/esm/button-group/types.js +1 -9
- package/esm/card/card.js +9 -6
- package/esm/card/index.js +3 -2
- package/esm/card/styled-components.js +3 -3
- package/esm/card/types.js +1 -0
- package/esm/checkbox/checkbox.js +12 -12
- package/esm/checkbox/index.js +7 -5
- package/esm/checkbox/stateful-checkbox-container.js +13 -11
- package/esm/checkbox/stateful-checkbox.js +2 -2
- package/esm/checkbox/styled-components.js +3 -3
- package/esm/checkbox/types.js +1 -7
- package/esm/combobox/combobox.js +12 -9
- package/esm/combobox/index.js +4 -3
- package/esm/combobox/styled-components.js +4 -4
- package/esm/combobox/types.js +1 -8
- package/esm/data-table/column-anchor.js +6 -6
- package/esm/data-table/column-boolean.js +6 -6
- package/esm/data-table/column-categorical.js +17 -15
- package/esm/data-table/column-custom.js +4 -4
- package/esm/data-table/column-datetime.js +17 -17
- package/esm/data-table/column-numerical.js +13 -13
- package/esm/data-table/column-row-index.js +4 -4
- package/esm/data-table/column-string.js +6 -6
- package/esm/data-table/column.js +5 -5
- package/esm/data-table/data-table.js +11 -11
- package/esm/data-table/filter-menu.js +12 -12
- package/esm/data-table/filter-shell.js +6 -6
- package/esm/data-table/header-cell.js +9 -9
- package/esm/data-table/index.js +16 -15
- package/esm/data-table/measure-column-widths.js +3 -3
- package/esm/data-table/stateful-container.js +3 -3
- package/esm/data-table/stateful-data-table.js +11 -11
- package/esm/data-table/text-search.js +4 -4
- package/esm/data-table/types.js +1 -8
- package/esm/datepicker/calendar-header.js +25 -25
- package/esm/datepicker/calendar.js +24 -22
- package/esm/datepicker/datepicker.js +22 -22
- package/esm/datepicker/day.js +16 -16
- package/esm/datepicker/index.js +12 -10
- package/esm/datepicker/month.js +14 -14
- package/esm/datepicker/stateful-calendar.js +10 -10
- package/esm/datepicker/stateful-container.js +13 -11
- package/esm/datepicker/stateful-datepicker.js +10 -10
- package/esm/datepicker/styled-components.js +6 -6
- package/esm/datepicker/types.js +1 -10
- package/esm/datepicker/utils/calendar-header-helpers.js +3 -3
- package/esm/datepicker/utils/date-helpers.js +9 -5
- package/esm/datepicker/utils/types.js +1 -0
- package/esm/datepicker/week.js +15 -15
- package/esm/dnd-list/index.js +7 -5
- package/esm/dnd-list/list.js +17 -17
- package/esm/dnd-list/stateful-list-container.js +12 -10
- package/esm/dnd-list/stateful-list.js +2 -2
- package/esm/dnd-list/styled-components.js +3 -3
- package/esm/dnd-list/types.js +1 -10
- package/esm/drawer/close-icon.js +1 -1
- package/esm/drawer/drawer.js +16 -16
- package/esm/drawer/index.js +4 -3
- package/esm/drawer/styled-components.js +4 -4
- package/esm/drawer/types.js +1 -10
- package/esm/file-uploader/file-uploader.js +14 -12
- package/esm/file-uploader/index.js +4 -2
- package/esm/file-uploader/styled-components.js +3 -3
- package/esm/file-uploader/types.js +1 -0
- package/esm/flex-grid/flex-grid-item.js +11 -9
- package/esm/flex-grid/flex-grid.js +10 -7
- package/esm/flex-grid/index.js +3 -2
- package/esm/flex-grid/types.js +1 -0
- package/esm/form-control/form-control.js +10 -10
- package/esm/form-control/index.js +3 -2
- package/esm/form-control/styled-components.js +3 -3
- package/esm/form-control/types.js +1 -7
- package/esm/header-navigation/header-navigation.js +14 -12
- package/esm/header-navigation/index.js +4 -3
- package/esm/header-navigation/styled-components.js +4 -4
- package/esm/header-navigation/types.js +1 -0
- package/esm/heading/heading.js +6 -4
- package/esm/heading/index.js +3 -2
- package/esm/heading/types.js +1 -7
- package/esm/helper/constants.js +1 -1
- package/esm/helper/helper-steps.js +6 -6
- package/esm/helper/helper.js +9 -7
- package/esm/helper/index.js +6 -5
- package/esm/helper/stateful-helper.js +6 -4
- package/esm/helper/styled-components.js +8 -8
- package/esm/helper/types.js +1 -0
- package/esm/helpers/base-provider.js +2 -2
- package/esm/helpers/overrides.js +28 -27
- package/esm/helpers/react-helpers.js +1 -1
- package/esm/helpers/types.js +1 -7
- package/esm/icon/alert.js +8 -6
- package/esm/icon/arrow-down.js +8 -6
- package/esm/icon/arrow-left.js +8 -6
- package/esm/icon/arrow-right.js +8 -6
- package/esm/icon/arrow-up.js +8 -6
- package/esm/icon/blank.js +8 -6
- package/esm/icon/build-icons.js +10 -7
- package/esm/icon/check-indeterminate.js +8 -6
- package/esm/icon/check.js +8 -6
- package/esm/icon/chevron-down.js +8 -6
- package/esm/icon/chevron-left.js +8 -6
- package/esm/icon/chevron-right.js +8 -6
- package/esm/icon/chevron-up.js +8 -6
- package/esm/icon/delete-alt.js +8 -6
- package/esm/icon/delete.js +8 -6
- package/esm/icon/filter.js +8 -6
- package/esm/icon/grab.js +8 -6
- package/esm/icon/hide.js +8 -6
- package/esm/icon/icon-exports.js +28 -28
- package/esm/icon/icon.js +10 -8
- package/esm/icon/index.js +4 -3
- package/esm/icon/menu.js +8 -6
- package/esm/icon/overflow.js +8 -6
- package/esm/icon/plus.js +8 -6
- package/esm/icon/search.js +8 -6
- package/esm/icon/show.js +8 -6
- package/esm/icon/spinner.js +8 -6
- package/esm/icon/styled-components.js +1 -1
- package/esm/icon/triangle-down.js +8 -6
- package/esm/icon/triangle-left.js +8 -6
- package/esm/icon/triangle-right.js +8 -6
- package/esm/icon/triangle-up.js +8 -6
- package/esm/icon/types.js +1 -9
- package/esm/icon/upload.js +8 -6
- package/esm/index.js +5 -5
- package/esm/input/base-input.js +17 -17
- package/esm/input/index.js +8 -7
- package/esm/input/input.js +19 -16
- package/esm/input/masked-input.js +13 -9
- package/esm/input/stateful-container.js +13 -11
- package/esm/input/stateful-input.js +2 -2
- package/esm/input/styled-components.js +5 -5
- package/esm/input/types.js +1 -8
- package/esm/layer/index.js +5 -4
- package/esm/layer/layer.js +10 -10
- package/esm/layer/layers-manager.js +13 -13
- package/esm/layer/tether.js +14 -12
- package/esm/layer/types.js +1 -8
- package/esm/layout-grid/cell.js +5 -5
- package/esm/layout-grid/grid.js +7 -7
- package/esm/layout-grid/index.js +5 -5
- package/esm/layout-grid/styled-components.js +5 -5
- package/esm/layout-grid/types.js +1 -8
- package/esm/link/index.js +8 -6
- package/esm/link/styled-components.js +3 -3
- package/esm/list/index.js +7 -6
- package/esm/list/list-heading.js +7 -5
- package/esm/list/list-item-label.js +3 -3
- package/esm/list/list-item.js +6 -6
- package/esm/list/menu-adapter.js +2 -2
- package/esm/list/styled-components.js +5 -5
- package/esm/list/types.js +1 -8
- package/esm/list/utils.js +1 -1
- package/esm/locale/en_US.js +12 -12
- package/esm/locale/index.js +1 -1
- package/esm/locale/types.js +1 -0
- package/esm/map-marker/badge-enhancer.js +5 -5
- package/esm/map-marker/drag-shadow.js +5 -5
- package/esm/map-marker/fixed-marker.js +12 -10
- package/esm/map-marker/floating-marker.js +7 -7
- package/esm/map-marker/index.js +4 -3
- package/esm/map-marker/label-enhancer.js +5 -5
- package/esm/map-marker/needle.js +5 -5
- package/esm/map-marker/pin-head.js +7 -7
- package/esm/map-marker/styled-components.js +4 -4
- package/esm/map-marker/types.js +1 -8
- package/esm/menu/index.js +10 -8
- package/esm/menu/maybe-child-menu.js +5 -5
- package/esm/menu/menu.js +10 -8
- package/esm/menu/nested-menus.js +9 -9
- package/esm/menu/option-list.js +12 -10
- package/esm/menu/option-profile.js +8 -6
- package/esm/menu/stateful-container.js +17 -14
- package/esm/menu/stateful-menu.js +14 -12
- package/esm/menu/styled-components.js +7 -5
- package/esm/menu/types.js +1 -8
- package/esm/modal/focus-once.js +1 -1
- package/esm/modal/index.js +6 -5
- package/esm/modal/modal-button.js +3 -3
- package/esm/modal/modal.js +16 -16
- package/esm/modal/styled-components.js +4 -4
- package/esm/modal/types.js +1 -10
- package/esm/notification/index.js +2 -2
- package/esm/notification/notification.js +10 -10
- package/esm/pagination/index.js +8 -6
- package/esm/pagination/pagination.js +20 -20
- package/esm/pagination/stateful-container.js +9 -9
- package/esm/pagination/stateful-pagination.js +6 -4
- package/esm/pagination/styled-components.js +3 -3
- package/esm/pagination/types.js +1 -8
- package/esm/payment-card/index.js +6 -5
- package/esm/payment-card/payment-card.js +33 -30
- package/esm/payment-card/stateful-payment-card.js +2 -2
- package/esm/payment-card/styled-components.js +2 -2
- package/esm/payment-card/types.js +1 -0
- package/esm/phone-input/base-country-picker.js +13 -11
- package/esm/phone-input/constants.js +1 -1
- package/esm/phone-input/country-picker.js +14 -11
- package/esm/phone-input/country-select-dropdown.js +11 -9
- package/esm/phone-input/country-select.js +9 -9
- package/esm/phone-input/default-props.js +1 -1
- package/esm/phone-input/flag.js +7 -5
- package/esm/phone-input/flags/FlagAD.js +1 -1
- package/esm/phone-input/flags/FlagAE.js +1 -1
- package/esm/phone-input/flags/FlagAF.js +1 -1
- package/esm/phone-input/flags/FlagAG.js +1 -1
- package/esm/phone-input/flags/FlagAI.js +1 -1
- package/esm/phone-input/flags/FlagAL.js +1 -1
- package/esm/phone-input/flags/FlagAM.js +1 -1
- package/esm/phone-input/flags/FlagAO.js +1 -1
- package/esm/phone-input/flags/FlagAR.js +1 -1
- package/esm/phone-input/flags/FlagAS.js +1 -1
- package/esm/phone-input/flags/FlagAT.js +1 -1
- package/esm/phone-input/flags/FlagAU.js +1 -1
- package/esm/phone-input/flags/FlagAW.js +1 -1
- package/esm/phone-input/flags/FlagAX.js +1 -1
- package/esm/phone-input/flags/FlagAZ.js +1 -1
- package/esm/phone-input/flags/FlagBA.js +1 -1
- package/esm/phone-input/flags/FlagBB.js +1 -1
- package/esm/phone-input/flags/FlagBD.js +1 -1
- package/esm/phone-input/flags/FlagBE.js +1 -1
- package/esm/phone-input/flags/FlagBF.js +1 -1
- package/esm/phone-input/flags/FlagBG.js +1 -1
- package/esm/phone-input/flags/FlagBH.js +1 -1
- package/esm/phone-input/flags/FlagBI.js +1 -1
- package/esm/phone-input/flags/FlagBJ.js +1 -1
- package/esm/phone-input/flags/FlagBL.js +1 -1
- package/esm/phone-input/flags/FlagBM.js +1 -1
- package/esm/phone-input/flags/FlagBN.js +1 -1
- package/esm/phone-input/flags/FlagBO.js +1 -1
- package/esm/phone-input/flags/FlagBR.js +1 -1
- package/esm/phone-input/flags/FlagBS.js +1 -1
- package/esm/phone-input/flags/FlagBT.js +1 -1
- package/esm/phone-input/flags/FlagBV.js +1 -1
- package/esm/phone-input/flags/FlagBW.js +1 -1
- package/esm/phone-input/flags/FlagBY.js +1 -1
- package/esm/phone-input/flags/FlagBZ.js +1 -1
- package/esm/phone-input/flags/FlagCA.js +1 -1
- package/esm/phone-input/flags/FlagCC.js +1 -1
- package/esm/phone-input/flags/FlagCD.js +1 -1
- package/esm/phone-input/flags/FlagCF.js +1 -1
- package/esm/phone-input/flags/FlagCG.js +1 -1
- package/esm/phone-input/flags/FlagCH.js +1 -1
- package/esm/phone-input/flags/FlagCI.js +1 -1
- package/esm/phone-input/flags/FlagCK.js +1 -1
- package/esm/phone-input/flags/FlagCL.js +1 -1
- package/esm/phone-input/flags/FlagCM.js +1 -1
- package/esm/phone-input/flags/FlagCN.js +1 -1
- package/esm/phone-input/flags/FlagCO.js +1 -1
- package/esm/phone-input/flags/FlagCR.js +1 -1
- package/esm/phone-input/flags/FlagCU.js +1 -1
- package/esm/phone-input/flags/FlagCV.js +1 -1
- package/esm/phone-input/flags/FlagCW.js +1 -1
- package/esm/phone-input/flags/FlagCX.js +1 -1
- package/esm/phone-input/flags/FlagCY.js +1 -1
- package/esm/phone-input/flags/FlagCZ.js +1 -1
- package/esm/phone-input/flags/FlagDE.js +1 -1
- package/esm/phone-input/flags/FlagDJ.js +1 -1
- package/esm/phone-input/flags/FlagDK.js +1 -1
- package/esm/phone-input/flags/FlagDM.js +1 -1
- package/esm/phone-input/flags/FlagDO.js +1 -1
- package/esm/phone-input/flags/FlagDZ.js +1 -1
- package/esm/phone-input/flags/FlagEC.js +1 -1
- package/esm/phone-input/flags/FlagEE.js +1 -1
- package/esm/phone-input/flags/FlagEG.js +1 -1
- package/esm/phone-input/flags/FlagER.js +1 -1
- package/esm/phone-input/flags/FlagES.js +1 -1
- package/esm/phone-input/flags/FlagET.js +1 -1
- package/esm/phone-input/flags/FlagEU.js +1 -1
- package/esm/phone-input/flags/FlagFI.js +1 -1
- package/esm/phone-input/flags/FlagFJ.js +1 -1
- package/esm/phone-input/flags/FlagFK.js +1 -1
- package/esm/phone-input/flags/FlagFM.js +1 -1
- package/esm/phone-input/flags/FlagFO.js +1 -1
- package/esm/phone-input/flags/FlagFR.js +1 -1
- package/esm/phone-input/flags/FlagGA.js +1 -1
- package/esm/phone-input/flags/FlagGB.js +1 -1
- package/esm/phone-input/flags/FlagGD.js +1 -1
- package/esm/phone-input/flags/FlagGE.js +1 -1
- package/esm/phone-input/flags/FlagGF.js +1 -1
- package/esm/phone-input/flags/FlagGG.js +1 -1
- package/esm/phone-input/flags/FlagGH.js +1 -1
- package/esm/phone-input/flags/FlagGI.js +1 -1
- package/esm/phone-input/flags/FlagGL.js +1 -1
- package/esm/phone-input/flags/FlagGM.js +1 -1
- package/esm/phone-input/flags/FlagGN.js +1 -1
- package/esm/phone-input/flags/FlagGP.js +1 -1
- package/esm/phone-input/flags/FlagGQ.js +1 -1
- package/esm/phone-input/flags/FlagGR.js +1 -1
- package/esm/phone-input/flags/FlagGS.js +1 -1
- package/esm/phone-input/flags/FlagGT.js +1 -1
- package/esm/phone-input/flags/FlagGU.js +1 -1
- package/esm/phone-input/flags/FlagGW.js +1 -1
- package/esm/phone-input/flags/FlagGY.js +1 -1
- package/esm/phone-input/flags/FlagHK.js +1 -1
- package/esm/phone-input/flags/FlagHM.js +1 -1
- package/esm/phone-input/flags/FlagHN.js +1 -1
- package/esm/phone-input/flags/FlagHR.js +1 -1
- package/esm/phone-input/flags/FlagHT.js +1 -1
- package/esm/phone-input/flags/FlagHU.js +1 -1
- package/esm/phone-input/flags/FlagID.js +1 -1
- package/esm/phone-input/flags/FlagIE.js +1 -1
- package/esm/phone-input/flags/FlagIL.js +1 -1
- package/esm/phone-input/flags/FlagIM.js +1 -1
- package/esm/phone-input/flags/FlagIN.js +1 -1
- package/esm/phone-input/flags/FlagIO.js +1 -1
- package/esm/phone-input/flags/FlagIQ.js +1 -1
- package/esm/phone-input/flags/FlagIR.js +1 -1
- package/esm/phone-input/flags/FlagIS.js +1 -1
- package/esm/phone-input/flags/FlagIT.js +1 -1
- package/esm/phone-input/flags/FlagJE.js +1 -1
- package/esm/phone-input/flags/FlagJM.js +1 -1
- package/esm/phone-input/flags/FlagJO.js +1 -1
- package/esm/phone-input/flags/FlagJP.js +1 -1
- package/esm/phone-input/flags/FlagKE.js +1 -1
- package/esm/phone-input/flags/FlagKG.js +1 -1
- package/esm/phone-input/flags/FlagKH.js +1 -1
- package/esm/phone-input/flags/FlagKI.js +1 -1
- package/esm/phone-input/flags/FlagKM.js +1 -1
- package/esm/phone-input/flags/FlagKN.js +1 -1
- package/esm/phone-input/flags/FlagKP.js +1 -1
- package/esm/phone-input/flags/FlagKR.js +1 -1
- package/esm/phone-input/flags/FlagKW.js +1 -1
- package/esm/phone-input/flags/FlagKY.js +1 -1
- package/esm/phone-input/flags/FlagKZ.js +1 -1
- package/esm/phone-input/flags/FlagLA.js +1 -1
- package/esm/phone-input/flags/FlagLB.js +1 -1
- package/esm/phone-input/flags/FlagLC.js +1 -1
- package/esm/phone-input/flags/FlagLI.js +1 -1
- package/esm/phone-input/flags/FlagLK.js +1 -1
- package/esm/phone-input/flags/FlagLR.js +1 -1
- package/esm/phone-input/flags/FlagLS.js +1 -1
- package/esm/phone-input/flags/FlagLT.js +1 -1
- package/esm/phone-input/flags/FlagLU.js +1 -1
- package/esm/phone-input/flags/FlagLV.js +1 -1
- package/esm/phone-input/flags/FlagLY.js +1 -1
- package/esm/phone-input/flags/FlagMA.js +1 -1
- package/esm/phone-input/flags/FlagMC.js +1 -1
- package/esm/phone-input/flags/FlagMD.js +1 -1
- package/esm/phone-input/flags/FlagME.js +1 -1
- package/esm/phone-input/flags/FlagMF.js +1 -1
- package/esm/phone-input/flags/FlagMG.js +1 -1
- package/esm/phone-input/flags/FlagMH.js +1 -1
- package/esm/phone-input/flags/FlagMK.js +1 -1
- package/esm/phone-input/flags/FlagML.js +1 -1
- package/esm/phone-input/flags/FlagMM.js +1 -1
- package/esm/phone-input/flags/FlagMN.js +1 -1
- package/esm/phone-input/flags/FlagMO.js +1 -1
- package/esm/phone-input/flags/FlagMP.js +1 -1
- package/esm/phone-input/flags/FlagMQ.js +1 -1
- package/esm/phone-input/flags/FlagMR.js +1 -1
- package/esm/phone-input/flags/FlagMS.js +1 -1
- package/esm/phone-input/flags/FlagMT.js +1 -1
- package/esm/phone-input/flags/FlagMU.js +1 -1
- package/esm/phone-input/flags/FlagMV.js +1 -1
- package/esm/phone-input/flags/FlagMW.js +1 -1
- package/esm/phone-input/flags/FlagMX.js +1 -1
- package/esm/phone-input/flags/FlagMY.js +1 -1
- package/esm/phone-input/flags/FlagMZ.js +1 -1
- package/esm/phone-input/flags/FlagNA.js +1 -1
- package/esm/phone-input/flags/FlagNC.js +1 -1
- package/esm/phone-input/flags/FlagNE.js +1 -1
- package/esm/phone-input/flags/FlagNF.js +1 -1
- package/esm/phone-input/flags/FlagNG.js +1 -1
- package/esm/phone-input/flags/FlagNI.js +1 -1
- package/esm/phone-input/flags/FlagNL.js +1 -1
- package/esm/phone-input/flags/FlagNO.js +1 -1
- package/esm/phone-input/flags/FlagNP.js +1 -1
- package/esm/phone-input/flags/FlagNR.js +1 -1
- package/esm/phone-input/flags/FlagNU.js +1 -1
- package/esm/phone-input/flags/FlagNZ.js +1 -1
- package/esm/phone-input/flags/FlagOM.js +1 -1
- package/esm/phone-input/flags/FlagPA.js +1 -1
- package/esm/phone-input/flags/FlagPE.js +1 -1
- package/esm/phone-input/flags/FlagPF.js +1 -1
- package/esm/phone-input/flags/FlagPG.js +1 -1
- package/esm/phone-input/flags/FlagPH.js +1 -1
- package/esm/phone-input/flags/FlagPK.js +1 -1
- package/esm/phone-input/flags/FlagPL.js +1 -1
- package/esm/phone-input/flags/FlagPM.js +1 -1
- package/esm/phone-input/flags/FlagPN.js +1 -1
- package/esm/phone-input/flags/FlagPR.js +1 -1
- package/esm/phone-input/flags/FlagPS.js +1 -1
- package/esm/phone-input/flags/FlagPT.js +1 -1
- package/esm/phone-input/flags/FlagPW.js +1 -1
- package/esm/phone-input/flags/FlagPY.js +1 -1
- package/esm/phone-input/flags/FlagQA.js +1 -1
- package/esm/phone-input/flags/FlagRE.js +1 -1
- package/esm/phone-input/flags/FlagRO.js +1 -1
- package/esm/phone-input/flags/FlagRS.js +1 -1
- package/esm/phone-input/flags/FlagRU.js +1 -1
- package/esm/phone-input/flags/FlagRW.js +1 -1
- package/esm/phone-input/flags/FlagSA.js +1 -1
- package/esm/phone-input/flags/FlagSB.js +1 -1
- package/esm/phone-input/flags/FlagSC.js +1 -1
- package/esm/phone-input/flags/FlagSD.js +1 -1
- package/esm/phone-input/flags/FlagSE.js +1 -1
- package/esm/phone-input/flags/FlagSG.js +1 -1
- package/esm/phone-input/flags/FlagSH.js +1 -1
- package/esm/phone-input/flags/FlagSI.js +1 -1
- package/esm/phone-input/flags/FlagSJ.js +1 -1
- package/esm/phone-input/flags/FlagSK.js +1 -1
- package/esm/phone-input/flags/FlagSL.js +1 -1
- package/esm/phone-input/flags/FlagSM.js +1 -1
- package/esm/phone-input/flags/FlagSN.js +1 -1
- package/esm/phone-input/flags/FlagSO.js +1 -1
- package/esm/phone-input/flags/FlagSR.js +1 -1
- package/esm/phone-input/flags/FlagSS.js +1 -1
- package/esm/phone-input/flags/FlagST.js +1 -1
- package/esm/phone-input/flags/FlagSV.js +1 -1
- package/esm/phone-input/flags/FlagSX.js +1 -1
- package/esm/phone-input/flags/FlagSY.js +1 -1
- package/esm/phone-input/flags/FlagSZ.js +1 -1
- package/esm/phone-input/flags/FlagTC.js +1 -1
- package/esm/phone-input/flags/FlagTD.js +1 -1
- package/esm/phone-input/flags/FlagTF.js +1 -1
- package/esm/phone-input/flags/FlagTG.js +1 -1
- package/esm/phone-input/flags/FlagTH.js +1 -1
- package/esm/phone-input/flags/FlagTJ.js +1 -1
- package/esm/phone-input/flags/FlagTK.js +1 -1
- package/esm/phone-input/flags/FlagTL.js +1 -1
- package/esm/phone-input/flags/FlagTM.js +1 -1
- package/esm/phone-input/flags/FlagTN.js +1 -1
- package/esm/phone-input/flags/FlagTO.js +1 -1
- package/esm/phone-input/flags/FlagTR.js +1 -1
- package/esm/phone-input/flags/FlagTT.js +1 -1
- package/esm/phone-input/flags/FlagTV.js +1 -1
- package/esm/phone-input/flags/FlagTW.js +1 -1
- package/esm/phone-input/flags/FlagTZ.js +1 -1
- package/esm/phone-input/flags/FlagUA.js +1 -1
- package/esm/phone-input/flags/FlagUG.js +1 -1
- package/esm/phone-input/flags/FlagUM.js +1 -1
- package/esm/phone-input/flags/FlagUS.js +1 -1
- package/esm/phone-input/flags/FlagUY.js +1 -1
- package/esm/phone-input/flags/FlagUZ.js +1 -1
- package/esm/phone-input/flags/FlagVA.js +1 -1
- package/esm/phone-input/flags/FlagVC.js +1 -1
- package/esm/phone-input/flags/FlagVE.js +1 -1
- package/esm/phone-input/flags/FlagVG.js +1 -1
- package/esm/phone-input/flags/FlagVI.js +1 -1
- package/esm/phone-input/flags/FlagVN.js +1 -1
- package/esm/phone-input/flags/FlagVU.js +1 -1
- package/esm/phone-input/flags/FlagWF.js +1 -1
- package/esm/phone-input/flags/FlagWS.js +1 -1
- package/esm/phone-input/flags/FlagXK.js +1 -1
- package/esm/phone-input/flags/FlagYE.js +1 -1
- package/esm/phone-input/flags/FlagYT.js +1 -1
- package/esm/phone-input/flags/FlagZA.js +1 -1
- package/esm/phone-input/flags/FlagZM.js +1 -1
- package/esm/phone-input/flags/FlagZW.js +1 -1
- package/esm/phone-input/flags/index.js +241 -241
- package/esm/phone-input/index.js +9 -8
- package/esm/phone-input/phone-input-lite.js +10 -8
- package/esm/phone-input/phone-input-next.js +13 -11
- package/esm/phone-input/phone-input.js +4 -4
- package/esm/phone-input/stateful-phone-input-container.js +11 -11
- package/esm/phone-input/stateful-phone-input-next.js +5 -5
- package/esm/phone-input/stateful-phone-input.js +3 -3
- package/esm/phone-input/styled-components.js +8 -6
- package/esm/phone-input/types.js +1 -8
- package/esm/phone-input/utils.js +2 -2
- package/esm/pin-code/default-props.js +1 -1
- package/esm/pin-code/index.js +4 -4
- package/esm/pin-code/pin-code.js +13 -13
- package/esm/pin-code/stateful-pin-code-container.js +11 -11
- package/esm/pin-code/stateful-pin-code.js +3 -3
- package/esm/pin-code/styled-components.js +3 -3
- package/esm/pin-code/types.js +1 -8
- package/esm/popover/default-props.js +1 -1
- package/esm/popover/index.js +7 -5
- package/esm/popover/popover.js +16 -16
- package/esm/popover/stateful-container.js +10 -10
- package/esm/popover/stateful-popover.js +6 -4
- package/esm/popover/styled-components.js +5 -5
- package/esm/popover/types.js +1 -10
- package/esm/popover/utils.js +4 -4
- package/esm/progress-bar/index.js +6 -4
- package/esm/progress-bar/progressbar-rounded.js +8 -6
- package/esm/progress-bar/progressbar.js +15 -13
- package/esm/progress-bar/styled-components.js +5 -5
- package/esm/progress-bar/types.js +1 -8
- package/esm/progress-steps/index.js +5 -4
- package/esm/progress-steps/numbered-step.js +5 -5
- package/esm/progress-steps/progress-steps.js +6 -6
- package/esm/progress-steps/step.js +4 -4
- package/esm/progress-steps/styled-components.js +3 -3
- package/esm/progress-steps/types.js +1 -0
- package/esm/radio/index.js +7 -6
- package/esm/radio/radio.js +11 -11
- package/esm/radio/radiogroup.js +12 -12
- package/esm/radio/stateful-radiogroup-container.js +13 -11
- package/esm/radio/stateful-radiogroup.js +5 -3
- package/esm/radio/styled-components.js +3 -3
- package/esm/radio/types.js +1 -8
- package/esm/rating/emoticon-rating.js +13 -13
- package/esm/rating/index.js +4 -3
- package/esm/rating/star-rating.js +13 -13
- package/esm/rating/styled-components.js +2 -2
- package/esm/rating/types.js +1 -0
- package/esm/select/autosize-input.js +16 -14
- package/esm/select/constants.js +1 -1
- package/esm/select/default-props.js +2 -2
- package/esm/select/dropdown.js +17 -15
- package/esm/select/index.js +13 -12
- package/esm/select/multi-select.js +3 -3
- package/esm/select/multi-value.js +7 -5
- package/esm/select/select-component.js +27 -24
- package/esm/select/select.js +4 -4
- package/esm/select/single-select.js +3 -3
- package/esm/select/stateful-select-container.js +12 -10
- package/esm/select/stateful-select.js +3 -3
- package/esm/select/styled-components.js +7 -7
- package/esm/select/types.js +1 -8
- package/esm/select/utils/default-filter-options.js +2 -2
- package/esm/select/utils/index.js +2 -2
- package/esm/select/value.js +7 -5
- package/esm/side-navigation/index.js +5 -3
- package/esm/side-navigation/nav-item.js +14 -12
- package/esm/side-navigation/nav.js +15 -15
- package/esm/side-navigation/stateful-container.js +13 -11
- package/esm/side-navigation/stateful-nav.js +2 -2
- package/esm/side-navigation/styled-components.js +6 -4
- package/esm/side-navigation/types.js +1 -2
- package/esm/skeleton/index.js +1 -1
- package/esm/skeleton/skeleton.js +11 -11
- package/esm/skeleton/styled-components.js +3 -3
- package/esm/skeleton/types.js +1 -0
- package/esm/slider/index.js +5 -4
- package/esm/slider/slider.js +10 -9
- package/esm/slider/stateful-slider-container.js +13 -11
- package/esm/slider/stateful-slider.js +2 -2
- package/esm/slider/styled-components.js +3 -3
- package/esm/slider/types.js +1 -7
- package/esm/snackbar/index.js +5 -4
- package/esm/snackbar/snackbar-context.js +14 -12
- package/esm/snackbar/snackbar-element.js +6 -6
- package/esm/snackbar/styled-components.js +5 -5
- package/esm/snackbar/types.js +1 -8
- package/esm/spinner/index.js +4 -2
- package/esm/spinner/styled-components.js +2 -2
- package/esm/spinner/types.js +1 -7
- package/esm/styles/__mocks__/as-primary-export-hoc.js +1 -1
- package/esm/styles/__mocks__/styled.js +15 -13
- package/esm/styles/index.js +6 -5
- package/esm/styles/styled.js +5 -5
- package/esm/styles/theme-provider.js +1 -1
- package/esm/styles/types.js +1 -0
- package/esm/table/filter.js +9 -9
- package/esm/table/index.js +7 -5
- package/esm/table/sortable-head-cell.js +7 -7
- package/esm/table/styled-components.js +4 -4
- package/esm/table/table.js +9 -9
- package/esm/table/types.js +1 -8
- package/esm/table-grid/index.js +3 -3
- package/esm/table-grid/sortable-head-cell.js +2 -2
- package/esm/table-grid/styled-components.js +3 -3
- package/esm/table-semantic/index.js +7 -5
- package/esm/table-semantic/styled-components.js +7 -7
- package/esm/table-semantic/table-builder-column.js +11 -7
- package/esm/table-semantic/table-builder.js +18 -16
- package/esm/table-semantic/table.js +14 -12
- package/esm/table-semantic/types.js +1 -8
- package/esm/tabs/index.js +7 -5
- package/esm/tabs/stateful-tabs.js +13 -11
- package/esm/tabs/styled-components.js +4 -4
- package/esm/tabs/tab.js +12 -12
- package/esm/tabs/tabs.js +12 -12
- package/esm/tabs/types.js +1 -10
- package/esm/tabs-motion/index.js +7 -6
- package/esm/tabs-motion/stateful-tabs.js +7 -5
- package/esm/tabs-motion/styled-components.js +5 -5
- package/esm/tabs-motion/tabs.js +18 -14
- package/esm/tabs-motion/types.js +1 -8
- package/esm/tabs-motion/utils.js +1 -2
- package/esm/tag/index.js +4 -3
- package/esm/tag/styled-components.js +5 -5
- package/esm/tag/tag.js +10 -9
- package/esm/tag/types.js +1 -2
- package/esm/tag/utils.js +1 -1
- package/esm/textarea/constants.js +1 -1
- package/esm/textarea/index.js +6 -5
- package/esm/textarea/stateful-container.js +1 -1
- package/esm/textarea/stateful-textarea.js +2 -2
- package/esm/textarea/styled-components.js +4 -4
- package/esm/textarea/textarea.js +12 -12
- package/esm/textarea/types.js +1 -8
- package/esm/themes/dark-theme/borders.js +2 -2
- package/esm/themes/dark-theme/color-component-tokens.js +2 -2
- package/esm/themes/dark-theme/color-semantic-tokens.js +5 -5
- package/esm/themes/dark-theme/color-tokens.js +1 -1
- package/esm/themes/dark-theme/create-dark-theme.js +17 -15
- package/esm/themes/dark-theme/dark-theme.js +13 -13
- package/esm/themes/dark-theme/primitives.js +4 -4
- package/esm/themes/index.js +10 -9
- package/esm/themes/light-theme/color-component-tokens.js +1 -1
- package/esm/themes/light-theme/color-semantic-tokens.js +5 -5
- package/esm/themes/light-theme/color-tokens.js +1 -1
- package/esm/themes/light-theme/create-light-theme.js +17 -15
- package/esm/themes/light-theme/light-theme.js +13 -13
- package/esm/themes/light-theme/primitives.js +4 -4
- package/esm/themes/move-theme/dark-theme-with-move.js +4 -4
- package/esm/themes/move-theme/light-theme-with-move.js +4 -4
- package/esm/themes/shared/media-query.js +2 -2
- package/esm/themes/shared/typography.js +2 -2
- package/esm/themes/types.js +1 -0
- package/esm/timepicker/index.js +3 -1
- package/esm/timepicker/timepicker.js +14 -14
- package/esm/timepicker/types.js +1 -0
- package/esm/timezonepicker/index.js +2 -1
- package/esm/timezonepicker/timezone-picker.js +14 -14
- package/esm/timezonepicker/types.js +1 -9
- package/esm/timezonepicker/update-tzdata.js +7 -4
- package/esm/toast/index.js +6 -4
- package/esm/toast/styled-components.js +5 -5
- package/esm/toast/toast.js +15 -15
- package/esm/toast/toaster.js +19 -17
- package/esm/toast/types.js +1 -8
- package/esm/tokens/index.js +2 -1
- package/esm/tokens/types.js +1 -0
- package/esm/tooltip/constants.js +1 -1
- package/esm/tooltip/default-props.js +1 -1
- package/esm/tooltip/index.js +7 -5
- package/esm/tooltip/stateful-tooltip-container.js +11 -11
- package/esm/tooltip/stateful-tooltip.js +5 -3
- package/esm/tooltip/styled-components.js +5 -5
- package/esm/tooltip/tooltip.js +14 -14
- package/esm/tooltip/types.js +1 -0
- package/esm/tree-view/index.js +7 -6
- package/esm/tree-view/stateful-container.js +13 -11
- package/esm/tree-view/stateful-tree-view.js +2 -2
- package/esm/tree-view/styled-components.js +3 -3
- package/esm/tree-view/tree-label-interactable.js +6 -4
- package/esm/tree-view/tree-label.js +12 -10
- package/esm/tree-view/tree-node.js +11 -11
- package/esm/tree-view/tree-view.js +7 -7
- package/esm/tree-view/types.js +1 -7
- package/esm/tree-view/utils.js +2 -2
- package/esm/typography/index.js +2 -2
- package/esm/utils/deep-merge.js +1 -1
- package/esm/utils/deprecated-component.js +1 -1
- package/file-uploader/file-uploader.js +17 -15
- package/file-uploader/index.js +37 -14
- package/file-uploader/styled-components.js +4 -4
- package/file-uploader/types.js +5 -1
- package/flex-grid/flex-grid-item.js +15 -13
- package/flex-grid/flex-grid.js +13 -10
- package/flex-grid/index.js +20 -2
- package/flex-grid/types.js +5 -1
- package/form-control/form-control.js +12 -12
- package/form-control/index.js +28 -8
- package/form-control/styled-components.js +4 -4
- package/form-control/types.js +3 -7
- package/header-navigation/header-navigation.js +16 -14
- package/header-navigation/index.js +30 -9
- package/header-navigation/styled-components.js +5 -5
- package/header-navigation/types.js +5 -1
- package/heading/heading-level.js +4 -4
- package/heading/heading.js +9 -7
- package/heading/index.js +30 -11
- package/heading/types.js +3 -7
- package/helper/constants.js +1 -1
- package/helper/helper-steps.js +9 -9
- package/helper/helper.js +12 -10
- package/helper/index.js +19 -5
- package/helper/stateful-helper.js +9 -7
- package/helper/styled-components.js +9 -9
- package/helper/types.js +5 -1
- package/helpers/base-provider.js +5 -5
- package/helpers/overrides.js +33 -32
- package/helpers/react-helpers.js +4 -4
- package/helpers/responsive-helpers.js +1 -1
- package/helpers/types.js +3 -7
- package/icon/alert.js +11 -9
- package/icon/arrow-down.js +11 -9
- package/icon/arrow-left.js +11 -9
- package/icon/arrow-right.js +11 -9
- package/icon/arrow-up.js +11 -9
- package/icon/blank.js +11 -9
- package/icon/build-icons.js +8 -8
- package/icon/check-indeterminate.js +11 -9
- package/icon/check.js +11 -9
- package/icon/chevron-down.js +11 -9
- package/icon/chevron-left.js +11 -9
- package/icon/chevron-right.js +11 -9
- package/icon/chevron-up.js +11 -9
- package/icon/delete-alt.js +11 -9
- package/icon/delete.js +11 -9
- package/icon/filter.js +11 -9
- package/icon/grab.js +11 -9
- package/icon/hide.js +11 -9
- package/icon/icon-exports.js +36 -36
- package/icon/icon.js +13 -11
- package/icon/index.js +17 -3
- package/icon/menu.js +11 -9
- package/icon/overflow.js +11 -9
- package/icon/plus.js +11 -9
- package/icon/search.js +11 -9
- package/icon/show.js +11 -9
- package/icon/spinner.js +11 -9
- package/icon/styled-components.js +2 -2
- package/icon/triangle-down.js +11 -9
- package/icon/triangle-left.js +11 -9
- package/icon/triangle-right.js +11 -9
- package/icon/triangle-up.js +11 -9
- package/icon/types.js +3 -7
- package/icon/upload.js +11 -9
- package/index.js +47 -47
- package/input/base-input.js +19 -19
- package/input/constants.js +1 -1
- package/input/index.js +64 -33
- package/input/input.js +21 -18
- package/input/masked-input.js +15 -11
- package/input/stateful-container.js +15 -13
- package/input/stateful-input.js +5 -5
- package/input/styled-components.js +6 -6
- package/input/types.js +3 -9
- package/layer/index.js +36 -15
- package/layer/layer.js +12 -12
- package/layer/layers-manager.js +16 -16
- package/layer/tether.js +16 -14
- package/layer/types.js +3 -9
- package/layer/utils.js +1 -1
- package/layout-grid/cell.js +5 -5
- package/layout-grid/constants.js +1 -1
- package/layout-grid/grid.js +11 -11
- package/layout-grid/index.js +14 -14
- package/layout-grid/styled-components.js +6 -6
- package/layout-grid/types.js +3 -9
- package/link/index.js +11 -9
- package/link/styled-components.js +3 -3
- package/list/index.js +30 -16
- package/list/list-heading.js +10 -8
- package/list/list-item-label.js +3 -3
- package/list/list-item.js +6 -6
- package/list/menu-adapter.js +5 -5
- package/list/styled-components.js +6 -6
- package/list/types.js +3 -9
- package/list/utils.js +1 -1
- package/locale/en_US.js +12 -12
- package/locale/index.js +4 -4
- package/locale/types.js +5 -1
- package/map-marker/badge-enhancer.js +8 -8
- package/map-marker/constants.js +1 -1
- package/map-marker/drag-shadow.js +8 -8
- package/map-marker/fixed-marker.js +15 -13
- package/map-marker/floating-marker.js +10 -10
- package/map-marker/index.js +50 -23
- package/map-marker/label-enhancer.js +8 -8
- package/map-marker/needle.js +8 -8
- package/map-marker/pin-head.js +10 -10
- package/map-marker/styled-components.js +5 -5
- package/map-marker/types.js +3 -9
- package/menu/constants.js +1 -1
- package/menu/index.js +72 -37
- package/menu/maybe-child-menu.js +8 -8
- package/menu/menu.js +13 -11
- package/menu/nested-menus.js +11 -11
- package/menu/option-list.js +15 -13
- package/menu/option-profile.js +11 -9
- package/menu/stateful-container.js +19 -16
- package/menu/stateful-menu.js +16 -14
- package/menu/styled-components.js +11 -9
- package/menu/types.js +3 -9
- package/modal/close-icon.js +3 -3
- package/modal/constants.js +1 -1
- package/modal/focus-once.js +4 -4
- package/modal/index.js +58 -29
- package/modal/modal-button.js +6 -6
- package/modal/modal.js +18 -18
- package/modal/styled-components.js +5 -5
- package/modal/types.js +3 -9
- package/notification/index.js +6 -6
- package/notification/notification.js +12 -12
- package/package.json +33 -30
- package/pagination/index.js +44 -20
- package/pagination/pagination.js +22 -22
- package/pagination/stateful-container.js +11 -11
- package/pagination/stateful-pagination.js +9 -7
- package/pagination/styled-components.js +4 -4
- package/pagination/types.js +3 -3
- package/payment-card/icons/amex.js +3 -3
- package/payment-card/icons/dinersclub.js +3 -3
- package/payment-card/icons/discover.js +3 -3
- package/payment-card/icons/elo.js +3 -3
- package/payment-card/icons/generic.js +3 -3
- package/payment-card/icons/jcb.js +3 -3
- package/payment-card/icons/maestro.js +3 -3
- package/payment-card/icons/mastercard.js +3 -3
- package/payment-card/icons/uatp.js +3 -3
- package/payment-card/icons/unionpay.js +3 -3
- package/payment-card/icons/visa.js +3 -3
- package/payment-card/index.js +39 -17
- package/payment-card/payment-card.js +36 -33
- package/payment-card/stateful-payment-card.js +5 -5
- package/payment-card/styled-components.js +2 -2
- package/payment-card/types.js +5 -1
- package/payment-card/utils.js +4 -4
- package/phone-input/base-country-picker.js +16 -14
- package/phone-input/constants.js +3 -2
- package/phone-input/country-picker.js +14 -11
- package/phone-input/country-select-dropdown.js +14 -12
- package/phone-input/country-select.js +9 -9
- package/phone-input/default-props.js +1 -1
- package/phone-input/flag.js +11 -9
- package/phone-input/flags/FlagAD.js +4 -4
- package/phone-input/flags/FlagAE.js +4 -4
- package/phone-input/flags/FlagAF.js +4 -4
- package/phone-input/flags/FlagAG.js +4 -4
- package/phone-input/flags/FlagAI.js +4 -4
- package/phone-input/flags/FlagAL.js +4 -4
- package/phone-input/flags/FlagAM.js +4 -4
- package/phone-input/flags/FlagAO.js +4 -4
- package/phone-input/flags/FlagAR.js +4 -4
- package/phone-input/flags/FlagAS.js +4 -4
- package/phone-input/flags/FlagAT.js +4 -4
- package/phone-input/flags/FlagAU.js +4 -4
- package/phone-input/flags/FlagAW.js +4 -4
- package/phone-input/flags/FlagAX.js +4 -4
- package/phone-input/flags/FlagAZ.js +4 -4
- package/phone-input/flags/FlagBA.js +4 -4
- package/phone-input/flags/FlagBB.js +4 -4
- package/phone-input/flags/FlagBD.js +4 -4
- package/phone-input/flags/FlagBE.js +4 -4
- package/phone-input/flags/FlagBF.js +4 -4
- package/phone-input/flags/FlagBG.js +4 -4
- package/phone-input/flags/FlagBH.js +4 -4
- package/phone-input/flags/FlagBI.js +4 -4
- package/phone-input/flags/FlagBJ.js +4 -4
- package/phone-input/flags/FlagBL.js +4 -4
- package/phone-input/flags/FlagBM.js +4 -4
- package/phone-input/flags/FlagBN.js +4 -4
- package/phone-input/flags/FlagBO.js +4 -4
- package/phone-input/flags/FlagBR.js +4 -4
- package/phone-input/flags/FlagBS.js +4 -4
- package/phone-input/flags/FlagBT.js +4 -4
- package/phone-input/flags/FlagBV.js +4 -4
- package/phone-input/flags/FlagBW.js +4 -4
- package/phone-input/flags/FlagBY.js +4 -4
- package/phone-input/flags/FlagBZ.js +4 -4
- package/phone-input/flags/FlagCA.js +4 -4
- package/phone-input/flags/FlagCC.js +4 -4
- package/phone-input/flags/FlagCD.js +4 -4
- package/phone-input/flags/FlagCF.js +4 -4
- package/phone-input/flags/FlagCG.js +4 -4
- package/phone-input/flags/FlagCH.js +4 -4
- package/phone-input/flags/FlagCI.js +4 -4
- package/phone-input/flags/FlagCK.js +4 -4
- package/phone-input/flags/FlagCL.js +4 -4
- package/phone-input/flags/FlagCM.js +4 -4
- package/phone-input/flags/FlagCN.js +4 -4
- package/phone-input/flags/FlagCO.js +4 -4
- package/phone-input/flags/FlagCR.js +4 -4
- package/phone-input/flags/FlagCU.js +4 -4
- package/phone-input/flags/FlagCV.js +4 -4
- package/phone-input/flags/FlagCW.js +4 -4
- package/phone-input/flags/FlagCX.js +4 -4
- package/phone-input/flags/FlagCY.js +4 -4
- package/phone-input/flags/FlagCZ.js +4 -4
- package/phone-input/flags/FlagDE.js +4 -4
- package/phone-input/flags/FlagDJ.js +4 -4
- package/phone-input/flags/FlagDK.js +4 -4
- package/phone-input/flags/FlagDM.js +4 -4
- package/phone-input/flags/FlagDO.js +4 -4
- package/phone-input/flags/FlagDZ.js +4 -4
- package/phone-input/flags/FlagEC.js +4 -4
- package/phone-input/flags/FlagEE.js +4 -4
- package/phone-input/flags/FlagEG.js +4 -4
- package/phone-input/flags/FlagER.js +4 -4
- package/phone-input/flags/FlagES.js +4 -4
- package/phone-input/flags/FlagET.js +4 -4
- package/phone-input/flags/FlagEU.js +4 -4
- package/phone-input/flags/FlagFI.js +4 -4
- package/phone-input/flags/FlagFJ.js +4 -4
- package/phone-input/flags/FlagFK.js +4 -4
- package/phone-input/flags/FlagFM.js +4 -4
- package/phone-input/flags/FlagFO.js +4 -4
- package/phone-input/flags/FlagFR.js +4 -4
- package/phone-input/flags/FlagGA.js +4 -4
- package/phone-input/flags/FlagGB.js +4 -4
- package/phone-input/flags/FlagGD.js +4 -4
- package/phone-input/flags/FlagGE.js +4 -4
- package/phone-input/flags/FlagGF.js +4 -4
- package/phone-input/flags/FlagGG.js +4 -4
- package/phone-input/flags/FlagGH.js +4 -4
- package/phone-input/flags/FlagGI.js +4 -4
- package/phone-input/flags/FlagGL.js +4 -4
- package/phone-input/flags/FlagGM.js +4 -4
- package/phone-input/flags/FlagGN.js +4 -4
- package/phone-input/flags/FlagGP.js +4 -4
- package/phone-input/flags/FlagGQ.js +4 -4
- package/phone-input/flags/FlagGR.js +4 -4
- package/phone-input/flags/FlagGS.js +4 -4
- package/phone-input/flags/FlagGT.js +4 -4
- package/phone-input/flags/FlagGU.js +4 -4
- package/phone-input/flags/FlagGW.js +4 -4
- package/phone-input/flags/FlagGY.js +4 -4
- package/phone-input/flags/FlagHK.js +4 -4
- package/phone-input/flags/FlagHM.js +4 -4
- package/phone-input/flags/FlagHN.js +4 -4
- package/phone-input/flags/FlagHR.js +4 -4
- package/phone-input/flags/FlagHT.js +4 -4
- package/phone-input/flags/FlagHU.js +4 -4
- package/phone-input/flags/FlagID.js +4 -4
- package/phone-input/flags/FlagIE.js +4 -4
- package/phone-input/flags/FlagIL.js +4 -4
- package/phone-input/flags/FlagIM.js +4 -4
- package/phone-input/flags/FlagIN.js +4 -4
- package/phone-input/flags/FlagIO.js +4 -4
- package/phone-input/flags/FlagIQ.js +4 -4
- package/phone-input/flags/FlagIR.js +4 -4
- package/phone-input/flags/FlagIS.js +4 -4
- package/phone-input/flags/FlagIT.js +4 -4
- package/phone-input/flags/FlagJE.js +4 -4
- package/phone-input/flags/FlagJM.js +4 -4
- package/phone-input/flags/FlagJO.js +4 -4
- package/phone-input/flags/FlagJP.js +4 -4
- package/phone-input/flags/FlagKE.js +4 -4
- package/phone-input/flags/FlagKG.js +4 -4
- package/phone-input/flags/FlagKH.js +4 -4
- package/phone-input/flags/FlagKI.js +4 -4
- package/phone-input/flags/FlagKM.js +4 -4
- package/phone-input/flags/FlagKN.js +4 -4
- package/phone-input/flags/FlagKP.js +4 -4
- package/phone-input/flags/FlagKR.js +4 -4
- package/phone-input/flags/FlagKW.js +4 -4
- package/phone-input/flags/FlagKY.js +4 -4
- package/phone-input/flags/FlagKZ.js +4 -4
- package/phone-input/flags/FlagLA.js +4 -4
- package/phone-input/flags/FlagLB.js +4 -4
- package/phone-input/flags/FlagLC.js +4 -4
- package/phone-input/flags/FlagLI.js +4 -4
- package/phone-input/flags/FlagLK.js +4 -4
- package/phone-input/flags/FlagLR.js +4 -4
- package/phone-input/flags/FlagLS.js +4 -4
- package/phone-input/flags/FlagLT.js +4 -4
- package/phone-input/flags/FlagLU.js +4 -4
- package/phone-input/flags/FlagLV.js +4 -4
- package/phone-input/flags/FlagLY.js +4 -4
- package/phone-input/flags/FlagMA.js +4 -4
- package/phone-input/flags/FlagMC.js +4 -4
- package/phone-input/flags/FlagMD.js +4 -4
- package/phone-input/flags/FlagME.js +4 -4
- package/phone-input/flags/FlagMF.js +4 -4
- package/phone-input/flags/FlagMG.js +4 -4
- package/phone-input/flags/FlagMH.js +4 -4
- package/phone-input/flags/FlagMK.js +4 -4
- package/phone-input/flags/FlagML.js +4 -4
- package/phone-input/flags/FlagMM.js +4 -4
- package/phone-input/flags/FlagMN.js +4 -4
- package/phone-input/flags/FlagMO.js +4 -4
- package/phone-input/flags/FlagMP.js +4 -4
- package/phone-input/flags/FlagMQ.js +4 -4
- package/phone-input/flags/FlagMR.js +4 -4
- package/phone-input/flags/FlagMS.js +4 -4
- package/phone-input/flags/FlagMT.js +4 -4
- package/phone-input/flags/FlagMU.js +4 -4
- package/phone-input/flags/FlagMV.js +4 -4
- package/phone-input/flags/FlagMW.js +4 -4
- package/phone-input/flags/FlagMX.js +4 -4
- package/phone-input/flags/FlagMY.js +4 -4
- package/phone-input/flags/FlagMZ.js +4 -4
- package/phone-input/flags/FlagNA.js +4 -4
- package/phone-input/flags/FlagNC.js +4 -4
- package/phone-input/flags/FlagNE.js +4 -4
- package/phone-input/flags/FlagNF.js +4 -4
- package/phone-input/flags/FlagNG.js +4 -4
- package/phone-input/flags/FlagNI.js +4 -4
- package/phone-input/flags/FlagNL.js +4 -4
- package/phone-input/flags/FlagNO.js +4 -4
- package/phone-input/flags/FlagNP.js +4 -4
- package/phone-input/flags/FlagNR.js +4 -4
- package/phone-input/flags/FlagNU.js +4 -4
- package/phone-input/flags/FlagNZ.js +4 -4
- package/phone-input/flags/FlagOM.js +4 -4
- package/phone-input/flags/FlagPA.js +4 -4
- package/phone-input/flags/FlagPE.js +4 -4
- package/phone-input/flags/FlagPF.js +4 -4
- package/phone-input/flags/FlagPG.js +4 -4
- package/phone-input/flags/FlagPH.js +4 -4
- package/phone-input/flags/FlagPK.js +4 -4
- package/phone-input/flags/FlagPL.js +4 -4
- package/phone-input/flags/FlagPM.js +4 -4
- package/phone-input/flags/FlagPN.js +4 -4
- package/phone-input/flags/FlagPR.js +4 -4
- package/phone-input/flags/FlagPS.js +4 -4
- package/phone-input/flags/FlagPT.js +4 -4
- package/phone-input/flags/FlagPW.js +4 -4
- package/phone-input/flags/FlagPY.js +4 -4
- package/phone-input/flags/FlagQA.js +4 -4
- package/phone-input/flags/FlagRE.js +4 -4
- package/phone-input/flags/FlagRO.js +4 -4
- package/phone-input/flags/FlagRS.js +4 -4
- package/phone-input/flags/FlagRU.js +4 -4
- package/phone-input/flags/FlagRW.js +4 -4
- package/phone-input/flags/FlagSA.js +4 -4
- package/phone-input/flags/FlagSB.js +4 -4
- package/phone-input/flags/FlagSC.js +4 -4
- package/phone-input/flags/FlagSD.js +4 -4
- package/phone-input/flags/FlagSE.js +4 -4
- package/phone-input/flags/FlagSG.js +4 -4
- package/phone-input/flags/FlagSH.js +4 -4
- package/phone-input/flags/FlagSI.js +4 -4
- package/phone-input/flags/FlagSJ.js +4 -4
- package/phone-input/flags/FlagSK.js +4 -4
- package/phone-input/flags/FlagSL.js +4 -4
- package/phone-input/flags/FlagSM.js +4 -4
- package/phone-input/flags/FlagSN.js +4 -4
- package/phone-input/flags/FlagSO.js +4 -4
- package/phone-input/flags/FlagSR.js +4 -4
- package/phone-input/flags/FlagSS.js +4 -4
- package/phone-input/flags/FlagST.js +4 -4
- package/phone-input/flags/FlagSV.js +4 -4
- package/phone-input/flags/FlagSX.js +4 -4
- package/phone-input/flags/FlagSY.js +4 -4
- package/phone-input/flags/FlagSZ.js +4 -4
- package/phone-input/flags/FlagTC.js +4 -4
- package/phone-input/flags/FlagTD.js +4 -4
- package/phone-input/flags/FlagTF.js +4 -4
- package/phone-input/flags/FlagTG.js +4 -4
- package/phone-input/flags/FlagTH.js +4 -4
- package/phone-input/flags/FlagTJ.js +4 -4
- package/phone-input/flags/FlagTK.js +4 -4
- package/phone-input/flags/FlagTL.js +4 -4
- package/phone-input/flags/FlagTM.js +4 -4
- package/phone-input/flags/FlagTN.js +4 -4
- package/phone-input/flags/FlagTO.js +4 -4
- package/phone-input/flags/FlagTR.js +4 -4
- package/phone-input/flags/FlagTT.js +4 -4
- package/phone-input/flags/FlagTV.js +4 -4
- package/phone-input/flags/FlagTW.js +4 -4
- package/phone-input/flags/FlagTZ.js +4 -4
- package/phone-input/flags/FlagUA.js +4 -4
- package/phone-input/flags/FlagUG.js +4 -4
- package/phone-input/flags/FlagUM.js +4 -4
- package/phone-input/flags/FlagUS.js +4 -4
- package/phone-input/flags/FlagUY.js +4 -4
- package/phone-input/flags/FlagUZ.js +4 -4
- package/phone-input/flags/FlagVA.js +4 -4
- package/phone-input/flags/FlagVC.js +4 -4
- package/phone-input/flags/FlagVE.js +4 -4
- package/phone-input/flags/FlagVG.js +4 -4
- package/phone-input/flags/FlagVI.js +4 -4
- package/phone-input/flags/FlagVN.js +4 -4
- package/phone-input/flags/FlagVU.js +4 -4
- package/phone-input/flags/FlagWF.js +4 -4
- package/phone-input/flags/FlagWS.js +4 -4
- package/phone-input/flags/FlagXK.js +4 -4
- package/phone-input/flags/FlagYE.js +4 -4
- package/phone-input/flags/FlagYT.js +4 -4
- package/phone-input/flags/FlagZA.js +4 -4
- package/phone-input/flags/FlagZM.js +4 -4
- package/phone-input/flags/FlagZW.js +4 -4
- package/phone-input/flags/index.js +241 -241
- package/phone-input/index.js +37 -23
- package/phone-input/phone-input-lite.js +13 -11
- package/phone-input/phone-input-next.js +16 -14
- package/phone-input/phone-input.js +4 -4
- package/phone-input/stateful-phone-input-container.js +11 -11
- package/phone-input/stateful-phone-input-next.js +5 -5
- package/phone-input/stateful-phone-input.js +3 -3
- package/phone-input/styled-components.js +12 -10
- package/phone-input/types.js +3 -9
- package/phone-input/utils.js +2 -2
- package/pin-code/default-props.js +1 -1
- package/pin-code/index.js +8 -8
- package/pin-code/pin-code.js +13 -13
- package/pin-code/stateful-pin-code-container.js +11 -11
- package/pin-code/stateful-pin-code.js +3 -3
- package/pin-code/styled-components.js +4 -4
- package/pin-code/types.js +3 -9
- package/popover/constants.js +1 -1
- package/popover/default-props.js +1 -1
- package/popover/index.js +52 -23
- package/popover/popover.js +18 -18
- package/popover/stateful-container.js +12 -12
- package/popover/stateful-popover.js +9 -7
- package/popover/styled-components.js +7 -7
- package/popover/types.js +3 -9
- package/popover/utils.js +9 -9
- package/progress-bar/index.js +44 -14
- package/progress-bar/progressbar-rounded.js +11 -9
- package/progress-bar/progressbar.js +17 -15
- package/progress-bar/styled-components.js +6 -6
- package/progress-bar/types.js +3 -9
- package/progress-steps/index.js +24 -10
- package/progress-steps/numbered-step.js +8 -8
- package/progress-steps/progress-steps.js +9 -9
- package/progress-steps/step.js +7 -7
- package/progress-steps/styled-components.js +4 -4
- package/progress-steps/types.js +5 -1
- package/radio/constants.js +1 -1
- package/radio/index.js +56 -28
- package/radio/radio.js +13 -13
- package/radio/radiogroup.js +14 -14
- package/radio/stateful-radiogroup-container.js +15 -13
- package/radio/stateful-radiogroup.js +8 -6
- package/radio/styled-components.js +4 -4
- package/radio/types.js +3 -9
- package/rating/emoticon-rating.js +15 -15
- package/rating/index.js +21 -7
- package/rating/star-rating.js +15 -15
- package/rating/styled-components.js +3 -3
- package/rating/svg-icons.js +3 -3
- package/rating/types.js +5 -1
- package/rating/utils.js +1 -1
- package/select/autosize-input.js +18 -16
- package/select/constants.js +2 -2
- package/select/default-props.js +2 -2
- package/select/dropdown.js +19 -17
- package/select/index.js +111 -66
- package/select/multi-select.js +6 -6
- package/select/multi-value.js +10 -8
- package/select/select-component.js +30 -27
- package/select/select.js +7 -7
- package/select/single-select.js +6 -6
- package/select/stateful-select-container.js +14 -12
- package/select/stateful-select.js +6 -6
- package/select/styled-components.js +8 -8
- package/select/types.js +3 -9
- package/select/utils/default-filter-options.js +2 -2
- package/select/utils/index.js +3 -3
- package/select/value.js +10 -8
- package/side-navigation/index.js +21 -7
- package/side-navigation/nav-item.js +16 -14
- package/side-navigation/nav.js +17 -17
- package/side-navigation/stateful-container.js +15 -13
- package/side-navigation/stateful-nav.js +5 -5
- package/side-navigation/styled-components.js +10 -8
- package/side-navigation/types.js +1 -9
- package/skeleton/index.js +1 -1
- package/skeleton/skeleton.js +13 -13
- package/skeleton/styled-components.js +3 -3
- package/skeleton/types.js +5 -1
- package/slider/index.js +50 -22
- package/slider/slider.js +11 -11
- package/slider/stateful-slider-container.js +15 -13
- package/slider/stateful-slider.js +5 -5
- package/slider/styled-components.js +4 -4
- package/slider/types.js +3 -1
- package/snackbar/index.js +54 -25
- package/snackbar/snackbar-context.js +19 -17
- package/snackbar/snackbar-element.js +9 -9
- package/snackbar/styled-components.js +6 -6
- package/snackbar/types.js +3 -9
- package/spinner/index.js +24 -6
- package/spinner/styled-components.js +2 -2
- package/spinner/types.js +3 -1
- package/styles/__mocks__/as-primary-export-hoc.js +1 -1
- package/styles/__mocks__/styled.js +19 -17
- package/styles/as-primary-export-hoc.js +3 -3
- package/styles/index.js +50 -23
- package/styles/styled.js +10 -10
- package/styles/theme-provider.js +4 -4
- package/styles/types.js +5 -1
- package/styles/util.js +2 -2
- package/table/filter.js +12 -12
- package/table/index.js +69 -36
- package/table/sortable-head-cell.js +10 -10
- package/table/styled-components.js +8 -8
- package/table/table.js +11 -11
- package/table/types.js +3 -9
- package/table-grid/index.js +11 -11
- package/table-grid/sortable-head-cell.js +2 -2
- package/table-grid/styled-components.js +7 -7
- package/table-semantic/index.js +76 -41
- package/table-semantic/styled-components.js +8 -8
- package/table-semantic/table-builder-column.js +13 -9
- package/table-semantic/table-builder.js +20 -18
- package/table-semantic/table.js +16 -14
- package/table-semantic/types.js +3 -9
- package/tabs/constants.js +1 -1
- package/tabs/index.js +48 -23
- package/tabs/stateful-tabs.js +15 -13
- package/tabs/styled-components.js +4 -4
- package/tabs/tab.js +14 -14
- package/tabs/tabs.js +14 -14
- package/tabs/types.js +3 -9
- package/tabs-motion/constants.js +1 -1
- package/tabs-motion/index.js +19 -6
- package/tabs-motion/stateful-tabs.js +10 -8
- package/tabs-motion/styled-components.js +6 -6
- package/tabs-motion/tabs.js +21 -17
- package/tabs-motion/types.js +3 -9
- package/tabs-motion/utils.js +2 -10
- package/tag/constants.js +1 -1
- package/tag/index.js +38 -15
- package/tag/styled-components.js +6 -6
- package/tag/tag.js +11 -11
- package/tag/types.js +2 -10
- package/tag/utils.js +3 -3
- package/textarea/constants.js +5 -5
- package/textarea/index.js +38 -15
- package/textarea/stateful-container.js +1 -1
- package/textarea/stateful-textarea.js +5 -5
- package/textarea/styled-components.js +5 -5
- package/textarea/textarea.js +14 -14
- package/textarea/types.js +3 -9
- package/themes/dark-theme/borders.js +2 -2
- package/themes/dark-theme/color-component-tokens.js +2 -2
- package/themes/dark-theme/color-semantic-tokens.js +5 -5
- package/themes/dark-theme/color-tokens.js +1 -1
- package/themes/dark-theme/create-dark-theme.js +17 -15
- package/themes/dark-theme/dark-theme.js +13 -13
- package/themes/dark-theme/primitives.js +4 -4
- package/themes/index.js +48 -22
- package/themes/light-theme/color-component-tokens.js +1 -1
- package/themes/light-theme/color-semantic-tokens.js +5 -5
- package/themes/light-theme/color-tokens.js +1 -1
- package/themes/light-theme/create-light-theme.js +17 -15
- package/themes/light-theme/light-theme.js +13 -13
- package/themes/light-theme/primitives.js +4 -4
- package/themes/move-theme/dark-theme-with-move.js +4 -4
- package/themes/move-theme/light-theme-with-move.js +4 -4
- package/themes/shared/media-query.js +2 -2
- package/themes/shared/typography.js +3 -3
- package/themes/types.js +5 -1
- package/timepicker/index.js +18 -1
- package/timepicker/timepicker.js +16 -16
- package/timepicker/types.js +5 -1
- package/timezonepicker/index.js +18 -1
- package/timezonepicker/timezone-picker.js +16 -16
- package/timezonepicker/types.js +3 -7
- package/timezonepicker/update-tzdata.js +6 -5
- package/toast/constants.js +1 -1
- package/toast/index.js +48 -23
- package/toast/styled-components.js +6 -6
- package/toast/toast.js +17 -17
- package/toast/toaster.js +21 -19
- package/toast/types.js +3 -9
- package/tokens/index.js +18 -1
- package/tokens/types.js +5 -1
- package/tooltip/constants.js +5 -5
- package/tooltip/default-props.js +1 -1
- package/tooltip/index.js +51 -25
- package/tooltip/stateful-tooltip-container.js +13 -13
- package/tooltip/stateful-tooltip.js +8 -6
- package/tooltip/styled-components.js +6 -6
- package/tooltip/tooltip.js +16 -16
- package/tooltip/types.js +5 -1
- package/tree-view/index.js +45 -20
- package/tree-view/stateful-container.js +15 -13
- package/tree-view/stateful-tree-view.js +5 -5
- package/tree-view/styled-components.js +4 -4
- package/tree-view/tree-label-interactable.js +6 -4
- package/tree-view/tree-label.js +12 -10
- package/tree-view/tree-node.js +13 -13
- package/tree-view/tree-view.js +10 -10
- package/tree-view/types.js +3 -7
- package/tree-view/utils.js +3 -3
- package/typography/index.js +6 -6
- package/utils/deep-merge.js +1 -1
- package/utils/deprecated-component.js +4 -4
- package/utils/focusVisible.js +3 -3
- package/a11y/index.d.ts +0 -3
- package/accordion/index.d.ts +0 -132
- package/app-nav-bar/index.d.ts +0 -69
- package/aspect-ratio-box/index.d.ts +0 -11
- package/avatar/index.d.ts +0 -27
- package/badge/index.d.ts +0 -92
- package/banner/index.d.ts +0 -70
- package/block/index.d.ts +0 -322
- package/breadcrumbs/index.d.ts +0 -24
- package/button/index.d.ts +0 -65
- package/button-group/index.d.ts +0 -61
- package/card/index.d.ts +0 -35
- package/checkbox/index.d.ts +0 -130
- package/combobox/index.d.ts +0 -38
- package/data-table/index.d.ts +0 -68
- package/datepicker/index.d.ts +0 -242
- package/dnd-list/index.d.ts +0 -80
- package/drawer/index.d.ts +0 -91
- package/file-uploader/index.d.ts +0 -76
- package/flex-grid/index.d.ts +0 -17
- package/form-control/index.d.ts +0 -31
- package/header-navigation/index.d.ts +0 -24
- package/heading/index.d.ts +0 -14
- package/helper/index.d.ts +0 -30
- package/helpers/base-provider.d.ts +0 -16
- package/helpers/overrides.d.ts +0 -23
- package/icon/index.d.ts +0 -53
- package/index.d.ts +0 -34
- package/input/index.d.ts +0 -162
- package/layer/index.d.ts +0 -81
- package/layout-grid/index.d.ts +0 -98
- package/link/index.d.ts +0 -13
- package/list/index.d.ts +0 -111
- package/locale/index.d.ts +0 -111
- package/map-marker/index.d.ts +0 -200
- package/menu/index.d.ts +0 -212
- package/modal/index.d.ts +0 -94
- package/notification/index.d.ts +0 -5
- package/overrides.ts +0 -3
- package/pagination/index.d.ts +0 -92
- package/payment-card/index.d.ts +0 -28
- package/phone-input/index.d.ts +0 -440
- package/pin-code/index.d.ts +0 -43
- package/popover/index.d.ts +0 -187
- package/progress-bar/index.d.ts +0 -57
- package/progress-steps/index.d.ts +0 -71
- package/radio/index.d.ts +0 -134
- package/rating/index.d.ts +0 -53
- package/select/index.d.ts +0 -326
- package/side-navigation/index.d.ts +0 -60
- package/skeleton/index.d.ts +0 -16
- package/slider/index.d.ts +0 -92
- package/snackbar/index.d.ts +0 -60
- package/spinner/index.d.ts +0 -17
- package/styles/index.d.ts +0 -80
- package/table/index.d.ts +0 -68
- package/table-grid/index.d.ts +0 -7
- package/table-semantic/index.d.ts +0 -97
- package/tabs/index.d.ts +0 -91
- package/tabs-motion/index.d.ts +0 -124
- package/tag/index.d.ts +0 -70
- package/textarea/index.d.ts +0 -39
- package/theme.ts +0 -44
- package/themes/index.d.ts +0 -765
- package/timepicker/index.d.ts +0 -35
- package/timezonepicker/index.d.ts +0 -34
- package/toast/index.d.ts +0 -123
- package/tokens/index.d.ts +0 -99
- package/tooltip/index.d.ts +0 -26
- package/tree-view/index.d.ts +0 -77
- package/typography/index.d.ts +0 -39
|
@@ -1,16 +1,19 @@
|
|
|
1
|
-
function _typeof(obj) { "@babel/helpers - typeof";
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
2
|
+
|
|
3
|
+
var _excluded = ["$size"],
|
|
4
|
+
_excluded2 = ["$size"];
|
|
2
5
|
|
|
3
6
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
7
|
|
|
5
8
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
9
|
|
|
7
|
-
function _extends() { _extends = Object.assign
|
|
10
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
8
11
|
|
|
9
12
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
10
13
|
|
|
11
14
|
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
12
15
|
|
|
13
|
-
function _iterableToArrayLimit(arr, i) {
|
|
16
|
+
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
14
17
|
|
|
15
18
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
16
19
|
|
|
@@ -20,7 +23,7 @@ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread n
|
|
|
20
23
|
|
|
21
24
|
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
22
25
|
|
|
23
|
-
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator
|
|
26
|
+
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
|
|
24
27
|
|
|
25
28
|
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
26
29
|
|
|
@@ -30,21 +33,21 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
30
33
|
|
|
31
34
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
32
35
|
|
|
33
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
36
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
34
37
|
|
|
35
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
38
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
36
39
|
|
|
37
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf
|
|
40
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
38
41
|
|
|
39
42
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
40
43
|
|
|
41
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
44
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
42
45
|
|
|
43
46
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
44
47
|
|
|
45
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try {
|
|
48
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
46
49
|
|
|
47
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
50
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
48
51
|
|
|
49
52
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
50
53
|
|
|
@@ -57,19 +60,19 @@ LICENSE file in the root directory of this source tree.
|
|
|
57
60
|
|
|
58
61
|
/* eslint-disable cup/no-undef */
|
|
59
62
|
import * as React from 'react';
|
|
60
|
-
import { getOverrides, mergeOverrides } from '../helpers/overrides
|
|
61
|
-
import DeleteAlt from '../icon/delete-alt
|
|
62
|
-
import TriangleDownIcon from '../icon/triangle-down
|
|
63
|
-
import SearchIconComponent from '../icon/search
|
|
64
|
-
import { LocaleContext } from '../locale/index
|
|
65
|
-
import { Popover, PLACEMENT } from '../popover/index
|
|
63
|
+
import { getOverrides, mergeOverrides } from '../helpers/overrides';
|
|
64
|
+
import DeleteAlt from '../icon/delete-alt';
|
|
65
|
+
import TriangleDownIcon from '../icon/triangle-down';
|
|
66
|
+
import SearchIconComponent from '../icon/search';
|
|
67
|
+
import { LocaleContext } from '../locale/index';
|
|
68
|
+
import { Popover, PLACEMENT } from '../popover/index';
|
|
66
69
|
import { UIDConsumer } from 'react-uid';
|
|
67
|
-
import AutosizeInput from './autosize-input
|
|
68
|
-
import { TYPE, STATE_CHANGE_TYPE, SIZE } from './constants
|
|
69
|
-
import defaultProps from './default-props
|
|
70
|
-
import SelectDropdown from './dropdown
|
|
71
|
-
import { StyledRoot, StyledControlContainer, StyledPlaceholder, StyledValueContainer, StyledInputContainer, StyledIconsContainer, StyledSearchIconContainer, StyledLoadingIndicator } from './styled-components
|
|
72
|
-
import { expandValue, normalizeOptions } from './utils/index
|
|
70
|
+
import AutosizeInput from './autosize-input';
|
|
71
|
+
import { TYPE, STATE_CHANGE_TYPE, SIZE } from './constants';
|
|
72
|
+
import defaultProps from './default-props';
|
|
73
|
+
import SelectDropdown from './dropdown';
|
|
74
|
+
import { StyledRoot, StyledControlContainer, StyledPlaceholder, StyledValueContainer, StyledInputContainer, StyledIconsContainer, StyledSearchIconContainer, StyledLoadingIndicator } from './styled-components';
|
|
75
|
+
import { expandValue, normalizeOptions } from './utils/index';
|
|
73
76
|
|
|
74
77
|
function Noop() {
|
|
75
78
|
return null;
|
|
@@ -951,7 +954,7 @@ var Select = /*#__PURE__*/function (_React$Component) {
|
|
|
951
954
|
|
|
952
955
|
var _this$getSharedProps = this.getSharedProps(),
|
|
953
956
|
$size = _this$getSharedProps.$size,
|
|
954
|
-
sharedProps = _objectWithoutProperties(_this$getSharedProps,
|
|
957
|
+
sharedProps = _objectWithoutProperties(_this$getSharedProps, _excluded);
|
|
955
958
|
|
|
956
959
|
var _this$props$overrides4 = this.props.overrides,
|
|
957
960
|
overrides = _this$props$overrides4 === void 0 ? {} : _this$props$overrides4;
|
|
@@ -982,7 +985,7 @@ var Select = /*#__PURE__*/function (_React$Component) {
|
|
|
982
985
|
|
|
983
986
|
var _this$getSharedProps2 = this.getSharedProps(),
|
|
984
987
|
$size = _this$getSharedProps2.$size,
|
|
985
|
-
sharedProps = _objectWithoutProperties(_this$getSharedProps2,
|
|
988
|
+
sharedProps = _objectWithoutProperties(_this$getSharedProps2, _excluded2);
|
|
986
989
|
|
|
987
990
|
var _this$props$overrides5 = this.props.overrides,
|
|
988
991
|
overrides = _this$props$overrides5 === void 0 ? {} : _this$props$overrides5;
|
package/esm/select/select.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
2
|
|
|
3
3
|
/*
|
|
4
4
|
Copyright (c) Uber Technologies, Inc.
|
|
@@ -7,9 +7,9 @@ This source code is licensed under the MIT license found in the
|
|
|
7
7
|
LICENSE file in the root directory of this source tree.
|
|
8
8
|
*/
|
|
9
9
|
import * as React from 'react';
|
|
10
|
-
import SelectComponent from './select-component
|
|
11
|
-
import MultiValue from './multi-value
|
|
12
|
-
import SingleValue from './value
|
|
10
|
+
import SelectComponent from './select-component';
|
|
11
|
+
import MultiValue from './multi-value';
|
|
12
|
+
import SingleValue from './value';
|
|
13
13
|
|
|
14
14
|
function Select(props) {
|
|
15
15
|
return /*#__PURE__*/React.createElement(SelectComponent, _extends({}, props, {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
2
|
|
|
3
3
|
/*
|
|
4
4
|
Copyright (c) Uber Technologies, Inc.
|
|
@@ -7,8 +7,8 @@ This source code is licensed under the MIT license found in the
|
|
|
7
7
|
LICENSE file in the root directory of this source tree.
|
|
8
8
|
*/
|
|
9
9
|
import * as React from 'react';
|
|
10
|
-
import SelectComponent from './select-component
|
|
11
|
-
import Value from './value
|
|
10
|
+
import SelectComponent from './select-component';
|
|
11
|
+
import Value from './value';
|
|
12
12
|
|
|
13
13
|
function MultiSelect(props) {
|
|
14
14
|
return /*#__PURE__*/React.createElement(SelectComponent, _extends({}, props, {
|
|
@@ -1,32 +1,34 @@
|
|
|
1
|
-
function _typeof(obj) { "@babel/helpers - typeof";
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
2
|
+
|
|
3
|
+
var _excluded = ["children", "initialState", "stateReducer"];
|
|
2
4
|
|
|
3
5
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
6
|
|
|
5
7
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
8
|
|
|
7
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object);
|
|
9
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
8
10
|
|
|
9
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]
|
|
11
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
10
12
|
|
|
11
13
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
12
14
|
|
|
13
15
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
14
16
|
|
|
15
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
17
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
16
18
|
|
|
17
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
19
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
18
20
|
|
|
19
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf
|
|
21
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
20
22
|
|
|
21
23
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
22
24
|
|
|
23
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
25
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
24
26
|
|
|
25
27
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
26
28
|
|
|
27
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try {
|
|
29
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
28
30
|
|
|
29
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
31
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
30
32
|
|
|
31
33
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
32
34
|
|
|
@@ -85,7 +87,7 @@ var StatefulSelectContainer = /*#__PURE__*/function (_React$Component) {
|
|
|
85
87
|
children = _this$props.children,
|
|
86
88
|
initialState = _this$props.initialState,
|
|
87
89
|
stateReducer = _this$props.stateReducer,
|
|
88
|
-
restProps = _objectWithoutProperties(_this$props,
|
|
90
|
+
restProps = _objectWithoutProperties(_this$props, _excluded); // $FlowFixMe
|
|
89
91
|
|
|
90
92
|
|
|
91
93
|
return children(_objectSpread(_objectSpread(_objectSpread({}, restProps), this.state), {}, {
|
|
@@ -5,9 +5,9 @@ This source code is licensed under the MIT license found in the
|
|
|
5
5
|
LICENSE file in the root directory of this source tree.
|
|
6
6
|
*/
|
|
7
7
|
import * as React from 'react';
|
|
8
|
-
import StatefulContainer from './stateful-select-container
|
|
9
|
-
import Select from './select
|
|
10
|
-
import defaultProps from './default-props
|
|
8
|
+
import StatefulContainer from './stateful-select-container';
|
|
9
|
+
import Select from './select';
|
|
10
|
+
import defaultProps from './default-props';
|
|
11
11
|
export default function StatefulSelect(props) {
|
|
12
12
|
return /*#__PURE__*/React.createElement(StatefulContainer, props, function (childrenProps) {
|
|
13
13
|
return /*#__PURE__*/React.createElement(Select, childrenProps);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object);
|
|
1
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
2
2
|
|
|
3
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]
|
|
3
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
4
4
|
|
|
5
5
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
6
6
|
|
|
@@ -10,11 +10,11 @@ Copyright (c) Uber Technologies, Inc.
|
|
|
10
10
|
This source code is licensed under the MIT license found in the
|
|
11
11
|
LICENSE file in the root directory of this source tree.
|
|
12
12
|
*/
|
|
13
|
-
import { styled, withStyle } from '../styles/index
|
|
14
|
-
import { TYPE, SIZE } from './constants
|
|
15
|
-
import { StyledList, StyledListItem } from '../menu/index
|
|
16
|
-
import { Spinner } from '../spinner/index
|
|
17
|
-
import { ellipsisText } from '../styles/util
|
|
13
|
+
import { styled, withStyle } from '../styles/index';
|
|
14
|
+
import { TYPE, SIZE } from './constants';
|
|
15
|
+
import { StyledList, StyledListItem } from '../menu/index';
|
|
16
|
+
import { Spinner } from '../spinner/index';
|
|
17
|
+
import { ellipsisText } from '../styles/util';
|
|
18
18
|
|
|
19
19
|
function getFont() {
|
|
20
20
|
var _SIZE$mini$SIZE$compa;
|
package/esm/select/types.js
CHANGED
|
@@ -1,8 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Copyright (c) Uber Technologies, Inc.
|
|
3
|
-
|
|
4
|
-
This source code is licensed under the MIT license found in the
|
|
5
|
-
LICENSE file in the root directory of this source tree.
|
|
6
|
-
*/
|
|
7
|
-
import * as React from 'react';
|
|
8
|
-
import { STATE_CHANGE_TYPE, SIZE, TYPE } from './constants.js';
|
|
1
|
+
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object);
|
|
1
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
2
2
|
|
|
3
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]
|
|
3
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
4
4
|
|
|
5
5
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object);
|
|
1
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
2
2
|
|
|
3
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]
|
|
3
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
4
4
|
|
|
5
5
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
6
6
|
|
package/esm/select/value.js
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
var _excluded = ["overrides"];
|
|
2
|
+
|
|
3
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
4
|
|
|
3
5
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
4
6
|
|
|
@@ -8,7 +10,7 @@ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o =
|
|
|
8
10
|
|
|
9
11
|
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
10
12
|
|
|
11
|
-
function _iterableToArrayLimit(arr, i) {
|
|
13
|
+
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
12
14
|
|
|
13
15
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
14
16
|
|
|
@@ -23,13 +25,13 @@ This source code is licensed under the MIT license found in the
|
|
|
23
25
|
LICENSE file in the root directory of this source tree.
|
|
24
26
|
*/
|
|
25
27
|
import * as React from 'react';
|
|
26
|
-
import { StyledSingleValue } from './styled-components
|
|
27
|
-
import { getOverrides } from '../helpers/overrides
|
|
28
|
+
import { StyledSingleValue } from './styled-components';
|
|
29
|
+
import { getOverrides } from '../helpers/overrides'; // flowlint-next-line unclear-type:off
|
|
28
30
|
|
|
29
31
|
export default function Value(props) {
|
|
30
32
|
var _props$overrides = props.overrides,
|
|
31
33
|
overrides = _props$overrides === void 0 ? {} : _props$overrides,
|
|
32
|
-
restProps = _objectWithoutProperties(props,
|
|
34
|
+
restProps = _objectWithoutProperties(props, _excluded);
|
|
33
35
|
|
|
34
36
|
var _getOverrides = getOverrides(overrides.SingleValue, StyledSingleValue),
|
|
35
37
|
_getOverrides2 = _slicedToArray(_getOverrides, 2),
|
|
@@ -4,7 +4,9 @@ Copyright (c) Uber Technologies, Inc.
|
|
|
4
4
|
This source code is licensed under the MIT license found in the
|
|
5
5
|
LICENSE file in the root directory of this source tree.
|
|
6
6
|
*/
|
|
7
|
-
export { default as Navigation } from './nav
|
|
8
|
-
export { default as NavItem } from './nav-item
|
|
7
|
+
export { default as Navigation } from './nav';
|
|
8
|
+
export { default as NavItem } from './nav-item'; // Styled elements
|
|
9
9
|
|
|
10
|
-
export * from './styled-components
|
|
10
|
+
export * from './styled-components'; // Types
|
|
11
|
+
|
|
12
|
+
export * from './types';
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
function _typeof(obj) { "@babel/helpers - typeof";
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
var _excluded = ["item", "overrides", "itemMemoizationComparator"];
|
|
4
|
+
|
|
5
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
4
6
|
|
|
5
7
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
6
8
|
|
|
@@ -10,7 +12,7 @@ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o =
|
|
|
10
12
|
|
|
11
13
|
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
12
14
|
|
|
13
|
-
function _iterableToArrayLimit(arr, i) {
|
|
15
|
+
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
14
16
|
|
|
15
17
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
16
18
|
|
|
@@ -22,21 +24,21 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
22
24
|
|
|
23
25
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
24
26
|
|
|
25
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
27
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
26
28
|
|
|
27
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
29
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
28
30
|
|
|
29
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf
|
|
31
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
30
32
|
|
|
31
33
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
32
34
|
|
|
33
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
35
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
34
36
|
|
|
35
37
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
36
38
|
|
|
37
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try {
|
|
39
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
38
40
|
|
|
39
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
41
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
40
42
|
|
|
41
43
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
42
44
|
|
|
@@ -47,8 +49,8 @@ This source code is licensed under the MIT license found in the
|
|
|
47
49
|
LICENSE file in the root directory of this source tree.
|
|
48
50
|
*/
|
|
49
51
|
import * as React from 'react';
|
|
50
|
-
import { getOverrides } from '../helpers/overrides
|
|
51
|
-
import { StyledNavLink, StyledNavItem } from './styled-components
|
|
52
|
+
import { getOverrides } from '../helpers/overrides';
|
|
53
|
+
import { StyledNavLink, StyledNavItem } from './styled-components';
|
|
52
54
|
|
|
53
55
|
var NavItem = /*#__PURE__*/function (_React$Component) {
|
|
54
56
|
_inherits(NavItem, _React$Component);
|
|
@@ -104,7 +106,7 @@ var NavItem = /*#__PURE__*/function (_React$Component) {
|
|
|
104
106
|
item = _this$props3.item,
|
|
105
107
|
overrides = _this$props3.overrides,
|
|
106
108
|
itemMemoizationComparator = _this$props3.itemMemoizationComparator,
|
|
107
|
-
sharedProps = _objectWithoutProperties(_this$props3,
|
|
109
|
+
sharedProps = _objectWithoutProperties(_this$props3, _excluded);
|
|
108
110
|
|
|
109
111
|
var _getOverrides = getOverrides(overrides.NavItem, StyledNavItem),
|
|
110
112
|
_getOverrides2 = _slicedToArray(_getOverrides, 2),
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
function _typeof(obj) { "@babel/helpers - typeof";
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
2
2
|
|
|
3
|
-
function _extends() { _extends = Object.assign
|
|
3
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
4
4
|
|
|
5
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object);
|
|
5
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
6
6
|
|
|
7
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]
|
|
7
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
8
8
|
|
|
9
9
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
10
10
|
|
|
@@ -14,7 +14,7 @@ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o =
|
|
|
14
14
|
|
|
15
15
|
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
16
16
|
|
|
17
|
-
function _iterableToArrayLimit(arr, i) {
|
|
17
|
+
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
18
18
|
|
|
19
19
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
20
20
|
|
|
@@ -22,21 +22,21 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
22
22
|
|
|
23
23
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
24
24
|
|
|
25
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
25
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
26
26
|
|
|
27
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
27
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
28
28
|
|
|
29
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf
|
|
29
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
30
30
|
|
|
31
31
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
32
32
|
|
|
33
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
33
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
34
34
|
|
|
35
35
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
36
36
|
|
|
37
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try {
|
|
37
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
38
38
|
|
|
39
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
39
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
40
40
|
|
|
41
41
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
42
42
|
|
|
@@ -47,10 +47,10 @@ This source code is licensed under the MIT license found in the
|
|
|
47
47
|
LICENSE file in the root directory of this source tree.
|
|
48
48
|
*/
|
|
49
49
|
import * as React from 'react';
|
|
50
|
-
import { getOverrides } from '../helpers/overrides
|
|
51
|
-
import NavItem from './nav-item
|
|
52
|
-
import { StyledRoot, StyledNavItemContainer, StyledSubNavContainer } from './styled-components
|
|
53
|
-
import { isFocusVisible, forkFocus, forkBlur } from '../utils/focusVisible
|
|
50
|
+
import { getOverrides } from '../helpers/overrides';
|
|
51
|
+
import NavItem from './nav-item';
|
|
52
|
+
import { StyledRoot, StyledNavItemContainer, StyledSubNavContainer } from './styled-components';
|
|
53
|
+
import { isFocusVisible, forkFocus, forkBlur } from '../utils/focusVisible';
|
|
54
54
|
|
|
55
55
|
var SideNav = /*#__PURE__*/function (_React$Component) {
|
|
56
56
|
_inherits(SideNav, _React$Component);
|
|
@@ -1,32 +1,34 @@
|
|
|
1
|
-
function _typeof(obj) { "@babel/helpers - typeof";
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
2
|
+
|
|
3
|
+
var _excluded = ["children", "initialState", "stateReducer"];
|
|
2
4
|
|
|
3
5
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
6
|
|
|
5
7
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
8
|
|
|
7
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object);
|
|
9
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
8
10
|
|
|
9
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]
|
|
11
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
10
12
|
|
|
11
13
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
12
14
|
|
|
13
15
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
14
16
|
|
|
15
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
17
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
16
18
|
|
|
17
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
19
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
18
20
|
|
|
19
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf
|
|
21
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
20
22
|
|
|
21
23
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
22
24
|
|
|
23
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
25
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
24
26
|
|
|
25
27
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
26
28
|
|
|
27
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try {
|
|
29
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
28
30
|
|
|
29
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
31
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
30
32
|
|
|
31
33
|
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
32
34
|
|
|
@@ -37,7 +39,7 @@ This source code is licensed under the MIT license found in the
|
|
|
37
39
|
LICENSE file in the root directory of this source tree.
|
|
38
40
|
*/
|
|
39
41
|
import * as React from 'react';
|
|
40
|
-
import { STATE_CHANGE_TYPE } from './constants
|
|
42
|
+
import { STATE_CHANGE_TYPE } from './constants';
|
|
41
43
|
|
|
42
44
|
var defaultStateReducer = function defaultStateReducer(type, nextState) {
|
|
43
45
|
return nextState;
|
|
@@ -98,7 +100,7 @@ var StatefulContainer = /*#__PURE__*/function (_React$Component) {
|
|
|
98
100
|
children = _this$props.children,
|
|
99
101
|
initialState = _this$props.initialState,
|
|
100
102
|
stateReducer = _this$props.stateReducer,
|
|
101
|
-
restProps = _objectWithoutProperties(_this$props,
|
|
103
|
+
restProps = _objectWithoutProperties(_this$props, _excluded);
|
|
102
104
|
|
|
103
105
|
var onChange = this.onChange; // $FlowFixMe
|
|
104
106
|
|
|
@@ -5,8 +5,8 @@ This source code is licensed under the MIT license found in the
|
|
|
5
5
|
LICENSE file in the root directory of this source tree.
|
|
6
6
|
*/
|
|
7
7
|
import * as React from 'react';
|
|
8
|
-
import StatefulContainer from './stateful-container
|
|
9
|
-
import Navigation from './nav
|
|
8
|
+
import StatefulContainer from './stateful-container';
|
|
9
|
+
import Navigation from './nav';
|
|
10
10
|
export default function StatefulNavigation(props) {
|
|
11
11
|
return /*#__PURE__*/React.createElement(StatefulContainer, props, function (childrenProps) {
|
|
12
12
|
return /*#__PURE__*/React.createElement(Navigation, childrenProps);
|