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,6 +1,6 @@
|
|
|
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
5
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
6
6
|
|
|
@@ -10,7 +10,7 @@ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o =
|
|
|
10
10
|
|
|
11
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; }
|
|
12
12
|
|
|
13
|
-
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; }
|
|
14
14
|
|
|
15
15
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
16
16
|
|
|
@@ -18,21 +18,21 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
18
18
|
|
|
19
19
|
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); } }
|
|
20
20
|
|
|
21
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
21
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
22
22
|
|
|
23
|
-
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); }
|
|
23
|
+
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); }
|
|
24
24
|
|
|
25
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf
|
|
25
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
26
26
|
|
|
27
27
|
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); }; }
|
|
28
28
|
|
|
29
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
29
|
+
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); }
|
|
30
30
|
|
|
31
31
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
32
32
|
|
|
33
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try {
|
|
33
|
+
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; } }
|
|
34
34
|
|
|
35
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
35
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
36
36
|
|
|
37
37
|
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; }
|
|
38
38
|
|
|
@@ -43,11 +43,11 @@ This source code is licensed under the MIT license found in the
|
|
|
43
43
|
LICENSE file in the root directory of this source tree.
|
|
44
44
|
*/
|
|
45
45
|
import * as React from 'react';
|
|
46
|
-
import { getOverrides, mergeOverrides } from '../helpers/overrides
|
|
47
|
-
import { LocaleContext } from '../locale/index
|
|
48
|
-
import { filterOptions, Select } from '../select/index
|
|
49
|
-
import DateHelpers from '../datepicker/utils/date-helpers
|
|
50
|
-
import dateFnsAdapter from '../datepicker/utils/date-fns-adapter
|
|
46
|
+
import { getOverrides, mergeOverrides } from '../helpers/overrides';
|
|
47
|
+
import { LocaleContext } from '../locale/index';
|
|
48
|
+
import { filterOptions, Select } from '../select/index';
|
|
49
|
+
import DateHelpers from '../datepicker/utils/date-helpers';
|
|
50
|
+
import dateFnsAdapter from '../datepicker/utils/date-fns-adapter';
|
|
51
51
|
var MINUTE = 60;
|
|
52
52
|
var HOUR = MINUTE * 60;
|
|
53
53
|
var DAY = HOUR * 24;
|
package/esm/timepicker/types.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -4,4 +4,5 @@ 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 TimezonePicker } from './timezone-picker
|
|
7
|
+
export { default as TimezonePicker } from './timezone-picker';
|
|
8
|
+
export * from './types';
|
|
@@ -1,16 +1,16 @@
|
|
|
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
5
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
6
6
|
|
|
7
7
|
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."); }
|
|
8
8
|
|
|
9
|
-
function _iterableToArrayLimit(arr, i) {
|
|
9
|
+
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; }
|
|
10
10
|
|
|
11
11
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
12
12
|
|
|
13
|
-
function _createForOfIteratorHelper(o, allowArrayLike) { var it
|
|
13
|
+
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e2) { throw _e2; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e3) { didErr = true; err = _e3; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
|
|
14
14
|
|
|
15
15
|
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); }
|
|
16
16
|
|
|
@@ -20,21 +20,21 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
20
20
|
|
|
21
21
|
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); } }
|
|
22
22
|
|
|
23
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
23
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
24
24
|
|
|
25
|
-
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); }
|
|
25
|
+
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); }
|
|
26
26
|
|
|
27
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf
|
|
27
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
28
28
|
|
|
29
29
|
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); }; }
|
|
30
30
|
|
|
31
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
31
|
+
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); }
|
|
32
32
|
|
|
33
33
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
34
34
|
|
|
35
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try {
|
|
35
|
+
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; } }
|
|
36
36
|
|
|
37
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
37
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
38
38
|
|
|
39
39
|
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; }
|
|
40
40
|
|
|
@@ -47,10 +47,10 @@ LICENSE file in the root directory of this source tree.
|
|
|
47
47
|
// global Intl
|
|
48
48
|
import * as React from 'react';
|
|
49
49
|
import { format, getTimezoneOffset } from 'date-fns-tz';
|
|
50
|
-
import { getOverrides, mergeOverrides } from '../helpers/overrides
|
|
51
|
-
import { LocaleContext } from '../locale/index
|
|
52
|
-
import { Select } from '../select/index
|
|
53
|
-
import { zones } from './tzdata
|
|
50
|
+
import { getOverrides, mergeOverrides } from '../helpers/overrides';
|
|
51
|
+
import { LocaleContext } from '../locale/index';
|
|
52
|
+
import { Select } from '../select/index';
|
|
53
|
+
import { zones } from './tzdata';
|
|
54
54
|
|
|
55
55
|
var TimezonePicker = /*#__PURE__*/function (_React$Component) {
|
|
56
56
|
_inherits(TimezonePicker, _React$Component);
|
|
@@ -1,9 +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
|
-
|
|
8
|
-
/* eslint-disable flowtype/generic-spacing */
|
|
9
|
-
import * as React from 'react';
|
|
1
|
+
export {};
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
|
|
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 _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
|
|
3
|
+
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return generator._invoke = function (innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; }(innerFn, self, context), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; this._invoke = function (method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); }; } function maybeInvokeDelegate(delegate, context) { var method = delegate.iterator[context.method]; if (undefined === method) { if (context.delegate = null, "throw" === context.method) { if (delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method)) return ContinueSentinel; context.method = "throw", context.arg = new TypeError("The iterator does not provide a 'throw' method"); } return ContinueSentinel; } var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) { if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; } return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, define(Gp, "constructor", GeneratorFunctionPrototype), define(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (object) { var keys = []; for (var key in object) { keys.push(key); } return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) { "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); } }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, catch: function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
|
|
4
|
+
|
|
5
|
+
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
|
|
4
6
|
|
|
5
7
|
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); }
|
|
6
8
|
|
|
@@ -18,6 +20,7 @@ LICENSE file in the root directory of this source tree.
|
|
|
18
20
|
*/
|
|
19
21
|
|
|
20
22
|
/* eslint-env node */
|
|
23
|
+
// @flow
|
|
21
24
|
var fs = require('fs');
|
|
22
25
|
|
|
23
26
|
var path = require('path');
|
|
@@ -34,10 +37,10 @@ function main() {
|
|
|
34
37
|
}
|
|
35
38
|
|
|
36
39
|
function _main() {
|
|
37
|
-
_main = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
|
|
40
|
+
_main = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
38
41
|
var tmpDir, src, zoneTabPath, content, lines, zones, _iterator, _step, line, parts, file, _i, _zones, zone, tzdataPath;
|
|
39
42
|
|
|
40
|
-
return _regeneratorRuntime.wrap(function _callee$(_context) {
|
|
43
|
+
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
41
44
|
while (1) {
|
|
42
45
|
switch (_context.prev = _context.next) {
|
|
43
46
|
case 0:
|
package/esm/toast/index.js
CHANGED
|
@@ -4,9 +4,11 @@ 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 toaster, ToasterContainer } from './toaster
|
|
8
|
-
export { default as Toast } from './toast
|
|
7
|
+
export { default as toaster, ToasterContainer } from './toaster';
|
|
8
|
+
export { default as Toast } from './toast'; // Constants
|
|
9
9
|
|
|
10
|
-
export { KIND, PLACEMENT, TYPE } from './constants
|
|
10
|
+
export { KIND, PLACEMENT, TYPE } from './constants'; // Styled elements
|
|
11
11
|
|
|
12
|
-
export { Root as StyledRoot, Body as StyledBody, CloseIconSvg as StyledCloseIcon } from './styled-components
|
|
12
|
+
export { Root as StyledRoot, Body as StyledBody, CloseIconSvg as StyledCloseIcon } from './styled-components'; // Flow
|
|
13
|
+
|
|
14
|
+
export * from './types';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
function _objectDestructuringEmpty(obj) { if (obj == null) throw new TypeError("Cannot destructure undefined"); }
|
|
2
2
|
|
|
3
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object);
|
|
3
|
+
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; }
|
|
4
4
|
|
|
5
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]
|
|
5
|
+
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; }
|
|
6
6
|
|
|
7
7
|
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; }
|
|
8
8
|
|
|
@@ -12,9 +12,9 @@ Copyright (c) Uber Technologies, Inc.
|
|
|
12
12
|
This source code is licensed under the MIT license found in the
|
|
13
13
|
LICENSE file in the root directory of this source tree.
|
|
14
14
|
*/
|
|
15
|
-
import { styled } from '../styles/index
|
|
16
|
-
import { getSvgStyles } from '../icon/styled-components
|
|
17
|
-
import { KIND, PLACEMENT, TYPE } from './constants
|
|
15
|
+
import { styled } from '../styles/index';
|
|
16
|
+
import { getSvgStyles } from '../icon/styled-components';
|
|
17
|
+
import { KIND, PLACEMENT, TYPE } from './constants';
|
|
18
18
|
|
|
19
19
|
function getBackgroundColor(kind, type, theme) {
|
|
20
20
|
var _KIND$info$KIND$posit;
|
package/esm/toast/toast.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
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
5
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
6
6
|
|
|
@@ -10,7 +10,7 @@ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o =
|
|
|
10
10
|
|
|
11
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; }
|
|
12
12
|
|
|
13
|
-
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; }
|
|
14
14
|
|
|
15
15
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
16
16
|
|
|
@@ -18,21 +18,21 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
|
|
|
18
18
|
|
|
19
19
|
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); } }
|
|
20
20
|
|
|
21
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
21
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
22
22
|
|
|
23
|
-
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); }
|
|
23
|
+
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); }
|
|
24
24
|
|
|
25
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf
|
|
25
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
26
26
|
|
|
27
27
|
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); }; }
|
|
28
28
|
|
|
29
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
29
|
+
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); }
|
|
30
30
|
|
|
31
31
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
32
32
|
|
|
33
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try {
|
|
33
|
+
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; } }
|
|
34
34
|
|
|
35
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
35
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
36
36
|
|
|
37
37
|
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; }
|
|
38
38
|
|
|
@@ -45,12 +45,12 @@ LICENSE file in the root directory of this source tree.
|
|
|
45
45
|
|
|
46
46
|
/* global document */
|
|
47
47
|
import * as React from 'react';
|
|
48
|
-
import { getOverrides, mergeOverrides } from '../helpers/overrides
|
|
49
|
-
import DeleteIcon from '../icon/delete
|
|
50
|
-
import { Body as StyledBody, CloseIconSvg as StyledCloseIcon, InnerContainer as StyledInnerContainer } from './styled-components
|
|
51
|
-
import { KIND, TYPE } from './constants
|
|
52
|
-
import { LocaleContext } from '../locale/index
|
|
53
|
-
import { isFocusVisible, forkFocus, forkBlur } from '../utils/focusVisible
|
|
48
|
+
import { getOverrides, mergeOverrides } from '../helpers/overrides';
|
|
49
|
+
import DeleteIcon from '../icon/delete';
|
|
50
|
+
import { Body as StyledBody, CloseIconSvg as StyledCloseIcon, InnerContainer as StyledInnerContainer } from './styled-components';
|
|
51
|
+
import { KIND, TYPE } from './constants';
|
|
52
|
+
import { LocaleContext } from '../locale/index';
|
|
53
|
+
import { isFocusVisible, forkFocus, forkBlur } from '../utils/focusVisible';
|
|
54
54
|
|
|
55
55
|
var Toast = /*#__PURE__*/function (_React$Component) {
|
|
56
56
|
_inherits(Toast, _React$Component);
|
package/esm/toast/toaster.js
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
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 = ["onClose", "children", "key"];
|
|
2
4
|
|
|
3
5
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
4
6
|
|
|
5
7
|
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."); }
|
|
6
8
|
|
|
7
|
-
function _iterableToArrayLimit(arr, i) {
|
|
9
|
+
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; }
|
|
8
10
|
|
|
9
11
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
10
12
|
|
|
11
|
-
function _extends() { _extends = Object.assign
|
|
13
|
+
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); }
|
|
12
14
|
|
|
13
15
|
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; }
|
|
14
16
|
|
|
@@ -20,35 +22,35 @@ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread n
|
|
|
20
22
|
|
|
21
23
|
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
24
|
|
|
23
|
-
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator
|
|
25
|
+
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
|
|
24
26
|
|
|
25
27
|
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
26
28
|
|
|
27
29
|
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; }
|
|
28
30
|
|
|
29
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object);
|
|
31
|
+
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; }
|
|
30
32
|
|
|
31
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]
|
|
33
|
+
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; }
|
|
32
34
|
|
|
33
35
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
34
36
|
|
|
35
37
|
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); } }
|
|
36
38
|
|
|
37
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
39
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
38
40
|
|
|
39
|
-
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); }
|
|
41
|
+
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); }
|
|
40
42
|
|
|
41
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf
|
|
43
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
42
44
|
|
|
43
45
|
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); }; }
|
|
44
46
|
|
|
45
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
47
|
+
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); }
|
|
46
48
|
|
|
47
49
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
48
50
|
|
|
49
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try {
|
|
51
|
+
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; } }
|
|
50
52
|
|
|
51
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
53
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
52
54
|
|
|
53
55
|
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; }
|
|
54
56
|
|
|
@@ -62,10 +64,10 @@ LICENSE file in the root directory of this source tree.
|
|
|
62
64
|
/* eslint-disable cup/no-undef */
|
|
63
65
|
import * as React from 'react';
|
|
64
66
|
import ReactDOM from 'react-dom';
|
|
65
|
-
import { getOverrides, mergeOverrides } from '../helpers/overrides
|
|
66
|
-
import { KIND, PLACEMENT } from './constants
|
|
67
|
-
import { Root as StyledRoot, Body as StyledBody, CloseIconSvg as StyledCloseIcon, InnerContainer as StyledInnerContainer } from './styled-components
|
|
68
|
-
import Toast from './toast
|
|
67
|
+
import { getOverrides, mergeOverrides } from '../helpers/overrides';
|
|
68
|
+
import { KIND, PLACEMENT } from './constants';
|
|
69
|
+
import { Root as StyledRoot, Body as StyledBody, CloseIconSvg as StyledCloseIcon, InnerContainer as StyledInnerContainer } from './styled-components';
|
|
70
|
+
import Toast from './toast';
|
|
69
71
|
var toasterRef = null;
|
|
70
72
|
export var ToasterContainer = /*#__PURE__*/function (_React$Component) {
|
|
71
73
|
_inherits(ToasterContainer, _React$Component);
|
|
@@ -191,7 +193,7 @@ export var ToasterContainer = /*#__PURE__*/function (_React$Component) {
|
|
|
191
193
|
var onClose = toastProps.onClose,
|
|
192
194
|
children = toastProps.children,
|
|
193
195
|
key = toastProps.key,
|
|
194
|
-
restProps = _objectWithoutProperties(toastProps,
|
|
196
|
+
restProps = _objectWithoutProperties(toastProps, _excluded);
|
|
195
197
|
|
|
196
198
|
var _this$props$overrides = _this.props.overrides,
|
|
197
199
|
BodyOverride = _this$props$overrides.ToastBody,
|
package/esm/toast/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 { KIND, PLACEMENT, TYPE } from './constants.js';
|
|
1
|
+
export {};
|
package/esm/tokens/index.js
CHANGED
|
@@ -4,4 +4,5 @@ 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 colors } from './colors
|
|
7
|
+
export { default as colors } from './colors';
|
|
8
|
+
export * from './types';
|
package/esm/tokens/types.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/esm/tooltip/constants.js
CHANGED
|
@@ -4,4 +4,4 @@ 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 { ACCESSIBILITY_TYPE, PLACEMENT, TRIGGER_TYPE, STATE_CHANGE_TYPE } from '../popover/index
|
|
7
|
+
export { ACCESSIBILITY_TYPE, PLACEMENT, TRIGGER_TYPE, STATE_CHANGE_TYPE } from '../popover/index';
|
|
@@ -4,7 +4,7 @@ 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
|
-
import { ACCESSIBILITY_TYPE, PLACEMENT, TRIGGER_TYPE } from './constants
|
|
7
|
+
import { ACCESSIBILITY_TYPE, PLACEMENT, TRIGGER_TYPE } from './constants';
|
|
8
8
|
var baseDefaultProps = {
|
|
9
9
|
accessibilityType: ACCESSIBILITY_TYPE.tooltip,
|
|
10
10
|
focusLock: false,
|
package/esm/tooltip/index.js
CHANGED
|
@@ -4,10 +4,12 @@ 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 StatefulTooltip } from './stateful-tooltip
|
|
8
|
-
export { default as StatefulContainer } from './stateful-tooltip-container
|
|
9
|
-
export { default as Tooltip } from './tooltip
|
|
7
|
+
export { default as StatefulTooltip } from './stateful-tooltip';
|
|
8
|
+
export { default as StatefulContainer } from './stateful-tooltip-container';
|
|
9
|
+
export { default as Tooltip } from './tooltip'; // Constants
|
|
10
10
|
|
|
11
|
-
export { ACCESSIBILITY_TYPE, PLACEMENT, TRIGGER_TYPE, STATE_CHANGE_TYPE } from './constants
|
|
11
|
+
export { ACCESSIBILITY_TYPE, PLACEMENT, TRIGGER_TYPE, STATE_CHANGE_TYPE } from './constants'; // Styled elements
|
|
12
12
|
|
|
13
|
-
export { Arrow as StyledArrow, Body as StyledBody, Inner as StyledInner } from './styled-components
|
|
13
|
+
export { Arrow as StyledArrow, Body as StyledBody, Inner as StyledInner } from './styled-components'; // Flow
|
|
14
|
+
|
|
15
|
+
export * from './types';
|
|
@@ -1,28 +1,28 @@
|
|
|
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 ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object);
|
|
3
|
+
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; }
|
|
4
4
|
|
|
5
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]
|
|
5
|
+
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; }
|
|
6
6
|
|
|
7
7
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
8
8
|
|
|
9
9
|
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); } }
|
|
10
10
|
|
|
11
|
-
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
|
11
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
12
12
|
|
|
13
|
-
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); }
|
|
13
|
+
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); }
|
|
14
14
|
|
|
15
|
-
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf
|
|
15
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
16
16
|
|
|
17
17
|
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); }; }
|
|
18
18
|
|
|
19
|
-
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
|
|
19
|
+
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); }
|
|
20
20
|
|
|
21
21
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
22
22
|
|
|
23
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try {
|
|
23
|
+
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; } }
|
|
24
24
|
|
|
25
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
25
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
26
26
|
|
|
27
27
|
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; }
|
|
28
28
|
|
|
@@ -33,8 +33,8 @@ This source code is licensed under the MIT license found in the
|
|
|
33
33
|
LICENSE file in the root directory of this source tree.
|
|
34
34
|
*/
|
|
35
35
|
import * as React from 'react';
|
|
36
|
-
import { StatefulContainer as StatefulPopoverContainer } from '../popover/index
|
|
37
|
-
import baseDefaultProps from './default-props
|
|
36
|
+
import { StatefulContainer as StatefulPopoverContainer } from '../popover/index';
|
|
37
|
+
import baseDefaultProps from './default-props';
|
|
38
38
|
|
|
39
39
|
var StatefulContainer = /*#__PURE__*/function (_React$Component) {
|
|
40
40
|
_inherits(StatefulContainer, _React$Component);
|