@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,63 +0,0 @@
|
|
|
1
|
-
/* imported from BpkSelectableChip.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkSelectableChip-module__bpk-keyframe-spin___3Z2As{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkSelectableChip-module__bpk-chip___3KdBs{display:inline-flex;height:2rem;padding:0 1rem;align-items:center;border:none;border-radius:1.125rem}
|
|
6
|
-
|
|
7
|
-
.BpkSelectableChip-module__bpk-chip--light___3yJvY{background-color:#fff;color:#111236;box-shadow:0 0 0 1px #8f90a0 inset}
|
|
8
|
-
|
|
9
|
-
.BpkSelectableChip-module__bpk-no-touch-support___1tmoi .BpkSelectableChip-module__bpk-chip--light___3yJvY:hover:not(:active):not(:disabled){background-color:#f1f2f8}
|
|
10
|
-
|
|
11
|
-
.bpk-no-touch-support .BpkSelectableChip-module__bpk-chip--light___3yJvY:hover:not(:active):not(:disabled){background-color:#f1f2f8}
|
|
12
|
-
|
|
13
|
-
.BpkSelectableChip-module__bpk-chip--light___3yJvY:active:not(:disabled){background-color:#dddde5}
|
|
14
|
-
|
|
15
|
-
.BpkSelectableChip-module__bpk-chip--light-selected___1tURm{color:#fff;color:var(--bpk-chip-light-selected-text-color, #fff);background-color:#0770e3;background-color:var(--bpk-chip-light-selected-background-color, #0770e3);box-shadow:0 0 0 1px rgba(0,0,0,0) inset}
|
|
16
|
-
|
|
17
|
-
.BpkSelectableChip-module__bpk-no-touch-support___1tmoi .BpkSelectableChip-module__bpk-chip--light-selected___1tURm:hover:not(:active):not(:disabled){background-color:#084eb2;background-color:var(--bpk-chip-light-selected-hover-background-color, #084eb2)}
|
|
18
|
-
|
|
19
|
-
.bpk-no-touch-support .BpkSelectableChip-module__bpk-chip--light-selected___1tURm:hover:not(:active):not(:disabled){background-color:#084eb2;background-color:var(--bpk-chip-light-selected-hover-background-color, #084eb2)}
|
|
20
|
-
|
|
21
|
-
.BpkSelectableChip-module__bpk-chip--light-selected___1tURm:active:not(:disabled){background-color:#042759;background-color:var(--bpk-chip-light-selected-active-background-color, #042759)}
|
|
22
|
-
|
|
23
|
-
.BpkSelectableChip-module__bpk-chip--primary___3SkvB{background-color:#dddde5;color:#111236}
|
|
24
|
-
|
|
25
|
-
.BpkSelectableChip-module__bpk-no-touch-support___1tmoi .BpkSelectableChip-module__bpk-chip--primary___3SkvB:hover:not(:active):not(:disabled){background-color:#cdcdd7}
|
|
26
|
-
|
|
27
|
-
.bpk-no-touch-support .BpkSelectableChip-module__bpk-chip--primary___3SkvB:hover:not(:active):not(:disabled){background-color:#cdcdd7}
|
|
28
|
-
|
|
29
|
-
.BpkSelectableChip-module__bpk-chip--primary___3SkvB:active:not(:disabled){background-color:#b2b2bf}
|
|
30
|
-
|
|
31
|
-
.BpkSelectableChip-module__bpk-chip--primary-selected___2bxFJ{color:#fff;color:var(--bpk-chip-primary-selected-text-color, #fff);background-color:#0770e3;background-color:var(--bpk-chip-primary-selected-background-color, #0770e3);box-shadow:0 0 0 1px rgba(0,0,0,0) inset}
|
|
32
|
-
|
|
33
|
-
.BpkSelectableChip-module__bpk-no-touch-support___1tmoi .BpkSelectableChip-module__bpk-chip--primary-selected___2bxFJ:hover:not(:active):not(:disabled){background-color:#084eb2;background-color:var(--bpk-chip-primary-selected-hover-background-color, #084eb2)}
|
|
34
|
-
|
|
35
|
-
.bpk-no-touch-support .BpkSelectableChip-module__bpk-chip--primary-selected___2bxFJ:hover:not(:active):not(:disabled){background-color:#084eb2;background-color:var(--bpk-chip-primary-selected-hover-background-color, #084eb2)}
|
|
36
|
-
|
|
37
|
-
.BpkSelectableChip-module__bpk-chip--primary-selected___2bxFJ:active:not(:disabled){background-color:#042759;background-color:var(--bpk-chip-primary-selected-active-background-color, #042759)}
|
|
38
|
-
|
|
39
|
-
.BpkSelectableChip-module__bpk-chip--success___2DYle{background-color:#dddde5;color:#111236}
|
|
40
|
-
|
|
41
|
-
.BpkSelectableChip-module__bpk-no-touch-support___1tmoi .BpkSelectableChip-module__bpk-chip--success___2DYle:hover:not(:active):not(:disabled){background-color:#cdcdd7}
|
|
42
|
-
|
|
43
|
-
.bpk-no-touch-support .BpkSelectableChip-module__bpk-chip--success___2DYle:hover:not(:active):not(:disabled){background-color:#cdcdd7}
|
|
44
|
-
|
|
45
|
-
.BpkSelectableChip-module__bpk-chip--success___2DYle:active:not(:disabled){background-color:#b2b2bf}
|
|
46
|
-
|
|
47
|
-
.BpkSelectableChip-module__bpk-chip--success-selected___3zgus{color:#111236;color:var(--bpk-chip-success-selected-text-color, #111236);background-color:#73cec6;background-color:var(--bpk-chip-success-selected-background-color, #73cec6)}
|
|
48
|
-
|
|
49
|
-
.BpkSelectableChip-module__bpk-no-touch-support___1tmoi .BpkSelectableChip-module__bpk-chip--success-selected___3zgus:hover:not(:active):not(:disabled){background-color:#4dc1b7;background-color:var(--bpk-chip-success-selected-hover-background-color, #4dc1b7)}
|
|
50
|
-
|
|
51
|
-
.bpk-no-touch-support .BpkSelectableChip-module__bpk-chip--success-selected___3zgus:hover:not(:active):not(:disabled){background-color:#4dc1b7;background-color:var(--bpk-chip-success-selected-hover-background-color, #4dc1b7)}
|
|
52
|
-
|
|
53
|
-
.BpkSelectableChip-module__bpk-chip--success-selected___3zgus:active:not(:disabled){background-color:#00a698;background-color:var(--bpk-chip-success-selected-active-background-color, #00a698)}
|
|
54
|
-
|
|
55
|
-
.BpkSelectableChip-module__bpk-chip--disabled___wDRvk{background-color:#dddde5;color:#cdcdd7;box-shadow:0 0 0 1px rgba(0,0,0,0) inset}
|
|
56
|
-
|
|
57
|
-
.BpkSelectableChip-module__bpk-chip__leading-accessory-view___27BeL{display:inline-flex;fill:currentColor;margin-left:0;margin-right:.5rem}
|
|
58
|
-
|
|
59
|
-
html[dir='rtl'] .BpkSelectableChip-module__bpk-chip__leading-accessory-view___27BeL{margin-left:.5rem;margin-right:0}
|
|
60
|
-
|
|
61
|
-
.BpkSelectableChip-module__bpk-chip__trailing-accessory-view___Apubp{display:inline-flex;fill:currentColor;margin-left:.5rem;margin-right:0}
|
|
62
|
-
|
|
63
|
-
html[dir='rtl'] .BpkSelectableChip-module__bpk-chip__trailing-accessory-view___Apubp{margin-left:0;margin-right:.5rem}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/* imported from BpkCloseButton.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkCloseButton-module__bpk-keyframe-spin___1ccJl{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkCloseButton-module__bpk-close-button___3KUTB{width:1.5rem;height:1.5rem;margin-right:-.1875rem;margin-left:-.1875rem;padding:0;border:0;background-color:transparent;color:#68697f;cursor:pointer;appearance:none;position:relative}
|
|
6
|
-
|
|
7
|
-
.BpkCloseButton-module__bpk-close-button___3KUTB::before{position:absolute;top:calc((-2.625rem / 2) + 50%);left:calc((-2.625rem / 2) + 50%);content:'';width:2.625rem;height:2.625rem}
|
|
8
|
-
|
|
9
|
-
.BpkCloseButton-module__bpk-no-touch-support___3x5Cj .BpkCloseButton-module__bpk-close-button___3KUTB:hover:not(:active):not(:disabled){color:#444560}
|
|
10
|
-
|
|
11
|
-
.bpk-no-touch-support .BpkCloseButton-module__bpk-close-button___3KUTB:hover:not(:active):not(:disabled){color:#444560}
|
|
12
|
-
|
|
13
|
-
.BpkCloseButton-module__bpk-close-button___3KUTB:active{color:#111236}
|
|
14
|
-
|
|
15
|
-
.BpkCloseButton-module__bpk-close-button__icon___12ULC{vertical-align:-.1875rem;fill:currentColor}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/* imported from BpkCode.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkCode-module__bpk-keyframe-spin___ZAXGq{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkCode-module__bpk-code___2BEdk{display:inline;padding:0 .375rem;background-color:#f1f2f8;color:#444560;text-align:left;text-shadow:0 .0625rem #fff;white-space:nowrap;vertical-align:bottom;border-radius:.25rem}
|
|
6
|
-
|
|
7
|
-
html[dir='rtl'] .BpkCode-module__bpk-code___2BEdk{direction:ltr}
|
|
8
|
-
|
|
9
|
-
.BpkCode-module__bpk-code--alternate___1DOST{background-color:#cddff8;text-shadow:none}
|
|
10
|
-
/* imported from BpkCodeBlock.module.scss */
|
|
11
|
-
|
|
12
|
-
@keyframes BpkCodeBlock-module__bpk-keyframe-spin___rQS4e{100%{transform:rotate(1turn)}}
|
|
13
|
-
|
|
14
|
-
.BpkCodeBlock-module__bpk-code--block___30SVv{display:block;margin:0;padding:0;background-color:transparent;white-space:inherit;overflow:auto;-ms-overflow-style:none}
|
|
15
|
-
|
|
16
|
-
.BpkCodeBlock-module__bpk-code--block___30SVv::-webkit-scrollbar{display:none}
|
|
17
|
-
|
|
18
|
-
.BpkCodeBlock-module__bpk-code__pre___hLAXQ{margin:0 0 .75rem;padding:1.5rem;background-color:#f1f2f8;border-radius:.25rem}
|
|
19
|
-
|
|
20
|
-
.BpkCodeBlock-module__bpk-code__pre--alternate___4YIK4{background-color:transparent;box-shadow:0 0 0 1px #b2b2bf inset}
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
/* imported from BpkContentContainer.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkContentContainer-module__bpk-keyframe-spin___1qj76{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkContentContainer-module__bpk-content-container___3rbAn>h1:not(:first-child),.BpkContentContainer-module__bpk-content-container___3rbAn>h2:not(:first-child),.BpkContentContainer-module__bpk-content-container___3rbAn>h3:not(:first-child),.BpkContentContainer-module__bpk-content-container___3rbAn>h4:not(:first-child){margin-top:1.875rem}
|
|
6
|
-
|
|
7
|
-
.BpkContentContainer-module__bpk-content-container___3rbAn>.BpkContentContainer-module__bpk-content-container___3rbAn{margin-bottom:.75rem}
|
|
8
|
-
|
|
9
|
-
.BpkContentContainer-module__bpk-content-container___3rbAn>*:last-child{margin-bottom:0}
|
|
10
|
-
|
|
11
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 h1{margin-top:0;margin-bottom:.75rem;font-size:3rem;line-height:3.5rem;font-weight:700;letter-spacing:-.02em}
|
|
12
|
-
|
|
13
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 h2{margin-top:0;margin-bottom:.75rem;font-size:2rem;line-height:2.5rem;font-weight:700}
|
|
14
|
-
|
|
15
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 h3{margin-top:0;margin-bottom:.75rem;font-size:1.5rem;line-height:2rem;font-weight:400}
|
|
16
|
-
|
|
17
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 h4{margin-top:0;margin-bottom:.375rem;font-size:1rem;line-height:1.5rem;font-weight:400}
|
|
18
|
-
|
|
19
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 h5{margin-top:0;margin-bottom:.75rem;font-size:.75rem;line-height:1rem;font-weight:400}
|
|
20
|
-
|
|
21
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 h6{margin-top:0;margin-bottom:.75rem;font-size:.75rem;line-height:1rem;font-weight:400}
|
|
22
|
-
|
|
23
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 a{padding:0;border:0;background-color:transparent;text-decoration:none;cursor:pointer;appearance:none;color:#0770e3;color:var(--bpk-link-color, #0770e3)}
|
|
24
|
-
|
|
25
|
-
.BpkContentContainer-module__bpk-no-touch-support___2CaUd .BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 a:hover:not(:active):not(:disabled){text-decoration:underline;color:#084eb2;color:var(--bpk-link-hover-color, #084eb2)}
|
|
26
|
-
|
|
27
|
-
.bpk-no-touch-support .BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 a:hover:not(:active):not(:disabled){text-decoration:underline;color:#084eb2;color:var(--bpk-link-hover-color, #084eb2)}
|
|
28
|
-
|
|
29
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 a:visited{color:#0770e3;color:var(--bpk-link-visited-color, #0770e3)}
|
|
30
|
-
|
|
31
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 a:active{text-decoration:underline;color:#042759;color:var(--bpk-link-active-color, #042759)}
|
|
32
|
-
|
|
33
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 p{margin-top:0;margin-bottom:.375rem;font-size:1rem;line-height:1.5rem;font-weight:400}
|
|
34
|
-
|
|
35
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 ul,.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 ol{margin-top:1rem;margin-bottom:1rem;padding-left:1.5rem}
|
|
36
|
-
|
|
37
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 ul ul,.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 ul ol,.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 ol ul,.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 ol ol{margin-top:0;margin-bottom:0;padding-top:0.5rem;padding-bottom:0.25rem}
|
|
38
|
-
|
|
39
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 ul li,.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 ol li{margin-top:0;margin-bottom:.25rem}
|
|
40
|
-
|
|
41
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 table{width:100%;margin-bottom:0.5rem;border-collapse:collapse;table-layout:fixed;box-shadow:0 0 0 1px #dddde5 }
|
|
42
|
-
|
|
43
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 table td{padding:1rem}
|
|
44
|
-
|
|
45
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 table th{padding:1rem;background-color:#f1f2f8;font-weight:normal;text-align:left}
|
|
46
|
-
|
|
47
|
-
html[dir='rtl'] .BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 table th{text-align:right}
|
|
48
|
-
|
|
49
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 code{display:inline;padding:0 .375rem;background-color:#f1f2f8;color:#444560;text-align:left;text-shadow:0 .0625rem #fff;white-space:nowrap;vertical-align:bottom;border-radius:.25rem}
|
|
50
|
-
|
|
51
|
-
html[dir='rtl'] .BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 code{direction:ltr}
|
|
52
|
-
|
|
53
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 pre{margin:0 0 .75rem;padding:1.5rem;background-color:#f1f2f8;border-radius:.25rem}
|
|
54
|
-
|
|
55
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 pre>code{display:block;margin:0;padding:0;background-color:transparent;white-space:inherit;overflow:auto;-ms-overflow-style:none}
|
|
56
|
-
|
|
57
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 pre>code::-webkit-scrollbar{display:none}
|
|
58
|
-
|
|
59
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 blockquote{margin:0 0 1rem 0;padding:1.5rem;box-shadow:2px 0 0 0 #0770e3 inset;box-shadow:2px 0 0 0 var(--bpk-blockquote-bar-color, #0770e3) inset}
|
|
60
|
-
|
|
61
|
-
html[dir='rtl'] .BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 blockquote{padding:1.5rem;border-left:0;box-shadow:-2px 0 0 0 #0770e3 inset;box-shadow:-2px 0 0 0 var(--bpk-blockquote-bar-color, #0770e3) inset}
|
|
62
|
-
|
|
63
|
-
.BpkContentContainer-module__bpk-content-container--bare-html___2O8o5 blockquote>*:last-child{margin-bottom:0}
|
|
64
|
-
|
|
65
|
-
.BpkContentContainer-module__bpk-content-container--bare-html-alternate___2HCaC code{background-color:#cddff8;text-shadow:none}
|
|
66
|
-
|
|
67
|
-
.BpkContentContainer-module__bpk-content-container--bare-html-alternate___2HCaC pre{background-color:transparent;box-shadow:0 0 0 1px #b2b2bf inset}
|
|
68
|
-
|
|
69
|
-
.BpkContentContainer-module__bpk-content-container--bare-html-alternate___2HCaC pre>code{display:block;margin:0;padding:0;background-color:transparent;white-space:inherit;overflow:auto;-ms-overflow-style:none}
|
|
70
|
-
|
|
71
|
-
.BpkContentContainer-module__bpk-content-container--bare-html-alternate___2HCaC pre>code::-webkit-scrollbar{display:none}
|
|
72
|
-
|
|
73
|
-
.BpkContentContainer-module__bpk-content-container--bare-html-alternate___2HCaC table{box-shadow:0 0 0 1px #b2b2bf }
|
|
74
|
-
|
|
75
|
-
.BpkContentContainer-module__bpk-content-container--bare-html-alternate___2HCaC table th{background-color:#fff;text-align:left;font-weight:700}
|
|
76
|
-
|
|
77
|
-
html[dir='rtl'] .BpkContentContainer-module__bpk-content-container--bare-html-alternate___2HCaC table th{text-align:right}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/* imported from BpkDataTable.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkDataTable-module__bpk-keyframe-spin___1AeUO{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkDataTable-module__bpk-data-table___2_gpB{width:100%}
|
|
6
|
-
|
|
7
|
-
.BpkDataTable-module__bpk-data-table__header-column___3uqbU{display:flex;height:100%;margin:1rem;flex-direction:row;align-items:center;outline-offset:-.25rem;font-size:.875rem;line-height:1.25rem;font-weight:700}
|
|
8
|
-
|
|
9
|
-
.BpkDataTable-module__bpk-data-table__header-column___3uqbU:hover{cursor:pointer}
|
|
10
|
-
|
|
11
|
-
.BpkDataTable-module__bpk-data-table__row___28Xo7{display:flex;flex-direction:row;align-items:center;border:1px solid #f1f2f8;border-bottom:none;outline-offset:-.25rem;color:#444560;font-size:.875rem;line-height:1.25rem;font-weight:400}
|
|
12
|
-
|
|
13
|
-
.BpkDataTable-module__bpk-data-table__row___28Xo7:last-child{border-bottom:1px solid #f1f2f8}
|
|
14
|
-
|
|
15
|
-
.BpkDataTable-module__bpk-data-table__row--clickable___3TIFU:not(.BpkDataTable-module__bpk-data-table__header-row___34MIf):hover{background-color:#f1f2f8;cursor:pointer;box-shadow:6px 0 0 0 #0770e3 inset}
|
|
16
|
-
|
|
17
|
-
html[dir='rtl'] .BpkDataTable-module__bpk-data-table__row--clickable___3TIFU:not(.BpkDataTable-module__bpk-data-table__header-row___34MIf):hover{box-shadow:-6px 0 0 0 #0770e3 inset}
|
|
18
|
-
|
|
19
|
-
.BpkDataTable-module__bpk-data-table__row--selected___273Ex{background-color:#dddde5;box-shadow:6px 0 0 0 #0770e3 inset}
|
|
20
|
-
|
|
21
|
-
html[dir='rtl'] .BpkDataTable-module__bpk-data-table__row--selected___273Ex{box-shadow:-6px 0 0 0 #0770e3 inset}
|
|
22
|
-
/* imported from BpkDataTableColumn.module.scss */
|
|
23
|
-
|
|
24
|
-
@keyframes BpkDataTableColumn-module__bpk-keyframe-spin___24z8l{100%{transform:rotate(1turn)}}
|
|
25
|
-
|
|
26
|
-
.BpkDataTableColumn-module__bpk-data-table-column___mO9YE{margin:1rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}
|
|
27
|
-
|
|
28
|
-
.BpkDataTableColumn-module__bpk-data-table-column__header___3pXGm{display:inline-block;max-width:100%;text-overflow:ellipsis;overflow:hidden}
|
|
29
|
-
|
|
30
|
-
.BpkDataTableColumn-module__bpk-data-table-column__sort-icons___3lDQi{margin:0 0 0 .75rem}
|
|
31
|
-
|
|
32
|
-
html[dir='rtl'] .BpkDataTableColumn-module__bpk-data-table-column__sort-icons___3lDQi{margin:0 .75rem 0 0}
|
|
33
|
-
|
|
34
|
-
.BpkDataTableColumn-module__bpk-data-table-column__sort-icon___1i7vp{display:block;fill:#b2b2bf}
|
|
35
|
-
|
|
36
|
-
.BpkDataTableColumn-module__bpk-data-table-column__sort-icon___1i7vp:hover{fill:#68697f}
|
|
37
|
-
|
|
38
|
-
.BpkDataTableColumn-module__bpk-data-table-column__sort-icon--selected___2LZBd,.BpkDataTableColumn-module__bpk-data-table-column__sort-icon--selected___2LZBd:hover{fill:#084eb2}
|
|
39
|
-
|
|
40
|
-
.BpkDataTableColumn-module__bpk-data-table-column__sort-icon--up___dpZ8g{margin-bottom:-0.25rem}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
/* imported from BpkDatepicker.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkDatepicker-module__bpk-keyframe-spin___1urft{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkDatepicker-module__bpk-datepicker__calendar___1Xd_X{margin:0 auto}
|
|
6
|
-
|
|
7
|
-
.BpkDatepicker-module__bpk-datepicker__input___1FaeZ{display:inline-block;width:100%}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/* imported from BpkDescriptionList.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkDescriptionList-module__bpk-keyframe-spin___2y9gB{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkDescriptionList-module__bpk-description-list___2EonP{margin:0}
|
|
6
|
-
|
|
7
|
-
.BpkDescriptionList-module__bpk-description-list__term___2BZT-{font-size:1rem;line-height:1.5rem;font-weight:700}
|
|
8
|
-
|
|
9
|
-
.BpkDescriptionList-module__bpk-description-list__details___5K1bL{margin:0;margin-left:1.5rem}
|
|
10
|
-
|
|
11
|
-
html[dir='rtl'] .BpkDescriptionList-module__bpk-description-list__details___5K1bL{margin-right:1.5rem;margin-left:0}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
/* imported from BpkDialog.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkDialog-module__bpk-keyframe-spin___2BpBn{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkDialog-module__bpk-dialog__container___3saKS{display:flex;padding:1.5rem}
|
|
6
|
-
|
|
7
|
-
@media screen\0 {.BpkDialog-module__bpk-dialog__container___3saKS{display:block}}
|
|
8
|
-
|
|
9
|
-
.BpkDialog-module__bpk-dialog__close-button___3XcD-{float:right;margin:0 0 1rem 1rem}
|
|
10
|
-
|
|
11
|
-
html[dir='rtl'] .BpkDialog-module__bpk-dialog__close-button___3XcD-{float:left;margin:0 1rem 1rem 0}
|
|
12
|
-
|
|
13
|
-
.BpkDialog-module__bpk-dialog--with-icon___1LDv3{margin-top:2rem}
|
|
14
|
-
|
|
15
|
-
.BpkDialog-module__bpk-dialog__icon___3SiKN{position:absolute;top:0;left:50%;display:flex;width:3.5rem;height:3.5rem;margin-top:-1.75rem;margin-left:-1.75rem;justify-content:center;align-items:center;border:2px #fff solid;border-radius:50%}
|
|
16
|
-
|
|
17
|
-
.BpkDialog-module__bpk-dialog__icon--primary___1y1op{background-color:#00a698}
|
|
18
|
-
|
|
19
|
-
.BpkDialog-module__bpk-dialog__icon--warning___1f1qp{background-color:#ff9400}
|
|
20
|
-
|
|
21
|
-
.BpkDialog-module__bpk-dialog__icon--destructive___3BiTv{background-color:#d1435b}
|
|
22
|
-
|
|
23
|
-
.BpkDialog-module__bpk-dialog__icon___3SiKN>svg{fill:#fff}
|
|
24
|
-
/* imported from BpkDialogInner.module.scss */
|
|
25
|
-
|
|
26
|
-
@keyframes BpkDialogInner-module__bpk-keyframe-spin___3OMAm{100%{transform:rotate(1turn)}}
|
|
27
|
-
|
|
28
|
-
.BpkDialogInner-module__bpk-dialog-inner___3Hst8{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;-webkit-tap-highlight-color:transparent;box-shadow:0px 12px 50px 0px rgba(37,32,31,0.25);border-radius:.375rem}
|
|
29
|
-
|
|
30
|
-
.BpkDialogInner-module__bpk-dialog-inner--appear___27SZP{transform:scale(0.9);opacity:0}
|
|
31
|
-
|
|
32
|
-
.BpkDialogInner-module__bpk-dialog-inner--appear-active___1m0qa{transform:scale(1);opacity:1}
|
|
33
|
-
|
|
34
|
-
.BpkDialogInner-module__bpk-dialog-inner__content___SrdJs{padding:1rem;flex:1;overflow-y:auto}
|
|
35
|
-
|
|
36
|
-
.BpkDialogInner-module__bpk-dialog-inner__flare___3spr7{height:15rem;border-radius:inherit;background-color:#0770e3}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
/* imported from BpkDrawer.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkDrawer-module__bpk-keyframe-spin___1PhXu{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkDrawer-module__bpk-drawer__container___3HvHH{position:fixed}
|
|
6
|
-
/* imported from BpkDrawerContent.module.scss */
|
|
7
|
-
|
|
8
|
-
@keyframes BpkDrawerContent-module__bpk-keyframe-spin___2-LYb{100%{transform:rotate(1turn)}}
|
|
9
|
-
|
|
10
|
-
.BpkDrawerContent-module__bpk-drawer___HHL-Q{position:fixed;right:0;display:flex;z-index:1100;width:90%;max-width:25rem;height:100%;flex-direction:column;transform:translate(100%);transition:transform 200ms ease;outline:0;background:#fff;overflow-y:scroll;box-shadow:0px 12px 50px 0px rgba(37,32,31,0.25)}
|
|
11
|
-
|
|
12
|
-
html[dir='rtl'] .BpkDrawerContent-module__bpk-drawer___HHL-Q{right:auto;left:0;transform:translate(-100%)}
|
|
13
|
-
|
|
14
|
-
@media (max-width: 32rem){.BpkDrawerContent-module__bpk-drawer___HHL-Q{width:100%;max-width:100%}}
|
|
15
|
-
|
|
16
|
-
.BpkDrawerContent-module__bpk-drawer--entering___1ZsN0,.BpkDrawerContent-module__bpk-drawer--entered___3ipbt{transform:translate(0)}
|
|
17
|
-
|
|
18
|
-
html[dir='rtl'] .BpkDrawerContent-module__bpk-drawer--entering___1ZsN0,html[dir='rtl'] .BpkDrawerContent-module__bpk-drawer--entered___3ipbt{transform:translate(0)}
|
|
19
|
-
|
|
20
|
-
.BpkDrawerContent-module__bpk-drawer--exiting___5xpVO{transition:transform 50ms ease}
|
|
21
|
-
|
|
22
|
-
.BpkDrawerContent-module__bpk-drawer--exiting___5xpVO,.BpkDrawerContent-module__bpk-drawer--exited___1xugy{transform:translate(100%)}
|
|
23
|
-
|
|
24
|
-
html[dir='rtl'] .BpkDrawerContent-module__bpk-drawer--exiting___5xpVO,html[dir='rtl'] .BpkDrawerContent-module__bpk-drawer--exited___1xugy{transform:translate(-100%)}
|
|
25
|
-
|
|
26
|
-
.BpkDrawerContent-module__bpk-drawer__header___104yx{display:flex;min-height:3rem;padding:1rem;justify-content:space-between;align-items:center;flex:0 0;box-shadow:0 -1px 0 0 #dddde5 inset}
|
|
27
|
-
|
|
28
|
-
.BpkDrawerContent-module__bpk-drawer__heading___2xbeY{margin:0;font-size:1rem;line-height:1.5rem;font-weight:700}
|
|
29
|
-
|
|
30
|
-
.BpkDrawerContent-module__bpk-drawer__heading--visually-hidden___1R2Gv{position:absolute;width:1px;height:1px;margin:-1px;padding:0;border:0;overflow:hidden;clip:rect(0 0 0 0)}
|
|
31
|
-
|
|
32
|
-
.BpkDrawerContent-module__bpk-drawer__close-button___1XWgL{float:right}
|
|
33
|
-
|
|
34
|
-
html[dir='rtl'] .BpkDrawerContent-module__bpk-drawer__close-button___1XWgL{float:left}
|
|
35
|
-
|
|
36
|
-
.BpkDrawerContent-module__bpk-drawer__content___3BjaV{height:100%;padding:1rem;flex:1 1 100%;overflow-y:auto}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/* imported from BpkFieldset.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkFieldset-module__bpk-keyframe-spin___bpqKy{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkFieldset-module__bpk-fieldset___2pjHt{margin:0;padding:0;border:0}
|
|
6
|
-
|
|
7
|
-
.BpkFieldset-module__bpk-fieldset__description___3RK97{display:block;margin-top:0.5rem;color:#68697f;font-size:.75rem;line-height:1rem;font-weight:400}
|
|
8
|
-
|
|
9
|
-
.BpkFieldset-module__bpk-fieldset__label___3Qziv{margin-bottom:0.5rem}
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
/*
|
|
4
|
-
* Backpack - Skyscanner's Design System
|
|
5
|
-
*
|
|
6
|
-
* Copyright 2016 Skyscanner Ltd
|
|
7
|
-
*
|
|
8
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
9
|
-
* you may not use this file except in compliance with the License.
|
|
10
|
-
* You may obtain a copy of the License at
|
|
11
|
-
*
|
|
12
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
13
|
-
*
|
|
14
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
15
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
16
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
17
|
-
* See the License for the specific language governing permissions and
|
|
18
|
-
* limitations under the License.
|
|
19
|
-
*/
|
|
20
|
-
const gulp = require('gulp');
|
|
21
|
-
|
|
22
|
-
const rename = require('gulp-rename');
|
|
23
|
-
|
|
24
|
-
const svgmin = require('gulp-svgmin');
|
|
25
|
-
|
|
26
|
-
const svg2react = require("./tasks/svg2react");
|
|
27
|
-
|
|
28
|
-
const svgoCommonPlugins = [{
|
|
29
|
-
removeTitle: true
|
|
30
|
-
}, {
|
|
31
|
-
removeStyleElement: true
|
|
32
|
-
}, {
|
|
33
|
-
removeEmptyContainers: true
|
|
34
|
-
}, {
|
|
35
|
-
sortAttrs: true
|
|
36
|
-
}, {
|
|
37
|
-
removeUselessDefs: true
|
|
38
|
-
}, {
|
|
39
|
-
removeEmptyText: true
|
|
40
|
-
}, {
|
|
41
|
-
removeEditorsNSData: true
|
|
42
|
-
}, {
|
|
43
|
-
removeEmptyAttrs: true
|
|
44
|
-
}, {
|
|
45
|
-
removeHiddenElems: true
|
|
46
|
-
}];
|
|
47
|
-
gulp.task('pointer-base', () => {
|
|
48
|
-
const optimised = gulp.src('src/svgs/**/*.svg').pipe(svgmin({
|
|
49
|
-
plugins: [...svgoCommonPlugins, {
|
|
50
|
-
removeAttrs: {
|
|
51
|
-
attrs: ['id', 'class', 'width', 'height', 'data-name', 'fill', 'fill-rule']
|
|
52
|
-
}
|
|
53
|
-
}]
|
|
54
|
-
})).pipe(gulp.dest('src/svgs'));
|
|
55
|
-
return optimised.pipe(svg2react()).pipe(rename({
|
|
56
|
-
extname: '.js'
|
|
57
|
-
})).pipe(gulp.dest('src/__generated__/js'));
|
|
58
|
-
});
|
|
59
|
-
gulp.task('default', gulp.series('pointer-base'));
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
/* imported from bpk-content-bubble.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes bpk-content-bubble-module__bpk-keyframe-spin___1j0K0{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.bpk-content-bubble-module__bpk-content-bubble__pointer___nBC2r{width:100%;align-items:flex-end;align-self:flex-end}
|
|
6
|
-
|
|
7
|
-
.bpk-content-bubble-module__bpk-content-bubble__wrapper___3fSYc{width:100%;height:auto;margin:0 auto;background-repeat:no-repeat;background-position:50% 60%;background-size:cover}
|
|
8
|
-
|
|
9
|
-
.bpk-content-bubble-module__bpk-content-bubble__wrapper--rounded___3eQFp{border-radius:1.3125rem}
|
|
10
|
-
|
|
11
|
-
.bpk-content-bubble-module__bpk-content-bubble__wrapper--rounded--with-pointer___e909_{border-radius:1.3125rem 1.3125rem 0 0}
|
|
12
|
-
|
|
13
|
-
.bpk-content-bubble-module__bpk-content-bubble__container___1QSOD{display:flex;height:100%;flex-direction:column}
|
|
14
|
-
|
|
15
|
-
.bpk-content-bubble-module__bpk-content-bubble__content-wrapper___3oaXx{display:flex;flex-direction:column;justify-content:center;align-items:center;flex:1 1 auto}
|
|
16
|
-
/* imported from bpk-flare-bar.module.scss */
|
|
17
|
-
|
|
18
|
-
@keyframes bpk-flare-bar-module__bpk-keyframe-spin___1Rs-k{100%{transform:rotate(1turn)}}
|
|
19
|
-
|
|
20
|
-
.bpk-flare-bar-module__bpk-flare-bar__container___3ZpVt{position:relative;display:flex;min-width:10rem;height:1.5rem;overflow:hidden}
|
|
21
|
-
|
|
22
|
-
@media (max-width: 32rem){.bpk-flare-bar-module__bpk-flare-bar__container___3ZpVt{height:1rem}}
|
|
23
|
-
|
|
24
|
-
.bpk-flare-bar-module__bpk-flare-bar__curve___1TXcV{position:absolute;bottom:-1px;width:700rem;height:1.5rem;margin-left:50%;transform:translateX(-50%);fill:#fff}
|
|
25
|
-
|
|
26
|
-
html[dir='rtl'] .bpk-flare-bar-module__bpk-flare-bar__curve___1TXcV{margin-right:50%;transform:translateX(50%)}
|
|
27
|
-
|
|
28
|
-
@media (max-width: 32rem){.bpk-flare-bar-module__bpk-flare-bar__curve___1TXcV{height:1rem}}
|
|
29
|
-
|
|
30
|
-
.bpk-flare-bar-module__bpk-flare-bar__rounded-corner___grgft{position:absolute;bottom:calc(1.5rem - 1px);left:0;width:1.3125rem;height:1.3125rem;fill:#fff}
|
|
31
|
-
|
|
32
|
-
.bpk-flare-bar-module__bpk-flare-bar__rounded-corner--trailing___6BsNp{right:0;left:auto;transform:rotate(-90deg)}
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
/*
|
|
4
|
-
* Backpack - Skyscanner's Design System
|
|
5
|
-
*
|
|
6
|
-
* Copyright 2016 Skyscanner Ltd
|
|
7
|
-
*
|
|
8
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
9
|
-
* you may not use this file except in compliance with the License.
|
|
10
|
-
* You may obtain a copy of the License at
|
|
11
|
-
*
|
|
12
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
13
|
-
*
|
|
14
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
15
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
16
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
17
|
-
* See the License for the specific language governing permissions and
|
|
18
|
-
* limitations under the License.
|
|
19
|
-
*/
|
|
20
|
-
const {
|
|
21
|
-
Transform
|
|
22
|
-
} = require('stream');
|
|
23
|
-
|
|
24
|
-
const loader = require('react-svg-loader');
|
|
25
|
-
|
|
26
|
-
const PLUGIN_NAME = 'svg2react';
|
|
27
|
-
|
|
28
|
-
module.exports = (opts = {}) => {
|
|
29
|
-
const stream = new Transform({
|
|
30
|
-
objectMode: true
|
|
31
|
-
}); // eslint-disable-next-line no-underscore-dangle
|
|
32
|
-
|
|
33
|
-
stream._transform = (file, encoding, cb) => {
|
|
34
|
-
if (file.isNull()) {
|
|
35
|
-
return cb(null, file);
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
if (file.isStream()) {
|
|
39
|
-
return cb(new Error(`${PLUGIN_NAME}: 'Streaming not supported`));
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
if (file.isBuffer()) {
|
|
43
|
-
const query = `?${JSON.stringify({
|
|
44
|
-
jsx: true,
|
|
45
|
-
svgo: opts
|
|
46
|
-
})}`;
|
|
47
|
-
return loader.apply({
|
|
48
|
-
query,
|
|
49
|
-
|
|
50
|
-
cacheable() {},
|
|
51
|
-
|
|
52
|
-
addDependency() {},
|
|
53
|
-
|
|
54
|
-
async() {
|
|
55
|
-
return (err, result) => {
|
|
56
|
-
if (err) {
|
|
57
|
-
return cb(err, null);
|
|
58
|
-
} // eslint-disable-next-line no-param-reassign
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
file.contents = Buffer.from(result);
|
|
62
|
-
return cb(null, file);
|
|
63
|
-
};
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
}, [String(file.contents)]);
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
return cb(new Error(`${PLUGIN_NAME}: Data type not supported`));
|
|
70
|
-
};
|
|
71
|
-
|
|
72
|
-
return stream;
|
|
73
|
-
};
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/* imported from BpkFloatingNotification.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkFloatingNotification-module__bpk-keyframe-spin___2UwJo{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkFloatingNotification-module__bpk-floating-notification___2HXDg{position:absolute;right:0;bottom:2rem;left:0;display:flex;max-width:25rem;margin:auto;padding:1.5rem;transition:opacity 400ms ease-in-out,transform 400ms ease-in-out;border-radius:.75rem;background:#02122c;color:#fff;box-shadow:0px 12px 50px 0px rgba(37,32,31,0.25),0px 4px 14px 0px rgba(37,32,31,0.25)}
|
|
6
|
-
|
|
7
|
-
@media (max-width: 32rem){.BpkFloatingNotification-module__bpk-floating-notification___2HXDg{max-width:100%;padding:1rem}}
|
|
8
|
-
|
|
9
|
-
.BpkFloatingNotification-module__bpk-floating-notification--leave___3aNBK{transform:translateY(0);opacity:1}
|
|
10
|
-
|
|
11
|
-
.BpkFloatingNotification-module__bpk-floating-notification--leave-active___SqeY1{transform:translateY(2rem);opacity:0}
|
|
12
|
-
|
|
13
|
-
.BpkFloatingNotification-module__bpk-floating-notification--leave-done___17oXa{opacity:0}
|
|
14
|
-
|
|
15
|
-
.BpkFloatingNotification-module__bpk-floating-notification--appear___15FRI{transform:translateY(2rem);opacity:0}
|
|
16
|
-
|
|
17
|
-
.BpkFloatingNotification-module__bpk-floating-notification--appear-active___1RE-l{transform:translateY(0);opacity:1}
|
|
18
|
-
|
|
19
|
-
.BpkFloatingNotification-module__bpk-floating-notification__button___3dt2l{min-height:0;margin:0 0 auto auto;padding:0;color:#6d9feb}
|
|
20
|
-
|
|
21
|
-
.BpkFloatingNotification-module__bpk-floating-notification__button--dark___1yUge{color:#0770e3}
|
|
22
|
-
|
|
23
|
-
.BpkFloatingNotification-module__bpk-floating-notification__icon___2U21R{margin:0.25rem 0.5rem 0 0.25rem;flex-shrink:0;text-align:bottom;fill:#fff}
|
|
24
|
-
|
|
25
|
-
.BpkFloatingNotification-module__bpk-floating-notification__icon--dark___2IPHi{fill:#111236}
|
|
26
|
-
|
|
27
|
-
.BpkFloatingNotification-module__bpk-floating-notification__text___2eK_7{margin-right:0.5rem}
|
|
28
|
-
|
|
29
|
-
.BpkFloatingNotification-module__bpk-floating-notification--dark___2el34{background:#fff;color:#111236}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/* imported from BpkFormValidation.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkFormValidation-module__bpk-keyframe-spin___2-xHu{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkFormValidation-module__bpk-form-validation___2HJZZ{position:relative;transform:translateY(-.75rem);transition:opacity 200ms ease-in-out,transform 200ms ease-in-out;opacity:0;color:#d1435b;color:var(--bpk-form-validation-text-color, #d1435b)}
|
|
6
|
-
|
|
7
|
-
.BpkFormValidation-module__bpk-form-validation__container___FNPc8{margin-top:0.5rem;font-size:.75rem}
|
|
8
|
-
|
|
9
|
-
.BpkFormValidation-module__bpk-form-validation__icon___28ixm{fill:#d1435b;fill:var(--bpk-form-validation-icon-fill, #d1435b);margin-left:0;margin-right:.375rem}
|
|
10
|
-
|
|
11
|
-
html[dir='rtl'] .BpkFormValidation-module__bpk-form-validation__icon___28ixm{margin-left:.375rem;margin-right:0}
|
|
12
|
-
|
|
13
|
-
.BpkFormValidation-module__bpk-form-validation--appear___3w6Z5{transform:translateY(0);opacity:1}
|
|
14
|
-
|
|
15
|
-
.BpkFormValidation-module__bpk-form-validation--is-checkbox___2Q-DB{display:inline-block}
|
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
/* imported from BpkGraphicPromo.module.scss */
|
|
2
|
-
|
|
3
|
-
@keyframes BpkGraphicPromo-module__bpk-keyframe-spin___3rhCQ{100%{transform:rotate(1turn)}}
|
|
4
|
-
|
|
5
|
-
.BpkGraphicPromo-module__bpk-card___3a1bZ{position:relative;display:block;background-color:#fff;color:#111236;text-decoration:none;cursor:pointer;box-shadow:0px 1px 3px 0px rgba(37,32,31,0.3);border-radius:.75rem}
|
|
6
|
-
|
|
7
|
-
.BpkGraphicPromo-module__bpk-no-touch-support___1s9Cf .BpkGraphicPromo-module__bpk-card___3a1bZ:hover:not(:active):not(:disabled)::after{opacity:1}
|
|
8
|
-
|
|
9
|
-
.bpk-no-touch-support .BpkGraphicPromo-module__bpk-card___3a1bZ:hover:not(:active):not(:disabled)::after{opacity:1}
|
|
10
|
-
|
|
11
|
-
.BpkGraphicPromo-module__bpk-card___3a1bZ::after{position:absolute;top:0;right:0;bottom:0;left:0;content:'';transition:opacity 200ms ease-in-out;opacity:0;pointer-events:none;box-shadow:0px 4px 14px 0px rgba(37,32,31,0.25);border-radius:.75rem}
|
|
12
|
-
|
|
13
|
-
@media screen\0 {.BpkGraphicPromo-module__bpk-card___3a1bZ::after{z-index:-1}}
|
|
14
|
-
|
|
15
|
-
.BpkGraphicPromo-module__bpk-card___3a1bZ:active::after{box-shadow:none}
|
|
16
|
-
|
|
17
|
-
.BpkGraphicPromo-module__bpk-graphic-promo___3dvhh{max-width:76.5rem;margin-right:auto;margin-left:auto;background-color:#0770e3;background-position:center;background-size:cover;color:#fff;box-shadow:none}
|
|
18
|
-
|
|
19
|
-
@media (max-width: 48rem){.BpkGraphicPromo-module__bpk-graphic-promo___3dvhh{padding-top:133%;box-sizing:border-box}}
|
|
20
|
-
|
|
21
|
-
.BpkGraphicPromo-module__bpk-graphic-promo___3dvhh::after{display:none}
|
|
22
|
-
|
|
23
|
-
.BpkGraphicPromo-module__bpk-graphic-promo__container___282Bh{display:flex;flex-direction:column;justify-content:center}
|
|
24
|
-
|
|
25
|
-
.BpkGraphicPromo-module__bpk-graphic-promo__container--start___3qXVf{align-items:start}
|
|
26
|
-
|
|
27
|
-
.BpkGraphicPromo-module__bpk-graphic-promo__container--center___28AQq{align-items:center}
|
|
28
|
-
|
|
29
|
-
.BpkGraphicPromo-module__bpk-graphic-promo__container--end___lbErU{align-items:end}
|
|
30
|
-
|
|
31
|
-
@media (min-width: 64.0625rem){.BpkGraphicPromo-module__bpk-graphic-promo__container___282Bh{height:28.75rem;margin-left:4rem;margin-right:2.5rem}html[dir='rtl'] .BpkGraphicPromo-module__bpk-graphic-promo__container___282Bh{margin-right:4rem}html[dir='rtl'] .BpkGraphicPromo-module__bpk-graphic-promo__container___282Bh{margin-left:2.5rem}.BpkGraphicPromo-module__bpk-graphic-promo__container--center___28AQq>*{margin-left:0;margin-right:1.5rem}html[dir='rtl'] .BpkGraphicPromo-module__bpk-graphic-promo__container--center___28AQq>*{margin-left:1.5rem;margin-right:0}}
|
|
32
|
-
|
|
33
|
-
@media (max-width: 64rem){.BpkGraphicPromo-module__bpk-graphic-promo__container___282Bh{height:22.5rem;margin-left:2.5rem;margin-right:2rem}html[dir='rtl'] .BpkGraphicPromo-module__bpk-graphic-promo__container___282Bh{margin-right:2.5rem}html[dir='rtl'] .BpkGraphicPromo-module__bpk-graphic-promo__container___282Bh{margin-left:2rem}.BpkGraphicPromo-module__bpk-graphic-promo__container--center___28AQq>*{margin-left:0;margin-right:.5rem}html[dir='rtl'] .BpkGraphicPromo-module__bpk-graphic-promo__container--center___28AQq>*{margin-left:.5rem;margin-right:0}}
|
|
34
|
-
|
|
35
|
-
@media (max-width: 48rem){.BpkGraphicPromo-module__bpk-graphic-promo__container___282Bh{padding:2rem;justify-content:space-between;align-items:start;text-align:start;margin-left:0;margin-right:0;position:absolute;top:0;right:0;left:0;height:100%}html[dir='rtl'] .BpkGraphicPromo-module__bpk-graphic-promo__container___282Bh{margin-left:0;margin-right:0}.BpkGraphicPromo-module__bpk-graphic-promo__container--inverted___6iGGA{flex-direction:column-reverse}.BpkGraphicPromo-module__bpk-graphic-promo__container___282Bh>*{margin-left:0;margin-right:0}html[dir='rtl'] .BpkGraphicPromo-module__bpk-graphic-promo__container___282Bh>*{margin-left:0;margin-right:0}}
|
|
36
|
-
|
|
37
|
-
@media (max-width: 22.4375rem){.BpkGraphicPromo-module__bpk-graphic-promo__container___282Bh{padding:1.5rem}}
|
|
38
|
-
|
|
39
|
-
.BpkGraphicPromo-module__bpk-graphic-promo__tagline___1rMKz{margin-bottom:.5rem;font-size:1rem;line-height:1.25rem;font-weight:700}
|
|
40
|
-
|
|
41
|
-
@media (max-width: 64rem){.BpkGraphicPromo-module__bpk-graphic-promo__tagline___1rMKz{font-size:1rem;line-height:1.5rem;font-weight:700}}
|
|
42
|
-
|
|
43
|
-
@media (max-width: 48rem){.BpkGraphicPromo-module__bpk-graphic-promo__tagline___1rMKz{font-size:1.5rem;line-height:2rem;font-weight:400}}
|
|
44
|
-
|
|
45
|
-
@media (max-width: 22.4375rem){.BpkGraphicPromo-module__bpk-graphic-promo__tagline___1rMKz{font-size:1rem;line-height:1.5rem;font-weight:700}}
|
|
46
|
-
|
|
47
|
-
@media (min-width: 64.0625rem){.BpkGraphicPromo-module__bpk-graphic-promo__headline___3AjNr{font-size:3rem;line-height:3.5rem;font-weight:700;letter-spacing:-.02em}.BpkGraphicPromo-module__bpk-graphic-promo__headline___3AjNr:not(:last-child){margin-bottom:.5rem}}
|
|
48
|
-
|
|
49
|
-
@media (max-width: 64rem){.BpkGraphicPromo-module__bpk-graphic-promo__headline___3AjNr{font-size:2.5rem;line-height:3rem;font-weight:700}.BpkGraphicPromo-module__bpk-graphic-promo__headline___3AjNr:not(:last-child){margin-bottom:.5rem}}
|
|
50
|
-
|
|
51
|
-
@media (max-width: 48rem){.BpkGraphicPromo-module__bpk-graphic-promo__headline___3AjNr{margin-bottom:.5rem}}
|
|
52
|
-
|
|
53
|
-
@media (max-width: 32rem){.BpkGraphicPromo-module__bpk-graphic-promo__headline___3AjNr{font-size:2rem;line-height:2.5rem;font-weight:700}}
|
|
54
|
-
|
|
55
|
-
.BpkGraphicPromo-module__bpk-graphic-promo__subheading___3dEbI{font-size:1rem;line-height:1.5rem;font-weight:400}
|
|
56
|
-
|
|
57
|
-
@media (max-width: 64rem){.BpkGraphicPromo-module__bpk-graphic-promo__subheading___3dEbI{font-size:1rem;line-height:1.25rem;font-weight:700}}
|
|
58
|
-
|
|
59
|
-
@media (max-width: 48rem){.BpkGraphicPromo-module__bpk-graphic-promo__subheading___3dEbI{font-size:1.5rem;line-height:1.75rem;font-weight:700}}
|
|
60
|
-
|
|
61
|
-
@media (max-width: 32rem){.BpkGraphicPromo-module__bpk-graphic-promo__subheading___3dEbI{font-size:1rem;line-height:1.25rem;font-weight:700}}
|
|
62
|
-
|
|
63
|
-
.BpkGraphicPromo-module__bpk-graphic-promo__promo-content___1vJYk,.BpkGraphicPromo-module__bpk-graphic-promo__sponsor-content___2zlXa{display:flex;flex-direction:column}
|
|
64
|
-
|
|
65
|
-
.BpkGraphicPromo-module__bpk-graphic-promo__promo-content--start___1GvKn,.BpkGraphicPromo-module__bpk-graphic-promo__sponsor-content--start___1FJtw{align-items:start;text-align:start}
|
|
66
|
-
|
|
67
|
-
.BpkGraphicPromo-module__bpk-graphic-promo__promo-content--center___356uY,.BpkGraphicPromo-module__bpk-graphic-promo__sponsor-content--center___2x6Gl{align-items:center;text-align:center}
|
|
68
|
-
|
|
69
|
-
.BpkGraphicPromo-module__bpk-graphic-promo__promo-content--end___1dMSX,.BpkGraphicPromo-module__bpk-graphic-promo__sponsor-content--end___pvTaE{align-items:start;text-align:start}
|
|
70
|
-
|
|
71
|
-
@media (min-width: 64.0625rem){.BpkGraphicPromo-module__bpk-graphic-promo__promo-content___1vJYk,.BpkGraphicPromo-module__bpk-graphic-promo__sponsor-content___2zlXa{width:22.5rem}}
|
|
72
|
-
|
|
73
|
-
@media (max-width: 64rem){.BpkGraphicPromo-module__bpk-graphic-promo__promo-content___1vJYk,.BpkGraphicPromo-module__bpk-graphic-promo__sponsor-content___2zlXa{width:20rem}}
|
|
74
|
-
|
|
75
|
-
@media (max-width: 48rem){.BpkGraphicPromo-module__bpk-graphic-promo__promo-content___1vJYk,.BpkGraphicPromo-module__bpk-graphic-promo__sponsor-content___2zlXa{width:initial;align-items:start;text-align:start}}
|
|
76
|
-
|
|
77
|
-
.BpkGraphicPromo-module__bpk-graphic-promo__sponsor-content___2zlXa{display:flex;margin-bottom:1rem;flex-direction:column}
|
|
78
|
-
|
|
79
|
-
@media (max-width: 48rem){.BpkGraphicPromo-module__bpk-graphic-promo__sponsor-content___2zlXa{margin-bottom:initial}}
|
|
80
|
-
|
|
81
|
-
.BpkGraphicPromo-module__bpk-graphic-promo__sponsor-label___31lPk{margin-bottom:0.25rem;font-size:1rem;line-height:1.5rem;font-weight:700}
|
|
82
|
-
|
|
83
|
-
@media (max-width: 48rem){.BpkGraphicPromo-module__bpk-graphic-promo__sponsor-label___31lPk{margin-bottom:.5rem;font-size:1.5rem;line-height:1.75rem;font-weight:700}}
|
|
84
|
-
|
|
85
|
-
@media (max-width: 22.4375rem){.BpkGraphicPromo-module__bpk-graphic-promo__sponsor-label___31lPk{margin-bottom:0.25rem;font-size:1rem;line-height:1.5rem;font-weight:700}}
|
|
86
|
-
|
|
87
|
-
.BpkGraphicPromo-module__bpk-graphic-promo__sponsor-logo___3KmrJ{width:auto;max-width:9.25rem;height:auto;max-height:3.75rem}
|
|
88
|
-
|
|
89
|
-
.BpkGraphicPromo-module__bpk-graphic-promo__cta___3imd_{margin-top:2rem}
|
|
90
|
-
|
|
91
|
-
@media (max-width: 48rem){.BpkGraphicPromo-module__bpk-graphic-promo__cta___3imd_{display:none}}
|