@skyscanner/backpack-web 41.0.1 → 41.2.0
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-component-bottom-sheet/src/BpkBottomSheet.js +0 -1
- package/bpk-component-breadcrumb/src/BpkBreadcrumbItem.js +1 -2
- package/bpk-component-button/src/BpkButtonV2/BpkButton.module.css +1 -1
- package/bpk-component-datepicker/src/themeAttributes.d.ts +1 -1
- package/bpk-component-drawer/src/BpkDrawerContent.js +0 -1
- package/bpk-component-drawer/src/themeAttributes.d.ts +1 -1
- package/bpk-component-drawer/src/themeAttributes.js +0 -1
- package/bpk-component-icon/lg/baggage-cabin-included-tick.js +14 -0
- package/bpk-component-icon/lg/baggage-cabin-not-included-cross.js +14 -0
- package/bpk-component-icon/lg/baggage-cabin-uncertain.js +14 -0
- package/bpk-component-icon/lg/baggage-checked-included-tick.js +14 -0
- package/bpk-component-icon/lg/baggage-checked-not-included-cross.js +14 -0
- package/bpk-component-icon/lg/baggage-checked-uncertain.js +14 -0
- package/bpk-component-icon/lg/vdl-cars.js +14 -0
- package/bpk-component-icon/lg/vdl-flight.js +14 -0
- package/bpk-component-icon/lg/vdl-home-beach.js +14 -0
- package/bpk-component-icon/lg/vdl-home-cars.js +14 -0
- package/bpk-component-icon/lg/vdl-home-flight.js +14 -0
- package/bpk-component-icon/lg/vdl-home-hotels.js +14 -0
- package/bpk-component-icon/lg/vdl-hotels.js +14 -0
- package/bpk-component-icon/lg/vdl-tab-drops-selected.js +16 -0
- package/bpk-component-icon/lg/vdl-tab-drops.js +16 -0
- package/bpk-component-icon/lg/vdl-tab-profile-selected.js +14 -0
- package/bpk-component-icon/lg/vdl-tab-profile.js +14 -0
- package/bpk-component-icon/lg/vdl-tab-saved-selected.js +17 -0
- package/bpk-component-icon/lg/vdl-tab-saved.js +17 -0
- package/bpk-component-icon/lg/vdl-tab-search-selected.js +14 -0
- package/bpk-component-icon/lg/vdl_tab-search.js +14 -0
- package/bpk-component-icon/lg/walk.js +14 -0
- package/bpk-component-icon/sm/baggage-cabin-included-tick.js +14 -0
- package/bpk-component-icon/sm/baggage-cabin-not-included-cross.js +14 -0
- package/bpk-component-icon/sm/baggage-cabin-uncertain.js +14 -0
- package/bpk-component-icon/sm/baggage-checked-included-tick.js +14 -0
- package/bpk-component-icon/sm/baggage-checked-not-included-cross.js +14 -0
- package/bpk-component-icon/sm/baggage-checked-uncertain.js +14 -0
- package/bpk-component-icon/sm/vdl-cars.js +14 -0
- package/bpk-component-icon/sm/vdl-flight.js +14 -0
- package/bpk-component-icon/sm/vdl-hotels.js +14 -0
- package/bpk-component-icon/sm/walk.js +14 -0
- package/bpk-component-info-banner/src/BpkInfoBannerInner.js +1 -2
- package/bpk-component-link/index.d.ts +6 -0
- package/bpk-component-link/index.js +3 -1
- package/bpk-component-link/src/BpkButtonLink.d.ts +13 -0
- package/bpk-component-link/src/BpkButtonLink.js +11 -21
- package/bpk-component-link/src/BpkLink.d.ts +16 -0
- package/bpk-component-link/src/BpkLink.js +16 -29
- package/bpk-component-link/src/themeAttributes.d.ts +4 -0
- package/bpk-component-link/src/themeAttributes.js +3 -1
- package/bpk-component-modal/src/BpkModalInner.js +0 -1
- package/bpk-component-modal/src/themeAttributes.d.ts +1 -1
- package/bpk-component-modal/src/themeAttributes.js +0 -1
- package/bpk-component-navigation-bar/src/BpkNavigationBarButtonLink.d.ts +1 -1
- package/bpk-component-navigation-bar/src/BpkNavigationBarButtonLink.js +0 -1
- package/bpk-component-popover/src/BpkPopover.js +0 -1
- package/bpk-component-popover/src/themeAttributes.d.ts +1 -1
- package/bpk-component-popover/src/themeAttributes.js +0 -1
- package/bpk-component-rtl-toggle/src/BpkRtlToggle.d.ts +2 -1
- package/bpk-component-rtl-toggle/src/BpkRtlToggle.js +0 -2
- package/package.json +3 -3
|
@@ -20,7 +20,6 @@ import { useCallback, useState } from 'react';
|
|
|
20
20
|
import BpkBreakpoint, { BREAKPOINTS } from "../../bpk-component-breakpoint";
|
|
21
21
|
// @ts-expect-error Untyped import. See `decisions/imports-ts-suppressions.md`.
|
|
22
22
|
import BpkCloseButton from "../../bpk-component-close-button";
|
|
23
|
-
// @ts-expect-error Untyped import. See `decisions/imports-ts-suppressions.md`.
|
|
24
23
|
import { BpkButtonLink } from "../../bpk-component-link";
|
|
25
24
|
import BpkNavigationBar from "../../bpk-component-navigation-bar";
|
|
26
25
|
import { TEXT_STYLES } from "../../bpk-component-text/src/BpkText";
|
|
@@ -18,7 +18,6 @@
|
|
|
18
18
|
|
|
19
19
|
import { withRtlSupport } from "../../bpk-component-icon";
|
|
20
20
|
import ArrowRight from "../../bpk-component-icon/sm/arrow-right";
|
|
21
|
-
// @ts-expect-error Untyped import. See `decisions/imports-ts-suppressions.md`.
|
|
22
21
|
import BpkLink from "../../bpk-component-link";
|
|
23
22
|
import BpkText from "../../bpk-component-text";
|
|
24
23
|
import { cssModules } from "../../bpk-react-utils";
|
|
@@ -48,7 +47,7 @@ const BpkBreadcrumbItem = props => {
|
|
|
48
47
|
}) : /*#__PURE__*/_jsx("div", {
|
|
49
48
|
className: getClassName('bpk-breadcrumb-item__link'),
|
|
50
49
|
children: /*#__PURE__*/_jsx(BpkLink, {
|
|
51
|
-
href: href,
|
|
50
|
+
href: href || '#',
|
|
52
51
|
...linkProps,
|
|
53
52
|
children: children
|
|
54
53
|
})
|
|
@@ -15,4 +15,4 @@
|
|
|
15
15
|
* See the License for the specific language governing permissions and
|
|
16
16
|
* limitations under the License.
|
|
17
17
|
*/
|
|
18
|
-
.bpk-button{display:inline-block;min-height:2.25rem;margin:0;padding:.375rem 1rem;border:0;border-radius:.5rem;text-align:center;text-decoration:none;cursor:pointer;vertical-align:middle;user-select:none;font-size:1rem;line-height:1.5rem;font-weight:700;color:#fff;color:var(--bpk-button-primary-text-color, rgb(255, 255, 255));background-color:#05203c;background-color:var(--bpk-button-primary-background-color, rgb(5, 32, 60))}.bpk-no-touch-support .bpk-button:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-primary-hover-text-color, rgb(255, 255, 255));background-color:#154679;background-color:var(--bpk-button-primary-hover-background-color, rgb(21, 70, 121))}:global(.bpk-no-touch-support) .bpk-button:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-primary-hover-text-color, rgb(255, 255, 255));background-color:#154679;background-color:var(--bpk-button-primary-hover-background-color, rgb(21, 70, 121))}.bpk-button:active{color:#fff;color:var(--bpk-button-primary-active-text-color, rgb(255, 255, 255));background-color:#154679;background-color:var(--bpk-button-primary-active-background-color, rgb(21, 70, 121))}.bpk-button:disabled{background-color:#e0e4e9;color:rgba(0,0,0,.2);cursor:not-allowed}.bpk-button--large{min-height:3rem;padding:.75rem 1rem}.bpk-button--icon-only{border-radius:.5rem;padding-right:.625rem;padding-left:.625rem;border-radius:.5rem}.bpk-button--large-icon-only{border-radius:.5rem;padding-right:.75rem;padding-left:.75rem;border-radius:.5rem}.bpk-button--destructive{color:#161616;color:var(--bpk-button-secondary-text-color, rgb(22, 22, 22));background-color:#e0e4e9;background-color:var(--bpk-button-secondary-background-color, rgb(224, 228, 233));color:#e70866;color:var(--bpk-button-destructive-text-color, rgb(231, 8, 102));background-color:#e0e4e9;background-color:var(--bpk-button-destructive-background-color, rgb(224, 228, 233))}.bpk-no-touch-support .bpk-button--destructive:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-button-secondary-hover-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-secondary-hover-background-color, rgb(193, 199, 207))}:global(.bpk-no-touch-support) .bpk-button--destructive:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-button-secondary-hover-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-secondary-hover-background-color, rgb(193, 199, 207))}.bpk-button--destructive:active{color:#161616;color:var(--bpk-button-secondary-active-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-secondary-active-background-color, rgb(193, 199, 207))}.bpk-button--destructive:disabled{background-color:#e0e4e9;color:rgba(0,0,0,.2)}.bpk-no-touch-support .bpk-button--destructive:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-destructive-hover-text-color, rgb(255, 255, 255));background-color:#e70866;background-color:var(--bpk-button-destructive-hover-background-color, rgb(231, 8, 102))}:global(.bpk-no-touch-support) .bpk-button--destructive:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-destructive-hover-text-color, rgb(255, 255, 255));background-color:#e70866;background-color:var(--bpk-button-destructive-hover-background-color, rgb(231, 8, 102))}.bpk-button--destructive:active{color:#fff;color:var(--bpk-button-destructive-active-text-color, rgb(255, 255, 255));background-color:#e70866;background-color:var(--bpk-button-destructive-active-background-color, rgb(231, 8, 102))}.bpk-button--destructive:disabled{background-color:#e0e4e9;color:rgba(0,0,0,.2)}.bpk-button--featured{color:#fff;color:var(--bpk-button-featured-text-color, rgb(255, 255, 255));background-color:#0062e3;background-color:var(--bpk-button-featured-background-color, rgb(0, 98, 227))}.bpk-no-touch-support .bpk-button--featured:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-featured-hover-text-color, rgb(255, 255, 255));background-color:#024daf;background-color:var(--bpk-button-featured-hover-background-color, rgb(2, 77, 175))}:global(.bpk-no-touch-support) .bpk-button--featured:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-featured-hover-text-color, rgb(255, 255, 255));background-color:#024daf;background-color:var(--bpk-button-featured-hover-background-color, rgb(2, 77, 175))}.bpk-button--featured:active{color:#fff;color:var(--bpk-button-featured-active-text-color, rgb(255, 255, 255));background-color:#024daf;background-color:var(--bpk-button-featured-active-background-color, rgb(2, 77, 175))}.bpk-button--featured:disabled{background-color:#e0e4e9;color:rgba(0,0,0,.2)}.bpk-button--link{background:none;box-shadow:none;color:#161616;color:var(--bpk-link-color, rgb(22, 22, 22));padding:.375rem 0;color:#0062e3;position:relative;display:inline;padding:0;border:0;background-color:rgba(0,0,0,0);text-decoration:none;cursor:pointer;appearance:none;color:#161616;color:var(--bpk-link-color, rgb(22, 22, 22));--bpk-button-svg-display: inline-block;--bpk-button-svg-vertical-align: middle}.bpk-no-touch-support .bpk-button--link:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}:global(.bpk-no-touch-support) .bpk-button--link:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}.bpk-button--link:active{text-decoration:none;color:#161616;color:var(--bpk-link-active-color, rgb(22, 22, 22))}.bpk-button--link::after{bottom:auto}.bpk-no-touch-support .bpk-button--link:hover:not(:active):not(:disabled){background:none;color:#024daf;text-decoration:none}:global(.bpk-no-touch-support) .bpk-button--link:hover:not(:active):not(:disabled){background:none;color:#024daf;text-decoration:none}.bpk-button--link:active{background:none;color:#024daf;text-decoration:none}.bpk-button--link:disabled,.bpk-button--link:disabled:active{background:none;color:rgba(0,0,0,.2);text-decoration:none}.bpk-button--link-large{padding:.75rem 0}.bpk-no-touch-support .bpk-button--link:hover:not(:active):not(:disabled){text-decoration:none;color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}:global(.bpk-no-touch-support) .bpk-button--link:hover:not(:active):not(:disabled){text-decoration:none;color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}.bpk-button--link:visited{color:#161616;color:var(--bpk-link-visited-color, rgb(22, 22, 22))}.bpk-button--link:active{color:#161616;color:var(--bpk-link-active-color, rgb(22, 22, 22))}.bpk-button--link--implicit{color:#161616;color:var(--bpk-link-color, rgb(22, 22, 22))}.bpk-no-touch-support .bpk-button--link--implicit:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}:global(.bpk-no-touch-support) .bpk-button--link--implicit:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}.bpk-button--link--implicit:active{text-decoration:none;color:#161616;color:var(--bpk-link-active-color, rgb(22, 22, 22))}.bpk-button--link--icon-only{display:inline-flex;justify-content:center;align-items:center;vertical-align:middle}.bpk-button--link-on-dark{background:none;box-shadow:none;color:#161616;color:var(--bpk-link-color, rgb(22, 22, 22));padding:.375rem 0;color:#0062e3;color:#fff;color:var(--bpk-button-link-on-dark-text-color, rgb(255, 255, 255));color:#fff;color:var(--bpk-link-alternate-color, rgb(255, 255, 255));--bpk-button-svg-display: inline-block;--bpk-button-svg-vertical-align: middle}.bpk-no-touch-support .bpk-button--link-on-dark:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}:global(.bpk-no-touch-support) .bpk-button--link-on-dark:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}.bpk-button--link-on-dark:active{text-decoration:none;color:#161616;color:var(--bpk-link-active-color, rgb(22, 22, 22))}.bpk-button--link-on-dark::after{bottom:auto}.bpk-no-touch-support .bpk-button--link-on-dark:hover:not(:active):not(:disabled){background:none;color:#024daf;text-decoration:none}:global(.bpk-no-touch-support) .bpk-button--link-on-dark:hover:not(:active):not(:disabled){background:none;color:#024daf;text-decoration:none}.bpk-button--link-on-dark:active{background:none;color:#024daf;text-decoration:none}.bpk-button--link-on-dark:disabled,.bpk-button--link-on-dark:disabled:active{background:none;color:rgba(0,0,0,.2);text-decoration:none}.bpk-button--link-on-dark-large{padding:.75rem 0}.bpk-no-touch-support .bpk-button--link-on-dark:hover:not(:active):not(:disabled){color:hsla(0,0%,100%,.5);color:var(--bpk-button-link-on-dark-hover-text-color, rgba(255, 255, 255, 0.5))}:global(.bpk-no-touch-support) .bpk-button--link-on-dark:hover:not(:active):not(:disabled){color:hsla(0,0%,100%,.5);color:var(--bpk-button-link-on-dark-hover-text-color, rgba(255, 255, 255, 0.5))}.bpk-button--link-on-dark:active{color:hsla(0,0%,100%,.5);color:var(--bpk-button-link-on-dark-active-text-color, rgba(255, 255, 255, 0.5))}.bpk-button--link-on-dark:visited{color:#fff;color:var(--bpk-button-link-on-dark-text-color, rgb(255, 255, 255))}.bpk-button--link-on-dark:disabled,.bpk-button--link-on-dark:disabled:active{color:hsla(0,0%,100%,.2);color:var(--bpk-button-link-on-dark-disabled-color, rgba(255, 255, 255, 0.2))}.bpk-no-touch-support .bpk-button--link-on-dark:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-link-alternate-hover-color, rgb(255, 255, 255))}:global(.bpk-no-touch-support) .bpk-button--link-on-dark:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-link-alternate-hover-color, rgb(255, 255, 255))}.bpk-button--link-on-dark:visited{color:#fff;color:var(--bpk-link-alternate-visited-color, rgb(255, 255, 255))}.bpk-button--link-on-dark:active{color:#fff;color:var(--bpk-link-alternate-active-color, rgb(255, 255, 255))}.bpk-button--link-on-dark--implicit{color:#161616;color:var(--bpk-link-color, rgb(22, 22, 22))}.bpk-no-touch-support .bpk-button--link-on-dark--implicit:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}:global(.bpk-no-touch-support) .bpk-button--link-on-dark--implicit:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}.bpk-button--link-on-dark--implicit:active{text-decoration:none;color:#161616;color:var(--bpk-link-active-color, rgb(22, 22, 22))}.bpk-button--link-underlined{gap:.5rem;display:inline-flex;justify-content:center;align-items:center;vertical-align:middle;padding-bottom:.0625rem;transition:background-size 200ms ease;background:linear-gradient(rgb(22, 22, 22), rgb(22, 22, 22));background-repeat:no-repeat;background-position:0 100%;background-size:100% 1px}.bpk-no-touch-support .bpk-button--link-underlined:hover:not(:active):not(:disabled){background-size:0 1px}:global(.bpk-no-touch-support) .bpk-button--link-underlined:hover:not(:active):not(:disabled){background-size:0 1px}.bpk-button--link-underlined--implicit{background-size:0 1px}.bpk-no-touch-support .bpk-button--link-underlined--implicit:hover:not(:active):not(:disabled){background-size:100% 1px}:global(.bpk-no-touch-support) .bpk-button--link-underlined--implicit:hover:not(:active):not(:disabled){background-size:100% 1px}.bpk-button--link-underlined--alternate{background:linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255));background-repeat:no-repeat;background-position:0 100%;background-size:100% 1px}.bpk-no-touch-support .bpk-button--link-underlined--alternate:hover:not(:active):not(:disabled){background-size:0 1px}:global(.bpk-no-touch-support) .bpk-button--link-underlined--alternate:hover:not(:active):not(:disabled){background-size:0 1px}.bpk-button--link-underlined--implicit--alternate{background:linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255));background-repeat:no-repeat;background-position:0 100%;background-size:0 1px}.bpk-no-touch-support .bpk-button--link-underlined--implicit--alternate:hover:not(:active):not(:disabled){background-size:100% 1px}:global(.bpk-no-touch-support) .bpk-button--link-underlined--implicit--alternate:hover:not(:active):not(:disabled){background-size:100% 1px}.bpk-button--primary-on-dark{color:#161616;color:var(--bpk-button-primary-on-dark-text-color, rgb(22, 22, 22));background-color:#fff;background-color:var(--bpk-button-primary-on-dark-background-color, rgb(255, 255, 255))}.bpk-no-touch-support .bpk-button--primary-on-dark:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-button-primary-on-dark-hover-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-primary-on-dark-hover-background-color, rgb(193, 199, 207))}:global(.bpk-no-touch-support) .bpk-button--primary-on-dark:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-button-primary-on-dark-hover-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-primary-on-dark-hover-background-color, rgb(193, 199, 207))}.bpk-button--primary-on-dark:active{color:#161616;color:var(--bpk-button-primary-on-dark-active-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-primary-on-dark-active-background-color, rgb(193, 199, 207))}.bpk-button--primary-on-dark:disabled{background-color:#e0e4e9;color:rgba(0,0,0,.2)}.bpk-button--primary-on-light{color:#fff;color:var(--bpk-button-primary-on-light-text-color, rgb(255, 255, 255));background-color:#05203c;background-color:var(--bpk-button-primary-on-light-background-color, rgb(5, 32, 60))}.bpk-no-touch-support .bpk-button--primary-on-light:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-primary-on-light-hover-text-color, rgb(255, 255, 255));background-color:#154679;background-color:var(--bpk-button-primary-on-light-hover-background-color, rgb(21, 70, 121))}:global(.bpk-no-touch-support) .bpk-button--primary-on-light:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-primary-on-light-hover-text-color, rgb(255, 255, 255));background-color:#154679;background-color:var(--bpk-button-primary-on-light-hover-background-color, rgb(21, 70, 121))}.bpk-button--primary-on-light:active{color:#fff;color:var(--bpk-button-primary-on-light-active-text-color, rgb(255, 255, 255));background-color:#154679;background-color:var(--bpk-button-primary-on-light-active-background-color, rgb(21, 70, 121))}.bpk-button--primary-on-light:disabled{background-color:#e0e4e9;color:rgba(0,0,0,.2)}.bpk-button--secondary{color:#161616;color:var(--bpk-button-secondary-text-color, rgb(22, 22, 22));background-color:#e0e4e9;background-color:var(--bpk-button-secondary-background-color, rgb(224, 228, 233))}.bpk-no-touch-support .bpk-button--secondary:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-button-secondary-hover-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-secondary-hover-background-color, rgb(193, 199, 207))}:global(.bpk-no-touch-support) .bpk-button--secondary:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-button-secondary-hover-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-secondary-hover-background-color, rgb(193, 199, 207))}.bpk-button--secondary:active{color:#161616;color:var(--bpk-button-secondary-active-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-secondary-active-background-color, rgb(193, 199, 207))}.bpk-button--secondary:disabled{background-color:#e0e4e9;color:rgba(0,0,0,.2)}.bpk-button--secondary-on-dark{color:#fff;color:var(--bpk-button-secondary-on-dark-text-color, rgb(255, 255, 255));background-color:hsla(0,0%,100%,.1);background-color:var(--bpk-button-secondary-on-dark-background-color, rgba(255, 255, 255, 0.1))}.bpk-no-touch-support .bpk-button--secondary-on-dark:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-secondary-on-dark-hover-text-color, rgb(255, 255, 255));background-color:#010913;background-color:var(--bpk-button-secondary-on-dark-hover-background-color, rgb(1, 9, 19))}:global(.bpk-no-touch-support) .bpk-button--secondary-on-dark:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-secondary-on-dark-hover-text-color, rgb(255, 255, 255));background-color:#010913;background-color:var(--bpk-button-secondary-on-dark-hover-background-color, rgb(1, 9, 19))}.bpk-button--secondary-on-dark:active{color:#fff;color:var(--bpk-button-secondary-on-dark-active-text-color, rgb(255, 255, 255));background-color:#010913;background-color:var(--bpk-button-secondary-on-dark-active-background-color, rgb(1, 9, 19))}.bpk-button--secondary-on-dark:disabled{background-color:#0b121d;color:hsla(0,0%,100%,.2)}.bpk-button--full-width{display:block;width:100%}.bpk-button span>svg{display:var(--bpk-button-svg-display, block);vertical-align:var(--bpk-button-svg-vertical-align, baseline)}.bpk-button svg{fill:currentcolor}
|
|
18
|
+
.bpk-button{display:inline-block;min-height:2.25rem;margin:0;padding:.375rem 1rem;border:0;border-radius:.5rem;text-align:center;text-decoration:none;cursor:pointer;vertical-align:middle;user-select:none;font-size:1rem;line-height:1.5rem;font-weight:700;color:#fff;color:var(--bpk-button-primary-text-color, rgb(255, 255, 255));background-color:#05203c;background-color:var(--bpk-button-primary-background-color, rgb(5, 32, 60))}.bpk-no-touch-support .bpk-button:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-primary-hover-text-color, rgb(255, 255, 255));background-color:#154679;background-color:var(--bpk-button-primary-hover-background-color, rgb(21, 70, 121))}:global(.bpk-no-touch-support) .bpk-button:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-primary-hover-text-color, rgb(255, 255, 255));background-color:#154679;background-color:var(--bpk-button-primary-hover-background-color, rgb(21, 70, 121))}.bpk-button:active{color:#fff;color:var(--bpk-button-primary-active-text-color, rgb(255, 255, 255));background-color:#154679;background-color:var(--bpk-button-primary-active-background-color, rgb(21, 70, 121))}.bpk-button:disabled{background-color:#e0e4e9;color:rgba(0,0,0,.2);cursor:not-allowed}.bpk-button--large{min-height:3rem;padding:.75rem 1rem}.bpk-button--icon-only{border-radius:.5rem;padding-right:.625rem;padding-left:.625rem;border-radius:.5rem}.bpk-button--large-icon-only{border-radius:.5rem;padding-right:.75rem;padding-left:.75rem;border-radius:.5rem}.bpk-button--destructive{color:#161616;color:var(--bpk-button-secondary-text-color, rgb(22, 22, 22));background-color:#e0e4e9;background-color:var(--bpk-button-secondary-background-color, rgb(224, 228, 233));color:#e70866;color:var(--bpk-button-destructive-text-color, rgb(231, 8, 102));background-color:#e0e4e9;background-color:var(--bpk-button-destructive-background-color, rgb(224, 228, 233))}.bpk-no-touch-support .bpk-button--destructive:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-button-secondary-hover-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-secondary-hover-background-color, rgb(193, 199, 207))}:global(.bpk-no-touch-support) .bpk-button--destructive:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-button-secondary-hover-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-secondary-hover-background-color, rgb(193, 199, 207))}.bpk-button--destructive:active{color:#161616;color:var(--bpk-button-secondary-active-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-secondary-active-background-color, rgb(193, 199, 207))}.bpk-button--destructive:disabled{background-color:#e0e4e9;color:rgba(0,0,0,.2)}.bpk-no-touch-support .bpk-button--destructive:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-destructive-hover-text-color, rgb(255, 255, 255));background-color:#e70866;background-color:var(--bpk-button-destructive-hover-background-color, rgb(231, 8, 102))}:global(.bpk-no-touch-support) .bpk-button--destructive:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-destructive-hover-text-color, rgb(255, 255, 255));background-color:#e70866;background-color:var(--bpk-button-destructive-hover-background-color, rgb(231, 8, 102))}.bpk-button--destructive:active{color:#fff;color:var(--bpk-button-destructive-active-text-color, rgb(255, 255, 255));background-color:#e70866;background-color:var(--bpk-button-destructive-active-background-color, rgb(231, 8, 102))}.bpk-button--destructive:disabled{background-color:#e0e4e9;color:rgba(0,0,0,.2)}.bpk-button--featured{color:#fff;color:var(--bpk-button-featured-text-color, rgb(255, 255, 255));background-color:#0062e3;background-color:var(--bpk-button-featured-background-color, rgb(0, 98, 227))}.bpk-no-touch-support .bpk-button--featured:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-featured-hover-text-color, rgb(255, 255, 255));background-color:#024daf;background-color:var(--bpk-button-featured-hover-background-color, rgb(2, 77, 175))}:global(.bpk-no-touch-support) .bpk-button--featured:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-featured-hover-text-color, rgb(255, 255, 255));background-color:#024daf;background-color:var(--bpk-button-featured-hover-background-color, rgb(2, 77, 175))}.bpk-button--featured:active{color:#fff;color:var(--bpk-button-featured-active-text-color, rgb(255, 255, 255));background-color:#024daf;background-color:var(--bpk-button-featured-active-background-color, rgb(2, 77, 175))}.bpk-button--featured:disabled{background-color:#e0e4e9;color:rgba(0,0,0,.2)}.bpk-button--link{background:none;box-shadow:none;color:#161616;color:var(--bpk-link-color, rgb(22, 22, 22));padding:.375rem 0;color:#0062e3;position:relative;display:inline;padding:0;border:0;background-color:rgba(0,0,0,0);text-decoration:none;cursor:pointer;appearance:none;color:#161616;color:var(--bpk-link-color, rgb(22, 22, 22));--bpk-button-svg-display: inline-block;--bpk-button-svg-vertical-align: middle}.bpk-no-touch-support .bpk-button--link:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}:global(.bpk-no-touch-support) .bpk-button--link:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}.bpk-button--link:active{text-decoration:none;color:#161616;color:var(--bpk-link-active-color, rgb(22, 22, 22))}.bpk-button--link::after{bottom:auto}.bpk-no-touch-support .bpk-button--link:hover:not(:active):not(:disabled){background:none;color:#024daf;text-decoration:none}:global(.bpk-no-touch-support) .bpk-button--link:hover:not(:active):not(:disabled){background:none;color:#024daf;text-decoration:none}.bpk-button--link:active{background:none;color:#024daf;text-decoration:none}.bpk-button--link:disabled,.bpk-button--link:disabled:active{background:none;color:rgba(0,0,0,.2);text-decoration:none}.bpk-button--link-large{padding:.75rem 0}.bpk-no-touch-support .bpk-button--link:hover:not(:active):not(:disabled){text-decoration:none;color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}:global(.bpk-no-touch-support) .bpk-button--link:hover:not(:active):not(:disabled){text-decoration:none;color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}.bpk-button--link:visited{color:#161616;color:var(--bpk-link-visited-color, rgb(22, 22, 22))}.bpk-button--link:active{color:#161616;color:var(--bpk-link-active-color, rgb(22, 22, 22))}.bpk-button--link--implicit{color:#161616;color:var(--bpk-link-color, rgb(22, 22, 22))}.bpk-no-touch-support .bpk-button--link--implicit:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}:global(.bpk-no-touch-support) .bpk-button--link--implicit:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}.bpk-button--link--implicit:active{text-decoration:none;color:#161616;color:var(--bpk-link-active-color, rgb(22, 22, 22))}.bpk-button--link--icon-only{display:inline-flex;justify-content:center;align-items:center;vertical-align:middle}.bpk-button--link-on-dark{background:none;box-shadow:none;color:#161616;color:var(--bpk-link-color, rgb(22, 22, 22));padding:.375rem 0;color:#0062e3;color:#fff;color:var(--bpk-button-link-on-dark-text-color, rgb(255, 255, 255));color:#fff;color:var(--bpk-link-alternate-color, rgb(255, 255, 255));--bpk-button-svg-display: inline-block;--bpk-button-svg-vertical-align: middle}.bpk-no-touch-support .bpk-button--link-on-dark:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}:global(.bpk-no-touch-support) .bpk-button--link-on-dark:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}.bpk-button--link-on-dark:active{text-decoration:none;color:#161616;color:var(--bpk-link-active-color, rgb(22, 22, 22))}.bpk-button--link-on-dark::after{bottom:auto}.bpk-no-touch-support .bpk-button--link-on-dark:hover:not(:active):not(:disabled){background:none;color:#024daf;text-decoration:none}:global(.bpk-no-touch-support) .bpk-button--link-on-dark:hover:not(:active):not(:disabled){background:none;color:#024daf;text-decoration:none}.bpk-button--link-on-dark:active{background:none;color:#024daf;text-decoration:none}.bpk-button--link-on-dark:disabled,.bpk-button--link-on-dark:disabled:active{background:none;color:rgba(0,0,0,.2);text-decoration:none}.bpk-button--link-on-dark-large{padding:.75rem 0}.bpk-no-touch-support .bpk-button--link-on-dark:hover:not(:active):not(:disabled){color:hsla(0,0%,100%,.5);color:var(--bpk-button-link-on-dark-hover-text-color, rgba(255, 255, 255, 0.5))}:global(.bpk-no-touch-support) .bpk-button--link-on-dark:hover:not(:active):not(:disabled){color:hsla(0,0%,100%,.5);color:var(--bpk-button-link-on-dark-hover-text-color, rgba(255, 255, 255, 0.5))}.bpk-button--link-on-dark:active{color:hsla(0,0%,100%,.5);color:var(--bpk-button-link-on-dark-active-text-color, rgba(255, 255, 255, 0.5))}.bpk-button--link-on-dark:visited{color:#fff;color:var(--bpk-button-link-on-dark-text-color, rgb(255, 255, 255))}.bpk-button--link-on-dark:disabled,.bpk-button--link-on-dark:disabled:active{color:hsla(0,0%,100%,.2);color:var(--bpk-button-link-on-dark-disabled-color, rgba(255, 255, 255, 0.2))}.bpk-no-touch-support .bpk-button--link-on-dark:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-link-alternate-hover-color, rgb(255, 255, 255))}:global(.bpk-no-touch-support) .bpk-button--link-on-dark:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-link-alternate-hover-color, rgb(255, 255, 255))}.bpk-button--link-on-dark:visited{color:#fff;color:var(--bpk-link-alternate-visited-color, rgb(255, 255, 255))}.bpk-button--link-on-dark:active{color:#fff;color:var(--bpk-link-alternate-active-color, rgb(255, 255, 255))}.bpk-button--link-on-dark--implicit{color:#161616;color:var(--bpk-link-color, rgb(22, 22, 22))}.bpk-no-touch-support .bpk-button--link-on-dark--implicit:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}:global(.bpk-no-touch-support) .bpk-button--link-on-dark--implicit:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-link-hover-color, rgb(22, 22, 22))}.bpk-button--link-on-dark--implicit:active{text-decoration:none;color:#161616;color:var(--bpk-link-active-color, rgb(22, 22, 22))}.bpk-button--link-underlined{gap:.5rem;display:inline-flex;justify-content:center;align-items:center;vertical-align:middle;padding-bottom:.0625rem;transition:background-size 200ms ease;background:linear-gradient(rgb(22, 22, 22), rgb(22, 22, 22));background-repeat:no-repeat;background-position:0 100%;background-size:100% 1px}.bpk-no-touch-support .bpk-button--link-underlined:hover:not(:active):not(:disabled){background-size:0 1px}:global(.bpk-no-touch-support) .bpk-button--link-underlined:hover:not(:active):not(:disabled){background-size:0 1px}.bpk-button--link-underlined--implicit{background-size:0 1px}.bpk-no-touch-support .bpk-button--link-underlined--implicit:hover:not(:active):not(:disabled){background-size:100% 1px}:global(.bpk-no-touch-support) .bpk-button--link-underlined--implicit:hover:not(:active):not(:disabled){background-size:100% 1px}.bpk-button--link-underlined--alternate{background:linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255));background-repeat:no-repeat;background-position:0 100%;background-size:100% 1px}.bpk-no-touch-support .bpk-button--link-underlined--alternate:hover:not(:active):not(:disabled){background-size:0 1px}:global(.bpk-no-touch-support) .bpk-button--link-underlined--alternate:hover:not(:active):not(:disabled){background-size:0 1px}.bpk-button--link-underlined--implicit--alternate{background:linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255));background-repeat:no-repeat;background-position:0 100%;background-size:0 1px}.bpk-no-touch-support .bpk-button--link-underlined--implicit--alternate:hover:not(:active):not(:disabled){background-size:100% 1px}:global(.bpk-no-touch-support) .bpk-button--link-underlined--implicit--alternate:hover:not(:active):not(:disabled){background-size:100% 1px}.bpk-button--primary-on-dark{color:#161616;color:var(--bpk-button-primary-on-dark-text-color, rgb(22, 22, 22));background-color:#fff;background-color:var(--bpk-button-primary-on-dark-background-color, rgb(255, 255, 255))}.bpk-no-touch-support .bpk-button--primary-on-dark:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-button-primary-on-dark-hover-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-primary-on-dark-hover-background-color, rgb(193, 199, 207))}:global(.bpk-no-touch-support) .bpk-button--primary-on-dark:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-button-primary-on-dark-hover-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-primary-on-dark-hover-background-color, rgb(193, 199, 207))}.bpk-button--primary-on-dark:active{color:#161616;color:var(--bpk-button-primary-on-dark-active-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-primary-on-dark-active-background-color, rgb(193, 199, 207))}.bpk-button--primary-on-dark:disabled{background-color:#e0e4e9;color:rgba(0,0,0,.2)}.bpk-button--primary-on-light{color:#fff;color:var(--bpk-button-primary-on-light-text-color, rgb(255, 255, 255));background-color:#05203c;background-color:var(--bpk-button-primary-on-light-background-color, rgb(5, 32, 60))}.bpk-no-touch-support .bpk-button--primary-on-light:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-primary-on-light-hover-text-color, rgb(255, 255, 255));background-color:#154679;background-color:var(--bpk-button-primary-on-light-hover-background-color, rgb(21, 70, 121))}:global(.bpk-no-touch-support) .bpk-button--primary-on-light:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-primary-on-light-hover-text-color, rgb(255, 255, 255));background-color:#154679;background-color:var(--bpk-button-primary-on-light-hover-background-color, rgb(21, 70, 121))}.bpk-button--primary-on-light:active{color:#fff;color:var(--bpk-button-primary-on-light-active-text-color, rgb(255, 255, 255));background-color:#154679;background-color:var(--bpk-button-primary-on-light-active-background-color, rgb(21, 70, 121))}.bpk-button--primary-on-light:disabled{background-color:#e0e4e9;color:rgba(0,0,0,.2)}.bpk-button--secondary{color:#161616;color:var(--bpk-button-secondary-text-color, rgb(22, 22, 22));background-color:#e0e4e9;background-color:var(--bpk-button-secondary-background-color, rgb(224, 228, 233))}.bpk-no-touch-support .bpk-button--secondary:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-button-secondary-hover-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-secondary-hover-background-color, rgb(193, 199, 207))}:global(.bpk-no-touch-support) .bpk-button--secondary:hover:not(:active):not(:disabled){color:#161616;color:var(--bpk-button-secondary-hover-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-secondary-hover-background-color, rgb(193, 199, 207))}.bpk-button--secondary:active{color:#161616;color:var(--bpk-button-secondary-active-text-color, rgb(22, 22, 22));background-color:#c1c7cf;background-color:var(--bpk-button-secondary-active-background-color, rgb(193, 199, 207))}.bpk-button--secondary:disabled{background-color:#e0e4e9;color:rgba(0,0,0,.2)}.bpk-button--secondary-on-dark{color:#fff;color:var(--bpk-button-secondary-on-dark-text-color, rgb(255, 255, 255));background-color:hsla(0,0%,100%,.1);background-color:var(--bpk-button-secondary-on-dark-background-color, rgba(255, 255, 255, 0.1))}.bpk-no-touch-support .bpk-button--secondary-on-dark:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-secondary-on-dark-hover-text-color, rgb(255, 255, 255));background-color:#04182d;background-color:var(--bpk-button-secondary-on-dark-hover-background-color, rgb(4, 24, 45))}:global(.bpk-no-touch-support) .bpk-button--secondary-on-dark:hover:not(:active):not(:disabled){color:#fff;color:var(--bpk-button-secondary-on-dark-hover-text-color, rgb(255, 255, 255));background-color:#04182d;background-color:var(--bpk-button-secondary-on-dark-hover-background-color, rgb(4, 24, 45))}.bpk-button--secondary-on-dark:active{color:#fff;color:var(--bpk-button-secondary-on-dark-active-text-color, rgb(255, 255, 255));background-color:#04182d;background-color:var(--bpk-button-secondary-on-dark-active-background-color, rgb(4, 24, 45))}.bpk-button--secondary-on-dark:disabled{background-color:#0b121d;color:hsla(0,0%,100%,.2)}.bpk-button--full-width{display:block;width:100%}.bpk-button span>svg{display:var(--bpk-button-svg-display, block);vertical-align:var(--bpk-button-svg-vertical-align, baseline)}.bpk-button svg{fill:currentcolor}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: string[];
|
|
2
2
|
export default _default;
|
|
@@ -21,7 +21,6 @@ import { animations } from '@skyscanner/bpk-foundations-web/tokens/base.es6';
|
|
|
21
21
|
|
|
22
22
|
// @ts-expect-error Untyped import. See `decisions/imports-ts-suppressions.md`.
|
|
23
23
|
import BpkCloseButton from "../../bpk-component-close-button";
|
|
24
|
-
// @ts-expect-error Untyped import. See `decisions/imports-ts-suppressions.md`.
|
|
25
24
|
import { BpkButtonLink } from "../../bpk-component-link";
|
|
26
25
|
import { cssModules } from "../../bpk-react-utils";
|
|
27
26
|
import STYLES from "./BpkDrawerContent.module.css";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: string[];
|
|
2
2
|
export default _default;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const BaggageCabinIncludedTickIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M7.5 4A1.5 1.5 0 0 1 9 5.5V12h.5a1.5 1.5 0 0 1 1.5 1.5v4A1.5 1.5 0 0 1 9.5 19v.25a.75.75 0 0 1-1.5 0V19H5v.25a.75.75 0 0 1-1.5 0V19A1.5 1.5 0 0 1 2 17.5v-4A1.5 1.5 0 0 1 3.5 12H4V5.498A1.5 1.5 0 0 1 5.5 4zM5.25 5.5a.25.25 0 0 0-.25.25V12h3V5.75a.25.25 0 0 0-.25-.25zm17.54 6.36a.714.714 0 0 1 0 1.01l-5.892 5.892a.714.714 0 0 1-1.01 0l-2.679-2.678a.714.714 0 0 1 1.01-1.01l2.174 2.173 5.388-5.388a.714.714 0 0 1 1.01 0"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default BaggageCabinIncludedTickIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const BaggageCabinNotIncludedCrossIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M7.5 4h-2A1.5 1.5 0 0 0 4 5.498V12h-.5A1.5 1.5 0 0 0 2 13.5v4A1.5 1.5 0 0 0 3.5 19v.25a.75.75 0 0 0 1.5 0V19h3v.25a.75.75 0 0 0 1.5 0V19a1.5 1.5 0 0 0 1.5-1.5v-4A1.5 1.5 0 0 0 9.5 12H9V5.5A1.5 1.5 0 0 0 7.5 4M5.25 5.5h2.5a.25.25 0 0 1 .25.25V12H5V5.75a.25.25 0 0 1 .25-.25m15.552 5.97a.72.72 0 0 1 1.034 0 .764.764 0 0 1 0 1.06l-2.652 2.72 2.652 2.72a.764.764 0 0 1 0 1.06.72.72 0 0 1-1.034 0l-2.653-2.72-2.651 2.72a.72.72 0 0 1-1.034 0 .764.764 0 0 1 0-1.06l2.651-2.72-2.651-2.72a.764.764 0 0 1 0-1.06.72.72 0 0 1 1.034 0l2.651 2.718z"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default BaggageCabinNotIncludedCrossIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const BaggageCabinUncertainIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M7.5 4A1.5 1.5 0 0 1 9 5.5V12h.5a1.5 1.5 0 0 1 1.5 1.5v4A1.5 1.5 0 0 1 9.5 19v.25a.75.75 0 0 1-1.5 0V19H5v.25a.75.75 0 0 1-1.5 0V19A1.5 1.5 0 0 1 2 17.5v-4A1.5 1.5 0 0 1 3.5 12H4V5.498A1.5 1.5 0 0 1 5.5 4zM5.25 5.5a.25.25 0 0 0-.25.25V12h3V5.75a.25.25 0 0 0-.25-.25zm12.512 12.06a.776.776 0 1 1 0 1.552.776.776 0 0 1 0-1.551m0-8.931c1.122 0 1.968.383 2.526.997.542.596.75 1.34.75 1.967 0 .552-.093 1.16-.408 1.738-.32.586-.837 1.082-1.584 1.455a1 1 0 0 0-.354.27.7.7 0 0 0-.128.285c-.046.194-.042.37-.034.614q.006.145.007.325a.776.776 0 0 1-1.55 0q0-.057-.005-.156c-.01-.265-.027-.72.072-1.139.143-.607.517-1.195 1.299-1.586.502-.25.766-.537.916-.81.153-.281.217-.611.217-.996 0-.31-.105-.66-.344-.924-.223-.245-.628-.488-1.38-.488s-1.14.24-1.358.502c-.238.286-.367.713-.367 1.222a.776.776 0 0 1-1.55 0c0-.74.183-1.563.726-2.215.564-.676 1.425-1.06 2.549-1.06"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default BaggageCabinUncertainIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const BaggageCheckedIncludedTickIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M7.5 4A1.5 1.5 0 0 1 9 5.5V8h.5A1.5 1.5 0 0 1 11 9.5v8A1.5 1.5 0 0 1 9.5 19v.25a.75.75 0 0 1-1.5 0V19H5v.25a.75.75 0 0 1-1.5 0V19A1.5 1.5 0 0 1 2 17.5v-8A1.5 1.5 0 0 1 3.5 8H4V5.498A1.5 1.5 0 0 1 5.5 4zM5.25 5.5a.25.25 0 0 0-.25.25V8h3V5.75a.25.25 0 0 0-.25-.25zm17.55 6.36a.714.714 0 0 1 0 1.01l-5.892 5.892a.714.714 0 0 1-1.01 0l-2.679-2.678a.714.714 0 1 1 1.01-1.01l2.174 2.173 5.388-5.388a.714.714 0 0 1 1.01 0"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default BaggageCheckedIncludedTickIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const BaggageCheckedNotIncludedCrossIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M7.5 4A1.5 1.5 0 0 1 9 5.5V8h.5A1.5 1.5 0 0 1 11 9.5v8A1.5 1.5 0 0 1 9.5 19v.25a.75.75 0 0 1-1.5 0V19H5v.25a.75.75 0 0 1-1.5 0V19A1.5 1.5 0 0 1 2 17.5v-8A1.5 1.5 0 0 1 3.5 8H4V5.498A1.5 1.5 0 0 1 5.5 4zM5.25 5.5a.25.25 0 0 0-.25.25V8h3V5.75a.25.25 0 0 0-.25-.25zm15.55 5.97a.72.72 0 0 1 1.035 0 .764.764 0 0 1 0 1.06l-2.652 2.72 2.652 2.72a.764.764 0 0 1 0 1.06.72.72 0 0 1-1.034 0l-2.653-2.72-2.65 2.72a.72.72 0 0 1-1.034 0 .764.764 0 0 1 0-1.06l2.651-2.72-2.651-2.72a.764.764 0 0 1 0-1.06.72.72 0 0 1 1.033 0l2.651 2.72z"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default BaggageCheckedNotIncludedCrossIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const BaggageCheckedUncertainIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M7.5 4A1.5 1.5 0 0 1 9 5.5V8h.5A1.5 1.5 0 0 1 11 9.5v8A1.5 1.5 0 0 1 9.5 19v.25a.75.75 0 0 1-1.5 0V19H5v.25a.75.75 0 0 1-1.5 0V19A1.5 1.5 0 0 1 2 17.5v-8A1.5 1.5 0 0 1 3.5 8H4V5.498A1.5 1.5 0 0 1 5.5 4zM5.25 5.5a.25.25 0 0 0-.25.25V8h3V5.75a.25.25 0 0 0-.25-.25zm12.512 12.06a.776.776 0 1 1 0 1.552.776.776 0 0 1 0-1.551m0-8.931c1.122 0 1.968.383 2.526.997.542.596.75 1.34.75 1.967 0 .552-.093 1.16-.408 1.738-.32.586-.837 1.082-1.584 1.455a1 1 0 0 0-.354.27.7.7 0 0 0-.128.285c-.046.194-.042.37-.034.614q.006.145.007.325a.776.776 0 0 1-1.55 0q0-.057-.005-.156c-.01-.265-.027-.72.072-1.139.143-.607.517-1.195 1.299-1.586.502-.25.766-.537.916-.81.153-.281.217-.611.217-.996 0-.31-.105-.66-.344-.924-.223-.245-.628-.488-1.38-.488s-1.14.24-1.358.502c-.238.286-.367.713-.367 1.222a.776.776 0 0 1-1.55 0c0-.74.183-1.563.726-2.215.564-.676 1.425-1.06 2.549-1.06"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default BaggageCheckedUncertainIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlCarsIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M22.36 9.532a23.2 23.2 0 0 0-4.75-1.374c-.84-.89-4.13-4.075-8.251-4.075-5.72 0-8.23 3.106-9.042 4.441A.8.8 0 0 0 .2 8.94v5.48c0 1.175.828 2.147 1.91 2.34A3 3 0 0 0 5 19a2.995 2.995 0 0 0 2.878-2.199h7.244A2.995 2.995 0 0 0 18 19a2.995 2.995 0 0 0 2.878-2.199h.621c1.269 0 2.3-1.073 2.3-2.394V11.67c0-.934-.564-1.772-1.44-2.137M5 17.4c-.772 0-1.4-.628-1.4-1.4s.628-1.4 1.4-1.4 1.4.628 1.4 1.4-.628 1.4-1.4 1.4m13 0c-.772 0-1.4-.628-1.4-1.4s.628-1.4 1.4-1.4 1.4.628 1.4 1.4-.628 1.4-1.4 1.4m4.2-2.993c0 .438-.314.795-.701.795h-.62A2.995 2.995 0 0 0 18 13a2.995 2.995 0 0 0-2.879 2.202H7.878A2.995 2.995 0 0 0 5 13c-1.334 0-2.454.88-2.843 2.087a.79.79 0 0 1-.357-.667V9.172c.908-1.384 3.034-3.49 7.559-3.49 3.948 0 7.21 3.708 7.243 3.745a.8.8 0 0 0 .492.269c.023.003 2.31.336 4.65 1.313a.72.72 0 0 1 .456.66zM4.441 8.817c.852-.853 2.345-1.715 4.88-1.715 1.588 0 3.064.896 4.062 1.693.22.175.088.53-.193.53H4.662c-.265 0-.408-.32-.221-.508"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default VdlCarsIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlFlightIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M23.222 5.543c-.255-.72-.943-1.227-1.886-1.392-1.568-.275-3.083.093-4.63 1.127l-3.122 2.104-.012-.018-.323.218-6.973-2.968a2.06 2.06 0 0 0-2.551.897 2.06 2.06 0 0 0 .426 2.55l3.609 3.246-1.606 1.082-2.005-.514a2.37 2.37 0 0 0-1.903.328l-1.143.77a.8.8 0 0 0-.031 1.305l3.703 2.76q.04.03.085.054a3.93 3.93 0 0 0 3.063.34c1.024-.308 2.032-.768 3.117-1.424l1.615 4.636a2.14 2.14 0 0 0 2.285 1.41 2.14 2.14 0 0 0 1.86-2.105v-7.772l3.036-2.067c1.443-.973 2.078-1.504 2.828-2.37.604-.696.807-1.496.558-2.197M5.213 6.864a.456.456 0 0 1-.094-.568.45.45 0 0 1 .546-.204l6.002 2.556-2.556 1.722zm16.242-.172c-.584.674-1.062 1.113-2.516 2.093l-3.389 2.307a.8.8 0 0 0-.35.661v8.193a.533.533 0 0 1-1.035.171l-1.947-5.593a.8.8 0 0 0-1.203-.4c-1.29.87-2.42 1.434-3.555 1.777a2.3 2.3 0 0 1-1.772-.18L2.933 13.67l.207-.14a.76.76 0 0 1 .612-.105l2.352.604a.8.8 0 0 0 .646-.112l10.848-7.31c1.185-.792 2.32-1.08 3.462-.879.417.073.614.235.655.352.049.137-.05.372-.26.613"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default VdlFlightIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlHomeBeachIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M18.842 20.72a.49.49 0 0 0-.634-.215 8 8 0 0 1-3.204.696c-1.849 0-3.23-.686-3.624-.906a8 8 0 0 0-.971-.446l1.552-5.453 6.16 1.75a.8.8 0 0 0 1.019-.78 8.26 8.26 0 0 0-1.979-5.263c.41-.617.639-1.352.639-2.103 0-2.095-1.704-3.8-3.8-3.8a3.815 3.815 0 0 0-3.706 2.97 8.25 8.25 0 0 0-6.49 3.84.8.8 0 0 0 .457 1.199l6.161 1.75-1.55 5.443a9 9 0 0 0-1.876-.202c-1.74 0-3.151.511-3.908.858a.496.496 0 0 0-.223.694l.291.526a.49.49 0 0 0 .635.217 7.9 7.9 0 0 1 3.205-.695c1.846 0 3.23.686 3.623.904.464.257 2.152 1.096 4.385 1.096a9.5 9.5 0 0 0 3.91-.858.496.496 0 0 0 .221-.695zM14 5.8c1.213 0 2.2.987 2.2 2.2 0 .336-.086.663-.231.96a8.3 8.3 0 0 0-2.874-1.486 8.5 8.5 0 0 0-1.15-.237A2.2 2.2 0 0 1 14 5.8m-1.343 3.213a6.67 6.67 0 0 1 4.78 5.275l-11.619-3.3a6.67 6.67 0 0 1 6.84-1.975m.809-5.857a.73.73 0 0 1-.216-.534V1.42c0-.112.069-.198.172-.241.121-.06.32-.095.578-.095.259 0 .457.035.578.095.095.052.172.13.172.241v1.202a.8.8 0 0 1-.216.534.73.73 0 0 1-.534.216.8.8 0 0 1-.534-.216m3.807 1.571a.8.8 0 0 1-.226-.53c0-.195.073-.378.226-.53l.85-.85c.078-.08.188-.091.292-.049.128.043.293.159.475.342.183.183.3.347.342.475.03.104.03.213-.05.293l-.849.85a.8.8 0 0 1-.53.225.73.73 0 0 1-.53-.226m-8.456-.85c-.08-.079-.091-.188-.049-.292.043-.128.159-.292.342-.475s.347-.299.475-.342c.104-.03.214-.03.293.05l.85.849a.8.8 0 0 1 .225.53.73.73 0 0 1-.226.53.8.8 0 0 1-.53.226.73.73 0 0 1-.53-.226zM20.916 8c0 .259-.035.457-.095.578-.052.094-.13.172-.241.172h-1.202a.8.8 0 0 1-.534-.216.73.73 0 0 1-.216-.534.78.78 0 0 1 .216-.534.73.73 0 0 1 .534-.216h1.202c.112 0 .198.069.241.172.06.121.095.32.095.578"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default VdlHomeBeachIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlHomeCarsIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M22.36 9.532a23.2 23.2 0 0 0-4.75-1.374c-.84-.89-4.13-4.075-8.251-4.075-5.72 0-8.23 3.106-9.042 4.441A.8.8 0 0 0 .2 8.94v5.48c0 1.175.828 2.147 1.91 2.34A3 3 0 0 0 5 19a2.995 2.995 0 0 0 2.878-2.199h7.244A2.995 2.995 0 0 0 18 19a2.995 2.995 0 0 0 2.878-2.199h.621c1.269 0 2.3-1.073 2.3-2.394V11.67c0-.934-.564-1.772-1.44-2.137M5 17.4c-.772 0-1.4-.628-1.4-1.4s.628-1.4 1.4-1.4 1.4.628 1.4 1.4-.628 1.4-1.4 1.4m13 0c-.772 0-1.4-.628-1.4-1.4s.628-1.4 1.4-1.4 1.4.628 1.4 1.4-.628 1.4-1.4 1.4m4.2-2.993c0 .438-.314.795-.701.795h-.62A2.995 2.995 0 0 0 18 13a2.995 2.995 0 0 0-2.879 2.202H7.878A2.995 2.995 0 0 0 5 13c-1.334 0-2.454.88-2.843 2.087a.79.79 0 0 1-.357-.667V9.172c.908-1.384 3.034-3.49 7.559-3.49 3.948 0 7.21 3.708 7.243 3.745a.8.8 0 0 0 .492.269c.023.003 2.31.336 4.65 1.313a.72.72 0 0 1 .456.66zM4.441 8.817c.852-.853 2.345-1.715 4.88-1.715 1.588 0 3.064.896 4.062 1.693.22.175.088.53-.193.53H4.662c-.265 0-.408-.32-.221-.508"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default VdlHomeCarsIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlHomeFlightIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M23.222 5.543c-.255-.72-.943-1.227-1.886-1.392-1.568-.275-3.083.093-4.63 1.127l-3.122 2.104-.012-.018-.323.218-6.973-2.968a2.06 2.06 0 0 0-2.551.897 2.06 2.06 0 0 0 .426 2.55l3.609 3.246-1.606 1.082-2.005-.514a2.37 2.37 0 0 0-1.903.328l-1.143.77a.8.8 0 0 0-.031 1.305l3.703 2.76q.04.03.085.054a3.93 3.93 0 0 0 3.063.34c1.024-.308 2.032-.768 3.117-1.424l1.615 4.636a2.14 2.14 0 0 0 2.285 1.41 2.14 2.14 0 0 0 1.86-2.105v-7.772l3.036-2.067c1.443-.973 2.078-1.504 2.828-2.37.604-.696.807-1.496.558-2.197M5.213 6.864a.456.456 0 0 1-.094-.568.45.45 0 0 1 .546-.204l6.002 2.556-2.556 1.722zm16.242-.172c-.584.674-1.062 1.113-2.516 2.093l-3.389 2.307a.8.8 0 0 0-.35.661v8.193a.533.533 0 0 1-1.035.171l-1.947-5.593a.8.8 0 0 0-1.203-.4c-1.29.87-2.42 1.434-3.555 1.777a2.3 2.3 0 0 1-1.772-.18L2.933 13.67l.207-.14a.76.76 0 0 1 .612-.105l2.352.604a.8.8 0 0 0 .646-.112l10.848-7.31c1.185-.792 2.32-1.08 3.462-.879.417.073.614.235.655.352.049.137-.05.372-.26.613"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default VdlHomeFlightIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlHomeHotelsIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M20.8 11.23V5.778a.8.8 0 0 0-.457-.723C17.109 3.522 14.02 3.2 12 3.2a19.6 19.6 0 0 0-8.343 1.855.8.8 0 0 0-.457.723v5.453a2.296 2.296 0 0 0-2 2.269v7a.5.5 0 0 0 .5.5h.6a.5.5 0 0 0 .5-.5v-1.7h18.4v1.7a.5.5 0 0 0 .5.5h.6a.5.5 0 0 0 .5-.5v-7c0-1.165-.875-2.12-2-2.27m-16-4.938A18 18 0 0 1 12 4.8c1.761 0 4.403.265 7.2 1.492V11.2H4.8zm-2 7.208a.7.7 0 0 1 .7-.7h17a.7.7 0 0 1 .7.7v3.7H2.8zM11 8.793v.414c0 .251-.186.47-.436.5a13 13 0 0 1-3.128 0 .5.5 0 0 1-.436-.5v-.414c0-.251.186-.47.436-.5a13 13 0 0 1 3.128 0c.25.03.436.249.436.5m6 0v.414c0 .251-.186.47-.436.5a13 13 0 0 1-3.129 0 .5.5 0 0 1-.435-.5v-.414c0-.251.186-.47.435-.5a13 13 0 0 1 3.13 0c.249.03.435.249.435.5"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default VdlHomeHotelsIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlHotelsIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M20.8 11.23V5.778a.8.8 0 0 0-.457-.723C17.109 3.522 14.02 3.2 12 3.2a19.6 19.6 0 0 0-8.343 1.855.8.8 0 0 0-.457.723v5.453a2.296 2.296 0 0 0-2 2.269v7a.5.5 0 0 0 .5.5h.6a.5.5 0 0 0 .5-.5v-1.7h18.4v1.7a.5.5 0 0 0 .5.5h.6a.5.5 0 0 0 .5-.5v-7c0-1.165-.875-2.12-2-2.27m-16-4.938A18 18 0 0 1 12 4.8c1.761 0 4.403.265 7.2 1.492V11.2H4.8zm-2 7.208a.7.7 0 0 1 .7-.7h17a.7.7 0 0 1 .7.7v3.7H2.8zM11 8.793v.414c0 .251-.186.47-.436.5a13 13 0 0 1-3.128 0 .5.5 0 0 1-.436-.5v-.414c0-.251.186-.47.436-.5a13 13 0 0 1 3.128 0c.25.03.436.249.436.5m6 0v.414c0 .251-.186.47-.436.5a13 13 0 0 1-3.129 0 .5.5 0 0 1-.435-.5v-.414c0-.251.186-.47.435-.5a13 13 0 0 1 3.13 0c.249.03.435.249.435.5"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default VdlHotelsIcon;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlTabDropsSelectedIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
stroke: "#161616",
|
|
12
|
+
strokeWidth: 1.6,
|
|
13
|
+
d: "M17.75 5.75 12 11.5 6.25 5.75a3.182 3.182 0 0 0-4.5 4.5l8.129 8.129a3 3 0 0 0 4.242 0l8.129-8.129a3.182 3.182 0 0 0-4.5-4.5Z"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
export default VdlTabDropsSelectedIcon;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlTabDropsIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
stroke: "#161616",
|
|
12
|
+
strokeWidth: 1.6,
|
|
13
|
+
d: "M17.75 6.25 12 12 6.25 6.25a3.182 3.182 0 0 0-4.5 4.5l8.129 8.129a3 3 0 0 0 4.242 0l8.129-8.129a3.182 3.182 0 0 0-4.5-4.5Z"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
export default VdlTabDropsIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlTabProfileSelectedIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M12 1.2c5.965 0 10.8 4.835 10.8 10.8S17.965 22.8 12 22.8 1.2 17.965 1.2 12 6.035 1.2 12 1.2m4.775 13.79a11.8 11.8 0 0 0-9.56 0 3.28 3.28 0 0 0-1.612 1.47A7.79 7.79 0 0 0 12 19.8a7.79 7.79 0 0 0 6.388-3.327 3.28 3.28 0 0 0-1.613-1.483M12 6a3 3 0 1 0 0 6 3 3 0 0 0 0-6"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default VdlTabProfileSelectedIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlTabProfileIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M12 1.2c5.965 0 10.8 4.835 10.8 10.8S17.965 22.8 12 22.8 1.2 17.965 1.2 12 6.035 1.2 12 1.2m0 14.56a10.2 10.2 0 0 0-4.137.882l-.01.005A1.74 1.74 0 0 0 6.8 18.26v1.328A9.15 9.15 0 0 0 12 21.2c1.93 0 3.72-.596 5.2-1.612V18.26c0-.716-.414-1.341-1.053-1.614l-.01-.004A10.2 10.2 0 0 0 12 15.76M12 2.8a9.2 9.2 0 0 0-6.798 15.398 3.34 3.34 0 0 1 2.015-3.02A11.8 11.8 0 0 1 12 14.16c1.966 0 3.596.494 4.783 1.018a3.33 3.33 0 0 1 2.014 3.02A9.2 9.2 0 0 0 12 2.8m0 2.4a3.8 3.8 0 1 1 0 7.6 3.8 3.8 0 0 1 0-7.6m0 1.6a2.2 2.2 0 1 0 0 4.4 2.2 2.2 0 0 0 0-4.4"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default VdlTabProfileIcon;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlTabSavedSelectedIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
stroke: "#161616",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
strokeWidth: 1.6,
|
|
14
|
+
d: "M12 20.495s-9.62-6.26-9.62-12.02a4.88 4.88 0 0 1 1.44-3.53A4.925 4.925 0 0 1 12 6.965a4.925 4.925 0 0 1 8.18-2.02c.98.98 1.46 2.25 1.44 3.53 0 5.76-9.62 12.02-9.62 12.02Z"
|
|
15
|
+
})
|
|
16
|
+
});
|
|
17
|
+
export default VdlTabSavedSelectedIcon;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlTabSavedIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
stroke: "#161616",
|
|
12
|
+
strokeLinejoin: "round",
|
|
13
|
+
strokeWidth: 1.6,
|
|
14
|
+
d: "M12 20.495s-9.62-6.26-9.62-12.02a4.88 4.88 0 0 1 1.44-3.53A4.925 4.925 0 0 1 12 6.965a4.925 4.925 0 0 1 8.18-2.02c.98.98 1.46 2.25 1.44 3.53 0 5.76-9.62 12.02-9.62 12.02Z"
|
|
15
|
+
})
|
|
16
|
+
});
|
|
17
|
+
export default VdlTabSavedIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlTabSearchSelectedIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M10.5 1.5a9 9 0 0 1 7.334 14.213l4.227 4.227a1.5 1.5 0 1 1-2.122 2.12l-4.226-4.226A9 9 0 1 1 10.5 1.5m0 3a6 6 0 1 0 0 12 6 6 0 0 0 0-12"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default VdlTabSearchSelectedIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlTabSearchIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M10.5 2.2a8.3 8.3 0 0 1 6.406 13.575l4.66 4.66a.8.8 0 1 1-1.131 1.13l-4.66-4.659A8.3 8.3 0 1 1 10.5 2.2m0 1.6a6.7 6.7 0 1 0 0 13.4 6.7 6.7 0 0 0 0-13.4"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default VdlTabSearchIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const WalkIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1.5rem",
|
|
8
|
+
height: "1.5rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M14.247 4.5a2.25 2.25 0 1 0 0-4.501 2.25 2.25 0 0 0 0 4.5m4.43 6.987-1.093-.553-.454-1.378c-.69-2.09-2.61-3.552-4.79-3.557-1.687-.005-2.62.473-4.373 1.181a4.47 4.47 0 0 0-2.33 2.166l-.313.637c-.366.74-.07 1.64.665 2.01a1.48 1.48 0 0 0 1.992-.67l.314-.637a1.5 1.5 0 0 1 .773-.722l1.257-.506-.713 2.845a3.01 3.01 0 0 0 .698 2.756l2.808 3.065c.337.37.576.815.698 1.298l.858 3.436a1.5 1.5 0 0 0 1.818 1.092 1.5 1.5 0 0 0 1.092-1.819l-1.04-4.171a3 3 0 0 0-.698-1.298l-2.133-2.33.806-3.22.258.774a3 3 0 0 0 1.486 1.734l1.092.553a1.48 1.48 0 0 0 1.992-.67 1.517 1.517 0 0 0-.67-2.016m-10.73 6.596a2.9 2.9 0 0 1-.665 1.007l-2.344 2.349a1.5 1.5 0 0 0 0 2.123 1.496 1.496 0 0 0 2.119 0l2.784-2.784c.286-.286.51-.628.665-1.008l.633-1.584c-2.592-2.826-1.814-1.96-2.222-2.517z"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default WalkIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const BaggageCabinIncludedTickIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1rem",
|
|
8
|
+
height: "1rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M7.5 4A1.5 1.5 0 0 1 9 5.5V12h.5a1.5 1.5 0 0 1 1.5 1.5v4A1.5 1.5 0 0 1 9.5 19v.25a.75.75 0 0 1-1.5 0V19H5v.25a.75.75 0 0 1-1.5 0V19A1.5 1.5 0 0 1 2 17.5v-4A1.5 1.5 0 0 1 3.5 12H4V5.498A1.5 1.5 0 0 1 5.5 4zM5.25 5.5a.25.25 0 0 0-.25.25V12h3V5.75a.25.25 0 0 0-.25-.25zm17.54 6.36a.714.714 0 0 1 0 1.01l-5.892 5.892a.714.714 0 0 1-1.01 0l-2.679-2.678a.714.714 0 0 1 1.01-1.01l2.174 2.173 5.388-5.388a.714.714 0 0 1 1.01 0"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default BaggageCabinIncludedTickIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const BaggageCabinNotIncludedCrossIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1rem",
|
|
8
|
+
height: "1rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M7.5 4h-2A1.5 1.5 0 0 0 4 5.498V12h-.5A1.5 1.5 0 0 0 2 13.5v4A1.5 1.5 0 0 0 3.5 19v.25a.75.75 0 0 0 1.5 0V19h3v.25a.75.75 0 0 0 1.5 0V19a1.5 1.5 0 0 0 1.5-1.5v-4A1.5 1.5 0 0 0 9.5 12H9V5.5A1.5 1.5 0 0 0 7.5 4M5.25 5.5h2.5a.25.25 0 0 1 .25.25V12H5V5.75a.25.25 0 0 1 .25-.25m15.552 5.97a.72.72 0 0 1 1.034 0 .764.764 0 0 1 0 1.06l-2.652 2.72 2.652 2.72a.764.764 0 0 1 0 1.06.72.72 0 0 1-1.034 0l-2.653-2.72-2.651 2.72a.72.72 0 0 1-1.034 0 .764.764 0 0 1 0-1.06l2.651-2.72-2.651-2.72a.764.764 0 0 1 0-1.06.72.72 0 0 1 1.034 0l2.651 2.718z"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default BaggageCabinNotIncludedCrossIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const BaggageCabinUncertainIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1rem",
|
|
8
|
+
height: "1rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M7.5 4A1.5 1.5 0 0 1 9 5.5V12h.5a1.5 1.5 0 0 1 1.5 1.5v4A1.5 1.5 0 0 1 9.5 19v.25a.75.75 0 0 1-1.5 0V19H5v.25a.75.75 0 0 1-1.5 0V19A1.5 1.5 0 0 1 2 17.5v-4A1.5 1.5 0 0 1 3.5 12H4V5.498A1.5 1.5 0 0 1 5.5 4zM5.25 5.5a.25.25 0 0 0-.25.25V12h3V5.75a.25.25 0 0 0-.25-.25zm12.512 12.06a.776.776 0 1 1 0 1.552.776.776 0 0 1 0-1.551m0-8.931c1.122 0 1.968.383 2.526.997.542.596.75 1.34.75 1.967 0 .552-.093 1.16-.408 1.738-.32.586-.837 1.082-1.584 1.455a1 1 0 0 0-.354.27.7.7 0 0 0-.128.285c-.046.194-.042.37-.034.614q.006.145.007.325a.776.776 0 0 1-1.55 0q0-.057-.005-.156c-.01-.265-.027-.72.072-1.139.143-.607.517-1.195 1.299-1.586.502-.25.766-.537.916-.81.153-.281.217-.611.217-.996 0-.31-.105-.66-.344-.924-.223-.245-.628-.488-1.38-.488s-1.14.24-1.358.502c-.238.286-.367.713-.367 1.222a.776.776 0 0 1-1.55 0c0-.74.183-1.563.726-2.215.564-.676 1.425-1.06 2.549-1.06"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default BaggageCabinUncertainIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const BaggageCheckedIncludedTickIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1rem",
|
|
8
|
+
height: "1rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M7.5 4A1.5 1.5 0 0 1 9 5.5V8h.5A1.5 1.5 0 0 1 11 9.5v8A1.5 1.5 0 0 1 9.5 19v.25a.75.75 0 0 1-1.5 0V19H5v.25a.75.75 0 0 1-1.5 0V19A1.5 1.5 0 0 1 2 17.5v-8A1.5 1.5 0 0 1 3.5 8H4V5.498A1.5 1.5 0 0 1 5.5 4zM5.25 5.5a.25.25 0 0 0-.25.25V8h3V5.75a.25.25 0 0 0-.25-.25zm17.55 6.36a.714.714 0 0 1 0 1.01l-5.892 5.892a.714.714 0 0 1-1.01 0l-2.679-2.678a.714.714 0 1 1 1.01-1.01l2.174 2.173 5.388-5.388a.714.714 0 0 1 1.01 0"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default BaggageCheckedIncludedTickIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const BaggageCheckedNotIncludedCrossIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1rem",
|
|
8
|
+
height: "1rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M7.5 4A1.5 1.5 0 0 1 9 5.5V8h.5A1.5 1.5 0 0 1 11 9.5v8A1.5 1.5 0 0 1 9.5 19v.25a.75.75 0 0 1-1.5 0V19H5v.25a.75.75 0 0 1-1.5 0V19A1.5 1.5 0 0 1 2 17.5v-8A1.5 1.5 0 0 1 3.5 8H4V5.498A1.5 1.5 0 0 1 5.5 4zM5.25 5.5a.25.25 0 0 0-.25.25V8h3V5.75a.25.25 0 0 0-.25-.25zm15.55 5.97a.72.72 0 0 1 1.035 0 .764.764 0 0 1 0 1.06l-2.652 2.72 2.652 2.72a.764.764 0 0 1 0 1.06.72.72 0 0 1-1.034 0l-2.653-2.72-2.65 2.72a.72.72 0 0 1-1.034 0 .764.764 0 0 1 0-1.06l2.651-2.72-2.651-2.72a.764.764 0 0 1 0-1.06.72.72 0 0 1 1.033 0l2.651 2.72z"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default BaggageCheckedNotIncludedCrossIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const BaggageCheckedUncertainIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1rem",
|
|
8
|
+
height: "1rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M7.5 4A1.5 1.5 0 0 1 9 5.5V8h.5A1.5 1.5 0 0 1 11 9.5v8A1.5 1.5 0 0 1 9.5 19v.25a.75.75 0 0 1-1.5 0V19H5v.25a.75.75 0 0 1-1.5 0V19A1.5 1.5 0 0 1 2 17.5v-8A1.5 1.5 0 0 1 3.5 8H4V5.498A1.5 1.5 0 0 1 5.5 4zM5.25 5.5a.25.25 0 0 0-.25.25V8h3V5.75a.25.25 0 0 0-.25-.25zm12.512 12.06a.776.776 0 1 1 0 1.552.776.776 0 0 1 0-1.551m0-8.931c1.122 0 1.968.383 2.526.997.542.596.75 1.34.75 1.967 0 .552-.093 1.16-.408 1.738-.32.586-.837 1.082-1.584 1.455a1 1 0 0 0-.354.27.7.7 0 0 0-.128.285c-.046.194-.042.37-.034.614q.006.145.007.325a.776.776 0 0 1-1.55 0q0-.057-.005-.156c-.01-.265-.027-.72.072-1.139.143-.607.517-1.195 1.299-1.586.502-.25.766-.537.916-.81.153-.281.217-.611.217-.996 0-.31-.105-.66-.344-.924-.223-.245-.628-.488-1.38-.488s-1.14.24-1.358.502c-.238.286-.367.713-.367 1.222a.776.776 0 0 1-1.55 0c0-.74.183-1.563.726-2.215.564-.676 1.425-1.06 2.549-1.06"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default BaggageCheckedUncertainIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlCarsIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1rem",
|
|
8
|
+
height: "1rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M9.312 7.924c1.348 0 2.612.725 3.542 1.455.334.262.139.8-.286.8H5.246c-.401 0-.612-.497-.317-.77.842-.774 2.21-1.485 4.383-1.485m14.667 4.264v2.92c0 1.313-.883 2.402-2.04 2.626a3.23 3.23 0 0 1-3.183 2.739 3.23 3.23 0 0 1-3.179-2.691H8.435a3.23 3.23 0 0 1-3.18 2.69 3.23 3.23 0 0 1-3.183-2.738C.92 17.508.041 16.425.041 15.122V9.28c0-.17.044-.336.128-.484.827-1.448 3.38-4.817 9.2-4.817 4.142 0 7.443 3.34 8.356 4.362.785.148 2.716.57 4.727 1.466a2.6 2.6 0 0 1 1.527 2.381M6.539 17.24c0-.707-.576-1.284-1.283-1.284-.708 0-1.284.577-1.284 1.284s.576 1.284 1.284 1.284c.707 0 1.284-.576 1.284-1.284m13.5 0c0-.707-.576-1.284-1.283-1.284-.708 0-1.284.577-1.284 1.284s.576 1.284 1.284 1.284c.707 0 1.284-.576 1.284-1.284m1.99-5.05a.65.65 0 0 0-.37-.6c-2.31-1.029-4.57-1.38-4.591-1.384a.98.98 0 0 1-.612-.35c-.031-.04-3.24-3.926-7.086-3.926-4.402 0-6.483 2.175-7.38 3.619v5.574c0 .32.17.586.389.672a3.23 3.23 0 0 1 2.877-1.789c1.277 0 2.373.75 2.898 1.827h7.704a3.23 3.23 0 0 1 2.898-1.827c1.262 0 2.345.733 2.878 1.79.222-.084.395-.358.395-.687z"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default VdlCarsIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlFlightIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1rem",
|
|
8
|
+
height: "1rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M23.808 4.846c-.285-.8-1.042-1.363-2.077-1.543-1.68-.296-3.29.097-4.937 1.198l-3.26 2.197-.012-.019-.274.185-7.212-3.07a2.29 2.29 0 0 0-2.837.998 2.29 2.29 0 0 0 .473 2.834l3.635 3.269-1.477.994-2.03-.52a2.6 2.6 0 0 0-2.101.361l-1.194.805a.975.975 0 0 0-.037 1.59l3.866 2.88a1 1 0 0 0 .102.068 4.26 4.26 0 0 0 3.307.367c1.035-.313 2.053-.77 3.139-1.414l1.63 4.677a2.37 2.37 0 0 0 2.534 1.567 2.374 2.374 0 0 0 2.065-2.337v-8.04l3.107-2.116c1.52-1.023 2.188-1.583 2.98-2.498.665-.766.887-1.653.61-2.433M4.966 6.168a.34.34 0 0 1-.068-.42c.082-.144.26-.207.393-.152l6.03 2.567-2.365 1.593zM21.726 6c-.63.726-1.117 1.162-2.601 2.162l-3.538 2.408a.97.97 0 0 0-.426.806v8.551a.418.418 0 0 1-.808.134l-2.034-5.838a.974.974 0 0 0-1.466-.488c-1.334.9-2.501 1.483-3.674 1.837a2.3 2.3 0 0 1-1.734-.17l-2.71-2.02.053-.035a.66.66 0 0 1 .526-.091l2.455.63c.27.07.557.02.788-.136l2.875-1.937c.028-.019.042-.05.067-.072l4.339-2.924c.027-.015.059-.013.085-.03L17.88 6.12c1.224-.816 2.337-1.1 3.514-.897.37.065.55.204.576.277.02.06-.027.25-.246.501"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default VdlFlightIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const VdlHotelsIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1rem",
|
|
8
|
+
height: "1rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M21.674 12.664V5.492a.97.97 0 0 0-.557-.881C17.583 2.99 14.207 2.65 12 2.65c-4 0-7.16 1.064-9.108 1.957a.97.97 0 0 0-.567.885v7.172a2.5 2.5 0 0 0-1.8 2.395v7.466c0 .249.201.45.45.45h1.05a.45.45 0 0 0 .45-.45v-2.05h19.05v2.05c0 .249.201.45.45.45h1.05a.45.45 0 0 0 .45-.45V15.06a2.5 2.5 0 0 0-1.8-2.395M4.274 6.13A20.1 20.1 0 0 1 12 4.599c1.892 0 4.723.274 7.725 1.53v6.421H4.275zm-1.8 8.93a.56.56 0 0 1 .56-.56h17.932a.56.56 0 0 1 .559.56v3.466H2.475zm7.88-6.46v.8a.455.455 0 0 1-.382.45c-1.147.17-2.298.17-3.444 0a.455.455 0 0 1-.383-.45v-.8c0-.223.162-.418.383-.45 1.146-.17 2.297-.17 3.444 0 .22.032.383.227.383.45m7.5 0v.8a.455.455 0 0 1-.382.45c-1.147.17-2.298.17-3.444 0a.455.455 0 0 1-.383-.45v-.8c0-.223.162-.418.383-.45 1.146-.17 2.297-.17 3.444 0 .22.032.383.227.383.45"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default VdlHotelsIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
const WalkIcon = props => /*#__PURE__*/_jsx("svg", {
|
|
4
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
"aria-hidden": "true",
|
|
7
|
+
width: "1rem",
|
|
8
|
+
height: "1rem",
|
|
9
|
+
...props,
|
|
10
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
11
|
+
d: "M14.247 4.5a2.25 2.25 0 1 0 0-4.501 2.25 2.25 0 0 0 0 4.5m4.43 6.987-1.093-.553-.454-1.378c-.69-2.09-2.61-3.552-4.79-3.557-1.687-.005-2.62.473-4.373 1.181a4.47 4.47 0 0 0-2.33 2.166l-.313.637c-.366.74-.07 1.64.665 2.01a1.48 1.48 0 0 0 1.992-.67l.314-.637a1.5 1.5 0 0 1 .773-.722l1.257-.506-.713 2.845a3.01 3.01 0 0 0 .698 2.756l2.808 3.065c.337.37.576.815.698 1.298l.858 3.436a1.5 1.5 0 0 0 1.818 1.092 1.5 1.5 0 0 0 1.092-1.819l-1.04-4.171a3 3 0 0 0-.698-1.298l-2.133-2.33.806-3.22.258.774a3 3 0 0 0 1.486 1.734l1.092.553a1.48 1.48 0 0 0 1.992-.67 1.517 1.517 0 0 0-.67-2.016m-10.73 6.596a2.9 2.9 0 0 1-.665 1.007l-2.344 2.349a1.5 1.5 0 0 0 0 2.123 1.496 1.496 0 0 0 2.119 0l2.784-2.784c.286-.286.51-.628.665-1.008l.633-1.584c-2.592-2.826-1.814-1.96-2.222-2.517z"
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
export default WalkIcon;
|
|
@@ -31,7 +31,6 @@ import ChevronDownIcon from "../../bpk-component-icon/sm/chevron-down";
|
|
|
31
31
|
import ChevronUpIcon from "../../bpk-component-icon/sm/chevron-up";
|
|
32
32
|
import InfoCircleIcon from "../../bpk-component-icon/sm/information-circle";
|
|
33
33
|
import TickCircleIcon from "../../bpk-component-icon/sm/tick-circle";
|
|
34
|
-
// @ts-expect-error Untyped import. See `decisions/imports-ts-suppressions.md`.
|
|
35
34
|
import BpkLink from "../../bpk-component-link";
|
|
36
35
|
import { cssModules } from "../../bpk-react-utils";
|
|
37
36
|
import AnimateAndFade from "./AnimateAndFade";
|
|
@@ -153,7 +152,7 @@ const BpkInfoBannerInner = ({
|
|
|
153
152
|
children: children
|
|
154
153
|
}), isExpandable && action && /*#__PURE__*/_jsx(BpkLink, {
|
|
155
154
|
onClick: action.callback,
|
|
156
|
-
href:
|
|
155
|
+
href: "#",
|
|
157
156
|
children: action.title
|
|
158
157
|
})]
|
|
159
158
|
})]
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import BpkButtonLink, { type Props as BpkButtonLinkProps } from './src/BpkButtonLink';
|
|
2
|
+
import BpkLink, { type Props as BpkLinkProps } from './src/BpkLink';
|
|
3
|
+
import themeAttributes, { linkAlternateThemeAttributes } from './src/themeAttributes';
|
|
4
|
+
export type { BpkButtonLinkProps, BpkLinkProps };
|
|
5
|
+
export default BpkLink;
|
|
6
|
+
export { BpkButtonLink, themeAttributes, linkAlternateThemeAttributes };
|
|
@@ -14,7 +14,9 @@
|
|
|
14
14
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
15
|
* See the License for the specific language governing permissions and
|
|
16
16
|
* limitations under the License.
|
|
17
|
-
*/
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
import BpkButtonLink from "./src/BpkButtonLink";
|
|
18
20
|
import BpkLink from "./src/BpkLink";
|
|
19
21
|
import themeAttributes, { linkAlternateThemeAttributes } from "./src/themeAttributes";
|
|
20
22
|
export default BpkLink;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { ReactNode, MouseEvent, ButtonHTMLAttributes } from 'react';
|
|
2
|
+
import themeAttributes from './themeAttributes';
|
|
3
|
+
export interface Props extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'className' | 'onClick'> {
|
|
4
|
+
/** The content of the link. */
|
|
5
|
+
children: ReactNode;
|
|
6
|
+
onClick: (event: MouseEvent<HTMLButtonElement>) => void;
|
|
7
|
+
className?: string | null;
|
|
8
|
+
alternate?: boolean;
|
|
9
|
+
implicit?: boolean;
|
|
10
|
+
}
|
|
11
|
+
declare const BpkButtonLink: ({ alternate, children, className, implicit, onClick, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export { themeAttributes };
|
|
13
|
+
export default BpkButtonLink;
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
15
|
* See the License for the specific language governing permissions and
|
|
16
16
|
* limitations under the License.
|
|
17
|
-
*/
|
|
17
|
+
*/
|
|
18
|
+
|
|
18
19
|
import { cssModules } from "../../bpk-react-utils";
|
|
19
20
|
import themeAttributes from "./themeAttributes";
|
|
20
21
|
import STYLES from "./BpkLink.module.css";
|
|
@@ -46,27 +47,16 @@ const BpkButtonLink = ({
|
|
|
46
47
|
} else if (implicit && alternate) {
|
|
47
48
|
underlinedClassNames.push(getClassName('bpk-link-underlined-implicit--alternate'));
|
|
48
49
|
}
|
|
49
|
-
return (
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
children: /*#__PURE__*/_jsx("span", {
|
|
58
|
-
className: underlinedClassNames.join(' '),
|
|
59
|
-
children: children
|
|
60
|
-
})
|
|
50
|
+
return /*#__PURE__*/_jsx("button", {
|
|
51
|
+
type: "button",
|
|
52
|
+
className: classNames.join(' '),
|
|
53
|
+
onClick: onClick,
|
|
54
|
+
...rest,
|
|
55
|
+
children: /*#__PURE__*/_jsx("span", {
|
|
56
|
+
className: underlinedClassNames.join(' '),
|
|
57
|
+
children: children
|
|
61
58
|
})
|
|
62
|
-
);
|
|
63
|
-
};
|
|
64
|
-
BpkButtonLink.propTypes = {
|
|
65
|
-
onClick: PropTypes.func.isRequired,
|
|
66
|
-
children: PropTypes.node.isRequired,
|
|
67
|
-
className: PropTypes.string,
|
|
68
|
-
alternate: PropTypes.bool,
|
|
69
|
-
implicit: PropTypes.bool
|
|
59
|
+
});
|
|
70
60
|
};
|
|
71
61
|
export { themeAttributes };
|
|
72
62
|
export default BpkButtonLink;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { ReactNode, MouseEvent, AnchorHTMLAttributes } from 'react';
|
|
2
|
+
import themeAttributes, { linkAlternateThemeAttributes } from './themeAttributes';
|
|
3
|
+
export interface Props extends Omit<AnchorHTMLAttributes<HTMLAnchorElement>, 'href' | 'className' | 'rel'> {
|
|
4
|
+
/** The content of the link. */
|
|
5
|
+
children: ReactNode;
|
|
6
|
+
href: string | null;
|
|
7
|
+
className?: string | null;
|
|
8
|
+
onClick?: (event: MouseEvent<HTMLAnchorElement>) => void;
|
|
9
|
+
blank?: boolean;
|
|
10
|
+
rel?: string | null;
|
|
11
|
+
alternate?: boolean;
|
|
12
|
+
implicit?: boolean;
|
|
13
|
+
}
|
|
14
|
+
declare const BpkLink: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<HTMLAnchorElement>>;
|
|
15
|
+
export default BpkLink;
|
|
16
|
+
export { themeAttributes, linkAlternateThemeAttributes };
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
15
|
* See the License for the specific language governing permissions and
|
|
16
16
|
* limitations under the License.
|
|
17
|
-
*/
|
|
17
|
+
*/
|
|
18
|
+
|
|
18
19
|
import { forwardRef } from 'react';
|
|
19
20
|
import { cssModules } from "../../bpk-react-utils";
|
|
20
21
|
import themeAttributes, { linkAlternateThemeAttributes } from "./themeAttributes";
|
|
@@ -28,13 +29,13 @@ const BpkLink = /*#__PURE__*/forwardRef(({
|
|
|
28
29
|
className = null,
|
|
29
30
|
href,
|
|
30
31
|
implicit = false,
|
|
31
|
-
onClick =
|
|
32
|
+
onClick = () => {},
|
|
32
33
|
rel: propRel = null,
|
|
33
34
|
...rest
|
|
34
35
|
}, ref) => {
|
|
35
36
|
const classNames = [getClassName('bpk-link')];
|
|
36
37
|
const underlinedClassNames = [getClassName('bpk-link-underlined')];
|
|
37
|
-
const target = blank ? '_blank' :
|
|
38
|
+
const target = blank ? '_blank' : undefined;
|
|
38
39
|
const rel = blank ? propRel || 'noopener noreferrer' : propRel;
|
|
39
40
|
if (className) {
|
|
40
41
|
classNames.push(className);
|
|
@@ -52,33 +53,19 @@ const BpkLink = /*#__PURE__*/forwardRef(({
|
|
|
52
53
|
} else if (implicit && alternate) {
|
|
53
54
|
underlinedClassNames.push(getClassName('bpk-link-underlined-implicit--alternate'));
|
|
54
55
|
}
|
|
55
|
-
return (
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
children: /*#__PURE__*/_jsx("span", {
|
|
67
|
-
className: underlinedClassNames.join(' '),
|
|
68
|
-
children: children
|
|
69
|
-
})
|
|
56
|
+
return /*#__PURE__*/_jsx("a", {
|
|
57
|
+
className: classNames.join(' '),
|
|
58
|
+
href: href ?? undefined,
|
|
59
|
+
onClick: onClick,
|
|
60
|
+
target: target,
|
|
61
|
+
rel: rel ?? undefined,
|
|
62
|
+
ref: ref,
|
|
63
|
+
...rest,
|
|
64
|
+
children: /*#__PURE__*/_jsx("span", {
|
|
65
|
+
className: underlinedClassNames.join(' '),
|
|
66
|
+
children: children
|
|
70
67
|
})
|
|
71
|
-
);
|
|
68
|
+
});
|
|
72
69
|
});
|
|
73
|
-
BpkLink.propTypes = {
|
|
74
|
-
children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]).isRequired,
|
|
75
|
-
href: PropTypes.string.isRequired,
|
|
76
|
-
className: PropTypes.string,
|
|
77
|
-
onClick: PropTypes.func,
|
|
78
|
-
blank: PropTypes.bool,
|
|
79
|
-
rel: PropTypes.string,
|
|
80
|
-
alternate: PropTypes.bool,
|
|
81
|
-
implicit: PropTypes.bool
|
|
82
|
-
};
|
|
83
70
|
export default BpkLink;
|
|
84
71
|
export { themeAttributes, linkAlternateThemeAttributes };
|
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
15
|
* See the License for the specific language governing permissions and
|
|
16
16
|
* limitations under the License.
|
|
17
|
-
*/
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
export default ['linkColor', 'linkHoverColor', 'linkActiveColor', 'linkVisitedColor'];
|
|
18
20
|
const linkAlternateThemeAttributes = ['linkAlternateColor', 'linkAlternateHoverColor', 'linkAlternateActiveColor', 'linkAlternateVisitedColor'];
|
|
19
21
|
export { linkAlternateThemeAttributes };
|
|
@@ -18,7 +18,6 @@
|
|
|
18
18
|
|
|
19
19
|
// @ts-expect-error Untyped import. See `decisions/imports-ts-suppressions.md`.
|
|
20
20
|
import BpkCloseButton from "../../bpk-component-close-button";
|
|
21
|
-
// @ts-expect-error Untyped import. See `decisions/imports-ts-suppressions.md`.
|
|
22
21
|
import { BpkButtonLink } from "../../bpk-component-link";
|
|
23
22
|
import BpkNavigationBar, { BAR_STYLES } from "../../bpk-component-navigation-bar";
|
|
24
23
|
import { TransitionInitialMount, cssModules } from "../../bpk-react-utils";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: string[];
|
|
2
2
|
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ComponentProps, MouseEvent, ReactNode } from 'react';
|
|
2
2
|
import { BpkButtonLink } from '../../bpk-component-link';
|
|
3
3
|
import { type BarStyle } from './BpkNavigationBar';
|
|
4
|
-
export interface Props extends ComponentProps<BpkButtonLink> {
|
|
4
|
+
export interface Props extends ComponentProps<typeof BpkButtonLink> {
|
|
5
5
|
children: ReactNode;
|
|
6
6
|
onClick: (event: MouseEvent<HTMLElement>) => void;
|
|
7
7
|
className?: string;
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
* limitations under the License.
|
|
17
17
|
*/
|
|
18
18
|
|
|
19
|
-
// @ts-expect-error Untyped import. See `decisions/imports-ts-suppressions.md`.
|
|
20
19
|
import { BpkButtonLink } from "../../bpk-component-link";
|
|
21
20
|
import { BAR_STYLES } from "./BpkNavigationBar";
|
|
22
21
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
@@ -22,7 +22,6 @@ import { surfaceHighlightDay } from '@skyscanner/bpk-foundations-web/tokens/base
|
|
|
22
22
|
|
|
23
23
|
// @ts-expect-error Untyped import. See `decisions/imports-ts-suppressions.md`.
|
|
24
24
|
import BpkCloseButton from "../../bpk-component-close-button";
|
|
25
|
-
// @ts-expect-error Untyped import. See `decisions/imports-ts-suppressions.md`.
|
|
26
25
|
import { BpkButtonLink } from "../../bpk-component-link";
|
|
27
26
|
import BpkText, { TEXT_STYLES } from "../../bpk-component-text";
|
|
28
27
|
import { TransitionInitialMount, cssModules } from "../../bpk-react-utils";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: string[];
|
|
2
2
|
export default _default;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
import type { MouseEvent } from 'react';
|
|
1
2
|
import { Component } from 'react';
|
|
2
3
|
type State = {
|
|
3
4
|
direction: string;
|
|
4
5
|
};
|
|
5
6
|
type Props = {};
|
|
6
|
-
type InteractionEvents = KeyboardEvent | MouseEvent | TouchEvent;
|
|
7
|
+
type InteractionEvents = KeyboardEvent | MouseEvent<HTMLButtonElement> | TouchEvent;
|
|
7
8
|
declare class BpkRtlToggle extends Component<Props, State> {
|
|
8
9
|
constructor(props: Props);
|
|
9
10
|
componentDidMount(): void;
|
|
@@ -17,8 +17,6 @@
|
|
|
17
17
|
*/
|
|
18
18
|
|
|
19
19
|
import { Component } from 'react';
|
|
20
|
-
|
|
21
|
-
// @ts-expect-error Untyped import. See `decisions/imports-ts-suppressions.md`.
|
|
22
20
|
import { BpkButtonLink } from "../../bpk-component-link";
|
|
23
21
|
import { getHtmlElement, DIRECTIONS, DIRECTION_CHANGE_EVENT } from "./utils";
|
|
24
22
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyscanner/backpack-web",
|
|
3
|
-
"version": "41.0
|
|
3
|
+
"version": "41.2.0",
|
|
4
4
|
"description": "Backpack Design System web library",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"@radix-ui/react-compose-refs": "^1.1.1",
|
|
28
28
|
"@radix-ui/react-slider": "1.3.5",
|
|
29
29
|
"@react-google-maps/api": "^2.19.3",
|
|
30
|
-
"@skyscanner/bpk-foundations-web": "^
|
|
31
|
-
"@skyscanner/bpk-svgs": "^20.
|
|
30
|
+
"@skyscanner/bpk-foundations-web": "^24.0.0",
|
|
31
|
+
"@skyscanner/bpk-svgs": "^20.11.0",
|
|
32
32
|
"a11y-focus-scope": "^1.1.3",
|
|
33
33
|
"a11y-focus-store": "^1.0.0",
|
|
34
34
|
"d3-path": "^3.1.0",
|