@telia/teddy 0.7.47 → 0.7.49
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/dist/components/checkbox-card-group/checkbox-card-group-indicator.cjs +4 -3
- package/dist/components/checkbox-card-group/checkbox-card-group-indicator.js +4 -3
- package/dist/components/shopping-cart/index.d.ts +2 -2
- package/dist/components/shopping-cart/shopping-cart-context.cjs +2 -1
- package/dist/components/shopping-cart/shopping-cart-context.d.ts +1 -0
- package/dist/components/shopping-cart/shopping-cart-context.js +2 -1
- package/dist/components/shopping-cart/shopping-cart-continue.cjs +1 -1
- package/dist/components/shopping-cart/shopping-cart-continue.js +1 -1
- package/dist/components/shopping-cart/shopping-cart-item.cjs +33 -33
- package/dist/components/shopping-cart/shopping-cart-item.js +33 -33
- package/dist/components/shopping-cart/shopping-cart-items.cjs +1 -1
- package/dist/components/shopping-cart/shopping-cart-items.js +1 -1
- package/dist/components/shopping-cart/shopping-cart-payment.cjs +93 -69
- package/dist/components/shopping-cart/shopping-cart-payment.d.ts +10 -1
- package/dist/components/shopping-cart/shopping-cart-payment.js +94 -70
- package/dist/components/shopping-cart/shopping-cart-root.cjs +3 -3
- package/dist/components/shopping-cart/shopping-cart-root.d.ts +1 -1
- package/dist/components/shopping-cart/shopping-cart-root.js +3 -3
- package/dist/shopping-cart.module-C9EOksct.cjs +62 -0
- package/dist/shopping-cart.module-ClaAAxQV.js +63 -0
- package/dist/style.css +114 -75
- package/package.json +1 -1
- package/dist/shopping-cart.module-BCoLrcMI.cjs +0 -48
- 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-
|
|
9
|
-
|
|
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(
|
|
42
|
-
/* @__PURE__ */ jsxs("
|
|
43
|
-
|
|
44
|
-
/* @__PURE__ */ jsxs("div", { className: styles.
|
|
45
|
-
/* @__PURE__ */
|
|
46
|
-
|
|
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__ */
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
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
|
-
|
|
60
|
-
|
|
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("
|
|
63
|
-
|
|
64
|
-
{
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
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
|
-
|
|
81
|
-
|
|
82
|
-
|
|
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__ */
|
|
86
|
-
|
|
87
|
-
{
|
|
88
|
-
|
|
89
|
-
|
|
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
|
-
|
|
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,9 +4,9 @@ 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-
|
|
8
|
-
const Root = ({ heading, children, formatPrice, hasPaid, isAllowedToDelete, className }) => {
|
|
9
|
-
return /* @__PURE__ */ jsxRuntime.jsx(components_shoppingCart_shoppingCartContext.ShoppingCartProvider, { value: { formatPrice, hasPaid, isAllowedToDelete }, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: clsx.clsx(shoppingCart_module.styles.shoppingCart, className), children: [
|
|
7
|
+
const shoppingCart_module = require("../../shopping-cart.module-C9EOksct.cjs");
|
|
8
|
+
const Root = ({ heading, children, formatPrice, hasPaid, isAllowedToDelete, readonly, className }) => {
|
|
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 }) }),
|
|
11
11
|
children
|
|
12
12
|
] }) });
|
|
@@ -6,6 +6,6 @@ export interface RootProps extends ShoppingCartContextValue {
|
|
|
6
6
|
className?: string;
|
|
7
7
|
}
|
|
8
8
|
export declare const Root: {
|
|
9
|
-
({ heading, children, formatPrice, hasPaid, isAllowedToDelete, className }: RootProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
({ heading, children, formatPrice, hasPaid, isAllowedToDelete, readonly, className }: RootProps): import("react/jsx-runtime").JSX.Element;
|
|
10
10
|
displayName: string;
|
|
11
11
|
};
|
|
@@ -2,9 +2,9 @@ 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-
|
|
6
|
-
const Root = ({ heading, children, formatPrice, hasPaid, isAllowedToDelete, className }) => {
|
|
7
|
-
return /* @__PURE__ */ jsx(ShoppingCartProvider, { value: { formatPrice, hasPaid, isAllowedToDelete }, children: /* @__PURE__ */ jsxs("div", { className: clsx(styles.shoppingCart, className), children: [
|
|
5
|
+
import { s as styles } from "../../shopping-cart.module-ClaAAxQV.js";
|
|
6
|
+
const Root = ({ heading, children, formatPrice, hasPaid, isAllowedToDelete, readonly, className }) => {
|
|
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 }) }),
|
|
9
9
|
children
|
|
10
10
|
] }) });
|
|
@@ -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
|
+
};
|