@prom-ui/core 0.0.90 → 0.0.101
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/Avatar/package.json +1 -1
- package/Body/package.json +1 -1
- package/Box/package.json +1 -1
- package/Button/package.json +1 -1
- package/ButtonPageUp/package.json +1 -1
- package/Checkbox/package.json +1 -1
- package/Flex/package.json +1 -1
- package/Grid/package.json +1 -1
- package/Icon/package.json +1 -1
- package/Image/package.json +1 -1
- package/ImageEmoji/package.json +1 -1
- package/Input/package.json +1 -1
- package/KeyPress/package.json +1 -1
- package/Line/package.json +1 -1
- package/Link/package.json +1 -1
- package/List/package.json +1 -1
- package/Media/package.json +1 -1
- package/OutsideClick/package.json +1 -1
- package/Overlay/SwipeClose.d.ts +11 -0
- package/Overlay/TouchScrollable.d.ts +8 -0
- package/Overlay/cjs/index.development.js +207 -25
- package/Overlay/cjs/index.production.js +1 -1
- package/Overlay/index.d.ts +5 -3
- package/Overlay/package.json +2 -1
- package/Picture/package.json +1 -1
- package/PortableOverlay/package.json +1 -1
- package/Portal/package.json +1 -1
- package/QRCode/package.json +1 -1
- package/Rating/package.json +1 -1
- package/SafeQuery/package.json +1 -1
- package/Scroll/package.json +1 -1
- package/ScrollControls/package.json +1 -1
- package/SideOverlay/package.json +1 -1
- package/SimpleSlider/package.json +1 -1
- package/Skeleton/package.json +1 -1
- package/Spinner/index.d.ts +5 -0
- package/Spinner/package.json +1 -1
- package/Text/cjs/index.development.js +1 -1
- package/Text/cjs/index.production.js +1 -1
- package/Text/cjs/style.development.css +1 -1
- package/Text/cjs/style.production.css +1 -1
- package/Text/package.json +1 -1
- package/TextEmoji/package.json +1 -1
- package/Tooltip/package.json +1 -1
- package/Tumbler/package.json +1 -1
- package/package.json +2 -2
package/Avatar/package.json
CHANGED
package/Body/package.json
CHANGED
package/Box/package.json
CHANGED
package/Button/package.json
CHANGED
package/Checkbox/package.json
CHANGED
package/Flex/package.json
CHANGED
package/Grid/package.json
CHANGED
package/Icon/package.json
CHANGED
package/Image/package.json
CHANGED
package/ImageEmoji/package.json
CHANGED
package/Input/package.json
CHANGED
package/KeyPress/package.json
CHANGED
package/Line/package.json
CHANGED
package/Link/package.json
CHANGED
package/List/package.json
CHANGED
package/Media/package.json
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare type SwipeCloseProps = {
|
|
3
|
+
isActive?: boolean;
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
rootRef: React.RefObject<HTMLDivElement>;
|
|
6
|
+
contentRef: React.RefObject<HTMLDivElement>;
|
|
7
|
+
onClose: (e: any) => void;
|
|
8
|
+
placement: 'adaptive' | 'top' | 'right' | 'bottom' | 'left';
|
|
9
|
+
};
|
|
10
|
+
export declare const SwipeClose: React.FC<SwipeCloseProps>;
|
|
11
|
+
export {};
|
|
@@ -15,6 +15,8 @@ var Button = require('@prom-ui/core/Button');
|
|
|
15
15
|
var Icon = require('@prom-ui/core/Icon');
|
|
16
16
|
var Close = require('@prom-ui/icons/Close');
|
|
17
17
|
var ArrowBack = require('@prom-ui/icons/ArrowBack');
|
|
18
|
+
var utils = require('react-scrolllock/dist/utils');
|
|
19
|
+
var Swipe = require('react-easy-swipe');
|
|
18
20
|
|
|
19
21
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
20
22
|
|
|
@@ -39,6 +41,7 @@ function _interopNamespace(e) {
|
|
|
39
41
|
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
40
42
|
var React__namespace = /*#__PURE__*/_interopNamespace(React);
|
|
41
43
|
var ScrollLock__default = /*#__PURE__*/_interopDefaultLegacy(ScrollLock);
|
|
44
|
+
var Swipe__default = /*#__PURE__*/_interopDefaultLegacy(Swipe);
|
|
42
45
|
|
|
43
46
|
/******************************************************************************
|
|
44
47
|
Copyright (c) Microsoft Corporation.
|
|
@@ -179,6 +182,172 @@ var getPopupStyle = function (placement, size, maxSize) {
|
|
|
179
182
|
};
|
|
180
183
|
};
|
|
181
184
|
|
|
185
|
+
// FORK FROM https://github.com/jossmac/react-scrolllock/blob/master/src/TouchScrollable.js
|
|
186
|
+
var canUseDOM = !!(typeof window !== 'undefined' && window.document && window.document.createElement);
|
|
187
|
+
/* @ts-ignore */
|
|
188
|
+
|
|
189
|
+
var canUseEventListeners = canUseDOM && !!(window.addEventListener || window.attachEvent);
|
|
190
|
+
var TouchScrollable = function (_a) {
|
|
191
|
+
var _b = _a.isActive,
|
|
192
|
+
isActive = _b === void 0 ? false : _b,
|
|
193
|
+
scrollRef = _a.scrollRef,
|
|
194
|
+
children = _a.children;
|
|
195
|
+
React__namespace.useEffect(function () {
|
|
196
|
+
if (!isActive || !canUseEventListeners || !(scrollRef === null || scrollRef === void 0 ? void 0 : scrollRef.current)) return;
|
|
197
|
+
scrollRef.current.addEventListener('touchstart', utils.preventInertiaScroll, utils.listenerOptions);
|
|
198
|
+
scrollRef.current.addEventListener('touchmove', utils.allowTouchMove, utils.listenerOptions);
|
|
199
|
+
return function () {
|
|
200
|
+
if (!isActive || !canUseEventListeners || !(scrollRef === null || scrollRef === void 0 ? void 0 : scrollRef.current)) return;
|
|
201
|
+
scrollRef.current.removeEventListener('touchstart', utils.preventInertiaScroll, utils.listenerOptions);
|
|
202
|
+
scrollRef.current.removeEventListener('touchmove', utils.allowTouchMove, utils.listenerOptions);
|
|
203
|
+
};
|
|
204
|
+
});
|
|
205
|
+
return React__namespace.createElement(React__namespace.Fragment, null, children);
|
|
206
|
+
};
|
|
207
|
+
|
|
208
|
+
var VENDOR_PREFIX = ['-webkit', '-moz', '-ms', '-o'];
|
|
209
|
+
var PROPERTYES_VENDOR_PREFIX = ['transform', 'transition'];
|
|
210
|
+
|
|
211
|
+
var setStyle = function (element, style) {
|
|
212
|
+
if (!element) return;
|
|
213
|
+
|
|
214
|
+
for (var property in style) {
|
|
215
|
+
var isVendorPrefix = PROPERTYES_VENDOR_PREFIX.indexOf(property) !== -1;
|
|
216
|
+
|
|
217
|
+
if (!!!style[property]) {
|
|
218
|
+
element.style.removeProperty(property);
|
|
219
|
+
|
|
220
|
+
if (isVendorPrefix) {
|
|
221
|
+
for (var _i = 0, VENDOR_PREFIX_1 = VENDOR_PREFIX; _i < VENDOR_PREFIX_1.length; _i++) {
|
|
222
|
+
var vendor = VENDOR_PREFIX_1[_i];
|
|
223
|
+
element.style.removeProperty("".concat(vendor, "-").concat(property));
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
} else {
|
|
227
|
+
element.style.setProperty(property, style[property]);
|
|
228
|
+
|
|
229
|
+
if (isVendorPrefix) {
|
|
230
|
+
for (var _a = 0, VENDOR_PREFIX_2 = VENDOR_PREFIX; _a < VENDOR_PREFIX_2.length; _a++) {
|
|
231
|
+
var vendor = VENDOR_PREFIX_2[_a];
|
|
232
|
+
element.style.setProperty("".concat(vendor, "-").concat(property), style[property]);
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
};
|
|
238
|
+
|
|
239
|
+
var SWIPE_TIME_RATE = 250;
|
|
240
|
+
var SWIPE_MIN_POS = 70;
|
|
241
|
+
var SWIPE_TRANSITION_DURATION = 225;
|
|
242
|
+
var SwipeClose = function (_a) {
|
|
243
|
+
var _b = _a.isActive,
|
|
244
|
+
isActive = _b === void 0 ? true : _b,
|
|
245
|
+
children = _a.children,
|
|
246
|
+
onClose = _a.onClose,
|
|
247
|
+
placement = _a.placement,
|
|
248
|
+
rootRef = _a.rootRef,
|
|
249
|
+
contentRef = _a.contentRef;
|
|
250
|
+
var isAllowSwipe = React__namespace.useRef(null);
|
|
251
|
+
var isAllowClose = React__namespace.useRef(false);
|
|
252
|
+
var startTime = React__namespace.useRef(0);
|
|
253
|
+
|
|
254
|
+
if (!isActive) {
|
|
255
|
+
return React__namespace.createElement(React__namespace.Fragment, null, children);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
var onSwipeMove = function (_a) {
|
|
259
|
+
var _b, _c, _d;
|
|
260
|
+
|
|
261
|
+
var x = _a.x,
|
|
262
|
+
y = _a.y;
|
|
263
|
+
var contentsScrollHeight = ((_b = contentRef.current) === null || _b === void 0 ? void 0 : _b.scrollHeight) || 0;
|
|
264
|
+
var contentOffsetHeight = ((_c = contentRef.current) === null || _c === void 0 ? void 0 : _c.offsetHeight) || 0;
|
|
265
|
+
var contentScrollTop = ((_d = contentRef.current) === null || _d === void 0 ? void 0 : _d.scrollTop) || 0;
|
|
266
|
+
var contentScrollBottom = contentsScrollHeight - (contentScrollTop + contentOffsetHeight);
|
|
267
|
+
var transform = null;
|
|
268
|
+
var isAllowSwipeCords = false;
|
|
269
|
+
var isAllowCloseCords = false;
|
|
270
|
+
var xAbs = Math.abs(x);
|
|
271
|
+
var yAbs = Math.abs(y);
|
|
272
|
+
|
|
273
|
+
if (placement === 'top') {
|
|
274
|
+
transform = "translateY(".concat(y >= 0 ? 0 : y, "px)");
|
|
275
|
+
isAllowSwipeCords = contentScrollBottom <= 1 && y <= 0 && yAbs > xAbs;
|
|
276
|
+
isAllowCloseCords = yAbs > SWIPE_MIN_POS;
|
|
277
|
+
} else if (placement === 'bottom') {
|
|
278
|
+
transform = "translateY(".concat(y <= 0 ? 0 : y, "px)");
|
|
279
|
+
isAllowSwipeCords = contentScrollTop <= 1 && y >= 0 && yAbs > xAbs;
|
|
280
|
+
isAllowCloseCords = yAbs > SWIPE_MIN_POS;
|
|
281
|
+
} else if (placement === 'left') {
|
|
282
|
+
transform = "translateX(".concat(x >= 0 ? 0 : x, "px)");
|
|
283
|
+
isAllowSwipeCords = x <= 0 && xAbs > yAbs;
|
|
284
|
+
isAllowCloseCords = xAbs > SWIPE_MIN_POS;
|
|
285
|
+
} else if (placement === 'right') {
|
|
286
|
+
transform = "translateX(".concat(x <= 0 ? 0 : x, "px)");
|
|
287
|
+
isAllowSwipeCords = x >= 0 && xAbs > yAbs;
|
|
288
|
+
isAllowCloseCords = xAbs > SWIPE_MIN_POS;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
if (isAllowSwipe.current === null) {
|
|
292
|
+
if (isAllowSwipeCords) {
|
|
293
|
+
isAllowSwipe.current = true;
|
|
294
|
+
} else {
|
|
295
|
+
isAllowSwipe.current = false;
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
if (isAllowSwipe.current) {
|
|
300
|
+
if (!startTime.current) {
|
|
301
|
+
startTime.current = new Date().getTime();
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
if (!isAllowClose.current && isAllowCloseCords) {
|
|
305
|
+
isAllowClose.current = true;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
setStyle(rootRef.current, {
|
|
309
|
+
transform: transform
|
|
310
|
+
});
|
|
311
|
+
setStyle(contentRef.current, {
|
|
312
|
+
'pointer-events': "none",
|
|
313
|
+
'overflow': 'hidden'
|
|
314
|
+
});
|
|
315
|
+
}
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
var onSwipeEnd = function () {
|
|
319
|
+
if (isAllowSwipe.current) {
|
|
320
|
+
setStyle(rootRef.current, {
|
|
321
|
+
transition: "transform ".concat(SWIPE_TRANSITION_DURATION, "ms cubic-bezier(0, 0, 0.2, 1) 0ms"),
|
|
322
|
+
transform: null
|
|
323
|
+
});
|
|
324
|
+
setStyle(contentRef.current, {
|
|
325
|
+
'pointer-events': null,
|
|
326
|
+
'overflow': null
|
|
327
|
+
});
|
|
328
|
+
setTimeout(function () {
|
|
329
|
+
setStyle(rootRef.current, {
|
|
330
|
+
transition: null
|
|
331
|
+
});
|
|
332
|
+
}, SWIPE_TRANSITION_DURATION);
|
|
333
|
+
var timeRate = new Date().getTime() - startTime.current;
|
|
334
|
+
|
|
335
|
+
if (isAllowClose.current && timeRate < SWIPE_TIME_RATE && onClose) {
|
|
336
|
+
onClose({});
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
startTime.current = 0;
|
|
341
|
+
isAllowSwipe.current = null;
|
|
342
|
+
isAllowClose.current = false;
|
|
343
|
+
};
|
|
344
|
+
|
|
345
|
+
return React__namespace.createElement(Swipe__default["default"], {
|
|
346
|
+
onSwipeMove: onSwipeMove,
|
|
347
|
+
onSwipeEnd: onSwipeEnd
|
|
348
|
+
}, children);
|
|
349
|
+
};
|
|
350
|
+
|
|
182
351
|
var DEFAULT_SIZE = 400;
|
|
183
352
|
var Overlay = function (_a) {
|
|
184
353
|
var children = _a.children,
|
|
@@ -194,39 +363,42 @@ var Overlay = function (_a) {
|
|
|
194
363
|
isShowPrevButton = _c === void 0 ? false : _c,
|
|
195
364
|
_d = _a.isCloseOnEscape,
|
|
196
365
|
isCloseOnEscape = _d === void 0 ? true : _d,
|
|
197
|
-
_e = _a.
|
|
198
|
-
|
|
366
|
+
_e = _a.isCloseOnSwipe,
|
|
367
|
+
isCloseOnSwipe = _e === void 0 ? true : _e,
|
|
199
368
|
_f = _a.isCloseOutsideClick,
|
|
200
369
|
isCloseOutsideClick = _f === void 0 ? true : _f,
|
|
201
|
-
_g = _a.
|
|
202
|
-
|
|
203
|
-
_h = _a.
|
|
204
|
-
|
|
205
|
-
_j = _a.
|
|
206
|
-
|
|
370
|
+
_g = _a.isAnimated,
|
|
371
|
+
isAnimated = _g === void 0 ? true : _g,
|
|
372
|
+
_h = _a.isRenderPortal,
|
|
373
|
+
isRenderPortal = _h === void 0 ? true : _h,
|
|
374
|
+
_j = _a.isScrollLock,
|
|
375
|
+
isScrollLock = _j === void 0 ? true : _j,
|
|
376
|
+
_k = _a.isScrollLockTouch,
|
|
377
|
+
isScrollLockTouch = _k === void 0 ? true : _k,
|
|
207
378
|
header = _a.header,
|
|
208
379
|
footer = _a.footer,
|
|
209
|
-
|
|
210
|
-
padding =
|
|
380
|
+
_l = _a.padding,
|
|
381
|
+
padding = _l === void 0 ? '20px 20px 20px 20px' : _l,
|
|
211
382
|
title = _a.title,
|
|
212
|
-
|
|
213
|
-
placement =
|
|
214
|
-
|
|
215
|
-
size =
|
|
216
|
-
|
|
217
|
-
maxSize =
|
|
218
|
-
|
|
219
|
-
zIndex =
|
|
383
|
+
_m = _a.placement,
|
|
384
|
+
placement = _m === void 0 ? 'adaptive' : _m,
|
|
385
|
+
_o = _a.size,
|
|
386
|
+
size = _o === void 0 ? 'adaptive' : _o,
|
|
387
|
+
_p = _a.maxSize,
|
|
388
|
+
maxSize = _p === void 0 ? '90%' : _p,
|
|
389
|
+
_q = _a.zIndex,
|
|
390
|
+
zIndex = _q === void 0 ? 5000 : _q,
|
|
220
391
|
contentRef = _a.contentRef,
|
|
221
392
|
dataQaId = _a.dataQaId,
|
|
222
|
-
props = __rest(_a, ["children", "onClose", "onOpen", "onPrev", "onOpened", "onClosed", "isOpen", "isShowCloseButton", "isShowPrevButton", "isCloseOnEscape", "
|
|
393
|
+
props = __rest(_a, ["children", "onClose", "onOpen", "onPrev", "onOpened", "onClosed", "isOpen", "isShowCloseButton", "isShowPrevButton", "isCloseOnEscape", "isCloseOnSwipe", "isCloseOutsideClick", "isAnimated", "isRenderPortal", "isScrollLock", "isScrollLockTouch", "header", "footer", "padding", "title", "placement", "size", "maxSize", "zIndex", "contentRef", "dataQaId"]);
|
|
223
394
|
|
|
224
|
-
var
|
|
225
|
-
var
|
|
395
|
+
var popupRef = React__namespace.useRef(null);
|
|
396
|
+
var currentContentRef = contentRef || React__namespace.useRef(null);
|
|
226
397
|
var isMinWidthMedium = Media.useMedia({
|
|
227
398
|
minWidth: 'medium'
|
|
228
399
|
});
|
|
229
|
-
var
|
|
400
|
+
var currentPlacement = placement;
|
|
401
|
+
var currentSize = size;
|
|
230
402
|
|
|
231
403
|
if (size === 'adaptive') {
|
|
232
404
|
if (placement === 'top' || placement === 'bottom') {
|
|
@@ -250,6 +422,12 @@ var Overlay = function (_a) {
|
|
|
250
422
|
enabled: isAnimated
|
|
251
423
|
}, React__namespace.createElement(Portal.Portal, {
|
|
252
424
|
isActive: isRenderPortal
|
|
425
|
+
}, React__namespace.createElement(SwipeClose, {
|
|
426
|
+
isActive: isScrollLock && isCloseOnSwipe,
|
|
427
|
+
rootRef: popupRef,
|
|
428
|
+
contentRef: currentContentRef,
|
|
429
|
+
placement: currentPlacement,
|
|
430
|
+
onClose: onClose
|
|
253
431
|
}, React__namespace.createElement(Root, __assign({
|
|
254
432
|
role: 'presentation',
|
|
255
433
|
style: {
|
|
@@ -269,6 +447,7 @@ var Overlay = function (_a) {
|
|
|
269
447
|
}
|
|
270
448
|
}
|
|
271
449
|
}), React__namespace.createElement(Popup, {
|
|
450
|
+
ref: popupRef,
|
|
272
451
|
"popup-placement": currentPlacement,
|
|
273
452
|
"aria-modal": true,
|
|
274
453
|
role: 'dialog',
|
|
@@ -280,12 +459,15 @@ var Overlay = function (_a) {
|
|
|
280
459
|
onClose: onClose,
|
|
281
460
|
onPrev: onPrev,
|
|
282
461
|
title: title
|
|
283
|
-
}, header), React__namespace.createElement(OverlayFooter, null, footer), React__namespace.createElement(
|
|
284
|
-
|
|
462
|
+
}, header), React__namespace.createElement(OverlayFooter, null, footer), React__namespace.createElement(TouchScrollable, {
|
|
463
|
+
isActive: isScrollLockTouch,
|
|
464
|
+
scrollRef: currentContentRef
|
|
465
|
+
}, React__namespace.createElement(OverlayContent, {
|
|
466
|
+
ref: currentContentRef,
|
|
285
467
|
style: {
|
|
286
468
|
padding: padding
|
|
287
469
|
}
|
|
288
|
-
}, children))))));
|
|
470
|
+
}, children)))))));
|
|
289
471
|
};
|
|
290
472
|
|
|
291
473
|
exports.Overlay = Overlay;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("react"),t=require("react-scrolllock"),
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("react"),t=require("react-scrolllock"),r=require("@prom-ui/core/KeyPress"),n=require("@prom-ui/core/Portal"),o=require("@prom-ui/core/Media"),i=require("ttag"),a=require("evokit"),c=require("react-transition-group"),l=require("@prom-ui/core/Text"),u=require("@prom-ui/core/Button"),s=require("@prom-ui/core/Icon"),d=require("@prom-ui/icons/Close"),p=require("@prom-ui/icons/ArrowBack"),v=require("react-scrolllock/dist/utils"),f=require("react-easy-swipe");function m(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}function h(e){if(e&&e.__esModule)return e;var t=Object.create(null);return e&&Object.keys(e).forEach((function(r){if("default"!==r){var n=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(t,r,n.get?n:{enumerable:!0,get:function(){return e[r]}})}})),t.default=e,Object.freeze(t)}var E=m(e),_=h(e),b=m(t),w=m(f),y=function(){return y=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var o in t=arguments[r])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},y.apply(this,arguments)};function O(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e}var x,g,S={root:"v0oYp",backdrop:"RvRWz",popup:"elIqJ",popup_placement_top:"Llv4b",popup_placement_bottom:"DJyNc",popup_placement_right:"_4DX3c",popup_placement_left:"OwkR7",content:"_5qQ0k",header:"LIk9z",header__grid:"SShy4",header__item:"_9fUzS",header__title:"Vuilz _9fUzS",header__action:"c-A8d _9fUzS",header__actionButton:"yYG24",header__actionIcon:"La2ok",footer:"_3Ca-G",enter:"OjeZp",exit:"HiHMU",enterActive:"Ne-Vn",exitActive:"_6f7f1"},k={css:S,b:""},C=a.createBlock("div","root",[],k),P=a.createBlock("div","backdrop",[],k),q=a.createBlock("div","popup",["placement"],k),B=a.createBlock("div","content",[],k),R=function(e){var t=e.open,r=void 0!==t&&t,n=e.children,o=e.enabled,i=void 0===o||o,a=e.onEnter,l=e.onEntered,u=e.onExited;return E.default.createElement(c.CSSTransition,{in:r,timeout:i?225:0,classNames:S,unmountOnExit:!0,onEnter:a,onEntered:l,onExited:u},n)},z=function(e){var t=e.isShowPrevButton,r=e.isShowCloseButton,n=e.children,o=e.title,a=e.onClose,c=e.onPrev;return E.default.createElement("div",{className:S.header},void 0!==n?n:E.default.createElement("div",{className:S.header__grid},E.default.createElement("div",{className:S.header__action},t&&E.default.createElement(u.Button,{className:S.header__actionButton,"button-theme":"black-inherit",type:"button",onClick:c,"aria-label":i.t(x||(x=O(["Назад"],["Назад"]))),"data-qaid":"prev"},E.default.createElement(s.Icon,{"icon-as":p.ArrowBack,className:S.header__actionIcon}))),E.default.createElement("div",{className:S.header__title},"string"==typeof o?E.default.createElement(l.Text,{"text-align":"center","text-size":"h4","text-wrap":"ellipsis","text-weight":"bold","data-qaid":"title"},o):o),E.default.createElement("div",{className:S.header__action},r&&a&&E.default.createElement(u.Button,{className:S.header__actionButton,"button-theme":"black-inherit",type:"button",onClick:a,"aria-label":i.t(g||(g=O(["Закрыть"],["Закрыть"]))),"data-qaid":"close"},E.default.createElement(s.Icon,{"icon-as":d.Close,className:S.header__actionIcon})))))},j=function(e){var t=e.children;return E.default.createElement("div",{className:S.footer},t)},I=function(e,t,r){return["top","bottom"].includes(e)?{height:t,maxHeight:r}:{width:t,maxWidth:r}},A=!("undefined"==typeof window||!window.document||!window.document.createElement)&&!(!window.addEventListener&&!window.attachEvent),N=function(e){var t=e.isActive,r=void 0!==t&&t,n=e.scrollRef,o=e.children;return _.useEffect((function(){if(r&&A&&(null==n?void 0:n.current))return n.current.addEventListener("touchstart",v.preventInertiaScroll,v.listenerOptions),n.current.addEventListener("touchmove",v.allowTouchMove,v.listenerOptions),function(){r&&A&&(null==n?void 0:n.current)&&(n.current.removeEventListener("touchstart",v.preventInertiaScroll,v.listenerOptions),n.current.removeEventListener("touchmove",v.allowTouchMove,v.listenerOptions))}})),_.createElement(_.Fragment,null,o)},L=["-webkit","-moz","-ms","-o"],T=["transform","transition"],M=function(e,t){if(e)for(var r in t){var n=-1!==T.indexOf(r);if(t[r]){if(e.style.setProperty(r,t[r]),n)for(var o=0,i=L;o<i.length;o++){l=i[o];e.style.setProperty("".concat(l,"-").concat(r),t[r])}}else if(e.style.removeProperty(r),n)for(var a=0,c=L;a<c.length;a++){var l=c[a];e.style.removeProperty("".concat(l,"-").concat(r))}}},D=function(e){var t=e.isActive,r=void 0===t||t,n=e.children,o=e.onClose,i=e.placement,a=e.rootRef,c=e.contentRef,l=_.useRef(null),u=_.useRef(!1),s=_.useRef(0);if(!r)return _.createElement(_.Fragment,null,n);return _.createElement(w.default,{onSwipeMove:function(e){var t,r,n,o=e.x,d=e.y,p=(null===(t=c.current)||void 0===t?void 0:t.scrollHeight)||0,v=(null===(r=c.current)||void 0===r?void 0:r.offsetHeight)||0,f=(null===(n=c.current)||void 0===n?void 0:n.scrollTop)||0,m=p-(f+v),h=null,E=!1,_=!1,b=Math.abs(o),w=Math.abs(d);"top"===i?(h="translateY(".concat(d>=0?0:d,"px)"),E=m<=1&&d<=0&&w>b,_=w>70):"bottom"===i?(h="translateY(".concat(d<=0?0:d,"px)"),E=f<=1&&d>=0&&w>b,_=w>70):"left"===i?(h="translateX(".concat(o>=0?0:o,"px)"),E=o<=0&&b>w,_=b>70):"right"===i&&(h="translateX(".concat(o<=0?0:o,"px)"),E=o>=0&&b>w,_=b>70),null===l.current&&(l.current=!!E),l.current&&(s.current||(s.current=(new Date).getTime()),!u.current&&_&&(u.current=!0),M(a.current,{transform:h}),M(c.current,{"pointer-events":"none",overflow:"hidden"}))},onSwipeEnd:function(){if(l.current){M(a.current,{transition:"transform ".concat(225,"ms cubic-bezier(0, 0, 0.2, 1) 0ms"),transform:null}),M(c.current,{"pointer-events":null,overflow:null}),setTimeout((function(){M(a.current,{transition:null})}),225);var e=(new Date).getTime()-s.current;u.current&&e<250&&o&&o({})}s.current=0,l.current=null,u.current=!1}},n)};exports.Overlay=function(e){var t=e.children,i=e.onClose,a=e.onOpen,c=e.onPrev,l=e.onOpened,u=e.onClosed,s=e.isOpen,d=e.isShowCloseButton,p=void 0===d||d,v=e.isShowPrevButton,f=void 0!==v&&v,m=e.isCloseOnEscape,h=void 0===m||m,E=e.isCloseOnSwipe,w=void 0===E||E,O=e.isCloseOutsideClick,x=void 0===O||O,g=e.isAnimated,S=void 0===g||g,k=e.isRenderPortal,A=void 0===k||k,L=e.isScrollLock,T=void 0===L||L,M=e.isScrollLockTouch,H=void 0===M||M,U=e.header,Y=e.footer,K=e.padding,Q=void 0===K?"20px 20px 20px 20px":K,W=e.title,X=e.placement,F=void 0===X?"adaptive":X,G=e.size,J=void 0===G?"adaptive":G,V=e.maxSize,Z=void 0===V?"90%":V,$=e.zIndex,ee=void 0===$?5e3:$,te=e.contentRef,re=e.dataQaId,ne=function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}(e,["children","onClose","onOpen","onPrev","onOpened","onClosed","isOpen","isShowCloseButton","isShowPrevButton","isCloseOnEscape","isCloseOnSwipe","isCloseOutsideClick","isAnimated","isRenderPortal","isScrollLock","isScrollLockTouch","header","footer","padding","title","placement","size","maxSize","zIndex","contentRef","dataQaId"]),oe=_.useRef(null),ie=te||_.useRef(null),ae=o.useMedia({minWidth:"medium"}),ce=F,le=J;return"adaptive"===J&&(le="top"===F||"bottom"===F?"auto":"adaptive"===F?ae?400:"auto":400),"adaptive"===F&&(ce=ae?"right":"bottom"),_.createElement(R,{open:s,onEnter:a,onEntered:l,onExited:u,enabled:S},_.createElement(n.Portal,{isActive:A},_.createElement(D,{isActive:T&&w,rootRef:oe,contentRef:ie,placement:ce,onClose:i},_.createElement(C,y({role:"presentation",style:{zIndex:ee}},ne),_.createElement(b.default,{isActive:T}),_.createElement(r.KeyPress,{isActive:h,code:"Escape",onKeyDown:i}),_.createElement(P,{"aria-hidden":!0,onClick:function(e){x&&i&&i(e)}}),_.createElement(q,{ref:oe,"popup-placement":ce,"aria-modal":!0,role:"dialog",style:I(ce,le,Z),"data-qaid":re},_.createElement(z,{isShowCloseButton:p,isShowPrevButton:f,onClose:i,onPrev:c,title:W},U),_.createElement(j,null,Y),_.createElement(N,{isActive:H,scrollRef:ie},_.createElement(B,{ref:ie,style:{padding:Q}},t)))))))},require("./style.production.css");
|
package/Overlay/index.d.ts
CHANGED
|
@@ -32,10 +32,12 @@ export declare type OverlayProps = React.ComponentProps<"div"> & {
|
|
|
32
32
|
isShowPrevButton?: boolean;
|
|
33
33
|
/** Разрешает закрыть попап по клавише `Escape` */
|
|
34
34
|
isCloseOnEscape?: boolean;
|
|
35
|
-
/**
|
|
36
|
-
|
|
35
|
+
/** Разрешает закрыть попап по свайпу, работает если `isScrollLock={true}` */
|
|
36
|
+
isCloseOnSwipe?: boolean;
|
|
37
37
|
/** Разрешает закрытие при клике на свободное пространство (затемнение документа) */
|
|
38
38
|
isCloseOutsideClick?: boolean;
|
|
39
|
+
/** Рендер в конец `<body>` */
|
|
40
|
+
isRenderPortal?: boolean;
|
|
39
41
|
/** Включает/отключает анимацию открытия/скрытия шторки */
|
|
40
42
|
isAnimated?: boolean;
|
|
41
43
|
/** Запрещает прокрутку `<body>` */
|
|
@@ -64,7 +66,7 @@ export declare type OverlayProps = React.ComponentProps<"div"> & {
|
|
|
64
66
|
zIndex?: string | number;
|
|
65
67
|
/** HTML Атрибут `data-qaid` для автотестов */
|
|
66
68
|
/** `ref` для блока с контентом */
|
|
67
|
-
contentRef?: React.RefObject<
|
|
69
|
+
contentRef?: React.RefObject<HTMLDivElement>;
|
|
68
70
|
dataQaId?: string;
|
|
69
71
|
};
|
|
70
72
|
export declare const Overlay: React.FC<OverlayProps>;
|
package/Overlay/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prom-ui/core/Overlay",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.101",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"sideEffects": [
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
],
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"evokit": "^3.2.3",
|
|
11
|
+
"react-easy-swipe": "^0.0.22",
|
|
11
12
|
"react-scrolllock": "^5.0.1",
|
|
12
13
|
"react-transition-group": "^4.4.2",
|
|
13
14
|
"ttag": "^1.7.24"
|
package/Picture/package.json
CHANGED
package/Portal/package.json
CHANGED
package/QRCode/package.json
CHANGED
package/Rating/package.json
CHANGED
package/SafeQuery/package.json
CHANGED
package/Scroll/package.json
CHANGED
package/SideOverlay/package.json
CHANGED
package/Skeleton/package.json
CHANGED
package/Spinner/index.d.ts
CHANGED
|
@@ -6,5 +6,10 @@ export declare type SpinnerProps = React.ComponentPropsWithRef<"svg"> & {
|
|
|
6
6
|
height?: string | number;
|
|
7
7
|
/** Цвет */
|
|
8
8
|
'spinner-color'?: 'violet-500';
|
|
9
|
+
/**
|
|
10
|
+
* @ignore
|
|
11
|
+
* HIT FIX property 'fr' is missing in type '{}' but required in type
|
|
12
|
+
* */
|
|
13
|
+
fr?: string | number;
|
|
9
14
|
};
|
|
10
15
|
export declare const Spinner: React.ForwardRefExoticComponent<Pick<SpinnerProps, "string" | "color" | "style" | "clipPath" | "filter" | "mask" | "path" | "className" | "height" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "target" | "type" | "width" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "accumulate" | "additive" | "alignmentBaseline" | "allowReorder" | "alphabetic" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "azimuth" | "baseFrequency" | "baselineShift" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clip" | "clipPathUnits" | "clipRule" | "colorInterpolation" | "colorInterpolationFilters" | "colorProfile" | "colorRendering" | "contentScriptType" | "contentStyleType" | "cursor" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "direction" | "display" | "divisor" | "dominantBaseline" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "end" | "exponent" | "externalResourcesRequired" | "fill" | "fillOpacity" | "fillRule" | "filterRes" | "filterUnits" | "floodColor" | "floodOpacity" | "focusable" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphOrientationVertical" | "glyphRef" | "gradientTransform" | "gradientUnits" | "hanging" | "horizAdvX" | "horizOriginX" | "href" | "ideographic" | "imageRendering" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "letterSpacing" | "lightingColor" | "limitingConeAngle" | "local" | "markerEnd" | "markerHeight" | "markerMid" | "markerStart" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mathematical" | "mode" | "numOctaves" | "offset" | "opacity" | "operator" | "order" | "orient" | "orientation" | "origin" | "overflow" | "overlinePosition" | "overlineThickness" | "paintOrder" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "pointerEvents" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rotate" | "rx" | "ry" | "scale" | "seed" | "shapeRendering" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "stopColor" | "stopOpacity" | "strikethroughPosition" | "strikethroughThickness" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textAnchor" | "textDecoration" | "textLength" | "textRendering" | "to" | "transform" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicode" | "unicodeBidi" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "vectorEffect" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "visibility" | "vMathematical" | "widths" | "wordSpacing" | "writingMode" | "x1" | "x2" | "x" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "y" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "spinner-color"> & React.RefAttributes<HTMLOrSVGElement>>;
|
package/Spinner/package.json
CHANGED
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var evokitText = require('evokit-text');
|
|
6
6
|
|
|
7
|
-
var css = {"ek-text":"Text__ek-text___3Trjq","ek-text_display_inline":"Text__ek-text_display_inline___hPK83","ek-text_display_none":"Text__ek-text_display_none___EpkgL","ek-text_size_none":"Text__ek-text_size_none___3fCio","ek-text_size_inherit":"Text__ek-text_size_inherit___GeUFz","ek-text_size_small":"Text__ek-text_size_small___IfSYo","ek-text_size_default":"Text__ek-text_size_default___snf--","ek-text_size_big":"Text__ek-text_size_big___R2ynx","ek-text_size_h1":"Text__ek-text_size_h1___RLQ4A","ek-text_size_h2":"Text__ek-text_size_h2___OAv5u","ek-text_size_h3":"Text__ek-text_size_h3___jF03G","ek-text_size_h4":"Text__ek-text_size_h4___vj3pM","ek-text_size_h5":"Text__ek-text_size_h5___aeJVe","ek-text_size_h6":"Text__ek-text_size_h6___P9by2","ek-text_weight_default":"Text__ek-text_weight_default___wrQRQ","ek-text_weight_thin":"Text__ek-text_weight_thin___pmZOp","ek-text_weight_light":"Text__ek-text_weight_light___vEbTA","ek-text_weight_medium":"Text__ek-text_weight_medium___gfDGa","ek-text_weight_bold":"Text__ek-text_weight_bold___F7Tdh","ek-text_weight_black":"Text__ek-text_weight_black___Llirb","ek-text_align_left":"Text__ek-text_align_left___gwkkx","ek-text_align_center":"Text__ek-text_align_center___od97W","ek-text_align_right":"Text__ek-text_align_right___PatyF","ek-text_align_justify":"Text__ek-text_align_justify___WNRHD","ek-text_valign_baseline":"Text__ek-text_valign_baseline___BFQkO","ek-text_valign_bottom":"Text__ek-text_valign_bottom___uoQE-","ek-text_valign_middle":"Text__ek-text_valign_middle___wL4cB","ek-text_valign_sub":"Text__ek-text_valign_sub___oQuQV","ek-text_valign_super":"Text__ek-text_valign_super___GM270","ek-text_valign_text-bottom":"Text__ek-text_valign_text-bottom___i3gPf","ek-text_valign_text-top":"Text__ek-text_valign_text-top___Y-R3w","ek-text_valign_top":"Text__ek-text_valign_top___NSQH0","ek-text_transform_none":"Text__ek-text_transform_none___ioMWl","ek-text_transform_capitalize":"Text__ek-text_transform_capitalize___-nH9C","ek-text_transform_lowercase":"Text__ek-text_transform_lowercase___pYEmk","ek-text_transform_uppercase":"Text__ek-text_transform_uppercase___Ptm6g","ek-text_style_italic":"Text__ek-text_style_italic___Y01G5","ek-text_style_strike":"Text__ek-text_style_strike___powM8","ek-text_style_underline":"Text__ek-text_style_underline___ECUz1","ek-text_style_overline":"Text__ek-text_style_overline___E4jPq","ek-text_lheight_default":"Text__ek-text_lheight_default___ic9SB","ek-text_lheight_medium":"Text__ek-text_lheight_medium___QrtcH","ek-text_lheight_large":"Text__ek-text_lheight_large___G5HaP","ek-text_wrap_normal":"Text__ek-text_wrap_normal___vN11O","ek-text_wrap_nowrap":"Text__ek-text_wrap_nowrap___hJTsv","ek-text_wrap_pre":"Text__ek-text_wrap_pre___qtOKJ","ek-text_wrap_pre-wrap":"Text__ek-text_wrap_pre-wrap___55qRX","ek-text_wrap_pre-line":"Text__ek-text_wrap_pre-line___z-RVa","ek-text_wrap_break":"Text__ek-text_wrap_break___htldP","ek-text_wrap_ellipsis":"Text__ek-text_wrap_ellipsis___aXB7S","ek-text_wrap_two-line":"Text__ek-text_wrap_two-line___7NHpZ","ek-text_wrap_three-line":"Text__ek-text_wrap_three-line___SCVcX","ek-text_display_inline@small":"Text__ek-text_display_inline--small___tf5qK","ek-text_display_none@small":"Text__ek-text_display_none--small___QClAg","ek-text_size_none@small":"Text__ek-text_size_none--small___iNBWs","ek-text_size_inherit@small":"Text__ek-text_size_inherit--small___SleAe","ek-text_size_small@small":"Text__ek-text_size_small--small___JLdX7","ek-text_size_default@small":"Text__ek-text_size_default--small___lpjy2","ek-text_size_big@small":"Text__ek-text_size_big--small___tyFZq","ek-text_size_h1@small":"Text__ek-text_size_h1--small___bTc9i","ek-text_size_h2@small":"Text__ek-text_size_h2--small___fVsfH","ek-text_size_h3@small":"Text__ek-text_size_h3--small___9bupj","ek-text_size_h4@small":"Text__ek-text_size_h4--small___RLAjj","ek-text_size_h5@small":"Text__ek-text_size_h5--small___MSeBt","ek-text_size_h6@small":"Text__ek-text_size_h6--small___DGRDV","ek-text_weight_default@small":"Text__ek-text_weight_default--small___7u9ww","ek-text_weight_thin@small":"Text__ek-text_weight_thin--small___f3E1Z","ek-text_weight_light@small":"Text__ek-text_weight_light--small___UgVat","ek-text_weight_medium@small":"Text__ek-text_weight_medium--small___GhR2r","ek-text_weight_bold@small":"Text__ek-text_weight_bold--small___fdZOu","ek-text_weight_black@small":"Text__ek-text_weight_black--small___Txf2-","ek-text_align_left@small":"Text__ek-text_align_left--small___MOcbA","ek-text_align_center@small":"Text__ek-text_align_center--small___NDoRI","ek-text_align_right@small":"Text__ek-text_align_right--small___ertsn","ek-text_align_justify@small":"Text__ek-text_align_justify--small___VXEjp","ek-text_valign_baseline@small":"Text__ek-text_valign_baseline--small___NFaJ5","ek-text_valign_bottom@small":"Text__ek-text_valign_bottom--small___n-ZM1","ek-text_valign_middle@small":"Text__ek-text_valign_middle--small___1o-f9","ek-text_valign_sub@small":"Text__ek-text_valign_sub--small___7vrZ5","ek-text_valign_super@small":"Text__ek-text_valign_super--small___98wkH","ek-text_valign_text-bottom@small":"Text__ek-text_valign_text-bottom--small___x6B2v","ek-text_valign_text-top@small":"Text__ek-text_valign_text-top--small___LfpH0","ek-text_valign_top@small":"Text__ek-text_valign_top--small___kBQTl","ek-text_transform_none@small":"Text__ek-text_transform_none--small___lNIlb","ek-text_transform_capitalize@small":"Text__ek-text_transform_capitalize--small___wM1eM","ek-text_transform_lowercase@small":"Text__ek-text_transform_lowercase--small___bjZhn","ek-text_transform_uppercase@small":"Text__ek-text_transform_uppercase--small___QcGz5","ek-text_style_italic@small":"Text__ek-text_style_italic--small___RLkz-","ek-text_style_strike@small":"Text__ek-text_style_strike--small___--sCr","ek-text_style_underline@small":"Text__ek-text_style_underline--small___LXQS8","ek-text_style_overline@small":"Text__ek-text_style_overline--small___GNoIB","ek-text_lheight_default@small":"Text__ek-text_lheight_default--small___1W3d2","ek-text_lheight_medium@small":"Text__ek-text_lheight_medium--small___cZ7Yw","ek-text_lheight_large@small":"Text__ek-text_lheight_large--small___Q69Gt","ek-text_wrap_normal@small":"Text__ek-text_wrap_normal--small___OCeTY","ek-text_wrap_nowrap@small":"Text__ek-text_wrap_nowrap--small___feATc","ek-text_wrap_pre@small":"Text__ek-text_wrap_pre--small___VAue2","ek-text_wrap_pre-wrap@small":"Text__ek-text_wrap_pre-wrap--small___CrynB","ek-text_wrap_pre-line@small":"Text__ek-text_wrap_pre-line--small___2Zets","ek-text_wrap_break@small":"Text__ek-text_wrap_break--small___C6739","ek-text_wrap_ellipsis@small":"Text__ek-text_wrap_ellipsis--small___V-dhX","ek-text_wrap_two-line@small":"Text__ek-text_wrap_two-line--small___fqP29","ek-text_wrap_three-line@small":"Text__ek-text_wrap_three-line--small___Yh-Xv","ek-text_display_inline@medium":"Text__ek-text_display_inline--medium___q29UB","ek-text_display_none@medium":"Text__ek-text_display_none--medium___pS5WL","ek-text_size_none@medium":"Text__ek-text_size_none--medium___zmMXI","ek-text_size_inherit@medium":"Text__ek-text_size_inherit--medium___NyD6y","ek-text_size_small@medium":"Text__ek-text_size_small--medium___85MSY","ek-text_size_default@medium":"Text__ek-text_size_default--medium___NMxaK","ek-text_size_big@medium":"Text__ek-text_size_big--medium___Ua-Zk","ek-text_size_h1@medium":"Text__ek-text_size_h1--medium___thuyZ","ek-text_size_h2@medium":"Text__ek-text_size_h2--medium___ESQoF","ek-text_size_h3@medium":"Text__ek-text_size_h3--medium___KZmg9","ek-text_size_h4@medium":"Text__ek-text_size_h4--medium___ECj9y","ek-text_size_h5@medium":"Text__ek-text_size_h5--medium___2Egnj","ek-text_size_h6@medium":"Text__ek-text_size_h6--medium___EiSb9","ek-text_weight_default@medium":"Text__ek-text_weight_default--medium___tB-Ch","ek-text_weight_thin@medium":"Text__ek-text_weight_thin--medium___s8W0s","ek-text_weight_light@medium":"Text__ek-text_weight_light--medium___ltoWf","ek-text_weight_medium@medium":"Text__ek-text_weight_medium--medium___6tPBW","ek-text_weight_bold@medium":"Text__ek-text_weight_bold--medium___rpqZ0","ek-text_weight_black@medium":"Text__ek-text_weight_black--medium___GSyAT","ek-text_align_left@medium":"Text__ek-text_align_left--medium___P1t-C","ek-text_align_center@medium":"Text__ek-text_align_center--medium___EyFNY","ek-text_align_right@medium":"Text__ek-text_align_right--medium___pv76v","ek-text_align_justify@medium":"Text__ek-text_align_justify--medium___BPD5C","ek-text_valign_baseline@medium":"Text__ek-text_valign_baseline--medium___uudr0","ek-text_valign_bottom@medium":"Text__ek-text_valign_bottom--medium___PllPd","ek-text_valign_middle@medium":"Text__ek-text_valign_middle--medium___Ik6u5","ek-text_valign_sub@medium":"Text__ek-text_valign_sub--medium___utVwf","ek-text_valign_super@medium":"Text__ek-text_valign_super--medium___BbzMP","ek-text_valign_text-bottom@medium":"Text__ek-text_valign_text-bottom--medium___h-L8G","ek-text_valign_text-top@medium":"Text__ek-text_valign_text-top--medium___2Sxc3","ek-text_valign_top@medium":"Text__ek-text_valign_top--medium___oC57Z","ek-text_transform_none@medium":"Text__ek-text_transform_none--medium___VjPVc","ek-text_transform_capitalize@medium":"Text__ek-text_transform_capitalize--medium___D2Sqd","ek-text_transform_lowercase@medium":"Text__ek-text_transform_lowercase--medium___hjkKi","ek-text_transform_uppercase@medium":"Text__ek-text_transform_uppercase--medium___AEFL3","ek-text_style_italic@medium":"Text__ek-text_style_italic--medium___yckf-","ek-text_style_strike@medium":"Text__ek-text_style_strike--medium___Fc1Ji","ek-text_style_underline@medium":"Text__ek-text_style_underline--medium___d-Mrs","ek-text_style_overline@medium":"Text__ek-text_style_overline--medium___cBafd","ek-text_lheight_default@medium":"Text__ek-text_lheight_default--medium___UHfd4","ek-text_lheight_medium@medium":"Text__ek-text_lheight_medium--medium___K2JnS","ek-text_lheight_large@medium":"Text__ek-text_lheight_large--medium___7jFRq","ek-text_wrap_normal@medium":"Text__ek-text_wrap_normal--medium___tiKih","ek-text_wrap_nowrap@medium":"Text__ek-text_wrap_nowrap--medium___K2M6e","ek-text_wrap_pre@medium":"Text__ek-text_wrap_pre--medium___TpcHG","ek-text_wrap_pre-wrap@medium":"Text__ek-text_wrap_pre-wrap--medium___Z6C0k","ek-text_wrap_pre-line@medium":"Text__ek-text_wrap_pre-line--medium___Ajn6a","ek-text_wrap_break@medium":"Text__ek-text_wrap_break--medium___QtGGg","ek-text_wrap_ellipsis@medium":"Text__ek-text_wrap_ellipsis--medium___NyLo3","ek-text_wrap_two-line@medium":"Text__ek-text_wrap_two-line--medium___R6ga0","ek-text_wrap_three-line@medium":"Text__ek-text_wrap_three-line--medium___E2iMw","ek-text_display_inline@large":"Text__ek-text_display_inline--large___Qr7da","ek-text_display_none@large":"Text__ek-text_display_none--large___8q9MY","ek-text_size_none@large":"Text__ek-text_size_none--large___lhd15","ek-text_size_inherit@large":"Text__ek-text_size_inherit--large___JRmGP","ek-text_size_small@large":"Text__ek-text_size_small--large___gGYoF","ek-text_size_default@large":"Text__ek-text_size_default--large___f8ZGq","ek-text_size_big@large":"Text__ek-text_size_big--large___kXeDX","ek-text_size_h1@large":"Text__ek-text_size_h1--large___FnCNG","ek-text_size_h2@large":"Text__ek-text_size_h2--large___ud3vr","ek-text_size_h3@large":"Text__ek-text_size_h3--large___cQwu6","ek-text_size_h4@large":"Text__ek-text_size_h4--large___AeJ7R","ek-text_size_h5@large":"Text__ek-text_size_h5--large___5AP56","ek-text_size_h6@large":"Text__ek-text_size_h6--large___nXKYk","ek-text_weight_default@large":"Text__ek-text_weight_default--large___-KZf3","ek-text_weight_thin@large":"Text__ek-text_weight_thin--large___OtiPU","ek-text_weight_light@large":"Text__ek-text_weight_light--large___Q876R","ek-text_weight_medium@large":"Text__ek-text_weight_medium--large___ERwtC","ek-text_weight_bold@large":"Text__ek-text_weight_bold--large___-vQew","ek-text_weight_black@large":"Text__ek-text_weight_black--large___JfoJ2","ek-text_align_left@large":"Text__ek-text_align_left--large___eDuu-","ek-text_align_center@large":"Text__ek-text_align_center--large___0oej2","ek-text_align_right@large":"Text__ek-text_align_right--large___IruXn","ek-text_align_justify@large":"Text__ek-text_align_justify--large___eLevv","ek-text_valign_baseline@large":"Text__ek-text_valign_baseline--large___MwBxj","ek-text_valign_bottom@large":"Text__ek-text_valign_bottom--large___u2HmC","ek-text_valign_middle@large":"Text__ek-text_valign_middle--large___9wTU0","ek-text_valign_sub@large":"Text__ek-text_valign_sub--large___Vrz29","ek-text_valign_super@large":"Text__ek-text_valign_super--large___Kr93W","ek-text_valign_text-bottom@large":"Text__ek-text_valign_text-bottom--large___6eXdU","ek-text_valign_text-top@large":"Text__ek-text_valign_text-top--large___B3Fwm","ek-text_valign_top@large":"Text__ek-text_valign_top--large___cA4GU","ek-text_transform_none@large":"Text__ek-text_transform_none--large___cXpb9","ek-text_transform_capitalize@large":"Text__ek-text_transform_capitalize--large___pHMUF","ek-text_transform_lowercase@large":"Text__ek-text_transform_lowercase--large___DVgu-","ek-text_transform_uppercase@large":"Text__ek-text_transform_uppercase--large___35kha","ek-text_style_italic@large":"Text__ek-text_style_italic--large___fYSwX","ek-text_style_strike@large":"Text__ek-text_style_strike--large___q0PMX","ek-text_style_underline@large":"Text__ek-text_style_underline--large___sguGX","ek-text_style_overline@large":"Text__ek-text_style_overline--large___V9ewl","ek-text_lheight_default@large":"Text__ek-text_lheight_default--large___QI3Ow","ek-text_lheight_medium@large":"Text__ek-text_lheight_medium--large___dkKyS","ek-text_lheight_large@large":"Text__ek-text_lheight_large--large___LWOqd","ek-text_wrap_normal@large":"Text__ek-text_wrap_normal--large___1Sfs7","ek-text_wrap_nowrap@large":"Text__ek-text_wrap_nowrap--large___Ybix2","ek-text_wrap_pre@large":"Text__ek-text_wrap_pre--large___w4GA2","ek-text_wrap_pre-wrap@large":"Text__ek-text_wrap_pre-wrap--large___XNCfE","ek-text_wrap_pre-line@large":"Text__ek-text_wrap_pre-line--large___IIQMy","ek-text_wrap_break@large":"Text__ek-text_wrap_break--large___TMJei","ek-text_wrap_ellipsis@large":"Text__ek-text_wrap_ellipsis--large___eJt94","ek-text_wrap_two-line@large":"Text__ek-text_wrap_two-line--large___wf8-X","ek-text_wrap_three-line@large":"Text__ek-text_wrap_three-line--large___QM6Ob","ek-text_color_black-600":"Text__ek-text_color_black-600___iX-v2","ek-text_color_black-600@small":"Text__ek-text_color_black-600--small___4qrki","ek-text_color_black-600@medium":"Text__ek-text_color_black-600--medium___XfNNR","ek-text_color_black-600@large":"Text__ek-text_color_black-600--large___Owu7Q","ek-text_color_black-600@wide":"Text__ek-text_color_black-600--wide___EPhZb","ek-text_color_black-600@huge":"Text__ek-text_color_black-600--huge___kX-rO","ek-text_color_black-700":"Text__ek-text_color_black-700___ffgjE","ek-text_color_black-700@small":"Text__ek-text_color_black-700--small___VeJpW","ek-text_color_black-700@medium":"Text__ek-text_color_black-700--medium___tmDDJ","ek-text_color_black-700@large":"Text__ek-text_color_black-700--large___jRnbc","ek-text_color_black-700@wide":"Text__ek-text_color_black-700--wide___Skgn1","ek-text_color_black-700@huge":"Text__ek-text_color_black-700--huge___iT2UW","ek-text_color_black-800":"Text__ek-text_color_black-800___wMAjv","ek-text_color_black-800@small":"Text__ek-text_color_black-800--small___0tsz8","ek-text_color_black-800@medium":"Text__ek-text_color_black-800--medium___dKLRj","ek-text_color_black-800@large":"Text__ek-text_color_black-800--large___PThcN","ek-text_color_black-800@wide":"Text__ek-text_color_black-800--wide___4KAq8","ek-text_color_black-800@huge":"Text__ek-text_color_black-800--huge___sXPSW","ek-text_color_black-900":"Text__ek-text_color_black-900___ye2-Z","ek-text_color_black-900@small":"Text__ek-text_color_black-900--small___Tjehi","ek-text_color_black-900@medium":"Text__ek-text_color_black-900--medium___D7nHh","ek-text_color_black-900@large":"Text__ek-text_color_black-900--large___n8LrJ","ek-text_color_black-900@wide":"Text__ek-text_color_black-900--wide___O95o7","ek-text_color_black-900@huge":"Text__ek-text_color_black-900--huge___ufWB7","ek-text_color_blue-500":"Text__ek-text_color_blue-500___Pmash","ek-text_color_blue-500@small":"Text__ek-text_color_blue-500--small___myNLi","ek-text_color_blue-500@medium":"Text__ek-text_color_blue-500--medium___807O7","ek-text_color_blue-500@large":"Text__ek-text_color_blue-500--large___h7LoO","ek-text_color_blue-500@wide":"Text__ek-text_color_blue-500--wide___1Qk4y","ek-text_color_blue-500@huge":"Text__ek-text_color_blue-500--huge___VrBDq","ek-text_color_green-500":"Text__ek-text_color_green-500___9JoFY","ek-text_color_green-500@small":"Text__ek-text_color_green-500--small___A3k3K","ek-text_color_green-500@medium":"Text__ek-text_color_green-500--medium___EDZ-F","ek-text_color_green-500@large":"Text__ek-text_color_green-500--large___vV-gD","ek-text_color_green-500@wide":"Text__ek-text_color_green-500--wide___gDhg2","ek-text_color_green-500@huge":"Text__ek-text_color_green-500--huge___O5Wpa","ek-text_color_green-700":"Text__ek-text_color_green-700___NSmdF","ek-text_color_green-700@small":"Text__ek-text_color_green-700--small___QEems","ek-text_color_green-700@medium":"Text__ek-text_color_green-700--medium___-GH--","ek-text_color_green-700@large":"Text__ek-text_color_green-700--large___56wkM","ek-text_color_green-700@wide":"Text__ek-text_color_green-700--wide___xkvGD","ek-text_color_green-700@huge":"Text__ek-text_color_green-700--huge___IgnYm","ek-text_color_green-800":"Text__ek-text_color_green-800___Aahxa","ek-text_color_green-800@small":"Text__ek-text_color_green-800--small___x1p-D","ek-text_color_green-800@medium":"Text__ek-text_color_green-800--medium___EeAPc","ek-text_color_green-800@large":"Text__ek-text_color_green-800--large___KH2s5","ek-text_color_green-800@wide":"Text__ek-text_color_green-800--wide___6FDFy","ek-text_color_green-800@huge":"Text__ek-text_color_green-800--huge___V2JjF","ek-text_color_orange-500":"Text__ek-text_color_orange-500___D39Cr","ek-text_color_orange-500@small":"Text__ek-text_color_orange-500--small___FCzuX","ek-text_color_orange-500@medium":"Text__ek-text_color_orange-500--medium___9gjQH","ek-text_color_orange-500@large":"Text__ek-text_color_orange-500--large___A3IlK","ek-text_color_orange-500@wide":"Text__ek-text_color_orange-500--wide___ye0vt","ek-text_color_orange-500@huge":"Text__ek-text_color_orange-500--huge___eLSt9","ek-text_color_orange-900":"Text__ek-text_color_orange-900___etfhZ","ek-text_color_orange-900@small":"Text__ek-text_color_orange-900--small___zjEFG","ek-text_color_orange-900@medium":"Text__ek-text_color_orange-900--medium___LUWSS","ek-text_color_orange-900@large":"Text__ek-text_color_orange-900--large___JXJvc","ek-text_color_orange-900@wide":"Text__ek-text_color_orange-900--wide___PWGFH","ek-text_color_orange-900@huge":"Text__ek-text_color_orange-900--huge___ljHb4","ek-text_color_red-500":"Text__ek-text_color_red-500___uyrQ6","ek-text_color_red-500@small":"Text__ek-text_color_red-500--small___hN5go","ek-text_color_red-500@medium":"Text__ek-text_color_red-500--medium___HROpc","ek-text_color_red-500@large":"Text__ek-text_color_red-500--large___DohkS","ek-text_color_red-500@wide":"Text__ek-text_color_red-500--wide___vXdZm","ek-text_color_red-500@huge":"Text__ek-text_color_red-500--huge___nEmHY","ek-text_color_red-900":"Text__ek-text_color_red-900___yKkMR","ek-text_color_red-900@small":"Text__ek-text_color_red-900--small___2MQqu","ek-text_color_red-900@medium":"Text__ek-text_color_red-900--medium___k9d1g","ek-text_color_red-900@large":"Text__ek-text_color_red-900--large___BYzxn","ek-text_color_red-900@wide":"Text__ek-text_color_red-900--wide___9S6GM","ek-text_color_red-900@huge":"Text__ek-text_color_red-900--huge___rMyDN","ek-text_color_violet-500":"Text__ek-text_color_violet-500___xrKUz","ek-text_color_violet-500@small":"Text__ek-text_color_violet-500--small___GkpkA","ek-text_color_violet-500@medium":"Text__ek-text_color_violet-500--medium___FYY0k","ek-text_color_violet-500@large":"Text__ek-text_color_violet-500--large___BX9sY","ek-text_color_violet-500@wide":"Text__ek-text_color_violet-500--wide___vjkvO","ek-text_color_violet-500@huge":"Text__ek-text_color_violet-500--huge___Ufx-e","ek-text_color_white":"Text__ek-text_color_white___ooRRq","ek-text_color_white@small":"Text__ek-text_color_white--small___aq8Bj","ek-text_color_white@medium":"Text__ek-text_color_white--medium___K2HII","ek-text_color_white@large":"Text__ek-text_color_white--large___fPDBy","ek-text_color_white@wide":"Text__ek-text_color_white--wide___KBwe0","ek-text_color_white@huge":"Text__ek-text_color_white--huge___pjee0"};
|
|
7
|
+
var css = {"ek-text":"Text__ek-text___3Trjq","ek-text_display_inline":"Text__ek-text_display_inline___hPK83","ek-text_display_none":"Text__ek-text_display_none___EpkgL","ek-text_size_none":"Text__ek-text_size_none___3fCio","ek-text_size_inherit":"Text__ek-text_size_inherit___GeUFz","ek-text_size_small":"Text__ek-text_size_small___IfSYo","ek-text_size_default":"Text__ek-text_size_default___snf--","ek-text_size_big":"Text__ek-text_size_big___R2ynx","ek-text_size_h1":"Text__ek-text_size_h1___RLQ4A","ek-text_size_h2":"Text__ek-text_size_h2___OAv5u","ek-text_size_h3":"Text__ek-text_size_h3___jF03G","ek-text_size_h4":"Text__ek-text_size_h4___vj3pM","ek-text_size_h5":"Text__ek-text_size_h5___aeJVe","ek-text_size_h6":"Text__ek-text_size_h6___P9by2","ek-text_weight_default":"Text__ek-text_weight_default___wrQRQ","ek-text_weight_thin":"Text__ek-text_weight_thin___pmZOp","ek-text_weight_light":"Text__ek-text_weight_light___vEbTA","ek-text_weight_medium":"Text__ek-text_weight_medium___gfDGa","ek-text_weight_bold":"Text__ek-text_weight_bold___F7Tdh","ek-text_weight_black":"Text__ek-text_weight_black___Llirb","ek-text_align_left":"Text__ek-text_align_left___gwkkx","ek-text_align_center":"Text__ek-text_align_center___od97W","ek-text_align_right":"Text__ek-text_align_right___PatyF","ek-text_align_justify":"Text__ek-text_align_justify___WNRHD","ek-text_valign_baseline":"Text__ek-text_valign_baseline___BFQkO","ek-text_valign_bottom":"Text__ek-text_valign_bottom___uoQE-","ek-text_valign_middle":"Text__ek-text_valign_middle___wL4cB","ek-text_valign_sub":"Text__ek-text_valign_sub___oQuQV","ek-text_valign_super":"Text__ek-text_valign_super___GM270","ek-text_valign_text-bottom":"Text__ek-text_valign_text-bottom___i3gPf","ek-text_valign_text-top":"Text__ek-text_valign_text-top___Y-R3w","ek-text_valign_top":"Text__ek-text_valign_top___NSQH0","ek-text_transform_none":"Text__ek-text_transform_none___ioMWl","ek-text_transform_capitalize":"Text__ek-text_transform_capitalize___-nH9C","ek-text_transform_lowercase":"Text__ek-text_transform_lowercase___pYEmk","ek-text_transform_uppercase":"Text__ek-text_transform_uppercase___Ptm6g","ek-text_style_italic":"Text__ek-text_style_italic___Y01G5","ek-text_style_strike":"Text__ek-text_style_strike___powM8","ek-text_style_underline":"Text__ek-text_style_underline___ECUz1","ek-text_style_overline":"Text__ek-text_style_overline___E4jPq","ek-text_lheight_default":"Text__ek-text_lheight_default___ic9SB","ek-text_lheight_medium":"Text__ek-text_lheight_medium___QrtcH","ek-text_lheight_large":"Text__ek-text_lheight_large___G5HaP","ek-text_wrap_normal":"Text__ek-text_wrap_normal___vN11O","ek-text_wrap_nowrap":"Text__ek-text_wrap_nowrap___hJTsv","ek-text_wrap_pre":"Text__ek-text_wrap_pre___qtOKJ","ek-text_wrap_pre-wrap":"Text__ek-text_wrap_pre-wrap___55qRX","ek-text_wrap_pre-line":"Text__ek-text_wrap_pre-line___z-RVa","ek-text_wrap_break":"Text__ek-text_wrap_break___htldP","ek-text_wrap_ellipsis":"Text__ek-text_wrap_ellipsis___aXB7S","ek-text_wrap_two-line":"Text__ek-text_wrap_two-line___7NHpZ","ek-text_wrap_three-line":"Text__ek-text_wrap_three-line___SCVcX","ek-text_display_inline@small":"Text__ek-text_display_inline--small___tf5qK","ek-text_display_none@small":"Text__ek-text_display_none--small___QClAg","ek-text_size_none@small":"Text__ek-text_size_none--small___iNBWs","ek-text_size_inherit@small":"Text__ek-text_size_inherit--small___SleAe","ek-text_size_small@small":"Text__ek-text_size_small--small___JLdX7","ek-text_size_default@small":"Text__ek-text_size_default--small___lpjy2","ek-text_size_big@small":"Text__ek-text_size_big--small___tyFZq","ek-text_size_h1@small":"Text__ek-text_size_h1--small___bTc9i","ek-text_size_h2@small":"Text__ek-text_size_h2--small___fVsfH","ek-text_size_h3@small":"Text__ek-text_size_h3--small___9bupj","ek-text_size_h4@small":"Text__ek-text_size_h4--small___RLAjj","ek-text_size_h5@small":"Text__ek-text_size_h5--small___MSeBt","ek-text_size_h6@small":"Text__ek-text_size_h6--small___DGRDV","ek-text_weight_default@small":"Text__ek-text_weight_default--small___7u9ww","ek-text_weight_thin@small":"Text__ek-text_weight_thin--small___f3E1Z","ek-text_weight_light@small":"Text__ek-text_weight_light--small___UgVat","ek-text_weight_medium@small":"Text__ek-text_weight_medium--small___GhR2r","ek-text_weight_bold@small":"Text__ek-text_weight_bold--small___fdZOu","ek-text_weight_black@small":"Text__ek-text_weight_black--small___Txf2-","ek-text_align_left@small":"Text__ek-text_align_left--small___MOcbA","ek-text_align_center@small":"Text__ek-text_align_center--small___NDoRI","ek-text_align_right@small":"Text__ek-text_align_right--small___ertsn","ek-text_align_justify@small":"Text__ek-text_align_justify--small___VXEjp","ek-text_valign_baseline@small":"Text__ek-text_valign_baseline--small___NFaJ5","ek-text_valign_bottom@small":"Text__ek-text_valign_bottom--small___n-ZM1","ek-text_valign_middle@small":"Text__ek-text_valign_middle--small___1o-f9","ek-text_valign_sub@small":"Text__ek-text_valign_sub--small___7vrZ5","ek-text_valign_super@small":"Text__ek-text_valign_super--small___98wkH","ek-text_valign_text-bottom@small":"Text__ek-text_valign_text-bottom--small___x6B2v","ek-text_valign_text-top@small":"Text__ek-text_valign_text-top--small___LfpH0","ek-text_valign_top@small":"Text__ek-text_valign_top--small___kBQTl","ek-text_transform_none@small":"Text__ek-text_transform_none--small___lNIlb","ek-text_transform_capitalize@small":"Text__ek-text_transform_capitalize--small___wM1eM","ek-text_transform_lowercase@small":"Text__ek-text_transform_lowercase--small___bjZhn","ek-text_transform_uppercase@small":"Text__ek-text_transform_uppercase--small___QcGz5","ek-text_style_italic@small":"Text__ek-text_style_italic--small___RLkz-","ek-text_style_strike@small":"Text__ek-text_style_strike--small___--sCr","ek-text_style_underline@small":"Text__ek-text_style_underline--small___LXQS8","ek-text_style_overline@small":"Text__ek-text_style_overline--small___GNoIB","ek-text_lheight_default@small":"Text__ek-text_lheight_default--small___1W3d2","ek-text_lheight_medium@small":"Text__ek-text_lheight_medium--small___cZ7Yw","ek-text_lheight_large@small":"Text__ek-text_lheight_large--small___Q69Gt","ek-text_wrap_normal@small":"Text__ek-text_wrap_normal--small___OCeTY","ek-text_wrap_nowrap@small":"Text__ek-text_wrap_nowrap--small___feATc","ek-text_wrap_pre@small":"Text__ek-text_wrap_pre--small___VAue2","ek-text_wrap_pre-wrap@small":"Text__ek-text_wrap_pre-wrap--small___CrynB","ek-text_wrap_pre-line@small":"Text__ek-text_wrap_pre-line--small___2Zets","ek-text_wrap_break@small":"Text__ek-text_wrap_break--small___C6739","ek-text_wrap_ellipsis@small":"Text__ek-text_wrap_ellipsis--small___V-dhX","ek-text_wrap_two-line@small":"Text__ek-text_wrap_two-line--small___fqP29","ek-text_wrap_three-line@small":"Text__ek-text_wrap_three-line--small___Yh-Xv","ek-text_display_inline@medium":"Text__ek-text_display_inline--medium___q29UB","ek-text_display_none@medium":"Text__ek-text_display_none--medium___pS5WL","ek-text_size_none@medium":"Text__ek-text_size_none--medium___zmMXI","ek-text_size_inherit@medium":"Text__ek-text_size_inherit--medium___NyD6y","ek-text_size_small@medium":"Text__ek-text_size_small--medium___85MSY","ek-text_size_default@medium":"Text__ek-text_size_default--medium___NMxaK","ek-text_size_big@medium":"Text__ek-text_size_big--medium___Ua-Zk","ek-text_size_h1@medium":"Text__ek-text_size_h1--medium___thuyZ","ek-text_size_h2@medium":"Text__ek-text_size_h2--medium___ESQoF","ek-text_size_h3@medium":"Text__ek-text_size_h3--medium___KZmg9","ek-text_size_h4@medium":"Text__ek-text_size_h4--medium___ECj9y","ek-text_size_h5@medium":"Text__ek-text_size_h5--medium___2Egnj","ek-text_size_h6@medium":"Text__ek-text_size_h6--medium___EiSb9","ek-text_weight_default@medium":"Text__ek-text_weight_default--medium___tB-Ch","ek-text_weight_thin@medium":"Text__ek-text_weight_thin--medium___s8W0s","ek-text_weight_light@medium":"Text__ek-text_weight_light--medium___ltoWf","ek-text_weight_medium@medium":"Text__ek-text_weight_medium--medium___6tPBW","ek-text_weight_bold@medium":"Text__ek-text_weight_bold--medium___rpqZ0","ek-text_weight_black@medium":"Text__ek-text_weight_black--medium___GSyAT","ek-text_align_left@medium":"Text__ek-text_align_left--medium___P1t-C","ek-text_align_center@medium":"Text__ek-text_align_center--medium___EyFNY","ek-text_align_right@medium":"Text__ek-text_align_right--medium___pv76v","ek-text_align_justify@medium":"Text__ek-text_align_justify--medium___BPD5C","ek-text_valign_baseline@medium":"Text__ek-text_valign_baseline--medium___uudr0","ek-text_valign_bottom@medium":"Text__ek-text_valign_bottom--medium___PllPd","ek-text_valign_middle@medium":"Text__ek-text_valign_middle--medium___Ik6u5","ek-text_valign_sub@medium":"Text__ek-text_valign_sub--medium___utVwf","ek-text_valign_super@medium":"Text__ek-text_valign_super--medium___BbzMP","ek-text_valign_text-bottom@medium":"Text__ek-text_valign_text-bottom--medium___h-L8G","ek-text_valign_text-top@medium":"Text__ek-text_valign_text-top--medium___2Sxc3","ek-text_valign_top@medium":"Text__ek-text_valign_top--medium___oC57Z","ek-text_transform_none@medium":"Text__ek-text_transform_none--medium___VjPVc","ek-text_transform_capitalize@medium":"Text__ek-text_transform_capitalize--medium___D2Sqd","ek-text_transform_lowercase@medium":"Text__ek-text_transform_lowercase--medium___hjkKi","ek-text_transform_uppercase@medium":"Text__ek-text_transform_uppercase--medium___AEFL3","ek-text_style_italic@medium":"Text__ek-text_style_italic--medium___yckf-","ek-text_style_strike@medium":"Text__ek-text_style_strike--medium___Fc1Ji","ek-text_style_underline@medium":"Text__ek-text_style_underline--medium___d-Mrs","ek-text_style_overline@medium":"Text__ek-text_style_overline--medium___cBafd","ek-text_lheight_default@medium":"Text__ek-text_lheight_default--medium___UHfd4","ek-text_lheight_medium@medium":"Text__ek-text_lheight_medium--medium___K2JnS","ek-text_lheight_large@medium":"Text__ek-text_lheight_large--medium___7jFRq","ek-text_wrap_normal@medium":"Text__ek-text_wrap_normal--medium___tiKih","ek-text_wrap_nowrap@medium":"Text__ek-text_wrap_nowrap--medium___K2M6e","ek-text_wrap_pre@medium":"Text__ek-text_wrap_pre--medium___TpcHG","ek-text_wrap_pre-wrap@medium":"Text__ek-text_wrap_pre-wrap--medium___Z6C0k","ek-text_wrap_pre-line@medium":"Text__ek-text_wrap_pre-line--medium___Ajn6a","ek-text_wrap_break@medium":"Text__ek-text_wrap_break--medium___QtGGg","ek-text_wrap_ellipsis@medium":"Text__ek-text_wrap_ellipsis--medium___NyLo3","ek-text_wrap_two-line@medium":"Text__ek-text_wrap_two-line--medium___R6ga0","ek-text_wrap_three-line@medium":"Text__ek-text_wrap_three-line--medium___E2iMw","ek-text_display_inline@large":"Text__ek-text_display_inline--large___Qr7da","ek-text_display_none@large":"Text__ek-text_display_none--large___8q9MY","ek-text_size_none@large":"Text__ek-text_size_none--large___lhd15","ek-text_size_inherit@large":"Text__ek-text_size_inherit--large___JRmGP","ek-text_size_small@large":"Text__ek-text_size_small--large___gGYoF","ek-text_size_default@large":"Text__ek-text_size_default--large___f8ZGq","ek-text_size_big@large":"Text__ek-text_size_big--large___kXeDX","ek-text_size_h1@large":"Text__ek-text_size_h1--large___FnCNG","ek-text_size_h2@large":"Text__ek-text_size_h2--large___ud3vr","ek-text_size_h3@large":"Text__ek-text_size_h3--large___cQwu6","ek-text_size_h4@large":"Text__ek-text_size_h4--large___AeJ7R","ek-text_size_h5@large":"Text__ek-text_size_h5--large___5AP56","ek-text_size_h6@large":"Text__ek-text_size_h6--large___nXKYk","ek-text_weight_default@large":"Text__ek-text_weight_default--large___-KZf3","ek-text_weight_thin@large":"Text__ek-text_weight_thin--large___OtiPU","ek-text_weight_light@large":"Text__ek-text_weight_light--large___Q876R","ek-text_weight_medium@large":"Text__ek-text_weight_medium--large___ERwtC","ek-text_weight_bold@large":"Text__ek-text_weight_bold--large___-vQew","ek-text_weight_black@large":"Text__ek-text_weight_black--large___JfoJ2","ek-text_align_left@large":"Text__ek-text_align_left--large___eDuu-","ek-text_align_center@large":"Text__ek-text_align_center--large___0oej2","ek-text_align_right@large":"Text__ek-text_align_right--large___IruXn","ek-text_align_justify@large":"Text__ek-text_align_justify--large___eLevv","ek-text_valign_baseline@large":"Text__ek-text_valign_baseline--large___MwBxj","ek-text_valign_bottom@large":"Text__ek-text_valign_bottom--large___u2HmC","ek-text_valign_middle@large":"Text__ek-text_valign_middle--large___9wTU0","ek-text_valign_sub@large":"Text__ek-text_valign_sub--large___Vrz29","ek-text_valign_super@large":"Text__ek-text_valign_super--large___Kr93W","ek-text_valign_text-bottom@large":"Text__ek-text_valign_text-bottom--large___6eXdU","ek-text_valign_text-top@large":"Text__ek-text_valign_text-top--large___B3Fwm","ek-text_valign_top@large":"Text__ek-text_valign_top--large___cA4GU","ek-text_transform_none@large":"Text__ek-text_transform_none--large___cXpb9","ek-text_transform_capitalize@large":"Text__ek-text_transform_capitalize--large___pHMUF","ek-text_transform_lowercase@large":"Text__ek-text_transform_lowercase--large___DVgu-","ek-text_transform_uppercase@large":"Text__ek-text_transform_uppercase--large___35kha","ek-text_style_italic@large":"Text__ek-text_style_italic--large___fYSwX","ek-text_style_strike@large":"Text__ek-text_style_strike--large___q0PMX","ek-text_style_underline@large":"Text__ek-text_style_underline--large___sguGX","ek-text_style_overline@large":"Text__ek-text_style_overline--large___V9ewl","ek-text_lheight_default@large":"Text__ek-text_lheight_default--large___QI3Ow","ek-text_lheight_medium@large":"Text__ek-text_lheight_medium--large___dkKyS","ek-text_lheight_large@large":"Text__ek-text_lheight_large--large___LWOqd","ek-text_wrap_normal@large":"Text__ek-text_wrap_normal--large___1Sfs7","ek-text_wrap_nowrap@large":"Text__ek-text_wrap_nowrap--large___Ybix2","ek-text_wrap_pre@large":"Text__ek-text_wrap_pre--large___w4GA2","ek-text_wrap_pre-wrap@large":"Text__ek-text_wrap_pre-wrap--large___XNCfE","ek-text_wrap_pre-line@large":"Text__ek-text_wrap_pre-line--large___IIQMy","ek-text_wrap_break@large":"Text__ek-text_wrap_break--large___TMJei","ek-text_wrap_ellipsis@large":"Text__ek-text_wrap_ellipsis--large___eJt94","ek-text_wrap_two-line@large":"Text__ek-text_wrap_two-line--large___wf8-X","ek-text_wrap_three-line@large":"Text__ek-text_wrap_three-line--large___QM6Ob","ek-text_color_black-600":"Text__ek-text_color_black-600___iX-v2","ek-text_color_black-600@small":"Text__ek-text_color_black-600--small___4qrki","ek-text_color_black-600@medium":"Text__ek-text_color_black-600--medium___XfNNR","ek-text_color_black-600@large":"Text__ek-text_color_black-600--large___Owu7Q","ek-text_color_black-600@wide":"Text__ek-text_color_black-600--wide___EPhZb","ek-text_color_black-600@huge":"Text__ek-text_color_black-600--huge___kX-rO","ek-text_color_black-700":"Text__ek-text_color_black-700___ffgjE","ek-text_color_black-700@small":"Text__ek-text_color_black-700--small___VeJpW","ek-text_color_black-700@medium":"Text__ek-text_color_black-700--medium___tmDDJ","ek-text_color_black-700@large":"Text__ek-text_color_black-700--large___jRnbc","ek-text_color_black-700@wide":"Text__ek-text_color_black-700--wide___Skgn1","ek-text_color_black-700@huge":"Text__ek-text_color_black-700--huge___iT2UW","ek-text_color_black-800":"Text__ek-text_color_black-800___wMAjv","ek-text_color_black-800@small":"Text__ek-text_color_black-800--small___0tsz8","ek-text_color_black-800@medium":"Text__ek-text_color_black-800--medium___dKLRj","ek-text_color_black-800@large":"Text__ek-text_color_black-800--large___PThcN","ek-text_color_black-800@wide":"Text__ek-text_color_black-800--wide___4KAq8","ek-text_color_black-800@huge":"Text__ek-text_color_black-800--huge___sXPSW","ek-text_color_black-900":"Text__ek-text_color_black-900___ye2-Z","ek-text_color_black-900@small":"Text__ek-text_color_black-900--small___Tjehi","ek-text_color_black-900@medium":"Text__ek-text_color_black-900--medium___D7nHh","ek-text_color_black-900@large":"Text__ek-text_color_black-900--large___n8LrJ","ek-text_color_black-900@wide":"Text__ek-text_color_black-900--wide___O95o7","ek-text_color_black-900@huge":"Text__ek-text_color_black-900--huge___ufWB7","ek-text_color_blue-500":"Text__ek-text_color_blue-500___Pmash","ek-text_color_blue-500@small":"Text__ek-text_color_blue-500--small___myNLi","ek-text_color_blue-500@medium":"Text__ek-text_color_blue-500--medium___807O7","ek-text_color_blue-500@large":"Text__ek-text_color_blue-500--large___h7LoO","ek-text_color_blue-500@wide":"Text__ek-text_color_blue-500--wide___1Qk4y","ek-text_color_blue-500@huge":"Text__ek-text_color_blue-500--huge___VrBDq","ek-text_color_green-500":"Text__ek-text_color_green-500___9JoFY","ek-text_color_green-500@small":"Text__ek-text_color_green-500--small___A3k3K","ek-text_color_green-500@medium":"Text__ek-text_color_green-500--medium___EDZ-F","ek-text_color_green-500@large":"Text__ek-text_color_green-500--large___vV-gD","ek-text_color_green-500@wide":"Text__ek-text_color_green-500--wide___gDhg2","ek-text_color_green-500@huge":"Text__ek-text_color_green-500--huge___O5Wpa","ek-text_color_green-700":"Text__ek-text_color_green-700___NSmdF","ek-text_color_green-700@small":"Text__ek-text_color_green-700--small___QEems","ek-text_color_green-700@medium":"Text__ek-text_color_green-700--medium___-GH--","ek-text_color_green-700@large":"Text__ek-text_color_green-700--large___56wkM","ek-text_color_green-700@wide":"Text__ek-text_color_green-700--wide___xkvGD","ek-text_color_green-700@huge":"Text__ek-text_color_green-700--huge___IgnYm","ek-text_color_green-800":"Text__ek-text_color_green-800___Aahxa","ek-text_color_green-800@small":"Text__ek-text_color_green-800--small___x1p-D","ek-text_color_green-800@medium":"Text__ek-text_color_green-800--medium___EeAPc","ek-text_color_green-800@large":"Text__ek-text_color_green-800--large___KH2s5","ek-text_color_green-800@wide":"Text__ek-text_color_green-800--wide___6FDFy","ek-text_color_green-800@huge":"Text__ek-text_color_green-800--huge___V2JjF","ek-text_color_yellow-500":"Text__ek-text_color_yellow-500___7I4ks","ek-text_color_yellow-500@small":"Text__ek-text_color_yellow-500--small___XFBi-","ek-text_color_yellow-500@medium":"Text__ek-text_color_yellow-500--medium___I42SE","ek-text_color_yellow-500@large":"Text__ek-text_color_yellow-500--large___BGGYh","ek-text_color_yellow-500@wide":"Text__ek-text_color_yellow-500--wide___2WOin","ek-text_color_yellow-500@huge":"Text__ek-text_color_yellow-500--huge___6u99p","ek-text_color_orange-500":"Text__ek-text_color_orange-500___D39Cr","ek-text_color_orange-500@small":"Text__ek-text_color_orange-500--small___FCzuX","ek-text_color_orange-500@medium":"Text__ek-text_color_orange-500--medium___9gjQH","ek-text_color_orange-500@large":"Text__ek-text_color_orange-500--large___A3IlK","ek-text_color_orange-500@wide":"Text__ek-text_color_orange-500--wide___ye0vt","ek-text_color_orange-500@huge":"Text__ek-text_color_orange-500--huge___eLSt9","ek-text_color_orange-900":"Text__ek-text_color_orange-900___etfhZ","ek-text_color_orange-900@small":"Text__ek-text_color_orange-900--small___zjEFG","ek-text_color_orange-900@medium":"Text__ek-text_color_orange-900--medium___LUWSS","ek-text_color_orange-900@large":"Text__ek-text_color_orange-900--large___JXJvc","ek-text_color_orange-900@wide":"Text__ek-text_color_orange-900--wide___PWGFH","ek-text_color_orange-900@huge":"Text__ek-text_color_orange-900--huge___ljHb4","ek-text_color_red-500":"Text__ek-text_color_red-500___uyrQ6","ek-text_color_red-500@small":"Text__ek-text_color_red-500--small___hN5go","ek-text_color_red-500@medium":"Text__ek-text_color_red-500--medium___HROpc","ek-text_color_red-500@large":"Text__ek-text_color_red-500--large___DohkS","ek-text_color_red-500@wide":"Text__ek-text_color_red-500--wide___vXdZm","ek-text_color_red-500@huge":"Text__ek-text_color_red-500--huge___nEmHY","ek-text_color_red-900":"Text__ek-text_color_red-900___yKkMR","ek-text_color_red-900@small":"Text__ek-text_color_red-900--small___2MQqu","ek-text_color_red-900@medium":"Text__ek-text_color_red-900--medium___k9d1g","ek-text_color_red-900@large":"Text__ek-text_color_red-900--large___BYzxn","ek-text_color_red-900@wide":"Text__ek-text_color_red-900--wide___9S6GM","ek-text_color_red-900@huge":"Text__ek-text_color_red-900--huge___rMyDN","ek-text_color_violet-500":"Text__ek-text_color_violet-500___xrKUz","ek-text_color_violet-500@small":"Text__ek-text_color_violet-500--small___GkpkA","ek-text_color_violet-500@medium":"Text__ek-text_color_violet-500--medium___FYY0k","ek-text_color_violet-500@large":"Text__ek-text_color_violet-500--large___BX9sY","ek-text_color_violet-500@wide":"Text__ek-text_color_violet-500--wide___vjkvO","ek-text_color_violet-500@huge":"Text__ek-text_color_violet-500--huge___Ufx-e","ek-text_color_white":"Text__ek-text_color_white___ooRRq","ek-text_color_white@small":"Text__ek-text_color_white--small___aq8Bj","ek-text_color_white@medium":"Text__ek-text_color_white--medium___K2HII","ek-text_color_white@large":"Text__ek-text_color_white--large___fPDBy","ek-text_color_white@wide":"Text__ek-text_color_white--wide___KBwe0","ek-text_color_white@huge":"Text__ek-text_color_white--huge___pjee0"};
|
|
8
8
|
|
|
9
9
|
evokitText.Text.defaultProps = {
|
|
10
10
|
'text-preset': {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("evokit-text");e.Text.defaultProps={"text-preset":{css:{"ek-text":"_3Trjq","ek-text_display_inline":"hPK83","ek-text_display_none":"EpkgL","ek-text_size_none":"_3fCio","ek-text_size_inherit":"GeUFz","ek-text_size_small":"IfSYo","ek-text_size_default":"snf--","ek-text_size_big":"R2ynx","ek-text_size_h1":"RLQ4A","ek-text_size_h2":"OAv5u","ek-text_size_h3":"jF03G","ek-text_size_h4":"vj3pM","ek-text_size_h5":"aeJVe","ek-text_size_h6":"P9by2","ek-text_weight_default":"wrQRQ","ek-text_weight_thin":"pmZOp","ek-text_weight_light":"vEbTA","ek-text_weight_medium":"gfDGa","ek-text_weight_bold":"F7Tdh","ek-text_weight_black":"Llirb","ek-text_align_left":"gwkkx","ek-text_align_center":"od97W","ek-text_align_right":"PatyF","ek-text_align_justify":"WNRHD","ek-text_valign_baseline":"BFQkO","ek-text_valign_bottom":"uoQE-","ek-text_valign_middle":"wL4cB","ek-text_valign_sub":"oQuQV","ek-text_valign_super":"GM270","ek-text_valign_text-bottom":"i3gPf","ek-text_valign_text-top":"Y-R3w","ek-text_valign_top":"NSQH0","ek-text_transform_none":"ioMWl","ek-text_transform_capitalize":"-nH9C","ek-text_transform_lowercase":"pYEmk","ek-text_transform_uppercase":"Ptm6g","ek-text_style_italic":"Y01G5","ek-text_style_strike":"powM8","ek-text_style_underline":"ECUz1","ek-text_style_overline":"E4jPq","ek-text_lheight_default":"ic9SB","ek-text_lheight_medium":"QrtcH","ek-text_lheight_large":"G5HaP","ek-text_wrap_normal":"vN11O","ek-text_wrap_nowrap":"hJTsv","ek-text_wrap_pre":"qtOKJ","ek-text_wrap_pre-wrap":"_55qRX","ek-text_wrap_pre-line":"z-RVa","ek-text_wrap_break":"htldP","ek-text_wrap_ellipsis":"aXB7S","ek-text_wrap_two-line":"_7NHpZ","ek-text_wrap_three-line":"SCVcX","ek-text_display_inline@small":"tf5qK","ek-text_display_none@small":"QClAg","ek-text_size_none@small":"iNBWs","ek-text_size_inherit@small":"SleAe","ek-text_size_small@small":"JLdX7","ek-text_size_default@small":"lpjy2","ek-text_size_big@small":"tyFZq","ek-text_size_h1@small":"bTc9i","ek-text_size_h2@small":"fVsfH","ek-text_size_h3@small":"_9bupj","ek-text_size_h4@small":"RLAjj","ek-text_size_h5@small":"MSeBt","ek-text_size_h6@small":"DGRDV","ek-text_weight_default@small":"_7u9ww","ek-text_weight_thin@small":"f3E1Z","ek-text_weight_light@small":"UgVat","ek-text_weight_medium@small":"GhR2r","ek-text_weight_bold@small":"fdZOu","ek-text_weight_black@small":"Txf2-","ek-text_align_left@small":"MOcbA","ek-text_align_center@small":"NDoRI","ek-text_align_right@small":"ertsn","ek-text_align_justify@small":"VXEjp","ek-text_valign_baseline@small":"NFaJ5","ek-text_valign_bottom@small":"n-ZM1","ek-text_valign_middle@small":"_1o-f9","ek-text_valign_sub@small":"_7vrZ5","ek-text_valign_super@small":"_98wkH","ek-text_valign_text-bottom@small":"x6B2v","ek-text_valign_text-top@small":"LfpH0","ek-text_valign_top@small":"kBQTl","ek-text_transform_none@small":"lNIlb","ek-text_transform_capitalize@small":"wM1eM","ek-text_transform_lowercase@small":"bjZhn","ek-text_transform_uppercase@small":"QcGz5","ek-text_style_italic@small":"RLkz-","ek-text_style_strike@small":"_--sCr","ek-text_style_underline@small":"LXQS8","ek-text_style_overline@small":"GNoIB","ek-text_lheight_default@small":"_1W3d2","ek-text_lheight_medium@small":"cZ7Yw","ek-text_lheight_large@small":"Q69Gt","ek-text_wrap_normal@small":"OCeTY","ek-text_wrap_nowrap@small":"feATc","ek-text_wrap_pre@small":"VAue2","ek-text_wrap_pre-wrap@small":"CrynB","ek-text_wrap_pre-line@small":"_2Zets","ek-text_wrap_break@small":"C6739","ek-text_wrap_ellipsis@small":"V-dhX","ek-text_wrap_two-line@small":"fqP29","ek-text_wrap_three-line@small":"Yh-Xv","ek-text_display_inline@medium":"q29UB","ek-text_display_none@medium":"pS5WL","ek-text_size_none@medium":"zmMXI","ek-text_size_inherit@medium":"NyD6y","ek-text_size_small@medium":"_85MSY","ek-text_size_default@medium":"NMxaK","ek-text_size_big@medium":"Ua-Zk","ek-text_size_h1@medium":"thuyZ","ek-text_size_h2@medium":"ESQoF","ek-text_size_h3@medium":"KZmg9","ek-text_size_h4@medium":"ECj9y","ek-text_size_h5@medium":"_2Egnj","ek-text_size_h6@medium":"EiSb9","ek-text_weight_default@medium":"tB-Ch","ek-text_weight_thin@medium":"s8W0s","ek-text_weight_light@medium":"ltoWf","ek-text_weight_medium@medium":"_6tPBW","ek-text_weight_bold@medium":"rpqZ0","ek-text_weight_black@medium":"GSyAT","ek-text_align_left@medium":"P1t-C","ek-text_align_center@medium":"EyFNY","ek-text_align_right@medium":"pv76v","ek-text_align_justify@medium":"BPD5C","ek-text_valign_baseline@medium":"uudr0","ek-text_valign_bottom@medium":"PllPd","ek-text_valign_middle@medium":"Ik6u5","ek-text_valign_sub@medium":"utVwf","ek-text_valign_super@medium":"BbzMP","ek-text_valign_text-bottom@medium":"h-L8G","ek-text_valign_text-top@medium":"_2Sxc3","ek-text_valign_top@medium":"oC57Z","ek-text_transform_none@medium":"VjPVc","ek-text_transform_capitalize@medium":"D2Sqd","ek-text_transform_lowercase@medium":"hjkKi","ek-text_transform_uppercase@medium":"AEFL3","ek-text_style_italic@medium":"yckf-","ek-text_style_strike@medium":"Fc1Ji","ek-text_style_underline@medium":"d-Mrs","ek-text_style_overline@medium":"cBafd","ek-text_lheight_default@medium":"UHfd4","ek-text_lheight_medium@medium":"K2JnS","ek-text_lheight_large@medium":"_7jFRq","ek-text_wrap_normal@medium":"tiKih","ek-text_wrap_nowrap@medium":"K2M6e","ek-text_wrap_pre@medium":"TpcHG","ek-text_wrap_pre-wrap@medium":"Z6C0k","ek-text_wrap_pre-line@medium":"Ajn6a","ek-text_wrap_break@medium":"QtGGg","ek-text_wrap_ellipsis@medium":"NyLo3","ek-text_wrap_two-line@medium":"R6ga0","ek-text_wrap_three-line@medium":"E2iMw","ek-text_display_inline@large":"Qr7da","ek-text_display_none@large":"_8q9MY","ek-text_size_none@large":"lhd15","ek-text_size_inherit@large":"JRmGP","ek-text_size_small@large":"gGYoF","ek-text_size_default@large":"f8ZGq","ek-text_size_big@large":"kXeDX","ek-text_size_h1@large":"FnCNG","ek-text_size_h2@large":"ud3vr","ek-text_size_h3@large":"cQwu6","ek-text_size_h4@large":"AeJ7R","ek-text_size_h5@large":"_5AP56","ek-text_size_h6@large":"nXKYk","ek-text_weight_default@large":"-KZf3","ek-text_weight_thin@large":"OtiPU","ek-text_weight_light@large":"Q876R","ek-text_weight_medium@large":"ERwtC","ek-text_weight_bold@large":"-vQew","ek-text_weight_black@large":"JfoJ2","ek-text_align_left@large":"eDuu-","ek-text_align_center@large":"_0oej2","ek-text_align_right@large":"IruXn","ek-text_align_justify@large":"eLevv","ek-text_valign_baseline@large":"MwBxj","ek-text_valign_bottom@large":"u2HmC","ek-text_valign_middle@large":"_9wTU0","ek-text_valign_sub@large":"Vrz29","ek-text_valign_super@large":"Kr93W","ek-text_valign_text-bottom@large":"_6eXdU","ek-text_valign_text-top@large":"B3Fwm","ek-text_valign_top@large":"cA4GU","ek-text_transform_none@large":"cXpb9","ek-text_transform_capitalize@large":"pHMUF","ek-text_transform_lowercase@large":"DVgu-","ek-text_transform_uppercase@large":"_35kha","ek-text_style_italic@large":"fYSwX","ek-text_style_strike@large":"q0PMX","ek-text_style_underline@large":"sguGX","ek-text_style_overline@large":"V9ewl","ek-text_lheight_default@large":"QI3Ow","ek-text_lheight_medium@large":"dkKyS","ek-text_lheight_large@large":"LWOqd","ek-text_wrap_normal@large":"_1Sfs7","ek-text_wrap_nowrap@large":"Ybix2","ek-text_wrap_pre@large":"w4GA2","ek-text_wrap_pre-wrap@large":"XNCfE","ek-text_wrap_pre-line@large":"IIQMy","ek-text_wrap_break@large":"TMJei","ek-text_wrap_ellipsis@large":"eJt94","ek-text_wrap_two-line@large":"wf8-X","ek-text_wrap_three-line@large":"QM6Ob","ek-text_color_black-600":"iX-v2","ek-text_color_black-600@small":"_4qrki","ek-text_color_black-600@medium":"XfNNR","ek-text_color_black-600@large":"Owu7Q","ek-text_color_black-600@wide":"EPhZb","ek-text_color_black-600@huge":"kX-rO","ek-text_color_black-700":"ffgjE","ek-text_color_black-700@small":"VeJpW","ek-text_color_black-700@medium":"tmDDJ","ek-text_color_black-700@large":"jRnbc","ek-text_color_black-700@wide":"Skgn1","ek-text_color_black-700@huge":"iT2UW","ek-text_color_black-800":"wMAjv","ek-text_color_black-800@small":"_0tsz8","ek-text_color_black-800@medium":"dKLRj","ek-text_color_black-800@large":"PThcN","ek-text_color_black-800@wide":"_4KAq8","ek-text_color_black-800@huge":"sXPSW","ek-text_color_black-900":"ye2-Z","ek-text_color_black-900@small":"Tjehi","ek-text_color_black-900@medium":"D7nHh","ek-text_color_black-900@large":"n8LrJ","ek-text_color_black-900@wide":"O95o7","ek-text_color_black-900@huge":"ufWB7","ek-text_color_blue-500":"Pmash","ek-text_color_blue-500@small":"myNLi","ek-text_color_blue-500@medium":"_807O7","ek-text_color_blue-500@large":"h7LoO","ek-text_color_blue-500@wide":"_1Qk4y","ek-text_color_blue-500@huge":"VrBDq","ek-text_color_green-500":"_9JoFY","ek-text_color_green-500@small":"A3k3K","ek-text_color_green-500@medium":"EDZ-F","ek-text_color_green-500@large":"vV-gD","ek-text_color_green-500@wide":"gDhg2","ek-text_color_green-500@huge":"O5Wpa","ek-text_color_green-700":"NSmdF","ek-text_color_green-700@small":"QEems","ek-text_color_green-700@medium":"-GH--","ek-text_color_green-700@large":"_56wkM","ek-text_color_green-700@wide":"xkvGD","ek-text_color_green-700@huge":"IgnYm","ek-text_color_green-800":"Aahxa","ek-text_color_green-800@small":"x1p-D","ek-text_color_green-800@medium":"EeAPc","ek-text_color_green-800@large":"KH2s5","ek-text_color_green-800@wide":"_6FDFy","ek-text_color_green-800@huge":"V2JjF","ek-text_color_orange-500":"D39Cr","ek-text_color_orange-500@small":"FCzuX","ek-text_color_orange-500@medium":"_9gjQH","ek-text_color_orange-500@large":"A3IlK","ek-text_color_orange-500@wide":"ye0vt","ek-text_color_orange-500@huge":"eLSt9","ek-text_color_orange-900":"etfhZ","ek-text_color_orange-900@small":"zjEFG","ek-text_color_orange-900@medium":"LUWSS","ek-text_color_orange-900@large":"JXJvc","ek-text_color_orange-900@wide":"PWGFH","ek-text_color_orange-900@huge":"ljHb4","ek-text_color_red-500":"uyrQ6","ek-text_color_red-500@small":"hN5go","ek-text_color_red-500@medium":"HROpc","ek-text_color_red-500@large":"DohkS","ek-text_color_red-500@wide":"vXdZm","ek-text_color_red-500@huge":"nEmHY","ek-text_color_red-900":"yKkMR","ek-text_color_red-900@small":"_2MQqu","ek-text_color_red-900@medium":"k9d1g","ek-text_color_red-900@large":"BYzxn","ek-text_color_red-900@wide":"_9S6GM","ek-text_color_red-900@huge":"rMyDN","ek-text_color_violet-500":"xrKUz","ek-text_color_violet-500@small":"GkpkA","ek-text_color_violet-500@medium":"FYY0k","ek-text_color_violet-500@large":"BX9sY","ek-text_color_violet-500@wide":"vjkvO","ek-text_color_violet-500@huge":"Ufx-e","ek-text_color_white":"ooRRq","ek-text_color_white@small":"aq8Bj","ek-text_color_white@medium":"K2HII","ek-text_color_white@large":"fPDBy","ek-text_color_white@wide":"KBwe0","ek-text_color_white@huge":"pjee0"}}},Object.defineProperty(exports,"Text",{enumerable:!0,get:function(){return e.Text}}),require("./style.production.css");
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("evokit-text");e.Text.defaultProps={"text-preset":{css:{"ek-text":"_3Trjq","ek-text_display_inline":"hPK83","ek-text_display_none":"EpkgL","ek-text_size_none":"_3fCio","ek-text_size_inherit":"GeUFz","ek-text_size_small":"IfSYo","ek-text_size_default":"snf--","ek-text_size_big":"R2ynx","ek-text_size_h1":"RLQ4A","ek-text_size_h2":"OAv5u","ek-text_size_h3":"jF03G","ek-text_size_h4":"vj3pM","ek-text_size_h5":"aeJVe","ek-text_size_h6":"P9by2","ek-text_weight_default":"wrQRQ","ek-text_weight_thin":"pmZOp","ek-text_weight_light":"vEbTA","ek-text_weight_medium":"gfDGa","ek-text_weight_bold":"F7Tdh","ek-text_weight_black":"Llirb","ek-text_align_left":"gwkkx","ek-text_align_center":"od97W","ek-text_align_right":"PatyF","ek-text_align_justify":"WNRHD","ek-text_valign_baseline":"BFQkO","ek-text_valign_bottom":"uoQE-","ek-text_valign_middle":"wL4cB","ek-text_valign_sub":"oQuQV","ek-text_valign_super":"GM270","ek-text_valign_text-bottom":"i3gPf","ek-text_valign_text-top":"Y-R3w","ek-text_valign_top":"NSQH0","ek-text_transform_none":"ioMWl","ek-text_transform_capitalize":"-nH9C","ek-text_transform_lowercase":"pYEmk","ek-text_transform_uppercase":"Ptm6g","ek-text_style_italic":"Y01G5","ek-text_style_strike":"powM8","ek-text_style_underline":"ECUz1","ek-text_style_overline":"E4jPq","ek-text_lheight_default":"ic9SB","ek-text_lheight_medium":"QrtcH","ek-text_lheight_large":"G5HaP","ek-text_wrap_normal":"vN11O","ek-text_wrap_nowrap":"hJTsv","ek-text_wrap_pre":"qtOKJ","ek-text_wrap_pre-wrap":"_55qRX","ek-text_wrap_pre-line":"z-RVa","ek-text_wrap_break":"htldP","ek-text_wrap_ellipsis":"aXB7S","ek-text_wrap_two-line":"_7NHpZ","ek-text_wrap_three-line":"SCVcX","ek-text_display_inline@small":"tf5qK","ek-text_display_none@small":"QClAg","ek-text_size_none@small":"iNBWs","ek-text_size_inherit@small":"SleAe","ek-text_size_small@small":"JLdX7","ek-text_size_default@small":"lpjy2","ek-text_size_big@small":"tyFZq","ek-text_size_h1@small":"bTc9i","ek-text_size_h2@small":"fVsfH","ek-text_size_h3@small":"_9bupj","ek-text_size_h4@small":"RLAjj","ek-text_size_h5@small":"MSeBt","ek-text_size_h6@small":"DGRDV","ek-text_weight_default@small":"_7u9ww","ek-text_weight_thin@small":"f3E1Z","ek-text_weight_light@small":"UgVat","ek-text_weight_medium@small":"GhR2r","ek-text_weight_bold@small":"fdZOu","ek-text_weight_black@small":"Txf2-","ek-text_align_left@small":"MOcbA","ek-text_align_center@small":"NDoRI","ek-text_align_right@small":"ertsn","ek-text_align_justify@small":"VXEjp","ek-text_valign_baseline@small":"NFaJ5","ek-text_valign_bottom@small":"n-ZM1","ek-text_valign_middle@small":"_1o-f9","ek-text_valign_sub@small":"_7vrZ5","ek-text_valign_super@small":"_98wkH","ek-text_valign_text-bottom@small":"x6B2v","ek-text_valign_text-top@small":"LfpH0","ek-text_valign_top@small":"kBQTl","ek-text_transform_none@small":"lNIlb","ek-text_transform_capitalize@small":"wM1eM","ek-text_transform_lowercase@small":"bjZhn","ek-text_transform_uppercase@small":"QcGz5","ek-text_style_italic@small":"RLkz-","ek-text_style_strike@small":"_--sCr","ek-text_style_underline@small":"LXQS8","ek-text_style_overline@small":"GNoIB","ek-text_lheight_default@small":"_1W3d2","ek-text_lheight_medium@small":"cZ7Yw","ek-text_lheight_large@small":"Q69Gt","ek-text_wrap_normal@small":"OCeTY","ek-text_wrap_nowrap@small":"feATc","ek-text_wrap_pre@small":"VAue2","ek-text_wrap_pre-wrap@small":"CrynB","ek-text_wrap_pre-line@small":"_2Zets","ek-text_wrap_break@small":"C6739","ek-text_wrap_ellipsis@small":"V-dhX","ek-text_wrap_two-line@small":"fqP29","ek-text_wrap_three-line@small":"Yh-Xv","ek-text_display_inline@medium":"q29UB","ek-text_display_none@medium":"pS5WL","ek-text_size_none@medium":"zmMXI","ek-text_size_inherit@medium":"NyD6y","ek-text_size_small@medium":"_85MSY","ek-text_size_default@medium":"NMxaK","ek-text_size_big@medium":"Ua-Zk","ek-text_size_h1@medium":"thuyZ","ek-text_size_h2@medium":"ESQoF","ek-text_size_h3@medium":"KZmg9","ek-text_size_h4@medium":"ECj9y","ek-text_size_h5@medium":"_2Egnj","ek-text_size_h6@medium":"EiSb9","ek-text_weight_default@medium":"tB-Ch","ek-text_weight_thin@medium":"s8W0s","ek-text_weight_light@medium":"ltoWf","ek-text_weight_medium@medium":"_6tPBW","ek-text_weight_bold@medium":"rpqZ0","ek-text_weight_black@medium":"GSyAT","ek-text_align_left@medium":"P1t-C","ek-text_align_center@medium":"EyFNY","ek-text_align_right@medium":"pv76v","ek-text_align_justify@medium":"BPD5C","ek-text_valign_baseline@medium":"uudr0","ek-text_valign_bottom@medium":"PllPd","ek-text_valign_middle@medium":"Ik6u5","ek-text_valign_sub@medium":"utVwf","ek-text_valign_super@medium":"BbzMP","ek-text_valign_text-bottom@medium":"h-L8G","ek-text_valign_text-top@medium":"_2Sxc3","ek-text_valign_top@medium":"oC57Z","ek-text_transform_none@medium":"VjPVc","ek-text_transform_capitalize@medium":"D2Sqd","ek-text_transform_lowercase@medium":"hjkKi","ek-text_transform_uppercase@medium":"AEFL3","ek-text_style_italic@medium":"yckf-","ek-text_style_strike@medium":"Fc1Ji","ek-text_style_underline@medium":"d-Mrs","ek-text_style_overline@medium":"cBafd","ek-text_lheight_default@medium":"UHfd4","ek-text_lheight_medium@medium":"K2JnS","ek-text_lheight_large@medium":"_7jFRq","ek-text_wrap_normal@medium":"tiKih","ek-text_wrap_nowrap@medium":"K2M6e","ek-text_wrap_pre@medium":"TpcHG","ek-text_wrap_pre-wrap@medium":"Z6C0k","ek-text_wrap_pre-line@medium":"Ajn6a","ek-text_wrap_break@medium":"QtGGg","ek-text_wrap_ellipsis@medium":"NyLo3","ek-text_wrap_two-line@medium":"R6ga0","ek-text_wrap_three-line@medium":"E2iMw","ek-text_display_inline@large":"Qr7da","ek-text_display_none@large":"_8q9MY","ek-text_size_none@large":"lhd15","ek-text_size_inherit@large":"JRmGP","ek-text_size_small@large":"gGYoF","ek-text_size_default@large":"f8ZGq","ek-text_size_big@large":"kXeDX","ek-text_size_h1@large":"FnCNG","ek-text_size_h2@large":"ud3vr","ek-text_size_h3@large":"cQwu6","ek-text_size_h4@large":"AeJ7R","ek-text_size_h5@large":"_5AP56","ek-text_size_h6@large":"nXKYk","ek-text_weight_default@large":"-KZf3","ek-text_weight_thin@large":"OtiPU","ek-text_weight_light@large":"Q876R","ek-text_weight_medium@large":"ERwtC","ek-text_weight_bold@large":"-vQew","ek-text_weight_black@large":"JfoJ2","ek-text_align_left@large":"eDuu-","ek-text_align_center@large":"_0oej2","ek-text_align_right@large":"IruXn","ek-text_align_justify@large":"eLevv","ek-text_valign_baseline@large":"MwBxj","ek-text_valign_bottom@large":"u2HmC","ek-text_valign_middle@large":"_9wTU0","ek-text_valign_sub@large":"Vrz29","ek-text_valign_super@large":"Kr93W","ek-text_valign_text-bottom@large":"_6eXdU","ek-text_valign_text-top@large":"B3Fwm","ek-text_valign_top@large":"cA4GU","ek-text_transform_none@large":"cXpb9","ek-text_transform_capitalize@large":"pHMUF","ek-text_transform_lowercase@large":"DVgu-","ek-text_transform_uppercase@large":"_35kha","ek-text_style_italic@large":"fYSwX","ek-text_style_strike@large":"q0PMX","ek-text_style_underline@large":"sguGX","ek-text_style_overline@large":"V9ewl","ek-text_lheight_default@large":"QI3Ow","ek-text_lheight_medium@large":"dkKyS","ek-text_lheight_large@large":"LWOqd","ek-text_wrap_normal@large":"_1Sfs7","ek-text_wrap_nowrap@large":"Ybix2","ek-text_wrap_pre@large":"w4GA2","ek-text_wrap_pre-wrap@large":"XNCfE","ek-text_wrap_pre-line@large":"IIQMy","ek-text_wrap_break@large":"TMJei","ek-text_wrap_ellipsis@large":"eJt94","ek-text_wrap_two-line@large":"wf8-X","ek-text_wrap_three-line@large":"QM6Ob","ek-text_color_black-600":"iX-v2","ek-text_color_black-600@small":"_4qrki","ek-text_color_black-600@medium":"XfNNR","ek-text_color_black-600@large":"Owu7Q","ek-text_color_black-600@wide":"EPhZb","ek-text_color_black-600@huge":"kX-rO","ek-text_color_black-700":"ffgjE","ek-text_color_black-700@small":"VeJpW","ek-text_color_black-700@medium":"tmDDJ","ek-text_color_black-700@large":"jRnbc","ek-text_color_black-700@wide":"Skgn1","ek-text_color_black-700@huge":"iT2UW","ek-text_color_black-800":"wMAjv","ek-text_color_black-800@small":"_0tsz8","ek-text_color_black-800@medium":"dKLRj","ek-text_color_black-800@large":"PThcN","ek-text_color_black-800@wide":"_4KAq8","ek-text_color_black-800@huge":"sXPSW","ek-text_color_black-900":"ye2-Z","ek-text_color_black-900@small":"Tjehi","ek-text_color_black-900@medium":"D7nHh","ek-text_color_black-900@large":"n8LrJ","ek-text_color_black-900@wide":"O95o7","ek-text_color_black-900@huge":"ufWB7","ek-text_color_blue-500":"Pmash","ek-text_color_blue-500@small":"myNLi","ek-text_color_blue-500@medium":"_807O7","ek-text_color_blue-500@large":"h7LoO","ek-text_color_blue-500@wide":"_1Qk4y","ek-text_color_blue-500@huge":"VrBDq","ek-text_color_green-500":"_9JoFY","ek-text_color_green-500@small":"A3k3K","ek-text_color_green-500@medium":"EDZ-F","ek-text_color_green-500@large":"vV-gD","ek-text_color_green-500@wide":"gDhg2","ek-text_color_green-500@huge":"O5Wpa","ek-text_color_green-700":"NSmdF","ek-text_color_green-700@small":"QEems","ek-text_color_green-700@medium":"-GH--","ek-text_color_green-700@large":"_56wkM","ek-text_color_green-700@wide":"xkvGD","ek-text_color_green-700@huge":"IgnYm","ek-text_color_green-800":"Aahxa","ek-text_color_green-800@small":"x1p-D","ek-text_color_green-800@medium":"EeAPc","ek-text_color_green-800@large":"KH2s5","ek-text_color_green-800@wide":"_6FDFy","ek-text_color_green-800@huge":"V2JjF","ek-text_color_yellow-500":"_7I4ks","ek-text_color_yellow-500@small":"XFBi-","ek-text_color_yellow-500@medium":"I42SE","ek-text_color_yellow-500@large":"BGGYh","ek-text_color_yellow-500@wide":"_2WOin","ek-text_color_yellow-500@huge":"_6u99p","ek-text_color_orange-500":"D39Cr","ek-text_color_orange-500@small":"FCzuX","ek-text_color_orange-500@medium":"_9gjQH","ek-text_color_orange-500@large":"A3IlK","ek-text_color_orange-500@wide":"ye0vt","ek-text_color_orange-500@huge":"eLSt9","ek-text_color_orange-900":"etfhZ","ek-text_color_orange-900@small":"zjEFG","ek-text_color_orange-900@medium":"LUWSS","ek-text_color_orange-900@large":"JXJvc","ek-text_color_orange-900@wide":"PWGFH","ek-text_color_orange-900@huge":"ljHb4","ek-text_color_red-500":"uyrQ6","ek-text_color_red-500@small":"hN5go","ek-text_color_red-500@medium":"HROpc","ek-text_color_red-500@large":"DohkS","ek-text_color_red-500@wide":"vXdZm","ek-text_color_red-500@huge":"nEmHY","ek-text_color_red-900":"yKkMR","ek-text_color_red-900@small":"_2MQqu","ek-text_color_red-900@medium":"k9d1g","ek-text_color_red-900@large":"BYzxn","ek-text_color_red-900@wide":"_9S6GM","ek-text_color_red-900@huge":"rMyDN","ek-text_color_violet-500":"xrKUz","ek-text_color_violet-500@small":"GkpkA","ek-text_color_violet-500@medium":"FYY0k","ek-text_color_violet-500@large":"BX9sY","ek-text_color_violet-500@wide":"vjkvO","ek-text_color_violet-500@huge":"Ufx-e","ek-text_color_white":"ooRRq","ek-text_color_white@small":"aq8Bj","ek-text_color_white@medium":"K2HII","ek-text_color_white@large":"fPDBy","ek-text_color_white@wide":"KBwe0","ek-text_color_white@huge":"pjee0"}}},Object.defineProperty(exports,"Text",{enumerable:!0,get:function(){return e.Text}}),require("./style.production.css");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.Text__ek-text___3Trjq{display:inline;line-height:var(--pds-line-height)}.Text__ek-text_display_inline___hPK83{display:inline}.Text__ek-text_display_none___EpkgL{display:none}.Text__ek-text_size_none___3fCio{font-size:0}.Text__ek-text_size_inherit___GeUFz{font-size:inherit}.Text__ek-text_size_small___IfSYo{font-size:var(--pds-font-size-small)}.Text__ek-text_size_default___snf--{font-size:var(--pds-font-size-default)}.Text__ek-text_size_big___R2ynx{font-size:var(--pds-font-size-big)}.Text__ek-text_size_h1___RLQ4A{font-size:var(--pds-font-size-h1)}.Text__ek-text_size_h2___OAv5u{font-size:var(--pds-font-size-h2)}.Text__ek-text_size_h3___jF03G{font-size:var(--pds-font-size-h3)}.Text__ek-text_size_h4___vj3pM{font-size:var(--pds-font-size-h4)}.Text__ek-text_size_h5___aeJVe{font-size:var(--pds-font-size-h5)}.Text__ek-text_size_h6___P9by2{font-size:var(--pds-font-size-h6)}.Text__ek-text_weight_default___wrQRQ{font-weight:400}.Text__ek-text_weight_thin___pmZOp{font-weight:100}.Text__ek-text_weight_light___vEbTA{font-weight:300}.Text__ek-text_weight_medium___gfDGa{font-weight:500}.Text__ek-text_weight_bold___F7Tdh{font-weight:700}.Text__ek-text_weight_black___Llirb{font-weight:900}.Text__ek-text_align_left___gwkkx{display:block;text-align:left}.Text__ek-text_align_center___od97W{display:block;text-align:center}.Text__ek-text_align_right___PatyF{display:block;text-align:right}.Text__ek-text_align_justify___WNRHD{display:block;text-align:justify}.Text__ek-text_valign_baseline___BFQkO{vertical-align:baseline}.Text__ek-text_valign_bottom___uoQE-{vertical-align:bottom}.Text__ek-text_valign_middle___wL4cB{vertical-align:middle}.Text__ek-text_valign_sub___oQuQV{vertical-align:sub}.Text__ek-text_valign_super___GM270{vertical-align:super}.Text__ek-text_valign_text-bottom___i3gPf{vertical-align:text-bottom}.Text__ek-text_valign_text-top___Y-R3w{vertical-align:text-top}.Text__ek-text_valign_top___NSQH0{vertical-align:top}.Text__ek-text_transform_none___ioMWl{text-transform:none}.Text__ek-text_transform_capitalize___-nH9C{text-transform:capitalize}.Text__ek-text_transform_lowercase___pYEmk{text-transform:lowercase}.Text__ek-text_transform_uppercase___Ptm6g{text-transform:uppercase}.Text__ek-text_style_italic___Y01G5{font-style:italic}.Text__ek-text_style_strike___powM8{text-decoration:line-through}.Text__ek-text_style_underline___ECUz1{text-decoration:underline}.Text__ek-text_style_overline___E4jPq{text-decoration:overline}.Text__ek-text_lheight_default___ic9SB{line-height:var(--pds-line-height)}.Text__ek-text_lheight_medium___QrtcH{line-height:1.25em}.Text__ek-text_lheight_large___G5HaP{line-height:1.5em}.Text__ek-text_wrap_normal___vN11O{white-space:normal}.Text__ek-text_wrap_nowrap___hJTsv{white-space:nowrap}.Text__ek-text_wrap_pre___qtOKJ{white-space:pre}.Text__ek-text_wrap_pre-wrap___55qRX{white-space:pre-wrap}.Text__ek-text_wrap_pre-line___z-RVa{white-space:pre-line}.Text__ek-text_wrap_break___htldP{word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.Text__ek-text_wrap_ellipsis___aXB7S{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Text__ek-text_wrap_two-line___7NHpZ{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*2)}.Text__ek-text_wrap_two-line___7NHpZ.Text__ek-text_lheight_medium___QrtcH{max-height:calc(1.25em*2)}.Text__ek-text_wrap_two-line___7NHpZ.Text__ek-text_lheight_large___G5HaP{max-height:calc(1.5em*2)}.Text__ek-text_wrap_three-line___SCVcX{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*3)}.Text__ek-text_wrap_three-line___SCVcX.Text__ek-text_lheight_medium___QrtcH{max-height:calc(1.25em*3)}.Text__ek-text_wrap_three-line___SCVcX.Text__ek-text_lheight_large___G5HaP{max-height:calc(1.5em*3)}.Text__ek-text_color_black-600___iX-v2{color:var(--black-600)}.Text__ek-text_color_black-700___ffgjE{color:var(--black-700)}.Text__ek-text_color_black-800___wMAjv{color:var(--black-800)}.Text__ek-text_color_black-900___ye2-Z{color:var(--black-900)}.Text__ek-text_color_blue-500___Pmash{color:var(--blue-500)}.Text__ek-text_color_green-500___9JoFY{color:var(--green-500)}.Text__ek-text_color_green-700___NSmdF{color:var(--green-700)}.Text__ek-text_color_green-800___Aahxa{color:var(--green-800)}.Text__ek-text_color_orange-500___D39Cr{color:var(--orange-500)}.Text__ek-text_color_orange-900___etfhZ{color:var(--orange-900)}.Text__ek-text_color_red-500___uyrQ6{color:var(--red-500)}.Text__ek-text_color_red-900___yKkMR{color:var(--red-900)}.Text__ek-text_color_violet-500___xrKUz{color:var(--violet-500)}.Text__ek-text_color_white___ooRRq{color:var(--white)}@media only screen and (min-width:480px){.Text__ek-text_display_inline--small___tf5qK{display:inline}.Text__ek-text_display_none--small___QClAg{display:none}.Text__ek-text_size_none--small___iNBWs{font-size:0}.Text__ek-text_size_inherit--small___SleAe{font-size:inherit}.Text__ek-text_size_small--small___JLdX7{font-size:var(--pds-font-size-small)}.Text__ek-text_size_default--small___lpjy2{font-size:var(--pds-font-size-default)}.Text__ek-text_size_big--small___tyFZq{font-size:var(--pds-font-size-big)}.Text__ek-text_size_h1--small___bTc9i{font-size:var(--pds-font-size-h1)}.Text__ek-text_size_h2--small___fVsfH{font-size:var(--pds-font-size-h2)}.Text__ek-text_size_h3--small___9bupj{font-size:var(--pds-font-size-h3)}.Text__ek-text_size_h4--small___RLAjj{font-size:var(--pds-font-size-h4)}.Text__ek-text_size_h5--small___MSeBt{font-size:var(--pds-font-size-h5)}.Text__ek-text_size_h6--small___DGRDV{font-size:var(--pds-font-size-h6)}.Text__ek-text_weight_default--small___7u9ww{font-weight:400}.Text__ek-text_weight_thin--small___f3E1Z{font-weight:100}.Text__ek-text_weight_light--small___UgVat{font-weight:300}.Text__ek-text_weight_medium--small___GhR2r{font-weight:500}.Text__ek-text_weight_bold--small___fdZOu{font-weight:700}.Text__ek-text_weight_black--small___Txf2-{font-weight:900}.Text__ek-text_align_left--small___MOcbA{display:block;text-align:left}.Text__ek-text_align_center--small___NDoRI{display:block;text-align:center}.Text__ek-text_align_right--small___ertsn{display:block;text-align:right}.Text__ek-text_align_justify--small___VXEjp{display:block;text-align:justify}.Text__ek-text_valign_baseline--small___NFaJ5{vertical-align:baseline}.Text__ek-text_valign_bottom--small___n-ZM1{vertical-align:bottom}.Text__ek-text_valign_middle--small___1o-f9{vertical-align:middle}.Text__ek-text_valign_sub--small___7vrZ5{vertical-align:sub}.Text__ek-text_valign_super--small___98wkH{vertical-align:super}.Text__ek-text_valign_text-bottom--small___x6B2v{vertical-align:text-bottom}.Text__ek-text_valign_text-top--small___LfpH0{vertical-align:text-top}.Text__ek-text_valign_top--small___kBQTl{vertical-align:top}.Text__ek-text_transform_none--small___lNIlb{text-transform:none}.Text__ek-text_transform_capitalize--small___wM1eM{text-transform:capitalize}.Text__ek-text_transform_lowercase--small___bjZhn{text-transform:lowercase}.Text__ek-text_transform_uppercase--small___QcGz5{text-transform:uppercase}.Text__ek-text_style_italic--small___RLkz-{font-style:italic}.Text__ek-text_style_strike--small___--sCr{text-decoration:line-through}.Text__ek-text_style_underline--small___LXQS8{text-decoration:underline}.Text__ek-text_style_overline--small___GNoIB{text-decoration:overline}.Text__ek-text_lheight_default--small___1W3d2{line-height:var(--pds-line-height)}.Text__ek-text_lheight_medium--small___cZ7Yw{line-height:1.25em}.Text__ek-text_lheight_large--small___Q69Gt{line-height:1.5em}.Text__ek-text_wrap_normal--small___OCeTY{white-space:normal}.Text__ek-text_wrap_nowrap--small___feATc{white-space:nowrap}.Text__ek-text_wrap_pre--small___VAue2{white-space:pre}.Text__ek-text_wrap_pre-wrap--small___CrynB{white-space:pre-wrap}.Text__ek-text_wrap_pre-line--small___2Zets{white-space:pre-line}.Text__ek-text_wrap_break--small___C6739{word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.Text__ek-text_wrap_ellipsis--small___V-dhX{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Text__ek-text_wrap_two-line--small___fqP29{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*2)}.Text__ek-text_wrap_two-line--small___fqP29.Text__ek-text_lheight_medium___QrtcH{max-height:calc(1.25em*2)}.Text__ek-text_wrap_two-line--small___fqP29.Text__ek-text_lheight_large___G5HaP{max-height:calc(1.5em*2)}.Text__ek-text_wrap_three-line--small___Yh-Xv{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*3)}.Text__ek-text_wrap_three-line--small___Yh-Xv.Text__ek-text_lheight_medium___QrtcH{max-height:calc(1.25em*3)}.Text__ek-text_wrap_three-line--small___Yh-Xv.Text__ek-text_lheight_large___G5HaP{max-height:calc(1.5em*3)}.Text__ek-text_color_black-600--small___4qrki{color:var(--black-600)}.Text__ek-text_color_black-700--small___VeJpW{color:var(--black-700)}.Text__ek-text_color_black-800--small___0tsz8{color:var(--black-800)}.Text__ek-text_color_black-900--small___Tjehi{color:var(--black-900)}.Text__ek-text_color_blue-500--small___myNLi{color:var(--blue-500)}.Text__ek-text_color_green-500--small___A3k3K{color:var(--green-500)}.Text__ek-text_color_green-700--small___QEems{color:var(--green-700)}.Text__ek-text_color_green-800--small___x1p-D{color:var(--green-800)}.Text__ek-text_color_orange-500--small___FCzuX{color:var(--orange-500)}.Text__ek-text_color_orange-900--small___zjEFG{color:var(--orange-900)}.Text__ek-text_color_red-500--small___hN5go{color:var(--red-500)}.Text__ek-text_color_red-900--small___2MQqu{color:var(--red-900)}.Text__ek-text_color_violet-500--small___GkpkA{color:var(--violet-500)}.Text__ek-text_color_white--small___aq8Bj{color:var(--white)}}@media only screen and (min-width:768px){.Text__ek-text_display_inline--medium___q29UB{display:inline}.Text__ek-text_display_none--medium___pS5WL{display:none}.Text__ek-text_size_none--medium___zmMXI{font-size:0}.Text__ek-text_size_inherit--medium___NyD6y{font-size:inherit}.Text__ek-text_size_small--medium___85MSY{font-size:var(--pds-font-size-small)}.Text__ek-text_size_default--medium___NMxaK{font-size:var(--pds-font-size-default)}.Text__ek-text_size_big--medium___Ua-Zk{font-size:var(--pds-font-size-big)}.Text__ek-text_size_h1--medium___thuyZ{font-size:var(--pds-font-size-h1)}.Text__ek-text_size_h2--medium___ESQoF{font-size:var(--pds-font-size-h2)}.Text__ek-text_size_h3--medium___KZmg9{font-size:var(--pds-font-size-h3)}.Text__ek-text_size_h4--medium___ECj9y{font-size:var(--pds-font-size-h4)}.Text__ek-text_size_h5--medium___2Egnj{font-size:var(--pds-font-size-h5)}.Text__ek-text_size_h6--medium___EiSb9{font-size:var(--pds-font-size-h6)}.Text__ek-text_weight_default--medium___tB-Ch{font-weight:400}.Text__ek-text_weight_thin--medium___s8W0s{font-weight:100}.Text__ek-text_weight_light--medium___ltoWf{font-weight:300}.Text__ek-text_weight_medium--medium___6tPBW{font-weight:500}.Text__ek-text_weight_bold--medium___rpqZ0{font-weight:700}.Text__ek-text_weight_black--medium___GSyAT{font-weight:900}.Text__ek-text_align_left--medium___P1t-C{display:block;text-align:left}.Text__ek-text_align_center--medium___EyFNY{display:block;text-align:center}.Text__ek-text_align_right--medium___pv76v{display:block;text-align:right}.Text__ek-text_align_justify--medium___BPD5C{display:block;text-align:justify}.Text__ek-text_valign_baseline--medium___uudr0{vertical-align:baseline}.Text__ek-text_valign_bottom--medium___PllPd{vertical-align:bottom}.Text__ek-text_valign_middle--medium___Ik6u5{vertical-align:middle}.Text__ek-text_valign_sub--medium___utVwf{vertical-align:sub}.Text__ek-text_valign_super--medium___BbzMP{vertical-align:super}.Text__ek-text_valign_text-bottom--medium___h-L8G{vertical-align:text-bottom}.Text__ek-text_valign_text-top--medium___2Sxc3{vertical-align:text-top}.Text__ek-text_valign_top--medium___oC57Z{vertical-align:top}.Text__ek-text_transform_none--medium___VjPVc{text-transform:none}.Text__ek-text_transform_capitalize--medium___D2Sqd{text-transform:capitalize}.Text__ek-text_transform_lowercase--medium___hjkKi{text-transform:lowercase}.Text__ek-text_transform_uppercase--medium___AEFL3{text-transform:uppercase}.Text__ek-text_style_italic--medium___yckf-{font-style:italic}.Text__ek-text_style_strike--medium___Fc1Ji{text-decoration:line-through}.Text__ek-text_style_underline--medium___d-Mrs{text-decoration:underline}.Text__ek-text_style_overline--medium___cBafd{text-decoration:overline}.Text__ek-text_lheight_default--medium___UHfd4{line-height:var(--pds-line-height)}.Text__ek-text_lheight_medium--medium___K2JnS{line-height:1.25em}.Text__ek-text_lheight_large--medium___7jFRq{line-height:1.5em}.Text__ek-text_wrap_normal--medium___tiKih{white-space:normal}.Text__ek-text_wrap_nowrap--medium___K2M6e{white-space:nowrap}.Text__ek-text_wrap_pre--medium___TpcHG{white-space:pre}.Text__ek-text_wrap_pre-wrap--medium___Z6C0k{white-space:pre-wrap}.Text__ek-text_wrap_pre-line--medium___Ajn6a{white-space:pre-line}.Text__ek-text_wrap_break--medium___QtGGg{word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.Text__ek-text_wrap_ellipsis--medium___NyLo3{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Text__ek-text_wrap_two-line--medium___R6ga0{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*2)}.Text__ek-text_wrap_two-line--medium___R6ga0.Text__ek-text_lheight_medium___QrtcH{max-height:calc(1.25em*2)}.Text__ek-text_wrap_two-line--medium___R6ga0.Text__ek-text_lheight_large___G5HaP{max-height:calc(1.5em*2)}.Text__ek-text_wrap_three-line--medium___E2iMw{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*3)}.Text__ek-text_wrap_three-line--medium___E2iMw.Text__ek-text_lheight_medium___QrtcH{max-height:calc(1.25em*3)}.Text__ek-text_wrap_three-line--medium___E2iMw.Text__ek-text_lheight_large___G5HaP{max-height:calc(1.5em*3)}.Text__ek-text_color_black-600--medium___XfNNR{color:var(--black-600)}.Text__ek-text_color_black-700--medium___tmDDJ{color:var(--black-700)}.Text__ek-text_color_black-800--medium___dKLRj{color:var(--black-800)}.Text__ek-text_color_black-900--medium___D7nHh{color:var(--black-900)}.Text__ek-text_color_blue-500--medium___807O7{color:var(--blue-500)}.Text__ek-text_color_green-500--medium___EDZ-F{color:var(--green-500)}.Text__ek-text_color_green-700--medium___-GH--{color:var(--green-700)}.Text__ek-text_color_green-800--medium___EeAPc{color:var(--green-800)}.Text__ek-text_color_orange-500--medium___9gjQH{color:var(--orange-500)}.Text__ek-text_color_orange-900--medium___LUWSS{color:var(--orange-900)}.Text__ek-text_color_red-500--medium___HROpc{color:var(--red-500)}.Text__ek-text_color_red-900--medium___k9d1g{color:var(--red-900)}.Text__ek-text_color_violet-500--medium___FYY0k{color:var(--violet-500)}.Text__ek-text_color_white--medium___K2HII{color:var(--white)}}@media only screen and (min-width:960px){.Text__ek-text_display_inline--large___Qr7da{display:inline}.Text__ek-text_display_none--large___8q9MY{display:none}.Text__ek-text_size_none--large___lhd15{font-size:0}.Text__ek-text_size_inherit--large___JRmGP{font-size:inherit}.Text__ek-text_size_small--large___gGYoF{font-size:var(--pds-font-size-small)}.Text__ek-text_size_default--large___f8ZGq{font-size:var(--pds-font-size-default)}.Text__ek-text_size_big--large___kXeDX{font-size:var(--pds-font-size-big)}.Text__ek-text_size_h1--large___FnCNG{font-size:var(--pds-font-size-h1)}.Text__ek-text_size_h2--large___ud3vr{font-size:var(--pds-font-size-h2)}.Text__ek-text_size_h3--large___cQwu6{font-size:var(--pds-font-size-h3)}.Text__ek-text_size_h4--large___AeJ7R{font-size:var(--pds-font-size-h4)}.Text__ek-text_size_h5--large___5AP56{font-size:var(--pds-font-size-h5)}.Text__ek-text_size_h6--large___nXKYk{font-size:var(--pds-font-size-h6)}.Text__ek-text_weight_default--large___-KZf3{font-weight:400}.Text__ek-text_weight_thin--large___OtiPU{font-weight:100}.Text__ek-text_weight_light--large___Q876R{font-weight:300}.Text__ek-text_weight_medium--large___ERwtC{font-weight:500}.Text__ek-text_weight_bold--large___-vQew{font-weight:700}.Text__ek-text_weight_black--large___JfoJ2{font-weight:900}.Text__ek-text_align_left--large___eDuu-{display:block;text-align:left}.Text__ek-text_align_center--large___0oej2{display:block;text-align:center}.Text__ek-text_align_right--large___IruXn{display:block;text-align:right}.Text__ek-text_align_justify--large___eLevv{display:block;text-align:justify}.Text__ek-text_valign_baseline--large___MwBxj{vertical-align:baseline}.Text__ek-text_valign_bottom--large___u2HmC{vertical-align:bottom}.Text__ek-text_valign_middle--large___9wTU0{vertical-align:middle}.Text__ek-text_valign_sub--large___Vrz29{vertical-align:sub}.Text__ek-text_valign_super--large___Kr93W{vertical-align:super}.Text__ek-text_valign_text-bottom--large___6eXdU{vertical-align:text-bottom}.Text__ek-text_valign_text-top--large___B3Fwm{vertical-align:text-top}.Text__ek-text_valign_top--large___cA4GU{vertical-align:top}.Text__ek-text_transform_none--large___cXpb9{text-transform:none}.Text__ek-text_transform_capitalize--large___pHMUF{text-transform:capitalize}.Text__ek-text_transform_lowercase--large___DVgu-{text-transform:lowercase}.Text__ek-text_transform_uppercase--large___35kha{text-transform:uppercase}.Text__ek-text_style_italic--large___fYSwX{font-style:italic}.Text__ek-text_style_strike--large___q0PMX{text-decoration:line-through}.Text__ek-text_style_underline--large___sguGX{text-decoration:underline}.Text__ek-text_style_overline--large___V9ewl{text-decoration:overline}.Text__ek-text_lheight_default--large___QI3Ow{line-height:var(--pds-line-height)}.Text__ek-text_lheight_medium--large___dkKyS{line-height:1.25em}.Text__ek-text_lheight_large--large___LWOqd{line-height:1.5em}.Text__ek-text_wrap_normal--large___1Sfs7{white-space:normal}.Text__ek-text_wrap_nowrap--large___Ybix2{white-space:nowrap}.Text__ek-text_wrap_pre--large___w4GA2{white-space:pre}.Text__ek-text_wrap_pre-wrap--large___XNCfE{white-space:pre-wrap}.Text__ek-text_wrap_pre-line--large___IIQMy{white-space:pre-line}.Text__ek-text_wrap_break--large___TMJei{word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.Text__ek-text_wrap_ellipsis--large___eJt94{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Text__ek-text_wrap_two-line--large___wf8-X{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*2)}.Text__ek-text_wrap_two-line--large___wf8-X.Text__ek-text_lheight_medium___QrtcH{max-height:calc(1.25em*2)}.Text__ek-text_wrap_two-line--large___wf8-X.Text__ek-text_lheight_large___G5HaP{max-height:calc(1.5em*2)}.Text__ek-text_wrap_three-line--large___QM6Ob{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*3)}.Text__ek-text_wrap_three-line--large___QM6Ob.Text__ek-text_lheight_medium___QrtcH{max-height:calc(1.25em*3)}.Text__ek-text_wrap_three-line--large___QM6Ob.Text__ek-text_lheight_large___G5HaP{max-height:calc(1.5em*3)}.Text__ek-text_color_black-600--large___Owu7Q{color:var(--black-600)}.Text__ek-text_color_black-700--large___jRnbc{color:var(--black-700)}.Text__ek-text_color_black-800--large___PThcN{color:var(--black-800)}.Text__ek-text_color_black-900--large___n8LrJ{color:var(--black-900)}.Text__ek-text_color_blue-500--large___h7LoO{color:var(--blue-500)}.Text__ek-text_color_green-500--large___vV-gD{color:var(--green-500)}.Text__ek-text_color_green-700--large___56wkM{color:var(--green-700)}.Text__ek-text_color_green-800--large___KH2s5{color:var(--green-800)}.Text__ek-text_color_orange-500--large___A3IlK{color:var(--orange-500)}.Text__ek-text_color_orange-900--large___JXJvc{color:var(--orange-900)}.Text__ek-text_color_red-500--large___DohkS{color:var(--red-500)}.Text__ek-text_color_red-900--large___BYzxn{color:var(--red-900)}.Text__ek-text_color_violet-500--large___BX9sY{color:var(--violet-500)}.Text__ek-text_color_white--large___fPDBy{color:var(--white)}}@media only screen and (min-width:1200px){.Text__ek-text_color_black-600--wide___EPhZb{color:var(--black-600)}.Text__ek-text_color_black-700--wide___Skgn1{color:var(--black-700)}.Text__ek-text_color_black-800--wide___4KAq8{color:var(--black-800)}.Text__ek-text_color_black-900--wide___O95o7{color:var(--black-900)}.Text__ek-text_color_blue-500--wide___1Qk4y{color:var(--blue-500)}.Text__ek-text_color_green-500--wide___gDhg2{color:var(--green-500)}.Text__ek-text_color_green-700--wide___xkvGD{color:var(--green-700)}.Text__ek-text_color_green-800--wide___6FDFy{color:var(--green-800)}.Text__ek-text_color_orange-500--wide___ye0vt{color:var(--orange-500)}.Text__ek-text_color_orange-900--wide___PWGFH{color:var(--orange-900)}.Text__ek-text_color_red-500--wide___vXdZm{color:var(--red-500)}.Text__ek-text_color_red-900--wide___9S6GM{color:var(--red-900)}.Text__ek-text_color_violet-500--wide___vjkvO{color:var(--violet-500)}.Text__ek-text_color_white--wide___KBwe0{color:var(--white)}}@media only screen and (min-width:1400px){.Text__ek-text_color_black-600--huge___kX-rO{color:var(--black-600)}.Text__ek-text_color_black-700--huge___iT2UW{color:var(--black-700)}.Text__ek-text_color_black-800--huge___sXPSW{color:var(--black-800)}.Text__ek-text_color_black-900--huge___ufWB7{color:var(--black-900)}.Text__ek-text_color_blue-500--huge___VrBDq{color:var(--blue-500)}.Text__ek-text_color_green-500--huge___O5Wpa{color:var(--green-500)}.Text__ek-text_color_green-700--huge___IgnYm{color:var(--green-700)}.Text__ek-text_color_green-800--huge___V2JjF{color:var(--green-800)}.Text__ek-text_color_orange-500--huge___eLSt9{color:var(--orange-500)}.Text__ek-text_color_orange-900--huge___ljHb4{color:var(--orange-900)}.Text__ek-text_color_red-500--huge___nEmHY{color:var(--red-500)}.Text__ek-text_color_red-900--huge___rMyDN{color:var(--red-900)}.Text__ek-text_color_violet-500--huge___Ufx-e{color:var(--violet-500)}.Text__ek-text_color_white--huge___pjee0{color:var(--white)}}
|
|
1
|
+
.Text__ek-text___3Trjq{display:inline;line-height:var(--pds-line-height)}.Text__ek-text_display_inline___hPK83{display:inline}.Text__ek-text_display_none___EpkgL{display:none}.Text__ek-text_size_none___3fCio{font-size:0}.Text__ek-text_size_inherit___GeUFz{font-size:inherit}.Text__ek-text_size_small___IfSYo{font-size:var(--pds-font-size-small)}.Text__ek-text_size_default___snf--{font-size:var(--pds-font-size-default)}.Text__ek-text_size_big___R2ynx{font-size:var(--pds-font-size-big)}.Text__ek-text_size_h1___RLQ4A{font-size:var(--pds-font-size-h1)}.Text__ek-text_size_h2___OAv5u{font-size:var(--pds-font-size-h2)}.Text__ek-text_size_h3___jF03G{font-size:var(--pds-font-size-h3)}.Text__ek-text_size_h4___vj3pM{font-size:var(--pds-font-size-h4)}.Text__ek-text_size_h5___aeJVe{font-size:var(--pds-font-size-h5)}.Text__ek-text_size_h6___P9by2{font-size:var(--pds-font-size-h6)}.Text__ek-text_weight_default___wrQRQ{font-weight:400}.Text__ek-text_weight_thin___pmZOp{font-weight:100}.Text__ek-text_weight_light___vEbTA{font-weight:300}.Text__ek-text_weight_medium___gfDGa{font-weight:500}.Text__ek-text_weight_bold___F7Tdh{font-weight:700}.Text__ek-text_weight_black___Llirb{font-weight:900}.Text__ek-text_align_left___gwkkx{display:block;text-align:left}.Text__ek-text_align_center___od97W{display:block;text-align:center}.Text__ek-text_align_right___PatyF{display:block;text-align:right}.Text__ek-text_align_justify___WNRHD{display:block;text-align:justify}.Text__ek-text_valign_baseline___BFQkO{vertical-align:baseline}.Text__ek-text_valign_bottom___uoQE-{vertical-align:bottom}.Text__ek-text_valign_middle___wL4cB{vertical-align:middle}.Text__ek-text_valign_sub___oQuQV{vertical-align:sub}.Text__ek-text_valign_super___GM270{vertical-align:super}.Text__ek-text_valign_text-bottom___i3gPf{vertical-align:text-bottom}.Text__ek-text_valign_text-top___Y-R3w{vertical-align:text-top}.Text__ek-text_valign_top___NSQH0{vertical-align:top}.Text__ek-text_transform_none___ioMWl{text-transform:none}.Text__ek-text_transform_capitalize___-nH9C{text-transform:capitalize}.Text__ek-text_transform_lowercase___pYEmk{text-transform:lowercase}.Text__ek-text_transform_uppercase___Ptm6g{text-transform:uppercase}.Text__ek-text_style_italic___Y01G5{font-style:italic}.Text__ek-text_style_strike___powM8{text-decoration:line-through}.Text__ek-text_style_underline___ECUz1{text-decoration:underline}.Text__ek-text_style_overline___E4jPq{text-decoration:overline}.Text__ek-text_lheight_default___ic9SB{line-height:var(--pds-line-height)}.Text__ek-text_lheight_medium___QrtcH{line-height:1.25em}.Text__ek-text_lheight_large___G5HaP{line-height:1.5em}.Text__ek-text_wrap_normal___vN11O{white-space:normal}.Text__ek-text_wrap_nowrap___hJTsv{white-space:nowrap}.Text__ek-text_wrap_pre___qtOKJ{white-space:pre}.Text__ek-text_wrap_pre-wrap___55qRX{white-space:pre-wrap}.Text__ek-text_wrap_pre-line___z-RVa{white-space:pre-line}.Text__ek-text_wrap_break___htldP{word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.Text__ek-text_wrap_ellipsis___aXB7S{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Text__ek-text_wrap_two-line___7NHpZ{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*2)}.Text__ek-text_wrap_two-line___7NHpZ.Text__ek-text_lheight_medium___QrtcH{max-height:calc(1.25em*2)}.Text__ek-text_wrap_two-line___7NHpZ.Text__ek-text_lheight_large___G5HaP{max-height:calc(1.5em*2)}.Text__ek-text_wrap_three-line___SCVcX{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*3)}.Text__ek-text_wrap_three-line___SCVcX.Text__ek-text_lheight_medium___QrtcH{max-height:calc(1.25em*3)}.Text__ek-text_wrap_three-line___SCVcX.Text__ek-text_lheight_large___G5HaP{max-height:calc(1.5em*3)}.Text__ek-text_color_black-600___iX-v2{color:var(--black-600)}.Text__ek-text_color_black-700___ffgjE{color:var(--black-700)}.Text__ek-text_color_black-800___wMAjv{color:var(--black-800)}.Text__ek-text_color_black-900___ye2-Z{color:var(--black-900)}.Text__ek-text_color_blue-500___Pmash{color:var(--blue-500)}.Text__ek-text_color_green-500___9JoFY{color:var(--green-500)}.Text__ek-text_color_green-700___NSmdF{color:var(--green-700)}.Text__ek-text_color_green-800___Aahxa{color:var(--green-800)}.Text__ek-text_color_yellow-500___7I4ks{color:var(--yellow-500)}.Text__ek-text_color_orange-500___D39Cr{color:var(--orange-500)}.Text__ek-text_color_orange-900___etfhZ{color:var(--orange-900)}.Text__ek-text_color_red-500___uyrQ6{color:var(--red-500)}.Text__ek-text_color_red-900___yKkMR{color:var(--red-900)}.Text__ek-text_color_violet-500___xrKUz{color:var(--violet-500)}.Text__ek-text_color_white___ooRRq{color:var(--white)}@media only screen and (min-width:480px){.Text__ek-text_display_inline--small___tf5qK{display:inline}.Text__ek-text_display_none--small___QClAg{display:none}.Text__ek-text_size_none--small___iNBWs{font-size:0}.Text__ek-text_size_inherit--small___SleAe{font-size:inherit}.Text__ek-text_size_small--small___JLdX7{font-size:var(--pds-font-size-small)}.Text__ek-text_size_default--small___lpjy2{font-size:var(--pds-font-size-default)}.Text__ek-text_size_big--small___tyFZq{font-size:var(--pds-font-size-big)}.Text__ek-text_size_h1--small___bTc9i{font-size:var(--pds-font-size-h1)}.Text__ek-text_size_h2--small___fVsfH{font-size:var(--pds-font-size-h2)}.Text__ek-text_size_h3--small___9bupj{font-size:var(--pds-font-size-h3)}.Text__ek-text_size_h4--small___RLAjj{font-size:var(--pds-font-size-h4)}.Text__ek-text_size_h5--small___MSeBt{font-size:var(--pds-font-size-h5)}.Text__ek-text_size_h6--small___DGRDV{font-size:var(--pds-font-size-h6)}.Text__ek-text_weight_default--small___7u9ww{font-weight:400}.Text__ek-text_weight_thin--small___f3E1Z{font-weight:100}.Text__ek-text_weight_light--small___UgVat{font-weight:300}.Text__ek-text_weight_medium--small___GhR2r{font-weight:500}.Text__ek-text_weight_bold--small___fdZOu{font-weight:700}.Text__ek-text_weight_black--small___Txf2-{font-weight:900}.Text__ek-text_align_left--small___MOcbA{display:block;text-align:left}.Text__ek-text_align_center--small___NDoRI{display:block;text-align:center}.Text__ek-text_align_right--small___ertsn{display:block;text-align:right}.Text__ek-text_align_justify--small___VXEjp{display:block;text-align:justify}.Text__ek-text_valign_baseline--small___NFaJ5{vertical-align:baseline}.Text__ek-text_valign_bottom--small___n-ZM1{vertical-align:bottom}.Text__ek-text_valign_middle--small___1o-f9{vertical-align:middle}.Text__ek-text_valign_sub--small___7vrZ5{vertical-align:sub}.Text__ek-text_valign_super--small___98wkH{vertical-align:super}.Text__ek-text_valign_text-bottom--small___x6B2v{vertical-align:text-bottom}.Text__ek-text_valign_text-top--small___LfpH0{vertical-align:text-top}.Text__ek-text_valign_top--small___kBQTl{vertical-align:top}.Text__ek-text_transform_none--small___lNIlb{text-transform:none}.Text__ek-text_transform_capitalize--small___wM1eM{text-transform:capitalize}.Text__ek-text_transform_lowercase--small___bjZhn{text-transform:lowercase}.Text__ek-text_transform_uppercase--small___QcGz5{text-transform:uppercase}.Text__ek-text_style_italic--small___RLkz-{font-style:italic}.Text__ek-text_style_strike--small___--sCr{text-decoration:line-through}.Text__ek-text_style_underline--small___LXQS8{text-decoration:underline}.Text__ek-text_style_overline--small___GNoIB{text-decoration:overline}.Text__ek-text_lheight_default--small___1W3d2{line-height:var(--pds-line-height)}.Text__ek-text_lheight_medium--small___cZ7Yw{line-height:1.25em}.Text__ek-text_lheight_large--small___Q69Gt{line-height:1.5em}.Text__ek-text_wrap_normal--small___OCeTY{white-space:normal}.Text__ek-text_wrap_nowrap--small___feATc{white-space:nowrap}.Text__ek-text_wrap_pre--small___VAue2{white-space:pre}.Text__ek-text_wrap_pre-wrap--small___CrynB{white-space:pre-wrap}.Text__ek-text_wrap_pre-line--small___2Zets{white-space:pre-line}.Text__ek-text_wrap_break--small___C6739{word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.Text__ek-text_wrap_ellipsis--small___V-dhX{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Text__ek-text_wrap_two-line--small___fqP29{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*2)}.Text__ek-text_wrap_two-line--small___fqP29.Text__ek-text_lheight_medium___QrtcH{max-height:calc(1.25em*2)}.Text__ek-text_wrap_two-line--small___fqP29.Text__ek-text_lheight_large___G5HaP{max-height:calc(1.5em*2)}.Text__ek-text_wrap_three-line--small___Yh-Xv{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*3)}.Text__ek-text_wrap_three-line--small___Yh-Xv.Text__ek-text_lheight_medium___QrtcH{max-height:calc(1.25em*3)}.Text__ek-text_wrap_three-line--small___Yh-Xv.Text__ek-text_lheight_large___G5HaP{max-height:calc(1.5em*3)}.Text__ek-text_color_black-600--small___4qrki{color:var(--black-600)}.Text__ek-text_color_black-700--small___VeJpW{color:var(--black-700)}.Text__ek-text_color_black-800--small___0tsz8{color:var(--black-800)}.Text__ek-text_color_black-900--small___Tjehi{color:var(--black-900)}.Text__ek-text_color_blue-500--small___myNLi{color:var(--blue-500)}.Text__ek-text_color_green-500--small___A3k3K{color:var(--green-500)}.Text__ek-text_color_green-700--small___QEems{color:var(--green-700)}.Text__ek-text_color_green-800--small___x1p-D{color:var(--green-800)}.Text__ek-text_color_yellow-500--small___XFBi-{color:var(--yellow-500)}.Text__ek-text_color_orange-500--small___FCzuX{color:var(--orange-500)}.Text__ek-text_color_orange-900--small___zjEFG{color:var(--orange-900)}.Text__ek-text_color_red-500--small___hN5go{color:var(--red-500)}.Text__ek-text_color_red-900--small___2MQqu{color:var(--red-900)}.Text__ek-text_color_violet-500--small___GkpkA{color:var(--violet-500)}.Text__ek-text_color_white--small___aq8Bj{color:var(--white)}}@media only screen and (min-width:768px){.Text__ek-text_display_inline--medium___q29UB{display:inline}.Text__ek-text_display_none--medium___pS5WL{display:none}.Text__ek-text_size_none--medium___zmMXI{font-size:0}.Text__ek-text_size_inherit--medium___NyD6y{font-size:inherit}.Text__ek-text_size_small--medium___85MSY{font-size:var(--pds-font-size-small)}.Text__ek-text_size_default--medium___NMxaK{font-size:var(--pds-font-size-default)}.Text__ek-text_size_big--medium___Ua-Zk{font-size:var(--pds-font-size-big)}.Text__ek-text_size_h1--medium___thuyZ{font-size:var(--pds-font-size-h1)}.Text__ek-text_size_h2--medium___ESQoF{font-size:var(--pds-font-size-h2)}.Text__ek-text_size_h3--medium___KZmg9{font-size:var(--pds-font-size-h3)}.Text__ek-text_size_h4--medium___ECj9y{font-size:var(--pds-font-size-h4)}.Text__ek-text_size_h5--medium___2Egnj{font-size:var(--pds-font-size-h5)}.Text__ek-text_size_h6--medium___EiSb9{font-size:var(--pds-font-size-h6)}.Text__ek-text_weight_default--medium___tB-Ch{font-weight:400}.Text__ek-text_weight_thin--medium___s8W0s{font-weight:100}.Text__ek-text_weight_light--medium___ltoWf{font-weight:300}.Text__ek-text_weight_medium--medium___6tPBW{font-weight:500}.Text__ek-text_weight_bold--medium___rpqZ0{font-weight:700}.Text__ek-text_weight_black--medium___GSyAT{font-weight:900}.Text__ek-text_align_left--medium___P1t-C{display:block;text-align:left}.Text__ek-text_align_center--medium___EyFNY{display:block;text-align:center}.Text__ek-text_align_right--medium___pv76v{display:block;text-align:right}.Text__ek-text_align_justify--medium___BPD5C{display:block;text-align:justify}.Text__ek-text_valign_baseline--medium___uudr0{vertical-align:baseline}.Text__ek-text_valign_bottom--medium___PllPd{vertical-align:bottom}.Text__ek-text_valign_middle--medium___Ik6u5{vertical-align:middle}.Text__ek-text_valign_sub--medium___utVwf{vertical-align:sub}.Text__ek-text_valign_super--medium___BbzMP{vertical-align:super}.Text__ek-text_valign_text-bottom--medium___h-L8G{vertical-align:text-bottom}.Text__ek-text_valign_text-top--medium___2Sxc3{vertical-align:text-top}.Text__ek-text_valign_top--medium___oC57Z{vertical-align:top}.Text__ek-text_transform_none--medium___VjPVc{text-transform:none}.Text__ek-text_transform_capitalize--medium___D2Sqd{text-transform:capitalize}.Text__ek-text_transform_lowercase--medium___hjkKi{text-transform:lowercase}.Text__ek-text_transform_uppercase--medium___AEFL3{text-transform:uppercase}.Text__ek-text_style_italic--medium___yckf-{font-style:italic}.Text__ek-text_style_strike--medium___Fc1Ji{text-decoration:line-through}.Text__ek-text_style_underline--medium___d-Mrs{text-decoration:underline}.Text__ek-text_style_overline--medium___cBafd{text-decoration:overline}.Text__ek-text_lheight_default--medium___UHfd4{line-height:var(--pds-line-height)}.Text__ek-text_lheight_medium--medium___K2JnS{line-height:1.25em}.Text__ek-text_lheight_large--medium___7jFRq{line-height:1.5em}.Text__ek-text_wrap_normal--medium___tiKih{white-space:normal}.Text__ek-text_wrap_nowrap--medium___K2M6e{white-space:nowrap}.Text__ek-text_wrap_pre--medium___TpcHG{white-space:pre}.Text__ek-text_wrap_pre-wrap--medium___Z6C0k{white-space:pre-wrap}.Text__ek-text_wrap_pre-line--medium___Ajn6a{white-space:pre-line}.Text__ek-text_wrap_break--medium___QtGGg{word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.Text__ek-text_wrap_ellipsis--medium___NyLo3{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Text__ek-text_wrap_two-line--medium___R6ga0{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*2)}.Text__ek-text_wrap_two-line--medium___R6ga0.Text__ek-text_lheight_medium___QrtcH{max-height:calc(1.25em*2)}.Text__ek-text_wrap_two-line--medium___R6ga0.Text__ek-text_lheight_large___G5HaP{max-height:calc(1.5em*2)}.Text__ek-text_wrap_three-line--medium___E2iMw{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*3)}.Text__ek-text_wrap_three-line--medium___E2iMw.Text__ek-text_lheight_medium___QrtcH{max-height:calc(1.25em*3)}.Text__ek-text_wrap_three-line--medium___E2iMw.Text__ek-text_lheight_large___G5HaP{max-height:calc(1.5em*3)}.Text__ek-text_color_black-600--medium___XfNNR{color:var(--black-600)}.Text__ek-text_color_black-700--medium___tmDDJ{color:var(--black-700)}.Text__ek-text_color_black-800--medium___dKLRj{color:var(--black-800)}.Text__ek-text_color_black-900--medium___D7nHh{color:var(--black-900)}.Text__ek-text_color_blue-500--medium___807O7{color:var(--blue-500)}.Text__ek-text_color_green-500--medium___EDZ-F{color:var(--green-500)}.Text__ek-text_color_green-700--medium___-GH--{color:var(--green-700)}.Text__ek-text_color_green-800--medium___EeAPc{color:var(--green-800)}.Text__ek-text_color_yellow-500--medium___I42SE{color:var(--yellow-500)}.Text__ek-text_color_orange-500--medium___9gjQH{color:var(--orange-500)}.Text__ek-text_color_orange-900--medium___LUWSS{color:var(--orange-900)}.Text__ek-text_color_red-500--medium___HROpc{color:var(--red-500)}.Text__ek-text_color_red-900--medium___k9d1g{color:var(--red-900)}.Text__ek-text_color_violet-500--medium___FYY0k{color:var(--violet-500)}.Text__ek-text_color_white--medium___K2HII{color:var(--white)}}@media only screen and (min-width:960px){.Text__ek-text_display_inline--large___Qr7da{display:inline}.Text__ek-text_display_none--large___8q9MY{display:none}.Text__ek-text_size_none--large___lhd15{font-size:0}.Text__ek-text_size_inherit--large___JRmGP{font-size:inherit}.Text__ek-text_size_small--large___gGYoF{font-size:var(--pds-font-size-small)}.Text__ek-text_size_default--large___f8ZGq{font-size:var(--pds-font-size-default)}.Text__ek-text_size_big--large___kXeDX{font-size:var(--pds-font-size-big)}.Text__ek-text_size_h1--large___FnCNG{font-size:var(--pds-font-size-h1)}.Text__ek-text_size_h2--large___ud3vr{font-size:var(--pds-font-size-h2)}.Text__ek-text_size_h3--large___cQwu6{font-size:var(--pds-font-size-h3)}.Text__ek-text_size_h4--large___AeJ7R{font-size:var(--pds-font-size-h4)}.Text__ek-text_size_h5--large___5AP56{font-size:var(--pds-font-size-h5)}.Text__ek-text_size_h6--large___nXKYk{font-size:var(--pds-font-size-h6)}.Text__ek-text_weight_default--large___-KZf3{font-weight:400}.Text__ek-text_weight_thin--large___OtiPU{font-weight:100}.Text__ek-text_weight_light--large___Q876R{font-weight:300}.Text__ek-text_weight_medium--large___ERwtC{font-weight:500}.Text__ek-text_weight_bold--large___-vQew{font-weight:700}.Text__ek-text_weight_black--large___JfoJ2{font-weight:900}.Text__ek-text_align_left--large___eDuu-{display:block;text-align:left}.Text__ek-text_align_center--large___0oej2{display:block;text-align:center}.Text__ek-text_align_right--large___IruXn{display:block;text-align:right}.Text__ek-text_align_justify--large___eLevv{display:block;text-align:justify}.Text__ek-text_valign_baseline--large___MwBxj{vertical-align:baseline}.Text__ek-text_valign_bottom--large___u2HmC{vertical-align:bottom}.Text__ek-text_valign_middle--large___9wTU0{vertical-align:middle}.Text__ek-text_valign_sub--large___Vrz29{vertical-align:sub}.Text__ek-text_valign_super--large___Kr93W{vertical-align:super}.Text__ek-text_valign_text-bottom--large___6eXdU{vertical-align:text-bottom}.Text__ek-text_valign_text-top--large___B3Fwm{vertical-align:text-top}.Text__ek-text_valign_top--large___cA4GU{vertical-align:top}.Text__ek-text_transform_none--large___cXpb9{text-transform:none}.Text__ek-text_transform_capitalize--large___pHMUF{text-transform:capitalize}.Text__ek-text_transform_lowercase--large___DVgu-{text-transform:lowercase}.Text__ek-text_transform_uppercase--large___35kha{text-transform:uppercase}.Text__ek-text_style_italic--large___fYSwX{font-style:italic}.Text__ek-text_style_strike--large___q0PMX{text-decoration:line-through}.Text__ek-text_style_underline--large___sguGX{text-decoration:underline}.Text__ek-text_style_overline--large___V9ewl{text-decoration:overline}.Text__ek-text_lheight_default--large___QI3Ow{line-height:var(--pds-line-height)}.Text__ek-text_lheight_medium--large___dkKyS{line-height:1.25em}.Text__ek-text_lheight_large--large___LWOqd{line-height:1.5em}.Text__ek-text_wrap_normal--large___1Sfs7{white-space:normal}.Text__ek-text_wrap_nowrap--large___Ybix2{white-space:nowrap}.Text__ek-text_wrap_pre--large___w4GA2{white-space:pre}.Text__ek-text_wrap_pre-wrap--large___XNCfE{white-space:pre-wrap}.Text__ek-text_wrap_pre-line--large___IIQMy{white-space:pre-line}.Text__ek-text_wrap_break--large___TMJei{word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.Text__ek-text_wrap_ellipsis--large___eJt94{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Text__ek-text_wrap_two-line--large___wf8-X{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*2)}.Text__ek-text_wrap_two-line--large___wf8-X.Text__ek-text_lheight_medium___QrtcH{max-height:calc(1.25em*2)}.Text__ek-text_wrap_two-line--large___wf8-X.Text__ek-text_lheight_large___G5HaP{max-height:calc(1.5em*2)}.Text__ek-text_wrap_three-line--large___QM6Ob{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*3)}.Text__ek-text_wrap_three-line--large___QM6Ob.Text__ek-text_lheight_medium___QrtcH{max-height:calc(1.25em*3)}.Text__ek-text_wrap_three-line--large___QM6Ob.Text__ek-text_lheight_large___G5HaP{max-height:calc(1.5em*3)}.Text__ek-text_color_black-600--large___Owu7Q{color:var(--black-600)}.Text__ek-text_color_black-700--large___jRnbc{color:var(--black-700)}.Text__ek-text_color_black-800--large___PThcN{color:var(--black-800)}.Text__ek-text_color_black-900--large___n8LrJ{color:var(--black-900)}.Text__ek-text_color_blue-500--large___h7LoO{color:var(--blue-500)}.Text__ek-text_color_green-500--large___vV-gD{color:var(--green-500)}.Text__ek-text_color_green-700--large___56wkM{color:var(--green-700)}.Text__ek-text_color_green-800--large___KH2s5{color:var(--green-800)}.Text__ek-text_color_yellow-500--large___BGGYh{color:var(--yellow-500)}.Text__ek-text_color_orange-500--large___A3IlK{color:var(--orange-500)}.Text__ek-text_color_orange-900--large___JXJvc{color:var(--orange-900)}.Text__ek-text_color_red-500--large___DohkS{color:var(--red-500)}.Text__ek-text_color_red-900--large___BYzxn{color:var(--red-900)}.Text__ek-text_color_violet-500--large___BX9sY{color:var(--violet-500)}.Text__ek-text_color_white--large___fPDBy{color:var(--white)}}@media only screen and (min-width:1200px){.Text__ek-text_color_black-600--wide___EPhZb{color:var(--black-600)}.Text__ek-text_color_black-700--wide___Skgn1{color:var(--black-700)}.Text__ek-text_color_black-800--wide___4KAq8{color:var(--black-800)}.Text__ek-text_color_black-900--wide___O95o7{color:var(--black-900)}.Text__ek-text_color_blue-500--wide___1Qk4y{color:var(--blue-500)}.Text__ek-text_color_green-500--wide___gDhg2{color:var(--green-500)}.Text__ek-text_color_green-700--wide___xkvGD{color:var(--green-700)}.Text__ek-text_color_green-800--wide___6FDFy{color:var(--green-800)}.Text__ek-text_color_yellow-500--wide___2WOin{color:var(--yellow-500)}.Text__ek-text_color_orange-500--wide___ye0vt{color:var(--orange-500)}.Text__ek-text_color_orange-900--wide___PWGFH{color:var(--orange-900)}.Text__ek-text_color_red-500--wide___vXdZm{color:var(--red-500)}.Text__ek-text_color_red-900--wide___9S6GM{color:var(--red-900)}.Text__ek-text_color_violet-500--wide___vjkvO{color:var(--violet-500)}.Text__ek-text_color_white--wide___KBwe0{color:var(--white)}}@media only screen and (min-width:1400px){.Text__ek-text_color_black-600--huge___kX-rO{color:var(--black-600)}.Text__ek-text_color_black-700--huge___iT2UW{color:var(--black-700)}.Text__ek-text_color_black-800--huge___sXPSW{color:var(--black-800)}.Text__ek-text_color_black-900--huge___ufWB7{color:var(--black-900)}.Text__ek-text_color_blue-500--huge___VrBDq{color:var(--blue-500)}.Text__ek-text_color_green-500--huge___O5Wpa{color:var(--green-500)}.Text__ek-text_color_green-700--huge___IgnYm{color:var(--green-700)}.Text__ek-text_color_green-800--huge___V2JjF{color:var(--green-800)}.Text__ek-text_color_yellow-500--huge___6u99p{color:var(--yellow-500)}.Text__ek-text_color_orange-500--huge___eLSt9{color:var(--orange-500)}.Text__ek-text_color_orange-900--huge___ljHb4{color:var(--orange-900)}.Text__ek-text_color_red-500--huge___nEmHY{color:var(--red-500)}.Text__ek-text_color_red-900--huge___rMyDN{color:var(--red-900)}.Text__ek-text_color_violet-500--huge___Ufx-e{color:var(--violet-500)}.Text__ek-text_color_white--huge___pjee0{color:var(--white)}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
._3Trjq{display:inline;line-height:var(--pds-line-height)}.hPK83{display:inline}.EpkgL{display:none}._3fCio{font-size:0}.GeUFz{font-size:inherit}.IfSYo{font-size:var(--pds-font-size-small)}.snf--{font-size:var(--pds-font-size-default)}.R2ynx{font-size:var(--pds-font-size-big)}.RLQ4A{font-size:var(--pds-font-size-h1)}.OAv5u{font-size:var(--pds-font-size-h2)}.jF03G{font-size:var(--pds-font-size-h3)}.vj3pM{font-size:var(--pds-font-size-h4)}.aeJVe{font-size:var(--pds-font-size-h5)}.P9by2{font-size:var(--pds-font-size-h6)}.wrQRQ{font-weight:400}.pmZOp{font-weight:100}.vEbTA{font-weight:300}.gfDGa{font-weight:500}.F7Tdh{font-weight:700}.Llirb{font-weight:900}.gwkkx{display:block;text-align:left}.od97W{display:block;text-align:center}.PatyF{display:block;text-align:right}.WNRHD{display:block;text-align:justify}.BFQkO{vertical-align:baseline}.uoQE-{vertical-align:bottom}.wL4cB{vertical-align:middle}.oQuQV{vertical-align:sub}.GM270{vertical-align:super}.i3gPf{vertical-align:text-bottom}.Y-R3w{vertical-align:text-top}.NSQH0{vertical-align:top}.ioMWl{text-transform:none}.-nH9C{text-transform:capitalize}.pYEmk{text-transform:lowercase}.Ptm6g{text-transform:uppercase}.Y01G5{font-style:italic}.powM8{text-decoration:line-through}.ECUz1{text-decoration:underline}.E4jPq{text-decoration:overline}.ic9SB{line-height:var(--pds-line-height)}.QrtcH{line-height:1.25em}.G5HaP{line-height:1.5em}.vN11O{white-space:normal}.hJTsv{white-space:nowrap}.qtOKJ{white-space:pre}._55qRX{white-space:pre-wrap}.z-RVa{white-space:pre-line}.htldP{word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.aXB7S{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._7NHpZ{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*2)}._7NHpZ.QrtcH{max-height:calc(1.25em*2)}._7NHpZ.G5HaP{max-height:calc(1.5em*2)}.SCVcX{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*3)}.SCVcX.QrtcH{max-height:calc(1.25em*3)}.SCVcX.G5HaP{max-height:calc(1.5em*3)}.iX-v2{color:var(--black-600)}.ffgjE{color:var(--black-700)}.wMAjv{color:var(--black-800)}.ye2-Z{color:var(--black-900)}.Pmash{color:var(--blue-500)}._9JoFY{color:var(--green-500)}.NSmdF{color:var(--green-700)}.Aahxa{color:var(--green-800)}.D39Cr{color:var(--orange-500)}.etfhZ{color:var(--orange-900)}.uyrQ6{color:var(--red-500)}.yKkMR{color:var(--red-900)}.xrKUz{color:var(--violet-500)}.ooRRq{color:var(--white)}@media only screen and (min-width:480px){.tf5qK{display:inline}.QClAg{display:none}.iNBWs{font-size:0}.SleAe{font-size:inherit}.JLdX7{font-size:var(--pds-font-size-small)}.lpjy2{font-size:var(--pds-font-size-default)}.tyFZq{font-size:var(--pds-font-size-big)}.bTc9i{font-size:var(--pds-font-size-h1)}.fVsfH{font-size:var(--pds-font-size-h2)}._9bupj{font-size:var(--pds-font-size-h3)}.RLAjj{font-size:var(--pds-font-size-h4)}.MSeBt{font-size:var(--pds-font-size-h5)}.DGRDV{font-size:var(--pds-font-size-h6)}._7u9ww{font-weight:400}.f3E1Z{font-weight:100}.UgVat{font-weight:300}.GhR2r{font-weight:500}.fdZOu{font-weight:700}.Txf2-{font-weight:900}.MOcbA{display:block;text-align:left}.NDoRI{display:block;text-align:center}.ertsn{display:block;text-align:right}.VXEjp{display:block;text-align:justify}.NFaJ5{vertical-align:baseline}.n-ZM1{vertical-align:bottom}._1o-f9{vertical-align:middle}._7vrZ5{vertical-align:sub}._98wkH{vertical-align:super}.x6B2v{vertical-align:text-bottom}.LfpH0{vertical-align:text-top}.kBQTl{vertical-align:top}.lNIlb{text-transform:none}.wM1eM{text-transform:capitalize}.bjZhn{text-transform:lowercase}.QcGz5{text-transform:uppercase}.RLkz-{font-style:italic}._--sCr{text-decoration:line-through}.LXQS8{text-decoration:underline}.GNoIB{text-decoration:overline}._1W3d2{line-height:var(--pds-line-height)}.cZ7Yw{line-height:1.25em}.Q69Gt{line-height:1.5em}.OCeTY{white-space:normal}.feATc{white-space:nowrap}.VAue2{white-space:pre}.CrynB{white-space:pre-wrap}._2Zets{white-space:pre-line}.C6739{word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.V-dhX{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fqP29{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*2)}.fqP29.QrtcH{max-height:calc(1.25em*2)}.fqP29.G5HaP{max-height:calc(1.5em*2)}.Yh-Xv{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*3)}.Yh-Xv.QrtcH{max-height:calc(1.25em*3)}.Yh-Xv.G5HaP{max-height:calc(1.5em*3)}._4qrki{color:var(--black-600)}.VeJpW{color:var(--black-700)}._0tsz8{color:var(--black-800)}.Tjehi{color:var(--black-900)}.myNLi{color:var(--blue-500)}.A3k3K{color:var(--green-500)}.QEems{color:var(--green-700)}.x1p-D{color:var(--green-800)}.FCzuX{color:var(--orange-500)}.zjEFG{color:var(--orange-900)}.hN5go{color:var(--red-500)}._2MQqu{color:var(--red-900)}.GkpkA{color:var(--violet-500)}.aq8Bj{color:var(--white)}}@media only screen and (min-width:768px){.q29UB{display:inline}.pS5WL{display:none}.zmMXI{font-size:0}.NyD6y{font-size:inherit}._85MSY{font-size:var(--pds-font-size-small)}.NMxaK{font-size:var(--pds-font-size-default)}.Ua-Zk{font-size:var(--pds-font-size-big)}.thuyZ{font-size:var(--pds-font-size-h1)}.ESQoF{font-size:var(--pds-font-size-h2)}.KZmg9{font-size:var(--pds-font-size-h3)}.ECj9y{font-size:var(--pds-font-size-h4)}._2Egnj{font-size:var(--pds-font-size-h5)}.EiSb9{font-size:var(--pds-font-size-h6)}.tB-Ch{font-weight:400}.s8W0s{font-weight:100}.ltoWf{font-weight:300}._6tPBW{font-weight:500}.rpqZ0{font-weight:700}.GSyAT{font-weight:900}.P1t-C{display:block;text-align:left}.EyFNY{display:block;text-align:center}.pv76v{display:block;text-align:right}.BPD5C{display:block;text-align:justify}.uudr0{vertical-align:baseline}.PllPd{vertical-align:bottom}.Ik6u5{vertical-align:middle}.utVwf{vertical-align:sub}.BbzMP{vertical-align:super}.h-L8G{vertical-align:text-bottom}._2Sxc3{vertical-align:text-top}.oC57Z{vertical-align:top}.VjPVc{text-transform:none}.D2Sqd{text-transform:capitalize}.hjkKi{text-transform:lowercase}.AEFL3{text-transform:uppercase}.yckf-{font-style:italic}.Fc1Ji{text-decoration:line-through}.d-Mrs{text-decoration:underline}.cBafd{text-decoration:overline}.UHfd4{line-height:var(--pds-line-height)}.K2JnS{line-height:1.25em}._7jFRq{line-height:1.5em}.tiKih{white-space:normal}.K2M6e{white-space:nowrap}.TpcHG{white-space:pre}.Z6C0k{white-space:pre-wrap}.Ajn6a{white-space:pre-line}.QtGGg{word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.NyLo3{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.R6ga0{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*2)}.R6ga0.QrtcH{max-height:calc(1.25em*2)}.R6ga0.G5HaP{max-height:calc(1.5em*2)}.E2iMw{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*3)}.E2iMw.QrtcH{max-height:calc(1.25em*3)}.E2iMw.G5HaP{max-height:calc(1.5em*3)}.XfNNR{color:var(--black-600)}.tmDDJ{color:var(--black-700)}.dKLRj{color:var(--black-800)}.D7nHh{color:var(--black-900)}._807O7{color:var(--blue-500)}.EDZ-F{color:var(--green-500)}.-GH--{color:var(--green-700)}.EeAPc{color:var(--green-800)}._9gjQH{color:var(--orange-500)}.LUWSS{color:var(--orange-900)}.HROpc{color:var(--red-500)}.k9d1g{color:var(--red-900)}.FYY0k{color:var(--violet-500)}.K2HII{color:var(--white)}}@media only screen and (min-width:960px){.Qr7da{display:inline}._8q9MY{display:none}.lhd15{font-size:0}.JRmGP{font-size:inherit}.gGYoF{font-size:var(--pds-font-size-small)}.f8ZGq{font-size:var(--pds-font-size-default)}.kXeDX{font-size:var(--pds-font-size-big)}.FnCNG{font-size:var(--pds-font-size-h1)}.ud3vr{font-size:var(--pds-font-size-h2)}.cQwu6{font-size:var(--pds-font-size-h3)}.AeJ7R{font-size:var(--pds-font-size-h4)}._5AP56{font-size:var(--pds-font-size-h5)}.nXKYk{font-size:var(--pds-font-size-h6)}.-KZf3{font-weight:400}.OtiPU{font-weight:100}.Q876R{font-weight:300}.ERwtC{font-weight:500}.-vQew{font-weight:700}.JfoJ2{font-weight:900}.eDuu-{display:block;text-align:left}._0oej2{display:block;text-align:center}.IruXn{display:block;text-align:right}.eLevv{display:block;text-align:justify}.MwBxj{vertical-align:baseline}.u2HmC{vertical-align:bottom}._9wTU0{vertical-align:middle}.Vrz29{vertical-align:sub}.Kr93W{vertical-align:super}._6eXdU{vertical-align:text-bottom}.B3Fwm{vertical-align:text-top}.cA4GU{vertical-align:top}.cXpb9{text-transform:none}.pHMUF{text-transform:capitalize}.DVgu-{text-transform:lowercase}._35kha{text-transform:uppercase}.fYSwX{font-style:italic}.q0PMX{text-decoration:line-through}.sguGX{text-decoration:underline}.V9ewl{text-decoration:overline}.QI3Ow{line-height:var(--pds-line-height)}.dkKyS{line-height:1.25em}.LWOqd{line-height:1.5em}._1Sfs7{white-space:normal}.Ybix2{white-space:nowrap}.w4GA2{white-space:pre}.XNCfE{white-space:pre-wrap}.IIQMy{white-space:pre-line}.TMJei{word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.eJt94{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wf8-X{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*2)}.wf8-X.QrtcH{max-height:calc(1.25em*2)}.wf8-X.G5HaP{max-height:calc(1.5em*2)}.QM6Ob{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*3)}.QM6Ob.QrtcH{max-height:calc(1.25em*3)}.QM6Ob.G5HaP{max-height:calc(1.5em*3)}.Owu7Q{color:var(--black-600)}.jRnbc{color:var(--black-700)}.PThcN{color:var(--black-800)}.n8LrJ{color:var(--black-900)}.h7LoO{color:var(--blue-500)}.vV-gD{color:var(--green-500)}._56wkM{color:var(--green-700)}.KH2s5{color:var(--green-800)}.A3IlK{color:var(--orange-500)}.JXJvc{color:var(--orange-900)}.DohkS{color:var(--red-500)}.BYzxn{color:var(--red-900)}.BX9sY{color:var(--violet-500)}.fPDBy{color:var(--white)}}@media only screen and (min-width:1200px){.EPhZb{color:var(--black-600)}.Skgn1{color:var(--black-700)}._4KAq8{color:var(--black-800)}.O95o7{color:var(--black-900)}._1Qk4y{color:var(--blue-500)}.gDhg2{color:var(--green-500)}.xkvGD{color:var(--green-700)}._6FDFy{color:var(--green-800)}.ye0vt{color:var(--orange-500)}.PWGFH{color:var(--orange-900)}.vXdZm{color:var(--red-500)}._9S6GM{color:var(--red-900)}.vjkvO{color:var(--violet-500)}.KBwe0{color:var(--white)}}@media only screen and (min-width:1400px){.kX-rO{color:var(--black-600)}.iT2UW{color:var(--black-700)}.sXPSW{color:var(--black-800)}.ufWB7{color:var(--black-900)}.VrBDq{color:var(--blue-500)}.O5Wpa{color:var(--green-500)}.IgnYm{color:var(--green-700)}.V2JjF{color:var(--green-800)}.eLSt9{color:var(--orange-500)}.ljHb4{color:var(--orange-900)}.nEmHY{color:var(--red-500)}.rMyDN{color:var(--red-900)}.Ufx-e{color:var(--violet-500)}.pjee0{color:var(--white)}}
|
|
1
|
+
._3Trjq{display:inline;line-height:var(--pds-line-height)}.hPK83{display:inline}.EpkgL{display:none}._3fCio{font-size:0}.GeUFz{font-size:inherit}.IfSYo{font-size:var(--pds-font-size-small)}.snf--{font-size:var(--pds-font-size-default)}.R2ynx{font-size:var(--pds-font-size-big)}.RLQ4A{font-size:var(--pds-font-size-h1)}.OAv5u{font-size:var(--pds-font-size-h2)}.jF03G{font-size:var(--pds-font-size-h3)}.vj3pM{font-size:var(--pds-font-size-h4)}.aeJVe{font-size:var(--pds-font-size-h5)}.P9by2{font-size:var(--pds-font-size-h6)}.wrQRQ{font-weight:400}.pmZOp{font-weight:100}.vEbTA{font-weight:300}.gfDGa{font-weight:500}.F7Tdh{font-weight:700}.Llirb{font-weight:900}.gwkkx{display:block;text-align:left}.od97W{display:block;text-align:center}.PatyF{display:block;text-align:right}.WNRHD{display:block;text-align:justify}.BFQkO{vertical-align:baseline}.uoQE-{vertical-align:bottom}.wL4cB{vertical-align:middle}.oQuQV{vertical-align:sub}.GM270{vertical-align:super}.i3gPf{vertical-align:text-bottom}.Y-R3w{vertical-align:text-top}.NSQH0{vertical-align:top}.ioMWl{text-transform:none}.-nH9C{text-transform:capitalize}.pYEmk{text-transform:lowercase}.Ptm6g{text-transform:uppercase}.Y01G5{font-style:italic}.powM8{text-decoration:line-through}.ECUz1{text-decoration:underline}.E4jPq{text-decoration:overline}.ic9SB{line-height:var(--pds-line-height)}.QrtcH{line-height:1.25em}.G5HaP{line-height:1.5em}.vN11O{white-space:normal}.hJTsv{white-space:nowrap}.qtOKJ{white-space:pre}._55qRX{white-space:pre-wrap}.z-RVa{white-space:pre-line}.htldP{word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.aXB7S{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._7NHpZ{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*2)}._7NHpZ.QrtcH{max-height:calc(1.25em*2)}._7NHpZ.G5HaP{max-height:calc(1.5em*2)}.SCVcX{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*3)}.SCVcX.QrtcH{max-height:calc(1.25em*3)}.SCVcX.G5HaP{max-height:calc(1.5em*3)}.iX-v2{color:var(--black-600)}.ffgjE{color:var(--black-700)}.wMAjv{color:var(--black-800)}.ye2-Z{color:var(--black-900)}.Pmash{color:var(--blue-500)}._9JoFY{color:var(--green-500)}.NSmdF{color:var(--green-700)}.Aahxa{color:var(--green-800)}._7I4ks{color:var(--yellow-500)}.D39Cr{color:var(--orange-500)}.etfhZ{color:var(--orange-900)}.uyrQ6{color:var(--red-500)}.yKkMR{color:var(--red-900)}.xrKUz{color:var(--violet-500)}.ooRRq{color:var(--white)}@media only screen and (min-width:480px){.tf5qK{display:inline}.QClAg{display:none}.iNBWs{font-size:0}.SleAe{font-size:inherit}.JLdX7{font-size:var(--pds-font-size-small)}.lpjy2{font-size:var(--pds-font-size-default)}.tyFZq{font-size:var(--pds-font-size-big)}.bTc9i{font-size:var(--pds-font-size-h1)}.fVsfH{font-size:var(--pds-font-size-h2)}._9bupj{font-size:var(--pds-font-size-h3)}.RLAjj{font-size:var(--pds-font-size-h4)}.MSeBt{font-size:var(--pds-font-size-h5)}.DGRDV{font-size:var(--pds-font-size-h6)}._7u9ww{font-weight:400}.f3E1Z{font-weight:100}.UgVat{font-weight:300}.GhR2r{font-weight:500}.fdZOu{font-weight:700}.Txf2-{font-weight:900}.MOcbA{display:block;text-align:left}.NDoRI{display:block;text-align:center}.ertsn{display:block;text-align:right}.VXEjp{display:block;text-align:justify}.NFaJ5{vertical-align:baseline}.n-ZM1{vertical-align:bottom}._1o-f9{vertical-align:middle}._7vrZ5{vertical-align:sub}._98wkH{vertical-align:super}.x6B2v{vertical-align:text-bottom}.LfpH0{vertical-align:text-top}.kBQTl{vertical-align:top}.lNIlb{text-transform:none}.wM1eM{text-transform:capitalize}.bjZhn{text-transform:lowercase}.QcGz5{text-transform:uppercase}.RLkz-{font-style:italic}._--sCr{text-decoration:line-through}.LXQS8{text-decoration:underline}.GNoIB{text-decoration:overline}._1W3d2{line-height:var(--pds-line-height)}.cZ7Yw{line-height:1.25em}.Q69Gt{line-height:1.5em}.OCeTY{white-space:normal}.feATc{white-space:nowrap}.VAue2{white-space:pre}.CrynB{white-space:pre-wrap}._2Zets{white-space:pre-line}.C6739{word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.V-dhX{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.fqP29{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*2)}.fqP29.QrtcH{max-height:calc(1.25em*2)}.fqP29.G5HaP{max-height:calc(1.5em*2)}.Yh-Xv{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*3)}.Yh-Xv.QrtcH{max-height:calc(1.25em*3)}.Yh-Xv.G5HaP{max-height:calc(1.5em*3)}._4qrki{color:var(--black-600)}.VeJpW{color:var(--black-700)}._0tsz8{color:var(--black-800)}.Tjehi{color:var(--black-900)}.myNLi{color:var(--blue-500)}.A3k3K{color:var(--green-500)}.QEems{color:var(--green-700)}.x1p-D{color:var(--green-800)}.XFBi-{color:var(--yellow-500)}.FCzuX{color:var(--orange-500)}.zjEFG{color:var(--orange-900)}.hN5go{color:var(--red-500)}._2MQqu{color:var(--red-900)}.GkpkA{color:var(--violet-500)}.aq8Bj{color:var(--white)}}@media only screen and (min-width:768px){.q29UB{display:inline}.pS5WL{display:none}.zmMXI{font-size:0}.NyD6y{font-size:inherit}._85MSY{font-size:var(--pds-font-size-small)}.NMxaK{font-size:var(--pds-font-size-default)}.Ua-Zk{font-size:var(--pds-font-size-big)}.thuyZ{font-size:var(--pds-font-size-h1)}.ESQoF{font-size:var(--pds-font-size-h2)}.KZmg9{font-size:var(--pds-font-size-h3)}.ECj9y{font-size:var(--pds-font-size-h4)}._2Egnj{font-size:var(--pds-font-size-h5)}.EiSb9{font-size:var(--pds-font-size-h6)}.tB-Ch{font-weight:400}.s8W0s{font-weight:100}.ltoWf{font-weight:300}._6tPBW{font-weight:500}.rpqZ0{font-weight:700}.GSyAT{font-weight:900}.P1t-C{display:block;text-align:left}.EyFNY{display:block;text-align:center}.pv76v{display:block;text-align:right}.BPD5C{display:block;text-align:justify}.uudr0{vertical-align:baseline}.PllPd{vertical-align:bottom}.Ik6u5{vertical-align:middle}.utVwf{vertical-align:sub}.BbzMP{vertical-align:super}.h-L8G{vertical-align:text-bottom}._2Sxc3{vertical-align:text-top}.oC57Z{vertical-align:top}.VjPVc{text-transform:none}.D2Sqd{text-transform:capitalize}.hjkKi{text-transform:lowercase}.AEFL3{text-transform:uppercase}.yckf-{font-style:italic}.Fc1Ji{text-decoration:line-through}.d-Mrs{text-decoration:underline}.cBafd{text-decoration:overline}.UHfd4{line-height:var(--pds-line-height)}.K2JnS{line-height:1.25em}._7jFRq{line-height:1.5em}.tiKih{white-space:normal}.K2M6e{white-space:nowrap}.TpcHG{white-space:pre}.Z6C0k{white-space:pre-wrap}.Ajn6a{white-space:pre-line}.QtGGg{word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.NyLo3{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.R6ga0{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*2)}.R6ga0.QrtcH{max-height:calc(1.25em*2)}.R6ga0.G5HaP{max-height:calc(1.5em*2)}.E2iMw{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*3)}.E2iMw.QrtcH{max-height:calc(1.25em*3)}.E2iMw.G5HaP{max-height:calc(1.5em*3)}.XfNNR{color:var(--black-600)}.tmDDJ{color:var(--black-700)}.dKLRj{color:var(--black-800)}.D7nHh{color:var(--black-900)}._807O7{color:var(--blue-500)}.EDZ-F{color:var(--green-500)}.-GH--{color:var(--green-700)}.EeAPc{color:var(--green-800)}.I42SE{color:var(--yellow-500)}._9gjQH{color:var(--orange-500)}.LUWSS{color:var(--orange-900)}.HROpc{color:var(--red-500)}.k9d1g{color:var(--red-900)}.FYY0k{color:var(--violet-500)}.K2HII{color:var(--white)}}@media only screen and (min-width:960px){.Qr7da{display:inline}._8q9MY{display:none}.lhd15{font-size:0}.JRmGP{font-size:inherit}.gGYoF{font-size:var(--pds-font-size-small)}.f8ZGq{font-size:var(--pds-font-size-default)}.kXeDX{font-size:var(--pds-font-size-big)}.FnCNG{font-size:var(--pds-font-size-h1)}.ud3vr{font-size:var(--pds-font-size-h2)}.cQwu6{font-size:var(--pds-font-size-h3)}.AeJ7R{font-size:var(--pds-font-size-h4)}._5AP56{font-size:var(--pds-font-size-h5)}.nXKYk{font-size:var(--pds-font-size-h6)}.-KZf3{font-weight:400}.OtiPU{font-weight:100}.Q876R{font-weight:300}.ERwtC{font-weight:500}.-vQew{font-weight:700}.JfoJ2{font-weight:900}.eDuu-{display:block;text-align:left}._0oej2{display:block;text-align:center}.IruXn{display:block;text-align:right}.eLevv{display:block;text-align:justify}.MwBxj{vertical-align:baseline}.u2HmC{vertical-align:bottom}._9wTU0{vertical-align:middle}.Vrz29{vertical-align:sub}.Kr93W{vertical-align:super}._6eXdU{vertical-align:text-bottom}.B3Fwm{vertical-align:text-top}.cA4GU{vertical-align:top}.cXpb9{text-transform:none}.pHMUF{text-transform:capitalize}.DVgu-{text-transform:lowercase}._35kha{text-transform:uppercase}.fYSwX{font-style:italic}.q0PMX{text-decoration:line-through}.sguGX{text-decoration:underline}.V9ewl{text-decoration:overline}.QI3Ow{line-height:var(--pds-line-height)}.dkKyS{line-height:1.25em}.LWOqd{line-height:1.5em}._1Sfs7{white-space:normal}.Ybix2{white-space:nowrap}.w4GA2{white-space:pre}.XNCfE{white-space:pre-wrap}.IIQMy{white-space:pre-line}.TMJei{word-wrap:break-word;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.eJt94{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wf8-X{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*2)}.wf8-X.QrtcH{max-height:calc(1.25em*2)}.wf8-X.G5HaP{max-height:calc(1.5em*2)}.QM6Ob{display:block;overflow:hidden;max-height:calc(var(--pds-line-height)*3)}.QM6Ob.QrtcH{max-height:calc(1.25em*3)}.QM6Ob.G5HaP{max-height:calc(1.5em*3)}.Owu7Q{color:var(--black-600)}.jRnbc{color:var(--black-700)}.PThcN{color:var(--black-800)}.n8LrJ{color:var(--black-900)}.h7LoO{color:var(--blue-500)}.vV-gD{color:var(--green-500)}._56wkM{color:var(--green-700)}.KH2s5{color:var(--green-800)}.BGGYh{color:var(--yellow-500)}.A3IlK{color:var(--orange-500)}.JXJvc{color:var(--orange-900)}.DohkS{color:var(--red-500)}.BYzxn{color:var(--red-900)}.BX9sY{color:var(--violet-500)}.fPDBy{color:var(--white)}}@media only screen and (min-width:1200px){.EPhZb{color:var(--black-600)}.Skgn1{color:var(--black-700)}._4KAq8{color:var(--black-800)}.O95o7{color:var(--black-900)}._1Qk4y{color:var(--blue-500)}.gDhg2{color:var(--green-500)}.xkvGD{color:var(--green-700)}._6FDFy{color:var(--green-800)}._2WOin{color:var(--yellow-500)}.ye0vt{color:var(--orange-500)}.PWGFH{color:var(--orange-900)}.vXdZm{color:var(--red-500)}._9S6GM{color:var(--red-900)}.vjkvO{color:var(--violet-500)}.KBwe0{color:var(--white)}}@media only screen and (min-width:1400px){.kX-rO{color:var(--black-600)}.iT2UW{color:var(--black-700)}.sXPSW{color:var(--black-800)}.ufWB7{color:var(--black-900)}.VrBDq{color:var(--blue-500)}.O5Wpa{color:var(--green-500)}.IgnYm{color:var(--green-700)}.V2JjF{color:var(--green-800)}._6u99p{color:var(--yellow-500)}.eLSt9{color:var(--orange-500)}.ljHb4{color:var(--orange-900)}.nEmHY{color:var(--red-500)}.rMyDN{color:var(--red-900)}.Ufx-e{color:var(--violet-500)}.pjee0{color:var(--white)}}
|
package/Text/package.json
CHANGED
package/TextEmoji/package.json
CHANGED
package/Tooltip/package.json
CHANGED
package/Tumbler/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prom-ui/core",
|
|
3
3
|
"author": "e.marchenko",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.101",
|
|
5
5
|
"description": "core ui blocks",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "jest",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"optional": true
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "1638fa16fdb8ccf0aea2e5378df855a79600a626"
|
|
67
67
|
}
|