@telia/teddy 0.7.48 → 0.7.50

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.
Files changed (33) hide show
  1. package/dist/components/checkbox-card-group/checkbox-card-group-indicator.cjs +1 -1
  2. package/dist/components/checkbox-card-group/checkbox-card-group-indicator.js +1 -1
  3. package/dist/components/modal/modal-close.cjs +1 -1
  4. package/dist/components/modal/modal-close.js +1 -1
  5. package/dist/components/modal/modal-content.cjs +6 -7
  6. package/dist/components/modal/modal-content.d.ts +7 -2
  7. package/dist/components/modal/modal-content.js +6 -7
  8. package/dist/components/modal/modal-group.cjs +1 -1
  9. package/dist/components/modal/modal-group.js +1 -1
  10. package/dist/components/modal/modal-image.cjs +1 -1
  11. package/dist/components/modal/modal-image.js +1 -1
  12. package/dist/components/modal/modal-overlay.cjs +1 -1
  13. package/dist/components/modal/modal-overlay.js +1 -1
  14. package/dist/components/shopping-cart/index.d.ts +1 -1
  15. package/dist/components/shopping-cart/shopping-cart-continue.cjs +1 -1
  16. package/dist/components/shopping-cart/shopping-cart-continue.js +1 -1
  17. package/dist/components/shopping-cart/shopping-cart-items.cjs +1 -1
  18. package/dist/components/shopping-cart/shopping-cart-items.js +1 -1
  19. package/dist/components/shopping-cart/shopping-cart-payment.cjs +93 -69
  20. package/dist/components/shopping-cart/shopping-cart-payment.d.ts +10 -1
  21. package/dist/components/shopping-cart/shopping-cart-payment.js +94 -70
  22. package/dist/components/shopping-cart/shopping-cart-root.cjs +1 -1
  23. package/dist/components/shopping-cart/shopping-cart-root.js +1 -1
  24. package/dist/modal.module-1dzCSzkb.js +23 -0
  25. package/dist/modal.module-DC_f9KzI.cjs +22 -0
  26. package/dist/shopping-cart.module-C9EOksct.cjs +62 -0
  27. package/dist/shopping-cart.module-ClaAAxQV.js +63 -0
  28. package/dist/style.css +116 -63
  29. package/package.json +1 -1
  30. package/dist/modal.module-BfeNqXoN.cjs +0 -19
  31. package/dist/modal.module-DuP4in7f.js +0 -20
  32. package/dist/shopping-cart.module-BCoLrcMI.cjs +0 -48
  33. package/dist/shopping-cart.module-DA25l2hr.js +0 -49
@@ -1,12 +1,27 @@
1
- import { jsxs, jsx } from "react/jsx-runtime";
1
+ import { jsxs, Fragment, jsx } from "react/jsx-runtime";
2
2
  import { clsx } from "clsx";
3
3
  import "../../assets/sprite.44b293a1-teddy.svg";
4
4
  import { Icon } from "../icon/icon.js";
5
5
  import { Tooltip } from "../tooltip/index.js";
6
6
  import { ProgressBar } from "../progress-bar/progress-bar.js";
7
7
  import { useShoppingCart } from "./shopping-cart-context.js";
8
- import { s as styles } from "../../shopping-cart.module-DA25l2hr.js";
9
- const MonthlyPriceDetailsDisplay = ({ monthlyPriceDetails, totalPriceMonthly }) => {
8
+ import { s as styles } from "../../shopping-cart.module-ClaAAxQV.js";
9
+ import { Box } from "../box/box.js";
10
+ const HighlightedLine = ({ icon, heading, price, description }) => /* @__PURE__ */ jsxs("div", { className: styles.highlightedLine, children: [
11
+ /* @__PURE__ */ jsxs("div", { className: styles.highlightedLineTop, children: [
12
+ /* @__PURE__ */ jsxs("div", { className: styles.highlightedLineLeft, children: [
13
+ icon && /* @__PURE__ */ jsx(Icon, { name: icon, className: styles.highlightedLineIcon }),
14
+ /* @__PURE__ */ jsx("span", { className: styles.highlightedLineHeading, children: heading })
15
+ ] }),
16
+ /* @__PURE__ */ jsx("span", { className: styles.highlightedLinePrice, children: price })
17
+ ] }),
18
+ description && /* @__PURE__ */ jsx("p", { className: styles.highlightedLineDescription, children: description })
19
+ ] });
20
+ const MonthlyPriceDetailsDisplay = ({
21
+ monthlyPriceDetails,
22
+ totalPriceMonthly,
23
+ highlightedLine
24
+ }) => {
10
25
  const { formatPrice } = useShoppingCart();
11
26
  if (!monthlyPriceDetails || monthlyPriceDetails.length === 0) {
12
27
  return null;
@@ -22,6 +37,10 @@ const MonthlyPriceDetailsDisplay = ({ monthlyPriceDetails, totalPriceMonthly })
22
37
  formatPrice(totalPriceMonthly || 0),
23
38
  "/md."
24
39
  ] })
40
+ ] }),
41
+ (highlightedLine == null ? void 0 : highlightedLine.isMonthly) && /* @__PURE__ */ jsxs(Fragment, { children: [
42
+ /* @__PURE__ */ jsx("hr", { className: styles.horizontalRule }),
43
+ /* @__PURE__ */ jsx(HighlightedLine, { ...highlightedLine })
25
44
  ] })
26
45
  ] });
27
46
  };
@@ -34,85 +53,90 @@ const Payment = ({
34
53
  monthlyPriceDetails,
35
54
  totalVAT,
36
55
  totalPriceWithoutVAT,
56
+ highlightedLine,
37
57
  className
38
58
  }) => {
39
59
  const { formatPrice, hasPaid } = useShoppingCart();
40
60
  const hasDelivery = delivery && Object.keys(delivery).length > 0;
41
- return /* @__PURE__ */ jsxs("section", { className: clsx(styles.section, className), children: [
42
- /* @__PURE__ */ jsxs("div", { className: styles.sectionInner, children: [
43
- hasDelivery && /* @__PURE__ */ jsxs("div", { className: styles.deliveryContainer, children: [
44
- /* @__PURE__ */ jsxs("div", { className: styles.deliveryLeft, children: [
45
- /* @__PURE__ */ jsx(Icon, { name: delivery.icon || "delivery", className: styles.deliveryIcon }),
46
- delivery.label || "Levering"
61
+ return /* @__PURE__ */ jsxs(Fragment, { children: [
62
+ /* @__PURE__ */ jsxs("section", { className: clsx(styles.section, className), children: [
63
+ /* @__PURE__ */ jsxs("div", { className: styles.sectionInner, children: [
64
+ hasDelivery && /* @__PURE__ */ jsxs("div", { className: styles.deliveryContainer, children: [
65
+ /* @__PURE__ */ jsxs("div", { className: styles.deliveryLeft, children: [
66
+ /* @__PURE__ */ jsx(Icon, { name: delivery.icon || "delivery", className: styles.deliveryIcon }),
67
+ delivery.label || "Levering"
68
+ ] }),
69
+ /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: delivery.value })
47
70
  ] }),
48
- /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: delivery.value })
49
- ] }),
50
- hasDelivery && delivery.progressBar && /* @__PURE__ */ jsxs("div", { className: styles.deliveryProgressbar, children: [
51
- delivery.progressBar.text || /* @__PURE__ */ jsxs("div", { className: styles.deliveryProgressbarText, children: [
52
- "Du har",
53
- " ",
54
- /* @__PURE__ */ jsxs("span", { className: styles.labelMedium, children: [
55
- Math.ceil(delivery.progressBar.max - delivery.progressBar.progress),
56
- ",-"
71
+ hasDelivery && delivery.progressBar && /* @__PURE__ */ jsxs("div", { className: styles.deliveryProgressbar, children: [
72
+ delivery.progressBar.text || /* @__PURE__ */ jsxs("div", { className: styles.deliveryProgressbarText, children: [
73
+ "Du har",
74
+ " ",
75
+ /* @__PURE__ */ jsxs("span", { className: styles.labelMedium, children: [
76
+ Math.ceil(delivery.progressBar.max - delivery.progressBar.progress),
77
+ ",-"
78
+ ] }),
79
+ " ",
80
+ "igjen til ",
81
+ /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: "fri frakt" })
57
82
  ] }),
58
- " ",
59
- "igjen til ",
60
- /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: "fri frakt" })
83
+ /* @__PURE__ */ jsx("div", { className: styles.progressBarWrapper, children: /* @__PURE__ */ jsx(
84
+ ProgressBar,
85
+ {
86
+ colorTheme: "light",
87
+ progress: delivery.progressBar.max > delivery.progressBar.min ? (delivery.progressBar.progress - delivery.progressBar.min) / (delivery.progressBar.max - delivery.progressBar.min) * 100 : 0
88
+ }
89
+ ) })
61
90
  ] }),
62
- /* @__PURE__ */ jsx("div", { className: styles.progressBarWrapper, children: /* @__PURE__ */ jsx(
63
- ProgressBar,
64
- {
65
- colorTheme: "light",
66
- progress: delivery.progressBar.max > delivery.progressBar.min ? (delivery.progressBar.progress - delivery.progressBar.min) / (delivery.progressBar.max - delivery.progressBar.min) * 100 : 0
67
- }
68
- ) })
69
- ] }),
70
- hasDelivery && !!totalPriceMonthly && /* @__PURE__ */ jsx("hr", { className: styles.horizontalRule }),
71
- !!totalPriceMonthly && /* @__PURE__ */ jsxs("div", { className: styles.priceMonthlyContainer, children: [
72
- /* @__PURE__ */ jsxs("div", { className: styles.priceRow, children: [
73
- /* @__PURE__ */ jsxs("div", { className: styles.flexRow, children: [
74
- /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: "Betale pr md:" }),
75
- paymentTooltip && /* @__PURE__ */ jsxs(Tooltip, { children: [
76
- /* @__PURE__ */ jsx(Tooltip.Trigger, { className: styles.tooltipTrigger }),
77
- /* @__PURE__ */ jsx(Tooltip.Content, { className: styles.tooltipContent, children: /* @__PURE__ */ jsx("div", { dangerouslySetInnerHTML: { __html: paymentTooltip } }) })
91
+ hasDelivery && !!totalPriceMonthly && /* @__PURE__ */ jsx("hr", { className: styles.horizontalRule }),
92
+ !!totalPriceMonthly && /* @__PURE__ */ jsxs("div", { className: styles.priceMonthlyContainer, children: [
93
+ /* @__PURE__ */ jsxs("div", { className: styles.priceRow, children: [
94
+ /* @__PURE__ */ jsxs("div", { className: styles.flexRow, children: [
95
+ /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: "Betale pr md:" }),
96
+ paymentTooltip && /* @__PURE__ */ jsxs(Tooltip, { children: [
97
+ /* @__PURE__ */ jsx(Tooltip.Trigger, { className: styles.tooltipTrigger }),
98
+ /* @__PURE__ */ jsx(Tooltip.Content, { className: styles.tooltipContent, children: /* @__PURE__ */ jsx("div", { dangerouslySetInnerHTML: { __html: paymentTooltip } }) })
99
+ ] })
100
+ ] }),
101
+ (!monthlyPriceDetails || monthlyPriceDetails.length === 0) && /* @__PURE__ */ jsxs("span", { className: styles.labelMedium, children: [
102
+ formatPrice(totalPriceMonthly),
103
+ "/md."
78
104
  ] })
79
105
  ] }),
80
- (!monthlyPriceDetails || monthlyPriceDetails.length === 0) && /* @__PURE__ */ jsxs("span", { className: styles.labelMedium, children: [
81
- formatPrice(totalPriceMonthly),
82
- "/md."
83
- ] })
106
+ /* @__PURE__ */ jsx(
107
+ MonthlyPriceDetailsDisplay,
108
+ {
109
+ monthlyPriceDetails,
110
+ totalPriceMonthly,
111
+ highlightedLine
112
+ }
113
+ )
114
+ ] })
115
+ ] }),
116
+ (!!totalPriceUpfront || !!totalPriceFirstInvoice) && /* @__PURE__ */ jsxs("div", { className: styles.priceUpfrontContainer, children: [
117
+ !!totalPriceWithoutVAT && /* @__PURE__ */ jsxs("div", { className: styles.priceRow, children: [
118
+ /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: "Sum:" }),
119
+ /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: formatPrice(totalPriceWithoutVAT) })
84
120
  ] }),
85
- /* @__PURE__ */ jsx(
86
- MonthlyPriceDetailsDisplay,
87
- {
88
- monthlyPriceDetails,
89
- totalPriceMonthly
90
- }
91
- )
121
+ !!totalVAT && /* @__PURE__ */ jsxs("div", { className: styles.priceRow, children: [
122
+ /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: "MVA:" }),
123
+ /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: formatPrice(totalVAT) })
124
+ ] }),
125
+ !!totalPriceUpfront && !hasPaid && /* @__PURE__ */ jsxs("div", { className: styles.priceRow, children: [
126
+ /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: "Betale nå:" }),
127
+ /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: formatPrice(totalPriceUpfront) })
128
+ ] }),
129
+ !!totalPriceUpfront && hasPaid && /* @__PURE__ */ jsxs("div", { className: styles.priceRow, children: [
130
+ /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: "Betalt:" }),
131
+ /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: formatPrice(totalPriceUpfront) })
132
+ ] }),
133
+ !!totalPriceFirstInvoice && /* @__PURE__ */ jsxs("div", { className: styles.priceRow, children: [
134
+ /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: "Å betale på første faktura:" }),
135
+ /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: formatPrice(totalPriceFirstInvoice) })
136
+ ] })
92
137
  ] })
93
138
  ] }),
94
- (!!totalPriceUpfront || !!totalPriceFirstInvoice) && /* @__PURE__ */ jsxs("div", { className: styles.priceUpfrontContainer, children: [
95
- !!totalPriceWithoutVAT && /* @__PURE__ */ jsxs("div", { className: styles.priceRow, children: [
96
- /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: "Sum:" }),
97
- /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: formatPrice(totalPriceWithoutVAT) })
98
- ] }),
99
- !!totalVAT && /* @__PURE__ */ jsxs("div", { className: styles.priceRow, children: [
100
- /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: "MVA:" }),
101
- /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: formatPrice(totalVAT) })
102
- ] }),
103
- !!totalPriceUpfront && !hasPaid && /* @__PURE__ */ jsxs("div", { className: styles.priceRow, children: [
104
- /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: "Betale nå:" }),
105
- /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: formatPrice(totalPriceUpfront) })
106
- ] }),
107
- !!totalPriceUpfront && hasPaid && /* @__PURE__ */ jsxs("div", { className: styles.priceRow, children: [
108
- /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: "Betalt:" }),
109
- /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: formatPrice(totalPriceUpfront) })
110
- ] }),
111
- !!totalPriceFirstInvoice && /* @__PURE__ */ jsxs("div", { className: styles.priceRow, children: [
112
- /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: "Å betale på første faktura:" }),
113
- /* @__PURE__ */ jsx("span", { className: styles.labelMedium, children: formatPrice(totalPriceFirstInvoice) })
114
- ] })
115
- ] })
139
+ highlightedLine && !highlightedLine.isMonthly && /* @__PURE__ */ jsx(Box, { p: "200", children: /* @__PURE__ */ jsx(HighlightedLine, { ...highlightedLine }) })
116
140
  ] });
117
141
  };
118
142
  Payment.displayName = "Payment";
@@ -4,7 +4,7 @@ const jsxRuntime = require("react/jsx-runtime");
4
4
  const clsx = require("clsx");
5
5
  const components_heading_heading = require("../heading/heading.cjs");
6
6
  const components_shoppingCart_shoppingCartContext = require("./shopping-cart-context.cjs");
7
- const shoppingCart_module = require("../../shopping-cart.module-BCoLrcMI.cjs");
7
+ const shoppingCart_module = require("../../shopping-cart.module-C9EOksct.cjs");
8
8
  const Root = ({ heading, children, formatPrice, hasPaid, isAllowedToDelete, readonly, className }) => {
9
9
  return /* @__PURE__ */ jsxRuntime.jsx(components_shoppingCart_shoppingCartContext.ShoppingCartProvider, { value: { formatPrice, hasPaid, isAllowedToDelete, readonly }, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx.clsx(shoppingCart_module.styles.shoppingCart, className), children: [
10
10
  heading && /* @__PURE__ */ jsxRuntime.jsx("div", { className: shoppingCart_module.styles.sectionInner, children: /* @__PURE__ */ jsxRuntime.jsx(components_heading_heading.Heading, { className: shoppingCart_module.styles.heading, as: "h2", variant: "title-100", children: heading }) }),
@@ -2,7 +2,7 @@ import { jsx, jsxs } from "react/jsx-runtime";
2
2
  import { clsx } from "clsx";
3
3
  import { Heading } from "../heading/heading.js";
4
4
  import { ShoppingCartProvider } from "./shopping-cart-context.js";
5
- import { s as styles } from "../../shopping-cart.module-DA25l2hr.js";
5
+ import { s as styles } from "../../shopping-cart.module-ClaAAxQV.js";
6
6
  const Root = ({ heading, children, formatPrice, hasPaid, isAllowedToDelete, readonly, className }) => {
7
7
  return /* @__PURE__ */ jsx(ShoppingCartProvider, { value: { formatPrice, hasPaid, isAllowedToDelete, readonly }, children: /* @__PURE__ */ jsxs("div", { className: clsx(styles.shoppingCart, className), children: [
8
8
  heading && /* @__PURE__ */ jsx("div", { className: styles.sectionInner, children: /* @__PURE__ */ jsx(Heading, { className: styles.heading, as: "h2", variant: "title-100", children: heading }) }),
@@ -0,0 +1,23 @@
1
+ const styles = {
2
+ "teddy-modal__overlay": "_teddy-modal__overlay_mucyt_25",
3
+ "teddy-modal__content": "_teddy-modal__content_mucyt_37",
4
+ "teddy-modal__content--sm": "_teddy-modal__content--sm_mucyt_56",
5
+ "teddy-modal__content--md": "_teddy-modal__content--md_mucyt_61",
6
+ "teddy-modal__content--lg": "_teddy-modal__content--lg_mucyt_66",
7
+ "teddy-modal__scroll": "_teddy-modal__scroll_mucyt_70",
8
+ "teddy-modal__image": "_teddy-modal__image_mucyt_74",
9
+ "teddy-modal__close--floating": "_teddy-modal__close--floating_mucyt_84",
10
+ "teddy-modal__group": "_teddy-modal__group_mucyt_94",
11
+ "teddy-modal__group--title": "_teddy-modal__group--title_mucyt_98",
12
+ "teddy-modal__group--scroll": "_teddy-modal__group--scroll_mucyt_109",
13
+ "teddy-modal__group--action": "_teddy-modal__group--action_mucyt_118",
14
+ "modal-overlay-no-op": "_modal-overlay-no-op_mucyt_1",
15
+ "teddy-fade-in": "_teddy-fade-in_mucyt_1",
16
+ "teddy-fade-out": "_teddy-fade-out_mucyt_1",
17
+ "modal-content-show": "_modal-content-show_mucyt_1",
18
+ "modal-content-hide": "_modal-content-hide_mucyt_1",
19
+ "teddy-overlay-no-op": "_teddy-overlay-no-op_mucyt_1"
20
+ };
21
+ export {
22
+ styles as s
23
+ };
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ const styles = {
3
+ "teddy-modal__overlay": "_teddy-modal__overlay_mucyt_25",
4
+ "teddy-modal__content": "_teddy-modal__content_mucyt_37",
5
+ "teddy-modal__content--sm": "_teddy-modal__content--sm_mucyt_56",
6
+ "teddy-modal__content--md": "_teddy-modal__content--md_mucyt_61",
7
+ "teddy-modal__content--lg": "_teddy-modal__content--lg_mucyt_66",
8
+ "teddy-modal__scroll": "_teddy-modal__scroll_mucyt_70",
9
+ "teddy-modal__image": "_teddy-modal__image_mucyt_74",
10
+ "teddy-modal__close--floating": "_teddy-modal__close--floating_mucyt_84",
11
+ "teddy-modal__group": "_teddy-modal__group_mucyt_94",
12
+ "teddy-modal__group--title": "_teddy-modal__group--title_mucyt_98",
13
+ "teddy-modal__group--scroll": "_teddy-modal__group--scroll_mucyt_109",
14
+ "teddy-modal__group--action": "_teddy-modal__group--action_mucyt_118",
15
+ "modal-overlay-no-op": "_modal-overlay-no-op_mucyt_1",
16
+ "teddy-fade-in": "_teddy-fade-in_mucyt_1",
17
+ "teddy-fade-out": "_teddy-fade-out_mucyt_1",
18
+ "modal-content-show": "_modal-content-show_mucyt_1",
19
+ "modal-content-hide": "_modal-content-hide_mucyt_1",
20
+ "teddy-overlay-no-op": "_teddy-overlay-no-op_mucyt_1"
21
+ };
22
+ exports.styles = styles;
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ const shoppingCart = "_shoppingCart_ct6d7_1";
3
+ const section = "_section_ct6d7_8";
4
+ const sectionBody = "_sectionBody_ct6d7_14";
5
+ const sectionInner = "_sectionInner_ct6d7_22";
6
+ const horizontalRule = "_horizontalRule_ct6d7_26";
7
+ const heading = "_heading_ct6d7_43";
8
+ const continueContainer = "_continueContainer_ct6d7_47";
9
+ const deliveryContainer = "_deliveryContainer_ct6d7_63";
10
+ const deliveryProgressbar = "_deliveryProgressbar_ct6d7_69";
11
+ const deliveryProgressbarText = "_deliveryProgressbarText_ct6d7_77";
12
+ const deliveryLeft = "_deliveryLeft_ct6d7_81";
13
+ const labelMedium = "_labelMedium_ct6d7_87";
14
+ const deliveryIcon = "_deliveryIcon_ct6d7_93";
15
+ const priceUpfrontContainer = "_priceUpfrontContainer_ct6d7_99";
16
+ const priceMonthlyDetailsTotal = "_priceMonthlyDetailsTotal_ct6d7_107";
17
+ const priceRow = "_priceRow_ct6d7_111";
18
+ const tooltipContent = "_tooltipContent_ct6d7_133";
19
+ const priceMonthlyContainer = "_priceMonthlyContainer_ct6d7_142";
20
+ const priceMonthlyDetails = "_priceMonthlyDetails_ct6d7_107";
21
+ const flexRow = "_flexRow_ct6d7_150";
22
+ const tooltipTrigger = "_tooltipTrigger_ct6d7_155";
23
+ const progressBarWrapper = "_progressBarWrapper_ct6d7_163";
24
+ const highlightedLine = "_highlightedLine_ct6d7_167";
25
+ const highlightedLineTop = "_highlightedLineTop_ct6d7_171";
26
+ const highlightedLineLeft = "_highlightedLineLeft_ct6d7_178";
27
+ const highlightedLineIcon = "_highlightedLineIcon_ct6d7_184";
28
+ const highlightedLineHeading = "_highlightedLineHeading_ct6d7_190";
29
+ const highlightedLinePrice = "_highlightedLinePrice_ct6d7_195";
30
+ const highlightedLineDescription = "_highlightedLineDescription_ct6d7_201";
31
+ const styles = {
32
+ shoppingCart,
33
+ section,
34
+ sectionBody,
35
+ sectionInner,
36
+ horizontalRule,
37
+ heading,
38
+ continueContainer,
39
+ deliveryContainer,
40
+ deliveryProgressbar,
41
+ deliveryProgressbarText,
42
+ deliveryLeft,
43
+ labelMedium,
44
+ deliveryIcon,
45
+ priceUpfrontContainer,
46
+ priceMonthlyDetailsTotal,
47
+ priceRow,
48
+ tooltipContent,
49
+ priceMonthlyContainer,
50
+ priceMonthlyDetails,
51
+ flexRow,
52
+ tooltipTrigger,
53
+ progressBarWrapper,
54
+ highlightedLine,
55
+ highlightedLineTop,
56
+ highlightedLineLeft,
57
+ highlightedLineIcon,
58
+ highlightedLineHeading,
59
+ highlightedLinePrice,
60
+ highlightedLineDescription
61
+ };
62
+ exports.styles = styles;
@@ -0,0 +1,63 @@
1
+ const shoppingCart = "_shoppingCart_ct6d7_1";
2
+ const section = "_section_ct6d7_8";
3
+ const sectionBody = "_sectionBody_ct6d7_14";
4
+ const sectionInner = "_sectionInner_ct6d7_22";
5
+ const horizontalRule = "_horizontalRule_ct6d7_26";
6
+ const heading = "_heading_ct6d7_43";
7
+ const continueContainer = "_continueContainer_ct6d7_47";
8
+ const deliveryContainer = "_deliveryContainer_ct6d7_63";
9
+ const deliveryProgressbar = "_deliveryProgressbar_ct6d7_69";
10
+ const deliveryProgressbarText = "_deliveryProgressbarText_ct6d7_77";
11
+ const deliveryLeft = "_deliveryLeft_ct6d7_81";
12
+ const labelMedium = "_labelMedium_ct6d7_87";
13
+ const deliveryIcon = "_deliveryIcon_ct6d7_93";
14
+ const priceUpfrontContainer = "_priceUpfrontContainer_ct6d7_99";
15
+ const priceMonthlyDetailsTotal = "_priceMonthlyDetailsTotal_ct6d7_107";
16
+ const priceRow = "_priceRow_ct6d7_111";
17
+ const tooltipContent = "_tooltipContent_ct6d7_133";
18
+ const priceMonthlyContainer = "_priceMonthlyContainer_ct6d7_142";
19
+ const priceMonthlyDetails = "_priceMonthlyDetails_ct6d7_107";
20
+ const flexRow = "_flexRow_ct6d7_150";
21
+ const tooltipTrigger = "_tooltipTrigger_ct6d7_155";
22
+ const progressBarWrapper = "_progressBarWrapper_ct6d7_163";
23
+ const highlightedLine = "_highlightedLine_ct6d7_167";
24
+ const highlightedLineTop = "_highlightedLineTop_ct6d7_171";
25
+ const highlightedLineLeft = "_highlightedLineLeft_ct6d7_178";
26
+ const highlightedLineIcon = "_highlightedLineIcon_ct6d7_184";
27
+ const highlightedLineHeading = "_highlightedLineHeading_ct6d7_190";
28
+ const highlightedLinePrice = "_highlightedLinePrice_ct6d7_195";
29
+ const highlightedLineDescription = "_highlightedLineDescription_ct6d7_201";
30
+ const styles = {
31
+ shoppingCart,
32
+ section,
33
+ sectionBody,
34
+ sectionInner,
35
+ horizontalRule,
36
+ heading,
37
+ continueContainer,
38
+ deliveryContainer,
39
+ deliveryProgressbar,
40
+ deliveryProgressbarText,
41
+ deliveryLeft,
42
+ labelMedium,
43
+ deliveryIcon,
44
+ priceUpfrontContainer,
45
+ priceMonthlyDetailsTotal,
46
+ priceRow,
47
+ tooltipContent,
48
+ priceMonthlyContainer,
49
+ priceMonthlyDetails,
50
+ flexRow,
51
+ tooltipTrigger,
52
+ progressBarWrapper,
53
+ highlightedLine,
54
+ highlightedLineTop,
55
+ highlightedLineLeft,
56
+ highlightedLineIcon,
57
+ highlightedLineHeading,
58
+ highlightedLinePrice,
59
+ highlightedLineDescription
60
+ };
61
+ export {
62
+ styles as s
63
+ };