@skyscanner/backpack-web 9.1.0-alpha.1 → 9.2.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +101 -0
- package/bpk-animate-height/README.md +55 -0
- package/bpk-animate-height/index.js +4 -13
- package/bpk-animate-height/package.json +26 -0
- package/bpk-animate-height/src/AnimateHeight.js +76 -86
- package/bpk-component-accordion/README.md +124 -0
- package/bpk-component-accordion/index.js +28 -36
- package/bpk-component-accordion/package.json +31 -0
- package/bpk-component-accordion/src/BpkAccordion.js +42 -44
- package/bpk-component-accordion/src/BpkAccordion.module.css +18 -0
- package/bpk-component-accordion/src/BpkAccordion.module.scss +23 -0
- package/bpk-component-accordion/src/BpkAccordionItem.js +104 -100
- package/bpk-component-accordion/src/BpkAccordionItem.module.css +18 -0
- package/bpk-component-accordion/src/BpkAccordionItem.module.scss +76 -0
- package/bpk-component-accordion/src/withAccordionItemState.js +68 -64
- package/bpk-component-accordion/src/withSingleItemAccordionState.js +75 -62
- package/bpk-component-aria-live/README.md +42 -0
- package/bpk-component-aria-live/index.js +10 -21
- package/bpk-component-aria-live/package.json +31 -0
- package/bpk-component-aria-live/src/BpkAriaLive.js +45 -45
- package/bpk-component-aria-live/src/BpkAriaLive.module.css +18 -0
- package/bpk-component-aria-live/src/BpkAriaLive.module.scss +25 -0
- package/bpk-component-autosuggest/README.md +126 -0
- package/bpk-component-autosuggest/index.js +8 -21
- package/bpk-component-autosuggest/package.json +29 -0
- package/bpk-component-autosuggest/src/BpkAutosuggest.js +46 -57
- package/bpk-component-autosuggest/src/BpkAutosuggest.module.css +18 -0
- package/bpk-component-autosuggest/src/BpkAutosuggest.module.scss +156 -0
- package/bpk-component-autosuggest/src/BpkAutosuggestSuggestion.js +81 -78
- package/bpk-component-badge/README.md +39 -0
- package/bpk-component-badge/index.js +9 -31
- package/bpk-component-badge/package.json +29 -0
- package/bpk-component-badge/src/BpkBadge.js +49 -63
- package/bpk-component-badge/src/BpkBadge.module.css +18 -0
- package/{bpk-storybook-utils/src/BpkStorybookUtils.js → bpk-component-badge/src/BpkBadge.module.scss} +36 -21
- package/bpk-component-badge/src/themeAttributes.js +6 -9
- package/bpk-component-banner-alert/README.md +153 -0
- package/bpk-component-banner-alert/index.js +17 -53
- package/bpk-component-banner-alert/package.json +34 -0
- package/bpk-component-banner-alert/src/AnimateAndFade.js +137 -128
- package/bpk-component-banner-alert/src/BpkAnimateAndFade.module.css +18 -0
- package/bpk-component-banner-alert/src/BpkAnimateAndFade.module.scss +53 -0
- package/bpk-component-banner-alert/src/BpkBannerAlert.js +19 -20
- package/bpk-component-banner-alert/src/BpkBannerAlert.module.css +18 -0
- package/bpk-component-banner-alert/src/BpkBannerAlert.module.scss +163 -0
- package/bpk-component-banner-alert/src/BpkBannerAlertDismissable.js +52 -45
- package/bpk-component-banner-alert/src/BpkBannerAlertExpandable.js +56 -55
- package/bpk-component-banner-alert/src/BpkBannerAlertInner.js +185 -165
- package/bpk-component-banner-alert/src/common-types.js +41 -26
- package/bpk-component-banner-alert/src/themeAttributes.js +7 -9
- package/bpk-component-banner-alert/src/withBannerAlertState.js +142 -118
- package/bpk-component-barchart/README.md +189 -0
- package/bpk-component-barchart/data.json +20 -0
- package/bpk-component-barchart/index.js +21 -61
- package/bpk-component-barchart/package.json +35 -0
- package/bpk-component-barchart/src/BpkBarchart.js +267 -222
- package/bpk-component-barchart/src/BpkBarchart.module.css +18 -0
- package/bpk-component-barchart/src/BpkBarchart.module.scss +21 -0
- package/bpk-component-barchart/src/BpkBarchartBar.js +113 -89
- package/bpk-component-barchart/src/BpkBarchartBar.module.css +18 -0
- package/bpk-component-barchart/src/BpkBarchartBar.module.scss +68 -0
- package/bpk-component-barchart/src/BpkBarchartBars.js +129 -117
- package/bpk-component-barchart/src/BpkBarchartDefs.js +38 -32
- package/bpk-component-barchart/src/BpkChartAxis.js +135 -103
- package/bpk-component-barchart/src/BpkChartAxis.module.css +18 -0
- package/{bpk-component-boilerplate/index.js → bpk-component-barchart/src/BpkChartAxis.module.scss} +20 -13
- package/bpk-component-barchart/src/BpkChartDataTable.js +48 -44
- package/bpk-component-barchart/src/BpkChartDataTable.module.css +18 -0
- package/bpk-component-barchart/src/BpkChartDataTable.module.scss +28 -0
- package/bpk-component-barchart/src/BpkChartGridLines.js +94 -73
- package/bpk-component-barchart/src/BpkChartGridLines.module.css +18 -0
- package/bpk-component-barchart/src/BpkChartGridLines.module.scss +26 -0
- package/bpk-component-barchart/src/BpkChartMargin.js +46 -39
- package/bpk-component-barchart/src/RTLtransforms.js +49 -50
- package/bpk-component-barchart/src/customPropTypes.js +22 -19
- package/bpk-component-barchart/src/orientation.js +5 -11
- package/bpk-component-barchart/src/themeAttributes.js +9 -9
- package/bpk-component-barchart/src/utils.js +10 -20
- package/bpk-component-blockquote/README.md +35 -0
- package/bpk-component-blockquote/index.js +6 -21
- package/bpk-component-blockquote/package.json +24 -0
- package/bpk-component-blockquote/src/BpkBlockquote.js +21 -31
- package/bpk-component-blockquote/src/BpkBlockquote.module.css +18 -0
- package/{bpk-component-icon/gulpfile.js → bpk-component-blockquote/src/BpkBlockquote.module.scss} +9 -13
- package/bpk-component-blockquote/src/themeAttributes.js +2 -9
- package/bpk-component-breadcrumb/README.md +58 -0
- package/bpk-component-breadcrumb/index.js +14 -21
- package/bpk-component-breadcrumb/package.json +27 -0
- package/bpk-component-breadcrumb/src/BpkBreadcrumb.js +78 -69
- package/bpk-component-breadcrumb/src/BpkBreadcrumb.module.css +18 -0
- package/bpk-component-breadcrumb/src/BpkBreadcrumb.module.scss +27 -0
- package/bpk-component-breadcrumb/src/BpkBreadcrumbItem.js +77 -75
- package/bpk-component-breadcrumb/src/BpkBreadcrumbItem.module.css +18 -0
- package/bpk-component-breadcrumb/src/BpkBreadcrumbItem.module.scss +40 -0
- package/bpk-component-breakpoint/README.md +34 -0
- package/bpk-component-breakpoint/index.js +7 -21
- package/bpk-component-breakpoint/package.json +28 -0
- package/bpk-component-breakpoint/src/BpkBreakpoint.js +38 -46
- package/bpk-component-button/BpkButtonDestructive.js +19 -13
- package/bpk-component-button/BpkButtonFeatured.js +19 -13
- package/bpk-component-button/BpkButtonLink.js +19 -13
- package/bpk-component-button/BpkButtonLinkOnDark.js +19 -13
- package/bpk-component-button/BpkButtonOutline.js +19 -13
- package/bpk-component-button/BpkButtonPrimary.js +19 -13
- package/bpk-component-button/BpkButtonPrimaryOnDark.js +19 -13
- package/bpk-component-button/BpkButtonPrimaryOnLight.js +19 -13
- package/bpk-component-button/BpkButtonSecondary.js +19 -13
- package/bpk-component-button/BpkButtonSecondaryOnDark.js +19 -13
- package/bpk-component-button/README.md +140 -0
- package/bpk-component-button/index.js +40 -144
- package/bpk-component-button/package.json +26 -0
- package/bpk-component-button/src/BpkButton.js +87 -64
- package/bpk-component-button/src/BpkButtonBase.js +75 -71
- package/bpk-component-button/src/BpkButtonBase.module.css +18 -0
- package/bpk-component-button/src/BpkButtonBase.module.scss +50 -0
- package/bpk-component-button/src/BpkButtonDestructive.js +36 -54
- package/bpk-component-button/src/BpkButtonDestructive.module.css +18 -0
- package/bpk-component-button/src/BpkButtonDestructive.module.scss +24 -0
- package/bpk-component-button/src/BpkButtonFeatured.js +36 -54
- package/bpk-component-button/src/BpkButtonFeatured.module.css +18 -0
- package/bpk-component-button/src/BpkButtonFeatured.module.scss +23 -0
- package/bpk-component-button/src/BpkButtonLink.js +42 -56
- package/bpk-component-button/src/BpkButtonLink.module.css +18 -0
- package/bpk-component-button/src/BpkButtonLink.module.scss +25 -0
- package/bpk-component-button/src/BpkButtonLinkOnDark.js +42 -56
- package/bpk-component-button/src/BpkButtonLinkOnDark.module.scss +23 -0
- package/bpk-component-button/src/BpkButtonOutline.js +36 -54
- package/bpk-component-button/src/BpkButtonOutline.module.css +18 -0
- package/bpk-component-button/src/BpkButtonOutline.module.scss +23 -0
- package/bpk-component-button/src/BpkButtonPrimary.js +29 -25
- package/bpk-component-button/src/BpkButtonPrimaryOnDark.js +36 -54
- package/bpk-component-button/src/BpkButtonPrimaryOnDark.module.scss +23 -0
- package/bpk-component-button/src/BpkButtonPrimaryOnLight.js +36 -54
- package/bpk-component-button/src/BpkButtonPrimaryOnLight.module.scss +23 -0
- package/bpk-component-button/src/BpkButtonSecondary.js +36 -54
- package/bpk-component-button/src/BpkButtonSecondary.module.css +18 -0
- package/bpk-component-button/src/BpkButtonSecondary.module.scss +23 -0
- package/bpk-component-button/src/BpkButtonSecondaryOnDark.js +36 -54
- package/bpk-component-button/src/BpkButtonSecondaryOnDark.module.scss +23 -0
- package/bpk-component-button/src/common-types.js +33 -24
- package/bpk-component-button/src/commonButtonTests.js +63 -79
- package/bpk-component-button/src/themeAttributes.js +75 -23
- package/bpk-component-button/themeAttributes.js +28 -53
- package/bpk-component-calendar/DOCS.md +29 -0
- package/bpk-component-calendar/README.md +406 -0
- package/bpk-component-calendar/index.js +43 -126
- package/bpk-component-calendar/package.json +34 -0
- package/bpk-component-calendar/src/BpkCalendar.module.css +18 -0
- package/bpk-component-calendar/src/BpkCalendar.module.scss +42 -0
- package/bpk-component-calendar/src/BpkCalendarContainer.js +271 -237
- package/bpk-component-calendar/src/BpkCalendarDate.js +121 -134
- package/bpk-component-calendar/src/BpkCalendarDate.module.css +18 -0
- package/bpk-component-calendar/src/BpkCalendarDate.module.scss +159 -0
- package/bpk-component-calendar/src/BpkCalendarGrid.js +149 -133
- package/bpk-component-calendar/src/BpkCalendarGrid.module.css +18 -0
- package/bpk-component-calendar/src/BpkCalendarGrid.module.scss +64 -0
- package/bpk-component-calendar/src/BpkCalendarGridHeader.js +60 -77
- package/bpk-component-calendar/src/BpkCalendarGridHeader.module.css +18 -0
- package/bpk-component-calendar/src/BpkCalendarGridHeader.module.scss +50 -0
- package/bpk-component-calendar/src/BpkCalendarGridTransition.js +143 -109
- package/bpk-component-calendar/src/BpkCalendarGridTransition.module.css +18 -0
- package/bpk-component-calendar/src/BpkCalendarGridTransition.module.scss +47 -0
- package/bpk-component-calendar/src/BpkCalendarNav.js +136 -148
- package/bpk-component-calendar/src/BpkCalendarNav.module.css +18 -0
- package/bpk-component-calendar/src/BpkCalendarNav.module.scss +89 -0
- package/bpk-component-calendar/src/Week.js +282 -225
- package/bpk-component-calendar/src/_variables.scss +24 -0
- package/bpk-component-calendar/src/composeCalendar.js +123 -113
- package/bpk-component-calendar/src/custom-proptypes.js +41 -50
- package/bpk-component-calendar/src/date-utils.js +93 -223
- package/bpk-component-calendar/src/themeAttributes.js +13 -9
- package/bpk-component-calendar/src/utils.js +20 -28
- package/bpk-component-calendar/test-utils.js +272 -239
- package/bpk-component-card/README.md +34 -0
- package/bpk-component-card/index.js +5 -13
- package/bpk-component-card/package.json +28 -0
- package/bpk-component-card/src/BpkCard.js +67 -69
- package/bpk-component-card/src/BpkCard.module.css +18 -0
- package/bpk-component-card/src/BpkCard.module.scss +27 -0
- package/bpk-component-checkbox/README.md +47 -0
- package/bpk-component-checkbox/index.js +8 -21
- package/bpk-component-checkbox/package.json +29 -0
- package/bpk-component-checkbox/src/BpkCheckbox.js +99 -74
- package/bpk-component-checkbox/src/BpkCheckbox.module.css +18 -0
- package/bpk-component-checkbox/src/BpkCheckbox.module.scss +70 -0
- package/bpk-component-checkbox/src/themeAttributes.js +4 -9
- package/bpk-component-chip/README.md +111 -0
- package/bpk-component-chip/index.js +17 -37
- package/bpk-component-chip/package.json +29 -0
- package/bpk-component-chip/src/BpkDismissibleChip.js +53 -32
- package/bpk-component-chip/src/BpkSelectableChip.js +85 -81
- package/bpk-component-chip/src/BpkSelectableChip.module.css +18 -0
- package/bpk-component-chip/src/BpkSelectableChip.module.scss +23 -0
- package/bpk-component-chip/src/commonTypes.js +33 -28
- package/bpk-component-chip/src/themeAttributes.js +17 -9
- package/bpk-component-close-button/README.md +27 -0
- package/bpk-component-close-button/index.js +6 -13
- package/bpk-component-close-button/package.json +28 -0
- package/bpk-component-close-button/src/BpkCloseButton.js +55 -59
- package/bpk-component-close-button/src/BpkCloseButton.module.css +18 -0
- package/bpk-component-close-button/src/BpkCloseButton.module.scss +51 -0
- package/bpk-component-code/README.md +43 -0
- package/bpk-component-code/index.js +21 -21
- package/bpk-component-code/package.json +24 -0
- package/bpk-component-code/src/BpkCode.js +43 -47
- package/bpk-component-code/src/BpkCode.module.css +18 -0
- package/bpk-component-code/src/BpkCode.module.scss +27 -0
- package/bpk-component-code/src/BpkCodeBlock.js +49 -50
- package/bpk-component-code/src/BpkCodeBlock.module.css +18 -0
- package/bpk-component-code/src/BpkCodeBlock.module.scss +33 -0
- package/bpk-component-content-container/README.md +33 -0
- package/bpk-component-content-container/index.js +4 -13
- package/bpk-component-content-container/package.json +24 -0
- package/bpk-component-content-container/src/BpkContentContainer.js +53 -52
- package/bpk-component-content-container/src/BpkContentContainer.module.css +18 -0
- package/bpk-component-content-container/src/BpkContentContainer.module.scss +41 -0
- package/bpk-component-datatable/README.md +141 -0
- package/bpk-component-datatable/index.js +20 -22
- package/bpk-component-datatable/package.json +30 -0
- package/bpk-component-datatable/src/BpkDataTable.js +154 -183
- package/bpk-component-datatable/src/BpkDataTable.module.css +18 -0
- package/bpk-component-datatable/src/BpkDataTable.module.scss +95 -0
- package/bpk-component-datatable/src/BpkDataTableColumn.js +50 -59
- package/bpk-component-datatable/src/BpkDataTableColumn.module.css +18 -0
- package/bpk-component-datatable/src/BpkDataTableColumn.module.scss +65 -0
- package/bpk-component-datatable/src/bpkHeaderRenderer.js +72 -67
- package/bpk-component-datatable/src/common-types.js +48 -3
- package/bpk-component-datatable/src/hasChildrenOfType.js +36 -29
- package/bpk-component-datatable/src/sort-types.js +29 -1
- package/bpk-component-datatable/src/sorter.js +89 -62
- package/bpk-component-datatable/src/utils.js +6 -11
- package/bpk-component-datepicker/README.md +181 -0
- package/bpk-component-datepicker/index.js +8 -29
- package/bpk-component-datepicker/package.json +33 -0
- package/bpk-component-datepicker/src/BpkDatepicker.js +274 -225
- package/bpk-component-datepicker/src/BpkDatepicker.module.css +18 -0
- package/bpk-component-datepicker/src/BpkDatepicker.module.scss +30 -0
- package/bpk-component-datepicker/src/themeAttributes.js +11 -15
- package/bpk-component-description-list/README.md +46 -0
- package/bpk-component-description-list/index.js +21 -29
- package/bpk-component-description-list/package.json +24 -0
- package/bpk-component-description-list/src/BpkDescriptionDetails.js +3 -13
- package/bpk-component-description-list/src/BpkDescriptionList.js +3 -13
- package/bpk-component-description-list/src/BpkDescriptionList.module.css +18 -0
- package/bpk-component-description-list/src/BpkDescriptionList.module.scss +37 -0
- package/bpk-component-description-list/src/BpkDescriptionTerm.js +3 -13
- package/bpk-component-description-list/src/ComponentFactory.js +37 -45
- package/bpk-component-dialog/README.md +105 -0
- package/bpk-component-dialog/index.js +9 -21
- package/bpk-component-dialog/package.json +32 -0
- package/bpk-component-dialog/src/BpkDialog.js +78 -72
- package/bpk-component-dialog/src/BpkDialog.module.css +18 -0
- package/bpk-component-dialog/src/BpkDialog.module.scss +80 -0
- package/bpk-component-dialog/src/BpkDialogInner.js +74 -65
- package/bpk-component-dialog/src/BpkDialogInner.module.css +18 -0
- package/bpk-component-dialog/src/BpkDialogInner.module.scss +62 -0
- package/bpk-component-dialog/src/common-types.js +80 -56
- package/bpk-component-drawer/README.md +90 -0
- package/bpk-component-drawer/index.js +8 -21
- package/bpk-component-drawer/package.json +34 -0
- package/bpk-component-drawer/src/BpkDrawer.js +76 -84
- package/bpk-component-drawer/src/BpkDrawer.module.css +18 -0
- package/bpk-component-drawer/src/BpkDrawer.module.scss +23 -0
- package/bpk-component-drawer/src/BpkDrawerContent.js +122 -107
- package/bpk-component-drawer/src/BpkDrawerContent.module.css +18 -0
- package/bpk-component-drawer/src/BpkDrawerContent.module.scss +107 -0
- package/bpk-component-drawer/src/themeAttributes.js +6 -11
- package/bpk-component-fieldset/README.md +73 -0
- package/bpk-component-fieldset/index.js +13 -37
- package/bpk-component-fieldset/package.json +36 -0
- package/bpk-component-fieldset/src/BpkFieldset.js +129 -107
- package/bpk-component-fieldset/src/BpkFieldset.module.css +18 -0
- package/bpk-component-fieldset/src/BpkFieldset.module.scss +39 -0
- package/bpk-component-fieldset/src/themeAttributes.js +2 -9
- package/bpk-component-flare/README.md +52 -0
- package/bpk-component-flare/index.js +8 -27
- package/bpk-component-flare/package.json +29 -0
- package/bpk-component-flare/src/BpkContentBubble.js +67 -66
- package/bpk-component-flare/src/BpkFlareBar.js +55 -62
- package/bpk-component-flare/src/__generated__/js/corner-radius.js +5 -33
- package/bpk-component-flare/src/__generated__/js/pointer.js +5 -33
- package/bpk-component-flare/src/bpk-content-bubble.module.css +18 -0
- package/bpk-component-flare/src/bpk-content-bubble.module.scss +60 -0
- package/bpk-component-flare/src/bpk-flare-bar.module.css +18 -0
- package/bpk-component-flare/src/bpk-flare-bar.module.scss +74 -0
- package/bpk-component-flare/src/svgs/corner-radius.svg +1 -0
- package/bpk-component-flare/src/svgs/pointer.svg +1 -0
- package/bpk-component-floating-notification/README.md +58 -0
- package/bpk-component-floating-notification/index.js +10 -21
- package/bpk-component-floating-notification/package.json +26 -0
- package/bpk-component-floating-notification/src/BpkFloatingNotification.js +121 -109
- package/bpk-component-floating-notification/src/BpkFloatingNotification.module.css +18 -0
- package/bpk-component-floating-notification/src/BpkFloatingNotification.module.scss +96 -0
- package/bpk-component-form-validation/README.md +33 -0
- package/bpk-component-form-validation/index.js +6 -21
- package/bpk-component-form-validation/package.json +34 -0
- package/bpk-component-form-validation/src/BpkFormValidation.js +75 -73
- package/bpk-component-form-validation/src/BpkFormValidation.module.css +18 -0
- package/bpk-component-form-validation/src/BpkFormValidation.module.scss +44 -0
- package/bpk-component-form-validation/src/themeAttributes.js +2 -9
- package/bpk-component-graphic-promotion/README.md +70 -0
- package/bpk-component-graphic-promotion/index.ts +26 -0
- package/bpk-component-graphic-promotion/package.json +24 -0
- package/bpk-component-graphic-promotion/src/BpkGraphicPromo-test.tsx +132 -0
- package/bpk-component-graphic-promotion/src/BpkGraphicPromo.module.scss +270 -0
- package/bpk-component-graphic-promotion/src/BpkGraphicPromo.tsx +201 -0
- package/bpk-component-graphic-promotion/src/accessibility-test.tsx +147 -0
- package/bpk-component-grid/README.md +90 -0
- package/bpk-component-grid/index.js +8 -21
- package/bpk-component-grid/package.json +24 -0
- package/bpk-component-grid/src/BpkGridColumn.js +66 -143
- package/bpk-component-grid/src/BpkGridColumn.module.css +18 -0
- package/bpk-component-grid/src/BpkGridColumn.module.scss +73 -0
- package/bpk-component-grid/src/BpkGridContainer.js +41 -52
- package/bpk-component-grid/src/BpkGridContainer.module.css +18 -0
- package/bpk-component-grid/src/BpkGridContainer.module.scss +33 -0
- package/bpk-component-grid/src/BpkGridRow.js +40 -48
- package/bpk-component-grid/src/BpkGridRow.module.css +18 -0
- package/bpk-component-grid/src/BpkGridRow.module.scss +29 -0
- package/bpk-component-grid-toggle/README.md +27 -0
- package/bpk-component-grid-toggle/index.js +4 -13
- package/bpk-component-grid-toggle/package.json +25 -0
- package/bpk-component-grid-toggle/src/BpkGridToggle.js +67 -57
- package/bpk-component-grid-toggle/src/BpkGridToggle.module.css +18 -0
- package/bpk-component-grid-toggle/src/BpkGridToggle.module.scss +52 -0
- package/bpk-component-horizontal-nav/README.md +103 -0
- package/bpk-component-horizontal-nav/index.js +15 -35
- package/bpk-component-horizontal-nav/package.json +30 -0
- package/bpk-component-horizontal-nav/src/BpkHorizontalNav.js +148 -135
- package/bpk-component-horizontal-nav/src/BpkHorizontalNav.module.css +18 -0
- package/bpk-component-horizontal-nav/src/BpkHorizontalNav.module.scss +37 -0
- package/bpk-component-horizontal-nav/src/BpkHorizontalNavItem.js +109 -97
- package/bpk-component-horizontal-nav/src/BpkHorizontalNavItem.module.css +18 -0
- package/bpk-component-horizontal-nav/src/BpkHorizontalNavItem.module.scss +152 -0
- package/bpk-component-icon/README.md +79 -0
- package/bpk-component-icon/all.js +6 -5
- package/bpk-component-icon/index.js +27 -40
- package/bpk-component-icon/lg/accessibility.js +8 -39
- package/bpk-component-icon/lg/account--add.js +8 -39
- package/bpk-component-icon/lg/account--female.js +8 -39
- package/bpk-component-icon/lg/account--id-card.js +8 -39
- package/bpk-component-icon/lg/account--name.js +8 -39
- package/bpk-component-icon/lg/account--permit.js +8 -39
- package/bpk-component-icon/lg/account-circle.js +8 -39
- package/bpk-component-icon/lg/account.js +8 -39
- package/bpk-component-icon/lg/add-circle.js +8 -39
- package/bpk-component-icon/lg/adult.js +8 -39
- package/bpk-component-icon/lg/aircon.js +8 -39
- package/bpk-component-icon/lg/aircraft.js +8 -41
- package/bpk-component-icon/lg/airline--multiple.js +8 -39
- package/bpk-component-icon/lg/airline.js +8 -39
- package/bpk-component-icon/lg/airports.js +8 -39
- package/bpk-component-icon/lg/alert--active.js +8 -39
- package/bpk-component-icon/lg/alert--add.js +8 -39
- package/bpk-component-icon/lg/alert--expired.js +8 -39
- package/bpk-component-icon/lg/alert--remove.js +8 -39
- package/bpk-component-icon/lg/arrow-down.js +8 -39
- package/bpk-component-icon/lg/arrow-left.js +8 -39
- package/bpk-component-icon/lg/arrow-right.js +8 -39
- package/bpk-component-icon/lg/arrow-up.js +8 -39
- package/bpk-component-icon/lg/award.js +8 -39
- package/bpk-component-icon/lg/baby-carriage.js +8 -39
- package/bpk-component-icon/lg/baggage--add.js +8 -39
- package/bpk-component-icon/lg/baggage--remove.js +8 -39
- package/bpk-component-icon/lg/baggage-cross.js +8 -39
- package/bpk-component-icon/lg/baggage-tick.js +8 -39
- package/bpk-component-icon/lg/baggage.js +8 -39
- package/bpk-component-icon/lg/bar.js +8 -39
- package/bpk-component-icon/lg/beach.js +8 -41
- package/bpk-component-icon/lg/beer.js +8 -39
- package/bpk-component-icon/lg/breakfast-cross.js +8 -39
- package/bpk-component-icon/lg/breakfast-tick.js +8 -39
- package/bpk-component-icon/lg/bus.js +8 -39
- package/bpk-component-icon/lg/business.js +8 -39
- package/bpk-component-icon/lg/cafe.js +8 -39
- package/bpk-component-icon/lg/calendar.js +8 -39
- package/bpk-component-icon/lg/call-back.js +8 -41
- package/bpk-component-icon/lg/camera.js +8 -39
- package/bpk-component-icon/lg/camper-van.js +8 -41
- package/bpk-component-icon/lg/car-door.js +8 -39
- package/bpk-component-icon/lg/car-wash.js +8 -41
- package/bpk-component-icon/lg/cars-flexible.js +8 -39
- package/bpk-component-icon/lg/cars.js +8 -41
- package/bpk-component-icon/lg/center-location.js +8 -39
- package/bpk-component-icon/lg/chart.js +8 -39
- package/bpk-component-icon/lg/chauffeur.js +8 -39
- package/bpk-component-icon/lg/chevron-down.js +8 -39
- package/bpk-component-icon/lg/chevron-left.js +8 -39
- package/bpk-component-icon/lg/chevron-right.js +8 -39
- package/bpk-component-icon/lg/chevron-up.js +8 -39
- package/bpk-component-icon/lg/child-seat.js +8 -39
- package/bpk-component-icon/lg/child.js +8 -39
- package/bpk-component-icon/lg/city-center.js +8 -39
- package/bpk-component-icon/lg/city.js +8 -39
- package/bpk-component-icon/lg/clean-policy.js +8 -39
- package/bpk-component-icon/lg/clean.js +8 -43
- package/bpk-component-icon/lg/cleaning-medical.js +8 -39
- package/bpk-component-icon/lg/cloakroom.js +8 -43
- package/bpk-component-icon/lg/close-circle.js +8 -39
- package/bpk-component-icon/lg/close.js +8 -39
- package/bpk-component-icon/lg/collapse.js +8 -39
- package/bpk-component-icon/lg/content--copy.js +8 -41
- package/bpk-component-icon/lg/content--event.js +8 -39
- package/bpk-component-icon/lg/content--guides.js +8 -39
- package/bpk-component-icon/lg/currency.js +8 -39
- package/bpk-component-icon/lg/data.js +8 -41
- package/bpk-component-icon/lg/deals.js +8 -39
- package/bpk-component-icon/lg/depart.js +8 -41
- package/bpk-component-icon/lg/device-mid.js +8 -39
- package/bpk-component-icon/lg/device-wide.js +8 -39
- package/bpk-component-icon/lg/direct.js +8 -39
- package/bpk-component-icon/lg/document-csv.js +8 -39
- package/bpk-component-icon/lg/document-pdf.js +8 -39
- package/bpk-component-icon/lg/download.js +8 -41
- package/bpk-component-icon/lg/duration.js +8 -39
- package/bpk-component-icon/lg/eco-leaf.js +8 -39
- package/bpk-component-icon/lg/edit.js +8 -39
- package/bpk-component-icon/lg/education.js +8 -41
- package/bpk-component-icon/lg/electric.js +8 -39
- package/bpk-component-icon/lg/end-call.js +8 -39
- package/bpk-component-icon/lg/estimated.js +8 -39
- package/bpk-component-icon/lg/exclamation-circle.js +8 -39
- package/bpk-component-icon/lg/exclamation.js +8 -39
- package/bpk-component-icon/lg/expand.js +8 -39
- package/bpk-component-icon/lg/explore.js +8 -39
- package/bpk-component-icon/lg/face--blank.js +8 -39
- package/bpk-component-icon/lg/face--happy.js +8 -39
- package/bpk-component-icon/lg/face--sad.js +8 -39
- package/bpk-component-icon/lg/face-id.js +8 -39
- package/bpk-component-icon/lg/face-mask.js +8 -39
- package/bpk-component-icon/lg/family.js +8 -39
- package/bpk-component-icon/lg/fast-track.js +8 -41
- package/bpk-component-icon/lg/fast-train.js +8 -41
- package/bpk-component-icon/lg/filter.js +8 -40
- package/bpk-component-icon/lg/fingerprint.js +8 -39
- package/bpk-component-icon/lg/flag.js +8 -39
- package/bpk-component-icon/lg/flask.js +8 -39
- package/bpk-component-icon/lg/flight-flexible.js +8 -39
- package/bpk-component-icon/lg/flight-landing.js +8 -43
- package/bpk-component-icon/lg/flight-takeoff.js +8 -41
- package/bpk-component-icon/lg/flight.js +8 -41
- package/bpk-component-icon/lg/food.js +8 -39
- package/bpk-component-icon/lg/gears-automatic-circle.js +8 -39
- package/bpk-component-icon/lg/gears-automatic.js +8 -39
- package/bpk-component-icon/lg/gears-manual-circle.js +8 -39
- package/bpk-component-icon/lg/gears-manual.js +8 -39
- package/bpk-component-icon/lg/globe.js +8 -39
- package/bpk-component-icon/lg/grid-layout.js +8 -39
- package/bpk-component-icon/lg/headset.js +8 -39
- package/bpk-component-icon/lg/health-fitness.js +8 -39
- package/bpk-component-icon/lg/heart--outline.js +8 -39
- package/bpk-component-icon/lg/heart.js +8 -39
- package/bpk-component-icon/lg/help-circle.js +8 -39
- package/bpk-component-icon/lg/help.js +8 -39
- package/bpk-component-icon/lg/hide.js +8 -39
- package/bpk-component-icon/lg/hotel-flexible.js +8 -39
- package/bpk-component-icon/lg/hotels--disabled-facilities.js +8 -39
- package/bpk-component-icon/lg/hotels--jacuzzi.js +8 -39
- package/bpk-component-icon/lg/hotels--pets-allowed.js +8 -39
- package/bpk-component-icon/lg/hotels--smoking.js +8 -39
- package/bpk-component-icon/lg/hotels.js +8 -39
- package/bpk-component-icon/lg/infant.js +8 -39
- package/bpk-component-icon/lg/information--language-alert.js +8 -39
- package/bpk-component-icon/lg/information--language-question.js +8 -39
- package/bpk-component-icon/lg/information--language.js +8 -39
- package/bpk-component-icon/lg/information-circle.js +8 -39
- package/bpk-component-icon/lg/information.js +8 -39
- package/bpk-component-icon/lg/insurance.js +8 -39
- package/bpk-component-icon/lg/key.js +8 -39
- package/bpk-component-icon/lg/keypad.js +8 -39
- package/bpk-component-icon/lg/landmark.js +8 -39
- package/bpk-component-icon/lg/language.js +8 -39
- package/bpk-component-icon/lg/legroom--extra.js +8 -41
- package/bpk-component-icon/lg/legroom--normal.js +8 -41
- package/bpk-component-icon/lg/legroom--reduced.js +8 -41
- package/bpk-component-icon/lg/leisure.js +8 -39
- package/bpk-component-icon/lg/lightning.js +8 -39
- package/bpk-component-icon/lg/list.js +8 -39
- package/bpk-component-icon/lg/location.js +8 -39
- package/bpk-component-icon/lg/lock.js +8 -39
- package/bpk-component-icon/lg/logout.js +8 -41
- package/bpk-component-icon/lg/long-arrow-down.js +8 -39
- package/bpk-component-icon/lg/long-arrow-left.js +8 -39
- package/bpk-component-icon/lg/long-arrow-right.js +8 -39
- package/bpk-component-icon/lg/long-arrow-up.js +8 -39
- package/bpk-component-icon/lg/lounge.js +8 -41
- package/bpk-component-icon/lg/luggageall.js +8 -39
- package/bpk-component-icon/lg/mail.js +8 -41
- package/bpk-component-icon/lg/map.js +8 -39
- package/bpk-component-icon/lg/meal.js +8 -39
- package/bpk-component-icon/lg/media.js +8 -39
- package/bpk-component-icon/lg/menu--horizontal.js +8 -39
- package/bpk-component-icon/lg/menu--vertical.js +8 -39
- package/bpk-component-icon/lg/menu.js +8 -39
- package/bpk-component-icon/lg/mileage.js +8 -41
- package/bpk-component-icon/lg/minus.js +8 -39
- package/bpk-component-icon/lg/mobile.js +8 -39
- package/bpk-component-icon/lg/money.js +8 -39
- package/bpk-component-icon/lg/multiple-bookings.js +8 -39
- package/bpk-component-icon/lg/music.js +8 -39
- package/bpk-component-icon/lg/mute.js +8 -39
- package/bpk-component-icon/lg/native-android--back.js +8 -39
- package/bpk-component-icon/lg/native-android--close.js +8 -39
- package/bpk-component-icon/lg/native-android--forward.js +8 -39
- package/bpk-component-icon/lg/native-ios-close.js +8 -39
- package/bpk-component-icon/lg/navigation.js +8 -39
- package/bpk-component-icon/lg/new-window.js +8 -41
- package/bpk-component-icon/lg/news.js +8 -39
- package/bpk-component-icon/lg/night.js +8 -39
- package/bpk-component-icon/lg/not-allowed.js +8 -39
- package/bpk-component-icon/lg/onsen.js +8 -39
- package/bpk-component-icon/lg/paid.js +8 -39
- package/bpk-component-icon/lg/paperclip.js +8 -39
- package/bpk-component-icon/lg/parking.js +8 -39
- package/bpk-component-icon/lg/passport.js +8 -39
- package/bpk-component-icon/lg/pause.js +8 -39
- package/bpk-component-icon/lg/payment-card.js +8 -39
- package/bpk-component-icon/lg/petrol.js +8 -39
- package/bpk-component-icon/lg/phone-call.js +8 -39
- package/bpk-component-icon/lg/picture.js +8 -39
- package/bpk-component-icon/lg/pin.js +8 -39
- package/bpk-component-icon/lg/plane-seat.js +8 -41
- package/bpk-component-icon/lg/play.js +8 -39
- package/bpk-component-icon/lg/plus.js +8 -39
- package/bpk-component-icon/lg/policy.js +8 -39
- package/bpk-component-icon/lg/powerplug.js +8 -39
- package/bpk-component-icon/lg/ppe.js +8 -39
- package/bpk-component-icon/lg/price-alerts.js +8 -39
- package/bpk-component-icon/lg/price-tag.js +8 -39
- package/bpk-component-icon/lg/print.js +8 -39
- package/bpk-component-icon/lg/recent-searches.js +8 -39
- package/bpk-component-icon/lg/redo.js +8 -39
- package/bpk-component-icon/lg/refresh.js +8 -39
- package/bpk-component-icon/lg/return.js +8 -41
- package/bpk-component-icon/lg/room.js +8 -39
- package/bpk-component-icon/lg/scales.js +8 -41
- package/bpk-component-icon/lg/search.js +8 -39
- package/bpk-component-icon/lg/self-service.js +8 -39
- package/bpk-component-icon/lg/send-message.js +8 -39
- package/bpk-component-icon/lg/services.js +8 -39
- package/bpk-component-icon/lg/settings.js +8 -39
- package/bpk-component-icon/lg/share--android.js +8 -39
- package/bpk-component-icon/lg/share--ios.js +8 -41
- package/bpk-component-icon/lg/share.js +8 -39
- package/bpk-component-icon/lg/single-booking.js +8 -39
- package/bpk-component-icon/lg/social-distancing.js +8 -0
- package/bpk-component-icon/lg/social-like.js +8 -39
- package/bpk-component-icon/lg/sort-down.js +8 -39
- package/bpk-component-icon/lg/sort-up.js +8 -39
- package/bpk-component-icon/lg/sort.js +8 -39
- package/bpk-component-icon/lg/speaker.js +8 -41
- package/bpk-component-icon/lg/star-half.js +8 -39
- package/bpk-component-icon/lg/star-outline.js +8 -39
- package/bpk-component-icon/lg/star.js +8 -39
- package/bpk-component-icon/lg/stops.js +8 -39
- package/bpk-component-icon/lg/swap--horizontal.js +8 -39
- package/bpk-component-icon/lg/swap--vertical.js +8 -39
- package/bpk-component-icon/lg/swap.js +8 -39
- package/bpk-component-icon/lg/taxi.js +8 -41
- package/bpk-component-icon/lg/thumbs-down.js +8 -39
- package/bpk-component-icon/lg/thumbs-up.js +8 -39
- package/bpk-component-icon/lg/tick-circle.js +8 -39
- package/bpk-component-icon/lg/tick.js +8 -39
- package/bpk-component-icon/lg/ticket-flexible.js +8 -39
- package/bpk-component-icon/lg/ticket.js +8 -39
- package/bpk-component-icon/lg/time.js +8 -39
- package/bpk-component-icon/lg/toilets.js +8 -39
- package/bpk-component-icon/lg/train.js +8 -39
- package/bpk-component-icon/lg/transmission-automatic.js +8 -39
- package/bpk-component-icon/lg/transmission-manual.js +8 -39
- package/bpk-component-icon/lg/trash.js +8 -39
- package/bpk-component-icon/lg/trend--down.js +8 -39
- package/bpk-component-icon/lg/trend--steady.js +8 -39
- package/bpk-component-icon/lg/trend--will-rise.js +8 -39
- package/bpk-component-icon/lg/trend.js +8 -39
- package/bpk-component-icon/lg/trips.js +8 -39
- package/bpk-component-icon/lg/undo.js +8 -39
- package/bpk-component-icon/lg/unlock.js +8 -39
- package/bpk-component-icon/lg/unmute.js +8 -41
- package/bpk-component-icon/lg/upgrade.js +8 -39
- package/bpk-component-icon/lg/use-location.js +8 -39
- package/bpk-component-icon/lg/view.js +8 -39
- package/bpk-component-icon/lg/virus.js +8 -39
- package/bpk-component-icon/lg/wallet.js +8 -41
- package/bpk-component-icon/lg/weather--clear.js +8 -39
- package/bpk-component-icon/lg/weather--cloudy.js +8 -41
- package/bpk-component-icon/lg/weather--fog.js +8 -39
- package/bpk-component-icon/lg/weather--partly-cloudy.js +8 -41
- package/bpk-component-icon/lg/weather--rain.js +8 -43
- package/bpk-component-icon/lg/weather--snow.js +8 -39
- package/bpk-component-icon/lg/weather--thunderstorm.js +8 -43
- package/bpk-component-icon/lg/weather--tornado.js +8 -39
- package/bpk-component-icon/lg/weather--wind.js +8 -39
- package/bpk-component-icon/lg/weather.js +8 -39
- package/bpk-component-icon/lg/wifi.js +8 -39
- package/bpk-component-icon/lg/window--reduce.js +8 -41
- package/bpk-component-icon/lg/window.js +8 -39
- package/bpk-component-icon/lg/world--amer.js +8 -39
- package/bpk-component-icon/lg/world--apac.js +8 -39
- package/bpk-component-icon/lg/world--emea.js +8 -41
- package/bpk-component-icon/package.json +34 -0
- package/bpk-component-icon/sm/accessibility.js +8 -40
- package/bpk-component-icon/sm/account--add.js +8 -40
- package/bpk-component-icon/sm/account--female.js +8 -40
- package/bpk-component-icon/sm/account--id-card.js +8 -40
- package/bpk-component-icon/sm/account--name.js +8 -40
- package/bpk-component-icon/sm/account--permit.js +8 -40
- package/bpk-component-icon/sm/account-circle.js +8 -40
- package/bpk-component-icon/sm/account.js +8 -40
- package/bpk-component-icon/sm/add-circle.js +8 -40
- package/bpk-component-icon/sm/adult.js +8 -40
- package/bpk-component-icon/sm/aircon.js +8 -40
- package/bpk-component-icon/sm/aircraft.js +8 -42
- package/bpk-component-icon/sm/airline--multiple.js +8 -40
- package/bpk-component-icon/sm/airline.js +8 -40
- package/bpk-component-icon/sm/airports.js +8 -40
- package/bpk-component-icon/sm/alert--active.js +8 -40
- package/bpk-component-icon/sm/alert--add.js +8 -40
- package/bpk-component-icon/sm/alert--expired.js +8 -40
- package/bpk-component-icon/sm/alert--remove.js +8 -40
- package/bpk-component-icon/sm/arrow-down.js +8 -40
- package/bpk-component-icon/sm/arrow-left.js +8 -40
- package/bpk-component-icon/sm/arrow-right.js +8 -40
- package/bpk-component-icon/sm/arrow-up.js +8 -40
- package/bpk-component-icon/sm/award.js +8 -40
- package/bpk-component-icon/sm/baby-carriage.js +8 -40
- package/bpk-component-icon/sm/baggage--add.js +8 -40
- package/bpk-component-icon/sm/baggage--remove.js +8 -40
- package/bpk-component-icon/sm/baggage-cross.js +8 -40
- package/bpk-component-icon/sm/baggage-tick.js +8 -40
- package/bpk-component-icon/sm/baggage.js +8 -40
- package/bpk-component-icon/sm/bar.js +8 -40
- package/bpk-component-icon/sm/beach.js +8 -42
- package/bpk-component-icon/sm/beer.js +8 -40
- package/bpk-component-icon/sm/breakfast-cross.js +8 -40
- package/bpk-component-icon/sm/breakfast-tick.js +8 -40
- package/bpk-component-icon/sm/bus.js +8 -42
- package/bpk-component-icon/sm/business.js +8 -40
- package/bpk-component-icon/sm/cafe.js +8 -40
- package/bpk-component-icon/sm/calendar.js +8 -40
- package/bpk-component-icon/sm/call-back.js +8 -42
- package/bpk-component-icon/sm/camera.js +8 -40
- package/bpk-component-icon/sm/camper-van.js +8 -42
- package/bpk-component-icon/sm/car-door.js +8 -40
- package/bpk-component-icon/sm/car-wash.js +8 -42
- package/bpk-component-icon/sm/cars-flexible.js +8 -40
- package/bpk-component-icon/sm/cars.js +8 -42
- package/bpk-component-icon/sm/center-location.js +8 -40
- package/bpk-component-icon/sm/chart.js +8 -40
- package/bpk-component-icon/sm/chauffeur.js +8 -42
- package/bpk-component-icon/sm/chevron-down.js +8 -40
- package/bpk-component-icon/sm/chevron-left.js +8 -40
- package/bpk-component-icon/sm/chevron-right.js +8 -40
- package/bpk-component-icon/sm/chevron-up.js +8 -40
- package/bpk-component-icon/sm/child-seat.js +8 -40
- package/bpk-component-icon/sm/child.js +8 -40
- package/bpk-component-icon/sm/city-center.js +8 -40
- package/bpk-component-icon/sm/city.js +8 -40
- package/bpk-component-icon/sm/clean-policy.js +8 -40
- package/bpk-component-icon/sm/clean.js +8 -42
- package/bpk-component-icon/sm/cleaning-medical.js +8 -40
- package/bpk-component-icon/sm/cloakroom.js +8 -40
- package/bpk-component-icon/sm/close-circle.js +8 -40
- package/bpk-component-icon/sm/close.js +8 -40
- package/bpk-component-icon/sm/collapse.js +8 -40
- package/bpk-component-icon/sm/content--copy.js +8 -42
- package/bpk-component-icon/sm/content--event.js +8 -40
- package/bpk-component-icon/sm/content--guides.js +8 -40
- package/bpk-component-icon/sm/currency.js +8 -40
- package/bpk-component-icon/sm/data.js +8 -42
- package/bpk-component-icon/sm/deals.js +8 -40
- package/bpk-component-icon/sm/depart.js +8 -44
- package/bpk-component-icon/sm/device-mid.js +8 -40
- package/bpk-component-icon/sm/device-wide.js +8 -40
- package/bpk-component-icon/sm/direct.js +8 -42
- package/bpk-component-icon/sm/document-csv.js +8 -40
- package/bpk-component-icon/sm/document-pdf.js +8 -40
- package/bpk-component-icon/sm/download.js +8 -42
- package/bpk-component-icon/sm/duration.js +8 -40
- package/bpk-component-icon/sm/eco-leaf.js +8 -40
- package/bpk-component-icon/sm/edit.js +8 -40
- package/bpk-component-icon/sm/education.js +8 -42
- package/bpk-component-icon/sm/electric.js +8 -40
- package/bpk-component-icon/sm/end-call.js +8 -40
- package/bpk-component-icon/sm/estimated.js +8 -40
- package/bpk-component-icon/sm/exclamation-circle.js +8 -40
- package/bpk-component-icon/sm/exclamation.js +8 -40
- package/bpk-component-icon/sm/expand.js +8 -40
- package/bpk-component-icon/sm/explore.js +8 -40
- package/bpk-component-icon/sm/face--blank.js +8 -40
- package/bpk-component-icon/sm/face--happy.js +8 -40
- package/bpk-component-icon/sm/face--sad.js +8 -40
- package/bpk-component-icon/sm/face-id.js +8 -40
- package/bpk-component-icon/sm/face-mask.js +8 -40
- package/bpk-component-icon/sm/family.js +8 -40
- package/bpk-component-icon/sm/fast-track.js +8 -42
- package/bpk-component-icon/sm/fast-train.js +8 -42
- package/bpk-component-icon/sm/filter.js +8 -41
- package/bpk-component-icon/sm/fingerprint.js +8 -40
- package/bpk-component-icon/sm/flag.js +8 -40
- package/bpk-component-icon/sm/flask.js +8 -40
- package/bpk-component-icon/sm/flight-flexible.js +8 -40
- package/bpk-component-icon/sm/flight-landing.js +8 -44
- package/bpk-component-icon/sm/flight-takeoff.js +8 -42
- package/bpk-component-icon/sm/flight.js +8 -42
- package/bpk-component-icon/sm/food.js +8 -40
- package/bpk-component-icon/sm/gears-automatic-circle.js +8 -40
- package/bpk-component-icon/sm/gears-automatic.js +8 -40
- package/bpk-component-icon/sm/gears-manual-circle.js +8 -40
- package/bpk-component-icon/sm/gears-manual.js +8 -40
- package/bpk-component-icon/sm/globe.js +8 -40
- package/bpk-component-icon/sm/grid-layout.js +8 -40
- package/bpk-component-icon/sm/headset.js +8 -40
- package/bpk-component-icon/sm/health-fitness.js +8 -40
- package/bpk-component-icon/sm/heart--outline.js +8 -40
- package/bpk-component-icon/sm/heart.js +8 -40
- package/bpk-component-icon/sm/help-circle.js +8 -40
- package/bpk-component-icon/sm/help.js +8 -40
- package/bpk-component-icon/sm/hide.js +8 -40
- package/bpk-component-icon/sm/hotel-flexible.js +8 -40
- package/bpk-component-icon/sm/hotels--disabled-facilities.js +8 -40
- package/bpk-component-icon/sm/hotels--jacuzzi.js +8 -42
- package/bpk-component-icon/sm/hotels--pets-allowed.js +8 -40
- package/bpk-component-icon/sm/hotels--smoking.js +8 -40
- package/bpk-component-icon/sm/hotels.js +8 -40
- package/bpk-component-icon/sm/infant.js +8 -42
- package/bpk-component-icon/sm/information--language-alert.js +8 -40
- package/bpk-component-icon/sm/information--language-question.js +8 -40
- package/bpk-component-icon/sm/information--language.js +8 -40
- package/bpk-component-icon/sm/information-circle.js +8 -40
- package/bpk-component-icon/sm/information.js +8 -40
- package/bpk-component-icon/sm/insurance.js +8 -40
- package/bpk-component-icon/sm/key.js +8 -40
- package/bpk-component-icon/sm/keypad.js +8 -40
- package/bpk-component-icon/sm/landmark.js +8 -40
- package/bpk-component-icon/sm/language.js +8 -40
- package/bpk-component-icon/sm/legroom--extra.js +8 -42
- package/bpk-component-icon/sm/legroom--normal.js +8 -42
- package/bpk-component-icon/sm/legroom--reduced.js +8 -42
- package/bpk-component-icon/sm/leisure.js +8 -40
- package/bpk-component-icon/sm/lightning.js +8 -40
- package/bpk-component-icon/sm/list.js +8 -40
- package/bpk-component-icon/sm/location.js +8 -40
- package/bpk-component-icon/sm/lock.js +8 -40
- package/bpk-component-icon/sm/logout.js +8 -42
- package/bpk-component-icon/sm/long-arrow-down.js +8 -41
- package/bpk-component-icon/sm/long-arrow-left.js +8 -41
- package/bpk-component-icon/sm/long-arrow-right.js +8 -41
- package/bpk-component-icon/sm/long-arrow-up.js +8 -41
- package/bpk-component-icon/sm/lounge.js +8 -40
- package/bpk-component-icon/sm/luggageall.js +8 -40
- package/bpk-component-icon/sm/mail.js +8 -42
- package/bpk-component-icon/sm/map.js +8 -40
- package/bpk-component-icon/sm/meal.js +8 -40
- package/bpk-component-icon/sm/media.js +8 -40
- package/bpk-component-icon/sm/menu--horizontal.js +8 -40
- package/bpk-component-icon/sm/menu--vertical.js +8 -40
- package/bpk-component-icon/sm/menu.js +8 -40
- package/bpk-component-icon/sm/mileage.js +8 -42
- package/bpk-component-icon/sm/minus.js +8 -40
- package/bpk-component-icon/sm/mobile.js +8 -40
- package/bpk-component-icon/sm/money.js +8 -40
- package/bpk-component-icon/sm/multiple-bookings.js +8 -40
- package/bpk-component-icon/sm/music.js +8 -40
- package/bpk-component-icon/sm/mute.js +8 -40
- package/bpk-component-icon/sm/native-android--back.js +8 -40
- package/bpk-component-icon/sm/native-android--close.js +8 -40
- package/bpk-component-icon/sm/native-android--forward.js +8 -40
- package/bpk-component-icon/sm/native-ios-close.js +8 -40
- package/bpk-component-icon/sm/navigation.js +8 -40
- package/bpk-component-icon/sm/new-window.js +8 -46
- package/bpk-component-icon/sm/news.js +8 -40
- package/bpk-component-icon/sm/night.js +8 -40
- package/bpk-component-icon/sm/not-allowed.js +8 -40
- package/bpk-component-icon/sm/onsen.js +8 -42
- package/bpk-component-icon/sm/paid.js +8 -40
- package/bpk-component-icon/sm/paperclip.js +8 -40
- package/bpk-component-icon/sm/parking.js +8 -40
- package/bpk-component-icon/sm/passport.js +8 -40
- package/bpk-component-icon/sm/pause.js +8 -40
- package/bpk-component-icon/sm/payment-card.js +8 -40
- package/bpk-component-icon/sm/petrol.js +8 -40
- package/bpk-component-icon/sm/phone-call.js +8 -40
- package/bpk-component-icon/sm/picture.js +8 -40
- package/bpk-component-icon/sm/pin.js +8 -40
- package/bpk-component-icon/sm/plane-seat.js +8 -42
- package/bpk-component-icon/sm/play.js +8 -40
- package/bpk-component-icon/sm/plus.js +8 -40
- package/bpk-component-icon/sm/policy.js +8 -40
- package/bpk-component-icon/sm/powerplug.js +8 -40
- package/bpk-component-icon/sm/ppe.js +8 -40
- package/bpk-component-icon/sm/price-alerts.js +8 -40
- package/bpk-component-icon/sm/price-tag.js +8 -40
- package/bpk-component-icon/sm/print.js +8 -40
- package/bpk-component-icon/sm/recent-searches.js +8 -40
- package/bpk-component-icon/sm/redo.js +8 -40
- package/bpk-component-icon/sm/refresh.js +8 -40
- package/bpk-component-icon/sm/return.js +8 -44
- package/bpk-component-icon/sm/room.js +8 -40
- package/bpk-component-icon/sm/scales.js +8 -40
- package/bpk-component-icon/sm/search.js +8 -40
- package/bpk-component-icon/sm/self-service.js +8 -40
- package/bpk-component-icon/sm/send-message.js +8 -40
- package/bpk-component-icon/sm/services.js +8 -40
- package/bpk-component-icon/sm/settings.js +8 -40
- package/bpk-component-icon/sm/share--android.js +8 -40
- package/bpk-component-icon/sm/share--ios.js +8 -44
- package/bpk-component-icon/sm/share.js +8 -40
- package/bpk-component-icon/sm/single-booking.js +8 -40
- package/bpk-component-icon/sm/social-distancing.js +8 -0
- package/bpk-component-icon/sm/social-like.js +8 -40
- package/bpk-component-icon/sm/sort-down.js +8 -40
- package/bpk-component-icon/sm/sort-up.js +8 -40
- package/bpk-component-icon/sm/sort.js +8 -40
- package/bpk-component-icon/sm/speaker.js +8 -40
- package/bpk-component-icon/sm/star-half.js +8 -40
- package/bpk-component-icon/sm/star-outline.js +8 -40
- package/bpk-component-icon/sm/star.js +8 -40
- package/bpk-component-icon/sm/stops.js +8 -40
- package/bpk-component-icon/sm/swap--horizontal.js +8 -41
- package/bpk-component-icon/sm/swap--vertical.js +8 -40
- package/bpk-component-icon/sm/swap.js +8 -41
- package/bpk-component-icon/sm/taxi.js +8 -42
- package/bpk-component-icon/sm/thumbs-down.js +8 -40
- package/bpk-component-icon/sm/thumbs-up.js +8 -40
- package/bpk-component-icon/sm/tick-circle.js +8 -40
- package/bpk-component-icon/sm/tick.js +8 -40
- package/bpk-component-icon/sm/ticket-flexible.js +8 -40
- package/bpk-component-icon/sm/ticket.js +8 -40
- package/bpk-component-icon/sm/time.js +8 -40
- package/bpk-component-icon/sm/toilets.js +8 -40
- package/bpk-component-icon/sm/train.js +8 -40
- package/bpk-component-icon/sm/transmission-automatic.js +8 -40
- package/bpk-component-icon/sm/transmission-manual.js +8 -40
- package/bpk-component-icon/sm/trash.js +8 -40
- package/bpk-component-icon/sm/trend--down.js +8 -40
- package/bpk-component-icon/sm/trend--steady.js +8 -41
- package/bpk-component-icon/sm/trend--will-rise.js +8 -40
- package/bpk-component-icon/sm/trend.js +8 -40
- package/bpk-component-icon/sm/trips.js +8 -40
- package/bpk-component-icon/sm/undo.js +8 -40
- package/bpk-component-icon/sm/unlock.js +8 -40
- package/bpk-component-icon/sm/unmute.js +8 -42
- package/bpk-component-icon/sm/upgrade.js +8 -40
- package/bpk-component-icon/sm/use-location.js +8 -40
- package/bpk-component-icon/sm/view.js +8 -40
- package/bpk-component-icon/sm/virus.js +8 -40
- package/bpk-component-icon/sm/wallet.js +8 -40
- package/bpk-component-icon/sm/weather--clear.js +8 -40
- package/bpk-component-icon/sm/weather--cloudy.js +8 -42
- package/bpk-component-icon/sm/weather--fog.js +8 -40
- package/bpk-component-icon/sm/weather--partly-cloudy.js +8 -40
- package/bpk-component-icon/sm/weather--rain.js +8 -42
- package/bpk-component-icon/sm/weather--snow.js +8 -40
- package/bpk-component-icon/sm/weather--thunderstorm.js +8 -44
- package/bpk-component-icon/sm/weather--tornado.js +8 -40
- package/bpk-component-icon/sm/weather--wind.js +8 -42
- package/bpk-component-icon/sm/weather.js +8 -40
- package/bpk-component-icon/sm/wifi.js +8 -40
- package/bpk-component-icon/sm/window--reduce.js +8 -42
- package/bpk-component-icon/sm/window.js +8 -40
- package/bpk-component-icon/sm/world--amer.js +8 -40
- package/bpk-component-icon/sm/world--apac.js +8 -40
- package/bpk-component-icon/sm/world--emea.js +8 -40
- package/bpk-component-icon/src/BpkIcon.module.css +18 -0
- package/bpk-component-icon/src/BpkIcon.module.scss +33 -0
- package/bpk-component-icon/src/classNameModifierHOCFactory.js +52 -52
- package/bpk-component-icon/src/withAlignment.js +25 -26
- package/bpk-component-icon/src/withDescription.js +24 -24
- package/bpk-component-icon/src/withDescription.module.css +18 -0
- package/bpk-component-icon/src/withDescription.module.scss +22 -0
- package/bpk-component-icon/src/withRtlSupport.js +9 -22
- package/bpk-component-image/README.md +142 -0
- package/bpk-component-image/index.js +20 -45
- package/bpk-component-image/package.json +31 -0
- package/bpk-component-image/src/BpkBackgroundImage.js +162 -159
- package/bpk-component-image/src/BpkBackgroundImage.module.css +18 -0
- package/bpk-component-image/src/BpkBackgroundImage.module.scss +46 -0
- package/bpk-component-image/src/BpkImage.js +196 -181
- package/bpk-component-image/src/BpkImage.module.css +18 -0
- package/bpk-component-image/src/BpkImage.module.scss +89 -0
- package/bpk-component-image/src/BpkImageBorderRadiusStyles.js +6 -13
- package/bpk-component-image/src/customPropTypes.js +11 -11
- package/bpk-component-image/src/withLazyLoading.js +160 -143
- package/bpk-component-image/src/withLoadingBehavior.js +50 -30
- package/bpk-component-infinite-scroll/README.md +187 -0
- package/bpk-component-infinite-scroll/index.js +12 -31
- package/bpk-component-infinite-scroll/package.json +31 -0
- package/bpk-component-infinite-scroll/src/DataSource.js +22 -41
- package/bpk-component-infinite-scroll/src/intersection-observer.js +3 -9
- package/bpk-component-infinite-scroll/src/withInfiniteScroll-test.flow.js +102 -0
- package/bpk-component-infinite-scroll/src/withInfiniteScroll.js +202 -178
- package/bpk-component-infinite-scroll/src/withInfiniteScroll.module.css +18 -0
- package/bpk-component-infinite-scroll/src/withInfiniteScroll.module.scss +25 -0
- package/bpk-component-input/README.md +121 -0
- package/bpk-component-input/index.js +43 -60
- package/bpk-component-input/package.json +30 -0
- package/bpk-component-input/src/BpkClearButton.js +57 -60
- package/bpk-component-input/src/BpkClearButton.module.css +18 -0
- package/bpk-component-input/src/BpkClearButton.module.scss +40 -0
- package/bpk-component-input/src/BpkInput.js +107 -119
- package/bpk-component-input/src/BpkInput.module.css +18 -0
- package/bpk-component-input/src/BpkInput.module.scss +86 -0
- package/bpk-component-input/src/common-types.js +74 -47
- package/bpk-component-input/src/themeAttributes.js +2 -9
- package/bpk-component-input/src/withOpenEvents.js +111 -109
- package/bpk-component-label/README.md +30 -0
- package/bpk-component-label/index.js +7 -13
- package/bpk-component-label/package.json +24 -0
- package/bpk-component-label/src/BpkLabel.js +53 -60
- package/bpk-component-label/src/BpkLabel.module.css +18 -0
- package/bpk-component-label/src/BpkLabel.module.scss +43 -0
- package/bpk-component-link/README.md +68 -0
- package/bpk-component-link/index.js +11 -39
- package/bpk-component-link/package.json +28 -0
- package/bpk-component-link/src/BpkButtonLink.js +55 -63
- package/bpk-component-link/src/BpkLink.js +71 -72
- package/bpk-component-link/src/BpkLink.module.css +18 -0
- package/bpk-component-link/src/BpkLink.module.scss +31 -0
- package/bpk-component-link/src/themeAttributes.js +18 -11
- package/bpk-component-list/README.md +48 -0
- package/bpk-component-list/index.js +21 -20
- package/bpk-component-list/package.json +24 -0
- package/bpk-component-list/src/BpkList.js +33 -38
- package/bpk-component-list/src/BpkList.module.css +18 -0
- package/bpk-component-list/src/BpkList.module.scss +37 -0
- package/bpk-component-list/src/BpkListItem.js +28 -33
- package/bpk-component-loading-button/README.md +48 -0
- package/bpk-component-loading-button/index.js +7 -21
- package/bpk-component-loading-button/package.json +30 -0
- package/bpk-component-loading-button/src/BpkLoadingButton.js +130 -101
- package/bpk-component-loading-button/src/BpkLoadingButton.module.scss +65 -0
- package/bpk-component-map/README.md +213 -0
- package/bpk-component-map/index.js +28 -69
- package/bpk-component-map/package.json +32 -0
- package/bpk-component-map/src/BpkBasicMapMarker.js +45 -41
- package/bpk-component-map/src/BpkIconMarker.js +84 -70
- package/bpk-component-map/src/BpkIconMarker.module.css +18 -0
- package/bpk-component-map/src/BpkIconMarker.module.scss +74 -0
- package/bpk-component-map/src/BpkIconMarkerBackground.js +57 -55
- package/bpk-component-map/src/BpkIconMarkerBackground.module.css +18 -0
- package/bpk-component-map/src/BpkIconMarkerBackground.module.scss +53 -0
- package/bpk-component-map/src/BpkMap.js +139 -103
- package/bpk-component-map/src/BpkMap.module.scss +21 -0
- package/bpk-component-map/src/BpkOverlayView.js +43 -44
- package/bpk-component-map/src/BpkPriceMarker.js +98 -84
- package/bpk-component-map/src/BpkPriceMarker.module.css +18 -0
- package/bpk-component-map/src/BpkPriceMarker.module.scss +146 -0
- package/bpk-component-map/src/DefaultLoadingElement.js +15 -27
- package/bpk-component-map/src/DefaultLoadingElement.module.css +18 -0
- package/bpk-component-map/src/DefaultLoadingElement.module.scss +28 -0
- package/bpk-component-map/src/common-types.js +13 -16
- package/bpk-component-map/src/themeAttributes.js +19 -14
- package/bpk-component-map/src/withGoogleMapsScript.js +56 -50
- package/bpk-component-mobile-scroll-container/README.md +74 -0
- package/bpk-component-mobile-scroll-container/index.js +6 -13
- package/bpk-component-mobile-scroll-container/package.json +28 -0
- package/bpk-component-mobile-scroll-container/src/BpkMobileScrollContainer.js +165 -155
- package/bpk-component-mobile-scroll-container/src/BpkMobileScrollContainer.module.css +18 -0
- package/bpk-component-mobile-scroll-container/src/BpkMobileScrollContainer.module.scss +50 -0
- package/bpk-component-modal/README.md +114 -0
- package/bpk-component-modal/index.js +10 -37
- package/bpk-component-modal/package.json +33 -0
- package/bpk-component-modal/src/BpkModal.js +96 -84
- package/bpk-component-modal/src/BpkModal.module.css +18 -0
- package/bpk-component-modal/src/BpkModal.module.scss +46 -0
- package/bpk-component-modal/src/BpkModalInner.js +134 -107
- package/bpk-component-modal/src/BpkModalInner.module.css +18 -0
- package/bpk-component-modal/src/BpkModalInner.module.scss +123 -0
- package/bpk-component-modal/src/customPropTypes.js +23 -16
- package/bpk-component-modal/src/themeAttributes.js +6 -11
- package/bpk-component-navigation-bar/README.md +114 -0
- package/bpk-component-navigation-bar/index.js +25 -37
- package/bpk-component-navigation-bar/package.json +32 -0
- package/bpk-component-navigation-bar/src/BpkNavigationBar.js +80 -70
- package/bpk-component-navigation-bar/src/BpkNavigationBar.module.css +18 -0
- package/bpk-component-navigation-bar/src/BpkNavigationBar.module.scss +77 -0
- package/bpk-component-navigation-bar/src/BpkNavigationBarButtonLink.js +55 -52
- package/bpk-component-navigation-bar/src/BpkNavigationBarButtonLink.module.css +18 -0
- package/bpk-component-navigation-bar/src/BpkNavigationBarButtonLink.module.scss +51 -0
- package/bpk-component-navigation-bar/src/BpkNavigationBarIconButton.js +52 -54
- package/bpk-component-navigation-bar/src/BpkNavigationBarIconButton.module.css +18 -0
- package/bpk-component-navigation-bar/src/BpkNavigationBarIconButton.module.scss +43 -0
- package/bpk-component-navigation-bar/src/themeAttributes.js +16 -9
- package/bpk-component-nudger/README.md +170 -0
- package/bpk-component-nudger/index.js +9 -29
- package/bpk-component-nudger/package.json +32 -0
- package/bpk-component-nudger/src/BpkConfigurableNudger.js +124 -101
- package/bpk-component-nudger/src/BpkNudger.js +59 -59
- package/bpk-component-nudger/src/BpkNudger.module.css +18 -0
- package/bpk-component-nudger/src/BpkNudger.module.scss +49 -0
- package/bpk-component-nudger/src/common-types.js +25 -22
- package/bpk-component-nudger/src/themeAttributes.js +6 -11
- package/bpk-component-overlay/README.md +51 -0
- package/bpk-component-overlay/index.js +11 -27
- package/bpk-component-overlay/package.json +28 -0
- package/bpk-component-overlay/src/BpkOverlay.js +60 -52
- package/bpk-component-overlay/src/BpkOverlay.module.css +18 -0
- package/bpk-component-overlay/src/BpkOverlay.module.scss +41 -0
- package/bpk-component-pagination/README.md +59 -0
- package/bpk-component-pagination/index.js +6 -21
- package/bpk-component-pagination/package.json +28 -0
- package/bpk-component-pagination/src/BpkPagination.js +70 -69
- package/bpk-component-pagination/src/BpkPagination.module.css +18 -0
- package/bpk-component-pagination/src/BpkPagination.module.scss +22 -0
- package/bpk-component-pagination/src/BpkPaginationBreak.js +12 -22
- package/bpk-component-pagination/src/BpkPaginationList.js +66 -64
- package/bpk-component-pagination/src/BpkPaginationList.module.css +18 -0
- package/bpk-component-pagination/src/BpkPaginationList.module.scss +45 -0
- package/bpk-component-pagination/src/BpkPaginationNudger.js +51 -61
- package/bpk-component-pagination/src/BpkPaginationNudger.module.css +18 -0
- package/bpk-component-pagination/src/BpkPaginationNudger.module.scss +74 -0
- package/bpk-component-pagination/src/BpkPaginationPage.js +30 -45
- package/bpk-component-pagination/src/BpkPaginationPage.module.css +18 -0
- package/bpk-component-pagination/src/BpkPaginationPage.module.scss +92 -0
- package/bpk-component-pagination/src/themeAttributes.js +9 -11
- package/bpk-component-panel/README.md +33 -0
- package/bpk-component-panel/index.js +4 -13
- package/bpk-component-panel/package.json +24 -0
- package/bpk-component-panel/src/BpkPanel.js +41 -52
- package/bpk-component-panel/src/BpkPanel.module.css +18 -0
- package/bpk-component-panel/src/BpkPanel.module.scss +31 -0
- package/bpk-component-phone-input/README.md +100 -0
- package/bpk-component-phone-input/index.js +9 -13
- package/bpk-component-phone-input/package.json +33 -0
- package/bpk-component-phone-input/src/BpkPhoneInput.js +156 -122
- package/bpk-component-phone-input/src/BpkPhoneInput.module.css +18 -0
- package/bpk-component-phone-input/src/BpkPhoneInput.module.scss +42 -0
- package/bpk-component-popover/README.md +140 -0
- package/bpk-component-popover/index.js +17 -37
- package/bpk-component-popover/package.json +35 -0
- package/bpk-component-popover/src/BpkPopover.js +146 -122
- package/bpk-component-popover/src/BpkPopover.module.css +18 -0
- package/bpk-component-popover/src/BpkPopover.module.scss +128 -0
- package/bpk-component-popover/src/BpkPopoverPortal.js +162 -166
- package/bpk-component-popover/src/constants.js +6 -13
- package/bpk-component-popover/src/keyboardFocusScope.js +15 -26
- package/bpk-component-popover/src/themeAttributes.js +6 -11
- package/bpk-component-price/README.md +37 -0
- package/bpk-component-price/index.js +7 -27
- package/bpk-component-price/package.json +24 -0
- package/bpk-component-price/src/BpkPrice.js +99 -83
- package/bpk-component-price/src/BpkPrice.module.scss +61 -0
- package/bpk-component-price/src/common-types.js +8 -13
- package/bpk-component-progress/README.md +56 -0
- package/bpk-component-progress/index.js +8 -21
- package/bpk-component-progress/package.json +30 -0
- package/bpk-component-progress/src/BpkProgress.js +114 -129
- package/bpk-component-progress/src/BpkProgress.module.css +18 -0
- package/bpk-component-progress/src/BpkProgress.module.scss +64 -0
- package/bpk-component-progress/src/themeAttributes.js +4 -9
- package/bpk-component-radio/README.md +43 -0
- package/bpk-component-radio/index.js +8 -21
- package/bpk-component-radio/package.json +28 -0
- package/bpk-component-radio/src/BpkRadio.js +77 -64
- package/bpk-component-radio/src/BpkRadio.module.css +18 -0
- package/bpk-component-radio/src/BpkRadio.module.scss +78 -0
- package/bpk-component-radio/src/themeAttributes.js +4 -9
- package/bpk-component-rating/README.md +80 -0
- package/bpk-component-rating/index.js +7 -27
- package/bpk-component-rating/package.json +29 -0
- package/bpk-component-rating/src/BpkRating.js +128 -110
- package/bpk-component-rating/src/BpkRating.module.css +18 -0
- package/bpk-component-rating/src/BpkRating.module.scss +86 -0
- package/bpk-component-rating/src/common-types.js +7 -15
- package/bpk-component-rtl-toggle/README.md +26 -0
- package/bpk-component-rtl-toggle/index.js +6 -21
- package/bpk-component-rtl-toggle/package.json +24 -0
- package/bpk-component-rtl-toggle/src/BpkRtlToggle.js +65 -54
- package/bpk-component-rtl-toggle/src/updateOnDirectionChange.js +46 -36
- package/bpk-component-rtl-toggle/src/utils.js +6 -12
- package/bpk-component-scrollable-calendar/README.md +102 -0
- package/bpk-component-scrollable-calendar/index.js +17 -45
- package/bpk-component-scrollable-calendar/package.json +32 -0
- package/bpk-component-scrollable-calendar/src/BpkScrollableCalendar.js +18 -17
- package/bpk-component-scrollable-calendar/src/BpkScrollableCalendarDate.js +37 -46
- package/bpk-component-scrollable-calendar/src/BpkScrollableCalendarGrid.js +48 -59
- package/bpk-component-scrollable-calendar/src/BpkScrollableCalendarGrid.module.css +18 -0
- package/bpk-component-scrollable-calendar/src/BpkScrollableCalendarGrid.module.scss +31 -0
- package/bpk-component-scrollable-calendar/src/BpkScrollableCalendarGridList.js +128 -115
- package/bpk-component-scrollable-calendar/src/BpkScrollableCalendarGridList.module.css +18 -0
- package/bpk-component-scrollable-calendar/src/BpkScrollableCalendarGridList.module.scss +37 -0
- package/bpk-component-scrollable-calendar/src/utils.js +5 -13
- package/bpk-component-scrollable-calendar/test-utils.js +244 -211
- package/bpk-component-section-list/README.md +52 -0
- package/bpk-component-section-list/index.js +9 -29
- package/bpk-component-section-list/package.json +30 -0
- package/bpk-component-section-list/src/BpkSectionList.js +32 -27
- package/bpk-component-section-list/src/BpkSectionListItem.js +84 -74
- package/bpk-component-section-list/src/BpkSectionListItem.module.css +18 -0
- package/bpk-component-section-list/src/BpkSectionListItem.module.scss +54 -0
- package/bpk-component-section-list/src/BpkSectionListSection.js +56 -52
- package/bpk-component-section-list/src/BpkSectionListSection.module.css +18 -0
- package/bpk-component-section-list/src/BpkSectionListSection.module.scss +35 -0
- package/bpk-component-select/README.md +47 -0
- package/bpk-component-select/index.js +9 -21
- package/bpk-component-select/package.json +27 -0
- package/bpk-component-select/src/BpkSelect.js +98 -76
- package/bpk-component-select/src/BpkSelect.module.css +18 -0
- package/bpk-component-select/src/BpkSelect.module.scss +126 -0
- package/bpk-component-select/src/themeAttributes.js +2 -9
- package/bpk-component-skip-link/README.md +30 -0
- package/bpk-component-skip-link/index.js +8 -21
- package/bpk-component-skip-link/package.json +24 -0
- package/bpk-component-skip-link/src/BpkSkipLink.js +47 -45
- package/bpk-component-skip-link/src/BpkSkipLink.module.css +18 -0
- package/bpk-component-skip-link/src/BpkSkipLink.module.scss +50 -0
- package/bpk-component-skip-link/src/themeAttributes.js +2 -9
- package/bpk-component-slider/README.md +43 -0
- package/bpk-component-slider/index.js +6 -21
- package/bpk-component-slider/package.json +29 -0
- package/bpk-component-slider/src/BpkSlider.js +48 -60
- package/bpk-component-slider/src/BpkSlider.module.css +18 -0
- package/bpk-component-slider/src/BpkSlider.module.scss +103 -0
- package/bpk-component-slider/src/themeAttributes.js +2 -9
- package/bpk-component-spinner/README.md +40 -0
- package/bpk-component-spinner/changelog.yml +55 -0
- package/bpk-component-spinner/index.js +30 -44
- package/bpk-component-spinner/package.json +25 -0
- package/bpk-component-spinner/src/BpkExtraLargeSpinner.js +49 -109
- package/bpk-component-spinner/src/BpkLargeSpinner.js +52 -110
- package/bpk-component-spinner/src/BpkSpinner.js +51 -154
- package/bpk-component-spinner/src/BpkSpinner.module.css +18 -0
- package/bpk-component-spinner/src/BpkSpinner.module.scss +57 -0
- package/bpk-component-spinner/src/spinnerTypes.js +5 -10
- package/bpk-component-spinner/src/themeAttributes.js +4 -9
- package/bpk-component-split-input/README.md +42 -0
- package/bpk-component-split-input/index.js +10 -21
- package/bpk-component-split-input/package.json +24 -0
- package/bpk-component-split-input/src/BpkInputField.js +55 -72
- package/bpk-component-split-input/src/BpkInputField.module.scss +34 -0
- package/bpk-component-split-input/src/BpkSplitInput.js +219 -246
- package/bpk-component-split-input/src/BpkSplitInput.module.css +18 -0
- package/bpk-component-split-input/src/BpkSplitInput.module.scss +36 -0
- package/bpk-component-star-rating/README.md +99 -0
- package/bpk-component-star-rating/index.js +21 -75
- package/bpk-component-star-rating/package.json +29 -0
- package/bpk-component-star-rating/src/BpkInteractiveStar.js +69 -62
- package/bpk-component-star-rating/src/BpkInteractiveStar.module.css +18 -0
- package/bpk-component-star-rating/src/BpkInteractiveStar.module.scss +66 -0
- package/bpk-component-star-rating/src/BpkInteractiveStarRating.js +83 -68
- package/bpk-component-star-rating/src/BpkStar.js +88 -93
- package/bpk-component-star-rating/src/BpkStar.module.css +18 -0
- package/bpk-component-star-rating/src/BpkStar.module.scss +63 -0
- package/bpk-component-star-rating/src/BpkStarRating.js +88 -69
- package/bpk-component-star-rating/src/BpkStarRating.module.css +18 -0
- package/bpk-component-star-rating/src/BpkStarRating.module.scss +21 -0
- package/bpk-component-star-rating/src/themeAttributes.js +4 -9
- package/bpk-component-star-rating/src/withInteractiveStarRatingState.js +82 -71
- package/bpk-component-switch/README.md +37 -0
- package/bpk-component-switch/index.js +11 -31
- package/bpk-component-switch/package.json +24 -0
- package/bpk-component-switch/src/BpkSwitch.js +64 -60
- package/bpk-component-switch/src/BpkSwitch.module.css +18 -0
- package/bpk-component-switch/src/BpkSwitch.module.scss +93 -0
- package/bpk-component-switch/src/themeAttributes.js +2 -9
- package/bpk-component-table/README.md +66 -0
- package/bpk-component-table/index.js +35 -55
- package/bpk-component-table/package.json +24 -0
- package/bpk-component-table/src/BpkTable.js +50 -49
- package/bpk-component-table/src/BpkTable.module.css +18 -0
- package/bpk-component-table/src/BpkTable.module.scss +39 -0
- package/bpk-component-table/src/BpkTableBody.js +12 -17
- package/bpk-component-table/src/BpkTableCell.js +43 -45
- package/bpk-component-table/src/BpkTableHead.js +12 -17
- package/bpk-component-table/src/BpkTableHeadCell.js +47 -50
- package/bpk-component-table/src/BpkTableRow.js +12 -17
- package/bpk-component-text/README.md +76 -0
- package/bpk-component-text/index.js +7 -27
- package/bpk-component-text/package.json +24 -0
- package/bpk-component-text/src/BpkText.js +88 -83
- package/bpk-component-text/src/BpkText.module.css +18 -0
- package/bpk-component-text/src/BpkText.module.scss +139 -0
- package/bpk-component-textarea/README.md +34 -0
- package/bpk-component-textarea/index.js +8 -21
- package/bpk-component-textarea/package.json +28 -0
- package/bpk-component-textarea/src/BpkTextarea.js +55 -47
- package/bpk-component-textarea/src/BpkTextarea.module.css +18 -0
- package/bpk-component-textarea/src/BpkTextarea.module.scss +33 -0
- package/bpk-component-textarea/src/themeAttributes.js +4 -9
- package/bpk-component-theme-toggle/README.md +30 -0
- package/bpk-component-theme-toggle/index.js +6 -21
- package/bpk-component-theme-toggle/package.json +27 -0
- package/bpk-component-theme-toggle/src/BpkThemeToggle.js +90 -96
- package/bpk-component-theme-toggle/src/BpkThemeToggle.module.css +18 -0
- package/bpk-component-theme-toggle/src/BpkThemeToggle.module.scss +25 -0
- package/bpk-component-theme-toggle/src/theming.js +99 -57
- package/bpk-component-theme-toggle/src/updateOnThemeChange.js +52 -49
- package/bpk-component-theme-toggle/src/utils.js +3 -10
- package/bpk-component-ticket/README.md +37 -0
- package/bpk-component-ticket/index.js +6 -13
- package/bpk-component-ticket/package.json +28 -0
- package/bpk-component-ticket/src/BpkTicket.js +116 -92
- package/bpk-component-ticket/src/BpkTicket.module.css +18 -0
- package/bpk-component-ticket/src/BpkTicket.module.scss +145 -0
- package/bpk-component-tooltip/README.md +67 -0
- package/bpk-component-tooltip/index.js +10 -21
- package/bpk-component-tooltip/package.json +29 -0
- package/bpk-component-tooltip/src/BpkTooltip.js +93 -86
- package/bpk-component-tooltip/src/BpkTooltip.module.css +18 -0
- package/bpk-component-tooltip/src/BpkTooltip.module.scss +148 -0
- package/bpk-component-tooltip/src/BpkTooltipPortal.js +167 -146
- package/bpk-component-tooltip/src/constants.js +8 -17
- package/bpk-react-utils/README.md +251 -0
- package/bpk-react-utils/index.js +39 -97
- package/bpk-react-utils/package.json +25 -0
- package/bpk-react-utils/src/Portal.js +98 -88
- package/bpk-react-utils/src/TransitionInitialMount.js +36 -38
- package/bpk-react-utils/src/cssModules.js +10 -15
- package/bpk-react-utils/src/deprecated.js +19 -19
- package/bpk-react-utils/src/deviceDetection.js +8 -12
- package/bpk-react-utils/src/isRTL.js +12 -11
- package/bpk-react-utils/src/withDefaultProps.js +53 -45
- package/bpk-react-utils/src/wrapDisplayName.js +2 -9
- package/bpk-scrim-utils/README.md +50 -0
- package/bpk-scrim-utils/index.js +6 -20
- package/bpk-scrim-utils/package.json +25 -0
- package/bpk-scrim-utils/src/BpkScrim.js +28 -39
- package/bpk-scrim-utils/src/bpk-scrim-content.module.css +18 -0
- package/bpk-scrim-utils/src/bpk-scrim-content.module.scss +32 -0
- package/bpk-scrim-utils/src/bpk-scrim.module.css +18 -0
- package/bpk-scrim-utils/src/bpk-scrim.module.scss +51 -0
- package/bpk-scrim-utils/src/customPropTypes.js +15 -12
- package/bpk-scrim-utils/src/scroll-utils.js +16 -27
- package/bpk-scrim-utils/src/withScrim.js +103 -121
- package/bpk-theming/README.md +43 -0
- package/bpk-theming/index.js +4 -13
- package/bpk-theming/package.json +23 -0
- package/bpk-theming/src/BpkThemeProvider.js +63 -82
- package/package.json +1 -2
- package/bpk-animate-height/index.css +0 -0
- package/bpk-component-accordion/index.css +0 -30
- package/bpk-component-aria-live/index.css +0 -5
- package/bpk-component-autosuggest/index.css +0 -41
- package/bpk-component-badge/index.css +0 -29
- package/bpk-component-banner-alert/index.css +0 -66
- package/bpk-component-barchart/d3-array/src/array.js +0 -11
- package/bpk-component-barchart/d3-array/src/ascending.js +0 -10
- package/bpk-component-barchart/d3-array/src/bin.js +0 -122
- package/bpk-component-barchart/d3-array/src/bisect.js +0 -24
- package/bpk-component-barchart/d3-array/src/bisector.js +0 -61
- package/bpk-component-barchart/d3-array/src/constant.js +0 -10
- package/bpk-component-barchart/d3-array/src/count.js +0 -28
- package/bpk-component-barchart/d3-array/src/cross.js +0 -42
- package/bpk-component-barchart/d3-array/src/cumsum.js +0 -12
- package/bpk-component-barchart/d3-array/src/descending.js +0 -10
- package/bpk-component-barchart/d3-array/src/deviation.js +0 -15
- package/bpk-component-barchart/d3-array/src/difference.js +0 -20
- package/bpk-component-barchart/d3-array/src/disjoint.js +0 -29
- package/bpk-component-barchart/d3-array/src/every.js +0 -19
- package/bpk-component-barchart/d3-array/src/extent.js +0 -39
- package/bpk-component-barchart/d3-array/src/filter.js +0 -20
- package/bpk-component-barchart/d3-array/src/fsum.js +0 -93
- package/bpk-component-barchart/d3-array/src/greatest.js +0 -38
- package/bpk-component-barchart/d3-array/src/greatestIndex.js +0 -30
- package/bpk-component-barchart/d3-array/src/group.js +0 -85
- package/bpk-component-barchart/d3-array/src/groupSort.js +0 -22
- package/bpk-component-barchart/d3-array/src/identity.js +0 -10
- package/bpk-component-barchart/d3-array/src/index.js +0 -567
- package/bpk-component-barchart/d3-array/src/intersection.js +0 -28
- package/bpk-component-barchart/d3-array/src/least.js +0 -38
- package/bpk-component-barchart/d3-array/src/leastIndex.js +0 -30
- package/bpk-component-barchart/d3-array/src/map.js +0 -12
- package/bpk-component-barchart/d3-array/src/max.js +0 -28
- package/bpk-component-barchart/d3-array/src/maxIndex.js +0 -30
- package/bpk-component-barchart/d3-array/src/mean.js +0 -29
- package/bpk-component-barchart/d3-array/src/median.js +0 -14
- package/bpk-component-barchart/d3-array/src/merge.js +0 -16
- package/bpk-component-barchart/d3-array/src/min.js +0 -28
- package/bpk-component-barchart/d3-array/src/minIndex.js +0 -30
- package/bpk-component-barchart/d3-array/src/mode.js +0 -40
- package/bpk-component-barchart/d3-array/src/nice.js +0 -28
- package/bpk-component-barchart/d3-array/src/number.js +0 -29
- package/bpk-component-barchart/d3-array/src/pairs.js +0 -25
- package/bpk-component-barchart/d3-array/src/permute.js +0 -10
- package/bpk-component-barchart/d3-array/src/quantile.js +0 -46
- package/bpk-component-barchart/d3-array/src/quickselect.js +0 -53
- package/bpk-component-barchart/d3-array/src/range.js +0 -19
- package/bpk-component-barchart/d3-array/src/rank.js +0 -34
- package/bpk-component-barchart/d3-array/src/reduce.js +0 -32
- package/bpk-component-barchart/d3-array/src/reverse.js +0 -11
- package/bpk-component-barchart/d3-array/src/scan.js +0 -15
- package/bpk-component-barchart/d3-array/src/shuffle.js +0 -26
- package/bpk-component-barchart/d3-array/src/some.js +0 -19
- package/bpk-component-barchart/d3-array/src/sort.js +0 -55
- package/bpk-component-barchart/d3-array/src/subset.js +0 -14
- package/bpk-component-barchart/d3-array/src/sum.js +0 -28
- package/bpk-component-barchart/d3-array/src/superset.js +0 -33
- package/bpk-component-barchart/d3-array/src/threshold/freedmanDiaconis.js +0 -16
- package/bpk-component-barchart/d3-array/src/threshold/scott.js +0 -16
- package/bpk-component-barchart/d3-array/src/threshold/sturges.js +0 -14
- package/bpk-component-barchart/d3-array/src/ticks.js +0 -60
- package/bpk-component-barchart/d3-array/src/transpose.js +0 -26
- package/bpk-component-barchart/d3-array/src/union.js +0 -20
- package/bpk-component-barchart/d3-array/src/variance.js +0 -35
- package/bpk-component-barchart/d3-array/src/zip.js +0 -14
- package/bpk-component-barchart/d3-color/src/color.js +0 -368
- package/bpk-component-barchart/d3-color/src/cubehelix.js +0 -71
- package/bpk-component-barchart/d3-color/src/define.js +0 -20
- package/bpk-component-barchart/d3-color/src/index.js +0 -65
- package/bpk-component-barchart/d3-color/src/lab.js +0 -140
- package/bpk-component-barchart/d3-color/src/math.js +0 -10
- package/bpk-component-barchart/d3-format/src/defaultLocale.js +0 -29
- package/bpk-component-barchart/d3-format/src/exponent.js +0 -12
- package/bpk-component-barchart/d3-format/src/formatDecimal.js +0 -24
- package/bpk-component-barchart/d3-format/src/formatGroup.js +0 -25
- package/bpk-component-barchart/d3-format/src/formatNumerals.js +0 -14
- package/bpk-component-barchart/d3-format/src/formatPrefixAuto.js +0 -22
- package/bpk-component-barchart/d3-format/src/formatRounded.js +0 -16
- package/bpk-component-barchart/d3-format/src/formatSpecifier.js +0 -45
- package/bpk-component-barchart/d3-format/src/formatTrim.js +0 -29
- package/bpk-component-barchart/d3-format/src/formatTypes.js +0 -31
- package/bpk-component-barchart/d3-format/src/identity.js +0 -10
- package/bpk-component-barchart/d3-format/src/index.js +0 -77
- package/bpk-component-barchart/d3-format/src/locale.js +0 -159
- package/bpk-component-barchart/d3-format/src/precisionFixed.js +0 -14
- package/bpk-component-barchart/d3-format/src/precisionPrefix.js +0 -14
- package/bpk-component-barchart/d3-format/src/precisionRound.js +0 -15
- package/bpk-component-barchart/d3-interpolate/src/array.js +0 -39
- package/bpk-component-barchart/d3-interpolate/src/basis.js +0 -25
- package/bpk-component-barchart/d3-interpolate/src/basisClosed.js +0 -20
- package/bpk-component-barchart/d3-interpolate/src/color.js +0 -40
- package/bpk-component-barchart/d3-interpolate/src/constant.js +0 -10
- package/bpk-component-barchart/d3-interpolate/src/cubehelix.js +0 -43
- package/bpk-component-barchart/d3-interpolate/src/date.js +0 -13
- package/bpk-component-barchart/d3-interpolate/src/discrete.js +0 -13
- package/bpk-component-barchart/d3-interpolate/src/hcl.js +0 -36
- package/bpk-component-barchart/d3-interpolate/src/hsl.js +0 -36
- package/bpk-component-barchart/d3-interpolate/src/hue.js +0 -16
- package/bpk-component-barchart/d3-interpolate/src/index.js +0 -215
- package/bpk-component-barchart/d3-interpolate/src/lab.js +0 -26
- package/bpk-component-barchart/d3-interpolate/src/number.js +0 -12
- package/bpk-component-barchart/d3-interpolate/src/numberArray.js +0 -23
- package/bpk-component-barchart/d3-interpolate/src/object.js +0 -32
- package/bpk-component-barchart/d3-interpolate/src/piecewise.js +0 -25
- package/bpk-component-barchart/d3-interpolate/src/quantize.js +0 -14
- package/bpk-component-barchart/d3-interpolate/src/rgb.js +0 -77
- package/bpk-component-barchart/d3-interpolate/src/round.js +0 -12
- package/bpk-component-barchart/d3-interpolate/src/string.js +0 -83
- package/bpk-component-barchart/d3-interpolate/src/transform/decompose.js +0 -33
- package/bpk-component-barchart/d3-interpolate/src/transform/index.js +0 -100
- package/bpk-component-barchart/d3-interpolate/src/transform/parse.js +0 -30
- package/bpk-component-barchart/d3-interpolate/src/value.js +0 -36
- package/bpk-component-barchart/d3-interpolate/src/zoom.js +0 -75
- package/bpk-component-barchart/d3-scale/src/band.js +0 -109
- package/bpk-component-barchart/d3-scale/src/colors.js +0 -12
- package/bpk-component-barchart/d3-scale/src/constant.js +0 -12
- package/bpk-component-barchart/d3-scale/src/continuous.js +0 -140
- package/bpk-component-barchart/d3-scale/src/diverging.js +0 -121
- package/bpk-component-barchart/d3-scale/src/identity.js +0 -37
- package/bpk-component-barchart/d3-scale/src/index.js +0 -213
- package/bpk-component-barchart/d3-scale/src/init.js +0 -46
- package/bpk-component-barchart/d3-scale/src/linear.js +0 -88
- package/bpk-component-barchart/d3-scale/src/log.js +0 -156
- package/bpk-component-barchart/d3-scale/src/nice.js +0 -24
- package/bpk-component-barchart/d3-scale/src/number.js +0 -10
- package/bpk-component-barchart/d3-scale/src/ordinal.js +0 -60
- package/bpk-component-barchart/d3-scale/src/pow.js +0 -59
- package/bpk-component-barchart/d3-scale/src/quantile.js +0 -64
- package/bpk-component-barchart/d3-scale/src/quantize.js +0 -61
- package/bpk-component-barchart/d3-scale/src/radial.js +0 -72
- package/bpk-component-barchart/d3-scale/src/sequential.js +0 -120
- package/bpk-component-barchart/d3-scale/src/sequentialQuantile.js +0 -51
- package/bpk-component-barchart/d3-scale/src/symlog.js +0 -46
- package/bpk-component-barchart/d3-scale/src/threshold.js +0 -44
- package/bpk-component-barchart/d3-scale/src/tickFormat.js +0 -44
- package/bpk-component-barchart/d3-scale/src/time.js +0 -82
- package/bpk-component-barchart/d3-scale/src/utcTime.js +0 -18
- package/bpk-component-barchart/d3-time/src/day.js +0 -18
- package/bpk-component-barchart/d3-time/src/duration.js +0 -20
- package/bpk-component-barchart/d3-time/src/hour.js +0 -26
- package/bpk-component-barchart/d3-time/src/index.js +0 -433
- package/bpk-component-barchart/d3-time/src/interval.js +0 -79
- package/bpk-component-barchart/d3-time/src/millisecond.js +0 -35
- package/bpk-component-barchart/d3-time/src/minute.js +0 -26
- package/bpk-component-barchart/d3-time/src/month.js +0 -25
- package/bpk-component-barchart/d3-time/src/second.js +0 -26
- package/bpk-component-barchart/d3-time/src/ticks.js +0 -71
- package/bpk-component-barchart/d3-time/src/utcDay.js +0 -26
- package/bpk-component-barchart/d3-time/src/utcHour.js +0 -26
- package/bpk-component-barchart/d3-time/src/utcMinute.js +0 -26
- package/bpk-component-barchart/d3-time/src/utcMonth.js +0 -25
- package/bpk-component-barchart/d3-time/src/utcWeek.js +0 -52
- package/bpk-component-barchart/d3-time/src/utcYear.js +0 -36
- package/bpk-component-barchart/d3-time/src/week.js +0 -52
- package/bpk-component-barchart/d3-time/src/year.js +0 -36
- package/bpk-component-barchart/d3-time-format/src/defaultLocale.js +0 -40
- package/bpk-component-barchart/d3-time-format/src/index.js +0 -67
- package/bpk-component-barchart/d3-time-format/src/isoFormat.js +0 -19
- package/bpk-component-barchart/d3-time-format/src/isoParse.js +0 -19
- package/bpk-component-barchart/d3-time-format/src/locale.js +0 -713
- package/bpk-component-barchart/index.css +0 -43
- package/bpk-component-barchart/internmap/src/index.js +0 -111
- package/bpk-component-blockquote/index.css +0 -11
- package/bpk-component-boilerplate/index.css +0 -5
- package/bpk-component-boilerplate/src/BpkBoilerplate.js +0 -53
- package/bpk-component-breadcrumb/index.css +0 -16
- package/bpk-component-breakpoint/index.css +0 -0
- package/bpk-component-button/index.css +0 -178
- package/bpk-component-calendar/index.css +0 -136
- package/bpk-component-card/index.css +0 -17
- package/bpk-component-checkbox/index.css +0 -43
- package/bpk-component-chip/index.css +0 -63
- package/bpk-component-close-button/index.css +0 -15
- package/bpk-component-code/index.css +0 -20
- package/bpk-component-content-container/index.css +0 -77
- package/bpk-component-datatable/index.css +0 -40
- package/bpk-component-datepicker/index.css +0 -7
- package/bpk-component-description-list/index.css +0 -11
- package/bpk-component-dialog/index.css +0 -36
- package/bpk-component-drawer/index.css +0 -36
- package/bpk-component-fieldset/index.css +0 -9
- package/bpk-component-flare/gulpfile.js +0 -59
- package/bpk-component-flare/index.css +0 -32
- package/bpk-component-flare/tasks/svg2react.js +0 -73
- package/bpk-component-floating-notification/index.css +0 -29
- package/bpk-component-form-validation/index.css +0 -15
- package/bpk-component-graphic-promotion/index.css +0 -91
- package/bpk-component-graphic-promotion/index.js +0 -38
- package/bpk-component-graphic-promotion/src/BpkGraphicPromo.js +0 -208
- package/bpk-component-grid/index.css +0 -217
- package/bpk-component-grid-toggle/index.css +0 -9
- package/bpk-component-horizontal-nav/index.css +0 -58
- package/bpk-component-icon/gulpfile.babel.js +0 -38
- package/bpk-component-icon/index.css +0 -14
- package/bpk-component-image/index.css +0 -58
- package/bpk-component-infinite-scroll/index.css +0 -5
- package/bpk-component-input/index.css +0 -104
- package/bpk-component-label/index.css +0 -13
- package/bpk-component-link/index.css +0 -29
- package/bpk-component-list/index.css +0 -11
- package/bpk-component-loading-button/index.css +0 -17
- package/bpk-component-map/index.css +0 -63
- package/bpk-component-mobile-scroll-container/index.css +0 -17
- package/bpk-component-modal/index.css +0 -46
- package/bpk-component-navigation-bar/index.css +0 -43
- package/bpk-component-nudger/index.css +0 -11
- package/bpk-component-overlay/index.css +0 -11
- package/bpk-component-pagination/index.css +0 -52
- package/bpk-component-panel/index.css +0 -9
- package/bpk-component-phone-input/index.css +0 -11
- package/bpk-component-popover/index.css +0 -41
- package/bpk-component-price/index.css +0 -21
- package/bpk-component-progress/index.css +0 -13
- package/bpk-component-radio/index.css +0 -35
- package/bpk-component-rating/index.css +0 -27
- package/bpk-component-rtl-toggle/index.css +0 -0
- package/bpk-component-scrollable-calendar/index.css +0 -14
- package/bpk-component-section-list/index.css +0 -20
- package/bpk-component-select/index.css +0 -69
- package/bpk-component-skip-link/index.css +0 -7
- package/bpk-component-slider/index.css +0 -25
- package/bpk-component-spinner/index.css +0 -19
- package/bpk-component-split-input/index.css +0 -16
- package/bpk-component-star-rating/index.css +0 -41
- package/bpk-component-switch/index.css +0 -19
- package/bpk-component-table/index.css +0 -17
- package/bpk-component-text/index.css +0 -63
- package/bpk-component-textarea/index.css +0 -23
- package/bpk-component-theme-toggle/index.css +0 -5
- package/bpk-component-ticket/index.css +0 -55
- package/bpk-component-tooltip/index.css +0 -47
- package/bpk-react-utils/index.css +0 -0
- package/bpk-scrim-utils/index.css +0 -18
- package/bpk-storybook-utils/index.css +0 -7
- package/bpk-storybook-utils/index.js +0 -47
- package/bpk-storybook-utils/src/BpkDarkExampleWrapper.js +0 -49
- package/bpk-theming/index.css +0 -0
|
@@ -1,104 +0,0 @@
|
|
|
1
|
-
/* imported from BpkClearButton.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkClearButton-module__bpk-keyframe-spin___1eMLa{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkClearButton-module__bpk-clear-button___3Rj7w{padding:0;border:0;background-color:transparent;color:#68697f;cursor:pointer;appearance:none}
|
|
6
|
-
|
|
7
|
-
.BpkClearButton-module__bpk-no-touch-support___3qNQ0 .BpkClearButton-module__bpk-clear-button___3Rj7w:hover:not(:active):not(:disabled){color:#444560}
|
|
8
|
-
|
|
9
|
-
.bpk-no-touch-support .BpkClearButton-module__bpk-clear-button___3Rj7w:hover:not(:active):not(:disabled){color:#444560}
|
|
10
|
-
|
|
11
|
-
.BpkClearButton-module__bpk-clear-button___3Rj7w:active{color:#111236}
|
|
12
|
-
|
|
13
|
-
.BpkClearButton-module__bpk-clear-button__icon___3kxNy{fill:currentColor}
|
|
14
|
-
/* imported from BpkInput.module.scss */
|
|
15
|
-
|
|
16
|
-
@keyframes BpkInput-module__bpk-keyframe-spin___K_ATH{100%{transform:rotate(1turn)}}
|
|
17
|
-
|
|
18
|
-
.BpkInput-module__bpk-input___hv6Kg{display:inline-block;width:100%;height:2.25rem;padding:.5rem .5rem;border:solid 0.0625rem #B2B2BF;border-radius:.25rem;background:#fff;color:#111236;appearance:none}
|
|
19
|
-
|
|
20
|
-
.BpkInput-module__bpk-input___hv6Kg::placeholder{color:#68697f}
|
|
21
|
-
|
|
22
|
-
.BpkInput-module__bpk-input___hv6Kg:disabled{border-color:#f1f2f8;background:#fff;color:#b2b2bf;cursor:not-allowed}
|
|
23
|
-
|
|
24
|
-
.BpkInput-module__bpk-input___hv6Kg[type='number']{-moz-appearance:textfield}
|
|
25
|
-
|
|
26
|
-
.BpkInput-module__bpk-input___hv6Kg[type='number']::-webkit-inner-spin-button,.BpkInput-module__bpk-input___hv6Kg[type='number']::-webkit-outer-spin-button{appearance:none}
|
|
27
|
-
|
|
28
|
-
html[dir='rtl'] .BpkInput-module__bpk-input___hv6Kg[type='number'],html[dir='rtl'] .BpkInput-module__bpk-input___hv6Kg[type='tel'],html[dir='rtl'] .BpkInput-module__bpk-input___hv6Kg[type='email']{text-align:right;direction:ltr}
|
|
29
|
-
|
|
30
|
-
.BpkInput-module__bpk-input___hv6Kg::-ms-clear{display:none}
|
|
31
|
-
|
|
32
|
-
.BpkInput-module__bpk-input__container___1lLtW{position:relative;display:inline-block;width:100%}
|
|
33
|
-
|
|
34
|
-
.BpkInput-module__bpk-input__clear-button___sQlxO{display:none;position:absolute;right:0.5rem;height:2.25rem}
|
|
35
|
-
|
|
36
|
-
html[dir='rtl'] .BpkInput-module__bpk-input__clear-button___sQlxO{right:inherit;left:0.5rem}
|
|
37
|
-
|
|
38
|
-
.BpkInput-module__bpk-input__clear-button--large___2Bp-p{right:1rem;height:3rem}
|
|
39
|
-
|
|
40
|
-
html[dir='rtl'] .BpkInput-module__bpk-input__clear-button--large___2Bp-p{left:1rem}
|
|
41
|
-
|
|
42
|
-
.BpkInput-module__bpk-input__clear-button--persistent___2aiRE{display:inherit}
|
|
43
|
-
|
|
44
|
-
.BpkInput-module__bpk-input--valid___Rguzq{padding-right:2rem;background:#fff url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE4IiBoZWlnaHQ9IjE4Ij48c3R5bGUgdHlwZT0idGV4dC9jc3MiPmNpcmNsZSwgZWxsaXBzZSwgbGluZSwgcGF0aCwgcG9seWdvbiwgcG9seWxpbmUsIHJlY3QsIHRleHQgeyBmaWxsOiAjMDBhNjk4ICFpbXBvcnRhbnQgfTwvc3R5bGU+PHBhdGggZD0iTTEyIDIyLjVDNi4yMDEgMjIuNSAxLjUgMTcuNzk5IDEuNSAxMlM2LjIwMSAxLjUgMTIgMS41IDIyLjUgNi4yMDEgMjIuNSAxMiAxNy43OTkgMjIuNSAxMiAyMi41em01LjU2LTEyLjQ0YTEuNSAxLjUgMCAwIDAtMi4xMi0yLjEybC00Ljk0IDQuOTM5LTEuOTQtMS45NGExLjUgMS41IDAgMCAwLTIuMTIgMi4xMjJsMyAzYTEuNSAxLjUgMCAwIDAgMi4xMiAwbDYtNnoiLz48L3N2Zz4=") no-repeat right 0.5rem center;background-size:1.125rem 1.125rem}
|
|
45
|
-
|
|
46
|
-
html[dir='rtl'] .BpkInput-module__bpk-input--valid___Rguzq{padding-right:.5rem;padding-left:2rem;background-position:left 0.5rem center}
|
|
47
|
-
|
|
48
|
-
.BpkInput-module__bpk-input--invalid___1BMyc{padding-right:2rem;background:#fff url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE4IiBoZWlnaHQ9IjE4Ij48c3R5bGUgdHlwZT0idGV4dC9jc3MiPmNpcmNsZSwgZWxsaXBzZSwgbGluZSwgcGF0aCwgcG9seWdvbiwgcG9seWxpbmUsIHJlY3QsIHRleHQgeyBmaWxsOiAjZDE0MzViICFpbXBvcnRhbnQgfTwvc3R5bGU+PHBhdGggZD0iTTEyIDEuNUExMC41IDEwLjUgMCAxIDAgMjIuNSAxMiAxMC41IDEwLjUgMCAwIDAgMTIgMS41ek0xMiAxOGExLjUgMS41IDAgMSAxIDEuNS0xLjVBMS41IDEuNSAwIDAgMSAxMiAxOHptMS41LTZhMS41IDEuNSAwIDAgMS0zIDBWNy41YTEuNSAxLjUgMCAwIDEgMyAweiIvPjwvc3ZnPg==") no-repeat right 0.5rem center;background-size:1.125rem 1.125rem;border-color:#d1435b;border-color:var(--bpk-input-invalid-border-color, #d1435b)}
|
|
49
|
-
|
|
50
|
-
html[dir='rtl'] .BpkInput-module__bpk-input--invalid___1BMyc{padding-right:.5rem;padding-left:2rem;background-position:left 0.5rem center}
|
|
51
|
-
|
|
52
|
-
.BpkInput-module__bpk-input--clearable___zhqMz{padding-right:2rem}
|
|
53
|
-
|
|
54
|
-
html[dir='rtl'] .BpkInput-module__bpk-input--clearable___zhqMz{padding-right:.5rem;padding-left:2rem}
|
|
55
|
-
|
|
56
|
-
.BpkInput-module__bpk-input--clearable___zhqMz:focus{background:#fff}
|
|
57
|
-
|
|
58
|
-
.BpkInput-module__bpk-input--clearable___zhqMz:focus+.BpkInput-module__bpk-input__clear-button___sQlxO{display:inherit}
|
|
59
|
-
|
|
60
|
-
.BpkInput-module__bpk-input--large___3A-ZY{height:3rem;padding-right:1rem;padding-left:1rem}
|
|
61
|
-
|
|
62
|
-
.BpkInput-module__bpk-input--large___3A-ZY.BpkInput-module__bpk-input--valid___Rguzq,.BpkInput-module__bpk-input--large___3A-ZY.BpkInput-module__bpk-input--invalid___1BMyc,.BpkInput-module__bpk-input--large___3A-ZY.BpkInput-module__bpk-input--clearable___zhqMz{padding-right:2.5rem;background-position:right 1rem center}
|
|
63
|
-
|
|
64
|
-
html[dir='rtl'] .BpkInput-module__bpk-input--large___3A-ZY.BpkInput-module__bpk-input--valid___Rguzq,html[dir='rtl'] .BpkInput-module__bpk-input--large___3A-ZY.BpkInput-module__bpk-input--invalid___1BMyc,html[dir='rtl'] .BpkInput-module__bpk-input--large___3A-ZY.BpkInput-module__bpk-input--clearable___zhqMz{padding-right:1rem;padding-left:2.5rem;background-position:left 1rem center}
|
|
65
|
-
|
|
66
|
-
.BpkInput-module__bpk-input--persistent-clearable___2JlyT{background:#fff}
|
|
67
|
-
|
|
68
|
-
.BpkInput-module__bpk-input--docked___19uxw:first-child{border-right-width:0;border-radius:.25rem 0 0 .25rem}
|
|
69
|
-
|
|
70
|
-
html[dir='rtl'] .BpkInput-module__bpk-input--docked___19uxw:first-child{border-right-width:.0625rem;border-left-width:0;border-radius:0 .25rem .25rem 0}
|
|
71
|
-
|
|
72
|
-
.BpkInput-module__bpk-input--docked___19uxw:first-child:focus{position:relative}
|
|
73
|
-
|
|
74
|
-
.BpkInput-module__bpk-input--docked___19uxw:last-child{border-radius:0 .25rem .25rem 0}
|
|
75
|
-
|
|
76
|
-
html[dir='rtl'] .BpkInput-module__bpk-input--docked___19uxw:last-child{border-radius:.25rem 0 0 .25rem}
|
|
77
|
-
|
|
78
|
-
.BpkInput-module__bpk-input--docked___19uxw:last-child:focus{position:relative}
|
|
79
|
-
|
|
80
|
-
.BpkInput-module__bpk-input--docked___19uxw:not(:first-child):not(:last-child){border-right-width:0;border-radius:0}
|
|
81
|
-
|
|
82
|
-
html[dir='rtl'] .BpkInput-module__bpk-input--docked___19uxw:not(:first-child):not(:last-child){border-right-width:.0625rem;border-left-width:0}
|
|
83
|
-
|
|
84
|
-
.BpkInput-module__bpk-input--docked___19uxw:not(:first-child):not(:last-child):focus{position:relative}
|
|
85
|
-
|
|
86
|
-
.BpkInput-module__bpk-input--docked-first___W2595{border-right-width:0;border-radius:.25rem 0 0 .25rem}
|
|
87
|
-
|
|
88
|
-
html[dir='rtl'] .BpkInput-module__bpk-input--docked-first___W2595{border-right-width:.0625rem;border-left-width:0;border-radius:0 .25rem .25rem 0}
|
|
89
|
-
|
|
90
|
-
.BpkInput-module__bpk-input--docked-first___W2595:focus{position:relative}
|
|
91
|
-
|
|
92
|
-
.BpkInput-module__bpk-input--docked-middle___yG7Wa{border-right-width:0;border-radius:0}
|
|
93
|
-
|
|
94
|
-
html[dir='rtl'] .BpkInput-module__bpk-input--docked-middle___yG7Wa{border-right-width:.0625rem;border-left-width:0}
|
|
95
|
-
|
|
96
|
-
.BpkInput-module__bpk-input--docked-middle___yG7Wa:focus{position:relative}
|
|
97
|
-
|
|
98
|
-
.BpkInput-module__bpk-input--docked-last___29FrL{border-radius:0 .25rem .25rem 0}
|
|
99
|
-
|
|
100
|
-
html[dir='rtl'] .BpkInput-module__bpk-input--docked-last___29FrL{border-radius:.25rem 0 0 .25rem}
|
|
101
|
-
|
|
102
|
-
.BpkInput-module__bpk-input--docked-last___29FrL:focus{position:relative}
|
|
103
|
-
|
|
104
|
-
.BpkInput-module__bpk-input--with-open-events___2P4JI{cursor:pointer}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/* imported from BpkLabel.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkLabel-module__bpk-keyframe-spin___2y9es{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkLabel-module__bpk-label___3jCjG{display:block;color:#111236;font-size:.75rem;font-weight:700;line-height:1rem}
|
|
6
|
-
|
|
7
|
-
.BpkLabel-module__bpk-label--white___279VB{color:#fff}
|
|
8
|
-
|
|
9
|
-
.BpkLabel-module__bpk-label--invalid___36-li{color:#d1435b;color:var(--bpk-form-validation-text-color, #d1435b)}
|
|
10
|
-
|
|
11
|
-
.BpkLabel-module__bpk-label--disabled___2Dbs7{color:#b2b2bf;cursor:not-allowed}
|
|
12
|
-
|
|
13
|
-
.BpkLabel-module__bpk-label__asterisk___1eVl7{color:#d1435b;color:var(--bpk-form-validation-text-color, #d1435b)}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/* imported from BpkLink.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkLink-module__bpk-keyframe-spin___2OQRf{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkLink-module__bpk-link___2NvQs{padding:0;border:0;background-color:transparent;text-decoration:none;cursor:pointer;appearance:none;color:#0770e3;color:var(--bpk-link-color, #0770e3)}
|
|
6
|
-
|
|
7
|
-
.BpkLink-module__bpk-no-touch-support___wg6df .BpkLink-module__bpk-link___2NvQs:hover:not(:active):not(:disabled){text-decoration:underline;color:#084eb2;color:var(--bpk-link-hover-color, #084eb2)}
|
|
8
|
-
|
|
9
|
-
.bpk-no-touch-support .BpkLink-module__bpk-link___2NvQs:hover:not(:active):not(:disabled){text-decoration:underline;color:#084eb2;color:var(--bpk-link-hover-color, #084eb2)}
|
|
10
|
-
|
|
11
|
-
.BpkLink-module__bpk-link___2NvQs:visited{color:#0770e3;color:var(--bpk-link-visited-color, #0770e3)}
|
|
12
|
-
|
|
13
|
-
.BpkLink-module__bpk-link___2NvQs:active{text-decoration:underline;color:#042759;color:var(--bpk-link-active-color, #042759)}
|
|
14
|
-
|
|
15
|
-
.BpkLink-module__bpk-link--active___1xRap{color:#042759}
|
|
16
|
-
|
|
17
|
-
.BpkLink-module__bpk-link--active___1xRap:visited{color:#042759}
|
|
18
|
-
|
|
19
|
-
.BpkLink-module__bpk-link--active___1xRap:active{color:#042759}
|
|
20
|
-
|
|
21
|
-
.BpkLink-module__bpk-link--alternate___3exBW{color:#fff;color:var(--bpk-link-alternate-color, #fff)}
|
|
22
|
-
|
|
23
|
-
.BpkLink-module__bpk-no-touch-support___wg6df .BpkLink-module__bpk-link--alternate___3exBW:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-link-alternate-hover-color, #fff)}
|
|
24
|
-
|
|
25
|
-
.bpk-no-touch-support .BpkLink-module__bpk-link--alternate___3exBW:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-link-alternate-hover-color, #fff)}
|
|
26
|
-
|
|
27
|
-
.BpkLink-module__bpk-link--alternate___3exBW:visited{color:#fff;color:var(--bpk-link-alternate-visited-color, #fff)}
|
|
28
|
-
|
|
29
|
-
.BpkLink-module__bpk-link--alternate___3exBW:active{color:#dddde5;color:var(--bpk-link-alternate-active-color, #dddde5)}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/* imported from BpkList.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkList-module__bpk-keyframe-spin___1O196{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkList-module__bpk-list___bqc4W{margin-top:1rem;margin-bottom:1rem;padding-left:1.5rem}
|
|
6
|
-
|
|
7
|
-
.BpkList-module__bpk-list__item___38Irt{margin-top:0;margin-bottom:.25rem}
|
|
8
|
-
|
|
9
|
-
.BpkList-module__bpk-list___bqc4W .BpkList-module__bpk-list___bqc4W{margin-top:0;margin-bottom:0;padding-top:0.5rem;padding-bottom:0.25rem}
|
|
10
|
-
|
|
11
|
-
.BpkList-module__bpk-list___bqc4W .BpkList-module__bpk-list___bqc4W>li{margin-bottom:0}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
/* imported from BpkLoadingButton.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkLoadingButton-module__bpk-keyframe-spin___5aZXk{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkLoadingButton-module__bpk-loading-button___1f1I7{position:relative;overflow:hidden}
|
|
6
|
-
|
|
7
|
-
.BpkLoadingButton-module__bpk-loading-button--link___3zcDJ{visibility:hidden}
|
|
8
|
-
|
|
9
|
-
.BpkLoadingButton-module__bpk-loading-button__icon___1Wsp9{position:absolute;display:inline-flex;visibility:visible;z-index:1;width:calc(100% - 2rem);height:calc(100% - .75rem);justify-content:center;align-items:center;background-color:inherit}
|
|
10
|
-
|
|
11
|
-
.BpkLoadingButton-module__bpk-loading-button__icon--large___3p7iU{height:calc(100% - 1.5rem)}
|
|
12
|
-
|
|
13
|
-
.BpkLoadingButton-module__bpk-loading-button__icon--icon-only___1UV4q{width:calc(100% - 1.125rem)}
|
|
14
|
-
|
|
15
|
-
.BpkLoadingButton-module__bpk-loading-button__icon--large-icon-only___61cw2{width:calc(100% - 1.5rem)}
|
|
16
|
-
|
|
17
|
-
.BpkLoadingButton-module__bpk-loading-button__icon--link___3kshe{width:100%;background:unset}
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
/* imported from BpkIconMarker.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkIconMarker-module__bpk-keyframe-spin___3s1_G{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkIconMarker-module__bpk-icon-marker__wrapper___-BrVv{position:relative;z-index:1;padding:1rem .8125rem;border:none;background:none}
|
|
6
|
-
|
|
7
|
-
.BpkIconMarker-module__bpk-icon-marker__wrapper--selected___fpoT6{z-index:2;padding:1rem 1rem}
|
|
8
|
-
|
|
9
|
-
.BpkIconMarker-module__bpk-icon-marker__icon___1Kgao{position:absolute;top:0.3rem;left:0.25rem;color:#fff}
|
|
10
|
-
|
|
11
|
-
.BpkIconMarker-module__bpk-icon-marker__icon___1Kgao>svg{fill:currentColor}
|
|
12
|
-
|
|
13
|
-
.BpkIconMarker-module__bpk-icon-marker__icon--interactive___2qCmJ{cursor:pointer}
|
|
14
|
-
|
|
15
|
-
.BpkIconMarker-module__bpk-icon-marker__icon--disabled___bm-iQ{color:#00a698;color:var(--bpk-icon-marker-default-disabled-color, #00a698)}
|
|
16
|
-
|
|
17
|
-
.BpkIconMarker-module__bpk-icon-marker__icon--selected___3CMP9{top:0.5rem;left:0.4rem;color:#00a698;color:var(--bpk-icon-marker-default-selected-color, #00a698)}
|
|
18
|
-
/* imported from BpkIconMarkerBackground.module.scss */
|
|
19
|
-
|
|
20
|
-
@keyframes BpkIconMarkerBackground-module__bpk-keyframe-spin___2O6xi{100%{transform:rotate(1turn)}}
|
|
21
|
-
|
|
22
|
-
.BpkIconMarkerBackground-module__bpk-icon-marker-background___f8eau{position:absolute;top:0;left:0;fill:#00a698;fill:var(--bpk-icon-marker-default-background-color, #00a698)}
|
|
23
|
-
|
|
24
|
-
.BpkIconMarkerBackground-module__bpk-icon-marker-background--interactive___8JKfQ{cursor:pointer}
|
|
25
|
-
|
|
26
|
-
.BpkIconMarkerBackground-module__bpk-icon-marker-background--disabled___1GCK_{fill:#d0eeec;fill:var(--bpk-icon-marker-default-disabled-background-color, #d0eeec)}
|
|
27
|
-
|
|
28
|
-
.BpkIconMarkerBackground-module__bpk-icon-marker-background--selected___1Cxxy{fill:#fff;stroke:#00a698;stroke:var(--bpk-icon-marker-default-selected-color, #00a698)}
|
|
29
|
-
/* imported from BpkMap.module.scss */
|
|
30
|
-
|
|
31
|
-
.BpkMap-module__bpk-map___1InCg{height:100%}
|
|
32
|
-
/* imported from BpkPriceMarker.module.scss */
|
|
33
|
-
|
|
34
|
-
@keyframes BpkPriceMarker-module__bpk-keyframe-spin___2r2bZ{100%{transform:rotate(1turn)}}
|
|
35
|
-
|
|
36
|
-
.BpkPriceMarker-module__bpk-price-marker___1XOKn{display:flex;padding:0.1875rem 0.5rem;justify-content:center;align-items:center;border:3px solid;border-radius:.375rem}
|
|
37
|
-
|
|
38
|
-
.BpkPriceMarker-module__bpk-price-marker--dynamic___2bnMp{cursor:pointer}
|
|
39
|
-
|
|
40
|
-
.BpkPriceMarker-module__bpk-price-marker-default___1tXBo{color:#fff;border-color:#0770e3;border-color:var(--bpk-price-marker-background-color, #0770e3);background-color:#0770e3;background-color:var(--bpk-price-marker-background-color, #0770e3)}
|
|
41
|
-
|
|
42
|
-
.BpkPriceMarker-module__bpk-price-marker-viewed___3bOgM{color:#0770e3;color:var(--bpk-price-marker-viewed-color, #0770e3);border-color:#cddff8;border-color:var(--bpk-price-marker-viewed-border-color, #cddff8);background-color:#cddff8;background-color:var(--bpk-price-marker-viewed-background-color, #cddff8)}
|
|
43
|
-
|
|
44
|
-
.BpkPriceMarker-module__bpk-price-marker-focused___2zYMD{padding:0.375rem 0.5rem;background-color:#fff;border-color:#0770e3;border-color:var(--bpk-price-marker-selected-border-color, #0770e3);color:#0770e3;color:var(--bpk-price-marker-selected-color, #0770e3)}
|
|
45
|
-
|
|
46
|
-
.BpkPriceMarker-module__bpk-price-marker-disabled___xet81{z-index:-2;border-color:#f1f2f8;background-color:#f1f2f8;color:#b2b2bf}
|
|
47
|
-
|
|
48
|
-
.BpkPriceMarker-module__bpk-price-marker__wrapper___1Xn68{position:relative;display:flex;flex-direction:column;align-items:center;border:none;background:none}
|
|
49
|
-
|
|
50
|
-
.BpkPriceMarker-module__bpk-price-marker__arrow___BIt9T{position:absolute;top:1.3rem;z-index:-1;width:1rem;height:1rem;transform:rotate(45deg);border-radius:25%;background-color:#0770e3}
|
|
51
|
-
|
|
52
|
-
.BpkPriceMarker-module__bpk-price-marker__arrow-default___Ch6II{background-color:#0770e3;background-color:var(--bpk-price-marker-background-color, #0770e3)}
|
|
53
|
-
|
|
54
|
-
.BpkPriceMarker-module__bpk-price-marker__arrow-viewed___1pZ6_{background-color:#cddff8;background-color:var(--bpk-price-marker-viewed-border-color, #cddff8)}
|
|
55
|
-
|
|
56
|
-
.BpkPriceMarker-module__bpk-price-marker__arrow-focused___rdgX0{top:1.8rem;background-color:#0770e3;background-color:var(--bpk-price-marker-selected-border-color, #0770e3)}
|
|
57
|
-
|
|
58
|
-
.BpkPriceMarker-module__bpk-price-marker__arrow-disabled___1nN38{z-index:-3;background-color:#f1f2f8}
|
|
59
|
-
/* imported from DefaultLoadingElement.module.scss */
|
|
60
|
-
|
|
61
|
-
@keyframes DefaultLoadingElement-module__bpk-keyframe-spin___3mURT{100%{transform:rotate(1turn)}}
|
|
62
|
-
|
|
63
|
-
.DefaultLoadingElement-module__bpk-map-default-loading-element___2Wbgm{display:flex;height:100%;justify-content:center;align-items:center;flex:1;background-color:#dddde5}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
/* imported from BpkMobileScrollContainer.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkMobileScrollContainer-module__bpk-keyframe-spin___r6TSa{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkMobileScrollContainer-module__bpk-mobile-scroll-container___6X9_-{position:relative;overflow:hidden}
|
|
6
|
-
|
|
7
|
-
.BpkMobileScrollContainer-module__bpk-mobile-scroll-container--left-indicator___3v-1J::before{position:absolute;top:0;bottom:0;content:' ';display:block;z-index:1;width:2.25rem;background-image:linear-gradient(90deg, #fff, rgba(255,255,255,0));pointer-events:none;left:0}
|
|
8
|
-
|
|
9
|
-
.BpkMobileScrollContainer-module__bpk-mobile-scroll-container--right-indicator___11zEO::after{position:absolute;top:0;bottom:0;content:' ';display:block;z-index:1;width:2.25rem;background-image:linear-gradient(270deg, #fff, rgba(255,255,255,0));pointer-events:none;right:0}
|
|
10
|
-
|
|
11
|
-
.BpkMobileScrollContainer-module__bpk-mobile-scroll-container__scroller___1Dsac{white-space:nowrap;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}
|
|
12
|
-
|
|
13
|
-
.BpkMobileScrollContainer-module__bpk-mobile-scroll-container__scroller___1Dsac:not(.BpkMobileScrollContainer-module__bpk-mobile-scroll-container__showScrollbar___IZ847){scrollbar-width:none}
|
|
14
|
-
|
|
15
|
-
.BpkMobileScrollContainer-module__bpk-mobile-scroll-container__scroller___1Dsac:not(.BpkMobileScrollContainer-module__bpk-mobile-scroll-container__showScrollbar___IZ847)::-webkit-scrollbar{display:none}
|
|
16
|
-
|
|
17
|
-
.BpkMobileScrollContainer-module__bpk-mobile-scroll-container__inner___2LexL{width:100%}
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
/* imported from BpkModal.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkModal-module__bpk-keyframe-spin___mvc0C{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkModal-module__bpk-modal__container___33Wc9{display:flex;padding:1.5rem}
|
|
6
|
-
|
|
7
|
-
@media screen\0 {.BpkModal-module__bpk-modal__container___33Wc9{display:block}}
|
|
8
|
-
|
|
9
|
-
@media (max-width: 32rem){.BpkModal-module__bpk-modal__container--full-screen-mobile___B9loV{display:flex;padding:0}}
|
|
10
|
-
|
|
11
|
-
.BpkModal-module__bpk-modal__container--full-screen___2rIwQ{display:flex;padding:0}
|
|
12
|
-
/* imported from BpkModalInner.module.scss */
|
|
13
|
-
|
|
14
|
-
@keyframes BpkModalInner-module__bpk-keyframe-spin___1wGLi{100%{transform:rotate(1turn)}}
|
|
15
|
-
|
|
16
|
-
.BpkModalInner-module__bpk-modal___3gk7A{z-index:1100;width:100%;max-width:32rem;margin:auto;transform:scale(1);transition:opacity 200ms ease-in-out,transform 200ms ease-in-out;outline:0;background-color:#fff;opacity:1;overflow:hidden;-webkit-tap-highlight-color:transparent;box-shadow:0px 12px 50px 0px rgba(37,32,31,0.25);border-radius:.375rem}
|
|
17
|
-
|
|
18
|
-
@media (max-width: 32rem){.BpkModalInner-module__bpk-modal--full-screen-mobile___3xn1W{display:flex;margin:0;flex-direction:column;border-radius:0;box-shadow:none}}
|
|
19
|
-
|
|
20
|
-
.BpkModalInner-module__bpk-modal--full-screen___1hjPL{max-width:none;display:flex;margin:0;flex-direction:column;border-radius:0;box-shadow:none}
|
|
21
|
-
|
|
22
|
-
@media (min-width: 32.0625rem){.BpkModalInner-module__bpk-modal--wide___8BhLC{max-width:64rem}}
|
|
23
|
-
|
|
24
|
-
.BpkModalInner-module__bpk-modal--appear___2u9II{transform:scale(0.9);opacity:0}
|
|
25
|
-
|
|
26
|
-
.BpkModalInner-module__bpk-modal--appear-active___2XFSF{transform:scale(1);opacity:1}
|
|
27
|
-
|
|
28
|
-
.BpkModalInner-module__bpk-modal__header___2Wuxn{box-shadow:0 -1px 0 0 #dddde5 inset}
|
|
29
|
-
|
|
30
|
-
.BpkModalInner-module__bpk-modal__navigation___196Ds{display:flex;justify-content:space-between;background-color:#fff}
|
|
31
|
-
|
|
32
|
-
.BpkModalInner-module__bpk-modal__heading___3LHXI{margin:0;font-size:1rem;line-height:1.5rem;font-weight:700}
|
|
33
|
-
|
|
34
|
-
.BpkModalInner-module__bpk-modal__close-button___v91f3{position:relative;right:auto;margin-left:1rem;margin-right:0}
|
|
35
|
-
|
|
36
|
-
html[dir='rtl'] .BpkModalInner-module__bpk-modal__close-button___v91f3{margin-left:0;margin-right:1rem}
|
|
37
|
-
|
|
38
|
-
html[dir='rtl'] .BpkModalInner-module__bpk-modal__close-button___v91f3{left:auto}
|
|
39
|
-
|
|
40
|
-
.BpkModalInner-module__bpk-modal__accessory-view___34J1c{position:relative;left:auto;margin-right:1rem}
|
|
41
|
-
|
|
42
|
-
html[dir='rtl'] .BpkModalInner-module__bpk-modal__accessory-view___34J1c{right:auto;margin-left:1rem}
|
|
43
|
-
|
|
44
|
-
.BpkModalInner-module__bpk-modal__content___23H5k{flex:1;overflow-y:auto}
|
|
45
|
-
|
|
46
|
-
.BpkModalInner-module__bpk-modal__content--padded___3xJ_V{padding:1rem}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
/* imported from BpkNavigationBar.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkNavigationBar-module__bpk-keyframe-spin___XQAFV{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkNavigationBar-module__bpk-navigation-bar___3jIHD{position:relative;display:flex;min-height:3.5rem;padding:1rem;flex-direction:row;justify-content:center;align-items:center;background-color:#0770e3;background-color:var(--bpk-navigation-bar-background-color, #0770e3);box-shadow:0 -1px 0 0 #dddde5 inset}
|
|
6
|
-
|
|
7
|
-
.BpkNavigationBar-module__bpk-navigation-bar__title___lzlBU{color:#fff;color:var(--bpk-navigation-bar-title-color, #fff)}
|
|
8
|
-
|
|
9
|
-
.BpkNavigationBar-module__bpk-navigation-bar__leading-item___rHi2h,.BpkNavigationBar-module__bpk-navigation-bar__trailing-item___3-h7L{position:absolute;font-size:.875rem;line-height:1.25rem;font-weight:700}
|
|
10
|
-
|
|
11
|
-
.BpkNavigationBar-module__bpk-navigation-bar__leading-item___rHi2h{left:1rem}
|
|
12
|
-
|
|
13
|
-
html[dir='rtl'] .BpkNavigationBar-module__bpk-navigation-bar__leading-item___rHi2h{right:1rem;left:auto}
|
|
14
|
-
|
|
15
|
-
.BpkNavigationBar-module__bpk-navigation-bar__trailing-item___3-h7L{right:1rem}
|
|
16
|
-
|
|
17
|
-
html[dir='rtl'] .BpkNavigationBar-module__bpk-navigation-bar__trailing-item___3-h7L{right:auto;left:1rem}
|
|
18
|
-
|
|
19
|
-
.BpkNavigationBar-module__bpk-navigation-bar__sticky___sWMQ3{position:sticky;top:0;z-index:899}
|
|
20
|
-
/* imported from BpkNavigationBarButtonLink.module.scss */
|
|
21
|
-
|
|
22
|
-
@keyframes BpkNavigationBarButtonLink-module__bpk-keyframe-spin___2ndCa{100%{transform:rotate(1turn)}}
|
|
23
|
-
|
|
24
|
-
.BpkNavigationBarButtonLink-module__bpk-navigation-bar-button-link___1zL2u{color:#fff;color:var(--bpk-navigation-bar-button-link-color, #fff)}
|
|
25
|
-
|
|
26
|
-
.BpkNavigationBarButtonLink-module__bpk-no-touch-support___3zrGk .BpkNavigationBarButtonLink-module__bpk-navigation-bar-button-link___1zL2u:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-navigation-bar-button-link-hover-color, #fff)}
|
|
27
|
-
|
|
28
|
-
.bpk-no-touch-support .BpkNavigationBarButtonLink-module__bpk-navigation-bar-button-link___1zL2u:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-navigation-bar-button-link-hover-color, #fff)}
|
|
29
|
-
|
|
30
|
-
.BpkNavigationBarButtonLink-module__bpk-navigation-bar-button-link___1zL2u:active{color:#fff;color:var(--bpk-navigation-bar-button-link-active-color, #fff)}
|
|
31
|
-
|
|
32
|
-
.BpkNavigationBarButtonLink-module__bpk-navigation-bar-button-link___1zL2u:visited{color:#fff;color:var(--bpk-navigation-bar-button-link-visited-color, #fff)}
|
|
33
|
-
/* imported from BpkNavigationBarIconButton.module.scss */
|
|
34
|
-
|
|
35
|
-
@keyframes BpkNavigationBarIconButton-module__bpk-keyframe-spin___1OZJ9{100%{transform:rotate(1turn)}}
|
|
36
|
-
|
|
37
|
-
.BpkNavigationBarIconButton-module__bpk-navigation-bar-icon-button___3864T{color:#fff;color:var(--bpk-navigation-bar-icon-button-color, #fff)}
|
|
38
|
-
|
|
39
|
-
.BpkNavigationBarIconButton-module__bpk-no-touch-support___1hXZb .BpkNavigationBarIconButton-module__bpk-navigation-bar-icon-button___3864T:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-navigation-bar-icon-button-hover-color, #fff)}
|
|
40
|
-
|
|
41
|
-
.bpk-no-touch-support .BpkNavigationBarIconButton-module__bpk-navigation-bar-icon-button___3864T:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-navigation-bar-icon-button-hover-color, #fff)}
|
|
42
|
-
|
|
43
|
-
.BpkNavigationBarIconButton-module__bpk-navigation-bar-icon-button___3864T:active{color:#fff;color:var(--bpk-navigation-bar-icon-button-active-color, #fff)}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/* imported from BpkNudger.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkNudger-module__bpk-keyframe-spin___1QKe2{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkNudger-module__bpk-nudger__button___HU9q8{position:relative}
|
|
6
|
-
|
|
7
|
-
.BpkNudger-module__bpk-nudger__input___IPiTO{display:inline-block;padding:0.5rem 0;border:none;text-align:center;vertical-align:middle;margin:0;font-size:1.5rem;line-height:2rem;font-weight:400}
|
|
8
|
-
|
|
9
|
-
.BpkNudger-module__bpk-nudger__input--secondary-on-dark___enNd6{background-color:transparent;color:#fff}
|
|
10
|
-
|
|
11
|
-
.BpkNudger-module__bpk-nudger__input--numeric___3R0JK{width:2.5rem}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/* imported from BpkOverlay.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkOverlay-module__bpk-keyframe-spin___128n7{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkOverlay-module__bpk-overlay__wrapper___3IAR8{position:relative}
|
|
6
|
-
|
|
7
|
-
.BpkOverlay-module__bpk-overlay__overlay___2JdKp{position:absolute;top:0;left:0;width:100%;height:100%}
|
|
8
|
-
|
|
9
|
-
.BpkOverlay-module__bpk-overlay__overlay--tint___3INmT{background:rgba(2,18,44,0.56)}
|
|
10
|
-
|
|
11
|
-
.BpkOverlay-module__bpk-overlay__overlay--border-radius-sm___3tEjf{border-radius:.375rem}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
/* imported from BpkPagination.module.scss */
|
|
2
|
-
|
|
3
|
-
.BpkPagination-module__bpk-pagination___s5i4J{display:flex;justify-content:center}
|
|
4
|
-
/* imported from BpkPaginationList.module.scss */
|
|
5
|
-
|
|
6
|
-
@keyframes BpkPaginationList-module__bpk-keyframe-spin___YAC_6{100%{transform:rotate(1turn)}}
|
|
7
|
-
|
|
8
|
-
.BpkPaginationList-module__bpk-pagination-page-list___12Mgj{display:flex;margin:0;padding:0;list-style:none}
|
|
9
|
-
|
|
10
|
-
.BpkPaginationList-module__bpk-pagination-page-list__item___1RLkV{margin-right:0.5rem}
|
|
11
|
-
|
|
12
|
-
html[dir='rtl'] .BpkPaginationList-module__bpk-pagination-page-list__item___1RLkV{margin-right:0;margin-left:0.5rem}
|
|
13
|
-
|
|
14
|
-
html[dir='rtl'] .BpkPaginationList-module__bpk-pagination-page-list__item___1RLkV:last-child{margin-left:0}
|
|
15
|
-
|
|
16
|
-
.BpkPaginationList-module__bpk-pagination-page-list__item___1RLkV:last-child{margin-right:0}
|
|
17
|
-
/* imported from BpkPaginationNudger.module.scss */
|
|
18
|
-
|
|
19
|
-
@keyframes BpkPaginationNudger-module__bpk-keyframe-spin___2Pdyu{100%{transform:rotate(1turn)}}
|
|
20
|
-
|
|
21
|
-
.BpkPaginationNudger-module__bpk-pagination-nudger___HJmFn{text-align:center;vertical-align:middle}
|
|
22
|
-
|
|
23
|
-
.BpkPaginationNudger-module__bpk-pagination-nudger__button___3DWBt{height:2.25rem;padding:0 0.5rem;border:none;background:none;cursor:pointer;appearance:none;color:#0770e3;color:var(--bpk-pagination-nudger-color, #0770e3)}
|
|
24
|
-
|
|
25
|
-
.BpkPaginationNudger-module__bpk-no-touch-support___TMG-I .BpkPaginationNudger-module__bpk-pagination-nudger__button___3DWBt:hover:not(:active):not(:disabled){color:#042759;color:var(--bpk-pagination-nudger-hover-color, #042759)}
|
|
26
|
-
|
|
27
|
-
.bpk-no-touch-support .BpkPaginationNudger-module__bpk-pagination-nudger__button___3DWBt:hover:not(:active):not(:disabled){color:#042759;color:var(--bpk-pagination-nudger-hover-color, #042759)}
|
|
28
|
-
|
|
29
|
-
.BpkPaginationNudger-module__bpk-pagination-nudger__button___3DWBt:active{color:#0770e3;color:var(--bpk-pagination-nudger-active-color, #0770e3)}
|
|
30
|
-
|
|
31
|
-
.BpkPaginationNudger-module__bpk-pagination-nudger__button___3DWBt:disabled{color:#dddde5;cursor:not-allowed}
|
|
32
|
-
|
|
33
|
-
.BpkPaginationNudger-module__bpk-pagination-nudger__button___3DWBt .BpkPaginationNudger-module__bpk-pagination-nudger__icon___2OfdJ{fill:currentColor}
|
|
34
|
-
|
|
35
|
-
html[dir='rtl'] .BpkPaginationNudger-module__bpk-pagination-nudger__button___3DWBt .BpkPaginationNudger-module__bpk-pagination-nudger__icon___2OfdJ{transform:scaleX(-1)}
|
|
36
|
-
|
|
37
|
-
.BpkPaginationNudger-module__bpk-pagination-nudger__text--hidden___3Giln{position:absolute;width:1px;height:1px;margin:-1px;padding:0;border:0;overflow:hidden;clip:rect(0 0 0 0)}
|
|
38
|
-
/* imported from BpkPaginationPage.module.scss */
|
|
39
|
-
|
|
40
|
-
@keyframes BpkPaginationPage-module__bpk-keyframe-spin___30ORF{100%{transform:rotate(1turn)}}
|
|
41
|
-
|
|
42
|
-
.BpkPaginationPage-module__bpk-pagination-page___3D3yN{min-width:2.25rem;height:2.25rem;padding:0;border-radius:50%;font-size:1rem;line-height:1.5rem;font-weight:700}
|
|
43
|
-
|
|
44
|
-
.BpkPaginationPage-module__bpk-pagination-page--selected___nVIb1{background-image:none;color:#fff;box-shadow:none;cursor:auto;background-color:#042759;background-color:var(--bpk-pagination-selected-background-color, #042759);box-shadow:0 0 0 2px #042759 inset;box-shadow:0 0 0 2px var(--bpk-pagination-selected-background-color, #042759) inset}
|
|
45
|
-
|
|
46
|
-
.BpkPaginationPage-module__bpk-no-touch-support___2IWzk .BpkPaginationPage-module__bpk-pagination-page--selected___nVIb1:hover:not(:active):not(:disabled){background-image:none;color:#fff;box-shadow:none;background-color:#042759;background-color:var(--bpk-pagination-selected-background-color, #042759);box-shadow:0 0 0 2px #042759 inset;box-shadow:0 0 0 2px var(--bpk-pagination-selected-background-color, #042759) inset}
|
|
47
|
-
|
|
48
|
-
.bpk-no-touch-support .BpkPaginationPage-module__bpk-pagination-page--selected___nVIb1:hover:not(:active):not(:disabled){background-image:none;color:#fff;box-shadow:none;background-color:#042759;background-color:var(--bpk-pagination-selected-background-color, #042759);box-shadow:0 0 0 2px #042759 inset;box-shadow:0 0 0 2px var(--bpk-pagination-selected-background-color, #042759) inset}
|
|
49
|
-
|
|
50
|
-
.BpkPaginationPage-module__bpk-pagination-page--selected___nVIb1:active{background-image:none;color:#fff;box-shadow:none;background-color:#042759;background-color:var(--bpk-pagination-selected-background-color, #042759);box-shadow:0 0 0 2px #042759 inset;box-shadow:0 0 0 2px var(--bpk-pagination-selected-background-color, #042759) inset}
|
|
51
|
-
|
|
52
|
-
.BpkPaginationPage-module__bpk-pagination-page--selected___nVIb1:disabled{box-shadow:none}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/* imported from BpkPanel.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkPanel-module__bpk-keyframe-spin___3WygL{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkPanel-module__bpk-panel___2tn3i{display:block;background-color:#fff;box-shadow:0 0 0 1px #cdcdd7 inset;border-radius:.75rem}
|
|
6
|
-
|
|
7
|
-
.BpkPanel-module__bpk-panel--padded___1GOzH{padding:.75rem}
|
|
8
|
-
|
|
9
|
-
.BpkPanel-module__bpk-panel--full-width___3WN4q{border-radius:0;box-shadow:#cdcdd7 0 -.0625rem 0 0 inset,#cdcdd7 0 .0625rem 0 0 inset}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/* imported from BpkPhoneInput.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkPhoneInput-module__bpk-keyframe-spin___2a_MI{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkPhoneInput-module__bpk-phone-input___1kj1Z{display:flex;column-gap:0.5rem}
|
|
6
|
-
|
|
7
|
-
@media (max-width: 32rem){.BpkPhoneInput-module__bpk-phone-input___1kj1Z{flex-wrap:wrap}.BpkPhoneInput-module__bpk-phone-input__phone-number___3HYfz{width:100%;margin-top:1rem}}
|
|
8
|
-
|
|
9
|
-
.BpkPhoneInput-module__bpk-phone-input__phone-number___3HYfz{flex:auto}
|
|
10
|
-
|
|
11
|
-
.BpkPhoneInput-module__bpk-phone-input__label___3WuhT{margin-bottom:0.5rem}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
/* imported from BpkPopover.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkPopover-module__bpk-keyframe-spin___3ihpp{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkPopover-module__bpk-popover-portal___3yOV-{z-index:900}
|
|
6
|
-
|
|
7
|
-
@media (max-width: 32rem){.BpkPopover-module__bpk-popover-portal___3yOV-{margin-right:1rem;margin-left:1rem}}
|
|
8
|
-
|
|
9
|
-
.BpkPopover-module__bpk-popover___lnzTo{transition:opacity 200ms ease-in-out;outline:0;opacity:1;border:.0625rem solid #dddde5;background-color:#fff;border-radius:.375rem;box-shadow:0px 4px 14px 0px rgba(37,32,31,0.25)}
|
|
10
|
-
|
|
11
|
-
@media (min-width: 32.0625rem){.BpkPopover-module__bpk-popover___lnzTo{max-width:32rem;transition:opacity 50ms ease-in-out}}
|
|
12
|
-
|
|
13
|
-
.BpkPopover-module__bpk-popover--appear___1Dn0Q{opacity:0}
|
|
14
|
-
|
|
15
|
-
.BpkPopover-module__bpk-popover--appear-active___gOZjM{opacity:1}
|
|
16
|
-
|
|
17
|
-
.BpkPopover-module__bpk-popover__arrow___1IB9r{position:aboslute;width:1.5rem;height:1.5rem;transform:rotate(45deg);border:.0625rem solid transparent;background:inherit}
|
|
18
|
-
|
|
19
|
-
.BpkPopover-module__bpk-popover-portal___3yOV-[data-popper-placement='top'] .BpkPopover-module__bpk-popover__arrow___1IB9r{bottom:-.6875rem;border-right-color:#dddde5;border-bottom-color:#dddde5}
|
|
20
|
-
|
|
21
|
-
.BpkPopover-module__bpk-popover-portal___3yOV-[data-popper-placement='right'] .BpkPopover-module__bpk-popover__arrow___1IB9r{left:-.6875rem;border-bottom-color:#dddde5;border-left-color:#dddde5}
|
|
22
|
-
|
|
23
|
-
.BpkPopover-module__bpk-popover-portal___3yOV-[data-popper-placement='bottom'] .BpkPopover-module__bpk-popover__arrow___1IB9r{top:-.6875rem;border-top-color:#dddde5;border-left-color:#dddde5}
|
|
24
|
-
|
|
25
|
-
.BpkPopover-module__bpk-popover-portal___3yOV-[data-popper-placement='left'] .BpkPopover-module__bpk-popover__arrow___1IB9r{right:-.6875rem;border-top-color:#dddde5;border-right-color:#dddde5}
|
|
26
|
-
|
|
27
|
-
.BpkPopover-module__bpk-popover__arrow___1IB9r[data-hide]{visibility:hidden}
|
|
28
|
-
|
|
29
|
-
.BpkPopover-module__bpk-popover__body--padded___3RecG{padding:1rem}
|
|
30
|
-
|
|
31
|
-
.BpkPopover-module__bpk-popover__header___3-ix-{display:flex;padding:1rem;justify-content:space-between;box-shadow:0 -1px 0 0 #dddde5 inset}
|
|
32
|
-
|
|
33
|
-
.BpkPopover-module__bpk-popover__label____wzwW{position:absolute;width:1px;height:1px;margin:-1px;padding:0;border:0;overflow:hidden;clip:rect(0 0 0 0)}
|
|
34
|
-
|
|
35
|
-
.BpkPopover-module__bpk-popover__close-button___2yHnJ{float:right}
|
|
36
|
-
|
|
37
|
-
html[dir='rtl'] .BpkPopover-module__bpk-popover__close-button___2yHnJ{float:left}
|
|
38
|
-
|
|
39
|
-
.BpkPopover-module__bpk-popover__footer___2Z2NI{padding:0.5rem 1rem;text-align:right;box-shadow:0 1px 0 0 #dddde5 inset}
|
|
40
|
-
|
|
41
|
-
html[dir='rtl'] .BpkPopover-module__bpk-popover__footer___2Z2NI{text-align:left}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
/* imported from BpkPrice.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkPrice-module__bpk-keyframe-spin___3neMC{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkPrice-module__bpk-price___1_8Uw{display:flex;flex-direction:column}
|
|
6
|
-
|
|
7
|
-
.BpkPrice-module__bpk-price--right___coNjq{text-align:right}
|
|
8
|
-
|
|
9
|
-
html[dir='rtl'] .BpkPrice-module__bpk-price--right___coNjq{text-align:left}
|
|
10
|
-
|
|
11
|
-
.BpkPrice-module__bpk-price__subtitle___KYJh9{color:#68697f;text-decoration-line:line-through}
|
|
12
|
-
|
|
13
|
-
.BpkPrice-module__bpk-price__column-container___vhG7R{display:flex;flex-direction:column}
|
|
14
|
-
|
|
15
|
-
.BpkPrice-module__bpk-price__title___2CO3b{word-break:break-all}
|
|
16
|
-
|
|
17
|
-
.BpkPrice-module__bpk-price__spacing___5w8S8::after{content:'';margin-right:0.25rem}
|
|
18
|
-
|
|
19
|
-
html[dir='rtl'] .BpkPrice-module__bpk-price__spacing___5w8S8::after{margin-right:unset;margin-left:0.25rem}
|
|
20
|
-
|
|
21
|
-
.BpkPrice-module__bpk-price__description___Bz_LQ{color:#68697f;white-space:nowrap}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/* imported from BpkProgress.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkProgress-module__bpk-keyframe-spin___2-jOG{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkProgress-module__bpk-progress___SNna-{position:relative;height:1rem;border-radius:1.125rem;background-color:#dddde5;overflow:hidden}
|
|
6
|
-
|
|
7
|
-
.BpkProgress-module__bpk-progress--small___dvz7J{height:0.5rem;border-radius:.25rem}
|
|
8
|
-
|
|
9
|
-
.BpkProgress-module__bpk-progress__value___2Ov6K{position:absolute;top:0;right:0;bottom:0;left:0;content:' ';width:0%;transition:width 400ms ease-in-out;border-radius:.375rem;background-color:#0770e3;background-color:var(--bpk-progress-bar-fill-color, #0770e3)}
|
|
10
|
-
|
|
11
|
-
.BpkProgress-module__bpk-progress__value--stepped___29GoW{border-radius:0}
|
|
12
|
-
|
|
13
|
-
.BpkProgress-module__bpk-progress__step___1SuEW{position:absolute;top:0;bottom:0;width:.125rem;background:#fff}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
/* imported from BpkRadio.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkRadio-module__bpk-keyframe-spin___2rPys{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkRadio-module__bpk-radio___2a-K9{position:relative;display:inline-block;padding-left:1.75rem}
|
|
6
|
-
|
|
7
|
-
html[dir='rtl'] .BpkRadio-module__bpk-radio___2a-K9{padding-right:1.75rem;padding-left:0}
|
|
8
|
-
|
|
9
|
-
.BpkRadio-module__bpk-radio--white___3JgLV{color:#fff}
|
|
10
|
-
|
|
11
|
-
.BpkRadio-module__bpk-radio--white___3JgLV input[type='radio']{background:#fff}
|
|
12
|
-
|
|
13
|
-
.BpkRadio-module__bpk-radio--disabled___28dAM{color:#b2b2bf;cursor:not-allowed}
|
|
14
|
-
|
|
15
|
-
.BpkRadio-module__bpk-radio--invalid___1Vt-Z input[type='radio']{border:3px solid #d1435b;border-radius:1.125rem}
|
|
16
|
-
|
|
17
|
-
.BpkRadio-module__bpk-radio__input___39YwT{position:absolute;top:0;left:0;width:1.25rem;height:1.25rem;margin:0;padding:0;cursor:pointer;vertical-align:text-bottom;appearance:none;border:3px solid #8f90a0;border-radius:1.125rem}
|
|
18
|
-
|
|
19
|
-
html[dir='rtl'] .BpkRadio-module__bpk-radio__input___39YwT{right:0;left:auto}
|
|
20
|
-
|
|
21
|
-
@media screen\0 {.BpkRadio-module__bpk-radio__input___39YwT{background:none !important}}
|
|
22
|
-
|
|
23
|
-
.BpkRadio-module__bpk-radio__input___39YwT:checked{border-color:#0770e3;border-color:var(--bpk-radio-checked-color, #0770e3)}
|
|
24
|
-
|
|
25
|
-
.BpkRadio-module__bpk-radio__input___39YwT:checked:disabled{border-color:#b2b2bf}
|
|
26
|
-
|
|
27
|
-
.BpkRadio-module__bpk-radio__input___39YwT:disabled{border-color:#b2b2bf}
|
|
28
|
-
|
|
29
|
-
.BpkRadio-module__bpk-radio__input___39YwT:checked+.BpkRadio-module__bpk-radio__circle___17OkP{display:block}
|
|
30
|
-
|
|
31
|
-
.BpkRadio-module__bpk-radio__input___39YwT:checked:disabled+.BpkRadio-module__bpk-radio__circle___17OkP{display:block;background:#b2b2bf}
|
|
32
|
-
|
|
33
|
-
.BpkRadio-module__bpk-radio__circle___17OkP{position:absolute;top:0.375rem;left:0.375rem;display:none;width:.5rem;height:.5rem;border-radius:50%;background:#0770e3;background:var(--bpk-radio-checked-color, #0770e3)}
|
|
34
|
-
|
|
35
|
-
html[dir='rtl'] .BpkRadio-module__bpk-radio__circle___17OkP{right:0.375rem;left:auto}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/* imported from BpkRating.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkRating-module__bpk-keyframe-spin___2f7PK{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkRating-module__bpk-rating___2xdsS{display:flex;flex-flow:row nowrap;align-items:baseline}
|
|
6
|
-
|
|
7
|
-
.BpkRating-module__bpk-rating--large___3pbEu{align-items:center}
|
|
8
|
-
|
|
9
|
-
.BpkRating-module__bpk-rating__value___2Kfx7{display:flex;padding-right:0.5rem;justify-content:center;align-items:baseline;color:#111236}
|
|
10
|
-
|
|
11
|
-
html[dir='rtl'] .BpkRating-module__bpk-rating__value___2Kfx7{padding-right:0;padding-left:0.5rem}
|
|
12
|
-
|
|
13
|
-
.BpkRating-module__bpk-rating__text-wrapper___35vC-{display:flex;flex-direction:row;align-items:baseline;white-space:nowrap}
|
|
14
|
-
|
|
15
|
-
.BpkRating-module__bpk-rating__text-wrapper--large___2mib7{flex-direction:column;align-items:flex-start}
|
|
16
|
-
|
|
17
|
-
.BpkRating-module__bpk-rating__scale___1kSxE{color:#68697f}
|
|
18
|
-
|
|
19
|
-
.BpkRating-module__bpk-rating__title--large___1wFwA{padding-top:.0625rem}
|
|
20
|
-
|
|
21
|
-
.BpkRating-module__bpk-rating__subtitle___2Roh0{padding-left:0.5rem;color:#68697f}
|
|
22
|
-
|
|
23
|
-
html[dir='rtl'] .BpkRating-module__bpk-rating__subtitle___2Roh0{padding-right:0.5rem;padding-left:0}
|
|
24
|
-
|
|
25
|
-
.BpkRating-module__bpk-rating__subtitle--large___201sZ{padding-top:.0625rem;padding-left:0}
|
|
26
|
-
|
|
27
|
-
html[dir='rtl'] .BpkRating-module__bpk-rating__subtitle--large___201sZ{padding-right:0;padding-left:0}
|
|
File without changes
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/* imported from BpkScrollableCalendarGrid.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkScrollableCalendarGrid-module__bpk-keyframe-spin___1olxM{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkScrollableCalendarGrid-module__bpk-scrollable-calendar-grid___2KIDv{width:100%;border-collapse:separate;border-spacing:0}
|
|
6
|
-
|
|
7
|
-
.BpkScrollableCalendarGrid-module__bpk-scrollable-calendar-grid__title___5N8pL{margin-top:1.5rem}
|
|
8
|
-
/* imported from BpkScrollableCalendarGridList.module.scss */
|
|
9
|
-
|
|
10
|
-
@keyframes BpkScrollableCalendarGridList-module__bpk-keyframe-spin___3joG-{100%{transform:rotate(1turn)}}
|
|
11
|
-
|
|
12
|
-
.BpkScrollableCalendarGridList-module__bpk-scrollable-calendar-grid-list___2Zxyr{position:relative;width:100%;height:100%;min-height:26.25rem;overflow-x:hidden;box-sizing:border-box;-ms-overflow-style:-ms-autohiding-scrollbar}
|
|
13
|
-
|
|
14
|
-
.BpkScrollableCalendarGridList-module__bpk-scrollable-calendar-grid-list__item___1Vweb{display:inline-table}
|