@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,163 @@
|
|
|
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
|
+
/* @flow strict */
|
|
19
|
+
|
|
20
|
+
import React from 'react';
|
|
21
|
+
import { cssModules } from 'bpk-react-utils';
|
|
22
|
+
import BpkText, { TEXT_STYLES } from 'bpk-component-text';
|
|
23
|
+
import BpkImage, {
|
|
24
|
+
withLazyLoading,
|
|
25
|
+
withLoadingBehavior,
|
|
26
|
+
BORDER_RADIUS_STYLES as IMAGE_BORDER_RADIUS_STYLES,
|
|
27
|
+
} from 'bpk-component-image';
|
|
28
|
+
|
|
29
|
+
import STYLES from './examples.module.scss';
|
|
30
|
+
|
|
31
|
+
import BpkOverlay, { BORDER_RADIUS_STYLES, OVERLAY_TYPES } from './index';
|
|
32
|
+
|
|
33
|
+
const documentIfExists = typeof window !== 'undefined' ? document : null;
|
|
34
|
+
const FadingLazyLoadedImage = withLoadingBehavior(
|
|
35
|
+
withLazyLoading(BpkImage, documentIfExists),
|
|
36
|
+
);
|
|
37
|
+
|
|
38
|
+
const OTTAWA_IMG_SRC =
|
|
39
|
+
'https://images.unsplash.com/photo-1535046460986-c0084bba76f2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2100&q=80';
|
|
40
|
+
|
|
41
|
+
const getClassName = cssModules(STYLES);
|
|
42
|
+
|
|
43
|
+
const DefaultExample = () => (
|
|
44
|
+
<BpkOverlay
|
|
45
|
+
borderRadiusStyle={BORDER_RADIUS_STYLES.sm}
|
|
46
|
+
className={getClassName('bpk-overlay-stories__text-story')}
|
|
47
|
+
>
|
|
48
|
+
<BpkText>Hotels in Canada</BpkText>
|
|
49
|
+
</BpkOverlay>
|
|
50
|
+
);
|
|
51
|
+
|
|
52
|
+
const OverlayTypeNoneExample = () => (
|
|
53
|
+
<BpkOverlay
|
|
54
|
+
overlayType={OVERLAY_TYPES.none}
|
|
55
|
+
className={getClassName('bpk-overlay-stories__text-story')}
|
|
56
|
+
>
|
|
57
|
+
<BpkText>Hotels in Canada</BpkText>
|
|
58
|
+
</BpkOverlay>
|
|
59
|
+
);
|
|
60
|
+
|
|
61
|
+
const WithForegroundContentExample = () => (
|
|
62
|
+
<BpkOverlay
|
|
63
|
+
borderRadiusStyle={BORDER_RADIUS_STYLES.sm}
|
|
64
|
+
className={getClassName('bpk-overlay-stories__text-story')}
|
|
65
|
+
foregroundContent={
|
|
66
|
+
<BpkText
|
|
67
|
+
textStyle={TEXT_STYLES.xxl}
|
|
68
|
+
className={getClassName('bpk-overlay-stories__foreground')}
|
|
69
|
+
>
|
|
70
|
+
Visit Ottawa, Canada's illustrious capital
|
|
71
|
+
</BpkText>
|
|
72
|
+
}
|
|
73
|
+
>
|
|
74
|
+
<BpkText>Hotels in Canada</BpkText>
|
|
75
|
+
</BpkOverlay>
|
|
76
|
+
);
|
|
77
|
+
|
|
78
|
+
const WithBpkImageExample = () => (
|
|
79
|
+
<BpkOverlay>
|
|
80
|
+
<BpkImage
|
|
81
|
+
src={OTTAWA_IMG_SRC}
|
|
82
|
+
altText="Canadian Parliament Building in Ottawa"
|
|
83
|
+
width={300}
|
|
84
|
+
height={200}
|
|
85
|
+
/>
|
|
86
|
+
</BpkOverlay>
|
|
87
|
+
);
|
|
88
|
+
|
|
89
|
+
const WithBpkImageNoTintExample = () => (
|
|
90
|
+
<BpkOverlay overlayType={OVERLAY_TYPES.none}>
|
|
91
|
+
<BpkImage
|
|
92
|
+
src={OTTAWA_IMG_SRC}
|
|
93
|
+
altText="Canadian Parliament Building in Ottawa"
|
|
94
|
+
width={300}
|
|
95
|
+
height={200}
|
|
96
|
+
/>
|
|
97
|
+
</BpkOverlay>
|
|
98
|
+
);
|
|
99
|
+
|
|
100
|
+
const WithBpkImageRoundedExample = () => (
|
|
101
|
+
<BpkOverlay borderRadiusStyle={BORDER_RADIUS_STYLES.sm}>
|
|
102
|
+
<BpkImage
|
|
103
|
+
borderRadiusStyle={BORDER_RADIUS_STYLES.sm}
|
|
104
|
+
src={OTTAWA_IMG_SRC}
|
|
105
|
+
altText="Canadian Parliament Building in Ottawa"
|
|
106
|
+
width={300}
|
|
107
|
+
height={200}
|
|
108
|
+
/>
|
|
109
|
+
</BpkOverlay>
|
|
110
|
+
);
|
|
111
|
+
|
|
112
|
+
const WithBpkImageLazyLoadedExample = () => (
|
|
113
|
+
<BpkOverlay borderRadiusStyle={BORDER_RADIUS_STYLES.sm}>
|
|
114
|
+
<FadingLazyLoadedImage
|
|
115
|
+
borderRadiusStyle={IMAGE_BORDER_RADIUS_STYLES.sm}
|
|
116
|
+
src={OTTAWA_IMG_SRC}
|
|
117
|
+
altText="Canadian Parliament Building in Ottawa"
|
|
118
|
+
width={300}
|
|
119
|
+
height={200}
|
|
120
|
+
/>
|
|
121
|
+
</BpkOverlay>
|
|
122
|
+
);
|
|
123
|
+
|
|
124
|
+
const TextOverlaidOnImageExample = () => (
|
|
125
|
+
<div>
|
|
126
|
+
<BpkOverlay
|
|
127
|
+
foregroundContent={
|
|
128
|
+
<div className={getClassName('bpk-overlay-stories__foreground')}>
|
|
129
|
+
<BpkText textStyle={TEXT_STYLES.xxl}>
|
|
130
|
+
Visit Ottawa, Canada's illustrious capital
|
|
131
|
+
</BpkText>
|
|
132
|
+
</div>
|
|
133
|
+
}
|
|
134
|
+
>
|
|
135
|
+
<BpkImage
|
|
136
|
+
src={OTTAWA_IMG_SRC}
|
|
137
|
+
altText="Canadian Parliament Building in Ottawa"
|
|
138
|
+
width={300}
|
|
139
|
+
height={200}
|
|
140
|
+
/>
|
|
141
|
+
</BpkOverlay>
|
|
142
|
+
</div>
|
|
143
|
+
);
|
|
144
|
+
|
|
145
|
+
const MixedExample = () => (
|
|
146
|
+
<div>
|
|
147
|
+
<DefaultExample />
|
|
148
|
+
<OverlayTypeNoneExample />
|
|
149
|
+
<WithForegroundContentExample />
|
|
150
|
+
</div>
|
|
151
|
+
);
|
|
152
|
+
|
|
153
|
+
export {
|
|
154
|
+
DefaultExample,
|
|
155
|
+
OverlayTypeNoneExample,
|
|
156
|
+
WithForegroundContentExample,
|
|
157
|
+
WithBpkImageExample,
|
|
158
|
+
WithBpkImageNoTintExample,
|
|
159
|
+
WithBpkImageRoundedExample,
|
|
160
|
+
WithBpkImageLazyLoadedExample,
|
|
161
|
+
TextOverlaidOnImageExample,
|
|
162
|
+
MixedExample,
|
|
163
|
+
};
|
|
@@ -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-overlay-stories__text-story{height:9rem;padding:1.125rem;background-color:#e1ddec;border-radius:.375rem}.bpk-overlay-stories__foreground{display:flex;height:100%;padding-bottom:2.25rem;justify-content:center;align-items:flex-end;color:#fff}
|
|
@@ -0,0 +1,38 @@
|
|
|
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-overlay-stories {
|
|
22
|
+
&__text-story {
|
|
23
|
+
height: $bpk-spacing-xl * 4;
|
|
24
|
+
padding: $bpk-spacing-md;
|
|
25
|
+
background-color: $bpk-color-tochigi;
|
|
26
|
+
|
|
27
|
+
@include bpk-border-radius-sm;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&__foreground {
|
|
31
|
+
display: flex;
|
|
32
|
+
height: 100%;
|
|
33
|
+
padding-bottom: $bpk-spacing-xl;
|
|
34
|
+
justify-content: center;
|
|
35
|
+
align-items: flex-end;
|
|
36
|
+
color: $bpk-color-white;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
/* @flow strict */
|
|
19
|
+
|
|
20
|
+
import BpkOverlay, {
|
|
21
|
+
OVERLAY_TYPES,
|
|
22
|
+
BORDER_RADIUS_STYLES,
|
|
23
|
+
type Props as BpkOverlayProps,
|
|
24
|
+
} from './src/BpkOverlay';
|
|
25
|
+
|
|
26
|
+
export type { BpkOverlayProps };
|
|
27
|
+
export default BpkOverlay;
|
|
28
|
+
export { OVERLAY_TYPES, BORDER_RADIUS_STYLES };
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bpk-component-overlay",
|
|
3
|
+
"version": "2.1.0",
|
|
4
|
+
"description": "Backpack overlay component.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git@github.com:Skyscanner/backpack.git"
|
|
9
|
+
},
|
|
10
|
+
"author": "Backpack Design System <backpack@skyscanner.net>",
|
|
11
|
+
"main": "index.js",
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"registry": "https://registry.npmjs.org/"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"bpk-mixins": "^26.1.0",
|
|
17
|
+
"bpk-react-utils": "^4.1.0",
|
|
18
|
+
"prop-types": "^15.5.8"
|
|
19
|
+
},
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"react": "^16.3.0 || ^17.0.0"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"bpk-component-image": "^5.1.0",
|
|
25
|
+
"bpk-component-text": "^6.1.0"
|
|
26
|
+
},
|
|
27
|
+
"gitHead": "f9f94f86d7cfc75e43bc6ad5eb01b23e62a89cc8"
|
|
28
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
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
|
+
/* @flow strict */
|
|
19
|
+
|
|
20
|
+
import PropTypes from 'prop-types';
|
|
21
|
+
import React, { type Node } from 'react';
|
|
22
|
+
import { cssModules } from 'bpk-react-utils';
|
|
23
|
+
|
|
24
|
+
import STYLES from './BpkOverlay.module.scss';
|
|
25
|
+
|
|
26
|
+
const getClassName = cssModules(STYLES);
|
|
27
|
+
|
|
28
|
+
export const OVERLAY_TYPES = {
|
|
29
|
+
none: 'none',
|
|
30
|
+
tint: 'tint',
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export const BORDER_RADIUS_STYLES = {
|
|
34
|
+
none: 'none',
|
|
35
|
+
sm: 'sm',
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export type Props = {
|
|
39
|
+
borderRadiusStyle: $Keys<typeof BORDER_RADIUS_STYLES>,
|
|
40
|
+
children: Node,
|
|
41
|
+
overlayType: $Keys<typeof OVERLAY_TYPES>,
|
|
42
|
+
className: ?string,
|
|
43
|
+
foregroundContent: ?Node,
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
const BpkOverlay = (props: Props) => {
|
|
47
|
+
const {
|
|
48
|
+
borderRadiusStyle,
|
|
49
|
+
children,
|
|
50
|
+
className,
|
|
51
|
+
foregroundContent,
|
|
52
|
+
overlayType,
|
|
53
|
+
...rest
|
|
54
|
+
} = props;
|
|
55
|
+
|
|
56
|
+
const wrapperClassNames = getClassName('bpk-overlay__wrapper', className);
|
|
57
|
+
const overlayClassNames = getClassName(
|
|
58
|
+
'bpk-overlay__overlay',
|
|
59
|
+
borderRadiusStyle === BORDER_RADIUS_STYLES.sm &&
|
|
60
|
+
'bpk-overlay__overlay--border-radius-sm',
|
|
61
|
+
overlayType === OVERLAY_TYPES.tint && 'bpk-overlay__overlay--tint',
|
|
62
|
+
);
|
|
63
|
+
|
|
64
|
+
return (
|
|
65
|
+
// $FlowFixMe[cannot-spread-inexact] - inexact rest. See 'decisions/flowfixme.md'.
|
|
66
|
+
<div className={wrapperClassNames} {...rest}>
|
|
67
|
+
{children}
|
|
68
|
+
<div className={overlayClassNames}>{foregroundContent}</div>
|
|
69
|
+
</div>
|
|
70
|
+
);
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
BpkOverlay.propTypes = {
|
|
74
|
+
children: PropTypes.node.isRequired,
|
|
75
|
+
borderRadiusStyle: PropTypes.oneOf(Object.keys(BORDER_RADIUS_STYLES)),
|
|
76
|
+
className: PropTypes.string,
|
|
77
|
+
foregroundContent: PropTypes.node,
|
|
78
|
+
overlayType: PropTypes.oneOf(Object.keys(OVERLAY_TYPES)),
|
|
79
|
+
};
|
|
80
|
+
|
|
81
|
+
BpkOverlay.defaultProps = {
|
|
82
|
+
borderRadiusStyle: BORDER_RADIUS_STYLES.none,
|
|
83
|
+
className: null,
|
|
84
|
+
foregroundContent: null,
|
|
85
|
+
overlayType: OVERLAY_TYPES.tint,
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
export default BpkOverlay;
|
|
@@ -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-overlay__wrapper{position:relative}.bpk-overlay__overlay{position:absolute;top:0;left:0;width:100%;height:100%}.bpk-overlay__overlay--tint{background:rgba(2,18,44,0.56)}.bpk-overlay__overlay--border-radius-sm{border-radius:.375rem}
|
|
@@ -0,0 +1,41 @@
|
|
|
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-overlay {
|
|
22
|
+
&__wrapper {
|
|
23
|
+
position: relative;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&__overlay {
|
|
27
|
+
position: absolute;
|
|
28
|
+
top: 0;
|
|
29
|
+
left: 0;
|
|
30
|
+
width: 100%;
|
|
31
|
+
height: 100%;
|
|
32
|
+
|
|
33
|
+
&--tint {
|
|
34
|
+
background: rgba($bpk-color-sky-blue-shade-03, 0.56);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&--border-radius-sm {
|
|
38
|
+
@include bpk-border-radius-sm;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# bpk-component-pagination
|
|
2
|
+
|
|
3
|
+
> Backpack pagination component.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
npm install bpk-component-pagination --save-dev
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```js
|
|
14
|
+
import React from 'react';
|
|
15
|
+
import BpkPagination from 'bpk-component-pagination';
|
|
16
|
+
|
|
17
|
+
const Pagination = () => (
|
|
18
|
+
<BpkPagination
|
|
19
|
+
pageCount={20}
|
|
20
|
+
selectedPageIndex={0}
|
|
21
|
+
onPageChange={pageIndex => alert(`page ${pageIndex + 1}`)}
|
|
22
|
+
previousLabel="previous"
|
|
23
|
+
nextLabel="next"
|
|
24
|
+
visibleRange={3}
|
|
25
|
+
pageLabel={(page, isSelected) => `page ${page}`}
|
|
26
|
+
/>
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Props
|
|
32
|
+
|
|
33
|
+
| Property | PropType | Required | Default Value |
|
|
34
|
+
| ----------------- | -------------------- | -------- | ------------- |
|
|
35
|
+
| pageCount | number | true | - |
|
|
36
|
+
| selectedPageIndex | number | true | - |
|
|
37
|
+
| previousLabel | string | true | - |
|
|
38
|
+
| nextLabel | string | true | - |
|
|
39
|
+
| paginationLabel | string | true | - |
|
|
40
|
+
| pageLabel | func | true | - |
|
|
41
|
+
| onPageChange | func | false | null |
|
|
42
|
+
| visibleRange | number | false | 3 |
|
|
43
|
+
| className | string | false | null |
|
|
44
|
+
|
|
45
|
+
## Theme Props
|
|
46
|
+
|
|
47
|
+
* `buttonSecondaryTextColor`
|
|
48
|
+
* `buttonSecondaryHoverTextColor`
|
|
49
|
+
* `buttonSecondaryActiveTextColor`
|
|
50
|
+
* `buttonSecondaryBorderColor`
|
|
51
|
+
* `buttonSecondaryHoverBorderColor`
|
|
52
|
+
* `buttonSecondaryActiveBorderColor`
|
|
53
|
+
* `buttonSecondaryBackgroundColor`
|
|
54
|
+
* `buttonSecondaryHoverBackgroundColor`
|
|
55
|
+
* `buttonSecondaryActiveBackgroundColor`
|
|
56
|
+
* `paginationNudgerActiveColor`
|
|
57
|
+
* `paginationNudgerColor`
|
|
58
|
+
* `paginationNudgerHoverColor`
|
|
59
|
+
* `paginationSelectedBackgroundColor`
|
|
@@ -0,0 +1,93 @@
|
|
|
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, { Component } from 'react';
|
|
21
|
+
|
|
22
|
+
import BpkPagination from './index';
|
|
23
|
+
|
|
24
|
+
class PaginationContainer extends Component {
|
|
25
|
+
constructor(props) {
|
|
26
|
+
super();
|
|
27
|
+
|
|
28
|
+
this.state = {
|
|
29
|
+
pageIndex: props.selectedPageIndex,
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
handleChange(pageIndex) {
|
|
34
|
+
this.setState({ pageIndex });
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
render() {
|
|
38
|
+
const { pageCount, visibleRange } = this.props;
|
|
39
|
+
return (
|
|
40
|
+
<div>
|
|
41
|
+
Page {this.state.pageIndex + 1}
|
|
42
|
+
<BpkPagination
|
|
43
|
+
pageCount={pageCount}
|
|
44
|
+
selectedPageIndex={this.state.pageIndex}
|
|
45
|
+
onPageChange={(pageIndex) => {
|
|
46
|
+
this.handleChange(pageIndex);
|
|
47
|
+
}}
|
|
48
|
+
previousLabel="previous"
|
|
49
|
+
nextLabel="next"
|
|
50
|
+
visibleRange={visibleRange}
|
|
51
|
+
paginationLabel="Pagination Navigation"
|
|
52
|
+
pageLabel={(page, isSelected) =>
|
|
53
|
+
`Go to page ${page}${
|
|
54
|
+
isSelected ? ', this is the current page' : ''
|
|
55
|
+
}.`
|
|
56
|
+
}
|
|
57
|
+
/>
|
|
58
|
+
</div>
|
|
59
|
+
);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
PaginationContainer.propTypes = {
|
|
63
|
+
selectedPageIndex: PropTypes.number,
|
|
64
|
+
pageCount: PropTypes.number.isRequired,
|
|
65
|
+
visibleRange: PropTypes.number,
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
PaginationContainer.defaultProps = {
|
|
69
|
+
visibleRange: 3,
|
|
70
|
+
selectedPageIndex: 0,
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
const DefaultPaginationExample = () => <PaginationContainer pageCount={20} />;
|
|
74
|
+
|
|
75
|
+
const FivePagesPaginationExample = () => (
|
|
76
|
+
<PaginationContainer pageCount={20} visibleRange={5} />
|
|
77
|
+
);
|
|
78
|
+
|
|
79
|
+
const TwoPagesPaginationExample = () => <PaginationContainer pageCount={2} />;
|
|
80
|
+
|
|
81
|
+
const SinglePaginationExample = () => <PaginationContainer pageCount={1} />;
|
|
82
|
+
|
|
83
|
+
const VisibleRangeExample = () => (
|
|
84
|
+
<PaginationContainer pageCount={20} visibleRange={5} selectedPageIndex={6} />
|
|
85
|
+
);
|
|
86
|
+
|
|
87
|
+
export {
|
|
88
|
+
DefaultPaginationExample,
|
|
89
|
+
FivePagesPaginationExample,
|
|
90
|
+
TwoPagesPaginationExample,
|
|
91
|
+
SinglePaginationExample,
|
|
92
|
+
VisibleRangeExample,
|
|
93
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
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 BpkPagination from './src/BpkPagination';
|
|
20
|
+
import themeAttributes from './src/themeAttributes';
|
|
21
|
+
|
|
22
|
+
export default BpkPagination;
|
|
23
|
+
export { themeAttributes };
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bpk-component-pagination",
|
|
3
|
+
"version": "3.1.0",
|
|
4
|
+
"description": "Backpack pagination component.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git@github.com:Skyscanner/backpack.git"
|
|
9
|
+
},
|
|
10
|
+
"author": "Backpack Design System <backpack@skyscanner.net>",
|
|
11
|
+
"main": "index.js",
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"registry": "https://registry.npmjs.org/"
|
|
14
|
+
},
|
|
15
|
+
"gitHead": "f9f94f86d7cfc75e43bc6ad5eb01b23e62a89cc8",
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"bpk-component-button": "^5.1.0",
|
|
18
|
+
"bpk-mixins": "^26.1.0",
|
|
19
|
+
"bpk-react-utils": "^4.1.0",
|
|
20
|
+
"prop-types": "^15.7.2"
|
|
21
|
+
},
|
|
22
|
+
"peerDependencies": {
|
|
23
|
+
"react": "^16.3.0 || ^17.0.0"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"bpk-component-icon": "^9.2.0"
|
|
27
|
+
}
|
|
28
|
+
}
|