@ultraviolet/ui 1.24.2 → 1.26.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,12 +1,14 @@
1
1
  import _styled from '@emotion/styled/base';
2
2
  import { forwardRef, useMemo } from 'react';
3
3
  import { Badge } from '../Badge/index.js';
4
+ import { Stack } from '../Stack/index.js';
5
+ import { Text } from '../Text/index.js';
4
6
  import { Tooltip } from '../Tooltip/index.js';
5
7
  import { useTabsContext } from './TabsContext.js';
6
8
  import { jsx, jsxs } from '@emotion/react/jsx-runtime';
7
9
 
8
10
  const StyledBadge = /*#__PURE__*/_styled(Badge, {
9
- target: "e1hzf7cr3"
11
+ target: "e1hzf7cr4"
10
12
  })("padding:0 ", _ref => {
11
13
  let {
12
14
  theme
@@ -18,6 +20,9 @@ const StyledBadge = /*#__PURE__*/_styled(Badge, {
18
20
  } = _ref2;
19
21
  return theme.space['1'];
20
22
  }, ";");
23
+ const StyledText = /*#__PURE__*/_styled(Text, {
24
+ target: "e1hzf7cr3"
25
+ })();
21
26
  const StyledTooltip = /*#__PURE__*/_styled(Tooltip, {
22
27
  target: "e1hzf7cr2"
23
28
  })();
@@ -36,7 +41,7 @@ const StyledTabButton = /*#__PURE__*/_styled('button', {
36
41
  theme
37
42
  } = _ref4;
38
43
  return `${theme.space['1']} ${theme.space['2']}`;
39
- }, ";cursor:pointer;justify-content:center;align-items:center;white-space:nowrap;color:", _ref5 => {
44
+ }, ";cursor:pointer;justify-content:center;align-items:baseline;white-space:nowrap;color:", _ref5 => {
40
45
  let {
41
46
  theme
42
47
  } = _ref5;
@@ -81,33 +86,43 @@ const StyledTabButton = /*#__PURE__*/_styled('button', {
81
86
  theme
82
87
  } = _ref13;
83
88
  return theme.colors.primary.border;
84
- }, ";}&[aria-disabled='false']:not(:disabled){&:hover,&:focus,&:active{outline:none;color:", _ref14 => {
89
+ }, ";", StyledText, "{color:", _ref14 => {
85
90
  let {
86
91
  theme
87
92
  } = _ref14;
88
93
  return theme.colors.primary.text;
89
- }, ";border-bottom-color:", _ref15 => {
94
+ }, ";}}&[aria-disabled='false']:not(:disabled){&:hover,&:focus,&:active{outline:none;color:", _ref15 => {
90
95
  let {
91
96
  theme
92
97
  } = _ref15;
93
- return theme.colors.primary.border;
94
- }, ";&[data-is-selected='false']{", StyledBadge, "{background-color:", _ref16 => {
98
+ return theme.colors.primary.text;
99
+ }, ";border-bottom-color:", _ref16 => {
95
100
  let {
96
101
  theme
97
102
  } = _ref16;
98
- return theme.colors.primary.background;
99
- }, ";border-color:", _ref17 => {
103
+ return theme.colors.primary.border;
104
+ }, ";&[data-is-selected='false']{", StyledBadge, "{background-color:", _ref17 => {
100
105
  let {
101
106
  theme
102
107
  } = _ref17;
103
108
  return theme.colors.primary.background;
104
- }, ";color:", _ref18 => {
109
+ }, ";border-color:", _ref18 => {
105
110
  let {
106
111
  theme
107
112
  } = _ref18;
113
+ return theme.colors.primary.background;
114
+ }, ";color:", _ref19 => {
115
+ let {
116
+ theme
117
+ } = _ref19;
118
+ return theme.colors.primary.text;
119
+ }, ";}", StyledText, "{color:", _ref20 => {
120
+ let {
121
+ theme
122
+ } = _ref20;
108
123
  return theme.colors.primary.text;
109
124
  }, ";}}}}&[aria-disabled='true'],&:disabled{cursor:not-allowed;filter:grayscale(1) opacity(50%);}");
110
- const Tab = /*#__PURE__*/forwardRef((_ref19, ref) => {
125
+ const Tab = /*#__PURE__*/forwardRef((_ref21, ref) => {
111
126
  let {
112
127
  as,
113
128
  badge,
@@ -115,12 +130,13 @@ const Tab = /*#__PURE__*/forwardRef((_ref19, ref) => {
115
130
  className,
116
131
  counter,
117
132
  disabled = false,
118
- value,
119
133
  onClick,
120
134
  onKeyDown,
135
+ subtitle,
121
136
  tooltip,
137
+ value,
122
138
  ...props
123
- } = _ref19;
139
+ } = _ref21;
124
140
  const {
125
141
  selected,
126
142
  onChange
@@ -129,7 +145,7 @@ const Tab = /*#__PURE__*/forwardRef((_ref19, ref) => {
129
145
  const isSelected = useMemo(() => value !== undefined && selected === value, [value, selected]);
130
146
  return jsx(StyledTooltip, {
131
147
  text: tooltip,
132
- children: jsxs(StyledTabButton, {
148
+ children: jsx(StyledTabButton, {
133
149
  role: "tab",
134
150
  ref: ref,
135
151
  className: className,
@@ -151,14 +167,31 @@ const Tab = /*#__PURE__*/forwardRef((_ref19, ref) => {
151
167
  },
152
168
  "data-is-selected": isSelected,
153
169
  ...props,
154
- children: [children, typeof counter === 'number' || typeof counter === 'string' ? jsx(StyledBadge, {
155
- sentiment: isSelected ? 'primary' : 'neutral',
156
- prominence: isSelected ? 'strong' : 'default',
157
- size: "medium",
158
- children: counter
159
- }) : null, badge ? jsx(BadgeContainer, {
160
- children: badge
161
- }) : null]
170
+ children: jsxs(Stack, {
171
+ direction: "column",
172
+ gap: 0.5,
173
+ children: [jsxs(Stack, {
174
+ direction: "row",
175
+ alignItems: "center",
176
+ children: [children, typeof counter === 'number' || typeof counter === 'string' ? jsx(StyledBadge, {
177
+ sentiment: isSelected ? 'primary' : 'neutral',
178
+ prominence: isSelected ? 'strong' : 'default',
179
+ size: "medium",
180
+ children: counter
181
+ }) : null, badge ? jsx(BadgeContainer, {
182
+ children: badge
183
+ }) : null]
184
+ }), subtitle ? jsx(Stack, {
185
+ direction: "row",
186
+ children: jsx(StyledText, {
187
+ as: "span",
188
+ variant: "bodySmall",
189
+ sentiment: "neutral",
190
+ prominence: "weak",
191
+ children: subtitle
192
+ })
193
+ }) : null]
194
+ })
162
195
  })
163
196
  });
164
197
  });
@@ -23,6 +23,7 @@ const TabMenu = /*#__PURE__*/forwardRef((_ref2, ref) => {
23
23
  visible,
24
24
  id,
25
25
  disabled,
26
+ className,
26
27
  ...props
27
28
  } = _ref2;
28
29
  return jsx(Menu, {
@@ -34,6 +35,7 @@ const TabMenu = /*#__PURE__*/forwardRef((_ref2, ref) => {
34
35
  "aria-disabled": disabled ?? 'false',
35
36
  disabled: disabled,
36
37
  "aria-haspopup": "menu",
38
+ className: className,
37
39
  ...props,
38
40
  children: [disclosure, jsx(ArrowIcon, {
39
41
  name: "arrow-down"
@@ -1,5 +1,5 @@
1
1
  import _styled from '@emotion/styled/base';
2
- import { useRef, useState, useMemo, useEffect } from 'react';
2
+ import { useRef, useState, useMemo, useEffect, Children, isValidElement, cloneElement } from 'react';
3
3
  import { Tab, StyledTabButton } from './Tab.js';
4
4
  import { TabMenu } from './TabMenu.js';
5
5
  import { TabMenuItem } from './TabMenuItem.js';
@@ -23,7 +23,9 @@ const MenuContainer = /*#__PURE__*/_styled("div", {
23
23
  theme
24
24
  } = _ref3;
25
25
  return `${theme.space['1']} ${theme.space['2']}`;
26
- }, ";border-bottom-width:1px;width:100%;cursor:pointer;min-width:110px;background-color:transparent;}");
26
+ }, ";border-bottom-width:1.5px;width:100%;cursor:pointer;min-width:110px;background-color:transparent;&[aria-disabled='true'],&:disabled{cursor:not-allowed;filter:grayscale(1) opacity(50%);}}");
27
+
28
+ // Migration to MenuV2 will not work as expected here.
27
29
  const StyledTabMenu = /*#__PURE__*/_styled(TabMenu, {
28
30
  target: "ewug27g1"
29
31
  })("position:sticky;right:0;top:0;bottom:0;background:", _ref4 => {
@@ -61,7 +63,7 @@ const Tabs = _ref7 => {
61
63
  ...props
62
64
  } = _ref7;
63
65
  const tabsRef = useRef({});
64
- const moreStaticRef = useRef({});
66
+ const moreStaticRef = useRef(null);
65
67
  const [displayMore, setDisplayMore] = useState(false);
66
68
  const value = useMemo(() => ({
67
69
  onChange,
@@ -82,12 +84,14 @@ const Tabs = _ref7 => {
82
84
  }
83
85
  }, [selected]);
84
86
 
85
- // Change the moreButton style automatically based on the scroll
87
+ // Change the moreButton style automatically based on the scroll to show that a scroll effect is possible.
86
88
  useEffect(() => {
87
89
  const element = tabsRef.current;
88
90
  const moreElement = moreStaticRef.current;
89
91
  const handler = () => {
90
- moreElement.style.boxShadow = element.scrollLeft + SHADOW_THRESHOLD > element.scrollWidth - element.clientWidth ? 'none' : '';
92
+ if (moreElement?.style) {
93
+ moreElement.style.boxShadow = element.scrollLeft + SHADOW_THRESHOLD > element.scrollWidth - element.clientWidth ? 'none' : '';
94
+ }
91
95
  };
92
96
  if (displayMore) {
93
97
  element.addEventListener('scroll', handler);
@@ -96,6 +100,17 @@ const Tabs = _ref7 => {
96
100
  if (displayMore) element.removeEventListener('scroll', handler);
97
101
  };
98
102
  }, [displayMore]);
103
+
104
+ // mapping of tab children to avoid using subtitle props
105
+ const menuItemChildren = Children.map(children, child => {
106
+ if ( /*#__PURE__*/isValidElement(child)) {
107
+ return /*#__PURE__*/cloneElement(child, {
108
+ ...child.props,
109
+ subtitle: null
110
+ });
111
+ }
112
+ return null;
113
+ });
99
114
  return jsx(TabsContext.Provider, {
100
115
  value: value,
101
116
  children: jsxs(TabsContainer, {
@@ -108,7 +123,7 @@ const Tabs = _ref7 => {
108
123
  ref: moreStaticRef,
109
124
  disclosure: moreDisclosure,
110
125
  children: jsx(MenuContainer, {
111
- children: children
126
+ children: menuItemChildren
112
127
  })
113
128
  }) : null]
114
129
  })
@@ -31,7 +31,8 @@ const Tooltip = /*#__PURE__*/forwardRef((_ref, tooltipRef) => {
31
31
  visible,
32
32
  innerRef,
33
33
  role = 'tooltip',
34
- 'data-testid': dataTestId
34
+ 'data-testid': dataTestId,
35
+ portalTarget
35
36
  } = _ref;
36
37
  return jsx(StyledPopup, {
37
38
  id: id,
@@ -45,6 +46,7 @@ const Tooltip = /*#__PURE__*/forwardRef((_ref, tooltipRef) => {
45
46
  placement: placement,
46
47
  text: text,
47
48
  innerRef: innerRef,
49
+ portalTarget: portalTarget,
48
50
  children: children
49
51
  });
50
52
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ultraviolet/ui",
3
- "version": "1.24.2",
3
+ "version": "1.26.0",
4
4
  "description": "Ultraviolet UI",
5
5
  "homepage": "https://github.com/scaleway/ultraviolet#readme",
6
6
  "repository": {
@@ -39,12 +39,12 @@
39
39
  "react-dom": "18.2.0"
40
40
  },
41
41
  "devDependencies": {
42
- "@babel/core": "7.23.2",
42
+ "@babel/core": "7.23.3",
43
43
  "@emotion/babel-plugin": "11.11.0",
44
44
  "@emotion/react": "11.11.1",
45
45
  "@emotion/styled": "11.11.0",
46
46
  "@types/react": "18.2.37",
47
- "@types/react-datepicker": "4.19.1",
47
+ "@types/react-datepicker": "4.19.3",
48
48
  "@types/react-dom": "18.2.15",
49
49
  "react": "18.2.0",
50
50
  "react-dom": "18.2.0"
@@ -66,8 +66,8 @@
66
66
  "react-toastify": "9.1.3",
67
67
  "react-use-clipboard": "1.0.9",
68
68
  "reakit": "1.3.11",
69
- "@ultraviolet/themes": "1.4.0",
70
- "@ultraviolet/icons": "2.5.3"
69
+ "@ultraviolet/themes": "1.5.0",
70
+ "@ultraviolet/icons": "2.5.5"
71
71
  },
72
72
  "scripts": {
73
73
  "build": "rollup -c ../../rollup.config.mjs"
@@ -1,5 +0,0 @@
1
- import 'react';
2
-
3
- var introCompactLeftPattern = "data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22202%22%20height%3D%22108%22%20fill%3D%22none%22%3E%20%20%20%20%3Cg%20fill%3D%22%23521094%22%20clip-path%3D%22url%28%23a%29%22%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M173.935%202.647c.347-1.288-1.584-1.808-1.931-.52-.347%201.287%201.584%201.807%201.931.52Z%22%20opacity%3D%22.6%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M49.965%2015.65c.52-1.932-2.376-2.712-2.897-.78-.52%201.93%202.377%202.71%202.897.78Z%22%20opacity%3D%22.7%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M25.441%209.16c.347-1.288-1.584-1.808-1.931-.52-.347%201.287%201.584%201.807%201.931.52Zm90.873%2078.502c.347-1.288-1.584-1.808-1.931-.52-.347%201.287%201.584%201.807%201.931.52Z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M102.721%2071.935c.174-.643-.834-.915-1.007-.271-.174.644.834.915%201.007.271Z%22%20opacity%3D%22.7%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M173.211%2071.653c.521-1.932-2.376-2.712-2.896-.781-.521%201.931%202.376%202.712%202.896.78Z%22%20opacity%3D%22.5%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M160.567%2058.13c.27-1.002-1.298-1.424-1.568-.422-.27%201.001%201.298%201.424%201.568.422Zm21.529-27.585c.174-.643-.792-.904-.965-.26-.174.644.792.904.965.26Zm-50-20c.174-.643-.792-.904-.965-.26-.174.644.792.904.965.26Zm-79.08%2074.147c.52-1.932-2.376-2.712-2.897-.78-.52%201.93%202.377%202.71%202.897.78Zm-.507-16.928c.27-1.001-1.299-1.424-1.569-.422-.27%201.001%201.299%201.424%201.569.422Z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M10.307%2087.302c.27-1.001-1.298-1.424-1.568-.422-.27%201.001%201.298%201.424%201.568.422Z%22%20opacity%3D%22.4%22%2F%3E%20%20%20%20%3C%2Fg%3E%20%20%20%20%3Cdefs%3E%20%20%20%20%20%20%20%20%3CclipPath%20id%3D%22a%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M202%20108H0V0h202z%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FclipPath%3E%20%20%20%20%3C%2Fdefs%3E%3C%2Fsvg%3E";
4
-
5
- export { introCompactLeftPattern as default };
@@ -1,5 +0,0 @@
1
- import 'react';
2
-
3
- var introCompactRightPattern = "data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22202%22%20height%3D%22108%22%20fill%3D%22none%22%3E%20%20%20%20%3Cg%20fill%3D%22%23521094%22%20clip-path%3D%22url%28%23a%29%22%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M28.065%20100.353c-.347%201.288%201.584%201.808%201.931.521.347-1.288-1.584-1.808-1.931-.521Z%22%20opacity%3D%22.6%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M152.035%2087.35c-.521%201.932%202.376%202.712%202.896.78.521-1.93-2.376-2.71-2.896-.78Z%22%20opacity%3D%22.7%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M176.559%2093.84c-.347%201.288%201.584%201.808%201.931.52.347-1.287-1.584-1.807-1.931-.52ZM85.686%2015.338c-.347%201.288%201.584%201.808%201.931.52.347-1.287-1.584-1.807-1.931-.52Z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M99.278%2031.065c-.173.643.835.915%201.008.271.174-.644-.834-.915-1.008-.271Z%22%20opacity%3D%22.7%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M28.789%2031.348c-.52%201.93%202.376%202.711%202.896.78.52-1.931-2.376-2.712-2.896-.78Z%22%20opacity%3D%22.5%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M41.433%2044.87c-.27%201.002%201.298%201.424%201.568.422.27-1.001-1.298-1.424-1.568-.422ZM19.904%2072.455c-.174.643.792.904.965.26.174-.644-.792-.904-.965-.26Zm49.999%2020c-.173.643.793.904.966.26.174-.644-.792-.904-.966-.26Zm91.081-80.146c-.52%201.93%202.376%202.711%202.897.78.52-1.931-2.377-2.712-2.897-.78Zm-11.493%2022.927c-.269%201.001%201.299%201.424%201.569.422.269-1.001-1.299-1.424-1.569-.422Z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M191.693%2015.698c-.27%201.001%201.298%201.424%201.568.422.27-1.001-1.299-1.424-1.568-.422Z%22%20opacity%3D%22.4%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M197.31%20107.477c-.27%201.001%201.298%201.424%201.568.422.27-1.001-1.298-1.424-1.568-.422Z%22%2F%3E%20%20%20%20%3C%2Fg%3E%20%20%20%20%3Cdefs%3E%20%20%20%20%20%20%20%20%3CclipPath%20id%3D%22a%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h202v108H0z%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FclipPath%3E%20%20%20%20%3C%2Fdefs%3E%3C%2Fsvg%3E";
4
-
5
- export { introCompactRightPattern as default };
@@ -1,5 +0,0 @@
1
- import 'react';
2
-
3
- var introPattern = "data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22500%22%20height%3D%22188%22%20fill%3D%22none%22%3E%20%20%20%20%3Cg%20clip-path%3D%22url%28%23a%29%22%20opacity%3D%22.2%22%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23B824F9%22%20fill-rule%3D%22evenodd%22%20d%3D%22M355.836%209.738c0-4.41%203.308-8.01%207.396-8.01l.034.054c4.071%200%207.396%203.601%207.396%208.01%200%204.41-3.308%208.011-7.396%208.011-1.696%200-3.24-.643-4.495-1.69L185.336%20149.188c5.361%201.69%2022.07%207.018%2028.363%209.296%206.684%202.426%2018.338%202.683%2035.878-9.719%2015.318-10.843%2084.728-63.563%2097.634-73.366h.001l1.398-1.062a8.412%208.412%200%200%201-1.357-4.594c0-4.409%203.325-8.01%207.396-8.01s7.396%203.601%207.396%208.01c0%204.41-3.308%208.011-7.396%208.011-1.883%200-3.596-.79-4.903-2.058-6.785%205.163-83.07%2063.148-99.253%2074.594-12.315%208.709-21.883%2011.336-28.957%2011.336-3.341%200-6.14-.588-8.397-1.396-6.171-2.245-22.487-7.44-28.065-9.217l-1.519-.484-101.577%2077.938-.984-1.507%20155.674-119.442V77.313c0-9.7%202.307-17.969%2013.486-26.714%2010.449-8.158%2046.887-34.523%2052.349-38.473a8.39%208.39%200%200%201-1.086-4.115c0-4.41%203.325-8.011%207.396-8.011%204.072%200%207.397%203.601%207.397%208.01%200%204.41-3.308%208.011-7.397%208.011-2.069%200-3.952-.937-5.292-2.443-5.191%203.748-41.9%2030.296-52.366%2038.49-10.637%208.305-12.774%2015.82-12.774%2025.227v28.9l119.135-91.423a8.413%208.413%200%200%201-1.68-5.034Zm-41.323-1.764c0-3.4-2.544-6.173-5.7-6.173-3.138%200-5.699%202.774-5.699%206.173s2.561%206.173%205.699%206.173c3.139%200%205.7-2.774%205.7-6.173Zm45.819%2061.733c0-3.4-2.545-6.174-5.7-6.174-3.138%200-5.7%202.775-5.7%206.174%200%203.399%202.562%206.173%205.7%206.173%203.138%200%205.7-2.774%205.7-6.173Zm-2.816-59.951c0%203.399%202.561%206.173%205.699%206.173%203.139%200%205.7-2.774%205.7-6.173s-2.561-6.173-5.7-6.173c-3.138%200-5.699%202.774-5.699%206.173Zm247.453-.018c0-4.41%203.308-8.01%207.396-8.01l.034.054c4.072%200%207.396%203.601%207.396%208.01%200%204.41-3.307%208.011-7.396%208.011-1.696%200-3.24-.643-4.495-1.69L434.469%20149.188c5.361%201.69%2022.07%207.018%2028.363%209.296%206.684%202.426%2018.338%202.683%2035.878-9.719%2015.303-10.833%2084.596-63.463%2097.598-73.338l.01-.008.008-.006.007-.005%201.41-1.071a8.412%208.412%200%200%201-1.357-4.594c0-4.409%203.325-8.01%207.396-8.01s7.396%203.601%207.396%208.01c0%204.41-3.308%208.011-7.396%208.011-1.883%200-3.596-.79-4.903-2.058-6.785%205.163-83.07%2063.148-99.253%2074.594-12.315%208.709-21.883%2011.336-28.957%2011.336-3.341%200-6.14-.588-8.396-1.396-6.172-2.244-22.486-7.44-28.064-9.216l-.002-.001-1.519-.484-101.577%2077.938-.984-1.507%20155.674-119.442V77.313c0-9.7%202.307-17.969%2013.486-26.714%2010.449-8.158%2046.887-34.523%2052.349-38.473a8.4%208.4%200%200%201-1.086-4.115c0-4.41%203.325-8.011%207.397-8.011%204.071%200%207.396%203.601%207.396%208.01%200%204.41-3.308%208.011-7.396%208.011-2.07%200-3.953-.937-5.293-2.443-5.191%203.748-41.9%2030.296-52.366%2038.49-10.636%208.305-12.774%2015.82-12.774%2025.227v28.9l119.135-91.423a8.413%208.413%200%200%201-1.68-5.034Zm-41.323-1.764c0-3.4-2.544-6.173-5.699-6.173-3.139%200-5.7%202.774-5.7%206.173s2.561%206.173%205.7%206.173c3.138%200%205.699-2.774%205.699-6.173Zm45.819%2061.733c0-3.4-2.545-6.174-5.7-6.174-3.138%200-5.7%202.775-5.7%206.174%200%203.399%202.562%206.173%205.7%206.173%203.138%200%205.7-2.774%205.7-6.173Zm-2.816-59.951c0%203.399%202.561%206.173%205.699%206.173%203.139%200%205.7-2.774%205.7-6.173s-2.561-6.173-5.7-6.173c-3.138%200-5.699%202.774-5.699%206.173ZM455.01%2092.654c0%204.41-3.307%208.011-7.396%208.011l.034-.018c-1.984%200-3.783-.864-5.106-2.242L273.111%20228.412l-.984-1.507%20109.567-84.074V94.694c0-8.158%201.052-17.62%2013.486-26.733%2010.636-7.771%2058.728-41.467%2066.718-47.053a8.42%208.42%200%200%201-1.069-4.079c0-4.409%203.325-8.01%207.396-8.01s7.396%203.601%207.396%208.01c0%204.41-3.308%208.011-7.396%208.011-2.103%200-3.986-.955-5.327-2.462l-.732.513-.006.004-.01.007-.004.003c-9.655%206.763-55.666%2038.995-66.033%2046.581-11.755%208.617-12.739%2017.179-12.739%2025.226v46.833l58.049-44.536a8.355%208.355%200%200%201-1.205-4.355c0-4.41%203.325-8.01%207.396-8.01%204.072%200%207.396%203.6%207.396%208.01Zm18.881-75.825c0-3.399-2.545-6.173-5.7-6.173-3.138%200-5.7%202.774-5.7%206.173%200%203.4%202.562%206.174%205.7%206.174%203.138%200%205.7-2.774%205.7-6.174Zm-20.577%2075.807c0-3.399-2.561-6.173-5.7-6.173-3.138%200-5.699%202.774-5.699%206.173s2.561%206.173%205.699%206.173c3.139%200%205.7-2.774%205.7-6.173ZM324.745%20138.44c-4.088%200-7.396%203.601-7.396%208.01%200%201.911.645%203.638%201.679%205.016l-106.971%2082.09.983%201.507%20107.227-82.274c1.255%201.047%202.799%201.69%204.495%201.69%204.088%200%207.396-3.601%207.396-8.01%200-4.41-3.325-8.011-7.396-8.011l-.017-.018Zm0%2014.202c-3.155%200-5.7-2.775-5.7-6.173%200-3.399%202.562-6.174%205.7-6.174%203.138%200%205.7%202.775%205.7%206.174%200%203.398-2.562%206.173-5.7%206.173Zm-126.244-51.977c4.088%200%207.396-3.601%207.396-8.01%200-4.41-3.325-8.011-7.396-8.011s-7.396%203.6-7.396%208.01c0%201.599.441%203.105%201.204%204.355l-58.049%2044.536V94.712c0-8.047.984-16.609%2012.74-25.226%2010.373-7.591%2056.437-39.86%2066.051-46.594h.002l.732-.514c1.34%201.507%203.223%202.462%205.327%202.462%204.088%200%207.396-3.601%207.396-8.01%200-4.41-3.325-8.011-7.396-8.011-4.072%200-7.397%203.6-7.397%208.01%200%201.489.408%202.885%201.069%204.08-7.99%205.585-56.081%2039.28-66.717%2047.052-12.435%209.113-13.486%2018.575-13.486%2026.733v48.137L23.014%20226.905l.983%201.507L193.43%2098.405c1.323%201.378%203.121%202.242%205.106%202.242l-.034.018Zm20.577-90.009c3.155%200%205.699%202.774%205.699%206.173%200%203.4-2.561%206.174-5.699%206.174-3.139%200-5.7-2.775-5.7-6.174%200-3.399%202.561-6.173%205.7-6.173Zm-20.577%2075.807c3.138%200%205.7%202.774%205.7%206.173s-2.562%206.173-5.7%206.173c-3.138%200-5.7-2.774-5.7-6.173s2.562-6.173%205.7-6.173ZM65.495%20146.45c0-4.409%203.308-8.01%207.396-8.01l.017.018c4.072%200%207.397%203.601%207.397%208.011%200%204.409-3.308%208.01-7.397%208.01-1.696%200-3.24-.643-4.495-1.69l-107.226%2082.274-.984-1.507%20106.972-82.09a8.318%208.318%200%200%201-1.68-5.016Zm1.697.019c0%203.398%202.544%206.173%205.7%206.173%203.138%200%205.7-2.775%205.7-6.173%200-3.399-2.562-6.174-5.7-6.174-3.139%200-5.7%202.775-5.7%206.174Z%22%20clip-rule%3D%22evenodd%22%2F%3E%20%20%20%20%3C%2Fg%3E%20%20%20%20%3Cdefs%3E%20%20%20%20%20%20%20%20%3CclipPath%20id%3D%22a%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h500v188H0z%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FclipPath%3E%20%20%20%20%3C%2Fdefs%3E%3C%2Fsvg%3E";
4
-
5
- export { introPattern as default };
@@ -1,5 +0,0 @@
1
- import 'react';
2
-
3
- var promotionCompactLeftPattern = "data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22202%22%20height%3D%22108%22%20fill%3D%22none%22%3E%20%20%20%20%3Cg%20fill%3D%22%23fff%22%20clip-path%3D%22url%28%23a%29%22%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M173.935%202.647c.347-1.288-1.584-1.808-1.931-.52-.347%201.287%201.584%201.807%201.931.52Z%22%20opacity%3D%22.6%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M49.965%2015.65c.52-1.932-2.376-2.712-2.897-.781-.52%201.931%202.377%202.711%202.897.78Z%22%20opacity%3D%22.7%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M25.441%209.16c.347-1.288-1.584-1.808-1.931-.52-.347%201.287%201.584%201.807%201.931.52Zm90.873%2078.502c.347-1.288-1.584-1.808-1.931-.52-.347%201.287%201.584%201.807%201.931.52Z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M102.721%2071.935c.174-.643-.834-.915-1.007-.271-.174.644.834.915%201.007.271Z%22%20opacity%3D%22.7%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M173.211%2071.652c.521-1.93-2.376-2.711-2.896-.78-.521%201.93%202.376%202.711%202.896.78Z%22%20opacity%3D%22.5%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M160.567%2058.13c.27-1.002-1.298-1.424-1.568-.422-.27%201.001%201.298%201.424%201.568.422Zm21.529-27.585c.174-.643-.792-.904-.965-.26-.174.644.792.904.965.26Zm-50-20c.174-.643-.792-.904-.965-.26-.174.644.792.904.965.26Zm-79.08%2074.146c.52-1.93-2.376-2.711-2.897-.78-.52%201.93%202.377%202.711%202.897.78Zm-.507-16.927c.27-1.001-1.299-1.424-1.569-.422-.27%201.001%201.299%201.424%201.569.422Z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M10.307%2087.302c.27-1.001-1.298-1.424-1.568-.422-.27%201.001%201.298%201.424%201.568.422Z%22%20opacity%3D%22.4%22%2F%3E%20%20%20%20%3C%2Fg%3E%20%20%20%20%3Cdefs%3E%20%20%20%20%20%20%20%20%3CclipPath%20id%3D%22a%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M202%20108H0V0h202z%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FclipPath%3E%20%20%20%20%3C%2Fdefs%3E%3C%2Fsvg%3E";
4
-
5
- export { promotionCompactLeftPattern as default };
@@ -1,5 +0,0 @@
1
- import 'react';
2
-
3
- var promotionCompactRightPattern = "data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22202%22%20height%3D%22108%22%20fill%3D%22none%22%3E%20%20%20%20%3Cg%20fill%3D%22%23fff%22%20clip-path%3D%22url%28%23a%29%22%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M28.065%20100.353c-.347%201.288%201.584%201.808%201.931.521.347-1.288-1.584-1.808-1.931-.521Z%22%20opacity%3D%22.6%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M152.035%2087.35c-.521%201.932%202.376%202.712%202.896.781.521-1.931-2.376-2.711-2.896-.78Z%22%20opacity%3D%22.7%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M176.559%2093.84c-.347%201.288%201.584%201.808%201.931.52.347-1.287-1.584-1.807-1.931-.52ZM85.686%2015.338c-.347%201.288%201.584%201.808%201.931.52.347-1.287-1.584-1.807-1.931-.52Z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M99.278%2031.065c-.173.643.835.915%201.008.271.174-.644-.834-.915-1.008-.271Z%22%20opacity%3D%22.7%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M28.789%2031.348c-.52%201.93%202.376%202.711%202.896.78.52-1.93-2.376-2.711-2.896-.78Z%22%20opacity%3D%22.5%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M41.433%2044.87c-.27%201.002%201.298%201.424%201.568.422.27-1.001-1.298-1.424-1.568-.422ZM19.904%2072.455c-.174.643.792.904.965.26.174-.644-.792-.904-.965-.26Zm49.999%2020c-.173.643.793.904.966.26.174-.644-.792-.904-.966-.26Zm91.081-80.146c-.52%201.93%202.376%202.711%202.897.78.52-1.93-2.377-2.711-2.897-.78Zm-11.493%2022.927c-.269%201.001%201.299%201.424%201.569.422.269-1.001-1.299-1.424-1.569-.422Z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M191.693%2015.698c-.27%201.001%201.298%201.424%201.568.422.27-1.001-1.299-1.424-1.568-.422Z%22%20opacity%3D%22.4%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M197.31%20107.477c-.27%201.002%201.298%201.424%201.568.423.27-1.002-1.298-1.424-1.568-.423Z%22%2F%3E%20%20%20%20%3C%2Fg%3E%20%20%20%20%3Cdefs%3E%20%20%20%20%20%20%20%20%3CclipPath%20id%3D%22a%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h202v108H0z%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FclipPath%3E%20%20%20%20%3C%2Fdefs%3E%3C%2Fsvg%3E";
4
-
5
- export { promotionCompactRightPattern as default };
@@ -1,5 +0,0 @@
1
- import 'react';
2
-
3
- var promotionPattern = "data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22500%22%20height%3D%22188%22%20fill%3D%22none%22%3E%20%20%20%20%3Cg%20fill-rule%3D%22evenodd%22%20clip-path%3D%22url%28%23a%29%22%20clip-rule%3D%22evenodd%22%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23b%29%22%20d%3D%22M355.836%209.738c0-4.41%203.308-8.01%207.396-8.01l.034.054c4.071%200%207.396%203.601%207.396%208.01%200%204.41-3.308%208.011-7.396%208.011-1.696%200-3.24-.643-4.495-1.69L185.336%20149.188c5.361%201.69%2022.07%207.018%2028.363%209.296%206.684%202.426%2018.338%202.683%2035.878-9.719%2015.318-10.843%2084.728-63.563%2097.634-73.366h.001l1.398-1.062a8.412%208.412%200%200%201-1.357-4.594c0-4.409%203.325-8.01%207.396-8.01s7.396%203.601%207.396%208.01c0%204.41-3.308%208.011-7.396%208.011-1.883%200-3.596-.79-4.903-2.058-6.785%205.163-83.07%2063.148-99.253%2074.594-12.315%208.709-21.883%2011.336-28.957%2011.336-3.341%200-6.14-.588-8.397-1.396-6.171-2.245-22.487-7.44-28.065-9.217l-1.519-.484-101.577%2077.938-.984-1.507%20155.674-119.442V77.313c0-9.7%202.307-17.969%2013.486-26.714%2010.449-8.158%2046.887-34.523%2052.349-38.473a8.39%208.39%200%200%201-1.086-4.115c0-4.41%203.325-8.011%207.396-8.011%204.072%200%207.397%203.601%207.397%208.01%200%204.41-3.308%208.011-7.397%208.011-2.069%200-3.952-.937-5.292-2.443-5.191%203.748-41.9%2030.296-52.366%2038.49-10.637%208.305-12.774%2015.82-12.774%2025.227v28.9l119.135-91.423a8.413%208.413%200%200%201-1.68-5.034Zm-41.323-1.764c0-3.4-2.544-6.173-5.7-6.173-3.138%200-5.699%202.774-5.699%206.173s2.561%206.173%205.699%206.173c3.139%200%205.7-2.774%205.7-6.173Zm45.819%2061.733c0-3.4-2.545-6.174-5.7-6.174-3.138%200-5.7%202.775-5.7%206.174%200%203.399%202.562%206.173%205.7%206.173%203.138%200%205.7-2.774%205.7-6.173Zm-2.816-59.951c0%203.399%202.561%206.173%205.699%206.173%203.139%200%205.7-2.774%205.7-6.173s-2.561-6.173-5.7-6.173c-3.138%200-5.699%202.774-5.699%206.173Zm247.453-.018c0-4.41%203.308-8.01%207.396-8.01l.034.054c4.072%200%207.396%203.601%207.396%208.01%200%204.41-3.307%208.011-7.396%208.011-1.696%200-3.24-.643-4.495-1.69L434.469%20149.188c5.361%201.69%2022.07%207.018%2028.363%209.296%206.684%202.426%2018.338%202.683%2035.878-9.719%2015.303-10.833%2084.596-63.463%2097.598-73.338l.01-.008.008-.006.007-.005%201.41-1.071a8.412%208.412%200%200%201-1.357-4.594c0-4.409%203.325-8.01%207.396-8.01s7.396%203.601%207.396%208.01c0%204.41-3.308%208.011-7.396%208.011-1.883%200-3.596-.79-4.903-2.058-6.785%205.163-83.07%2063.148-99.253%2074.594-12.315%208.709-21.883%2011.336-28.957%2011.336-3.341%200-6.14-.588-8.396-1.396-6.172-2.244-22.486-7.44-28.064-9.216l-.002-.001-1.519-.484-101.577%2077.938-.984-1.507%20155.674-119.442V77.313c0-9.7%202.307-17.969%2013.486-26.714%2010.449-8.158%2046.887-34.523%2052.349-38.473a8.4%208.4%200%200%201-1.086-4.115c0-4.41%203.325-8.011%207.397-8.011%204.071%200%207.396%203.601%207.396%208.01%200%204.41-3.308%208.011-7.396%208.011-2.07%200-3.953-.937-5.293-2.443-5.191%203.748-41.9%2030.296-52.366%2038.49-10.636%208.305-12.774%2015.82-12.774%2025.227v28.9l119.135-91.423a8.413%208.413%200%200%201-1.68-5.034Zm-41.323-1.764c0-3.4-2.544-6.173-5.699-6.173-3.139%200-5.7%202.774-5.7%206.173s2.561%206.173%205.7%206.173c3.138%200%205.699-2.774%205.699-6.173Zm45.819%2061.733c0-3.4-2.545-6.174-5.7-6.174-3.138%200-5.7%202.775-5.7%206.174%200%203.399%202.562%206.173%205.7%206.173%203.138%200%205.7-2.774%205.7-6.173Zm-2.816-59.951c0%203.399%202.561%206.173%205.699%206.173%203.139%200%205.7-2.774%205.7-6.173s-2.561-6.173-5.7-6.173c-3.138%200-5.699%202.774-5.699%206.173ZM455.01%2092.654c0%204.41-3.307%208.011-7.396%208.011l.034-.018c-1.984%200-3.783-.864-5.106-2.242L273.111%20228.412l-.984-1.507%20109.567-84.074V94.694c0-8.158%201.052-17.62%2013.486-26.733%2010.636-7.771%2058.728-41.467%2066.718-47.053a8.42%208.42%200%200%201-1.069-4.079c0-4.409%203.325-8.01%207.396-8.01s7.396%203.601%207.396%208.01c0%204.41-3.308%208.011-7.396%208.011-2.103%200-3.986-.955-5.327-2.462l-.732.513-.006.004-.01.007-.004.003c-9.655%206.763-55.666%2038.995-66.033%2046.581-11.755%208.617-12.739%2017.179-12.739%2025.226v46.833l58.049-44.536a8.355%208.355%200%200%201-1.205-4.355c0-4.41%203.325-8.01%207.396-8.01%204.072%200%207.396%203.6%207.396%208.01Zm18.881-75.825c0-3.399-2.545-6.173-5.7-6.173-3.138%200-5.7%202.774-5.7%206.173%200%203.4%202.562%206.174%205.7%206.174%203.138%200%205.7-2.774%205.7-6.174Zm-20.577%2075.807c0-3.399-2.561-6.173-5.7-6.173-3.138%200-5.699%202.774-5.699%206.173s2.561%206.173%205.699%206.173c3.139%200%205.7-2.774%205.7-6.173ZM324.745%20138.44c-4.088%200-7.396%203.601-7.396%208.01%200%201.911.645%203.638%201.679%205.016l-106.971%2082.09.983%201.507%20107.227-82.274c1.255%201.047%202.799%201.69%204.495%201.69%204.088%200%207.396-3.601%207.396-8.01%200-4.41-3.325-8.011-7.396-8.011l-.017-.018Zm0%2014.202c-3.155%200-5.7-2.775-5.7-6.173%200-3.399%202.562-6.174%205.7-6.174%203.138%200%205.7%202.775%205.7%206.174%200%203.398-2.562%206.173-5.7%206.173Zm-126.244-51.977c4.088%200%207.396-3.601%207.396-8.01%200-4.41-3.325-8.011-7.396-8.011s-7.396%203.6-7.396%208.01c0%201.599.441%203.105%201.204%204.355l-58.049%2044.536V94.712c0-8.047.984-16.609%2012.74-25.226%2010.373-7.591%2056.437-39.86%2066.051-46.594h.002l.732-.514c1.34%201.507%203.223%202.462%205.327%202.462%204.088%200%207.396-3.601%207.396-8.01%200-4.41-3.325-8.011-7.396-8.011-4.072%200-7.397%203.6-7.397%208.01%200%201.489.408%202.885%201.069%204.08-7.99%205.585-56.081%2039.28-66.717%2047.052-12.435%209.113-13.486%2018.575-13.486%2026.733v48.137L23.014%20226.905l.983%201.507L193.43%2098.405c1.323%201.378%203.121%202.242%205.106%202.242l-.034.018Zm20.577-90.009c3.155%200%205.699%202.774%205.699%206.173%200%203.4-2.561%206.174-5.699%206.174-3.139%200-5.7-2.775-5.7-6.174%200-3.399%202.561-6.173%205.7-6.173Zm-20.577%2075.807c3.138%200%205.7%202.774%205.7%206.173s-2.562%206.173-5.7%206.173c-3.138%200-5.7-2.774-5.7-6.173s2.562-6.173%205.7-6.173ZM65.495%20146.45c0-4.409%203.308-8.01%207.396-8.01l.017.018c4.072%200%207.397%203.601%207.397%208.011%200%204.409-3.308%208.01-7.397%208.01-1.696%200-3.24-.643-4.495-1.69l-107.226%2082.274-.984-1.507%20106.972-82.09a8.318%208.318%200%200%201-1.68-5.016Zm1.697.019c0%203.398%202.544%206.173%205.7%206.173%203.138%200%205.7-2.775%205.7-6.173%200-3.399-2.562-6.174-5.7-6.174-3.139%200-5.7%202.775-5.7%206.174Z%22%2F%3E%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22url%28%23c%29%22%20d%3D%22M355.836%209.738c0-4.41%203.308-8.01%207.396-8.01l.034.054c4.071%200%207.396%203.601%207.396%208.01%200%204.41-3.308%208.011-7.396%208.011-1.696%200-3.24-.643-4.495-1.69L185.336%20149.188c5.361%201.69%2022.07%207.018%2028.363%209.296%206.684%202.426%2018.338%202.683%2035.878-9.719%2015.318-10.843%2084.728-63.563%2097.634-73.366h.001l1.398-1.062a8.412%208.412%200%200%201-1.357-4.594c0-4.409%203.325-8.01%207.396-8.01s7.396%203.601%207.396%208.01c0%204.41-3.308%208.011-7.396%208.011-1.883%200-3.596-.79-4.903-2.058-6.785%205.163-83.07%2063.148-99.253%2074.594-12.315%208.709-21.883%2011.336-28.957%2011.336-3.341%200-6.14-.588-8.397-1.396-6.171-2.245-22.487-7.44-28.065-9.217l-1.519-.484-101.577%2077.938-.984-1.507%20155.674-119.442V77.313c0-9.7%202.307-17.969%2013.486-26.714%2010.449-8.158%2046.887-34.523%2052.349-38.473a8.39%208.39%200%200%201-1.086-4.115c0-4.41%203.325-8.011%207.396-8.011%204.072%200%207.397%203.601%207.397%208.01%200%204.41-3.308%208.011-7.397%208.011-2.069%200-3.952-.937-5.292-2.443-5.191%203.748-41.9%2030.296-52.366%2038.49-10.637%208.305-12.774%2015.82-12.774%2025.227v28.9l119.135-91.423a8.413%208.413%200%200%201-1.68-5.034Zm-41.323-1.764c0-3.4-2.544-6.173-5.7-6.173-3.138%200-5.699%202.774-5.699%206.173s2.561%206.173%205.699%206.173c3.139%200%205.7-2.774%205.7-6.173Zm45.819%2061.733c0-3.4-2.545-6.174-5.7-6.174-3.138%200-5.7%202.775-5.7%206.174%200%203.399%202.562%206.173%205.7%206.173%203.138%200%205.7-2.774%205.7-6.173Zm-2.816-59.951c0%203.399%202.561%206.173%205.699%206.173%203.139%200%205.7-2.774%205.7-6.173s-2.561-6.173-5.7-6.173c-3.138%200-5.699%202.774-5.699%206.173Zm247.453-.018c0-4.41%203.308-8.01%207.396-8.01l.034.054c4.072%200%207.396%203.601%207.396%208.01%200%204.41-3.307%208.011-7.396%208.011-1.696%200-3.24-.643-4.495-1.69L434.469%20149.188c5.361%201.69%2022.07%207.018%2028.363%209.296%206.684%202.426%2018.338%202.683%2035.878-9.719%2015.303-10.833%2084.596-63.463%2097.598-73.338l.01-.008.008-.006.007-.005%201.41-1.071a8.412%208.412%200%200%201-1.357-4.594c0-4.409%203.325-8.01%207.396-8.01s7.396%203.601%207.396%208.01c0%204.41-3.308%208.011-7.396%208.011-1.883%200-3.596-.79-4.903-2.058-6.785%205.163-83.07%2063.148-99.253%2074.594-12.315%208.709-21.883%2011.336-28.957%2011.336-3.341%200-6.14-.588-8.396-1.396-6.172-2.244-22.486-7.44-28.064-9.216l-.002-.001-1.519-.484-101.577%2077.938-.984-1.507%20155.674-119.442V77.313c0-9.7%202.307-17.969%2013.486-26.714%2010.449-8.158%2046.887-34.523%2052.349-38.473a8.4%208.4%200%200%201-1.086-4.115c0-4.41%203.325-8.011%207.397-8.011%204.071%200%207.396%203.601%207.396%208.01%200%204.41-3.308%208.011-7.396%208.011-2.07%200-3.953-.937-5.293-2.443-5.191%203.748-41.9%2030.296-52.366%2038.49-10.636%208.305-12.774%2015.82-12.774%2025.227v28.9l119.135-91.423a8.413%208.413%200%200%201-1.68-5.034Zm-41.323-1.764c0-3.4-2.544-6.173-5.699-6.173-3.139%200-5.7%202.774-5.7%206.173s2.561%206.173%205.7%206.173c3.138%200%205.699-2.774%205.699-6.173Zm45.819%2061.733c0-3.4-2.545-6.174-5.7-6.174-3.138%200-5.7%202.775-5.7%206.174%200%203.399%202.562%206.173%205.7%206.173%203.138%200%205.7-2.774%205.7-6.173Zm-2.816-59.951c0%203.399%202.561%206.173%205.699%206.173%203.139%200%205.7-2.774%205.7-6.173s-2.561-6.173-5.7-6.173c-3.138%200-5.699%202.774-5.699%206.173ZM455.01%2092.654c0%204.41-3.307%208.011-7.396%208.011l.034-.018c-1.984%200-3.783-.864-5.106-2.242L273.111%20228.412l-.984-1.507%20109.567-84.074V94.694c0-8.158%201.052-17.62%2013.486-26.733%2010.636-7.771%2058.728-41.467%2066.718-47.053a8.42%208.42%200%200%201-1.069-4.079c0-4.409%203.325-8.01%207.396-8.01s7.396%203.601%207.396%208.01c0%204.41-3.308%208.011-7.396%208.011-2.103%200-3.986-.955-5.327-2.462l-.732.513-.006.004-.01.007-.004.003c-9.655%206.763-55.666%2038.995-66.033%2046.581-11.755%208.617-12.739%2017.179-12.739%2025.226v46.833l58.049-44.536a8.355%208.355%200%200%201-1.205-4.355c0-4.41%203.325-8.01%207.396-8.01%204.072%200%207.396%203.6%207.396%208.01Zm18.881-75.825c0-3.399-2.545-6.173-5.7-6.173-3.138%200-5.7%202.774-5.7%206.173%200%203.4%202.562%206.174%205.7%206.174%203.138%200%205.7-2.774%205.7-6.174Zm-20.577%2075.807c0-3.399-2.561-6.173-5.7-6.173-3.138%200-5.699%202.774-5.699%206.173s2.561%206.173%205.699%206.173c3.139%200%205.7-2.774%205.7-6.173ZM324.745%20138.44c-4.088%200-7.396%203.601-7.396%208.01%200%201.911.645%203.638%201.679%205.016l-106.971%2082.09.983%201.507%20107.227-82.274c1.255%201.047%202.799%201.69%204.495%201.69%204.088%200%207.396-3.601%207.396-8.01%200-4.41-3.325-8.011-7.396-8.011l-.017-.018Zm0%2014.202c-3.155%200-5.7-2.775-5.7-6.173%200-3.399%202.562-6.174%205.7-6.174%203.138%200%205.7%202.775%205.7%206.174%200%203.398-2.562%206.173-5.7%206.173Zm-126.244-51.977c4.088%200%207.396-3.601%207.396-8.01%200-4.41-3.325-8.011-7.396-8.011s-7.396%203.6-7.396%208.01c0%201.599.441%203.105%201.204%204.355l-58.049%2044.536V94.712c0-8.047.984-16.609%2012.74-25.226%2010.373-7.591%2056.437-39.86%2066.051-46.594h.002l.732-.514c1.34%201.507%203.223%202.462%205.327%202.462%204.088%200%207.396-3.601%207.396-8.01%200-4.41-3.325-8.011-7.396-8.011-4.072%200-7.397%203.6-7.397%208.01%200%201.489.408%202.885%201.069%204.08-7.99%205.585-56.081%2039.28-66.717%2047.052-12.435%209.113-13.486%2018.575-13.486%2026.733v48.137L23.014%20226.905l.983%201.507L193.43%2098.405c1.323%201.378%203.121%202.242%205.106%202.242l-.034.018Zm20.577-90.009c3.155%200%205.699%202.774%205.699%206.173%200%203.4-2.561%206.174-5.699%206.174-3.139%200-5.7-2.775-5.7-6.174%200-3.399%202.561-6.173%205.7-6.173Zm-20.577%2075.807c3.138%200%205.7%202.774%205.7%206.173s-2.562%206.173-5.7%206.173c-3.138%200-5.7-2.774-5.7-6.173s2.562-6.173%205.7-6.173ZM65.495%20146.45c0-4.409%203.308-8.01%207.396-8.01l.017.018c4.072%200%207.397%203.601%207.397%208.011%200%204.409-3.308%208.01-7.397%208.01-1.696%200-3.24-.643-4.495-1.69l-107.226%2082.274-.984-1.507%20106.972-82.09a8.318%208.318%200%200%201-1.68-5.016Zm1.697.019c0%203.398%202.544%206.173%205.7%206.173%203.138%200%205.7-2.775%205.7-6.173%200-3.399-2.562-6.174-5.7-6.174-3.139%200-5.7%202.775-5.7%206.174Z%22%2F%3E%20%20%20%20%3C%2Fg%3E%20%20%20%20%3Cdefs%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22b%22%20x1%3D%22-401.611%22%20x2%3D%22-399.915%22%20y1%3D%22186.742%22%20y2%3D%22186.742%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23fff%22%20stop-opacity%3D%220%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23fff%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22c%22%20x1%3D%22137.754%22%20x2%3D%2228.15%22%20y1%3D%2210.384%22%20y2%3D%22267.529%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23C43BFF%22%2F%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22.891%22%20stop-color%3D%22%23521094%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%20%20%20%20%20%20%20%20%3CclipPath%20id%3D%22a%22%3E%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h500v188H0z%22%2F%3E%20%20%20%20%20%20%20%20%3C%2FclipPath%3E%20%20%20%20%3C%2Fdefs%3E%3C%2Fsvg%3E";
4
-
5
- export { promotionPattern as default };