@citygross/components 0.8.36 → 0.8.37
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/build/@types/components/PriceTag/PriceTag.d.ts +4 -0
- package/build/@types/components/PriceTag/PriceTag.styles.d.ts +5 -5
- package/build/cjs/components/src/components/PriceTag/PriceTag.js +32 -3
- package/build/cjs/components/src/components/PriceTag/PriceTag.js.map +1 -1
- package/build/cjs/components/src/components/PriceTag/PriceTag.styles.js +17 -44
- package/build/cjs/components/src/components/PriceTag/PriceTag.styles.js.map +1 -1
- package/build/es/components/src/components/PriceTag/PriceTag.js +33 -4
- package/build/es/components/src/components/PriceTag/PriceTag.js.map +1 -1
- package/build/es/components/src/components/PriceTag/PriceTag.styles.js +16 -44
- package/build/es/components/src/components/PriceTag/PriceTag.styles.js.map +1 -1
- package/package.json +3 -3
- package/build/cjs/components/src/assets/pricesplash-klipp.svg.js +0 -6
- package/build/cjs/components/src/assets/pricesplash-klipp.svg.js.map +0 -1
- package/build/cjs/components/src/assets/pricesplash-prio.svg.js +0 -6
- package/build/cjs/components/src/assets/pricesplash-prio.svg.js.map +0 -1
- package/build/cjs/components/src/assets/pricesplash.svg.js +0 -6
- package/build/cjs/components/src/assets/pricesplash.svg.js.map +0 -1
- package/build/es/components/src/assets/pricesplash-klipp.svg.js +0 -4
- package/build/es/components/src/assets/pricesplash-klipp.svg.js.map +0 -1
- package/build/es/components/src/assets/pricesplash-prio.svg.js +0 -4
- package/build/es/components/src/assets/pricesplash-prio.svg.js.map +0 -1
- package/build/es/components/src/assets/pricesplash.svg.js +0 -4
- package/build/es/components/src/assets/pricesplash.svg.js.map +0 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { TPriceTag } from './PriceTag';
|
|
1
|
+
import { TPriceTag, TSplash } from './PriceTag';
|
|
2
2
|
declare type TPant = Pick<TPriceTag, 'pant'>;
|
|
3
|
-
declare
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
3
|
+
export declare const PriceTagWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, TSplash, never>;
|
|
4
|
+
export declare const PriceSplashContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
5
|
+
export declare const PriceTagContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
6
6
|
export declare const PriceTagContent: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
7
7
|
export declare const MultiPriceContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, TPant, never>;
|
|
8
8
|
export declare const PriceTag: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
@@ -13,5 +13,5 @@ export declare const PriceUnit: import("styled-components").StyledComponent<"spa
|
|
|
13
13
|
export declare const PriceIndicatorContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
14
14
|
export declare const PriceIndicator: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, TPant, never>;
|
|
15
15
|
export declare const Pant: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>;
|
|
16
|
-
export declare const PriceVariantBadge: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme,
|
|
16
|
+
export declare const PriceVariantBadge: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, TSplash, never>;
|
|
17
17
|
export {};
|
|
@@ -4,6 +4,8 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var React = require('react');
|
|
6
6
|
var PriceTag_styles = require('./PriceTag.styles.js');
|
|
7
|
+
var icons = require('@citygross/icons');
|
|
8
|
+
var designTokens = require('@citygross/design-tokens');
|
|
7
9
|
|
|
8
10
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
9
11
|
|
|
@@ -15,8 +17,33 @@ exports.EPriceVariant = void 0;
|
|
|
15
17
|
EPriceVariant["PRIO"] = "prio";
|
|
16
18
|
EPriceVariant["REGULAR_OFFER"] = "regular-offer";
|
|
17
19
|
})(exports.EPriceVariant || (exports.EPriceVariant = {}));
|
|
20
|
+
var getSplash = function (priceVariant) {
|
|
21
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
22
|
+
switch (priceVariant) {
|
|
23
|
+
case exports.EPriceVariant.KLIPP:
|
|
24
|
+
return {
|
|
25
|
+
backgroundColor: (_a = designTokens.theme.palette) === null || _a === void 0 ? void 0 : _a.alertRed,
|
|
26
|
+
fontColor: (_b = designTokens.theme.palette) === null || _b === void 0 ? void 0 : _b.white
|
|
27
|
+
};
|
|
28
|
+
case exports.EPriceVariant.PRIO:
|
|
29
|
+
return {
|
|
30
|
+
backgroundColor: (_c = designTokens.theme.palette) === null || _c === void 0 ? void 0 : _c.brandPrio,
|
|
31
|
+
fontColor: (_d = designTokens.theme.palette) === null || _d === void 0 ? void 0 : _d.white
|
|
32
|
+
};
|
|
33
|
+
case exports.EPriceVariant.REGULAR_OFFER:
|
|
34
|
+
return {
|
|
35
|
+
backgroundColor: (_e = designTokens.theme.palette) === null || _e === void 0 ? void 0 : _e.brandYellow,
|
|
36
|
+
fontColor: (_f = designTokens.theme.palette) === null || _f === void 0 ? void 0 : _f.alertRed
|
|
37
|
+
};
|
|
38
|
+
default:
|
|
39
|
+
return {
|
|
40
|
+
fontColor: (_g = designTokens.theme.palette) === null || _g === void 0 ? void 0 : _g.darkest
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
};
|
|
18
44
|
var PriceTag = function (_a) {
|
|
19
45
|
var _b = _a.multiPrice, multiPrice = _b === void 0 ? 0 : _b, _c = _a.pant, pant = _c === void 0 ? false : _c, price = _a.price, priceVariant = _a.priceVariant, unit = _a.unit;
|
|
46
|
+
var splash = getSplash(priceVariant);
|
|
20
47
|
var priceBase = Math.floor(price);
|
|
21
48
|
var priceDecimals = (price % 1).toFixed(2).split('.')[1];
|
|
22
49
|
var isMultiPrice = multiPrice > 1;
|
|
@@ -29,8 +56,10 @@ var PriceTag = function (_a) {
|
|
|
29
56
|
: priceVariant === exports.EPriceVariant.PRIO
|
|
30
57
|
? 'PRIO'
|
|
31
58
|
: null;
|
|
32
|
-
return (React__default["default"].createElement(PriceTag_styles.
|
|
33
|
-
React__default["default"].createElement(PriceTag_styles.
|
|
59
|
+
return (React__default["default"].createElement(PriceTag_styles.PriceTagWrapper, { fontColor: splash.fontColor },
|
|
60
|
+
splash.backgroundColor && (React__default["default"].createElement(PriceTag_styles.PriceSplashContainer, null,
|
|
61
|
+
React__default["default"].createElement(icons.Icons.PriceSplash, { backgroundColor: splash.backgroundColor }))),
|
|
62
|
+
React__default["default"].createElement(PriceTag_styles.PriceTagContainer, null,
|
|
34
63
|
React__default["default"].createElement(PriceTag_styles.PriceTagContent, null,
|
|
35
64
|
isMultiPrice && (React__default["default"].createElement(PriceTag_styles.MultiPriceContainer, { pant: pant }, multiPriceStr)),
|
|
36
65
|
React__default["default"].createElement(PriceTag_styles.PriceTag, null,
|
|
@@ -40,7 +69,7 @@ var PriceTag = function (_a) {
|
|
|
40
69
|
pant && React__default["default"].createElement(PriceTag_styles.Pant, null, pantStr))) : (React__default["default"].createElement(PriceTag_styles.PriceDetails, null,
|
|
41
70
|
React__default["default"].createElement(PriceTag_styles.PriceDecimals, null, priceDecimals),
|
|
42
71
|
React__default["default"].createElement(PriceTag_styles.PriceUnit, null, pant ? pantStr : "/".concat(unit))))))),
|
|
43
|
-
priceVariantBadgeStr && (React__default["default"].createElement(PriceTag_styles.PriceVariantBadge, {
|
|
72
|
+
priceVariantBadgeStr && (React__default["default"].createElement(PriceTag_styles.PriceVariantBadge, { backgroundColor: splash.backgroundColor }, priceVariantBadgeStr))));
|
|
44
73
|
};
|
|
45
74
|
|
|
46
75
|
exports.PriceTag = PriceTag;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PriceTag.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"PriceTag.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -4,54 +4,26 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var _tslib = require('../../../../_virtual/_tslib.js');
|
|
6
6
|
var styled = require('styled-components');
|
|
7
|
-
var PriceTag$1 = require('./PriceTag.js');
|
|
8
|
-
var pricesplashKlipp = require('../../assets/pricesplash-klipp.svg.js');
|
|
9
|
-
var pricesplashPrio = require('../../assets/pricesplash-prio.svg.js');
|
|
10
|
-
var pricesplash = require('../../assets/pricesplash.svg.js');
|
|
11
7
|
|
|
12
8
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
13
9
|
|
|
14
10
|
var styled__default = /*#__PURE__*/_interopDefaultLegacy(styled);
|
|
15
11
|
|
|
16
|
-
var
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
};
|
|
28
|
-
var
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
props.priceVariant === PriceTag$1.EPriceVariant.PRIO
|
|
32
|
-
? (_a = props.theme.palette) === null || _a === void 0 ? void 0 : _a.white
|
|
33
|
-
: props.priceVariant === PriceTag$1.EPriceVariant.REGULAR_OFFER
|
|
34
|
-
? (_b = props.theme.palette) === null || _b === void 0 ? void 0 : _b.alertRed
|
|
35
|
-
: (_c = props.theme.palette) === null || _c === void 0 ? void 0 : _c.darkest;
|
|
36
|
-
}, function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.type.display; });
|
|
37
|
-
var PriceTagWrapper = styled__default["default"].div(templateObject_2 || (templateObject_2 = _tslib.__makeTemplateObject(["\n background: url(", ");\n display: inline-block;\n padding: ", "px\n ", "px\n ", "px\n ", "px;\n position: relative;\n z-index: ", ";\n"], ["\n background: url(", ");\n display: inline-block;\n padding: ", "px\n ", "px\n ", "px\n ", "px;\n position: relative;\n z-index: ", ";\n"])), function (props) { return getSplash(props.priceVariant); }, function (props) { var _a; return (props.pant ? 0 : (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxxs); }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs2; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xs; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xs2; }, function (props) { var _a; return (_a = props.theme.attributes) === null || _a === void 0 ? void 0 : _a.zIndex.middle; });
|
|
38
|
-
var PriceTagContent = styled__default["default"].div(templateObject_3 || (templateObject_3 = _tslib.__makeTemplateObject(["\n display: flex;\n flex-direction: column;\n"], ["\n display: flex;\n flex-direction: column;\n"])));
|
|
39
|
-
var MultiPriceContainer = styled__default["default"].div(templateObject_4 || (templateObject_4 = _tslib.__makeTemplateObject(["\n font-size: ", "px;\n margin-bottom: -", "px;\n transform: rotate(-", "deg);\n padding: ", "px 0 0\n ", "px;\n"], ["\n font-size: ", "px;\n margin-bottom: -", "px;\n transform: rotate(-", "deg);\n padding: ", "px 0 0\n ", "px;\n"])), function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.sm; }, function (props) { var _a; return (props.pant ? 10 : (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs); }, function (props) { var _a; return (_a = props.theme.constants) === null || _a === void 0 ? void 0 : _a.priceRotate; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xs; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs; });
|
|
40
|
-
var PriceTag = styled__default["default"].div(templateObject_5 || (templateObject_5 = _tslib.__makeTemplateObject(["\n align-items: center;\n display: flex;\n gap: ", "px;\n"], ["\n align-items: center;\n display: flex;\n gap: ", "px;\n"])), function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxxs; });
|
|
41
|
-
var PriceBase = styled__default["default"].span(templateObject_6 || (templateObject_6 = _tslib.__makeTemplateObject(["\n font-size: ", "px;\n line-height: 1;\n"], ["\n font-size: ", "px;\n line-height: 1;\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.l1; });
|
|
42
|
-
var PriceDetails = styled__default["default"].div(templateObject_7 || (templateObject_7 = _tslib.__makeTemplateObject(["\n display: flex;\n flex-direction: column;\n"], ["\n display: flex;\n flex-direction: column;\n"])));
|
|
43
|
-
var PriceDecimals = styled__default["default"].span(templateObject_8 || (templateObject_8 = _tslib.__makeTemplateObject(["\n font-size: ", "px;\n margin-top: ", "px;\n"], ["\n font-size: ", "px;\n margin-top: ", "px;\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.s4; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxxs; });
|
|
44
|
-
var PriceUnit = styled__default["default"].span(templateObject_9 || (templateObject_9 = _tslib.__makeTemplateObject(["\n font-size: ", "px;\n"], ["\n font-size: ", "px;\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.s3; });
|
|
45
|
-
var PriceIndicatorContainer = styled__default["default"].div(templateObject_10 || (templateObject_10 = _tslib.__makeTemplateObject(["\n display: flex;\n flex-direction: column;\n"], ["\n display: flex;\n flex-direction: column;\n"])));
|
|
46
|
-
var PriceIndicator = styled__default["default"].span(templateObject_11 || (templateObject_11 = _tslib.__makeTemplateObject(["\n font-size: ", "px;\n margin-top: ", "px;\n transform: rotate(", "deg);\n"], ["\n font-size: ", "px;\n margin-top: ", "px;\n transform: rotate(", "deg);\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.l1; }, function (props) { return (props.pant ? 4 : -6); }, function (props) { var _a; return (_a = props.theme.constants) === null || _a === void 0 ? void 0 : _a.priceIndicatorRotate; });
|
|
47
|
-
var Pant = styled__default["default"].span(templateObject_12 || (templateObject_12 = _tslib.__makeTemplateObject(["\n font-size: ", "px;\n margin-top: -", "px;\n padding: 0 ", "px\n ", "px 0;\n"], ["\n font-size: ", "px;\n margin-top: -", "px;\n padding: 0 ", "px\n ", "px 0;\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.s3; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxxs; });
|
|
48
|
-
var PriceVariantBadge = styled__default["default"].div(templateObject_13 || (templateObject_13 = _tslib.__makeTemplateObject(["\n align-items: center;\n background-color: ", ";\n border-radius: 50%;\n display: flex;\n height: ", "px;\n justify-content: center;\n position: absolute;\n right: -", "px;\n top: -", "px;\n width: ", "px;\n z-index: ", ";\n"], ["\n align-items: center;\n background-color: ", ";\n border-radius: 50%;\n display: flex;\n height: ", "px;\n justify-content: center;\n position: absolute;\n right: -", "px;\n top: -", "px;\n width: ", "px;\n z-index: ", ";\n"])), function (props) {
|
|
49
|
-
var _a, _b;
|
|
50
|
-
return props.priceVariant === PriceTag$1.EPriceVariant.KLIPP
|
|
51
|
-
? (_a = props.theme.palette) === null || _a === void 0 ? void 0 : _a.alertRed
|
|
52
|
-
: (_b = props.theme.palette) === null || _b === void 0 ? void 0 : _b.brandPrio;
|
|
53
|
-
}, function (props) { var _a; return (_a = props.theme.constants) === null || _a === void 0 ? void 0 : _a.priceVariantBadgeSize; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.md; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.lg; }, function (props) { var _a; return (_a = props.theme.constants) === null || _a === void 0 ? void 0 : _a.priceVariantBadgeSize; }, function (props) { var _a; return (_a = props.theme.attributes) === null || _a === void 0 ? void 0 : _a.zIndex.low; });
|
|
54
|
-
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10, templateObject_11, templateObject_12, templateObject_13;
|
|
12
|
+
var PriceTagWrapper = styled__default["default"].div(templateObject_1 || (templateObject_1 = _tslib.__makeTemplateObject(["\n color: ", ";\n display: grid;\n font-family: ", ";\n height: fit-content;\n width: fit-content;\n position: relative;\n"], ["\n color: ", ";\n display: grid;\n font-family: ", ";\n height: fit-content;\n width: fit-content;\n position: relative;\n"])), function (props) { return props.fontColor; }, function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.type.display; });
|
|
13
|
+
var PriceSplashContainer = styled__default["default"].div(templateObject_2 || (templateObject_2 = _tslib.__makeTemplateObject(["\n grid-area: 1 / 1 / 1 / 1;\n position: absolute;\n bottom: 0;\n top: 0;\n right: 0;\n left: 0;\n\n svg {\n width: 100%;\n height: 100%;\n }\n"], ["\n grid-area: 1 / 1 / 1 / 1;\n position: absolute;\n bottom: 0;\n top: 0;\n right: 0;\n left: 0;\n\n svg {\n width: 100%;\n height: 100%;\n }\n"])));
|
|
14
|
+
var PriceTagContainer = styled__default["default"].div(templateObject_3 || (templateObject_3 = _tslib.__makeTemplateObject(["\n grid-area: 1 / 1 / 1 / 1;\n padding: 0 ", "px\n ", "px\n ", "px;\n position: relative;\n z-index: 1;\n"], ["\n grid-area: 1 / 1 / 1 / 1;\n padding: 0 ", "px\n ", "px\n ", "px;\n position: relative;\n z-index: 1;\n"])), function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs2; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xs; });
|
|
15
|
+
var PriceTagContent = styled__default["default"].div(templateObject_4 || (templateObject_4 = _tslib.__makeTemplateObject(["\n display: flex;\n flex-direction: column;\n padding: ", "px;\n"], ["\n display: flex;\n flex-direction: column;\n padding: ", "px;\n"])), function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs; });
|
|
16
|
+
var MultiPriceContainer = styled__default["default"].div(templateObject_5 || (templateObject_5 = _tslib.__makeTemplateObject(["\n font-size: ", "px;\n margin-bottom: -", "px;\n margin-left: ", "px;\n padding-top: ", "px;\n transform: rotate(-", "deg);\n width: fit-content;\n"], ["\n font-size: ", "px;\n margin-bottom: -", "px;\n margin-left: ", "px;\n padding-top: ", "px;\n transform: rotate(-", "deg);\n width: fit-content;\n"])), function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.sm; }, function (props) { var _a, _b; return (props.pant ? (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xs2 : (_b = props.theme.spacings) === null || _b === void 0 ? void 0 : _b.xxs2); }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs2; }, function (props) { var _a; return (_a = props.theme.constants) === null || _a === void 0 ? void 0 : _a.priceRotate; });
|
|
17
|
+
var PriceTag = styled__default["default"].div(templateObject_6 || (templateObject_6 = _tslib.__makeTemplateObject(["\n display: flex;\n align-items: center;\n gap: ", "px;\n"], ["\n display: flex;\n align-items: center;\n gap: ", "px;\n"])), function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxxs; });
|
|
18
|
+
var PriceBase = styled__default["default"].span(templateObject_7 || (templateObject_7 = _tslib.__makeTemplateObject(["\n font-size: ", "px;\n line-height: 1;\n"], ["\n font-size: ", "px;\n line-height: 1;\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.l1; });
|
|
19
|
+
var PriceDetails = styled__default["default"].div(templateObject_8 || (templateObject_8 = _tslib.__makeTemplateObject(["\n display: flex;\n flex-direction: column;\n"], ["\n display: flex;\n flex-direction: column;\n"])));
|
|
20
|
+
var PriceDecimals = styled__default["default"].span(templateObject_9 || (templateObject_9 = _tslib.__makeTemplateObject(["\n font-size: ", "px;\n margin-top: ", "px;\n"], ["\n font-size: ", "px;\n margin-top: ", "px;\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.s4; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxxs; });
|
|
21
|
+
var PriceUnit = styled__default["default"].span(templateObject_10 || (templateObject_10 = _tslib.__makeTemplateObject(["\n font-size: ", "px;\n"], ["\n font-size: ", "px;\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.s3; });
|
|
22
|
+
var PriceIndicatorContainer = styled__default["default"].div(templateObject_11 || (templateObject_11 = _tslib.__makeTemplateObject(["\n display: flex;\n flex-direction: column;\n"], ["\n display: flex;\n flex-direction: column;\n"])));
|
|
23
|
+
var PriceIndicator = styled__default["default"].span(templateObject_12 || (templateObject_12 = _tslib.__makeTemplateObject(["\n font-size: ", "px;\n margin-top: -", "px;\n transform: rotate(", "deg);\n"], ["\n font-size: ", "px;\n margin-top: -", "px;\n transform: rotate(", "deg);\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.l1; }, function (props) { return (props.pant ? 0 : function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs2; }); }, function (props) { var _a; return (_a = props.theme.constants) === null || _a === void 0 ? void 0 : _a.priceIndicatorRotate; });
|
|
24
|
+
var Pant = styled__default["default"].span(templateObject_13 || (templateObject_13 = _tslib.__makeTemplateObject(["\n font-size: ", "px;\n margin-top: -", "px;\n"], ["\n font-size: ", "px;\n margin-top: -", "px;\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.s3; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs; });
|
|
25
|
+
var PriceVariantBadge = styled__default["default"].div(templateObject_14 || (templateObject_14 = _tslib.__makeTemplateObject(["\n background-color: ", ";\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n height: ", "px;\n width: ", "px;\n position: absolute;\n right: -", "px;\n top: -", "px;\n"], ["\n background-color: ", ";\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n height: ", "px;\n width: ", "px;\n position: absolute;\n right: -", "px;\n top: -", "px;\n"])), function (props) { return props.backgroundColor; }, function (props) { var _a; return (_a = props.theme.constants) === null || _a === void 0 ? void 0 : _a.priceVariantBadgeSize; }, function (props) { var _a; return (_a = props.theme.constants) === null || _a === void 0 ? void 0 : _a.priceVariantBadgeSize; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.md; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.lg; });
|
|
26
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10, templateObject_11, templateObject_12, templateObject_13, templateObject_14;
|
|
55
27
|
|
|
56
28
|
exports.MultiPriceContainer = MultiPriceContainer;
|
|
57
29
|
exports.Pant = Pant;
|
|
@@ -60,8 +32,9 @@ exports.PriceDecimals = PriceDecimals;
|
|
|
60
32
|
exports.PriceDetails = PriceDetails;
|
|
61
33
|
exports.PriceIndicator = PriceIndicator;
|
|
62
34
|
exports.PriceIndicatorContainer = PriceIndicatorContainer;
|
|
35
|
+
exports.PriceSplashContainer = PriceSplashContainer;
|
|
63
36
|
exports.PriceTag = PriceTag;
|
|
64
|
-
exports.
|
|
37
|
+
exports.PriceTagContainer = PriceTagContainer;
|
|
65
38
|
exports.PriceTagContent = PriceTagContent;
|
|
66
39
|
exports.PriceTagWrapper = PriceTagWrapper;
|
|
67
40
|
exports.PriceUnit = PriceUnit;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PriceTag.styles.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"PriceTag.styles.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { PriceTagWrapper, PriceSplashContainer, PriceTagContainer, PriceTagContent, MultiPriceContainer, PriceTag as PriceTag$1, PriceBase, PriceIndicatorContainer, PriceIndicator, Pant, PriceDetails, PriceDecimals, PriceUnit, PriceVariantBadge } from './PriceTag.styles.js';
|
|
3
|
+
import { Icons } from '@citygross/icons';
|
|
4
|
+
import { theme } from '@citygross/design-tokens';
|
|
3
5
|
|
|
4
6
|
var EPriceVariant;
|
|
5
7
|
(function (EPriceVariant) {
|
|
@@ -7,8 +9,33 @@ var EPriceVariant;
|
|
|
7
9
|
EPriceVariant["PRIO"] = "prio";
|
|
8
10
|
EPriceVariant["REGULAR_OFFER"] = "regular-offer";
|
|
9
11
|
})(EPriceVariant || (EPriceVariant = {}));
|
|
12
|
+
var getSplash = function (priceVariant) {
|
|
13
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
14
|
+
switch (priceVariant) {
|
|
15
|
+
case EPriceVariant.KLIPP:
|
|
16
|
+
return {
|
|
17
|
+
backgroundColor: (_a = theme.palette) === null || _a === void 0 ? void 0 : _a.alertRed,
|
|
18
|
+
fontColor: (_b = theme.palette) === null || _b === void 0 ? void 0 : _b.white
|
|
19
|
+
};
|
|
20
|
+
case EPriceVariant.PRIO:
|
|
21
|
+
return {
|
|
22
|
+
backgroundColor: (_c = theme.palette) === null || _c === void 0 ? void 0 : _c.brandPrio,
|
|
23
|
+
fontColor: (_d = theme.palette) === null || _d === void 0 ? void 0 : _d.white
|
|
24
|
+
};
|
|
25
|
+
case EPriceVariant.REGULAR_OFFER:
|
|
26
|
+
return {
|
|
27
|
+
backgroundColor: (_e = theme.palette) === null || _e === void 0 ? void 0 : _e.brandYellow,
|
|
28
|
+
fontColor: (_f = theme.palette) === null || _f === void 0 ? void 0 : _f.alertRed
|
|
29
|
+
};
|
|
30
|
+
default:
|
|
31
|
+
return {
|
|
32
|
+
fontColor: (_g = theme.palette) === null || _g === void 0 ? void 0 : _g.darkest
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
};
|
|
10
36
|
var PriceTag = function (_a) {
|
|
11
37
|
var _b = _a.multiPrice, multiPrice = _b === void 0 ? 0 : _b, _c = _a.pant, pant = _c === void 0 ? false : _c, price = _a.price, priceVariant = _a.priceVariant, unit = _a.unit;
|
|
38
|
+
var splash = getSplash(priceVariant);
|
|
12
39
|
var priceBase = Math.floor(price);
|
|
13
40
|
var priceDecimals = (price % 1).toFixed(2).split('.')[1];
|
|
14
41
|
var isMultiPrice = multiPrice > 1;
|
|
@@ -21,8 +48,10 @@ var PriceTag = function (_a) {
|
|
|
21
48
|
: priceVariant === EPriceVariant.PRIO
|
|
22
49
|
? 'PRIO'
|
|
23
50
|
: null;
|
|
24
|
-
return (React.createElement(
|
|
25
|
-
React.createElement(
|
|
51
|
+
return (React.createElement(PriceTagWrapper, { fontColor: splash.fontColor },
|
|
52
|
+
splash.backgroundColor && (React.createElement(PriceSplashContainer, null,
|
|
53
|
+
React.createElement(Icons.PriceSplash, { backgroundColor: splash.backgroundColor }))),
|
|
54
|
+
React.createElement(PriceTagContainer, null,
|
|
26
55
|
React.createElement(PriceTagContent, null,
|
|
27
56
|
isMultiPrice && (React.createElement(MultiPriceContainer, { pant: pant }, multiPriceStr)),
|
|
28
57
|
React.createElement(PriceTag$1, null,
|
|
@@ -32,7 +61,7 @@ var PriceTag = function (_a) {
|
|
|
32
61
|
pant && React.createElement(Pant, null, pantStr))) : (React.createElement(PriceDetails, null,
|
|
33
62
|
React.createElement(PriceDecimals, null, priceDecimals),
|
|
34
63
|
React.createElement(PriceUnit, null, pant ? pantStr : "/".concat(unit))))))),
|
|
35
|
-
priceVariantBadgeStr && (React.createElement(PriceVariantBadge, {
|
|
64
|
+
priceVariantBadgeStr && (React.createElement(PriceVariantBadge, { backgroundColor: splash.backgroundColor }, priceVariantBadgeStr))));
|
|
36
65
|
};
|
|
37
66
|
|
|
38
67
|
export { EPriceVariant, PriceTag };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PriceTag.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"PriceTag.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,49 +1,21 @@
|
|
|
1
1
|
import { __makeTemplateObject } from '../../../../_virtual/_tslib.js';
|
|
2
2
|
import styled from 'styled-components';
|
|
3
|
-
import { EPriceVariant } from './PriceTag.js';
|
|
4
|
-
import PriceSplashKlipp from '../../assets/pricesplash-klipp.svg.js';
|
|
5
|
-
import PriceSplashPrio from '../../assets/pricesplash-prio.svg.js';
|
|
6
|
-
import PriceSplashRegular from '../../assets/pricesplash.svg.js';
|
|
7
3
|
|
|
8
|
-
var
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
};
|
|
20
|
-
var
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
props.priceVariant === EPriceVariant.PRIO
|
|
24
|
-
? (_a = props.theme.palette) === null || _a === void 0 ? void 0 : _a.white
|
|
25
|
-
: props.priceVariant === EPriceVariant.REGULAR_OFFER
|
|
26
|
-
? (_b = props.theme.palette) === null || _b === void 0 ? void 0 : _b.alertRed
|
|
27
|
-
: (_c = props.theme.palette) === null || _c === void 0 ? void 0 : _c.darkest;
|
|
28
|
-
}, function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.type.display; });
|
|
29
|
-
var PriceTagWrapper = styled.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background: url(", ");\n display: inline-block;\n padding: ", "px\n ", "px\n ", "px\n ", "px;\n position: relative;\n z-index: ", ";\n"], ["\n background: url(", ");\n display: inline-block;\n padding: ", "px\n ", "px\n ", "px\n ", "px;\n position: relative;\n z-index: ", ";\n"])), function (props) { return getSplash(props.priceVariant); }, function (props) { var _a; return (props.pant ? 0 : (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxxs); }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs2; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xs; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xs2; }, function (props) { var _a; return (_a = props.theme.attributes) === null || _a === void 0 ? void 0 : _a.zIndex.middle; });
|
|
30
|
-
var PriceTagContent = styled.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n"], ["\n display: flex;\n flex-direction: column;\n"])));
|
|
31
|
-
var MultiPriceContainer = styled.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n font-size: ", "px;\n margin-bottom: -", "px;\n transform: rotate(-", "deg);\n padding: ", "px 0 0\n ", "px;\n"], ["\n font-size: ", "px;\n margin-bottom: -", "px;\n transform: rotate(-", "deg);\n padding: ", "px 0 0\n ", "px;\n"])), function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.sm; }, function (props) { var _a; return (props.pant ? 10 : (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs); }, function (props) { var _a; return (_a = props.theme.constants) === null || _a === void 0 ? void 0 : _a.priceRotate; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xs; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs; });
|
|
32
|
-
var PriceTag = styled.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n align-items: center;\n display: flex;\n gap: ", "px;\n"], ["\n align-items: center;\n display: flex;\n gap: ", "px;\n"])), function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxxs; });
|
|
33
|
-
var PriceBase = styled.span(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n font-size: ", "px;\n line-height: 1;\n"], ["\n font-size: ", "px;\n line-height: 1;\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.l1; });
|
|
34
|
-
var PriceDetails = styled.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n"], ["\n display: flex;\n flex-direction: column;\n"])));
|
|
35
|
-
var PriceDecimals = styled.span(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n font-size: ", "px;\n margin-top: ", "px;\n"], ["\n font-size: ", "px;\n margin-top: ", "px;\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.s4; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxxs; });
|
|
36
|
-
var PriceUnit = styled.span(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n font-size: ", "px;\n"], ["\n font-size: ", "px;\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.s3; });
|
|
37
|
-
var PriceIndicatorContainer = styled.div(templateObject_10 || (templateObject_10 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n"], ["\n display: flex;\n flex-direction: column;\n"])));
|
|
38
|
-
var PriceIndicator = styled.span(templateObject_11 || (templateObject_11 = __makeTemplateObject(["\n font-size: ", "px;\n margin-top: ", "px;\n transform: rotate(", "deg);\n"], ["\n font-size: ", "px;\n margin-top: ", "px;\n transform: rotate(", "deg);\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.l1; }, function (props) { return (props.pant ? 4 : -6); }, function (props) { var _a; return (_a = props.theme.constants) === null || _a === void 0 ? void 0 : _a.priceIndicatorRotate; });
|
|
39
|
-
var Pant = styled.span(templateObject_12 || (templateObject_12 = __makeTemplateObject(["\n font-size: ", "px;\n margin-top: -", "px;\n padding: 0 ", "px\n ", "px 0;\n"], ["\n font-size: ", "px;\n margin-top: -", "px;\n padding: 0 ", "px\n ", "px 0;\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.s3; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxxs; });
|
|
40
|
-
var PriceVariantBadge = styled.div(templateObject_13 || (templateObject_13 = __makeTemplateObject(["\n align-items: center;\n background-color: ", ";\n border-radius: 50%;\n display: flex;\n height: ", "px;\n justify-content: center;\n position: absolute;\n right: -", "px;\n top: -", "px;\n width: ", "px;\n z-index: ", ";\n"], ["\n align-items: center;\n background-color: ", ";\n border-radius: 50%;\n display: flex;\n height: ", "px;\n justify-content: center;\n position: absolute;\n right: -", "px;\n top: -", "px;\n width: ", "px;\n z-index: ", ";\n"])), function (props) {
|
|
41
|
-
var _a, _b;
|
|
42
|
-
return props.priceVariant === EPriceVariant.KLIPP
|
|
43
|
-
? (_a = props.theme.palette) === null || _a === void 0 ? void 0 : _a.alertRed
|
|
44
|
-
: (_b = props.theme.palette) === null || _b === void 0 ? void 0 : _b.brandPrio;
|
|
45
|
-
}, function (props) { var _a; return (_a = props.theme.constants) === null || _a === void 0 ? void 0 : _a.priceVariantBadgeSize; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.md; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.lg; }, function (props) { var _a; return (_a = props.theme.constants) === null || _a === void 0 ? void 0 : _a.priceVariantBadgeSize; }, function (props) { var _a; return (_a = props.theme.attributes) === null || _a === void 0 ? void 0 : _a.zIndex.low; });
|
|
46
|
-
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10, templateObject_11, templateObject_12, templateObject_13;
|
|
4
|
+
var PriceTagWrapper = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n color: ", ";\n display: grid;\n font-family: ", ";\n height: fit-content;\n width: fit-content;\n position: relative;\n"], ["\n color: ", ";\n display: grid;\n font-family: ", ";\n height: fit-content;\n width: fit-content;\n position: relative;\n"])), function (props) { return props.fontColor; }, function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.type.display; });
|
|
5
|
+
var PriceSplashContainer = styled.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n grid-area: 1 / 1 / 1 / 1;\n position: absolute;\n bottom: 0;\n top: 0;\n right: 0;\n left: 0;\n\n svg {\n width: 100%;\n height: 100%;\n }\n"], ["\n grid-area: 1 / 1 / 1 / 1;\n position: absolute;\n bottom: 0;\n top: 0;\n right: 0;\n left: 0;\n\n svg {\n width: 100%;\n height: 100%;\n }\n"])));
|
|
6
|
+
var PriceTagContainer = styled.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n grid-area: 1 / 1 / 1 / 1;\n padding: 0 ", "px\n ", "px\n ", "px;\n position: relative;\n z-index: 1;\n"], ["\n grid-area: 1 / 1 / 1 / 1;\n padding: 0 ", "px\n ", "px\n ", "px;\n position: relative;\n z-index: 1;\n"])), function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs2; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xs; });
|
|
7
|
+
var PriceTagContent = styled.div(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n padding: ", "px;\n"], ["\n display: flex;\n flex-direction: column;\n padding: ", "px;\n"])), function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs; });
|
|
8
|
+
var MultiPriceContainer = styled.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n font-size: ", "px;\n margin-bottom: -", "px;\n margin-left: ", "px;\n padding-top: ", "px;\n transform: rotate(-", "deg);\n width: fit-content;\n"], ["\n font-size: ", "px;\n margin-bottom: -", "px;\n margin-left: ", "px;\n padding-top: ", "px;\n transform: rotate(-", "deg);\n width: fit-content;\n"])), function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.sm; }, function (props) { var _a, _b; return (props.pant ? (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xs2 : (_b = props.theme.spacings) === null || _b === void 0 ? void 0 : _b.xxs2); }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs2; }, function (props) { var _a; return (_a = props.theme.constants) === null || _a === void 0 ? void 0 : _a.priceRotate; });
|
|
9
|
+
var PriceTag = styled.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n display: flex;\n align-items: center;\n gap: ", "px;\n"], ["\n display: flex;\n align-items: center;\n gap: ", "px;\n"])), function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxxs; });
|
|
10
|
+
var PriceBase = styled.span(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n font-size: ", "px;\n line-height: 1;\n"], ["\n font-size: ", "px;\n line-height: 1;\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.l1; });
|
|
11
|
+
var PriceDetails = styled.div(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n"], ["\n display: flex;\n flex-direction: column;\n"])));
|
|
12
|
+
var PriceDecimals = styled.span(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n font-size: ", "px;\n margin-top: ", "px;\n"], ["\n font-size: ", "px;\n margin-top: ", "px;\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.s4; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxxs; });
|
|
13
|
+
var PriceUnit = styled.span(templateObject_10 || (templateObject_10 = __makeTemplateObject(["\n font-size: ", "px;\n"], ["\n font-size: ", "px;\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.s3; });
|
|
14
|
+
var PriceIndicatorContainer = styled.div(templateObject_11 || (templateObject_11 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n"], ["\n display: flex;\n flex-direction: column;\n"])));
|
|
15
|
+
var PriceIndicator = styled.span(templateObject_12 || (templateObject_12 = __makeTemplateObject(["\n font-size: ", "px;\n margin-top: -", "px;\n transform: rotate(", "deg);\n"], ["\n font-size: ", "px;\n margin-top: -", "px;\n transform: rotate(", "deg);\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.l1; }, function (props) { return (props.pant ? 0 : function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs2; }); }, function (props) { var _a; return (_a = props.theme.constants) === null || _a === void 0 ? void 0 : _a.priceIndicatorRotate; });
|
|
16
|
+
var Pant = styled.span(templateObject_13 || (templateObject_13 = __makeTemplateObject(["\n font-size: ", "px;\n margin-top: -", "px;\n"], ["\n font-size: ", "px;\n margin-top: -", "px;\n"])), function (props) { var _a; return (_a = props.theme.typography) === null || _a === void 0 ? void 0 : _a.size.s3; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.xxs; });
|
|
17
|
+
var PriceVariantBadge = styled.div(templateObject_14 || (templateObject_14 = __makeTemplateObject(["\n background-color: ", ";\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n height: ", "px;\n width: ", "px;\n position: absolute;\n right: -", "px;\n top: -", "px;\n"], ["\n background-color: ", ";\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n height: ", "px;\n width: ", "px;\n position: absolute;\n right: -", "px;\n top: -", "px;\n"])), function (props) { return props.backgroundColor; }, function (props) { var _a; return (_a = props.theme.constants) === null || _a === void 0 ? void 0 : _a.priceVariantBadgeSize; }, function (props) { var _a; return (_a = props.theme.constants) === null || _a === void 0 ? void 0 : _a.priceVariantBadgeSize; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.md; }, function (props) { var _a; return (_a = props.theme.spacings) === null || _a === void 0 ? void 0 : _a.lg; });
|
|
18
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10, templateObject_11, templateObject_12, templateObject_13, templateObject_14;
|
|
47
19
|
|
|
48
|
-
export { MultiPriceContainer, Pant, PriceBase, PriceDecimals, PriceDetails, PriceIndicator, PriceIndicatorContainer, PriceTag,
|
|
20
|
+
export { MultiPriceContainer, Pant, PriceBase, PriceDecimals, PriceDetails, PriceIndicator, PriceIndicatorContainer, PriceSplashContainer, PriceTag, PriceTagContainer, PriceTagContent, PriceTagWrapper, PriceUnit, PriceVariantBadge };
|
|
49
21
|
//# sourceMappingURL=PriceTag.styles.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PriceTag.styles.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"PriceTag.styles.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@citygross/components",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.37",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./build/cjs/components/src/index.js",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"@citygross/design-tokens": "^0.2.67",
|
|
69
|
-
"@citygross/icons": "^0.1.
|
|
69
|
+
"@citygross/icons": "^0.1.11",
|
|
70
70
|
"@citygross/react-use-bg-wizard": "^0.0.8",
|
|
71
71
|
"@citygross/typography": "^0.0.89",
|
|
72
72
|
"@citygross/utils": "^0.0.37",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"react-slick": "^0.30.1",
|
|
77
77
|
"slick-carousel": "^1.8.1"
|
|
78
78
|
},
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "623be645912e25bedfbb2538e3fe9a0072affc30"
|
|
80
80
|
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
var PriceSplashKlipp = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 96 61\"><defs><path id=\"a\" d=\"M0 0h96v61H0z\"/></defs><clipPath id=\"b\"><use xlink:href=\"#a\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#b)\"><defs><path id=\"c\" d=\"M0 0h96v62H0z\"/></defs><clipPath id=\"d\"><use xlink:href=\"#c\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#d)\"><defs><path id=\"e\" d=\"M94.1 12c-.5 0-.9-.1-1.4-.1-.3 0-.5 0-.8-.1-.2 0-.4-.1-.5-.2l-.6-.3c-.2-.1-.3-.2-.3-.4 0-.3 0-.6-.3-.8-.2-.1-.4-.3-.6-.4-.2-.1-.2-.2-.2-.4s.1-.4 0-.6c-.1-.3-.2-.5-.5-.7-.3-.2-.5-.2-.8-.2h-.6c-.1 0-.2.1-.3.1-.1.1-.1.2-.2.2s-.2 0-.3-.1c0-.1 0-.2.1-.2.1-.1.1-.1.2-.1.2-.1.2-.2.1-.4-.2-.2-.3-.4-.4-.6-.1-.1-.2-.3-.3-.4-.2-.1-.2-.3-.2-.4 0-.2-.2-.3-.4-.4h-.3l-.1-.1c.1-.1.2-.2.3-.2.1-.1.3-.1.3-.2.1-.1.1-.3.1-.4 0-.2-.2-.1-.3-.1-.3.1-.6.1-1-.1l.2-.2c.2-.2.5-.4.7-.5.4-.3.8-.4 1.3-.6.1 0 .3-.1.4-.2.1-.2.2-.4.2-.7-.4-.1-.4-.1-.3-.4v-.1c0-.1-.1-.1-.1-.1l-.1.1v.1c-.1.2-.2.3-.3.4 0 0-.2 0-.2-.1-.1-.1-.1-.3-.1-.4 0-.1 0-.2-.1-.3-.1-.2-.2-.4-.5-.3h-.1c-.2-.1-.3-.5-.2-.8h-.4c-.1.1-.1.1-.2.1h-.3V.2c-.3 0-.6-.1-.8-.2h-.8c0 .1-.1.2-.2.2-.2.1-.5 0-.8-.1-.3-.1-.5-.1-.7 0-.6.2-1.2 0-1.8.1h-2.1c-.4 0-.8 0-1.2.1h-1.2c-.3 0-.7.1-1 .1h-1.6c-.3 0-.7.1-1 .1H63.7c-.8 0-1.6.1-2.5.1-.8 0-1.6 0-2.4.1-.5 0-1 .1-1.5.1h-1c-.4 0-.9.1-1.3.1-.7.1-1.3.2-2 .2-.3 0-.7.1-1 .1-.5 0-1 .1-1.5.1-.7.1-1.5.2-2.2.3-.6.1-1.3.1-1.9.2l-1.8.3c-1 .2-2.1.3-3.1.4-.7.1-1.4.2-2.2.3-.3 0-.6.1-.9.1-.7.1-1.4.3-2 .4-.6.1-1.1.2-1.7.3-.8.2-1.5.3-2.3.5-.4.1-.8.1-1.3.2s-.9.2-1.4.4c-1.3.3-2.6.6-4 .9-.4.1-.7.2-1.1.1-.1 0-.3 0-.4.1-.2 0-.3.1-.5.1l-1.2.3c-.3.1-.7.2-1 .3-.3.5-.8.5-1.2.6-.3.1-.6.1-.8.2-.2 0-.3.1-.5.2h-.2c0-.1-1.1-.3-1.5-.2-.7.3-.8.3-1.5.6-.8.3-1.5.7-2.3 1-.3.1-.6.4-1 .2h-.2l-.6.3c-.4.3-.7.5-.8 1 0 .2-.2.4-.4.5l-.6.3c-.7.3-1 .9-.9 1.6 0 .1 0 .2-.1.3-.1.2-.1.3-.1.5 0 .4 0 .8-.4 1.1-.4.3-.8.7-1 1.2-.1.4-.4.7-.9 1-.1.1-.3.2-.3.3-.2.2-.3.5-.5.7-.3.4-.7.8-1.1 1.1-.2.2 0 1 .2 2 .1.3.1.6.2.9 0 .1.6.1.6.1 0 .2-.5.4-.4.6 0 .2.1.3.1.5.3 1.2.4 2.2.2 2.3-.1 0-.2.1-.2.1s0 .1-.1.2h.6v.1c-.1.1-.2.2-.3.2l-1.5.6c-.2.1-.3.1-.5.2-.4.1-.8.2-1.2.4-.2.1-.4.3-.5.6-.1.2-.1.3-.3.4-.3.2-.7.3-1 .5H.3c-.1 0-.4.1-.4.2-.1.2-.1.5-.1.7v.4c0 .2-.1.4 0 .5.3.4.4.7.3 1.1 0 .2 0 .4-.1.5-.1.3 0 .7-.3.9v.1c.2.1.3.2.5.2h1.6c.1 0 .2 0 .3.1 0 .1 0 .2-.1.3 0 .3-.3.5-.6.6-.1 0-.2.1-.2.2s.1.2.1.2c.3.1.5.2.7.3.1.1.3.2.4.2.3.1.3.1.3.4-.1.2-.2.4-.2.5 0 .7-.4 1.3-.5 1.9-.1.2-.2.5-.3.7 0 .1 0 .3.1.4.1.1.4.1.5 0 .3-.3.7-.3 1.1-.3h.8L4 39c0 .1 0 .2-.1.3h.3c.3-.1.5-.2.8-.3.3-.1.4-.1.5.2.1.3 0 .7-.2.9-.1.1-.1.3 0 .5.2.3.1.5-.2.6-.3.1-.4.4-.5.7 0 .1 0 .2.2.3.1 0 .2.1.2.2.1.2.2.5.2.7 0 .3.1.6 0 .8 0 .1 0 .2.2.2 0 0 .1.1.1.2s0 .1-.1.2c-.2.4-.7.5-1 .8-.1.1-.3.2-.4.4-.1.3 0 .6 0 .9v.5c0 .3-.1.5-.1.8 0 .2 0 .4.1.6.1.3 0 .6-.1.9v.6h.3c0-.1 0-.2.1-.3.1-.1.2-.3.3-.4.2-.1.4 0 .5.2.1.1.1.3 0 .4-.2.1-.4.3-.7.4-.1.1-.2.1-.1.2s.1.3-.1.4c-.3.2-.4.5-.3.8 0 .2.1.4.2.6.3.4.5.8.9 1.1.4.3.9.4 1.4.6.1.1.3.3.3.4 0 .3.2.6.4.9.1-.1.3-.2.4-.3.4-.3 1-.1 1.5 0s.7.1.6.3c-.1.2-.2.3-.2.5s-.1.4.2.5c.1 0 .2.2.3.3.3.2.6.4 1 .3.4 0 .6.2.6.6v.2h.1c.3-.1.5 0 .6.3 0 0 0 .1.1.1.3.2.3.3.2.6v.2c.2.3.4.6.8.8.2.1.3.2.4.4.1.3.3.5.6.6.1 0 .2.1.3.1.1.1.3.1.4.3.2.4 17.3-1 17.7-1h1.7V60v-.1c.3-.3.7-.4.8-.9.2-.1.5-.3.7-.3.5-.1 1-.1 1.5-.3.3-.1.7-.1 1-.1.6-.1 1.1-.1 1.7-.1.1 0 .3-.1.4-.1.2-.1.3-.2.5-.2.7-.1 1.4-.1 2.1-.1.2 0 .4-.1.6-.1.6 0 1.2 0 1.7-.1.5 0 1.1 0 1.6-.1H49.8c.6 0 1.3-.1 1.9-.1h.4c.3 0 .7.1 1 .1h.9c.4-.1.7-.1 1 .2 0 0 .1.1.2.1H59.4c.3 0 .6.1.9.1h.8v.1c-.4.2-.8.4-1.1.5v.1h.8c.5-.1 1.1-.1 1.6-.2s1-.1 1.4-.3c.2-.1.4-.1.6.1l-.3.3c.3.2.3.2.6.2.5-.1.9-.2 1.4-.3.5-.1 1.1-.1 1.7-.2.7-.1 1.4-.2 2.1-.2h.2c-.1 0-.4 0-.3.3.3 0 .6-.1.9-.1.3 0 .6-.1.8-.2.6-.1 1.1-.3 1.7-.3h.9c.7 0 1.4-.1 2-.1h1.5c.4 0 .7 0 1 .2.2.2.3.1.4-.1 0-.1.1-.2.2-.2.2 0 .5-.1.7-.1h1.2c.6 0 1.1-.1 1.7-.2.3 0 .6 0 .8-.1.4-.1.8-.1 1.2.1.3.2.7.3 1 .1.2-.1.8-.3.7-.6.1 0 .3.1.4.1.2 0 .4-.1.3-.2 0-.1-.1-.2-.2-.2-.3-.3-.7-.5-1-.8-.2-.2-.4-.5-.6-.7-.1-.1 0-.5.1-.5.2 0 .4 0 .5-.1.3 0 .4-.1.5-.4 0-.1.1-.3.2-.4.1-.1.3-.2.5-.3-.2-.1-.3-.2-.4-.3.2.1.2 0 .1-.1.1 0 .2-.1.3-.1.2 0 .3.1.5.2.3.1.5.2.8.2.1 0 .3 0 .4-.1.2-.1 0-.3-.1-.4-.1-.1-.2-.2-.4-.3-.2-.1-.2-.2-.1-.2h.3c.3.2.5.4.8.5.2.1.4.1.6 0 .2-.1.1-.6 0-.8-.3-.2-.2-.3 0-.5s.1-.6 0-.8c-.3-.3-.2-.9.2-1.1.2 0 .4-.1.5-.1.5-.1 1.1-.2 1.6-.3.2-.1.3-.2.1-.4-.2-.2-.4-.3-.7-.5-.3-.2-.3-.3-.1-.5.3-.4.8-.7.9-1.3h.1c.5-.3.9-.2.9-.4-.1-.1 0-.2.1-.2.3 0 .6-.1.9-.1.4 0 .5-.4.2-.7-.1-.1-.2-.2-.2-.3-.1-.3 0-.7-.5-.8l-.1-.1.3-.3c0-.1.1-.1.1-.2 0-.2 0-.5-.1-.7 0-.1-.1-.2-.1-.3-.2-.2-.3-.4-.2-.7.4.1.4.1.5-.3v-.1c.3-.1.4-.3.3-.6 0-.1 0-.1.1-.2.2-.4.1-.9.1-1.4v-.2h.2c.2.3.4.1.5 0 .1 0 .1-.1.2-.1v-.2-.1h-.1c0-.1-.1-.1-.1-.2v-.4c0-.1.1-.1.2-.2 0-.4.1-.9.1-1.3-.1-.2-.2-.4-.4-.6-.2-.3-.5-.7-.7-1-.2-.4-.6-.7-1-.8-.6-.1-.7-.7-1.2-.9v-.1c.3-.1.7-.2 1-.3-.1-.1-.2-.1-.3-.2-.4-.1-.5-.4-.6-.7 0-.1-.1-.2-.1-.3.1-.4.2-.8 0-1.2v-.2c.1-.3.2-.6.5-.8.2-.2.2-.3-.1-.5-.1 0-.1-.1-.2-.1.2-.1.3-.2.5-.3.2-.1.4-.3.2-.6l-.3-.6c-.1-.2-.4-.5-.3-.7 0-.4.2-.7.3-1 .1-.2.3-.4.2-.7 0-.4.1-.7.6-.8.2 0 .3-.1.5-.1.1 0 .1-.1.2-.1v-.1c-.2 0-.5-.1-.7-.1-.3 0-.5-.1-.6-.4-.1-.1-.1-.3-.2-.4-.1-.2-.1-.4.1-.5.2-.1.4-.3.5-.5.1-.1.1-.2.1-.3-.2-.5-.5-.9-.6-1.4v-.1h-.1v-.2h-.1c-.1 0-.1-.1-.1-.2s-.1-.3-.1-.4c-.1-.3-.1-.5.2-.7.3-.2.3-.7 0-1-.1-.1-.1-.2-.1-.3v-.2c-.1-.1-.2-.3-.2-.4-.1-.4-.3-.7-.5-1-.4-.4-.8-.9-1-1.4v-.2c.1 0 .2 0 .2.1l.1.1c.3 0 .5.1.7.4.1.1.2.3.3.4.1.1.3.2.5.1.1-.1.3-.2.1-.4-.2-.3-.3-.6-.6-.9-.2-.3-.2-.4.1-.6.3-.1.7-.3 1-.3.7-.1 1.1-.4 1.4-1-.6.4-.8.3-1 .3\"/></defs><clipPath id=\"f\"><use xlink:href=\"#e\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#f)\"><defs><path id=\"g\" d=\"M0 0h96v61H0z\"/></defs><clipPath id=\"h\"><use xlink:href=\"#g\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#h)\" fill=\"#E42313\" d=\"M-5-5h106v71H-5z\"/></g></g></g></svg>";
|
|
4
|
-
|
|
5
|
-
module.exports = PriceSplashKlipp;
|
|
6
|
-
//# sourceMappingURL=pricesplash-klipp.svg.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pricesplash-klipp.svg.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
var PriceSplashPrio = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 96 61\"><defs><path id=\"a\" d=\"M0 0h96v61H0z\"/></defs><clipPath id=\"b\"><use xlink:href=\"#a\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#b)\"><defs><path id=\"c\" d=\"M0 0h96v62H0z\"/></defs><clipPath id=\"d\"><use xlink:href=\"#c\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#d)\"><defs><path id=\"e\" d=\"M94.1 12c-.5 0-.9-.1-1.4-.1-.3 0-.5 0-.8-.1-.2 0-.4-.1-.5-.2l-.6-.3c-.2-.1-.3-.2-.3-.4 0-.3 0-.6-.3-.8-.2-.1-.4-.3-.6-.4-.2-.1-.2-.2-.2-.4s.1-.4 0-.6c-.1-.3-.2-.5-.5-.7-.3-.2-.5-.2-.8-.2h-.6c-.1 0-.2.1-.3.1-.1.1-.1.2-.2.2s-.2 0-.3-.1c0-.1 0-.2.1-.2.1-.1.1-.1.2-.1.2-.1.2-.2.1-.4-.2-.2-.3-.4-.4-.6-.1-.1-.2-.3-.3-.4-.2-.1-.2-.3-.2-.4 0-.2-.2-.3-.4-.4h-.3l-.1-.1c.1-.1.2-.2.3-.2.1-.1.3-.1.3-.2.1-.1.1-.3.1-.4 0-.2-.2-.1-.3-.1-.3.1-.6.1-1-.1l.2-.2c.2-.2.5-.4.7-.5.4-.3.8-.4 1.3-.6.1 0 .3-.1.4-.2.1-.2.2-.4.2-.7-.4-.1-.4-.1-.3-.4v-.1c0-.1-.1-.1-.1-.1l-.1.1v.1c-.1.2-.2.3-.3.4 0 0-.2 0-.2-.1-.1-.1-.1-.3-.1-.4 0-.1 0-.2-.1-.3-.1-.2-.2-.4-.5-.3h-.1c-.2-.1-.3-.5-.2-.8h-.4c-.1.1-.1.1-.2.1h-.3V.2c-.3 0-.6-.1-.8-.2h-.8c0 .1-.1.2-.2.2-.2.1-.5 0-.8-.1-.3-.1-.5-.1-.7 0-.6.2-1.2 0-1.8.1h-2.1c-.4 0-.8 0-1.2.1h-1.2c-.3 0-.7.1-1 .1h-1.6c-.3 0-.7.1-1 .1H63.7c-.8 0-1.6.1-2.5.1-.8 0-1.6 0-2.4.1-.5 0-1 .1-1.5.1h-1c-.4 0-.9.1-1.3.1-.7.1-1.3.2-2 .2-.3 0-.7.1-1 .1-.5 0-1 .1-1.5.1-.7.1-1.5.2-2.2.3-.6.1-1.3.1-1.9.2l-1.8.3c-1 .2-2.1.3-3.1.4-.7.1-1.4.2-2.2.3-.3 0-.6.1-.9.1-.7.1-1.4.3-2 .4-.6.1-1.1.2-1.7.3-.8.2-1.5.3-2.3.5-.4.1-.8.1-1.3.2s-.9.2-1.4.4c-1.3.3-2.6.6-4 .9-.4.1-.7.2-1.1.1-.1 0-.3 0-.4.1-.2 0-.3.1-.5.1l-1.2.3c-.3.1-.7.2-1 .3-.3.5-.8.5-1.2.6-.3.1-.6.1-.8.2-.2 0-.3.1-.5.2h-.2c0-.1-1.1-.3-1.5-.2-.7.3-.8.3-1.5.6-.8.3-1.5.7-2.3 1-.3.1-.6.4-1 .2h-.2l-.6.3c-.4.3-.7.5-.8 1 0 .2-.2.4-.4.5l-.6.3c-.7.3-1 .9-.9 1.6 0 .1 0 .2-.1.3-.1.2-.1.3-.1.5 0 .4 0 .8-.4 1.1-.4.3-.8.7-1 1.2-.1.4-.4.7-.9 1-.1.1-.3.2-.3.3-.2.2-.3.5-.5.7-.3.4-.7.8-1.1 1.1-.2.2 0 1 .2 2 .1.3.1.6.2.9 0 .1.6.1.6.1 0 .2-.5.4-.4.6 0 .2.1.3.1.5.3 1.2.4 2.2.2 2.3-.1 0-.2.1-.2.1s0 .1-.1.2h.6v.1c-.1.1-.2.2-.3.2l-1.5.6c-.2.1-.3.1-.5.2-.4.1-.8.2-1.2.4-.2.1-.4.3-.5.6-.1.2-.1.3-.3.4-.3.2-.7.3-1 .5H.3c-.1 0-.4.1-.4.2-.1.2-.1.5-.1.7v.4c0 .2-.1.4 0 .5.3.4.4.7.3 1.1 0 .2 0 .4-.1.5-.1.3 0 .7-.3.9v.1c.2.1.3.2.5.2h1.6c.1 0 .2 0 .3.1 0 .1 0 .2-.1.3 0 .3-.3.5-.6.6-.1 0-.2.1-.2.2s.1.2.1.2c.3.1.5.2.7.3.1.1.3.2.4.2.3.1.3.1.3.4-.1.2-.2.4-.2.5 0 .7-.4 1.3-.5 1.9-.1.2-.2.5-.3.7 0 .1 0 .3.1.4.1.1.4.1.5 0 .3-.3.7-.3 1.1-.3h.8L4 39c0 .1 0 .2-.1.3h.3c.3-.1.5-.2.8-.3.3-.1.4-.1.5.2.1.3 0 .7-.2.9-.1.1-.1.3 0 .5.2.3.1.5-.2.6-.3.1-.4.4-.5.7 0 .1 0 .2.2.3.1 0 .2.1.2.2.1.2.2.5.2.7 0 .3.1.6 0 .8 0 .1 0 .2.2.2 0 0 .1.1.1.2s0 .1-.1.2c-.2.4-.7.5-1 .8-.1.1-.3.2-.4.4-.1.3 0 .6 0 .9v.5c0 .3-.1.5-.1.8 0 .2 0 .4.1.6.1.3 0 .6-.1.9v.6h.3c0-.1 0-.2.1-.3.1-.1.2-.3.3-.4.2-.1.4 0 .5.2.1.1.1.3 0 .4-.2.1-.4.3-.7.4-.1.1-.2.1-.1.2s.1.3-.1.4c-.3.2-.4.5-.3.8 0 .2.1.4.2.6.3.4.5.8.9 1.1.4.3.9.4 1.4.6.1.1.3.3.3.4 0 .3.2.6.4.9.1-.1.3-.2.4-.3.4-.3 1-.1 1.5 0s.7.1.6.3c-.1.2-.2.3-.2.5s-.1.4.2.5c.1 0 .2.2.3.3.3.2.6.4 1 .3.4 0 .6.2.6.6v.2h.1c.3-.1.5 0 .6.3 0 0 0 .1.1.1.3.2.3.3.2.6v.2c.2.3.4.6.8.8.2.1.3.2.4.4.1.3.3.5.6.6.1 0 .2.1.3.1.1.1.3.1.4.3.2.4 17.3-1 17.7-1h1.7V60v-.1c.3-.3.7-.4.8-.9.2-.1.5-.3.7-.3.5-.1 1-.1 1.5-.3.3-.1.7-.1 1-.1.6-.1 1.1-.1 1.7-.1.1 0 .3-.1.4-.1.2-.1.3-.2.5-.2.7-.1 1.4-.1 2.1-.1.2 0 .4-.1.6-.1.6 0 1.2 0 1.7-.1.5 0 1.1 0 1.6-.1H49.8c.6 0 1.3-.1 1.9-.1h.4c.3 0 .7.1 1 .1h.9c.4-.1.7-.1 1 .2 0 0 .1.1.2.1H59.4c.3 0 .6.1.9.1h.8v.1c-.4.2-.8.4-1.1.5v.1h.8c.5-.1 1.1-.1 1.6-.2s1-.1 1.4-.3c.2-.1.4-.1.6.1l-.3.3c.3.2.3.2.6.2.5-.1.9-.2 1.4-.3.5-.1 1.1-.1 1.7-.2.7-.1 1.4-.2 2.1-.2h.2c-.1 0-.4 0-.3.3.3 0 .6-.1.9-.1.3 0 .6-.1.8-.2.6-.1 1.1-.3 1.7-.3h.9c.7 0 1.4-.1 2-.1h1.5c.4 0 .7 0 1 .2.2.2.3.1.4-.1 0-.1.1-.2.2-.2.2 0 .5-.1.7-.1h1.2c.6 0 1.1-.1 1.7-.2.3 0 .6 0 .8-.1.4-.1.8-.1 1.2.1.3.2.7.3 1 .1.2-.1.8-.3.7-.6.1 0 .3.1.4.1.2 0 .4-.1.3-.2 0-.1-.1-.2-.2-.2-.3-.3-.7-.5-1-.8-.2-.2-.4-.5-.6-.7-.1-.1 0-.5.1-.5.2 0 .4 0 .5-.1.3 0 .4-.1.5-.4 0-.1.1-.3.2-.4.1-.1.3-.2.5-.3-.2-.1-.3-.2-.4-.3.2.1.2 0 .1-.1.1 0 .2-.1.3-.1.2 0 .3.1.5.2.3.1.5.2.8.2.1 0 .3 0 .4-.1.2-.1 0-.3-.1-.4-.1-.1-.2-.2-.4-.3-.2-.1-.2-.2-.1-.2h.3c.3.2.5.4.8.5.2.1.4.1.6 0 .2-.1.1-.6 0-.8-.3-.2-.2-.3 0-.5s.1-.6 0-.8c-.3-.3-.2-.9.2-1.1.2 0 .4-.1.5-.1.5-.1 1.1-.2 1.6-.3.2-.1.3-.2.1-.4-.2-.2-.4-.3-.7-.5-.3-.2-.3-.3-.1-.5.3-.4.8-.7.9-1.3h.1c.5-.3.9-.2.9-.4-.1-.1 0-.2.1-.2.3 0 .6-.1.9-.1.4 0 .5-.4.2-.7-.1-.1-.2-.2-.2-.3-.1-.3 0-.7-.5-.8l-.1-.1.3-.3c0-.1.1-.1.1-.2 0-.2 0-.5-.1-.7 0-.1-.1-.2-.1-.3-.2-.2-.3-.4-.2-.7.4.1.4.1.5-.3v-.1c.3-.1.4-.3.3-.6 0-.1 0-.1.1-.2.2-.4.1-.9.1-1.4v-.2h.2c.2.3.4.1.5 0 .1 0 .1-.1.2-.1v-.2-.1h-.1c0-.1-.1-.1-.1-.2v-.4c0-.1.1-.1.2-.2 0-.4.1-.9.1-1.3-.1-.2-.2-.4-.4-.6-.2-.3-.5-.7-.7-1-.2-.4-.6-.7-1-.8-.6-.1-.7-.7-1.2-.9v-.1c.3-.1.7-.2 1-.3-.1-.1-.2-.1-.3-.2-.4-.1-.5-.4-.6-.7 0-.1-.1-.2-.1-.3.1-.4.2-.8 0-1.2v-.2c.1-.3.2-.6.5-.8.2-.2.2-.3-.1-.5-.1 0-.1-.1-.2-.1.2-.1.3-.2.5-.3.2-.1.4-.3.2-.6l-.3-.6c-.1-.2-.4-.5-.3-.7 0-.4.2-.7.3-1 .1-.2.3-.4.2-.7 0-.4.1-.7.6-.8.2 0 .3-.1.5-.1.1 0 .1-.1.2-.1v-.1c-.2 0-.5-.1-.7-.1-.3 0-.5-.1-.6-.4-.1-.1-.1-.3-.2-.4-.1-.2-.1-.4.1-.5.2-.1.4-.3.5-.5.1-.1.1-.2.1-.3-.2-.5-.5-.9-.6-1.4v-.1h-.1v-.2h-.1c-.1 0-.1-.1-.1-.2s-.1-.3-.1-.4c-.1-.3-.1-.5.2-.7.3-.2.3-.7 0-1-.1-.1-.1-.2-.1-.3v-.2c-.1-.1-.2-.3-.2-.4-.1-.4-.3-.7-.5-1-.4-.4-.8-.9-1-1.4v-.2c.1 0 .2 0 .2.1l.1.1c.3 0 .5.1.7.4.1.1.2.3.3.4.1.1.3.2.5.1.1-.1.3-.2.1-.4-.2-.3-.3-.6-.6-.9-.2-.3-.2-.4.1-.6.3-.1.7-.3 1-.3.7-.1 1.1-.4 1.4-1-.6.4-.8.3-1 .3\"/></defs><clipPath id=\"f\"><use xlink:href=\"#e\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#f)\"><defs><path id=\"g\" d=\"M0 0h96v61H0z\"/></defs><clipPath id=\"h\"><use xlink:href=\"#g\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#h)\" fill=\"#a80073\" d=\"M-5-5h106v71H-5z\"/></g></g></g></svg>";
|
|
4
|
-
|
|
5
|
-
module.exports = PriceSplashPrio;
|
|
6
|
-
//# sourceMappingURL=pricesplash-prio.svg.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pricesplash-prio.svg.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
var PriceSplashRegular = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 96 61\"><defs><path id=\"a\" d=\"M0 0h96v61H0z\"/></defs><clipPath id=\"b\"><use xlink:href=\"#a\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#b)\"><defs><path id=\"c\" d=\"M0 0h96v62H0z\"/></defs><clipPath id=\"d\"><use xlink:href=\"#c\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#d)\"><defs><path id=\"e\" d=\"M94.1 12c-.5 0-.9-.1-1.4-.1-.3 0-.5 0-.8-.1-.2 0-.4-.1-.5-.2l-.6-.3c-.2-.1-.3-.2-.3-.4 0-.3 0-.6-.3-.8-.2-.1-.4-.3-.6-.4-.2-.1-.2-.2-.2-.4s.1-.4 0-.6c-.1-.3-.2-.5-.5-.7-.3-.2-.5-.2-.8-.2h-.6c-.1 0-.2.1-.3.1-.1.1-.1.2-.2.2s-.2 0-.3-.1c0-.1 0-.2.1-.2.1-.1.1-.1.2-.1.2-.1.2-.2.1-.4-.2-.2-.3-.4-.4-.6-.1-.1-.2-.3-.3-.4-.2-.1-.2-.3-.2-.4 0-.2-.2-.3-.4-.4h-.3l-.1-.1c.1-.1.2-.2.3-.2.1-.1.3-.1.3-.2.1-.1.1-.3.1-.4 0-.2-.2-.1-.3-.1-.3.1-.6.1-1-.1l.2-.2c.2-.2.5-.4.7-.5.4-.3.8-.4 1.3-.6.1 0 .3-.1.4-.2.1-.2.2-.4.2-.7-.4-.1-.4-.1-.3-.4v-.1c0-.1-.1-.1-.1-.1l-.1.1v.1c-.1.2-.2.3-.3.4 0 0-.2 0-.2-.1-.1-.1-.1-.3-.1-.4 0-.1 0-.2-.1-.3-.1-.2-.2-.4-.5-.3h-.1c-.2-.1-.3-.5-.2-.8h-.4c-.1.1-.1.1-.2.1h-.3V.2c-.3 0-.6-.1-.8-.2h-.8c0 .1-.1.2-.2.2-.2.1-.5 0-.8-.1-.3-.1-.5-.1-.7 0-.6.2-1.2 0-1.8.1h-2.1c-.4 0-.8 0-1.2.1h-1.2c-.3 0-.7.1-1 .1h-1.6c-.3 0-.7.1-1 .1H63.7c-.8 0-1.6.1-2.5.1-.8 0-1.6 0-2.4.1-.5 0-1 .1-1.5.1h-1c-.4 0-.9.1-1.3.1-.7.1-1.3.2-2 .2-.3 0-.7.1-1 .1-.5 0-1 .1-1.5.1-.7.1-1.5.2-2.2.3-.6.1-1.3.1-1.9.2l-1.8.3c-1 .2-2.1.3-3.1.4-.7.1-1.4.2-2.2.3-.3 0-.6.1-.9.1-.7.1-1.4.3-2 .4-.6.1-1.1.2-1.7.3-.8.2-1.5.3-2.3.5-.4.1-.8.1-1.3.2s-.9.2-1.4.4c-1.3.3-2.6.6-4 .9-.4.1-.7.2-1.1.1-.1 0-.3 0-.4.1-.2 0-.3.1-.5.1l-1.2.3c-.3.1-.7.2-1 .3-.3.5-.8.5-1.2.6-.3.1-.6.1-.8.2-.2 0-.3.1-.5.2h-.2c0-.1-1.1-.3-1.5-.2-.7.3-.8.3-1.5.6-.8.3-1.5.7-2.3 1-.3.1-.6.4-1 .2h-.2l-.6.3c-.4.3-.7.5-.8 1 0 .2-.2.4-.4.5l-.6.3c-.7.3-1 .9-.9 1.6 0 .1 0 .2-.1.3-.1.2-.1.3-.1.5 0 .4 0 .8-.4 1.1-.4.3-.8.7-1 1.2-.1.4-.4.7-.9 1-.1.1-.3.2-.3.3-.2.2-.3.5-.5.7-.3.4-.7.8-1.1 1.1-.2.2 0 1 .2 2 .1.3.1.6.2.9 0 .1.6.1.6.1 0 .2-.5.4-.4.6 0 .2.1.3.1.5.3 1.2.4 2.2.2 2.3-.1 0-.2.1-.2.1s0 .1-.1.2h.6v.1c-.1.1-.2.2-.3.2l-1.5.6c-.2.1-.3.1-.5.2-.4.1-.8.2-1.2.4-.2.1-.4.3-.5.6-.1.2-.1.3-.3.4-.3.2-.7.3-1 .5H.3c-.1 0-.4.1-.4.2-.1.2-.1.5-.1.7v.4c0 .2-.1.4 0 .5.3.4.4.7.3 1.1 0 .2 0 .4-.1.5-.1.3 0 .7-.3.9v.1c.2.1.3.2.5.2h1.6c.1 0 .2 0 .3.1 0 .1 0 .2-.1.3 0 .3-.3.5-.6.6-.1 0-.2.1-.2.2s.1.2.1.2c.3.1.5.2.7.3.1.1.3.2.4.2.3.1.3.1.3.4-.1.2-.2.4-.2.5 0 .7-.4 1.3-.5 1.9-.1.2-.2.5-.3.7 0 .1 0 .3.1.4.1.1.4.1.5 0 .3-.3.7-.3 1.1-.3h.8L4 39c0 .1 0 .2-.1.3h.3c.3-.1.5-.2.8-.3.3-.1.4-.1.5.2.1.3 0 .7-.2.9-.1.1-.1.3 0 .5.2.3.1.5-.2.6-.3.1-.4.4-.5.7 0 .1 0 .2.2.3.1 0 .2.1.2.2.1.2.2.5.2.7 0 .3.1.6 0 .8 0 .1 0 .2.2.2 0 0 .1.1.1.2s0 .1-.1.2c-.2.4-.7.5-1 .8-.1.1-.3.2-.4.4-.1.3 0 .6 0 .9v.5c0 .3-.1.5-.1.8 0 .2 0 .4.1.6.1.3 0 .6-.1.9v.6h.3c0-.1 0-.2.1-.3.1-.1.2-.3.3-.4.2-.1.4 0 .5.2.1.1.1.3 0 .4-.2.1-.4.3-.7.4-.1.1-.2.1-.1.2s.1.3-.1.4c-.3.2-.4.5-.3.8 0 .2.1.4.2.6.3.4.5.8.9 1.1.4.3.9.4 1.4.6.1.1.3.3.3.4 0 .3.2.6.4.9.1-.1.3-.2.4-.3.4-.3 1-.1 1.5 0s.7.1.6.3c-.1.2-.2.3-.2.5s-.1.4.2.5c.1 0 .2.2.3.3.3.2.6.4 1 .3.4 0 .6.2.6.6v.2h.1c.3-.1.5 0 .6.3 0 0 0 .1.1.1.3.2.3.3.2.6v.2c.2.3.4.6.8.8.2.1.3.2.4.4.1.3.3.5.6.6.1 0 .2.1.3.1.1.1.3.1.4.3.2.4 17.3-1 17.7-1h1.7V60v-.1c.3-.3.7-.4.8-.9.2-.1.5-.3.7-.3.5-.1 1-.1 1.5-.3.3-.1.7-.1 1-.1.6-.1 1.1-.1 1.7-.1.1 0 .3-.1.4-.1.2-.1.3-.2.5-.2.7-.1 1.4-.1 2.1-.1.2 0 .4-.1.6-.1.6 0 1.2 0 1.7-.1.5 0 1.1 0 1.6-.1H49.8c.6 0 1.3-.1 1.9-.1h.4c.3 0 .7.1 1 .1h.9c.4-.1.7-.1 1 .2 0 0 .1.1.2.1H59.4c.3 0 .6.1.9.1h.8v.1c-.4.2-.8.4-1.1.5v.1h.8c.5-.1 1.1-.1 1.6-.2s1-.1 1.4-.3c.2-.1.4-.1.6.1l-.3.3c.3.2.3.2.6.2.5-.1.9-.2 1.4-.3.5-.1 1.1-.1 1.7-.2.7-.1 1.4-.2 2.1-.2h.2c-.1 0-.4 0-.3.3.3 0 .6-.1.9-.1.3 0 .6-.1.8-.2.6-.1 1.1-.3 1.7-.3h.9c.7 0 1.4-.1 2-.1h1.5c.4 0 .7 0 1 .2.2.2.3.1.4-.1 0-.1.1-.2.2-.2.2 0 .5-.1.7-.1h1.2c.6 0 1.1-.1 1.7-.2.3 0 .6 0 .8-.1.4-.1.8-.1 1.2.1.3.2.7.3 1 .1.2-.1.8-.3.7-.6.1 0 .3.1.4.1.2 0 .4-.1.3-.2 0-.1-.1-.2-.2-.2-.3-.3-.7-.5-1-.8-.2-.2-.4-.5-.6-.7-.1-.1 0-.5.1-.5.2 0 .4 0 .5-.1.3 0 .4-.1.5-.4 0-.1.1-.3.2-.4.1-.1.3-.2.5-.3-.2-.1-.3-.2-.4-.3.2.1.2 0 .1-.1.1 0 .2-.1.3-.1.2 0 .3.1.5.2.3.1.5.2.8.2.1 0 .3 0 .4-.1.2-.1 0-.3-.1-.4-.1-.1-.2-.2-.4-.3-.2-.1-.2-.2-.1-.2h.3c.3.2.5.4.8.5.2.1.4.1.6 0 .2-.1.1-.6 0-.8-.3-.2-.2-.3 0-.5s.1-.6 0-.8c-.3-.3-.2-.9.2-1.1.2 0 .4-.1.5-.1.5-.1 1.1-.2 1.6-.3.2-.1.3-.2.1-.4-.2-.2-.4-.3-.7-.5-.3-.2-.3-.3-.1-.5.3-.4.8-.7.9-1.3h.1c.5-.3.9-.2.9-.4-.1-.1 0-.2.1-.2.3 0 .6-.1.9-.1.4 0 .5-.4.2-.7-.1-.1-.2-.2-.2-.3-.1-.3 0-.7-.5-.8l-.1-.1.3-.3c0-.1.1-.1.1-.2 0-.2 0-.5-.1-.7 0-.1-.1-.2-.1-.3-.2-.2-.3-.4-.2-.7.4.1.4.1.5-.3v-.1c.3-.1.4-.3.3-.6 0-.1 0-.1.1-.2.2-.4.1-.9.1-1.4v-.2h.2c.2.3.4.1.5 0 .1 0 .1-.1.2-.1v-.2-.1h-.1c0-.1-.1-.1-.1-.2v-.4c0-.1.1-.1.2-.2 0-.4.1-.9.1-1.3-.1-.2-.2-.4-.4-.6-.2-.3-.5-.7-.7-1-.2-.4-.6-.7-1-.8-.6-.1-.7-.7-1.2-.9v-.1c.3-.1.7-.2 1-.3-.1-.1-.2-.1-.3-.2-.4-.1-.5-.4-.6-.7 0-.1-.1-.2-.1-.3.1-.4.2-.8 0-1.2v-.2c.1-.3.2-.6.5-.8.2-.2.2-.3-.1-.5-.1 0-.1-.1-.2-.1.2-.1.3-.2.5-.3.2-.1.4-.3.2-.6l-.3-.6c-.1-.2-.4-.5-.3-.7 0-.4.2-.7.3-1 .1-.2.3-.4.2-.7 0-.4.1-.7.6-.8.2 0 .3-.1.5-.1.1 0 .1-.1.2-.1v-.1c-.2 0-.5-.1-.7-.1-.3 0-.5-.1-.6-.4-.1-.1-.1-.3-.2-.4-.1-.2-.1-.4.1-.5.2-.1.4-.3.5-.5.1-.1.1-.2.1-.3-.2-.5-.5-.9-.6-1.4v-.1h-.1v-.2h-.1c-.1 0-.1-.1-.1-.2s-.1-.3-.1-.4c-.1-.3-.1-.5.2-.7.3-.2.3-.7 0-1-.1-.1-.1-.2-.1-.3v-.2c-.1-.1-.2-.3-.2-.4-.1-.4-.3-.7-.5-1-.4-.4-.8-.9-1-1.4v-.2c.1 0 .2 0 .2.1l.1.1c.3 0 .5.1.7.4.1.1.2.3.3.4.1.1.3.2.5.1.1-.1.3-.2.1-.4-.2-.3-.3-.6-.6-.9-.2-.3-.2-.4.1-.6.3-.1.7-.3 1-.3.7-.1 1.1-.4 1.4-1-.6.4-.8.3-1 .3\"/></defs><clipPath id=\"f\"><use xlink:href=\"#e\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#f)\"><defs><path id=\"g\" d=\"M0 0h96v61H0z\"/></defs><clipPath id=\"h\"><use xlink:href=\"#g\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#h)\" fill=\"#ffe522\" d=\"M-5-5h106v71H-5z\"/></g></g></g></svg>";
|
|
4
|
-
|
|
5
|
-
module.exports = PriceSplashRegular;
|
|
6
|
-
//# sourceMappingURL=pricesplash.svg.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pricesplash.svg.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
var PriceSplashKlipp = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 96 61\"><defs><path id=\"a\" d=\"M0 0h96v61H0z\"/></defs><clipPath id=\"b\"><use xlink:href=\"#a\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#b)\"><defs><path id=\"c\" d=\"M0 0h96v62H0z\"/></defs><clipPath id=\"d\"><use xlink:href=\"#c\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#d)\"><defs><path id=\"e\" d=\"M94.1 12c-.5 0-.9-.1-1.4-.1-.3 0-.5 0-.8-.1-.2 0-.4-.1-.5-.2l-.6-.3c-.2-.1-.3-.2-.3-.4 0-.3 0-.6-.3-.8-.2-.1-.4-.3-.6-.4-.2-.1-.2-.2-.2-.4s.1-.4 0-.6c-.1-.3-.2-.5-.5-.7-.3-.2-.5-.2-.8-.2h-.6c-.1 0-.2.1-.3.1-.1.1-.1.2-.2.2s-.2 0-.3-.1c0-.1 0-.2.1-.2.1-.1.1-.1.2-.1.2-.1.2-.2.1-.4-.2-.2-.3-.4-.4-.6-.1-.1-.2-.3-.3-.4-.2-.1-.2-.3-.2-.4 0-.2-.2-.3-.4-.4h-.3l-.1-.1c.1-.1.2-.2.3-.2.1-.1.3-.1.3-.2.1-.1.1-.3.1-.4 0-.2-.2-.1-.3-.1-.3.1-.6.1-1-.1l.2-.2c.2-.2.5-.4.7-.5.4-.3.8-.4 1.3-.6.1 0 .3-.1.4-.2.1-.2.2-.4.2-.7-.4-.1-.4-.1-.3-.4v-.1c0-.1-.1-.1-.1-.1l-.1.1v.1c-.1.2-.2.3-.3.4 0 0-.2 0-.2-.1-.1-.1-.1-.3-.1-.4 0-.1 0-.2-.1-.3-.1-.2-.2-.4-.5-.3h-.1c-.2-.1-.3-.5-.2-.8h-.4c-.1.1-.1.1-.2.1h-.3V.2c-.3 0-.6-.1-.8-.2h-.8c0 .1-.1.2-.2.2-.2.1-.5 0-.8-.1-.3-.1-.5-.1-.7 0-.6.2-1.2 0-1.8.1h-2.1c-.4 0-.8 0-1.2.1h-1.2c-.3 0-.7.1-1 .1h-1.6c-.3 0-.7.1-1 .1H63.7c-.8 0-1.6.1-2.5.1-.8 0-1.6 0-2.4.1-.5 0-1 .1-1.5.1h-1c-.4 0-.9.1-1.3.1-.7.1-1.3.2-2 .2-.3 0-.7.1-1 .1-.5 0-1 .1-1.5.1-.7.1-1.5.2-2.2.3-.6.1-1.3.1-1.9.2l-1.8.3c-1 .2-2.1.3-3.1.4-.7.1-1.4.2-2.2.3-.3 0-.6.1-.9.1-.7.1-1.4.3-2 .4-.6.1-1.1.2-1.7.3-.8.2-1.5.3-2.3.5-.4.1-.8.1-1.3.2s-.9.2-1.4.4c-1.3.3-2.6.6-4 .9-.4.1-.7.2-1.1.1-.1 0-.3 0-.4.1-.2 0-.3.1-.5.1l-1.2.3c-.3.1-.7.2-1 .3-.3.5-.8.5-1.2.6-.3.1-.6.1-.8.2-.2 0-.3.1-.5.2h-.2c0-.1-1.1-.3-1.5-.2-.7.3-.8.3-1.5.6-.8.3-1.5.7-2.3 1-.3.1-.6.4-1 .2h-.2l-.6.3c-.4.3-.7.5-.8 1 0 .2-.2.4-.4.5l-.6.3c-.7.3-1 .9-.9 1.6 0 .1 0 .2-.1.3-.1.2-.1.3-.1.5 0 .4 0 .8-.4 1.1-.4.3-.8.7-1 1.2-.1.4-.4.7-.9 1-.1.1-.3.2-.3.3-.2.2-.3.5-.5.7-.3.4-.7.8-1.1 1.1-.2.2 0 1 .2 2 .1.3.1.6.2.9 0 .1.6.1.6.1 0 .2-.5.4-.4.6 0 .2.1.3.1.5.3 1.2.4 2.2.2 2.3-.1 0-.2.1-.2.1s0 .1-.1.2h.6v.1c-.1.1-.2.2-.3.2l-1.5.6c-.2.1-.3.1-.5.2-.4.1-.8.2-1.2.4-.2.1-.4.3-.5.6-.1.2-.1.3-.3.4-.3.2-.7.3-1 .5H.3c-.1 0-.4.1-.4.2-.1.2-.1.5-.1.7v.4c0 .2-.1.4 0 .5.3.4.4.7.3 1.1 0 .2 0 .4-.1.5-.1.3 0 .7-.3.9v.1c.2.1.3.2.5.2h1.6c.1 0 .2 0 .3.1 0 .1 0 .2-.1.3 0 .3-.3.5-.6.6-.1 0-.2.1-.2.2s.1.2.1.2c.3.1.5.2.7.3.1.1.3.2.4.2.3.1.3.1.3.4-.1.2-.2.4-.2.5 0 .7-.4 1.3-.5 1.9-.1.2-.2.5-.3.7 0 .1 0 .3.1.4.1.1.4.1.5 0 .3-.3.7-.3 1.1-.3h.8L4 39c0 .1 0 .2-.1.3h.3c.3-.1.5-.2.8-.3.3-.1.4-.1.5.2.1.3 0 .7-.2.9-.1.1-.1.3 0 .5.2.3.1.5-.2.6-.3.1-.4.4-.5.7 0 .1 0 .2.2.3.1 0 .2.1.2.2.1.2.2.5.2.7 0 .3.1.6 0 .8 0 .1 0 .2.2.2 0 0 .1.1.1.2s0 .1-.1.2c-.2.4-.7.5-1 .8-.1.1-.3.2-.4.4-.1.3 0 .6 0 .9v.5c0 .3-.1.5-.1.8 0 .2 0 .4.1.6.1.3 0 .6-.1.9v.6h.3c0-.1 0-.2.1-.3.1-.1.2-.3.3-.4.2-.1.4 0 .5.2.1.1.1.3 0 .4-.2.1-.4.3-.7.4-.1.1-.2.1-.1.2s.1.3-.1.4c-.3.2-.4.5-.3.8 0 .2.1.4.2.6.3.4.5.8.9 1.1.4.3.9.4 1.4.6.1.1.3.3.3.4 0 .3.2.6.4.9.1-.1.3-.2.4-.3.4-.3 1-.1 1.5 0s.7.1.6.3c-.1.2-.2.3-.2.5s-.1.4.2.5c.1 0 .2.2.3.3.3.2.6.4 1 .3.4 0 .6.2.6.6v.2h.1c.3-.1.5 0 .6.3 0 0 0 .1.1.1.3.2.3.3.2.6v.2c.2.3.4.6.8.8.2.1.3.2.4.4.1.3.3.5.6.6.1 0 .2.1.3.1.1.1.3.1.4.3.2.4 17.3-1 17.7-1h1.7V60v-.1c.3-.3.7-.4.8-.9.2-.1.5-.3.7-.3.5-.1 1-.1 1.5-.3.3-.1.7-.1 1-.1.6-.1 1.1-.1 1.7-.1.1 0 .3-.1.4-.1.2-.1.3-.2.5-.2.7-.1 1.4-.1 2.1-.1.2 0 .4-.1.6-.1.6 0 1.2 0 1.7-.1.5 0 1.1 0 1.6-.1H49.8c.6 0 1.3-.1 1.9-.1h.4c.3 0 .7.1 1 .1h.9c.4-.1.7-.1 1 .2 0 0 .1.1.2.1H59.4c.3 0 .6.1.9.1h.8v.1c-.4.2-.8.4-1.1.5v.1h.8c.5-.1 1.1-.1 1.6-.2s1-.1 1.4-.3c.2-.1.4-.1.6.1l-.3.3c.3.2.3.2.6.2.5-.1.9-.2 1.4-.3.5-.1 1.1-.1 1.7-.2.7-.1 1.4-.2 2.1-.2h.2c-.1 0-.4 0-.3.3.3 0 .6-.1.9-.1.3 0 .6-.1.8-.2.6-.1 1.1-.3 1.7-.3h.9c.7 0 1.4-.1 2-.1h1.5c.4 0 .7 0 1 .2.2.2.3.1.4-.1 0-.1.1-.2.2-.2.2 0 .5-.1.7-.1h1.2c.6 0 1.1-.1 1.7-.2.3 0 .6 0 .8-.1.4-.1.8-.1 1.2.1.3.2.7.3 1 .1.2-.1.8-.3.7-.6.1 0 .3.1.4.1.2 0 .4-.1.3-.2 0-.1-.1-.2-.2-.2-.3-.3-.7-.5-1-.8-.2-.2-.4-.5-.6-.7-.1-.1 0-.5.1-.5.2 0 .4 0 .5-.1.3 0 .4-.1.5-.4 0-.1.1-.3.2-.4.1-.1.3-.2.5-.3-.2-.1-.3-.2-.4-.3.2.1.2 0 .1-.1.1 0 .2-.1.3-.1.2 0 .3.1.5.2.3.1.5.2.8.2.1 0 .3 0 .4-.1.2-.1 0-.3-.1-.4-.1-.1-.2-.2-.4-.3-.2-.1-.2-.2-.1-.2h.3c.3.2.5.4.8.5.2.1.4.1.6 0 .2-.1.1-.6 0-.8-.3-.2-.2-.3 0-.5s.1-.6 0-.8c-.3-.3-.2-.9.2-1.1.2 0 .4-.1.5-.1.5-.1 1.1-.2 1.6-.3.2-.1.3-.2.1-.4-.2-.2-.4-.3-.7-.5-.3-.2-.3-.3-.1-.5.3-.4.8-.7.9-1.3h.1c.5-.3.9-.2.9-.4-.1-.1 0-.2.1-.2.3 0 .6-.1.9-.1.4 0 .5-.4.2-.7-.1-.1-.2-.2-.2-.3-.1-.3 0-.7-.5-.8l-.1-.1.3-.3c0-.1.1-.1.1-.2 0-.2 0-.5-.1-.7 0-.1-.1-.2-.1-.3-.2-.2-.3-.4-.2-.7.4.1.4.1.5-.3v-.1c.3-.1.4-.3.3-.6 0-.1 0-.1.1-.2.2-.4.1-.9.1-1.4v-.2h.2c.2.3.4.1.5 0 .1 0 .1-.1.2-.1v-.2-.1h-.1c0-.1-.1-.1-.1-.2v-.4c0-.1.1-.1.2-.2 0-.4.1-.9.1-1.3-.1-.2-.2-.4-.4-.6-.2-.3-.5-.7-.7-1-.2-.4-.6-.7-1-.8-.6-.1-.7-.7-1.2-.9v-.1c.3-.1.7-.2 1-.3-.1-.1-.2-.1-.3-.2-.4-.1-.5-.4-.6-.7 0-.1-.1-.2-.1-.3.1-.4.2-.8 0-1.2v-.2c.1-.3.2-.6.5-.8.2-.2.2-.3-.1-.5-.1 0-.1-.1-.2-.1.2-.1.3-.2.5-.3.2-.1.4-.3.2-.6l-.3-.6c-.1-.2-.4-.5-.3-.7 0-.4.2-.7.3-1 .1-.2.3-.4.2-.7 0-.4.1-.7.6-.8.2 0 .3-.1.5-.1.1 0 .1-.1.2-.1v-.1c-.2 0-.5-.1-.7-.1-.3 0-.5-.1-.6-.4-.1-.1-.1-.3-.2-.4-.1-.2-.1-.4.1-.5.2-.1.4-.3.5-.5.1-.1.1-.2.1-.3-.2-.5-.5-.9-.6-1.4v-.1h-.1v-.2h-.1c-.1 0-.1-.1-.1-.2s-.1-.3-.1-.4c-.1-.3-.1-.5.2-.7.3-.2.3-.7 0-1-.1-.1-.1-.2-.1-.3v-.2c-.1-.1-.2-.3-.2-.4-.1-.4-.3-.7-.5-1-.4-.4-.8-.9-1-1.4v-.2c.1 0 .2 0 .2.1l.1.1c.3 0 .5.1.7.4.1.1.2.3.3.4.1.1.3.2.5.1.1-.1.3-.2.1-.4-.2-.3-.3-.6-.6-.9-.2-.3-.2-.4.1-.6.3-.1.7-.3 1-.3.7-.1 1.1-.4 1.4-1-.6.4-.8.3-1 .3\"/></defs><clipPath id=\"f\"><use xlink:href=\"#e\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#f)\"><defs><path id=\"g\" d=\"M0 0h96v61H0z\"/></defs><clipPath id=\"h\"><use xlink:href=\"#g\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#h)\" fill=\"#E42313\" d=\"M-5-5h106v71H-5z\"/></g></g></g></svg>";
|
|
2
|
-
|
|
3
|
-
export { PriceSplashKlipp as default };
|
|
4
|
-
//# sourceMappingURL=pricesplash-klipp.svg.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pricesplash-klipp.svg.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
var PriceSplashPrio = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 96 61\"><defs><path id=\"a\" d=\"M0 0h96v61H0z\"/></defs><clipPath id=\"b\"><use xlink:href=\"#a\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#b)\"><defs><path id=\"c\" d=\"M0 0h96v62H0z\"/></defs><clipPath id=\"d\"><use xlink:href=\"#c\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#d)\"><defs><path id=\"e\" d=\"M94.1 12c-.5 0-.9-.1-1.4-.1-.3 0-.5 0-.8-.1-.2 0-.4-.1-.5-.2l-.6-.3c-.2-.1-.3-.2-.3-.4 0-.3 0-.6-.3-.8-.2-.1-.4-.3-.6-.4-.2-.1-.2-.2-.2-.4s.1-.4 0-.6c-.1-.3-.2-.5-.5-.7-.3-.2-.5-.2-.8-.2h-.6c-.1 0-.2.1-.3.1-.1.1-.1.2-.2.2s-.2 0-.3-.1c0-.1 0-.2.1-.2.1-.1.1-.1.2-.1.2-.1.2-.2.1-.4-.2-.2-.3-.4-.4-.6-.1-.1-.2-.3-.3-.4-.2-.1-.2-.3-.2-.4 0-.2-.2-.3-.4-.4h-.3l-.1-.1c.1-.1.2-.2.3-.2.1-.1.3-.1.3-.2.1-.1.1-.3.1-.4 0-.2-.2-.1-.3-.1-.3.1-.6.1-1-.1l.2-.2c.2-.2.5-.4.7-.5.4-.3.8-.4 1.3-.6.1 0 .3-.1.4-.2.1-.2.2-.4.2-.7-.4-.1-.4-.1-.3-.4v-.1c0-.1-.1-.1-.1-.1l-.1.1v.1c-.1.2-.2.3-.3.4 0 0-.2 0-.2-.1-.1-.1-.1-.3-.1-.4 0-.1 0-.2-.1-.3-.1-.2-.2-.4-.5-.3h-.1c-.2-.1-.3-.5-.2-.8h-.4c-.1.1-.1.1-.2.1h-.3V.2c-.3 0-.6-.1-.8-.2h-.8c0 .1-.1.2-.2.2-.2.1-.5 0-.8-.1-.3-.1-.5-.1-.7 0-.6.2-1.2 0-1.8.1h-2.1c-.4 0-.8 0-1.2.1h-1.2c-.3 0-.7.1-1 .1h-1.6c-.3 0-.7.1-1 .1H63.7c-.8 0-1.6.1-2.5.1-.8 0-1.6 0-2.4.1-.5 0-1 .1-1.5.1h-1c-.4 0-.9.1-1.3.1-.7.1-1.3.2-2 .2-.3 0-.7.1-1 .1-.5 0-1 .1-1.5.1-.7.1-1.5.2-2.2.3-.6.1-1.3.1-1.9.2l-1.8.3c-1 .2-2.1.3-3.1.4-.7.1-1.4.2-2.2.3-.3 0-.6.1-.9.1-.7.1-1.4.3-2 .4-.6.1-1.1.2-1.7.3-.8.2-1.5.3-2.3.5-.4.1-.8.1-1.3.2s-.9.2-1.4.4c-1.3.3-2.6.6-4 .9-.4.1-.7.2-1.1.1-.1 0-.3 0-.4.1-.2 0-.3.1-.5.1l-1.2.3c-.3.1-.7.2-1 .3-.3.5-.8.5-1.2.6-.3.1-.6.1-.8.2-.2 0-.3.1-.5.2h-.2c0-.1-1.1-.3-1.5-.2-.7.3-.8.3-1.5.6-.8.3-1.5.7-2.3 1-.3.1-.6.4-1 .2h-.2l-.6.3c-.4.3-.7.5-.8 1 0 .2-.2.4-.4.5l-.6.3c-.7.3-1 .9-.9 1.6 0 .1 0 .2-.1.3-.1.2-.1.3-.1.5 0 .4 0 .8-.4 1.1-.4.3-.8.7-1 1.2-.1.4-.4.7-.9 1-.1.1-.3.2-.3.3-.2.2-.3.5-.5.7-.3.4-.7.8-1.1 1.1-.2.2 0 1 .2 2 .1.3.1.6.2.9 0 .1.6.1.6.1 0 .2-.5.4-.4.6 0 .2.1.3.1.5.3 1.2.4 2.2.2 2.3-.1 0-.2.1-.2.1s0 .1-.1.2h.6v.1c-.1.1-.2.2-.3.2l-1.5.6c-.2.1-.3.1-.5.2-.4.1-.8.2-1.2.4-.2.1-.4.3-.5.6-.1.2-.1.3-.3.4-.3.2-.7.3-1 .5H.3c-.1 0-.4.1-.4.2-.1.2-.1.5-.1.7v.4c0 .2-.1.4 0 .5.3.4.4.7.3 1.1 0 .2 0 .4-.1.5-.1.3 0 .7-.3.9v.1c.2.1.3.2.5.2h1.6c.1 0 .2 0 .3.1 0 .1 0 .2-.1.3 0 .3-.3.5-.6.6-.1 0-.2.1-.2.2s.1.2.1.2c.3.1.5.2.7.3.1.1.3.2.4.2.3.1.3.1.3.4-.1.2-.2.4-.2.5 0 .7-.4 1.3-.5 1.9-.1.2-.2.5-.3.7 0 .1 0 .3.1.4.1.1.4.1.5 0 .3-.3.7-.3 1.1-.3h.8L4 39c0 .1 0 .2-.1.3h.3c.3-.1.5-.2.8-.3.3-.1.4-.1.5.2.1.3 0 .7-.2.9-.1.1-.1.3 0 .5.2.3.1.5-.2.6-.3.1-.4.4-.5.7 0 .1 0 .2.2.3.1 0 .2.1.2.2.1.2.2.5.2.7 0 .3.1.6 0 .8 0 .1 0 .2.2.2 0 0 .1.1.1.2s0 .1-.1.2c-.2.4-.7.5-1 .8-.1.1-.3.2-.4.4-.1.3 0 .6 0 .9v.5c0 .3-.1.5-.1.8 0 .2 0 .4.1.6.1.3 0 .6-.1.9v.6h.3c0-.1 0-.2.1-.3.1-.1.2-.3.3-.4.2-.1.4 0 .5.2.1.1.1.3 0 .4-.2.1-.4.3-.7.4-.1.1-.2.1-.1.2s.1.3-.1.4c-.3.2-.4.5-.3.8 0 .2.1.4.2.6.3.4.5.8.9 1.1.4.3.9.4 1.4.6.1.1.3.3.3.4 0 .3.2.6.4.9.1-.1.3-.2.4-.3.4-.3 1-.1 1.5 0s.7.1.6.3c-.1.2-.2.3-.2.5s-.1.4.2.5c.1 0 .2.2.3.3.3.2.6.4 1 .3.4 0 .6.2.6.6v.2h.1c.3-.1.5 0 .6.3 0 0 0 .1.1.1.3.2.3.3.2.6v.2c.2.3.4.6.8.8.2.1.3.2.4.4.1.3.3.5.6.6.1 0 .2.1.3.1.1.1.3.1.4.3.2.4 17.3-1 17.7-1h1.7V60v-.1c.3-.3.7-.4.8-.9.2-.1.5-.3.7-.3.5-.1 1-.1 1.5-.3.3-.1.7-.1 1-.1.6-.1 1.1-.1 1.7-.1.1 0 .3-.1.4-.1.2-.1.3-.2.5-.2.7-.1 1.4-.1 2.1-.1.2 0 .4-.1.6-.1.6 0 1.2 0 1.7-.1.5 0 1.1 0 1.6-.1H49.8c.6 0 1.3-.1 1.9-.1h.4c.3 0 .7.1 1 .1h.9c.4-.1.7-.1 1 .2 0 0 .1.1.2.1H59.4c.3 0 .6.1.9.1h.8v.1c-.4.2-.8.4-1.1.5v.1h.8c.5-.1 1.1-.1 1.6-.2s1-.1 1.4-.3c.2-.1.4-.1.6.1l-.3.3c.3.2.3.2.6.2.5-.1.9-.2 1.4-.3.5-.1 1.1-.1 1.7-.2.7-.1 1.4-.2 2.1-.2h.2c-.1 0-.4 0-.3.3.3 0 .6-.1.9-.1.3 0 .6-.1.8-.2.6-.1 1.1-.3 1.7-.3h.9c.7 0 1.4-.1 2-.1h1.5c.4 0 .7 0 1 .2.2.2.3.1.4-.1 0-.1.1-.2.2-.2.2 0 .5-.1.7-.1h1.2c.6 0 1.1-.1 1.7-.2.3 0 .6 0 .8-.1.4-.1.8-.1 1.2.1.3.2.7.3 1 .1.2-.1.8-.3.7-.6.1 0 .3.1.4.1.2 0 .4-.1.3-.2 0-.1-.1-.2-.2-.2-.3-.3-.7-.5-1-.8-.2-.2-.4-.5-.6-.7-.1-.1 0-.5.1-.5.2 0 .4 0 .5-.1.3 0 .4-.1.5-.4 0-.1.1-.3.2-.4.1-.1.3-.2.5-.3-.2-.1-.3-.2-.4-.3.2.1.2 0 .1-.1.1 0 .2-.1.3-.1.2 0 .3.1.5.2.3.1.5.2.8.2.1 0 .3 0 .4-.1.2-.1 0-.3-.1-.4-.1-.1-.2-.2-.4-.3-.2-.1-.2-.2-.1-.2h.3c.3.2.5.4.8.5.2.1.4.1.6 0 .2-.1.1-.6 0-.8-.3-.2-.2-.3 0-.5s.1-.6 0-.8c-.3-.3-.2-.9.2-1.1.2 0 .4-.1.5-.1.5-.1 1.1-.2 1.6-.3.2-.1.3-.2.1-.4-.2-.2-.4-.3-.7-.5-.3-.2-.3-.3-.1-.5.3-.4.8-.7.9-1.3h.1c.5-.3.9-.2.9-.4-.1-.1 0-.2.1-.2.3 0 .6-.1.9-.1.4 0 .5-.4.2-.7-.1-.1-.2-.2-.2-.3-.1-.3 0-.7-.5-.8l-.1-.1.3-.3c0-.1.1-.1.1-.2 0-.2 0-.5-.1-.7 0-.1-.1-.2-.1-.3-.2-.2-.3-.4-.2-.7.4.1.4.1.5-.3v-.1c.3-.1.4-.3.3-.6 0-.1 0-.1.1-.2.2-.4.1-.9.1-1.4v-.2h.2c.2.3.4.1.5 0 .1 0 .1-.1.2-.1v-.2-.1h-.1c0-.1-.1-.1-.1-.2v-.4c0-.1.1-.1.2-.2 0-.4.1-.9.1-1.3-.1-.2-.2-.4-.4-.6-.2-.3-.5-.7-.7-1-.2-.4-.6-.7-1-.8-.6-.1-.7-.7-1.2-.9v-.1c.3-.1.7-.2 1-.3-.1-.1-.2-.1-.3-.2-.4-.1-.5-.4-.6-.7 0-.1-.1-.2-.1-.3.1-.4.2-.8 0-1.2v-.2c.1-.3.2-.6.5-.8.2-.2.2-.3-.1-.5-.1 0-.1-.1-.2-.1.2-.1.3-.2.5-.3.2-.1.4-.3.2-.6l-.3-.6c-.1-.2-.4-.5-.3-.7 0-.4.2-.7.3-1 .1-.2.3-.4.2-.7 0-.4.1-.7.6-.8.2 0 .3-.1.5-.1.1 0 .1-.1.2-.1v-.1c-.2 0-.5-.1-.7-.1-.3 0-.5-.1-.6-.4-.1-.1-.1-.3-.2-.4-.1-.2-.1-.4.1-.5.2-.1.4-.3.5-.5.1-.1.1-.2.1-.3-.2-.5-.5-.9-.6-1.4v-.1h-.1v-.2h-.1c-.1 0-.1-.1-.1-.2s-.1-.3-.1-.4c-.1-.3-.1-.5.2-.7.3-.2.3-.7 0-1-.1-.1-.1-.2-.1-.3v-.2c-.1-.1-.2-.3-.2-.4-.1-.4-.3-.7-.5-1-.4-.4-.8-.9-1-1.4v-.2c.1 0 .2 0 .2.1l.1.1c.3 0 .5.1.7.4.1.1.2.3.3.4.1.1.3.2.5.1.1-.1.3-.2.1-.4-.2-.3-.3-.6-.6-.9-.2-.3-.2-.4.1-.6.3-.1.7-.3 1-.3.7-.1 1.1-.4 1.4-1-.6.4-.8.3-1 .3\"/></defs><clipPath id=\"f\"><use xlink:href=\"#e\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#f)\"><defs><path id=\"g\" d=\"M0 0h96v61H0z\"/></defs><clipPath id=\"h\"><use xlink:href=\"#g\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#h)\" fill=\"#a80073\" d=\"M-5-5h106v71H-5z\"/></g></g></g></svg>";
|
|
2
|
-
|
|
3
|
-
export { PriceSplashPrio as default };
|
|
4
|
-
//# sourceMappingURL=pricesplash-prio.svg.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pricesplash-prio.svg.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
var PriceSplashRegular = "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 96 61\"><defs><path id=\"a\" d=\"M0 0h96v61H0z\"/></defs><clipPath id=\"b\"><use xlink:href=\"#a\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#b)\"><defs><path id=\"c\" d=\"M0 0h96v62H0z\"/></defs><clipPath id=\"d\"><use xlink:href=\"#c\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#d)\"><defs><path id=\"e\" d=\"M94.1 12c-.5 0-.9-.1-1.4-.1-.3 0-.5 0-.8-.1-.2 0-.4-.1-.5-.2l-.6-.3c-.2-.1-.3-.2-.3-.4 0-.3 0-.6-.3-.8-.2-.1-.4-.3-.6-.4-.2-.1-.2-.2-.2-.4s.1-.4 0-.6c-.1-.3-.2-.5-.5-.7-.3-.2-.5-.2-.8-.2h-.6c-.1 0-.2.1-.3.1-.1.1-.1.2-.2.2s-.2 0-.3-.1c0-.1 0-.2.1-.2.1-.1.1-.1.2-.1.2-.1.2-.2.1-.4-.2-.2-.3-.4-.4-.6-.1-.1-.2-.3-.3-.4-.2-.1-.2-.3-.2-.4 0-.2-.2-.3-.4-.4h-.3l-.1-.1c.1-.1.2-.2.3-.2.1-.1.3-.1.3-.2.1-.1.1-.3.1-.4 0-.2-.2-.1-.3-.1-.3.1-.6.1-1-.1l.2-.2c.2-.2.5-.4.7-.5.4-.3.8-.4 1.3-.6.1 0 .3-.1.4-.2.1-.2.2-.4.2-.7-.4-.1-.4-.1-.3-.4v-.1c0-.1-.1-.1-.1-.1l-.1.1v.1c-.1.2-.2.3-.3.4 0 0-.2 0-.2-.1-.1-.1-.1-.3-.1-.4 0-.1 0-.2-.1-.3-.1-.2-.2-.4-.5-.3h-.1c-.2-.1-.3-.5-.2-.8h-.4c-.1.1-.1.1-.2.1h-.3V.2c-.3 0-.6-.1-.8-.2h-.8c0 .1-.1.2-.2.2-.2.1-.5 0-.8-.1-.3-.1-.5-.1-.7 0-.6.2-1.2 0-1.8.1h-2.1c-.4 0-.8 0-1.2.1h-1.2c-.3 0-.7.1-1 .1h-1.6c-.3 0-.7.1-1 .1H63.7c-.8 0-1.6.1-2.5.1-.8 0-1.6 0-2.4.1-.5 0-1 .1-1.5.1h-1c-.4 0-.9.1-1.3.1-.7.1-1.3.2-2 .2-.3 0-.7.1-1 .1-.5 0-1 .1-1.5.1-.7.1-1.5.2-2.2.3-.6.1-1.3.1-1.9.2l-1.8.3c-1 .2-2.1.3-3.1.4-.7.1-1.4.2-2.2.3-.3 0-.6.1-.9.1-.7.1-1.4.3-2 .4-.6.1-1.1.2-1.7.3-.8.2-1.5.3-2.3.5-.4.1-.8.1-1.3.2s-.9.2-1.4.4c-1.3.3-2.6.6-4 .9-.4.1-.7.2-1.1.1-.1 0-.3 0-.4.1-.2 0-.3.1-.5.1l-1.2.3c-.3.1-.7.2-1 .3-.3.5-.8.5-1.2.6-.3.1-.6.1-.8.2-.2 0-.3.1-.5.2h-.2c0-.1-1.1-.3-1.5-.2-.7.3-.8.3-1.5.6-.8.3-1.5.7-2.3 1-.3.1-.6.4-1 .2h-.2l-.6.3c-.4.3-.7.5-.8 1 0 .2-.2.4-.4.5l-.6.3c-.7.3-1 .9-.9 1.6 0 .1 0 .2-.1.3-.1.2-.1.3-.1.5 0 .4 0 .8-.4 1.1-.4.3-.8.7-1 1.2-.1.4-.4.7-.9 1-.1.1-.3.2-.3.3-.2.2-.3.5-.5.7-.3.4-.7.8-1.1 1.1-.2.2 0 1 .2 2 .1.3.1.6.2.9 0 .1.6.1.6.1 0 .2-.5.4-.4.6 0 .2.1.3.1.5.3 1.2.4 2.2.2 2.3-.1 0-.2.1-.2.1s0 .1-.1.2h.6v.1c-.1.1-.2.2-.3.2l-1.5.6c-.2.1-.3.1-.5.2-.4.1-.8.2-1.2.4-.2.1-.4.3-.5.6-.1.2-.1.3-.3.4-.3.2-.7.3-1 .5H.3c-.1 0-.4.1-.4.2-.1.2-.1.5-.1.7v.4c0 .2-.1.4 0 .5.3.4.4.7.3 1.1 0 .2 0 .4-.1.5-.1.3 0 .7-.3.9v.1c.2.1.3.2.5.2h1.6c.1 0 .2 0 .3.1 0 .1 0 .2-.1.3 0 .3-.3.5-.6.6-.1 0-.2.1-.2.2s.1.2.1.2c.3.1.5.2.7.3.1.1.3.2.4.2.3.1.3.1.3.4-.1.2-.2.4-.2.5 0 .7-.4 1.3-.5 1.9-.1.2-.2.5-.3.7 0 .1 0 .3.1.4.1.1.4.1.5 0 .3-.3.7-.3 1.1-.3h.8L4 39c0 .1 0 .2-.1.3h.3c.3-.1.5-.2.8-.3.3-.1.4-.1.5.2.1.3 0 .7-.2.9-.1.1-.1.3 0 .5.2.3.1.5-.2.6-.3.1-.4.4-.5.7 0 .1 0 .2.2.3.1 0 .2.1.2.2.1.2.2.5.2.7 0 .3.1.6 0 .8 0 .1 0 .2.2.2 0 0 .1.1.1.2s0 .1-.1.2c-.2.4-.7.5-1 .8-.1.1-.3.2-.4.4-.1.3 0 .6 0 .9v.5c0 .3-.1.5-.1.8 0 .2 0 .4.1.6.1.3 0 .6-.1.9v.6h.3c0-.1 0-.2.1-.3.1-.1.2-.3.3-.4.2-.1.4 0 .5.2.1.1.1.3 0 .4-.2.1-.4.3-.7.4-.1.1-.2.1-.1.2s.1.3-.1.4c-.3.2-.4.5-.3.8 0 .2.1.4.2.6.3.4.5.8.9 1.1.4.3.9.4 1.4.6.1.1.3.3.3.4 0 .3.2.6.4.9.1-.1.3-.2.4-.3.4-.3 1-.1 1.5 0s.7.1.6.3c-.1.2-.2.3-.2.5s-.1.4.2.5c.1 0 .2.2.3.3.3.2.6.4 1 .3.4 0 .6.2.6.6v.2h.1c.3-.1.5 0 .6.3 0 0 0 .1.1.1.3.2.3.3.2.6v.2c.2.3.4.6.8.8.2.1.3.2.4.4.1.3.3.5.6.6.1 0 .2.1.3.1.1.1.3.1.4.3.2.4 17.3-1 17.7-1h1.7V60v-.1c.3-.3.7-.4.8-.9.2-.1.5-.3.7-.3.5-.1 1-.1 1.5-.3.3-.1.7-.1 1-.1.6-.1 1.1-.1 1.7-.1.1 0 .3-.1.4-.1.2-.1.3-.2.5-.2.7-.1 1.4-.1 2.1-.1.2 0 .4-.1.6-.1.6 0 1.2 0 1.7-.1.5 0 1.1 0 1.6-.1H49.8c.6 0 1.3-.1 1.9-.1h.4c.3 0 .7.1 1 .1h.9c.4-.1.7-.1 1 .2 0 0 .1.1.2.1H59.4c.3 0 .6.1.9.1h.8v.1c-.4.2-.8.4-1.1.5v.1h.8c.5-.1 1.1-.1 1.6-.2s1-.1 1.4-.3c.2-.1.4-.1.6.1l-.3.3c.3.2.3.2.6.2.5-.1.9-.2 1.4-.3.5-.1 1.1-.1 1.7-.2.7-.1 1.4-.2 2.1-.2h.2c-.1 0-.4 0-.3.3.3 0 .6-.1.9-.1.3 0 .6-.1.8-.2.6-.1 1.1-.3 1.7-.3h.9c.7 0 1.4-.1 2-.1h1.5c.4 0 .7 0 1 .2.2.2.3.1.4-.1 0-.1.1-.2.2-.2.2 0 .5-.1.7-.1h1.2c.6 0 1.1-.1 1.7-.2.3 0 .6 0 .8-.1.4-.1.8-.1 1.2.1.3.2.7.3 1 .1.2-.1.8-.3.7-.6.1 0 .3.1.4.1.2 0 .4-.1.3-.2 0-.1-.1-.2-.2-.2-.3-.3-.7-.5-1-.8-.2-.2-.4-.5-.6-.7-.1-.1 0-.5.1-.5.2 0 .4 0 .5-.1.3 0 .4-.1.5-.4 0-.1.1-.3.2-.4.1-.1.3-.2.5-.3-.2-.1-.3-.2-.4-.3.2.1.2 0 .1-.1.1 0 .2-.1.3-.1.2 0 .3.1.5.2.3.1.5.2.8.2.1 0 .3 0 .4-.1.2-.1 0-.3-.1-.4-.1-.1-.2-.2-.4-.3-.2-.1-.2-.2-.1-.2h.3c.3.2.5.4.8.5.2.1.4.1.6 0 .2-.1.1-.6 0-.8-.3-.2-.2-.3 0-.5s.1-.6 0-.8c-.3-.3-.2-.9.2-1.1.2 0 .4-.1.5-.1.5-.1 1.1-.2 1.6-.3.2-.1.3-.2.1-.4-.2-.2-.4-.3-.7-.5-.3-.2-.3-.3-.1-.5.3-.4.8-.7.9-1.3h.1c.5-.3.9-.2.9-.4-.1-.1 0-.2.1-.2.3 0 .6-.1.9-.1.4 0 .5-.4.2-.7-.1-.1-.2-.2-.2-.3-.1-.3 0-.7-.5-.8l-.1-.1.3-.3c0-.1.1-.1.1-.2 0-.2 0-.5-.1-.7 0-.1-.1-.2-.1-.3-.2-.2-.3-.4-.2-.7.4.1.4.1.5-.3v-.1c.3-.1.4-.3.3-.6 0-.1 0-.1.1-.2.2-.4.1-.9.1-1.4v-.2h.2c.2.3.4.1.5 0 .1 0 .1-.1.2-.1v-.2-.1h-.1c0-.1-.1-.1-.1-.2v-.4c0-.1.1-.1.2-.2 0-.4.1-.9.1-1.3-.1-.2-.2-.4-.4-.6-.2-.3-.5-.7-.7-1-.2-.4-.6-.7-1-.8-.6-.1-.7-.7-1.2-.9v-.1c.3-.1.7-.2 1-.3-.1-.1-.2-.1-.3-.2-.4-.1-.5-.4-.6-.7 0-.1-.1-.2-.1-.3.1-.4.2-.8 0-1.2v-.2c.1-.3.2-.6.5-.8.2-.2.2-.3-.1-.5-.1 0-.1-.1-.2-.1.2-.1.3-.2.5-.3.2-.1.4-.3.2-.6l-.3-.6c-.1-.2-.4-.5-.3-.7 0-.4.2-.7.3-1 .1-.2.3-.4.2-.7 0-.4.1-.7.6-.8.2 0 .3-.1.5-.1.1 0 .1-.1.2-.1v-.1c-.2 0-.5-.1-.7-.1-.3 0-.5-.1-.6-.4-.1-.1-.1-.3-.2-.4-.1-.2-.1-.4.1-.5.2-.1.4-.3.5-.5.1-.1.1-.2.1-.3-.2-.5-.5-.9-.6-1.4v-.1h-.1v-.2h-.1c-.1 0-.1-.1-.1-.2s-.1-.3-.1-.4c-.1-.3-.1-.5.2-.7.3-.2.3-.7 0-1-.1-.1-.1-.2-.1-.3v-.2c-.1-.1-.2-.3-.2-.4-.1-.4-.3-.7-.5-1-.4-.4-.8-.9-1-1.4v-.2c.1 0 .2 0 .2.1l.1.1c.3 0 .5.1.7.4.1.1.2.3.3.4.1.1.3.2.5.1.1-.1.3-.2.1-.4-.2-.3-.3-.6-.6-.9-.2-.3-.2-.4.1-.6.3-.1.7-.3 1-.3.7-.1 1.1-.4 1.4-1-.6.4-.8.3-1 .3\"/></defs><clipPath id=\"f\"><use xlink:href=\"#e\" overflow=\"visible\"/></clipPath><g clip-path=\"url(#f)\"><defs><path id=\"g\" d=\"M0 0h96v61H0z\"/></defs><clipPath id=\"h\"><use xlink:href=\"#g\" overflow=\"visible\"/></clipPath><path clip-path=\"url(#h)\" fill=\"#ffe522\" d=\"M-5-5h106v71H-5z\"/></g></g></g></svg>";
|
|
2
|
-
|
|
3
|
-
export { PriceSplashRegular as default };
|
|
4
|
-
//# sourceMappingURL=pricesplash.svg.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pricesplash.svg.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
|