@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,31 @@
|
|
|
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-scrollable-calendar-grid {
|
|
24
|
+
width: 100%;
|
|
25
|
+
border-collapse: separate;
|
|
26
|
+
border-spacing: 0;
|
|
27
|
+
|
|
28
|
+
&__title {
|
|
29
|
+
margin-top: bpk-spacing-lg();
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,156 @@
|
|
|
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, deprecated } from 'bpk-react-utils';
|
|
22
|
+
import { DateUtils, BpkCalendarGridPropTypes } from 'bpk-component-calendar';
|
|
23
|
+
import { startOfDay, startOfMonth } from 'date-fns';
|
|
24
|
+
import {
|
|
25
|
+
AutoSizer,
|
|
26
|
+
List,
|
|
27
|
+
CellMeasurer,
|
|
28
|
+
CellMeasurerCache,
|
|
29
|
+
} from 'react-virtualized';
|
|
30
|
+
|
|
31
|
+
import STYLES from './BpkScrollableCalendarGridList.module.scss';
|
|
32
|
+
import BpkScrollableCalendarGrid from './BpkScrollableCalendarGrid';
|
|
33
|
+
import getMonthsArray from './utils';
|
|
34
|
+
|
|
35
|
+
const getClassName = cssModules(STYLES);
|
|
36
|
+
|
|
37
|
+
class BpkScrollableCalendarGridList extends React.Component {
|
|
38
|
+
constructor(props) {
|
|
39
|
+
super(props);
|
|
40
|
+
|
|
41
|
+
this.rowRenderer = this.rowRenderer.bind(this);
|
|
42
|
+
this.renderList = this.renderList.bind(this);
|
|
43
|
+
|
|
44
|
+
const startDate = startOfDay(startOfMonth(this.props.minDate));
|
|
45
|
+
const endDate = startOfDay(startOfMonth(this.props.maxDate));
|
|
46
|
+
const monthsCount = DateUtils.differenceInCalendarMonths(
|
|
47
|
+
endDate,
|
|
48
|
+
startDate,
|
|
49
|
+
);
|
|
50
|
+
const months = getMonthsArray(startDate, monthsCount);
|
|
51
|
+
|
|
52
|
+
const cache = new CellMeasurerCache({
|
|
53
|
+
fixedWidth: true,
|
|
54
|
+
defaultHeight: 276, // most common height (in px) of BpkScrollableCalendarGrid
|
|
55
|
+
});
|
|
56
|
+
this.state = {
|
|
57
|
+
months,
|
|
58
|
+
cache,
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
getHtmlElement = () =>
|
|
63
|
+
typeof document !== 'undefined' ? document.querySelector('html') : {};
|
|
64
|
+
|
|
65
|
+
rowRenderer({ index, key, parent, style }) {
|
|
66
|
+
return (
|
|
67
|
+
<CellMeasurer
|
|
68
|
+
key={key}
|
|
69
|
+
cache={this.state.cache}
|
|
70
|
+
parent={parent}
|
|
71
|
+
columnIndex={0}
|
|
72
|
+
rowIndex={index}
|
|
73
|
+
>
|
|
74
|
+
<div style={style}>
|
|
75
|
+
<BpkScrollableCalendarGrid
|
|
76
|
+
onDateClick={this.props.onDateClick}
|
|
77
|
+
{...this.props}
|
|
78
|
+
key={key}
|
|
79
|
+
month={this.state.months[index]}
|
|
80
|
+
focusedDate={this.props.focusedDate}
|
|
81
|
+
preventKeyboardFocus={this.props.preventKeyboardFocus}
|
|
82
|
+
aria-hidden={index !== 1}
|
|
83
|
+
className={getClassName('bpk-scrollable-calendar-grid-list__item')}
|
|
84
|
+
/>
|
|
85
|
+
</div>
|
|
86
|
+
</CellMeasurer>
|
|
87
|
+
);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
renderList(width, height, minDate, focusedDate, selectionConfiguration) {
|
|
91
|
+
const { date, startDate } = selectionConfiguration || {};
|
|
92
|
+
const selectedDate = focusedDate || date || startDate;
|
|
93
|
+
return (
|
|
94
|
+
<List
|
|
95
|
+
extraData={this.props}
|
|
96
|
+
style={this.getHtmlElement().dir === 'rtl' ? { direction: 'rtl' } : {}}
|
|
97
|
+
width={width}
|
|
98
|
+
height={height}
|
|
99
|
+
deferredMeasurementCache={this.state.cache}
|
|
100
|
+
rowHeight={this.state.cache.rowHeight}
|
|
101
|
+
rowRenderer={this.rowRenderer}
|
|
102
|
+
rowCount={this.state.months.length}
|
|
103
|
+
overscanRowCount={0}
|
|
104
|
+
scrollToIndex={
|
|
105
|
+
selectedDate
|
|
106
|
+
? DateUtils.differenceInCalendarMonths(selectedDate, minDate)
|
|
107
|
+
: 0
|
|
108
|
+
}
|
|
109
|
+
/>
|
|
110
|
+
);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
render() {
|
|
114
|
+
const { focusedDate, minDate, selectionConfiguration } = this.props;
|
|
115
|
+
return (
|
|
116
|
+
<div
|
|
117
|
+
className={getClassName(
|
|
118
|
+
'bpk-scrollable-calendar-grid-list',
|
|
119
|
+
this.props.className,
|
|
120
|
+
)}
|
|
121
|
+
>
|
|
122
|
+
<AutoSizer>
|
|
123
|
+
{({ height, width }) =>
|
|
124
|
+
this.renderList(
|
|
125
|
+
width,
|
|
126
|
+
height,
|
|
127
|
+
minDate,
|
|
128
|
+
focusedDate,
|
|
129
|
+
selectionConfiguration,
|
|
130
|
+
)
|
|
131
|
+
}
|
|
132
|
+
</AutoSizer>
|
|
133
|
+
</div>
|
|
134
|
+
);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
BpkScrollableCalendarGridList.propTypes = {
|
|
139
|
+
className: PropTypes.string,
|
|
140
|
+
minDate: PropTypes.instanceOf(Date).isRequired,
|
|
141
|
+
maxDate: PropTypes.instanceOf(Date).isRequired,
|
|
142
|
+
selectedDate: deprecated(
|
|
143
|
+
PropTypes.instanceOf(Date),
|
|
144
|
+
'Use selectionConfiguration to set selectedDate',
|
|
145
|
+
),
|
|
146
|
+
focusedDate: PropTypes.instanceOf(Date),
|
|
147
|
+
...BpkCalendarGridPropTypes,
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
BpkScrollableCalendarGridList.defaultProps = {
|
|
151
|
+
className: null,
|
|
152
|
+
focusedDate: null,
|
|
153
|
+
selectedDate: null,
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
export default BpkScrollableCalendarGridList;
|
|
@@ -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-scrollable-calendar-grid-list{position:relative;width:100%;height:100%;min-height:26.25rem;overflow-x:hidden;box-sizing:border-box;-ms-overflow-style:-ms-autohiding-scrollbar}.bpk-scrollable-calendar-grid-list__item{display:inline-table}
|
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
$calendar-height: 7 * ($bpk-calendar-day-size + bpk-spacing-lg());
|
|
24
|
+
|
|
25
|
+
.bpk-scrollable-calendar-grid-list {
|
|
26
|
+
position: relative;
|
|
27
|
+
width: 100%;
|
|
28
|
+
height: 100%;
|
|
29
|
+
min-height: $calendar-height;
|
|
30
|
+
overflow-x: hidden;
|
|
31
|
+
box-sizing: border-box;
|
|
32
|
+
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
33
|
+
|
|
34
|
+
&__item {
|
|
35
|
+
display: inline-table;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
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 { DateUtils } from 'bpk-component-calendar';
|
|
20
|
+
|
|
21
|
+
const getMonthsArray = (startDate, count) => {
|
|
22
|
+
const months = [];
|
|
23
|
+
|
|
24
|
+
for (let i = 0; i < count + 1; i += 1) {
|
|
25
|
+
months.push(DateUtils.addMonths(startDate, i));
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
return months;
|
|
29
|
+
};
|
|
30
|
+
export default getMonthsArray;
|
|
@@ -0,0 +1,274 @@
|
|
|
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 format from 'date-fns/format';
|
|
20
|
+
|
|
21
|
+
export const formatDateFull = (date) => format(date, 'EEEE, do MMMM yyyy');
|
|
22
|
+
export const formatDateFullArabic = (date) => {
|
|
23
|
+
const dateString = 'EEEE, dd، MMMM، yyyy';
|
|
24
|
+
const newString = dateString.replace('yyyy', date.getUTCFullYear());
|
|
25
|
+
return format(date, newString);
|
|
26
|
+
};
|
|
27
|
+
export const formatDateFullJapanese = (date) => {
|
|
28
|
+
const dateString = 'Y年M月d日EEEE';
|
|
29
|
+
const newString = dateString.replace('Y', date.getUTCFullYear());
|
|
30
|
+
return format(date, newString);
|
|
31
|
+
};
|
|
32
|
+
export const formatMonth = (date) => format(date, 'MMMM yyyy');
|
|
33
|
+
export const formatMonthArabic = (date) => {
|
|
34
|
+
const months = [
|
|
35
|
+
'يناير',
|
|
36
|
+
'فبراير',
|
|
37
|
+
'مارس',
|
|
38
|
+
'أبريل',
|
|
39
|
+
'مايو',
|
|
40
|
+
'يونيو',
|
|
41
|
+
'يوليو',
|
|
42
|
+
'أغسطس',
|
|
43
|
+
'سبتمبر',
|
|
44
|
+
'أكتوبر',
|
|
45
|
+
'نوفمبر',
|
|
46
|
+
'ديسمبر',
|
|
47
|
+
];
|
|
48
|
+
return `${months[date.getMonth()]} ${date.getFullYear()}`;
|
|
49
|
+
};
|
|
50
|
+
export const formatMonthJapanese = (date) => {
|
|
51
|
+
const months = [
|
|
52
|
+
'1月',
|
|
53
|
+
'2月',
|
|
54
|
+
'3月',
|
|
55
|
+
'4月',
|
|
56
|
+
'5月',
|
|
57
|
+
'6月',
|
|
58
|
+
'7月',
|
|
59
|
+
'8月',
|
|
60
|
+
'9月',
|
|
61
|
+
'10月',
|
|
62
|
+
'11月',
|
|
63
|
+
'12月',
|
|
64
|
+
];
|
|
65
|
+
return `${date.getFullYear()}年${months[date.getMonth()]}`;
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
export const weekDays = [
|
|
69
|
+
{
|
|
70
|
+
name: 'Sunday',
|
|
71
|
+
nameAbbr: 'Sun',
|
|
72
|
+
index: 0,
|
|
73
|
+
isWeekend: true,
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
name: 'Monday',
|
|
77
|
+
nameAbbr: 'Mon',
|
|
78
|
+
index: 1,
|
|
79
|
+
isWeekend: false,
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
name: 'Tuesday',
|
|
83
|
+
nameAbbr: 'Tue',
|
|
84
|
+
index: 2,
|
|
85
|
+
isWeekend: false,
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
name: 'Wednesday',
|
|
89
|
+
nameAbbr: 'Wed',
|
|
90
|
+
index: 3,
|
|
91
|
+
isWeekend: false,
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
name: 'Thursday',
|
|
95
|
+
nameAbbr: 'Thu',
|
|
96
|
+
index: 4,
|
|
97
|
+
isWeekend: false,
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
name: 'Friday',
|
|
101
|
+
nameAbbr: 'Fri',
|
|
102
|
+
index: 5,
|
|
103
|
+
isWeekend: false,
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
name: 'Saturday',
|
|
107
|
+
nameAbbr: 'Sat',
|
|
108
|
+
index: 6,
|
|
109
|
+
isWeekend: true,
|
|
110
|
+
},
|
|
111
|
+
];
|
|
112
|
+
|
|
113
|
+
export const weekDaysMoreWeekend = [
|
|
114
|
+
{
|
|
115
|
+
name: 'Sunday',
|
|
116
|
+
nameAbbr: 'Sun',
|
|
117
|
+
index: 0,
|
|
118
|
+
isWeekend: true,
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
name: 'Monday',
|
|
122
|
+
nameAbbr: 'Mon',
|
|
123
|
+
index: 1,
|
|
124
|
+
isWeekend: false,
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
name: 'Tuesday',
|
|
128
|
+
nameAbbr: 'Tue',
|
|
129
|
+
index: 2,
|
|
130
|
+
isWeekend: false,
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
name: 'Wednesday',
|
|
134
|
+
nameAbbr: 'Wed',
|
|
135
|
+
index: 3,
|
|
136
|
+
isWeekend: false,
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
name: 'Thursday',
|
|
140
|
+
nameAbbr: 'Thu',
|
|
141
|
+
index: 4,
|
|
142
|
+
isWeekend: false,
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
name: 'Friday',
|
|
146
|
+
nameAbbr: 'Fri',
|
|
147
|
+
index: 5,
|
|
148
|
+
isWeekend: true,
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
name: 'Saturday',
|
|
152
|
+
nameAbbr: 'Sat',
|
|
153
|
+
index: 6,
|
|
154
|
+
isWeekend: true,
|
|
155
|
+
},
|
|
156
|
+
];
|
|
157
|
+
|
|
158
|
+
export const weekDaysArabic = [
|
|
159
|
+
{
|
|
160
|
+
name: 'الأحد',
|
|
161
|
+
nameAbbr: 'الأحد',
|
|
162
|
+
nameShort: 'الأحد',
|
|
163
|
+
index: 0,
|
|
164
|
+
cldrKey: 'sun',
|
|
165
|
+
isWeekend: false,
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
name: 'الاثنين',
|
|
169
|
+
nameAbbr: 'الاثنين',
|
|
170
|
+
nameShort: 'الاثنين',
|
|
171
|
+
index: 1,
|
|
172
|
+
cldrKey: 'mon',
|
|
173
|
+
isWeekend: false,
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
name: 'الثلاثاء',
|
|
177
|
+
nameAbbr: 'الثلاثاء',
|
|
178
|
+
nameShort: 'الثلاثاء',
|
|
179
|
+
index: 2,
|
|
180
|
+
cldrKey: 'tue',
|
|
181
|
+
isWeekend: false,
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
name: 'الأربعاء',
|
|
185
|
+
nameAbbr: 'الأربعاء',
|
|
186
|
+
nameShort: 'الأربعاء',
|
|
187
|
+
index: 3,
|
|
188
|
+
cldrKey: 'wed',
|
|
189
|
+
isWeekend: false,
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
name: 'الخميس',
|
|
193
|
+
nameAbbr: 'الخميس',
|
|
194
|
+
nameShort: 'الخميس',
|
|
195
|
+
index: 4,
|
|
196
|
+
cldrKey: 'thu',
|
|
197
|
+
isWeekend: false,
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
name: 'الجمعة',
|
|
201
|
+
nameAbbr: 'الجمعة',
|
|
202
|
+
nameShort: 'الجمعة',
|
|
203
|
+
index: 5,
|
|
204
|
+
cldrKey: 'fri',
|
|
205
|
+
isWeekend: true,
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
name: 'السبت',
|
|
209
|
+
nameAbbr: 'السبت',
|
|
210
|
+
nameShort: 'السبت',
|
|
211
|
+
index: 6,
|
|
212
|
+
cldrKey: 'sat',
|
|
213
|
+
isWeekend: true,
|
|
214
|
+
},
|
|
215
|
+
];
|
|
216
|
+
|
|
217
|
+
export const weekDaysJapanese = [
|
|
218
|
+
{
|
|
219
|
+
name: '日曜日',
|
|
220
|
+
nameAbbr: '日',
|
|
221
|
+
nameShort: '日',
|
|
222
|
+
index: 0,
|
|
223
|
+
cldrKey: 'sun',
|
|
224
|
+
isWeekend: true,
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
name: '月曜日',
|
|
228
|
+
nameAbbr: '月',
|
|
229
|
+
nameShort: '月',
|
|
230
|
+
index: 1,
|
|
231
|
+
cldrKey: 'mon',
|
|
232
|
+
isWeekend: false,
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
name: '火曜日',
|
|
236
|
+
nameAbbr: '火',
|
|
237
|
+
nameShort: '火',
|
|
238
|
+
index: 2,
|
|
239
|
+
cldrKey: 'tue',
|
|
240
|
+
isWeekend: false,
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
name: '水曜日',
|
|
244
|
+
nameAbbr: '水',
|
|
245
|
+
nameShort: '水',
|
|
246
|
+
index: 3,
|
|
247
|
+
cldrKey: 'wed',
|
|
248
|
+
isWeekend: false,
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
name: '木曜日',
|
|
252
|
+
nameAbbr: '木',
|
|
253
|
+
nameShort: '木',
|
|
254
|
+
index: 4,
|
|
255
|
+
cldrKey: 'thu',
|
|
256
|
+
isWeekend: false,
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
name: '金曜日',
|
|
260
|
+
nameAbbr: '金',
|
|
261
|
+
nameShort: '金',
|
|
262
|
+
index: 5,
|
|
263
|
+
cldrKey: 'fri',
|
|
264
|
+
isWeekend: false,
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
name: '土曜日',
|
|
268
|
+
nameAbbr: '土',
|
|
269
|
+
nameShort: '土',
|
|
270
|
+
index: 6,
|
|
271
|
+
cldrKey: 'sat',
|
|
272
|
+
isWeekend: true,
|
|
273
|
+
},
|
|
274
|
+
];
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# bpk-component-section-list
|
|
2
|
+
|
|
3
|
+
> Backpack section list component.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install bpk-component-section-list --save-dev
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```js
|
|
14
|
+
import React from 'react';
|
|
15
|
+
import BpkSectionList, { BpkSectionListSection, BpkSectionListItem } from 'bpk-component-section-list';
|
|
16
|
+
|
|
17
|
+
export default () => (
|
|
18
|
+
<BpkSectionList>
|
|
19
|
+
<BpkSectionListSection headerText="Cities">
|
|
20
|
+
<BpkSectionListItem>Tokyo</BpkSectionListItem>
|
|
21
|
+
<BpkSectionListItem onClick={() => {}}>Rio de Janeiro</BpkSectionListItem>
|
|
22
|
+
<BpkSectionListItem href="#">London</BpkSectionListItem>
|
|
23
|
+
</BpkSectionListSection>
|
|
24
|
+
</BpkSectionList>
|
|
25
|
+
);
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Props
|
|
29
|
+
|
|
30
|
+
### BpkSectionList
|
|
31
|
+
|
|
32
|
+
| Property | PropType | Required | Default Value |
|
|
33
|
+
| --------------------- | ----------------------------- | -------- | ------------- |
|
|
34
|
+
| children | node | true | - |
|
|
35
|
+
|
|
36
|
+
### BpkSectionListSection
|
|
37
|
+
|
|
38
|
+
| Property | PropType | Required | Default Value |
|
|
39
|
+
| --------------------- | ----------------------------- | -------- | ------------- |
|
|
40
|
+
| children | node | true | - |
|
|
41
|
+
| headerText | string | false | null |
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### BpkSectionListItem
|
|
45
|
+
|
|
46
|
+
| Property | PropType | Required | Default Value |
|
|
47
|
+
| --------------------- | ----------------------------- | -------- | ------------- |
|
|
48
|
+
| children | node | true | - |
|
|
49
|
+
| blank | bool | false | false |
|
|
50
|
+
| className | string | false | null |
|
|
51
|
+
| href | string | false | null |
|
|
52
|
+
| onClick | func | false | null |
|
|
@@ -0,0 +1,55 @@
|
|
|
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
|
+
/* @flow strict */
|
|
20
|
+
|
|
21
|
+
import React from 'react';
|
|
22
|
+
import { action } from 'bpk-storybook-utils';
|
|
23
|
+
|
|
24
|
+
import BpkSectionList, {
|
|
25
|
+
BpkSectionListSection,
|
|
26
|
+
BpkSectionListItem,
|
|
27
|
+
} from './index';
|
|
28
|
+
|
|
29
|
+
const DefaultExample = () => (
|
|
30
|
+
<BpkSectionList>
|
|
31
|
+
<BpkSectionListSection>
|
|
32
|
+
<BpkSectionListItem>Section list item</BpkSectionListItem>
|
|
33
|
+
<BpkSectionListItem
|
|
34
|
+
onClick={action('Clickable BpkSectionListItem clicked')}
|
|
35
|
+
>
|
|
36
|
+
With onClick prop
|
|
37
|
+
</BpkSectionListItem>
|
|
38
|
+
<BpkSectionListItem
|
|
39
|
+
href="https://skyscanner.net"
|
|
40
|
+
blank
|
|
41
|
+
onClick={action('BpkSectionListItem with href clicked')}
|
|
42
|
+
>
|
|
43
|
+
With href
|
|
44
|
+
</BpkSectionListItem>
|
|
45
|
+
</BpkSectionListSection>
|
|
46
|
+
<BpkSectionListSection headerText="Cities">
|
|
47
|
+
<BpkSectionListItem>Tokyo</BpkSectionListItem>
|
|
48
|
+
<BpkSectionListItem>Rio de Janeiro</BpkSectionListItem>
|
|
49
|
+
<BpkSectionListItem>London</BpkSectionListItem>
|
|
50
|
+
<BpkSectionListItem>Beijing</BpkSectionListItem>
|
|
51
|
+
</BpkSectionListSection>
|
|
52
|
+
</BpkSectionList>
|
|
53
|
+
);
|
|
54
|
+
|
|
55
|
+
export default DefaultExample;
|
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
/* @flow strict */
|
|
20
|
+
|
|
21
|
+
import BpkSectionList from './src/BpkSectionList';
|
|
22
|
+
import BpkSectionListSection from './src/BpkSectionListSection';
|
|
23
|
+
import BpkSectionListItem from './src/BpkSectionListItem';
|
|
24
|
+
|
|
25
|
+
export default BpkSectionList;
|
|
26
|
+
export { BpkSectionListSection, BpkSectionListItem };
|