@skyscanner/backpack-web 0.0.1
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/bpk-animate-height/README.md +55 -0
- package/bpk-animate-height/examples.js +67 -0
- package/bpk-animate-height/index.js +21 -0
- package/bpk-animate-height/package.json +26 -0
- package/bpk-animate-height/src/AnimateHeight.js +184 -0
- package/bpk-component-accordion/README.md +129 -0
- package/bpk-component-accordion/examples.js +316 -0
- package/bpk-component-accordion/index.js +34 -0
- package/bpk-component-accordion/package.json +31 -0
- package/bpk-component-accordion/src/BpkAccordion.js +53 -0
- 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 +150 -0
- package/bpk-component-accordion/src/BpkAccordionItem.module.css +18 -0
- package/bpk-component-accordion/src/BpkAccordionItem.module.scss +117 -0
- package/bpk-component-accordion/src/themeAttributes.js +25 -0
- package/bpk-component-accordion/src/withAccordionItemState.js +88 -0
- package/bpk-component-accordion/src/withSingleItemAccordionState.js +95 -0
- package/bpk-component-aria-live/README.md +42 -0
- package/bpk-component-aria-live/examples.js +248 -0
- package/bpk-component-aria-live/examples.module.css +18 -0
- package/bpk-component-aria-live/examples.module.scss +65 -0
- package/bpk-component-aria-live/index.js +27 -0
- package/bpk-component-aria-live/package.json +31 -0
- package/bpk-component-aria-live/src/BpkAriaLive.js +66 -0
- 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/examples.js +201 -0
- package/bpk-component-autosuggest/index.js +25 -0
- package/bpk-component-autosuggest/package.json +29 -0
- package/bpk-component-autosuggest/src/BpkAutosuggest.js +78 -0
- 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 +106 -0
- package/bpk-component-badge/BadgeLayout.js +54 -0
- package/bpk-component-badge/BpkBadgeLayout.module.css +18 -0
- package/bpk-component-badge/BpkBadgeLayout.module.scss +36 -0
- package/bpk-component-badge/README.md +39 -0
- package/bpk-component-badge/examples.js +207 -0
- package/bpk-component-badge/index.js +26 -0
- package/bpk-component-badge/package.json +29 -0
- package/bpk-component-badge/src/BpkBadge.js +91 -0
- package/bpk-component-badge/src/BpkBadge.module.css +18 -0
- package/bpk-component-badge/src/BpkBadge.module.scss +55 -0
- package/bpk-component-badge/src/themeAttributes.js +23 -0
- package/bpk-component-banner-alert/README.md +153 -0
- package/bpk-component-banner-alert/examples.js +253 -0
- package/bpk-component-banner-alert/examples.module.css +18 -0
- package/bpk-component-banner-alert/examples.module.scss +27 -0
- package/bpk-component-banner-alert/index.js +34 -0
- package/bpk-component-banner-alert/package.json +34 -0
- package/bpk-component-banner-alert/src/AnimateAndFade.js +184 -0
- 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 +37 -0
- 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 -0
- package/bpk-component-banner-alert/src/BpkBannerAlertExpandable.js +63 -0
- package/bpk-component-banner-alert/src/BpkBannerAlertInner.js +261 -0
- package/bpk-component-banner-alert/src/common-types.js +70 -0
- package/bpk-component-banner-alert/src/themeAttributes.js +24 -0
- package/bpk-component-banner-alert/src/withBannerAlertState.js +184 -0
- package/bpk-component-barchart/README.md +189 -0
- package/bpk-component-barchart/data.json +102 -0
- package/bpk-component-barchart/examples.js +334 -0
- package/bpk-component-barchart/hocs.js +67 -0
- package/bpk-component-barchart/index.js +38 -0
- package/bpk-component-barchart/package.json +35 -0
- package/bpk-component-barchart/src/BpkBarchart.js +336 -0
- 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 +152 -0
- 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 +165 -0
- package/bpk-component-barchart/src/BpkBarchartDefs.js +48 -0
- package/bpk-component-barchart/src/BpkChartAxis.js +185 -0
- package/bpk-component-barchart/src/BpkChartAxis.module.css +18 -0
- package/bpk-component-barchart/src/BpkChartAxis.module.scss +37 -0
- package/bpk-component-barchart/src/BpkChartDataTable.js +76 -0
- 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 +118 -0
- 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 +55 -0
- package/bpk-component-barchart/src/RTLtransforms.js +55 -0
- package/bpk-component-barchart/src/customPropTypes.js +51 -0
- package/bpk-component-barchart/src/orientation.js +22 -0
- package/bpk-component-barchart/src/themeAttributes.js +26 -0
- package/bpk-component-barchart/src/utils.js +43 -0
- package/bpk-component-barchart/stories.module.css +18 -0
- package/bpk-component-barchart/stories.module.scss +37 -0
- package/bpk-component-blockquote/README.md +35 -0
- package/bpk-component-blockquote/examples.js +33 -0
- package/bpk-component-blockquote/index.js +23 -0
- package/bpk-component-blockquote/package.json +24 -0
- package/bpk-component-blockquote/src/BpkBlockquote.js +50 -0
- package/bpk-component-blockquote/src/BpkBlockquote.module.css +18 -0
- package/bpk-component-blockquote/src/BpkBlockquote.module.scss +29 -0
- package/bpk-component-blockquote/src/themeAttributes.js +19 -0
- package/bpk-component-breadcrumb/README.md +58 -0
- package/bpk-component-breadcrumb/examples.js +57 -0
- package/bpk-component-breadcrumb/index.js +31 -0
- package/bpk-component-breadcrumb/package.json +27 -0
- package/bpk-component-breadcrumb/src/BpkBreadcrumb.js +111 -0
- 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 +92 -0
- 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/examples.js +72 -0
- package/bpk-component-breakpoint/examples.module.css +18 -0
- package/bpk-component-breakpoint/examples.module.scss +36 -0
- package/bpk-component-breakpoint/index.js +24 -0
- package/bpk-component-breakpoint/package.json +28 -0
- package/bpk-component-breakpoint/src/BpkBreakpoint.js +65 -0
- package/bpk-component-button/BpkButtonDestructive.js +21 -0
- package/bpk-component-button/BpkButtonFeatured.js +21 -0
- package/bpk-component-button/BpkButtonLink.js +21 -0
- package/bpk-component-button/BpkButtonOutline.js +21 -0
- package/bpk-component-button/BpkButtonPrimary.js +21 -0
- package/bpk-component-button/BpkButtonSecondary.js +21 -0
- package/bpk-component-button/BpkButtonStory.module.css +18 -0
- package/bpk-component-button/BpkButtonStory.module.scss +23 -0
- package/bpk-component-button/README.md +108 -0
- package/bpk-component-button/examples.js +213 -0
- package/bpk-component-button/index.js +46 -0
- package/bpk-component-button/package.json +26 -0
- package/bpk-component-button/src/BpkButton.js +93 -0
- package/bpk-component-button/src/BpkButtonBase.js +122 -0
- 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 +48 -0
- 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 +48 -0
- 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 +61 -0
- package/bpk-component-button/src/BpkButtonLink.module.css +18 -0
- package/bpk-component-button/src/BpkButtonLink.module.scss +29 -0
- package/bpk-component-button/src/BpkButtonOutline.js +48 -0
- 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 +33 -0
- package/bpk-component-button/src/BpkButtonSecondary.js +48 -0
- 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/common-types.js +62 -0
- package/bpk-component-button/src/commonButtonTests.js +116 -0
- package/bpk-component-button/src/themeAttributes.js +65 -0
- package/bpk-component-button/themeAttributes.js +27 -0
- package/bpk-component-calendar/DOCS.md +29 -0
- package/bpk-component-calendar/README.md +406 -0
- package/bpk-component-calendar/coloured-calendar-example.js +106 -0
- package/bpk-component-calendar/examples-components.js +299 -0
- package/bpk-component-calendar/examples.js +369 -0
- package/bpk-component-calendar/index.js +60 -0
- 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 +371 -0
- package/bpk-component-calendar/src/BpkCalendarDate.js +227 -0
- package/bpk-component-calendar/src/BpkCalendarDate.module.css +18 -0
- package/bpk-component-calendar/src/BpkCalendarDate.module.scss +164 -0
- package/bpk-component-calendar/src/BpkCalendarGrid.js +221 -0
- package/bpk-component-calendar/src/BpkCalendarGrid.module.css +18 -0
- package/bpk-component-calendar/src/BpkCalendarGrid.module.scss +70 -0
- package/bpk-component-calendar/src/BpkCalendarGridHeader.js +109 -0
- package/bpk-component-calendar/src/BpkCalendarGridHeader.module.css +18 -0
- package/bpk-component-calendar/src/BpkCalendarGridHeader.module.scss +53 -0
- package/bpk-component-calendar/src/BpkCalendarGridTransition.js +219 -0
- 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 +175 -0
- 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 +452 -0
- package/bpk-component-calendar/src/_variables.scss +24 -0
- package/bpk-component-calendar/src/composeCalendar.js +211 -0
- package/bpk-component-calendar/src/custom-proptypes.js +94 -0
- package/bpk-component-calendar/src/date-utils.js +222 -0
- package/bpk-component-calendar/src/themeAttributes.js +30 -0
- package/bpk-component-calendar/src/utils.js +61 -0
- package/bpk-component-calendar/test-utils.js +302 -0
- package/bpk-component-card/README.md +34 -0
- package/bpk-component-card/examples.js +91 -0
- package/bpk-component-card/index.js +22 -0
- package/bpk-component-card/package.json +28 -0
- package/bpk-component-card/src/BpkCard.js +111 -0
- 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/examples.js +197 -0
- package/bpk-component-checkbox/index.js +25 -0
- package/bpk-component-checkbox/package.json +29 -0
- package/bpk-component-checkbox/src/BpkCheckbox.js +132 -0
- 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 +21 -0
- package/bpk-component-chip/README.md +111 -0
- package/bpk-component-chip/examples.js +340 -0
- package/bpk-component-chip/examples.module.css +18 -0
- package/bpk-component-chip/examples.module.scss +33 -0
- package/bpk-component-chip/index.js +34 -0
- package/bpk-component-chip/package.json +29 -0
- package/bpk-component-chip/src/BpkDismissibleChip.js +55 -0
- package/bpk-component-chip/src/BpkSelectableChip.js +104 -0
- 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 +60 -0
- package/bpk-component-chip/src/themeAttributes.js +34 -0
- package/bpk-component-close-button/README.md +27 -0
- package/bpk-component-close-button/examples.js +30 -0
- package/bpk-component-close-button/index.js +23 -0
- package/bpk-component-close-button/package.json +28 -0
- package/bpk-component-close-button/src/BpkCloseButton.js +73 -0
- 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/examples.js +56 -0
- package/bpk-component-code/index.js +23 -0
- package/bpk-component-code/package.json +24 -0
- package/bpk-component-code/src/BpkCode.js +64 -0
- 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 +62 -0
- 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/examples.js +307 -0
- package/bpk-component-content-container/index.js +21 -0
- package/bpk-component-content-container/package.json +24 -0
- package/bpk-component-content-container/src/BpkContentContainer.js +84 -0
- 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/examples.js +138 -0
- package/bpk-component-datatable/index.js +21 -0
- package/bpk-component-datatable/package.json +30 -0
- package/bpk-component-datatable/src/BpkDataTable.js +196 -0
- package/bpk-component-datatable/src/BpkDataTable.module.css +18 -0
- package/bpk-component-datatable/src/BpkDataTable.module.scss +92 -0
- package/bpk-component-datatable/src/BpkDataTableColumn.js +63 -0
- 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 +109 -0
- package/bpk-component-datatable/src/common-types.js +50 -0
- package/bpk-component-datatable/src/hasChildrenOfType.js +59 -0
- package/bpk-component-datatable/src/sort-types.js +29 -0
- package/bpk-component-datatable/src/sorter.js +166 -0
- package/bpk-component-datatable/src/utils.js +30 -0
- package/bpk-component-datepicker/README.md +177 -0
- package/bpk-component-datepicker/examples.js +660 -0
- package/bpk-component-datepicker/index.js +25 -0
- package/bpk-component-datepicker/package.json +33 -0
- package/bpk-component-datepicker/src/BpkDatepicker.js +366 -0
- package/bpk-component-datepicker/src/BpkDatepicker.module.css +18 -0
- package/bpk-component-datepicker/src/BpkDatepicker.module.scss +25 -0
- package/bpk-component-datepicker/src/themeAttributes.js +29 -0
- package/bpk-component-description-list/README.md +46 -0
- package/bpk-component-description-list/examples.js +49 -0
- package/bpk-component-description-list/index.js +23 -0
- package/bpk-component-description-list/package.json +24 -0
- package/bpk-component-description-list/src/BpkDescriptionDetails.js +21 -0
- package/bpk-component-description-list/src/BpkDescriptionList.js +21 -0
- 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 +21 -0
- package/bpk-component-description-list/src/ComponentFactory.js +54 -0
- package/bpk-component-dialog/README.md +105 -0
- package/bpk-component-dialog/examples.js +182 -0
- package/bpk-component-dialog/examples.module.css +18 -0
- package/bpk-component-dialog/examples.module.scss +25 -0
- package/bpk-component-dialog/index.js +26 -0
- package/bpk-component-dialog/package.json +32 -0
- package/bpk-component-dialog/src/BpkDialog.js +89 -0
- 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 +89 -0
- 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 +99 -0
- package/bpk-component-dialog/stories.css +1 -0
- package/bpk-component-drawer/README.md +90 -0
- package/bpk-component-drawer/examples.js +271 -0
- package/bpk-component-drawer/examples.module.css +18 -0
- package/bpk-component-drawer/examples.module.scss +34 -0
- package/bpk-component-drawer/index.js +25 -0
- package/bpk-component-drawer/package.json +34 -0
- package/bpk-component-drawer/src/BpkDrawer.js +104 -0
- 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 +168 -0
- 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 +23 -0
- package/bpk-component-fieldset/README.md +73 -0
- package/bpk-component-fieldset/examples.js +527 -0
- package/bpk-component-fieldset/examples.module.css +18 -0
- package/bpk-component-fieldset/examples.module.scss +46 -0
- package/bpk-component-fieldset/index.js +30 -0
- package/bpk-component-fieldset/package.json +36 -0
- package/bpk-component-fieldset/src/BpkFieldset.js +193 -0
- 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 +19 -0
- package/bpk-component-flare/README.md +52 -0
- package/bpk-component-flare/examples.js +158 -0
- package/bpk-component-flare/examples.module.css +18 -0
- package/bpk-component-flare/examples.module.scss +66 -0
- package/bpk-component-flare/index.js +25 -0
- package/bpk-component-flare/package.json +29 -0
- package/bpk-component-flare/src/BpkContentBubble.js +102 -0
- package/bpk-component-flare/src/BpkFlareBar.js +76 -0
- package/bpk-component-flare/src/__generated__/js/corner-radius.js +5 -0
- package/bpk-component-flare/src/__generated__/js/pointer.js +5 -0
- 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-form-validation/README.md +33 -0
- package/bpk-component-form-validation/examples.js +171 -0
- package/bpk-component-form-validation/examples.module.css +18 -0
- package/bpk-component-form-validation/examples.module.scss +39 -0
- package/bpk-component-form-validation/index.js +23 -0
- package/bpk-component-form-validation/package.json +34 -0
- package/bpk-component-form-validation/src/BpkFormValidation.js +84 -0
- 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 +19 -0
- package/bpk-component-grid/README.md +90 -0
- package/bpk-component-grid/examples.js +796 -0
- package/bpk-component-grid/index.js +25 -0
- package/bpk-component-grid/package.json +24 -0
- package/bpk-component-grid/src/BpkGridColumn.js +117 -0
- 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 +61 -0
- 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 +56 -0
- 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/examples.js +25 -0
- package/bpk-component-grid-toggle/index.js +21 -0
- package/bpk-component-grid-toggle/package.json +25 -0
- package/bpk-component-grid-toggle/src/BpkGridToggle.js +95 -0
- 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-heading/README.md +31 -0
- package/bpk-component-heading/examples.js +36 -0
- package/bpk-component-heading/index.js +23 -0
- package/bpk-component-heading/package.json +25 -0
- package/bpk-component-heading/src/BpkHeading.js +70 -0
- package/bpk-component-heading/src/BpkHeading.module.css +18 -0
- package/bpk-component-heading/src/BpkHeading.module.scss +49 -0
- package/bpk-component-horizontal-nav/README.md +103 -0
- package/bpk-component-horizontal-nav/examples.js +189 -0
- package/bpk-component-horizontal-nav/examples.module.css +18 -0
- package/bpk-component-horizontal-nav/examples.module.scss +48 -0
- package/bpk-component-horizontal-nav/index.js +32 -0
- package/bpk-component-horizontal-nav/package.json +30 -0
- package/bpk-component-horizontal-nav/src/BpkHorizontalNav.js +211 -0
- 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 +126 -0
- 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 +33 -0
- package/bpk-component-icon/examples.js +152 -0
- package/bpk-component-icon/index.js +49 -0
- package/bpk-component-icon/lg/accessibility.js +8 -0
- package/bpk-component-icon/lg/account--add.js +8 -0
- package/bpk-component-icon/lg/account--female.js +8 -0
- package/bpk-component-icon/lg/account--id-card.js +8 -0
- package/bpk-component-icon/lg/account--name.js +8 -0
- package/bpk-component-icon/lg/account--permit.js +8 -0
- package/bpk-component-icon/lg/account-circle.js +8 -0
- package/bpk-component-icon/lg/account.js +8 -0
- package/bpk-component-icon/lg/add-circle.js +8 -0
- package/bpk-component-icon/lg/adult.js +8 -0
- package/bpk-component-icon/lg/aircon.js +8 -0
- package/bpk-component-icon/lg/aircraft.js +8 -0
- package/bpk-component-icon/lg/airline--multiple.js +8 -0
- package/bpk-component-icon/lg/airline.js +8 -0
- package/bpk-component-icon/lg/airports.js +8 -0
- package/bpk-component-icon/lg/alert--active.js +8 -0
- package/bpk-component-icon/lg/alert--add.js +8 -0
- package/bpk-component-icon/lg/alert--expired.js +8 -0
- package/bpk-component-icon/lg/alert--remove.js +8 -0
- package/bpk-component-icon/lg/arrow-down.js +8 -0
- package/bpk-component-icon/lg/arrow-left.js +8 -0
- package/bpk-component-icon/lg/arrow-right.js +8 -0
- package/bpk-component-icon/lg/arrow-up.js +8 -0
- package/bpk-component-icon/lg/award.js +8 -0
- package/bpk-component-icon/lg/baby-carriage.js +8 -0
- package/bpk-component-icon/lg/baggage--add.js +8 -0
- package/bpk-component-icon/lg/baggage--remove.js +8 -0
- package/bpk-component-icon/lg/baggage-cross.js +8 -0
- package/bpk-component-icon/lg/baggage-tick.js +8 -0
- package/bpk-component-icon/lg/baggage.js +8 -0
- package/bpk-component-icon/lg/bar.js +8 -0
- package/bpk-component-icon/lg/beach.js +8 -0
- package/bpk-component-icon/lg/beer.js +8 -0
- package/bpk-component-icon/lg/breakfast-cross.js +8 -0
- package/bpk-component-icon/lg/breakfast-tick.js +8 -0
- package/bpk-component-icon/lg/bus.js +8 -0
- package/bpk-component-icon/lg/business.js +8 -0
- package/bpk-component-icon/lg/cafe.js +8 -0
- package/bpk-component-icon/lg/calendar.js +8 -0
- package/bpk-component-icon/lg/call-back.js +8 -0
- package/bpk-component-icon/lg/camera.js +8 -0
- package/bpk-component-icon/lg/camper-van.js +8 -0
- package/bpk-component-icon/lg/car-door.js +8 -0
- package/bpk-component-icon/lg/car-wash.js +8 -0
- package/bpk-component-icon/lg/cars-flexible.js +8 -0
- package/bpk-component-icon/lg/cars.js +8 -0
- package/bpk-component-icon/lg/center-location.js +8 -0
- package/bpk-component-icon/lg/chart.js +8 -0
- package/bpk-component-icon/lg/chauffeur.js +8 -0
- package/bpk-component-icon/lg/chevron-down.js +8 -0
- package/bpk-component-icon/lg/chevron-left.js +8 -0
- package/bpk-component-icon/lg/chevron-right.js +8 -0
- package/bpk-component-icon/lg/chevron-up.js +8 -0
- package/bpk-component-icon/lg/child-seat.js +8 -0
- package/bpk-component-icon/lg/child.js +8 -0
- package/bpk-component-icon/lg/city-center.js +8 -0
- package/bpk-component-icon/lg/city.js +8 -0
- package/bpk-component-icon/lg/clean-policy.js +8 -0
- package/bpk-component-icon/lg/clean.js +8 -0
- package/bpk-component-icon/lg/cleaning-medical.js +8 -0
- package/bpk-component-icon/lg/cloakroom.js +8 -0
- package/bpk-component-icon/lg/close-circle.js +8 -0
- package/bpk-component-icon/lg/close.js +8 -0
- package/bpk-component-icon/lg/collapse.js +8 -0
- package/bpk-component-icon/lg/content--copy.js +8 -0
- package/bpk-component-icon/lg/content--event.js +8 -0
- package/bpk-component-icon/lg/content--guides.js +8 -0
- package/bpk-component-icon/lg/currency.js +8 -0
- package/bpk-component-icon/lg/data.js +8 -0
- package/bpk-component-icon/lg/deals.js +8 -0
- package/bpk-component-icon/lg/depart.js +8 -0
- package/bpk-component-icon/lg/device-mid.js +8 -0
- package/bpk-component-icon/lg/device-wide.js +8 -0
- package/bpk-component-icon/lg/direct.js +8 -0
- package/bpk-component-icon/lg/document-csv.js +8 -0
- package/bpk-component-icon/lg/document-pdf.js +8 -0
- package/bpk-component-icon/lg/download.js +8 -0
- package/bpk-component-icon/lg/duration.js +8 -0
- package/bpk-component-icon/lg/eco-leaf.js +8 -0
- package/bpk-component-icon/lg/edit.js +8 -0
- package/bpk-component-icon/lg/education.js +8 -0
- package/bpk-component-icon/lg/electric.js +8 -0
- package/bpk-component-icon/lg/end-call.js +8 -0
- package/bpk-component-icon/lg/estimated.js +8 -0
- package/bpk-component-icon/lg/exclamation-circle.js +8 -0
- package/bpk-component-icon/lg/exclamation.js +8 -0
- package/bpk-component-icon/lg/expand.js +8 -0
- package/bpk-component-icon/lg/explore.js +8 -0
- package/bpk-component-icon/lg/face--blank.js +8 -0
- package/bpk-component-icon/lg/face--happy.js +8 -0
- package/bpk-component-icon/lg/face--sad.js +8 -0
- package/bpk-component-icon/lg/face-id.js +8 -0
- package/bpk-component-icon/lg/face-mask.js +8 -0
- package/bpk-component-icon/lg/family.js +8 -0
- package/bpk-component-icon/lg/fast-track.js +8 -0
- package/bpk-component-icon/lg/fast-train.js +8 -0
- package/bpk-component-icon/lg/filter.js +8 -0
- package/bpk-component-icon/lg/fingerprint.js +8 -0
- package/bpk-component-icon/lg/flag.js +8 -0
- package/bpk-component-icon/lg/flask.js +8 -0
- package/bpk-component-icon/lg/flight-flexible.js +8 -0
- package/bpk-component-icon/lg/flight-landing.js +8 -0
- package/bpk-component-icon/lg/flight-takeoff.js +8 -0
- package/bpk-component-icon/lg/flight.js +8 -0
- package/bpk-component-icon/lg/food.js +8 -0
- package/bpk-component-icon/lg/gears-automatic-circle.js +8 -0
- package/bpk-component-icon/lg/gears-automatic.js +8 -0
- package/bpk-component-icon/lg/gears-manual-circle.js +8 -0
- package/bpk-component-icon/lg/gears-manual.js +8 -0
- package/bpk-component-icon/lg/globe.js +8 -0
- package/bpk-component-icon/lg/grid-layout.js +8 -0
- package/bpk-component-icon/lg/headset.js +8 -0
- package/bpk-component-icon/lg/health-fitness.js +8 -0
- package/bpk-component-icon/lg/heart--outline.js +8 -0
- package/bpk-component-icon/lg/heart.js +8 -0
- package/bpk-component-icon/lg/help-circle.js +8 -0
- package/bpk-component-icon/lg/help.js +8 -0
- package/bpk-component-icon/lg/hide.js +8 -0
- package/bpk-component-icon/lg/hotel-flexible.js +8 -0
- package/bpk-component-icon/lg/hotels--disabled-facilities.js +8 -0
- package/bpk-component-icon/lg/hotels--jacuzzi.js +8 -0
- package/bpk-component-icon/lg/hotels--pets-allowed.js +8 -0
- package/bpk-component-icon/lg/hotels--smoking.js +8 -0
- package/bpk-component-icon/lg/hotels.js +8 -0
- package/bpk-component-icon/lg/infant.js +8 -0
- package/bpk-component-icon/lg/information--language-alert.js +8 -0
- package/bpk-component-icon/lg/information--language-question.js +8 -0
- package/bpk-component-icon/lg/information--language.js +8 -0
- package/bpk-component-icon/lg/information-circle.js +8 -0
- package/bpk-component-icon/lg/information.js +8 -0
- package/bpk-component-icon/lg/insurance.js +8 -0
- package/bpk-component-icon/lg/key.js +8 -0
- package/bpk-component-icon/lg/keypad.js +8 -0
- package/bpk-component-icon/lg/landmark.js +8 -0
- package/bpk-component-icon/lg/language.js +8 -0
- package/bpk-component-icon/lg/legroom--extra.js +8 -0
- package/bpk-component-icon/lg/legroom--normal.js +8 -0
- package/bpk-component-icon/lg/legroom--reduced.js +8 -0
- package/bpk-component-icon/lg/leisure.js +8 -0
- package/bpk-component-icon/lg/lightning.js +8 -0
- package/bpk-component-icon/lg/list.js +8 -0
- package/bpk-component-icon/lg/location.js +8 -0
- package/bpk-component-icon/lg/lock.js +8 -0
- package/bpk-component-icon/lg/logout.js +8 -0
- package/bpk-component-icon/lg/long-arrow-down.js +8 -0
- package/bpk-component-icon/lg/long-arrow-left.js +8 -0
- package/bpk-component-icon/lg/long-arrow-right.js +8 -0
- package/bpk-component-icon/lg/long-arrow-up.js +8 -0
- package/bpk-component-icon/lg/lounge.js +8 -0
- package/bpk-component-icon/lg/luggageall.js +8 -0
- package/bpk-component-icon/lg/mail.js +8 -0
- package/bpk-component-icon/lg/map.js +8 -0
- package/bpk-component-icon/lg/meal.js +8 -0
- package/bpk-component-icon/lg/media.js +8 -0
- package/bpk-component-icon/lg/menu--horizontal.js +8 -0
- package/bpk-component-icon/lg/menu--vertical.js +8 -0
- package/bpk-component-icon/lg/menu.js +8 -0
- package/bpk-component-icon/lg/mileage.js +8 -0
- package/bpk-component-icon/lg/minus.js +8 -0
- package/bpk-component-icon/lg/mobile.js +8 -0
- package/bpk-component-icon/lg/money.js +8 -0
- package/bpk-component-icon/lg/multiple-bookings.js +8 -0
- package/bpk-component-icon/lg/music.js +8 -0
- package/bpk-component-icon/lg/mute.js +8 -0
- package/bpk-component-icon/lg/native-android--back.js +8 -0
- package/bpk-component-icon/lg/native-android--close.js +8 -0
- package/bpk-component-icon/lg/native-android--forward.js +8 -0
- package/bpk-component-icon/lg/native-ios-close.js +8 -0
- package/bpk-component-icon/lg/navigation.js +8 -0
- package/bpk-component-icon/lg/new-window.js +8 -0
- package/bpk-component-icon/lg/news.js +8 -0
- package/bpk-component-icon/lg/night.js +8 -0
- package/bpk-component-icon/lg/not-allowed.js +8 -0
- package/bpk-component-icon/lg/onsen.js +8 -0
- package/bpk-component-icon/lg/paid.js +8 -0
- package/bpk-component-icon/lg/paperclip.js +8 -0
- package/bpk-component-icon/lg/parking.js +8 -0
- package/bpk-component-icon/lg/passport.js +8 -0
- package/bpk-component-icon/lg/pause.js +8 -0
- package/bpk-component-icon/lg/payment-card.js +8 -0
- package/bpk-component-icon/lg/petrol.js +8 -0
- package/bpk-component-icon/lg/phone-call.js +8 -0
- package/bpk-component-icon/lg/picture.js +8 -0
- package/bpk-component-icon/lg/pin.js +8 -0
- package/bpk-component-icon/lg/plane-seat.js +8 -0
- package/bpk-component-icon/lg/play.js +8 -0
- package/bpk-component-icon/lg/plus.js +8 -0
- package/bpk-component-icon/lg/policy.js +8 -0
- package/bpk-component-icon/lg/powerplug.js +8 -0
- package/bpk-component-icon/lg/ppe.js +8 -0
- package/bpk-component-icon/lg/price-alerts.js +8 -0
- package/bpk-component-icon/lg/price-tag.js +8 -0
- package/bpk-component-icon/lg/print.js +8 -0
- package/bpk-component-icon/lg/recent-searches.js +8 -0
- package/bpk-component-icon/lg/redo.js +8 -0
- package/bpk-component-icon/lg/refresh.js +8 -0
- package/bpk-component-icon/lg/return.js +8 -0
- package/bpk-component-icon/lg/room.js +8 -0
- package/bpk-component-icon/lg/scales.js +8 -0
- package/bpk-component-icon/lg/search.js +8 -0
- package/bpk-component-icon/lg/self-service.js +8 -0
- package/bpk-component-icon/lg/send-message.js +8 -0
- package/bpk-component-icon/lg/services.js +8 -0
- package/bpk-component-icon/lg/settings.js +8 -0
- package/bpk-component-icon/lg/share--android.js +8 -0
- package/bpk-component-icon/lg/share--ios.js +8 -0
- package/bpk-component-icon/lg/share.js +8 -0
- package/bpk-component-icon/lg/single-booking.js +8 -0
- package/bpk-component-icon/lg/social-distancing.js +8 -0
- package/bpk-component-icon/lg/social-like.js +8 -0
- package/bpk-component-icon/lg/sort-down.js +8 -0
- package/bpk-component-icon/lg/sort-up.js +8 -0
- package/bpk-component-icon/lg/sort.js +8 -0
- package/bpk-component-icon/lg/speaker.js +8 -0
- package/bpk-component-icon/lg/star-half.js +8 -0
- package/bpk-component-icon/lg/star-outline.js +8 -0
- package/bpk-component-icon/lg/star.js +8 -0
- package/bpk-component-icon/lg/stops.js +8 -0
- package/bpk-component-icon/lg/swap--horizontal.js +8 -0
- package/bpk-component-icon/lg/swap--vertical.js +8 -0
- package/bpk-component-icon/lg/swap.js +8 -0
- package/bpk-component-icon/lg/taxi.js +8 -0
- package/bpk-component-icon/lg/thumbs-down.js +8 -0
- package/bpk-component-icon/lg/thumbs-up.js +8 -0
- package/bpk-component-icon/lg/tick-circle.js +8 -0
- package/bpk-component-icon/lg/tick.js +8 -0
- package/bpk-component-icon/lg/ticket-flexible.js +8 -0
- package/bpk-component-icon/lg/ticket.js +8 -0
- package/bpk-component-icon/lg/time.js +8 -0
- package/bpk-component-icon/lg/toilets.js +8 -0
- package/bpk-component-icon/lg/train.js +8 -0
- package/bpk-component-icon/lg/transmission-automatic.js +8 -0
- package/bpk-component-icon/lg/transmission-manual.js +8 -0
- package/bpk-component-icon/lg/trash.js +8 -0
- package/bpk-component-icon/lg/trend--down.js +8 -0
- package/bpk-component-icon/lg/trend--steady.js +8 -0
- package/bpk-component-icon/lg/trend--will-rise.js +8 -0
- package/bpk-component-icon/lg/trend.js +8 -0
- package/bpk-component-icon/lg/trips.js +8 -0
- package/bpk-component-icon/lg/undo.js +8 -0
- package/bpk-component-icon/lg/unlock.js +8 -0
- package/bpk-component-icon/lg/unmute.js +8 -0
- package/bpk-component-icon/lg/upgrade.js +8 -0
- package/bpk-component-icon/lg/use-location.js +8 -0
- package/bpk-component-icon/lg/view.js +8 -0
- package/bpk-component-icon/lg/virus.js +8 -0
- package/bpk-component-icon/lg/wallet.js +8 -0
- package/bpk-component-icon/lg/weather--clear.js +8 -0
- package/bpk-component-icon/lg/weather--cloudy.js +8 -0
- package/bpk-component-icon/lg/weather--fog.js +8 -0
- package/bpk-component-icon/lg/weather--partly-cloudy.js +8 -0
- package/bpk-component-icon/lg/weather--rain.js +8 -0
- package/bpk-component-icon/lg/weather--snow.js +8 -0
- package/bpk-component-icon/lg/weather--thunderstorm.js +8 -0
- package/bpk-component-icon/lg/weather--tornado.js +8 -0
- package/bpk-component-icon/lg/weather--wind.js +8 -0
- package/bpk-component-icon/lg/weather.js +8 -0
- package/bpk-component-icon/lg/wifi.js +8 -0
- package/bpk-component-icon/lg/window--reduce.js +8 -0
- package/bpk-component-icon/lg/window.js +8 -0
- package/bpk-component-icon/lg/world--amer.js +8 -0
- package/bpk-component-icon/lg/world--apac.js +8 -0
- package/bpk-component-icon/lg/world--emea.js +8 -0
- package/bpk-component-icon/package.json +34 -0
- package/bpk-component-icon/sm/accessibility.js +8 -0
- package/bpk-component-icon/sm/account--add.js +8 -0
- package/bpk-component-icon/sm/account--female.js +8 -0
- package/bpk-component-icon/sm/account--id-card.js +8 -0
- package/bpk-component-icon/sm/account--name.js +8 -0
- package/bpk-component-icon/sm/account--permit.js +8 -0
- package/bpk-component-icon/sm/account-circle.js +8 -0
- package/bpk-component-icon/sm/account.js +8 -0
- package/bpk-component-icon/sm/add-circle.js +8 -0
- package/bpk-component-icon/sm/adult.js +8 -0
- package/bpk-component-icon/sm/aircon.js +8 -0
- package/bpk-component-icon/sm/aircraft.js +8 -0
- package/bpk-component-icon/sm/airline--multiple.js +8 -0
- package/bpk-component-icon/sm/airline.js +8 -0
- package/bpk-component-icon/sm/airports.js +8 -0
- package/bpk-component-icon/sm/alert--active.js +8 -0
- package/bpk-component-icon/sm/alert--add.js +8 -0
- package/bpk-component-icon/sm/alert--expired.js +8 -0
- package/bpk-component-icon/sm/alert--remove.js +8 -0
- package/bpk-component-icon/sm/arrow-down.js +8 -0
- package/bpk-component-icon/sm/arrow-left.js +8 -0
- package/bpk-component-icon/sm/arrow-right.js +8 -0
- package/bpk-component-icon/sm/arrow-up.js +8 -0
- package/bpk-component-icon/sm/award.js +8 -0
- package/bpk-component-icon/sm/baby-carriage.js +8 -0
- package/bpk-component-icon/sm/baggage--add.js +8 -0
- package/bpk-component-icon/sm/baggage--remove.js +8 -0
- package/bpk-component-icon/sm/baggage-cross.js +8 -0
- package/bpk-component-icon/sm/baggage-tick.js +8 -0
- package/bpk-component-icon/sm/baggage.js +8 -0
- package/bpk-component-icon/sm/bar.js +8 -0
- package/bpk-component-icon/sm/beach.js +8 -0
- package/bpk-component-icon/sm/beer.js +8 -0
- package/bpk-component-icon/sm/breakfast-cross.js +8 -0
- package/bpk-component-icon/sm/breakfast-tick.js +8 -0
- package/bpk-component-icon/sm/bus.js +8 -0
- package/bpk-component-icon/sm/business.js +8 -0
- package/bpk-component-icon/sm/cafe.js +8 -0
- package/bpk-component-icon/sm/calendar.js +8 -0
- package/bpk-component-icon/sm/call-back.js +8 -0
- package/bpk-component-icon/sm/camera.js +8 -0
- package/bpk-component-icon/sm/camper-van.js +8 -0
- package/bpk-component-icon/sm/car-door.js +8 -0
- package/bpk-component-icon/sm/car-wash.js +8 -0
- package/bpk-component-icon/sm/cars-flexible.js +8 -0
- package/bpk-component-icon/sm/cars.js +8 -0
- package/bpk-component-icon/sm/chart.js +8 -0
- package/bpk-component-icon/sm/chauffeur.js +8 -0
- package/bpk-component-icon/sm/chevron-down.js +8 -0
- package/bpk-component-icon/sm/chevron-left.js +8 -0
- package/bpk-component-icon/sm/chevron-right.js +8 -0
- package/bpk-component-icon/sm/chevron-up.js +8 -0
- package/bpk-component-icon/sm/child-seat.js +8 -0
- package/bpk-component-icon/sm/child.js +8 -0
- package/bpk-component-icon/sm/city-center.js +8 -0
- package/bpk-component-icon/sm/city.js +8 -0
- package/bpk-component-icon/sm/clean-policy.js +8 -0
- package/bpk-component-icon/sm/clean.js +8 -0
- package/bpk-component-icon/sm/cleaning-medical.js +8 -0
- package/bpk-component-icon/sm/cloakroom.js +8 -0
- package/bpk-component-icon/sm/close-circle.js +8 -0
- package/bpk-component-icon/sm/close.js +8 -0
- package/bpk-component-icon/sm/collapse.js +8 -0
- package/bpk-component-icon/sm/content--copy.js +8 -0
- package/bpk-component-icon/sm/content--event.js +8 -0
- package/bpk-component-icon/sm/content--guides.js +8 -0
- package/bpk-component-icon/sm/currency.js +8 -0
- package/bpk-component-icon/sm/data.js +8 -0
- package/bpk-component-icon/sm/deals.js +8 -0
- package/bpk-component-icon/sm/depart.js +8 -0
- package/bpk-component-icon/sm/device-mid.js +8 -0
- package/bpk-component-icon/sm/device-wide.js +8 -0
- package/bpk-component-icon/sm/direct.js +8 -0
- package/bpk-component-icon/sm/document-csv.js +8 -0
- package/bpk-component-icon/sm/document-pdf.js +8 -0
- package/bpk-component-icon/sm/download.js +8 -0
- package/bpk-component-icon/sm/duration.js +8 -0
- package/bpk-component-icon/sm/eco-leaf.js +8 -0
- package/bpk-component-icon/sm/edit.js +8 -0
- package/bpk-component-icon/sm/education.js +8 -0
- package/bpk-component-icon/sm/electric.js +8 -0
- package/bpk-component-icon/sm/end-call.js +8 -0
- package/bpk-component-icon/sm/estimated.js +8 -0
- package/bpk-component-icon/sm/exclamation-circle.js +8 -0
- package/bpk-component-icon/sm/exclamation.js +8 -0
- package/bpk-component-icon/sm/expand.js +8 -0
- package/bpk-component-icon/sm/explore.js +8 -0
- package/bpk-component-icon/sm/face--blank.js +8 -0
- package/bpk-component-icon/sm/face--happy.js +8 -0
- package/bpk-component-icon/sm/face--sad.js +8 -0
- package/bpk-component-icon/sm/face-mask.js +8 -0
- package/bpk-component-icon/sm/family.js +8 -0
- package/bpk-component-icon/sm/fast-track.js +8 -0
- package/bpk-component-icon/sm/fast-train.js +8 -0
- package/bpk-component-icon/sm/filter.js +8 -0
- package/bpk-component-icon/sm/flag.js +8 -0
- package/bpk-component-icon/sm/flask.js +8 -0
- package/bpk-component-icon/sm/flight-flexible.js +8 -0
- package/bpk-component-icon/sm/flight-landing.js +8 -0
- package/bpk-component-icon/sm/flight-takeoff.js +8 -0
- package/bpk-component-icon/sm/flight.js +8 -0
- package/bpk-component-icon/sm/food.js +8 -0
- package/bpk-component-icon/sm/gears-automatic-circle.js +8 -0
- package/bpk-component-icon/sm/gears-automatic.js +8 -0
- package/bpk-component-icon/sm/gears-manual-circle.js +8 -0
- package/bpk-component-icon/sm/gears-manual.js +8 -0
- package/bpk-component-icon/sm/globe.js +8 -0
- package/bpk-component-icon/sm/grid-layout.js +8 -0
- package/bpk-component-icon/sm/headset.js +8 -0
- package/bpk-component-icon/sm/health-fitness.js +8 -0
- package/bpk-component-icon/sm/heart--outline.js +8 -0
- package/bpk-component-icon/sm/heart.js +8 -0
- package/bpk-component-icon/sm/help-circle.js +8 -0
- package/bpk-component-icon/sm/help.js +8 -0
- package/bpk-component-icon/sm/hide.js +8 -0
- package/bpk-component-icon/sm/hotel-flexible.js +8 -0
- package/bpk-component-icon/sm/hotels--disabled-facilities.js +8 -0
- package/bpk-component-icon/sm/hotels--jacuzzi.js +8 -0
- package/bpk-component-icon/sm/hotels--pets-allowed.js +8 -0
- package/bpk-component-icon/sm/hotels--smoking.js +8 -0
- package/bpk-component-icon/sm/hotels.js +8 -0
- package/bpk-component-icon/sm/infant.js +8 -0
- package/bpk-component-icon/sm/information--language-alert.js +8 -0
- package/bpk-component-icon/sm/information--language-question.js +8 -0
- package/bpk-component-icon/sm/information--language.js +8 -0
- package/bpk-component-icon/sm/information-circle.js +8 -0
- package/bpk-component-icon/sm/information.js +8 -0
- package/bpk-component-icon/sm/insurance.js +8 -0
- package/bpk-component-icon/sm/key.js +8 -0
- package/bpk-component-icon/sm/keypad.js +8 -0
- package/bpk-component-icon/sm/landmark.js +8 -0
- package/bpk-component-icon/sm/language.js +8 -0
- package/bpk-component-icon/sm/legroom--extra.js +8 -0
- package/bpk-component-icon/sm/legroom--normal.js +8 -0
- package/bpk-component-icon/sm/legroom--reduced.js +8 -0
- package/bpk-component-icon/sm/leisure.js +8 -0
- package/bpk-component-icon/sm/lightning.js +8 -0
- package/bpk-component-icon/sm/list.js +8 -0
- package/bpk-component-icon/sm/location.js +8 -0
- package/bpk-component-icon/sm/lock.js +8 -0
- package/bpk-component-icon/sm/logout.js +8 -0
- package/bpk-component-icon/sm/long-arrow-down.js +8 -0
- package/bpk-component-icon/sm/long-arrow-left.js +8 -0
- package/bpk-component-icon/sm/long-arrow-right.js +8 -0
- package/bpk-component-icon/sm/long-arrow-up.js +8 -0
- package/bpk-component-icon/sm/lounge.js +8 -0
- package/bpk-component-icon/sm/luggageall.js +8 -0
- package/bpk-component-icon/sm/mail.js +8 -0
- package/bpk-component-icon/sm/map.js +8 -0
- package/bpk-component-icon/sm/meal.js +8 -0
- package/bpk-component-icon/sm/media.js +8 -0
- package/bpk-component-icon/sm/menu--horizontal.js +8 -0
- package/bpk-component-icon/sm/menu--vertical.js +8 -0
- package/bpk-component-icon/sm/menu.js +8 -0
- package/bpk-component-icon/sm/mileage.js +8 -0
- package/bpk-component-icon/sm/minus.js +8 -0
- package/bpk-component-icon/sm/mobile.js +8 -0
- package/bpk-component-icon/sm/money.js +8 -0
- package/bpk-component-icon/sm/multiple-bookings.js +8 -0
- package/bpk-component-icon/sm/music.js +8 -0
- package/bpk-component-icon/sm/mute.js +8 -0
- package/bpk-component-icon/sm/native-android--back.js +8 -0
- package/bpk-component-icon/sm/native-android--close.js +8 -0
- package/bpk-component-icon/sm/native-android--forward.js +8 -0
- package/bpk-component-icon/sm/native-ios-close.js +8 -0
- package/bpk-component-icon/sm/navigation.js +8 -0
- package/bpk-component-icon/sm/new-window.js +8 -0
- package/bpk-component-icon/sm/news.js +8 -0
- package/bpk-component-icon/sm/night.js +8 -0
- package/bpk-component-icon/sm/not-allowed.js +8 -0
- package/bpk-component-icon/sm/onsen.js +8 -0
- package/bpk-component-icon/sm/paid.js +8 -0
- package/bpk-component-icon/sm/paperclip.js +8 -0
- package/bpk-component-icon/sm/parking.js +8 -0
- package/bpk-component-icon/sm/passport.js +8 -0
- package/bpk-component-icon/sm/pause.js +8 -0
- package/bpk-component-icon/sm/payment-card.js +8 -0
- package/bpk-component-icon/sm/petrol.js +8 -0
- package/bpk-component-icon/sm/phone-call.js +8 -0
- package/bpk-component-icon/sm/picture.js +8 -0
- package/bpk-component-icon/sm/pin.js +8 -0
- package/bpk-component-icon/sm/plane-seat.js +8 -0
- package/bpk-component-icon/sm/play.js +8 -0
- package/bpk-component-icon/sm/plus.js +8 -0
- package/bpk-component-icon/sm/policy.js +8 -0
- package/bpk-component-icon/sm/powerplug.js +8 -0
- package/bpk-component-icon/sm/ppe.js +8 -0
- package/bpk-component-icon/sm/price-alerts.js +8 -0
- package/bpk-component-icon/sm/price-tag.js +8 -0
- package/bpk-component-icon/sm/print.js +8 -0
- package/bpk-component-icon/sm/recent-searches.js +8 -0
- package/bpk-component-icon/sm/redo.js +8 -0
- package/bpk-component-icon/sm/refresh.js +8 -0
- package/bpk-component-icon/sm/return.js +8 -0
- package/bpk-component-icon/sm/room.js +8 -0
- package/bpk-component-icon/sm/scales.js +8 -0
- package/bpk-component-icon/sm/search.js +8 -0
- package/bpk-component-icon/sm/self-service.js +8 -0
- package/bpk-component-icon/sm/send-message.js +8 -0
- package/bpk-component-icon/sm/services.js +8 -0
- package/bpk-component-icon/sm/settings.js +8 -0
- package/bpk-component-icon/sm/share--android.js +8 -0
- package/bpk-component-icon/sm/share--ios.js +8 -0
- package/bpk-component-icon/sm/share.js +8 -0
- package/bpk-component-icon/sm/single-booking.js +8 -0
- package/bpk-component-icon/sm/social-distancing.js +8 -0
- package/bpk-component-icon/sm/social-like.js +8 -0
- package/bpk-component-icon/sm/sort-down.js +8 -0
- package/bpk-component-icon/sm/sort-up.js +8 -0
- package/bpk-component-icon/sm/sort.js +8 -0
- package/bpk-component-icon/sm/speaker.js +8 -0
- package/bpk-component-icon/sm/star-half.js +8 -0
- package/bpk-component-icon/sm/star-outline.js +8 -0
- package/bpk-component-icon/sm/star.js +8 -0
- package/bpk-component-icon/sm/stops.js +8 -0
- package/bpk-component-icon/sm/swap--horizontal.js +8 -0
- package/bpk-component-icon/sm/swap--vertical.js +8 -0
- package/bpk-component-icon/sm/swap.js +8 -0
- package/bpk-component-icon/sm/taxi.js +8 -0
- package/bpk-component-icon/sm/thumbs-down.js +8 -0
- package/bpk-component-icon/sm/thumbs-up.js +8 -0
- package/bpk-component-icon/sm/tick-circle.js +8 -0
- package/bpk-component-icon/sm/tick.js +8 -0
- package/bpk-component-icon/sm/ticket-flexible.js +8 -0
- package/bpk-component-icon/sm/ticket.js +8 -0
- package/bpk-component-icon/sm/time.js +8 -0
- package/bpk-component-icon/sm/toilets.js +8 -0
- package/bpk-component-icon/sm/train.js +8 -0
- package/bpk-component-icon/sm/transmission-automatic.js +8 -0
- package/bpk-component-icon/sm/transmission-manual.js +8 -0
- package/bpk-component-icon/sm/trash.js +8 -0
- package/bpk-component-icon/sm/trend--down.js +8 -0
- package/bpk-component-icon/sm/trend--steady.js +8 -0
- package/bpk-component-icon/sm/trend--will-rise.js +8 -0
- package/bpk-component-icon/sm/trend.js +8 -0
- package/bpk-component-icon/sm/trips.js +8 -0
- package/bpk-component-icon/sm/undo.js +8 -0
- package/bpk-component-icon/sm/unlock.js +8 -0
- package/bpk-component-icon/sm/unmute.js +8 -0
- package/bpk-component-icon/sm/upgrade.js +8 -0
- package/bpk-component-icon/sm/use-location.js +8 -0
- package/bpk-component-icon/sm/view.js +8 -0
- package/bpk-component-icon/sm/virus.js +8 -0
- package/bpk-component-icon/sm/wallet.js +8 -0
- package/bpk-component-icon/sm/weather--clear.js +8 -0
- package/bpk-component-icon/sm/weather--cloudy.js +8 -0
- package/bpk-component-icon/sm/weather--fog.js +8 -0
- package/bpk-component-icon/sm/weather--partly-cloudy.js +8 -0
- package/bpk-component-icon/sm/weather--rain.js +8 -0
- package/bpk-component-icon/sm/weather--snow.js +8 -0
- package/bpk-component-icon/sm/weather--thunderstorm.js +8 -0
- package/bpk-component-icon/sm/weather--tornado.js +8 -0
- package/bpk-component-icon/sm/weather--wind.js +8 -0
- package/bpk-component-icon/sm/weather.js +8 -0
- package/bpk-component-icon/sm/wifi.js +8 -0
- package/bpk-component-icon/sm/window--reduce.js +8 -0
- package/bpk-component-icon/sm/window.js +8 -0
- package/bpk-component-icon/sm/world--amer.js +8 -0
- package/bpk-component-icon/sm/world--apac.js +8 -0
- package/bpk-component-icon/sm/world--emea.js +8 -0
- 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 +53 -0
- package/bpk-component-icon/src/withAlignment.js +47 -0
- package/bpk-component-icon/src/withDescription.js +44 -0
- 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 +28 -0
- package/bpk-component-image/README.md +142 -0
- package/bpk-component-image/examples.js +216 -0
- package/bpk-component-image/index.js +37 -0
- package/bpk-component-image/package.json +31 -0
- package/bpk-component-image/src/BpkBackgroundImage.js +192 -0
- 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 +252 -0
- 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 +23 -0
- package/bpk-component-image/src/customPropTypes.js +37 -0
- package/bpk-component-image/src/withLazyLoading.js +181 -0
- package/bpk-component-image/src/withLoadingBehavior.js +65 -0
- package/bpk-component-infinite-scroll/README.md +187 -0
- package/bpk-component-infinite-scroll/examples.js +279 -0
- package/bpk-component-infinite-scroll/examples.module.css +18 -0
- package/bpk-component-infinite-scroll/examples.module.scss +46 -0
- package/bpk-component-infinite-scroll/index.js +29 -0
- package/bpk-component-infinite-scroll/package.json +31 -0
- package/bpk-component-infinite-scroll/src/DataSource.js +85 -0
- package/bpk-component-infinite-scroll/src/intersection-observer.js +27 -0
- package/bpk-component-infinite-scroll/src/withInfiniteScroll-test.flow.js +102 -0
- package/bpk-component-infinite-scroll/src/withInfiniteScroll.js +297 -0
- 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/examples.js +490 -0
- package/bpk-component-input/examples.module.css +18 -0
- package/bpk-component-input/examples.module.scss +57 -0
- package/bpk-component-input/index.js +50 -0
- package/bpk-component-input/package.json +30 -0
- package/bpk-component-input/src/BpkClearButton.js +74 -0
- 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 +178 -0
- 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 +129 -0
- package/bpk-component-input/src/themeAttributes.js +19 -0
- package/bpk-component-input/src/withOpenEvents.js +186 -0
- package/bpk-component-label/README.md +30 -0
- package/bpk-component-label/examples.js +67 -0
- package/bpk-component-label/index.js +24 -0
- package/bpk-component-label/package.json +24 -0
- package/bpk-component-label/src/BpkLabel.js +84 -0
- 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/examples.js +110 -0
- package/bpk-component-link/index.js +28 -0
- package/bpk-component-link/package.json +28 -0
- package/bpk-component-link/src/BpkButtonLink.js +79 -0
- package/bpk-component-link/src/BpkLink.js +109 -0
- 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 +35 -0
- package/bpk-component-list/README.md +48 -0
- package/bpk-component-list/examples.js +56 -0
- package/bpk-component-list/index.js +24 -0
- package/bpk-component-list/package.json +24 -0
- package/bpk-component-list/src/BpkList.js +58 -0
- package/bpk-component-list/src/BpkList.module.css +18 -0
- package/bpk-component-list/src/BpkList.module.scss +31 -0
- package/bpk-component-list/src/BpkListItem.js +54 -0
- package/bpk-component-loading-button/README.md +48 -0
- package/bpk-component-loading-button/examples.js +660 -0
- package/bpk-component-loading-button/index.js +24 -0
- package/bpk-component-loading-button/package.json +30 -0
- package/bpk-component-loading-button/src/BpkLoadingButton.js +153 -0
- package/bpk-component-map/README.md +213 -0
- package/bpk-component-map/examples.js +305 -0
- package/bpk-component-map/index.js +45 -0
- package/bpk-component-map/package.json +32 -0
- package/bpk-component-map/src/BpkBasicMapMarker.js +57 -0
- package/bpk-component-map/src/BpkIconMarker.js +107 -0
- 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 +80 -0
- 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 +174 -0
- package/bpk-component-map/src/BpkOverlayView.js +50 -0
- package/bpk-component-map/src/BpkPriceMarker.js +130 -0
- 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 +34 -0
- 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 +31 -0
- package/bpk-component-map/src/themeAttributes.js +38 -0
- package/bpk-component-map/src/withGoogleMapsScript.js +44 -0
- package/bpk-component-mobile-scroll-container/README.md +74 -0
- package/bpk-component-mobile-scroll-container/examples.js +76 -0
- package/bpk-component-mobile-scroll-container/examples.module.css +18 -0
- package/bpk-component-mobile-scroll-container/examples.module.scss +46 -0
- package/bpk-component-mobile-scroll-container/index.js +23 -0
- package/bpk-component-mobile-scroll-container/package.json +28 -0
- package/bpk-component-mobile-scroll-container/src/BpkMobileScrollContainer.js +238 -0
- 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/examples.js +304 -0
- package/bpk-component-modal/examples.module.css +18 -0
- package/bpk-component-modal/examples.module.scss +35 -0
- package/bpk-component-modal/index.js +27 -0
- package/bpk-component-modal/package.json +33 -0
- package/bpk-component-modal/src/BpkModal.js +128 -0
- 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 +177 -0
- 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 +54 -0
- package/bpk-component-modal/src/themeAttributes.js +23 -0
- package/bpk-component-navigation-bar/AirlineLogo.js +42 -0
- package/bpk-component-navigation-bar/AirlineLogo.module.css +18 -0
- package/bpk-component-navigation-bar/AirlineLogo.module.scss +27 -0
- package/bpk-component-navigation-bar/README.md +114 -0
- package/bpk-component-navigation-bar/examples.js +193 -0
- package/bpk-component-navigation-bar/examples.module.css +18 -0
- package/bpk-component-navigation-bar/examples.module.scss +32 -0
- package/bpk-component-navigation-bar/index.js +42 -0
- package/bpk-component-navigation-bar/package.json +32 -0
- package/bpk-component-navigation-bar/src/BpkNavigationBar.js +105 -0
- package/bpk-component-navigation-bar/src/BpkNavigationBar.module.css +18 -0
- package/bpk-component-navigation-bar/src/BpkNavigationBar.module.scss +75 -0
- package/bpk-component-navigation-bar/src/BpkNavigationBarButtonLink.js +61 -0
- 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 +58 -0
- 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 +33 -0
- package/bpk-component-navigation-stack/README.md +48 -0
- package/bpk-component-navigation-stack/examples.js +73 -0
- package/bpk-component-navigation-stack/examples.module.css +18 -0
- package/bpk-component-navigation-stack/examples.module.scss +43 -0
- package/bpk-component-navigation-stack/index.js +30 -0
- package/bpk-component-navigation-stack/package.json +32 -0
- package/bpk-component-navigation-stack/src/BpkNavigationStack.js +127 -0
- package/bpk-component-navigation-stack/src/BpkNavigationStack.module.css +18 -0
- package/bpk-component-navigation-stack/src/BpkNavigationStack.module.scss +51 -0
- package/bpk-component-navigation-stack/src/withNavigationStackState.js +104 -0
- package/bpk-component-navigation-stack/stories-components.js +202 -0
- package/bpk-component-nudger/BpkNudgerStory.module.css +18 -0
- package/bpk-component-nudger/BpkNudgerStory.module.scss +27 -0
- package/bpk-component-nudger/README.md +170 -0
- package/bpk-component-nudger/examples.js +204 -0
- package/bpk-component-nudger/index.js +26 -0
- package/bpk-component-nudger/package.json +32 -0
- package/bpk-component-nudger/src/BpkConfigurableNudger.js +151 -0
- package/bpk-component-nudger/src/BpkNudger.js +68 -0
- 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 +45 -0
- package/bpk-component-nudger/src/themeAttributes.js +23 -0
- package/bpk-component-overlay/README.md +51 -0
- package/bpk-component-overlay/examples.js +163 -0
- package/bpk-component-overlay/examples.module.css +18 -0
- package/bpk-component-overlay/examples.module.scss +38 -0
- package/bpk-component-overlay/index.js +28 -0
- package/bpk-component-overlay/package.json +28 -0
- package/bpk-component-overlay/src/BpkOverlay.js +88 -0
- 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/examples.js +93 -0
- package/bpk-component-pagination/index.js +23 -0
- package/bpk-component-pagination/package.json +28 -0
- package/bpk-component-pagination/src/BpkPagination.js +101 -0
- 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 +35 -0
- package/bpk-component-pagination/src/BpkPaginationList.js +100 -0
- 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 +77 -0
- 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 +60 -0
- package/bpk-component-pagination/src/BpkPaginationPage.module.css +18 -0
- package/bpk-component-pagination/src/BpkPaginationPage.module.scss +90 -0
- package/bpk-component-pagination/src/themeAttributes.js +26 -0
- package/bpk-component-panel/README.md +33 -0
- package/bpk-component-panel/examples.js +63 -0
- package/bpk-component-panel/index.js +21 -0
- package/bpk-component-panel/package.json +24 -0
- package/bpk-component-panel/src/BpkPanel.js +61 -0
- package/bpk-component-panel/src/BpkPanel.module.css +18 -0
- package/bpk-component-panel/src/BpkPanel.module.scss +31 -0
- package/bpk-component-paragraph/README.md +28 -0
- package/bpk-component-paragraph/examples.js +46 -0
- package/bpk-component-paragraph/index.js +23 -0
- package/bpk-component-paragraph/package.json +25 -0
- package/bpk-component-paragraph/src/BpkParagraph.js +55 -0
- package/bpk-component-paragraph/src/BpkParagraph.module.css +18 -0
- package/bpk-component-paragraph/src/BpkParagraph.module.scss +25 -0
- package/bpk-component-phone-input/README.md +100 -0
- package/bpk-component-phone-input/examples.js +181 -0
- package/bpk-component-phone-input/index.js +26 -0
- package/bpk-component-phone-input/package.json +33 -0
- package/bpk-component-phone-input/src/BpkPhoneInput.js +225 -0
- 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 +128 -0
- package/bpk-component-popover/examples.js +267 -0
- package/bpk-component-popover/examples.module.css +18 -0
- package/bpk-component-popover/examples.module.scss +33 -0
- package/bpk-component-popover/index.js +34 -0
- package/bpk-component-popover/package.json +35 -0
- package/bpk-component-popover/src/BpkPopover.js +185 -0
- package/bpk-component-popover/src/BpkPopover.module.css +18 -0
- package/bpk-component-popover/src/BpkPopover.module.scss +126 -0
- package/bpk-component-popover/src/BpkPopoverPortal.js +210 -0
- package/bpk-component-popover/src/constants.js +23 -0
- package/bpk-component-popover/src/keyboardFocusScope.js +86 -0
- package/bpk-component-popover/src/themeAttributes.js +23 -0
- package/bpk-component-progress/README.md +56 -0
- package/bpk-component-progress/examples.js +130 -0
- package/bpk-component-progress/examples.module.css +18 -0
- package/bpk-component-progress/examples.module.scss +29 -0
- package/bpk-component-progress/index.js +25 -0
- package/bpk-component-progress/package.json +30 -0
- package/bpk-component-progress/src/BpkProgress.js +164 -0
- 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 +21 -0
- package/bpk-component-radio/README.md +43 -0
- package/bpk-component-radio/examples.js +126 -0
- package/bpk-component-radio/index.js +25 -0
- package/bpk-component-radio/package.json +28 -0
- package/bpk-component-radio/src/BpkRadio.js +97 -0
- 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 +21 -0
- package/bpk-component-rating/README.md +73 -0
- package/bpk-component-rating/examples.js +373 -0
- package/bpk-component-rating/examples.module.css +18 -0
- package/bpk-component-rating/examples.module.scss +23 -0
- package/bpk-component-rating/index.js +25 -0
- package/bpk-component-rating/package.json +29 -0
- package/bpk-component-rating/src/BpkRating.js +188 -0
- package/bpk-component-rating/src/BpkRating.module.css +18 -0
- package/bpk-component-rating/src/BpkRating.module.scss +148 -0
- package/bpk-component-rating/src/common-types.js +31 -0
- package/bpk-component-rating/src/themeAttributes.js +25 -0
- package/bpk-component-rtl-toggle/README.md +26 -0
- package/bpk-component-rtl-toggle/index.js +23 -0
- package/bpk-component-rtl-toggle/package.json +24 -0
- package/bpk-component-rtl-toggle/src/BpkRtlToggle.js +92 -0
- package/bpk-component-rtl-toggle/src/updateOnDirectionChange.js +59 -0
- package/bpk-component-rtl-toggle/src/utils.js +29 -0
- package/bpk-component-scrollable-calendar/README.md +102 -0
- package/bpk-component-scrollable-calendar/examples.js +383 -0
- package/bpk-component-scrollable-calendar/index.js +34 -0
- package/bpk-component-scrollable-calendar/package.json +32 -0
- package/bpk-component-scrollable-calendar/src/BpkScrollableCalendar.js +36 -0
- package/bpk-component-scrollable-calendar/src/BpkScrollableCalendarDate.js +44 -0
- package/bpk-component-scrollable-calendar/src/BpkScrollableCalendarGrid.js +55 -0
- 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 +156 -0
- 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 +30 -0
- package/bpk-component-scrollable-calendar/test-utils.js +274 -0
- package/bpk-component-section-list/README.md +52 -0
- package/bpk-component-section-list/examples.js +55 -0
- package/bpk-component-section-list/index.js +26 -0
- package/bpk-component-section-list/package.json +30 -0
- package/bpk-component-section-list/src/BpkSectionList.js +38 -0
- package/bpk-component-section-list/src/BpkSectionListItem.js +112 -0
- 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 +65 -0
- 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/examples.js +274 -0
- package/bpk-component-select/index.js +26 -0
- package/bpk-component-select/package.json +27 -0
- package/bpk-component-select/src/BpkSelect.js +132 -0
- 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 +19 -0
- package/bpk-component-skip-link/README.md +30 -0
- package/bpk-component-skip-link/examples.js +40 -0
- package/bpk-component-skip-link/index.js +25 -0
- package/bpk-component-skip-link/package.json +24 -0
- package/bpk-component-skip-link/src/BpkSkipLink.js +59 -0
- 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 +19 -0
- package/bpk-component-slider/README.md +43 -0
- package/bpk-component-slider/examples.js +122 -0
- package/bpk-component-slider/index.js +23 -0
- package/bpk-component-slider/package.json +29 -0
- package/bpk-component-slider/src/BpkSlider.js +71 -0
- 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 +19 -0
- package/bpk-component-spinner/README.md +40 -0
- package/bpk-component-spinner/SpinnerLayout.js +56 -0
- package/bpk-component-spinner/SpinnerLayout.module.css +18 -0
- package/bpk-component-spinner/SpinnerLayout.module.scss +36 -0
- package/bpk-component-spinner/changelog.yml +55 -0
- package/bpk-component-spinner/examples.js +56 -0
- package/bpk-component-spinner/index.js +33 -0
- package/bpk-component-spinner/package.json +25 -0
- package/bpk-component-spinner/src/BpkExtraLargeSpinner.js +59 -0
- package/bpk-component-spinner/src/BpkLargeSpinner.js +64 -0
- package/bpk-component-spinner/src/BpkSpinner.js +63 -0
- 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 +25 -0
- package/bpk-component-spinner/src/themeAttributes.js +21 -0
- package/bpk-component-star-rating/README.md +99 -0
- package/bpk-component-star-rating/examples.js +195 -0
- package/bpk-component-star-rating/index.js +38 -0
- package/bpk-component-star-rating/package.json +29 -0
- package/bpk-component-star-rating/src/BpkInteractiveStar.js +86 -0
- 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 +126 -0
- package/bpk-component-star-rating/src/BpkStar.js +111 -0
- 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 +123 -0
- 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 +21 -0
- package/bpk-component-star-rating/src/withInteractiveStarRatingState.js +99 -0
- package/bpk-component-switch/README.md +37 -0
- package/bpk-component-switch/examples.js +40 -0
- package/bpk-component-switch/index.js +28 -0
- package/bpk-component-switch/package.json +24 -0
- package/bpk-component-switch/src/BpkSwitch.js +82 -0
- 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 +19 -0
- package/bpk-component-table/README.md +66 -0
- package/bpk-component-table/examples.js +97 -0
- package/bpk-component-table/index.js +35 -0
- package/bpk-component-table/package.json +24 -0
- package/bpk-component-table/src/BpkTable.js +63 -0
- 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 +32 -0
- package/bpk-component-table/src/BpkTableCell.js +56 -0
- package/bpk-component-table/src/BpkTableHead.js +32 -0
- package/bpk-component-table/src/BpkTableHeadCell.js +54 -0
- package/bpk-component-table/src/BpkTableRow.js +32 -0
- package/bpk-component-text/README.md +76 -0
- package/bpk-component-text/examples.js +135 -0
- package/bpk-component-text/examples.module.css +18 -0
- package/bpk-component-text/examples.module.scss +25 -0
- package/bpk-component-text/index.js +24 -0
- package/bpk-component-text/package.json +24 -0
- package/bpk-component-text/src/BpkText.js +150 -0
- package/bpk-component-text/src/BpkText.module.css +18 -0
- package/bpk-component-text/src/BpkText.module.scss +135 -0
- package/bpk-component-textarea/README.md +34 -0
- package/bpk-component-textarea/examples.js +116 -0
- package/bpk-component-textarea/index.js +25 -0
- package/bpk-component-textarea/package.json +28 -0
- package/bpk-component-textarea/src/BpkTextarea.js +75 -0
- 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 +21 -0
- package/bpk-component-theme-toggle/README.md +30 -0
- package/bpk-component-theme-toggle/index.js +23 -0
- package/bpk-component-theme-toggle/package.json +28 -0
- package/bpk-component-theme-toggle/src/BpkThemeToggle.js +120 -0
- 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 +274 -0
- package/bpk-component-theme-toggle/src/updateOnThemeChange.js +73 -0
- package/bpk-component-theme-toggle/src/utils.js +23 -0
- package/bpk-component-ticket/README.md +38 -0
- package/bpk-component-ticket/examples.js +203 -0
- package/bpk-component-ticket/examples.module.css +18 -0
- package/bpk-component-ticket/examples.module.scss +79 -0
- package/bpk-component-ticket/index.js +23 -0
- package/bpk-component-ticket/package.json +28 -0
- package/bpk-component-ticket/src/BpkTicket.js +187 -0
- package/bpk-component-ticket/src/BpkTicket.module.css +18 -0
- package/bpk-component-ticket/src/BpkTicket.module.scss +297 -0
- package/bpk-component-tooltip/README.md +56 -0
- package/bpk-component-tooltip/examples.js +181 -0
- package/bpk-component-tooltip/index.js +27 -0
- package/bpk-component-tooltip/package.json +29 -0
- package/bpk-component-tooltip/src/BpkTooltip.js +98 -0
- package/bpk-component-tooltip/src/BpkTooltip.module.css +18 -0
- package/bpk-component-tooltip/src/BpkTooltip.module.scss +153 -0
- package/bpk-component-tooltip/src/BpkTooltipPortal.js +212 -0
- package/bpk-component-tooltip/src/constants.js +27 -0
- package/bpk-react-utils/README.md +251 -0
- package/bpk-react-utils/index.js +58 -0
- package/bpk-react-utils/package.json +26 -0
- package/bpk-react-utils/src/Portal.js +310 -0
- package/bpk-react-utils/src/TransitionInitialMount.js +63 -0
- package/bpk-react-utils/src/cssModules.js +29 -0
- package/bpk-react-utils/src/deprecated.js +40 -0
- package/bpk-react-utils/src/deviceDetection.js +31 -0
- package/bpk-react-utils/src/isRTL.js +36 -0
- package/bpk-react-utils/src/withDefaultProps.js +77 -0
- package/bpk-scrim-utils/README.md +50 -0
- package/bpk-scrim-utils/index.js +24 -0
- package/bpk-scrim-utils/package.json +25 -0
- package/bpk-scrim-utils/src/BpkScrim.js +52 -0
- 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 +39 -0
- package/bpk-scrim-utils/src/scroll-utils.js +115 -0
- package/bpk-scrim-utils/src/withScrim.js +161 -0
- package/bpk-tether/.eslintrc +6 -0
- package/bpk-tether/README.md +52 -0
- package/bpk-tether/index.js +24 -0
- package/bpk-tether/package.json +19 -0
- package/bpk-tether/src/TetherWrapper.js +30 -0
- package/bpk-tether/src/applyRTLTransforms.js +49 -0
- package/bpk-tether/src/getArrowPositionCallback.js +65 -0
- package/bpk-theming/README.md +43 -0
- package/bpk-theming/index.js +21 -0
- package/bpk-theming/package.json +23 -0
- package/bpk-theming/src/BpkThemeProvider.js +149 -0
- package/package.json +50 -0
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Backpack - Skyscanner's Design System
|
|
3
|
+
*
|
|
4
|
+
* Copyright 2016 Skyscanner Ltd
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
import React from 'react';
|
|
20
|
+
import PropTypes from 'prop-types';
|
|
21
|
+
import { cssModules } from 'bpk-react-utils';
|
|
22
|
+
|
|
23
|
+
import BpkPaginationList from './BpkPaginationList';
|
|
24
|
+
import BpkPaginationNudger from './BpkPaginationNudger';
|
|
25
|
+
import STYLES from './BpkPagination.module.scss';
|
|
26
|
+
|
|
27
|
+
const getClassName = cssModules(STYLES);
|
|
28
|
+
|
|
29
|
+
const handlePageChange = (onPageChange, pageCount) => (nextPageIndex) => {
|
|
30
|
+
if (onPageChange && nextPageIndex < pageCount && nextPageIndex >= 0) {
|
|
31
|
+
onPageChange(nextPageIndex);
|
|
32
|
+
}
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
const BpkPagination = (props) => {
|
|
36
|
+
const classNames = [getClassName('bpk-pagination')];
|
|
37
|
+
const {
|
|
38
|
+
className,
|
|
39
|
+
nextLabel,
|
|
40
|
+
onPageChange,
|
|
41
|
+
pageCount,
|
|
42
|
+
pageLabel,
|
|
43
|
+
paginationLabel,
|
|
44
|
+
previousLabel,
|
|
45
|
+
selectedPageIndex,
|
|
46
|
+
visibleRange,
|
|
47
|
+
...rest
|
|
48
|
+
} = props;
|
|
49
|
+
|
|
50
|
+
if (className) {
|
|
51
|
+
classNames.push(getClassName(className));
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
const pageChanged = handlePageChange(onPageChange, pageCount);
|
|
55
|
+
|
|
56
|
+
const hasPreviousPage = selectedPageIndex !== 0;
|
|
57
|
+
const hasNextPage = selectedPageIndex !== pageCount - 1;
|
|
58
|
+
|
|
59
|
+
return (
|
|
60
|
+
<nav className={classNames.join('')} aria-label={paginationLabel} {...rest}>
|
|
61
|
+
<BpkPaginationNudger
|
|
62
|
+
label={previousLabel}
|
|
63
|
+
onNudge={() => pageChanged(selectedPageIndex - 1)}
|
|
64
|
+
disabled={!hasPreviousPage}
|
|
65
|
+
/>
|
|
66
|
+
<BpkPaginationList
|
|
67
|
+
selectedPageIndex={selectedPageIndex}
|
|
68
|
+
pageCount={pageCount}
|
|
69
|
+
onPageChange={pageChanged}
|
|
70
|
+
visibleRange={visibleRange}
|
|
71
|
+
pageLabel={pageLabel}
|
|
72
|
+
/>
|
|
73
|
+
<BpkPaginationNudger
|
|
74
|
+
label={nextLabel}
|
|
75
|
+
onNudge={() => pageChanged(selectedPageIndex + 1)}
|
|
76
|
+
forward
|
|
77
|
+
disabled={!hasNextPage}
|
|
78
|
+
/>
|
|
79
|
+
</nav>
|
|
80
|
+
);
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
BpkPagination.propTypes = {
|
|
84
|
+
selectedPageIndex: PropTypes.number.isRequired,
|
|
85
|
+
onPageChange: PropTypes.func,
|
|
86
|
+
pageCount: PropTypes.number.isRequired,
|
|
87
|
+
previousLabel: PropTypes.string.isRequired,
|
|
88
|
+
nextLabel: PropTypes.string.isRequired,
|
|
89
|
+
paginationLabel: PropTypes.string.isRequired,
|
|
90
|
+
pageLabel: PropTypes.func.isRequired,
|
|
91
|
+
visibleRange: PropTypes.number,
|
|
92
|
+
className: PropTypes.string,
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
BpkPagination.defaultProps = {
|
|
96
|
+
onPageChange: null,
|
|
97
|
+
visibleRange: 3,
|
|
98
|
+
className: null,
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
export default BpkPagination;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Backpack - Skyscanner's Design System
|
|
3
|
+
*
|
|
4
|
+
* Copyright 2016 Skyscanner Ltd
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
.bpk-pagination{display:flex;justify-content:center}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Backpack - Skyscanner's Design System
|
|
3
|
+
*
|
|
4
|
+
* Copyright 2016 Skyscanner Ltd
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
.bpk-pagination {
|
|
20
|
+
display: flex;
|
|
21
|
+
justify-content: center;
|
|
22
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Backpack - Skyscanner's Design System
|
|
3
|
+
*
|
|
4
|
+
* Copyright 2016 Skyscanner Ltd
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
import React from 'react';
|
|
20
|
+
import PropTypes from 'prop-types';
|
|
21
|
+
|
|
22
|
+
const BpkPaginationBreak = (props) => {
|
|
23
|
+
const { breakLabel } = props;
|
|
24
|
+
return <div>{breakLabel}</div>;
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
BpkPaginationBreak.propTypes = {
|
|
28
|
+
breakLabel: PropTypes.string,
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
BpkPaginationBreak.defaultProps = {
|
|
32
|
+
breakLabel: '...',
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
export default BpkPaginationBreak;
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Backpack - Skyscanner's Design System
|
|
3
|
+
*
|
|
4
|
+
* Copyright 2016 Skyscanner Ltd
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
import PropTypes from 'prop-types';
|
|
20
|
+
import React from 'react';
|
|
21
|
+
import { cssModules } from 'bpk-react-utils';
|
|
22
|
+
|
|
23
|
+
import BpkPaginationPage from './BpkPaginationPage';
|
|
24
|
+
import BpkPaginationBreak from './BpkPaginationBreak';
|
|
25
|
+
import STYLES from './BpkPaginationList.module.scss';
|
|
26
|
+
|
|
27
|
+
const getClassName = cssModules(STYLES);
|
|
28
|
+
|
|
29
|
+
const BpkPaginationList = (props) => {
|
|
30
|
+
const {
|
|
31
|
+
onPageChange,
|
|
32
|
+
pageCount,
|
|
33
|
+
pageLabel,
|
|
34
|
+
selectedPageIndex,
|
|
35
|
+
visibleRange,
|
|
36
|
+
} = props;
|
|
37
|
+
|
|
38
|
+
const shoulderRange = Math.ceil(visibleRange / 2);
|
|
39
|
+
const isFirstPageSelected = selectedPageIndex === 0;
|
|
40
|
+
const isLastPageSelected = selectedPageIndex === pageCount - 1;
|
|
41
|
+
const displayRange =
|
|
42
|
+
isFirstPageSelected || isLastPageSelected
|
|
43
|
+
? shoulderRange + 1
|
|
44
|
+
: shoulderRange;
|
|
45
|
+
|
|
46
|
+
const children = new Array(pageCount)
|
|
47
|
+
.fill(undefined)
|
|
48
|
+
.map((_, i) => {
|
|
49
|
+
const isFirstPage = i === 0;
|
|
50
|
+
const isLastPage = i === pageCount - 1;
|
|
51
|
+
const isFirstPageInRange =
|
|
52
|
+
i === selectedPageIndex - displayRange && !isFirstPage;
|
|
53
|
+
const isLastPageInRange =
|
|
54
|
+
i === selectedPageIndex + displayRange && !isLastPage;
|
|
55
|
+
const isPageOutOfRange =
|
|
56
|
+
i < selectedPageIndex - displayRange ||
|
|
57
|
+
i > selectedPageIndex + displayRange;
|
|
58
|
+
|
|
59
|
+
let pageView = null;
|
|
60
|
+
if (isFirstPageInRange || isLastPageInRange) {
|
|
61
|
+
pageView = <BpkPaginationBreak />;
|
|
62
|
+
} else if (!isPageOutOfRange || isFirstPage || isLastPage) {
|
|
63
|
+
pageView = (
|
|
64
|
+
<BpkPaginationPage
|
|
65
|
+
page={i + 1}
|
|
66
|
+
onSelect={() => onPageChange(i)}
|
|
67
|
+
isSelected={selectedPageIndex === i}
|
|
68
|
+
pageLabel={pageLabel}
|
|
69
|
+
/>
|
|
70
|
+
);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
if (pageView !== null) {
|
|
74
|
+
return (
|
|
75
|
+
<li
|
|
76
|
+
key={i} // eslint-disable-line react/no-array-index-key
|
|
77
|
+
className={getClassName('bpk-pagination-page-list__item')}
|
|
78
|
+
>
|
|
79
|
+
{pageView}
|
|
80
|
+
</li>
|
|
81
|
+
);
|
|
82
|
+
}
|
|
83
|
+
return null;
|
|
84
|
+
})
|
|
85
|
+
.filter((page) => !!page);
|
|
86
|
+
|
|
87
|
+
return (
|
|
88
|
+
<ul className={getClassName('bpk-pagination-page-list')}>{children}</ul>
|
|
89
|
+
);
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
BpkPaginationList.propTypes = {
|
|
93
|
+
selectedPageIndex: PropTypes.number.isRequired,
|
|
94
|
+
pageCount: PropTypes.number.isRequired,
|
|
95
|
+
visibleRange: PropTypes.number.isRequired,
|
|
96
|
+
onPageChange: PropTypes.func.isRequired,
|
|
97
|
+
pageLabel: PropTypes.func.isRequired,
|
|
98
|
+
};
|
|
99
|
+
|
|
100
|
+
export default BpkPaginationList;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Backpack - Skyscanner's Design System
|
|
3
|
+
*
|
|
4
|
+
* Copyright 2016 Skyscanner Ltd
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
@keyframes bpk-keyframe-spin{100%{transform:rotate(1turn)}}.bpk-pagination-page-list{display:flex;margin:0;padding:0;list-style:none}.bpk-pagination-page-list__item{margin-right:0.5rem}html[dir='rtl'] .bpk-pagination-page-list__item{margin-right:0;margin-left:0.5rem}html[dir='rtl'] .bpk-pagination-page-list__item:last-child{margin-left:0}.bpk-pagination-page-list__item:last-child{margin-right:0}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Backpack - Skyscanner's Design System
|
|
3
|
+
*
|
|
4
|
+
* Copyright 2016 Skyscanner Ltd
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
@import '~bpk-mixins/index';
|
|
20
|
+
|
|
21
|
+
$bpk-spacing-v2: true;
|
|
22
|
+
|
|
23
|
+
.bpk-pagination-page-list {
|
|
24
|
+
display: flex;
|
|
25
|
+
margin: 0;
|
|
26
|
+
padding: 0;
|
|
27
|
+
list-style: none;
|
|
28
|
+
|
|
29
|
+
&__item {
|
|
30
|
+
margin-right: bpk-spacing-md();
|
|
31
|
+
|
|
32
|
+
@include bpk-rtl {
|
|
33
|
+
margin-right: 0;
|
|
34
|
+
margin-left: bpk-spacing-md();
|
|
35
|
+
|
|
36
|
+
&:last-child {
|
|
37
|
+
margin-left: 0;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&:last-child {
|
|
42
|
+
margin-right: 0;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Backpack - Skyscanner's Design System
|
|
3
|
+
*
|
|
4
|
+
* Copyright 2016 Skyscanner Ltd
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
import PropTypes from 'prop-types';
|
|
20
|
+
import React from 'react';
|
|
21
|
+
import { cssModules } from 'bpk-react-utils';
|
|
22
|
+
import { withButtonAlignment, withRtlSupport } from 'bpk-component-icon';
|
|
23
|
+
import ArrowLeftIcon from 'bpk-component-icon/lg/arrow-left';
|
|
24
|
+
import ArrowRightIcon from 'bpk-component-icon/lg/arrow-right';
|
|
25
|
+
|
|
26
|
+
import STYLES from './BpkPaginationNudger.module.scss';
|
|
27
|
+
|
|
28
|
+
const getClassName = cssModules(STYLES);
|
|
29
|
+
const AlignedArrowLeftIcon = withButtonAlignment(withRtlSupport(ArrowLeftIcon));
|
|
30
|
+
const AlignedArrowRightIcon = withButtonAlignment(
|
|
31
|
+
withRtlSupport(ArrowRightIcon),
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
const nudgerIcon = (forward) =>
|
|
35
|
+
forward ? (
|
|
36
|
+
<AlignedArrowRightIcon
|
|
37
|
+
className={getClassName('bpk-pagination-nudger__icon')}
|
|
38
|
+
/>
|
|
39
|
+
) : (
|
|
40
|
+
<AlignedArrowLeftIcon
|
|
41
|
+
className={getClassName('bpk-pagination-nudger__icon')}
|
|
42
|
+
/>
|
|
43
|
+
);
|
|
44
|
+
|
|
45
|
+
const BpkPaginationNudger = (props) => {
|
|
46
|
+
const { disabled, forward, label, onNudge } = props;
|
|
47
|
+
|
|
48
|
+
return (
|
|
49
|
+
<div className={getClassName('bpk-pagination-nudger')}>
|
|
50
|
+
<button
|
|
51
|
+
type="button"
|
|
52
|
+
className={getClassName('bpk-pagination-nudger__button')}
|
|
53
|
+
onClick={onNudge}
|
|
54
|
+
disabled={disabled}
|
|
55
|
+
>
|
|
56
|
+
{nudgerIcon(forward)}
|
|
57
|
+
<span className={getClassName('bpk-pagination-nudger__text--hidden')}>
|
|
58
|
+
{label}
|
|
59
|
+
</span>
|
|
60
|
+
</button>
|
|
61
|
+
</div>
|
|
62
|
+
);
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
BpkPaginationNudger.propTypes = {
|
|
66
|
+
label: PropTypes.string.isRequired,
|
|
67
|
+
onNudge: PropTypes.func.isRequired,
|
|
68
|
+
forward: PropTypes.bool,
|
|
69
|
+
disabled: PropTypes.bool,
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
BpkPaginationNudger.defaultProps = {
|
|
73
|
+
forward: false,
|
|
74
|
+
disabled: false,
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
export default BpkPaginationNudger;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Backpack - Skyscanner's Design System
|
|
3
|
+
*
|
|
4
|
+
* Copyright 2016 Skyscanner Ltd
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
@keyframes bpk-keyframe-spin{100%{transform:rotate(1turn)}}.bpk-pagination-nudger{text-align:center;vertical-align:middle}.bpk-pagination-nudger__button{height:2.25rem;padding:0 0.5rem;border:none;background:none;cursor:pointer;appearance:none;color:#0770e3;color:var(--bpk-pagination-nudger-color, #0770e3)}.bpk-no-touch-support .bpk-pagination-nudger__button:hover:not(:active):not(:disabled){color:#042759;color:var(--bpk-pagination-nudger-hover-color, #042759)}:global(.bpk-no-touch-support) .bpk-pagination-nudger__button:hover:not(:active):not(:disabled){color:#042759;color:var(--bpk-pagination-nudger-hover-color, #042759)}.bpk-pagination-nudger__button:active{color:#0770e3;color:var(--bpk-pagination-nudger-active-color, #0770e3)}.bpk-pagination-nudger__button:disabled{color:#dddde5;cursor:not-allowed}.bpk-pagination-nudger__button .bpk-pagination-nudger__icon{fill:currentColor}html[dir='rtl'] .bpk-pagination-nudger__button .bpk-pagination-nudger__icon{transform:scaleX(-1)}.bpk-pagination-nudger__text--hidden{position:absolute;width:1px;height:1px;margin:-1px;padding:0;border:0;overflow:hidden;clip:rect(0 0 0 0)}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Backpack - Skyscanner's Design System
|
|
3
|
+
*
|
|
4
|
+
* Copyright 2016 Skyscanner Ltd
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
@import '~bpk-mixins/index';
|
|
20
|
+
|
|
21
|
+
$bpk-spacing-v2: true;
|
|
22
|
+
|
|
23
|
+
.bpk-pagination-nudger {
|
|
24
|
+
text-align: center;
|
|
25
|
+
vertical-align: middle;
|
|
26
|
+
|
|
27
|
+
&__button {
|
|
28
|
+
height: $bpk-button-height;
|
|
29
|
+
padding: 0 bpk-spacing-md();
|
|
30
|
+
border: none;
|
|
31
|
+
background: none;
|
|
32
|
+
cursor: pointer;
|
|
33
|
+
appearance: none;
|
|
34
|
+
|
|
35
|
+
@include bpk-themeable-property(
|
|
36
|
+
color,
|
|
37
|
+
--bpk-pagination-nudger-color,
|
|
38
|
+
$bpk-color-sky-blue
|
|
39
|
+
);
|
|
40
|
+
|
|
41
|
+
@include bpk-hover {
|
|
42
|
+
@include bpk-themeable-property(
|
|
43
|
+
color,
|
|
44
|
+
--bpk-pagination-nudger-hover-color,
|
|
45
|
+
$bpk-color-sky-blue-shade-02
|
|
46
|
+
);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&:active {
|
|
50
|
+
@include bpk-themeable-property(
|
|
51
|
+
color,
|
|
52
|
+
--bpk-pagination-nudger-active-color,
|
|
53
|
+
$bpk-color-sky-blue
|
|
54
|
+
);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
&:disabled {
|
|
58
|
+
color: $bpk-color-sky-gray-tint-06;
|
|
59
|
+
cursor: not-allowed;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.bpk-pagination-nudger__icon {
|
|
63
|
+
fill: currentColor;
|
|
64
|
+
|
|
65
|
+
@include bpk-icon--rtl-support;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
&__text {
|
|
70
|
+
&--hidden {
|
|
71
|
+
@include bpk-visually-hidden;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Backpack - Skyscanner's Design System
|
|
3
|
+
*
|
|
4
|
+
* Copyright 2016 Skyscanner Ltd
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
import BpkButton from 'bpk-component-button';
|
|
20
|
+
import PropTypes from 'prop-types';
|
|
21
|
+
import React from 'react';
|
|
22
|
+
import { cssModules } from 'bpk-react-utils';
|
|
23
|
+
|
|
24
|
+
import STYLES from './BpkPaginationPage.module.scss';
|
|
25
|
+
|
|
26
|
+
const getClassName = cssModules(STYLES);
|
|
27
|
+
|
|
28
|
+
const BpkPaginationPage = (props) => {
|
|
29
|
+
const classNames = [getClassName('bpk-pagination-page')];
|
|
30
|
+
const { isSelected, onSelect, page, pageLabel } = props;
|
|
31
|
+
|
|
32
|
+
if (isSelected) {
|
|
33
|
+
classNames.push(getClassName('bpk-pagination-page--selected'));
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
return (
|
|
37
|
+
<BpkButton
|
|
38
|
+
secondary
|
|
39
|
+
onClick={onSelect}
|
|
40
|
+
className={classNames.join(' ')}
|
|
41
|
+
aria-label={pageLabel(page, isSelected)}
|
|
42
|
+
aria-current={isSelected}
|
|
43
|
+
>
|
|
44
|
+
<span>{page}</span>
|
|
45
|
+
</BpkButton>
|
|
46
|
+
);
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
BpkPaginationPage.propTypes = {
|
|
50
|
+
page: PropTypes.number.isRequired,
|
|
51
|
+
onSelect: PropTypes.func.isRequired,
|
|
52
|
+
pageLabel: PropTypes.func.isRequired,
|
|
53
|
+
isSelected: PropTypes.bool,
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
BpkPaginationPage.defaultProps = {
|
|
57
|
+
isSelected: false,
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export default BpkPaginationPage;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Backpack - Skyscanner's Design System
|
|
3
|
+
*
|
|
4
|
+
* Copyright 2016 Skyscanner Ltd
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
@keyframes bpk-keyframe-spin{100%{transform:rotate(1turn)}}.bpk-pagination-page{min-width:2.25rem;height:2.25rem;padding:0;border-radius:50%}.bpk-pagination-page--selected{background-image:none;color:#fff;box-shadow:none;cursor:auto;background-color:#042759;background-color:var(--bpk-pagination-selected-background-color, #042759);box-shadow:0 0 0 2px #042759 inset;box-shadow:0 0 0 2px var(--bpk-pagination-selected-background-color, #042759) inset}.bpk-no-touch-support .bpk-pagination-page--selected:hover:not(:active):not(:disabled){background-image:none;color:#fff;box-shadow:none;background-color:#042759;background-color:var(--bpk-pagination-selected-background-color, #042759);box-shadow:0 0 0 2px #042759 inset;box-shadow:0 0 0 2px var(--bpk-pagination-selected-background-color, #042759) inset}:global(.bpk-no-touch-support) .bpk-pagination-page--selected:hover:not(:active):not(:disabled){background-image:none;color:#fff;box-shadow:none;background-color:#042759;background-color:var(--bpk-pagination-selected-background-color, #042759);box-shadow:0 0 0 2px #042759 inset;box-shadow:0 0 0 2px var(--bpk-pagination-selected-background-color, #042759) inset}.bpk-pagination-page--selected:active{background-image:none;color:#fff;box-shadow:none;background-color:#042759;background-color:var(--bpk-pagination-selected-background-color, #042759);box-shadow:0 0 0 2px #042759 inset;box-shadow:0 0 0 2px var(--bpk-pagination-selected-background-color, #042759) inset}.bpk-pagination-page--selected:disabled{box-shadow:none}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Backpack - Skyscanner's Design System
|
|
3
|
+
*
|
|
4
|
+
* Copyright 2016 Skyscanner Ltd
|
|
5
|
+
*
|
|
6
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
* you may not use this file except in compliance with the License.
|
|
8
|
+
* You may obtain a copy of the License at
|
|
9
|
+
*
|
|
10
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
*
|
|
12
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
+
* See the License for the specific language governing permissions and
|
|
16
|
+
* limitations under the License.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
@import '~bpk-mixins/index';
|
|
20
|
+
|
|
21
|
+
$bpk-spacing-v2: true;
|
|
22
|
+
|
|
23
|
+
.bpk-pagination-page {
|
|
24
|
+
min-width: $bpk-button-height;
|
|
25
|
+
height: $bpk-button-height;
|
|
26
|
+
padding: 0;
|
|
27
|
+
border-radius: 50%;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.bpk-pagination-page--selected {
|
|
31
|
+
background-image: $bpk-button-secondary-background-image;
|
|
32
|
+
color: $bpk-button-selected-color;
|
|
33
|
+
box-shadow: $bpk-button-selected-box-shadow;
|
|
34
|
+
cursor: auto;
|
|
35
|
+
|
|
36
|
+
@include bpk-themeable-property(
|
|
37
|
+
background-color,
|
|
38
|
+
--bpk-pagination-selected-background-color,
|
|
39
|
+
$bpk-color-sky-blue-shade-02
|
|
40
|
+
);
|
|
41
|
+
@include bpk-border-lg($bpk-color-sky-blue-shade-02);
|
|
42
|
+
@include bpk-border-lg(
|
|
43
|
+
var(
|
|
44
|
+
--bpk-pagination-selected-background-color,
|
|
45
|
+
$bpk-color-sky-blue-shade-02
|
|
46
|
+
)
|
|
47
|
+
);
|
|
48
|
+
|
|
49
|
+
@include bpk-hover {
|
|
50
|
+
background-image: $bpk-button-selected-hover-background-image;
|
|
51
|
+
color: $bpk-button-selected-hover-color;
|
|
52
|
+
box-shadow: $bpk-button-selected-hover-box-shadow;
|
|
53
|
+
|
|
54
|
+
@include bpk-themeable-property(
|
|
55
|
+
background-color,
|
|
56
|
+
--bpk-pagination-selected-background-color,
|
|
57
|
+
$bpk-color-sky-blue-shade-02
|
|
58
|
+
);
|
|
59
|
+
@include bpk-border-lg($bpk-color-sky-blue-shade-02);
|
|
60
|
+
@include bpk-border-lg(
|
|
61
|
+
var(
|
|
62
|
+
--bpk-pagination-selected-background-color,
|
|
63
|
+
$bpk-color-sky-blue-shade-02
|
|
64
|
+
)
|
|
65
|
+
);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
&:active {
|
|
69
|
+
background-image: $bpk-button-selected-active-background-image;
|
|
70
|
+
color: $bpk-button-selected-active-color;
|
|
71
|
+
box-shadow: $bpk-button-selected-active-box-shadow;
|
|
72
|
+
|
|
73
|
+
@include bpk-themeable-property(
|
|
74
|
+
background-color,
|
|
75
|
+
--bpk-pagination-selected-background-color,
|
|
76
|
+
$bpk-color-sky-blue-shade-02
|
|
77
|
+
);
|
|
78
|
+
@include bpk-border-lg($bpk-color-sky-blue-shade-02);
|
|
79
|
+
@include bpk-border-lg(
|
|
80
|
+
var(
|
|
81
|
+
--bpk-pagination-selected-background-color,
|
|
82
|
+
$bpk-color-sky-blue-shade-02
|
|
83
|
+
)
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
&:disabled {
|
|
88
|
+
box-shadow: $bpk-button-selected-disabled-box-shadow;
|
|
89
|
+
}
|
|
90
|
+
}
|