creactive 0.0.105 → 0.0.106
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/classic.js +3 -3
- package/build/components/gradient/components/index.d.ts +2 -0
- package/build/components/gradient/components/linear.d.ts +2 -0
- package/build/components/gradient/components/stop.d.ts +2 -0
- package/build/components/gradient/constants/direction.d.ts +4 -0
- package/build/components/gradient/constants/index.d.ts +1 -0
- package/build/components/gradient/gradient.d.ts +2 -0
- package/build/components/gradient/gradient.types.d.ts +67 -0
- package/build/components/gradient/index.d.ts +2 -0
- package/build/components/view/view.types.d.ts +3 -3
- package/build/constants/fraction.d.ts +3 -0
- package/build/default.js +1 -1
- package/build/helpers/{opacity/opacity.d.ts → fraction/fraction.d.ts} +1 -1
- package/build/helpers/fraction/index.d.ts +1 -0
- package/build/helpers/index.d.ts +1 -1
- package/build/index.d.ts +4 -5
- package/build/types/color.types.d.ts +1 -1
- package/package.json +5 -1
- package/build/helpers/opacity/index.d.ts +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { GradientDirection } from './direction';
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import type { Fraction } from '../../helpers';
|
|
2
|
+
import type { Color } from '../../types';
|
|
3
|
+
import type { FunctionComponent, ReactElement } from 'react';
|
|
4
|
+
import type { GradientDirection } from './constants';
|
|
5
|
+
/**
|
|
6
|
+
* Gradient stop component properties.
|
|
7
|
+
* Describes possible gradient stop component customization.
|
|
8
|
+
* @see Gradient.Stop
|
|
9
|
+
*/
|
|
10
|
+
export interface StopProps {
|
|
11
|
+
/**
|
|
12
|
+
* Should be used to control gradient stop offset.
|
|
13
|
+
* @see Fraction
|
|
14
|
+
* @default undefined
|
|
15
|
+
*/
|
|
16
|
+
offset: Fraction;
|
|
17
|
+
/**
|
|
18
|
+
* Allows to control gradient stop color.
|
|
19
|
+
* @see Color
|
|
20
|
+
* @default undefined
|
|
21
|
+
*/
|
|
22
|
+
color: Color;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Gradient stop component.
|
|
26
|
+
* Should be used as a child of gradient component.
|
|
27
|
+
* @see Gradient.Stop
|
|
28
|
+
*/
|
|
29
|
+
export type StopComponent = FunctionComponent<StopProps>;
|
|
30
|
+
/**
|
|
31
|
+
* Linear gradient component properties.
|
|
32
|
+
* Describes possible gradient component customization.
|
|
33
|
+
* @see Gradient.Linear
|
|
34
|
+
*/
|
|
35
|
+
export interface GradientLinearProps {
|
|
36
|
+
/**
|
|
37
|
+
* One of supported gradient directions.
|
|
38
|
+
* @see Gradient.Direction
|
|
39
|
+
* @default Gradient.Direction.BOTTOM
|
|
40
|
+
*/
|
|
41
|
+
direction?: GradientDirection;
|
|
42
|
+
/**
|
|
43
|
+
* Gradient children.
|
|
44
|
+
* @see Gradient.Stop
|
|
45
|
+
* @default undefined
|
|
46
|
+
*/
|
|
47
|
+
children: Array<ReactElement>;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Linear gradient component.
|
|
51
|
+
* Allows to render linear gradient.
|
|
52
|
+
* Provides access to direction constants.
|
|
53
|
+
* @see Gradient.Linear
|
|
54
|
+
* @see Gradient.Direction
|
|
55
|
+
*/
|
|
56
|
+
export type GradientLinearComponent = FunctionComponent<GradientLinearProps> & {
|
|
57
|
+
Direction: Record<keyof typeof GradientDirection, GradientDirection>;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* Gradient object providing access to components and constants.
|
|
61
|
+
* @see Gradient.Linear
|
|
62
|
+
* @see Gradient.Stop
|
|
63
|
+
*/
|
|
64
|
+
export type GradientObject = {
|
|
65
|
+
Linear: GradientLinearComponent;
|
|
66
|
+
Stop: StopComponent;
|
|
67
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { Fraction, Position, PositionValue, Size, SizeValue } from '../../helpers';
|
|
2
2
|
import type { Color } from '../../types';
|
|
3
3
|
import type { FunctionComponent, PropsWithChildren } from 'react';
|
|
4
4
|
import type { ViewAlignContent, ViewAlignItems, ViewAlignSelf, ViewBackgroundColor, ViewBorderColor, ViewBorderRadius, ViewBorderWidth, ViewBoxShadow, ViewFlexDirection, ViewJustifyContent, ViewOverflow, ViewPosition, ViewSpacing, ViewTag } from './constants';
|
|
@@ -49,10 +49,10 @@ export interface ViewProps extends PropsWithChildren {
|
|
|
49
49
|
/**
|
|
50
50
|
* View opacity.
|
|
51
51
|
* Controls the transparency of the view.
|
|
52
|
-
* @see
|
|
52
|
+
* @see Fraction
|
|
53
53
|
* @default undefined
|
|
54
54
|
*/
|
|
55
|
-
opacity?:
|
|
55
|
+
opacity?: Fraction;
|
|
56
56
|
/**
|
|
57
57
|
* View overflow behavior.
|
|
58
58
|
* Controls how children are measured and displayed.
|
package/build/default.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see default.js.LICENSE.txt */
|
|
2
|
-
!function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o(require("react-native"),require("react"),require("@emotion/styled")):"function"==typeof define&&define.amd?define("creactive",["react-native","react","@emotion/styled"],o):"object"==typeof exports?exports.creactive=o(require("react-native"),require("react"),require("@emotion/styled")):e.creactive=o(e["react-native"],e.react,e["@emotion/styled"])}(this,((e,o,r)=>(()=>{"use strict";var n={661:(e,o,r)=>{var n;function t(e){return t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},t(e)}function i(e,o,r){return(o=function(e){var o=function(e){if("object"!=t(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=t(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==t(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}r.d(o,{SS:()=>s,TP:()=>m,sV:()=>B,LN:()=>g,PI:()=>y,nO:()=>X,r7:()=>a,k8:()=>c,rq:()=>d,lF:()=>h,Wh:()=>p});var a=function(e){return e[e.TRANSPARENT=0]="TRANSPARENT",e[e.BASE_100=1]="BASE_100",e[e.BASE_200=2]="BASE_200",e[e.BASE_300=3]="BASE_300",e[e.BASE_400=4]="BASE_400",e[e.BASE_500=5]="BASE_500",e[e.BASE_600=6]="BASE_600",e[e.BASE_700=7]="BASE_700",e[e.BASE_800=8]="BASE_800",e[e.BASE_900=9]="BASE_900",e[e.INVERSE_100=10]="INVERSE_100",e[e.INVERSE_200=11]="INVERSE_200",e[e.INVERSE_300=12]="INVERSE_300",e[e.INVERSE_400=13]="INVERSE_400",e[e.INVERSE_500=14]="INVERSE_500",e[e.INVERSE_600=15]="INVERSE_600",e[e.INVERSE_700=16]="INVERSE_700",e[e.INVERSE_800=17]="INVERSE_800",e[e.INVERSE_900=18]="INVERSE_900",e}({}),s=(i(i(i(i(i(i(i(i(i(i(n={},a.BASE_100,"colorForegroundBase100"),a.BASE_200,"colorForegroundBase200"),a.BASE_300,"colorForegroundBase300"),a.BASE_400,"colorForegroundBase400"),a.BASE_500,"colorForegroundBase500"),a.BASE_600,"colorForegroundBase600"),a.BASE_700,"colorForegroundBase700"),a.BASE_800,"colorForegroundBase800"),a.BASE_900,"colorForegroundBase900"),a.INVERSE_100,"colorForegroundInverse100"),i(i(i(i(i(i(i(i(n,a.INVERSE_200,"colorForegroundInverse200"),a.INVERSE_300,"colorForegroundInverse300"),a.INVERSE_400,"colorForegroundInverse400"),a.INVERSE_500,"colorForegroundInverse500"),a.INVERSE_600,"colorForegroundInverse600"),a.INVERSE_700,"colorForegroundInverse700"),a.INVERSE_800,"colorForegroundInverse800"),a.INVERSE_900,"colorForegroundInverse900"));function l(e){return l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},l(e)}function u(e,o,r){return(o=function(e){var o=function(e){if("object"!=l(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=l(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==l(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var d=function(e){return e[e.THIN=0]="THIN",e[e.EXTRA_LIGHT=1]="EXTRA_LIGHT",e[e.LIGHT=2]="LIGHT",e[e.REGULAR=3]="REGULAR",e[e.MEDIUM=4]="MEDIUM",e[e.SEMIBOLD=5]="SEMIBOLD",e[e.BOLD=6]="BOLD",e[e.EXTRA_BOLD=7]="EXTRA_BOLD",e[e.BLACK=8]="BLACK",e}({}),g=u(u(u(u(u(u(u(u(u({},d.THIN,"fontWeightBaseThin"),d.EXTRA_LIGHT,"fontWeightBaseExtraLight"),d.LIGHT,"fontWeightBaseLight"),d.REGULAR,"fontWeightBaseRegular"),d.MEDIUM,"fontWeightBaseMedium"),d.SEMIBOLD,"fontWeightBaseSemiBold"),d.BOLD,"fontWeightBaseBold"),d.EXTRA_BOLD,"fontWeightBaseExtraBold"),d.BLACK,"fontWeightBaseBlack"),c=function(e){return e[e.X2S=0]="X2S",e[e.XS=1]="XS",e[e.SM=2]="SM",e[e.MD=3]="MD",e[e.LG=4]="LG",e[e.XL=5]="XL",e[e.X2L=6]="X2L",e[e.X3L=7]="X3L",e[e.X4L=8]="X4L",e[e.X5L=9]="X5L",e}({}),B=u(u(u(u(u(u(u(u(u(u({},c.X2S,"fontSizeBaseX2S"),c.XS,"fontSizeBaseXS"),c.SM,"fontSizeBaseSM"),c.MD,"fontSizeBaseMD"),c.LG,"fontSizeBaseLG"),c.XL,"fontSizeBaseXL"),c.X2L,"fontSizeBaseX2L"),c.X3L,"fontSizeBaseX3L"),c.X4L,"fontSizeBaseX4L"),c.X5L,"fontSizeBaseX5L");function f(e){return f="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f(e)}function S(e,o,r){return(o=function(e){var o=function(e){if("object"!=f(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=f(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==f(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var p=function(e){return e[e.H1=0]="H1",e[e.H2=1]="H2",e[e.H3=2]="H3",e[e.H4=3]="H4",e[e.H5=4]="H5",e[e.H6=5]="H6",e[e.P=6]="P",e[e.SPAN=7]="SPAN",e}({}),m=S(S(S(S(S(S(S(S({},p.H1,"h1"),p.H2,"h2"),p.H3,"h3"),p.H4,"h4"),p.H5,"h5"),p.H6,"h6"),p.P,"p"),p.SPAN,"span");function L(e){return L="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},L(e)}function b(e,o,r){return(o=function(e){var o=function(e){if("object"!=L(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=L(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==L(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var X=function(e){return e[e.LEFT=0]="LEFT",e[e.CENTER=1]="CENTER",e[e.RIGHT=2]="RIGHT",e}({}),h=function(e){return e[e.NONE=0]="NONE",e[e.TIGHT=1]="TIGHT",e[e.SNUG=2]="SNUG",e[e.NORMAL=3]="NORMAL",e[e.RELAXED=4]="RELAXED",e[e.LOOSE=5]="LOOSE",e}({}),y=b(b(b(b(b(b({},h.NONE,"lineHeightBaseNone"),h.TIGHT,"lineHeightBaseTight"),h.SNUG,"lineHeightBaseSnug"),h.NORMAL,"lineHeightBaseNormal"),h.RELAXED,"lineHeightBaseRelaxed"),h.LOOSE,"lineHeightBaseLoose")},231:(e,o,r)=>{r.d(o,{Fu:()=>b,yx:()=>l,ZZ:()=>s,yg:()=>B,jh:()=>f,EM:()=>c,LG:()=>g,ts:()=>d,EO:()=>u,iW:()=>X});var n=r(695),t=r(389),i=r(661),a=t.StyleSheet.create({transparent:{color:"transparent"}}),s=function(e){var o=(0,n.JU)();return e===i.r7.TRANSPARENT?a.transparent:o[i.SS[e]]},l=function(e){var o=(0,n.wR)();return e===i.r7.TRANSPARENT?"transparent":o[i.SS[e]]},u=function(){return(0,n.JU)().fontFamilyBase},d=function(){return(0,n.wR)().fontFamilyBase},g=function(e){return(0,n.JU)()[i.LN[e]]},c=function(e){return(0,n.wR)()[i.LN[e]]},B=function(e){return(0,n.JU)()[i.sV[e]]},f=function(e){return(0,n.wR)()[i.sV[e]]};function S(e){return S="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},S(e)}function p(e,o,r){return(o=function(e){var o=function(e){if("object"!=S(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=S(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==S(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var m=t.StyleSheet.create({textAlignLeft:{textAlign:"left"},textAlignCenter:{textAlign:"center"},textAlignRight:{textAlign:"right"}}),L=p(p(p({},i.nO.LEFT,m.textAlignLeft),i.nO.CENTER,m.textAlignCenter),i.nO.RIGHT,m.textAlignRight),b=function(e){return L[e]},X=function(e){return(0,n.wR)()[i.PI[e]]}},79:(e,o,r)=>{r.d(o,{A:()=>g});var n=r(389),t=r(661),i=new Map,a=function(e,o){var r=[e,o].join("-");if(i.has(r))return i.get(r);var t=n.StyleSheet.create({textLineHeight:{lineHeight:e*o}});return i.set(r,t),t},s=r(231),l=r(848),u=n.StyleSheet.create({default:{display:"inline",margin:0,padding:0,position:"static",listStyle:"none",borderStyle:"solid",boxSizing:"border-box",textDecoration:"none",whiteSpace:"pre-wrap",overflowWrap:"break-word",borderWidth:0}}),d=function(e){var o=e.align,r=void 0===o?t.nO.LEFT:o,i=e.fontWeight,d=void 0===i?t.rq.REGULAR:i,g=e.fontSize,c=void 0===g?t.k8.MD:g,B=e.lineHeight,f=void 0===B?t.lF.NORMAL:B,S=e.maxLines,p=e.color,m=void 0===p?t.r7.BASE_800:p,L=e.children;return(0,l.jsx)(n.Text,{style:[u.default,(0,s.Fu)(r),(0,s.EO)(),(0,s.LG)(d),(0,s.yg)(c),a((0,s.jh)(c),(0,s.iW)(f)),(0,s.ZZ)(m)],numberOfLines:S,children:L})};d.Tag=t.Wh,d.Align=t.nO,d.FontWeight=t.rq,d.FontSize=t.k8,d.LineHeight=t.lF,d.Color=t.r7;const g=d},54:(e,o,r)=>{r.d(o,{A:()=>p});var n,t=r(729),i=r.n(t),a=r(661);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(e,o,r){return(o=function(e){var o=function(e){if("object"!=s(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=s(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==s(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var u,d,g=l(l(l({},a.nO.LEFT,"left"),a.nO.CENTER,"center"),a.nO.RIGHT,"right"),c=i().span(n||(u=["\n display: ",";\n margin: 0;\n padding: 0;\n position: static;\n list-style: none;\n border-style: solid;\n box-sizing: border-box;\n text-decoration: none;\n white-space: pre-wrap;\n overflow: hidden;\n overflow-wrap: break-word;\n text-overflow: ellipsis;\n text-align: ",";\n font-family: ",";\n font-weight: ",";\n font-size: ","px;\n line-height: ","px;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: ",";\n color: ",";\n border-width: 0;\n"],d||(d=u.slice(0)),n=Object.freeze(Object.defineProperties(u,{raw:{value:Object.freeze(d)}}))),(function(e){return void 0===e.maxLines?"inline":"-webkit-box"}),(function(e){var o=e.align;return g[o]}),(function(e){return e.fontFamily}),(function(e){return e.fontWeight}),(function(e){return e.fontSize}),(function(e){return e.lineHeight}),(function(e){return e.maxLines}),(function(e){return e.color})),B=r(231),f=r(848),S=function(e){var o=e.tag,r=e.align,n=void 0===r?a.nO.LEFT:r,t=e.fontWeight,i=void 0===t?a.rq.REGULAR:t,s=e.fontSize,l=void 0===s?a.k8.MD:s,u=e.lineHeight,d=void 0===u?a.lF.NORMAL:u,g=e.maxLines,S=e.color,p=void 0===S?a.r7.BASE_800:S,m=e.children,L=(0,B.jh)(l),b=(0,B.iW)(d);return(0,f.jsx)(c,{as:a.TP[o],align:n,fontFamily:(0,B.ts)(),fontWeight:(0,B.EM)(i),fontSize:L,lineHeight:L*b,color:(0,B.yx)(p),maxLines:g,children:m})};S.Tag=a.Wh,S.Align=a.nO,S.FontWeight=a.rq,S.FontSize=a.k8,S.LineHeight=a.lF,S.Color=a.r7;const p=S},123:(e,o,r)=>{function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function t(e,o,r){return(o=function(e){var o=function(e){if("object"!=n(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=n(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==n(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}r.d(o,{l5:()=>Q,wu:()=>J,b8:()=>A,J2:()=>T,yQ:()=>c,ce:()=>d,kI:()=>a,Er:()=>l,Rw:()=>u,g9:()=>s,X1:()=>V,DK:()=>j,iq:()=>H,Dz:()=>G,mN:()=>U,Wk:()=>k,l2:()=>z,Wi:()=>O,CN:()=>C,th:()=>I,F5:()=>W,TI:()=>R,Vc:()=>v,uC:()=>g,s_:()=>i,lo:()=>w,uY:()=>M,b9:()=>F,Ie:()=>_,JT:()=>x,TL:()=>P,SQ:()=>q});var i=function(e){return e[e.SM=0]="SM",e[e.MD=1]="MD",e[e.LG=2]="LG",e}({}),a=t(t(t({},i.SM,"borderWidthBaseSM"),i.MD,"borderWidthBaseMD"),i.LG,"borderWidthBaseLG"),s=t(t(t({},i.SM,"borderWidthTopBaseSM"),i.MD,"borderWidthTopBaseMD"),i.LG,"borderWidthTopBaseLG"),l=t(t(t({},i.SM,"borderWidthLeftBaseSM"),i.MD,"borderWidthLeftBaseMD"),i.LG,"borderWidthLeftBaseLG"),u=t(t(t({},i.SM,"borderWidthRightBaseSM"),i.MD,"borderWidthRightBaseMD"),i.LG,"borderWidthRightBaseLG"),d=t(t(t({},i.SM,"borderWidthBottomBaseSM"),i.MD,"borderWidthBottomBaseMD"),i.LG,"borderWidthBottomBaseLG"),g=function(e){return e[e.XS=0]="XS",e[e.SM=1]="SM",e[e.MD=2]="MD",e[e.LG=3]="LG",e[e.XL=4]="XL",e[e.MAX=5]="MAX",e}({}),c=t(t(t(t(t({},g.XS,"borderRadiusBaseXS"),g.SM,"borderRadiusBaseSM"),g.MD,"borderRadiusBaseMD"),g.LG,"borderRadiusBaseLG"),g.XL,"borderRadiusBaseXL");function B(e){return B="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},B(e)}function f(e,o,r){return(o=function(e){var o=function(e){if("object"!=B(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=B(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==B(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var S,p,m,L,b,X,h,y,E,v=function(e){return e[e.BASE_100=0]="BASE_100",e[e.BASE_200=1]="BASE_200",e[e.BASE_300=2]="BASE_300",e[e.BASE_400=3]="BASE_400",e[e.BASE_500=4]="BASE_500",e[e.BASE_600=5]="BASE_600",e[e.BASE_700=6]="BASE_700",e[e.BASE_800=7]="BASE_800",e[e.BASE_900=8]="BASE_900",e}({}),T=f(f(f(f(f(f(f(f(f({},v.BASE_100,"colorBorderBase100"),v.BASE_200,"colorBorderBase200"),v.BASE_300,"colorBorderBase300"),v.BASE_400,"colorBorderBase400"),v.BASE_500,"colorBorderBase500"),v.BASE_600,"colorBorderBase600"),v.BASE_700,"colorBorderBase700"),v.BASE_800,"colorBorderBase800"),v.BASE_900,"colorBorderBase900"),R=function(e){return e[e.BASE_100=0]="BASE_100",e[e.BASE_200=1]="BASE_200",e[e.BASE_300=2]="BASE_300",e[e.BASE_400=3]="BASE_400",e[e.BASE_500=4]="BASE_500",e[e.BASE_600=5]="BASE_600",e[e.BASE_700=6]="BASE_700",e[e.BASE_800=7]="BASE_800",e[e.BASE_900=8]="BASE_900",e}({}),A=f(f(f(f(f(f(f(f(f({},R.BASE_100,"colorBackgroundBase100"),R.BASE_200,"colorBackgroundBase200"),R.BASE_300,"colorBackgroundBase300"),R.BASE_400,"colorBackgroundBase400"),R.BASE_500,"colorBackgroundBase500"),R.BASE_600,"colorBackgroundBase600"),R.BASE_700,"colorBackgroundBase700"),R.BASE_800,"colorBackgroundBase800"),R.BASE_900,"colorBackgroundBase900"),M=function(e){return e[e.COLUMN=0]="COLUMN",e[e.ROW=1]="ROW",e}({}),F=function(e){return e[e.FLEX_START=0]="FLEX_START",e[e.FLEX_END=1]="FLEX_END",e[e.CENTER=2]="CENTER",e[e.SPACE_BETWEEN=3]="SPACE_BETWEEN",e[e.SPACE_AROUND=4]="SPACE_AROUND",e[e.SPACE_EVENLY=5]="SPACE_EVENLY",e}({}),I=function(e){return e[e.FLEX_START=0]="FLEX_START",e[e.FLEX_END=1]="FLEX_END",e[e.CENTER=2]="CENTER",e[e.STRETCH=3]="STRETCH",e[e.BASELINE=4]="BASELINE",e}({}),W=function(e){return e[e.FLEX_START=0]="FLEX_START",e[e.FLEX_END=1]="FLEX_END",e[e.CENTER=2]="CENTER",e[e.STRETCH=3]="STRETCH",e[e.BASELINE=4]="BASELINE",e}({}),C=function(e){return e[e.FLEX_START=0]="FLEX_START",e[e.FLEX_END=1]="FLEX_END",e[e.CENTER=2]="CENTER",e[e.STRETCH=3]="STRETCH",e[e.SPACE_BETWEEN=4]="SPACE_BETWEEN",e[e.SPACE_AROUND=5]="SPACE_AROUND",e}({}),_=function(e){return e[e.VISIBLE=0]="VISIBLE",e[e.HIDDEN=1]="HIDDEN",e}({}),x=function(e){return e[e.RELATIVE=0]="RELATIVE",e[e.ABSOLUTE=1]="ABSOLUTE",e}({}),w=function(e){return e[e.SM=0]="SM",e[e.MD=1]="MD",e[e.LG=2]="LG",e}({});function D(e){return D="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},D(e)}function N(e,o,r){return(o=function(e){var o=function(e){if("object"!=D(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=D(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==D(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var P=function(e){return e[e.X6S=0]="X6S",e[e.X5S=1]="X5S",e[e.X4S=2]="X4S",e[e.X3S=3]="X3S",e[e.X2S=4]="X2S",e[e.XS=5]="XS",e[e.SM=6]="SM",e[e.MD=7]="MD",e[e.LG=8]="LG",e[e.XL=9]="XL",e[e.X2L=10]="X2L",e[e.X3L=11]="X3L",e[e.X4L=12]="X4L",e[e.X5L=13]="X5L",e[e.X6L=14]="X6L",e}({}),G=(N(N(N(N(N(N(N(N(N(N(S={},P.X6S,"marginTopBaseX6S"),P.X5S,"marginTopBaseX5S"),P.X4S,"marginTopBaseX4S"),P.X3S,"marginTopBaseX3S"),P.X2S,"marginTopBaseX2S"),P.XS,"marginTopBaseXS"),P.SM,"marginTopBaseSM"),P.MD,"marginTopBaseMD"),P.LG,"marginTopBaseLG"),P.XL,"marginTopBaseXL"),N(N(N(N(N(S,P.X2L,"marginTopBaseX2L"),P.X3L,"marginTopBaseX3L"),P.X4L,"marginTopBaseX4L"),P.X5L,"marginTopBaseX5L"),P.X6L,"marginTopBaseX6L")),O=(N(N(N(N(N(N(N(N(N(N(p={},P.X6S,"paddingTopBaseX6S"),P.X5S,"paddingTopBaseX5S"),P.X4S,"paddingTopBaseX4S"),P.X3S,"paddingTopBaseX3S"),P.X2S,"paddingTopBaseX2S"),P.XS,"paddingTopBaseXS"),P.SM,"paddingTopBaseSM"),P.MD,"paddingTopBaseMD"),P.LG,"paddingTopBaseLG"),P.XL,"paddingTopBaseXL"),N(N(N(N(N(p,P.X2L,"paddingTopBaseX2L"),P.X3L,"paddingTopBaseX3L"),P.X4L,"paddingTopBaseX4L"),P.X5L,"paddingTopBaseX5L"),P.X6L,"paddingTopBaseX6L")),j=(N(N(N(N(N(N(N(N(N(N(m={},P.X6S,"marginLeftBaseX6S"),P.X5S,"marginLeftBaseX5S"),P.X4S,"marginLeftBaseX4S"),P.X3S,"marginLeftBaseX3S"),P.X2S,"marginLeftBaseX2S"),P.XS,"marginLeftBaseXS"),P.SM,"marginLeftBaseSM"),P.MD,"marginLeftBaseMD"),P.LG,"marginLeftBaseLG"),P.XL,"marginLeftBaseXL"),N(N(N(N(N(m,P.X2L,"marginLeftBaseX2L"),P.X3L,"marginLeftBaseX3L"),P.X4L,"marginLeftBaseX4L"),P.X5L,"marginLeftBaseX5L"),P.X6L,"marginLeftBaseX6L")),k=(N(N(N(N(N(N(N(N(N(N(L={},P.X6S,"paddingLeftBaseX6S"),P.X5S,"paddingLeftBaseX5S"),P.X4S,"paddingLeftBaseX4S"),P.X3S,"paddingLeftBaseX3S"),P.X2S,"paddingLeftBaseX2S"),P.XS,"paddingLeftBaseXS"),P.SM,"paddingLeftBaseSM"),P.MD,"paddingLeftBaseMD"),P.LG,"paddingLeftBaseLG"),P.XL,"paddingLeftBaseXL"),N(N(N(N(N(L,P.X2L,"paddingLeftBaseX2L"),P.X3L,"paddingLeftBaseX3L"),P.X4L,"paddingLeftBaseX4L"),P.X5L,"paddingLeftBaseX5L"),P.X6L,"paddingLeftBaseX6L")),H=(N(N(N(N(N(N(N(N(N(N(b={},P.X6S,"marginRightBaseX6S"),P.X5S,"marginRightBaseX5S"),P.X4S,"marginRightBaseX4S"),P.X3S,"marginRightBaseX3S"),P.X2S,"marginRightBaseX2S"),P.XS,"marginRightBaseXS"),P.SM,"marginRightBaseSM"),P.MD,"marginRightBaseMD"),P.LG,"marginRightBaseLG"),P.XL,"marginRightBaseXL"),N(N(N(N(N(b,P.X2L,"marginRightBaseX2L"),P.X3L,"marginRightBaseX3L"),P.X4L,"marginRightBaseX4L"),P.X5L,"marginRightBaseX5L"),P.X6L,"marginRightBaseX6L")),z=(N(N(N(N(N(N(N(N(N(N(X={},P.X6S,"paddingRightBaseX6S"),P.X5S,"paddingRightBaseX5S"),P.X4S,"paddingRightBaseX4S"),P.X3S,"paddingRightBaseX3S"),P.X2S,"paddingRightBaseX2S"),P.XS,"paddingRightBaseXS"),P.SM,"paddingRightBaseSM"),P.MD,"paddingRightBaseMD"),P.LG,"paddingRightBaseLG"),P.XL,"paddingRightBaseXL"),N(N(N(N(N(X,P.X2L,"paddingRightBaseX2L"),P.X3L,"paddingRightBaseX3L"),P.X4L,"paddingRightBaseX4L"),P.X5L,"paddingRightBaseX5L"),P.X6L,"paddingRightBaseX6L")),V=(N(N(N(N(N(N(N(N(N(N(h={},P.X6S,"marginBottomBaseX6S"),P.X5S,"marginBottomBaseX5S"),P.X4S,"marginBottomBaseX4S"),P.X3S,"marginBottomBaseX3S"),P.X2S,"marginBottomBaseX2S"),P.XS,"marginBottomBaseXS"),P.SM,"marginBottomBaseSM"),P.MD,"marginBottomBaseMD"),P.LG,"marginBottomBaseLG"),P.XL,"marginBottomBaseXL"),N(N(N(N(N(h,P.X2L,"marginBottomBaseX2L"),P.X3L,"marginBottomBaseX3L"),P.X4L,"marginBottomBaseX4L"),P.X5L,"marginBottomBaseX5L"),P.X6L,"marginBottomBaseX6L")),U=(N(N(N(N(N(N(N(N(N(N(y={},P.X6S,"paddingBottomBaseX6S"),P.X5S,"paddingBottomBaseX5S"),P.X4S,"paddingBottomBaseX4S"),P.X3S,"paddingBottomBaseX3S"),P.X2S,"paddingBottomBaseX2S"),P.XS,"paddingBottomBaseXS"),P.SM,"paddingBottomBaseSM"),P.MD,"paddingBottomBaseMD"),P.LG,"paddingBottomBaseLG"),P.XL,"paddingBottomBaseXL"),N(N(N(N(N(y,P.X2L,"paddingBottomBaseX2L"),P.X3L,"paddingBottomBaseX3L"),P.X4L,"paddingBottomBaseX4L"),P.X5L,"paddingBottomBaseX5L"),P.X6L,"paddingBottomBaseX6L")),J=(N(N(N(N(N(N(N(N(N(N(E={},P.X6S,"spacingBaseX6S"),P.X5S,"spacingBaseX5S"),P.X4S,"spacingBaseX4S"),P.X3S,"spacingBaseX3S"),P.X2S,"spacingBaseX2S"),P.XS,"spacingBaseXS"),P.SM,"spacingBaseSM"),P.MD,"spacingBaseMD"),P.LG,"spacingBaseLG"),P.XL,"spacingBaseXL"),N(N(N(N(N(E,P.X2L,"spacingBaseX2L"),P.X3L,"spacingBaseX3L"),P.X4L,"spacingBaseX4L"),P.X5L,"spacingBaseX5L"),P.X6L,"spacingBaseX6L"));function K(e){return K="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},K(e)}function Y(e,o,r){return(o=function(e){var o=function(e){if("object"!=K(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=K(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==K(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var q=function(e){return e[e.DIV=0]="DIV",e[e.FIGURE=1]="FIGURE",e[e.FIGCAPTION=2]="FIGCAPTION",e[e.ARTICLE=3]="ARTICLE",e[e.SECTION=4]="SECTION",e[e.HEADER=5]="HEADER",e[e.MAIN=6]="MAIN",e[e.FOOTER=7]="FOOTER",e}({}),Q=Y(Y(Y(Y(Y(Y(Y(Y({},q.DIV,"div"),q.FIGURE,"figure"),q.FIGCAPTION,"figcaption"),q.ARTICLE,"article"),q.SECTION,"section"),q.HEADER,"header"),q.MAIN,"main"),q.FOOTER,"footer")},579:(e,o,r)=>{r.d(o,{GK:()=>w,lF:()=>F,r1:()=>C,QR:()=>L,vd:()=>m,M4:()=>p,TY:()=>S,v5:()=>f,UI:()=>B,bS:()=>d,ft:()=>g,TX:()=>l,Ei:()=>u,ud:()=>a,LN:()=>s,ev:()=>Q,Ps:()=>ee,kP:()=>E,VW:()=>R,vD:()=>le,hX:()=>te,w7:()=>ae,Vf:()=>re,X6:()=>D,S:()=>j,Gd:()=>ue,mu:()=>ie,XV:()=>se,we:()=>ne,xT:()=>U,bW:()=>J,FK:()=>oe,aL:()=>de});var n=r(695),t=r(389),i=r(123),a=function(e){var o;return null!==(o=(0,n.JU)()[i.kI[e]])&&void 0!==o?o:{borderWidth:0}},s=function(e){var o;return null!==(o=(0,n.JU)()[i.g9[e]])&&void 0!==o?o:{borderTopWidth:void 0}},l=function(e){var o;return null!==(o=(0,n.JU)()[i.Er[e]])&&void 0!==o?o:{borderLeftWidth:void 0}},u=function(e){var o;return null!==(o=(0,n.JU)()[i.Rw[e]])&&void 0!==o?o:{borderRightWidth:void 0}},d=function(e){var o;return null!==(o=(0,n.JU)()[i.ce[e]])&&void 0!==o?o:{borderBottomWidth:void 0}},g=function(e){var o=(0,n.wR)();return void 0===e?"0px":"".concat(o[i.kI[e]],"px")},c=t.StyleSheet.create({borderRadiusMax:{borderRadius:"50%"}}),B=function(e){var o=(0,n.JU)();return e===i.uC.MAX?c.borderRadiusMax:o[i.yQ[e]]},f=function(e){var o=(0,n.wR)();if(void 0!==e)return e===i.uC.MAX?"50%":"".concat(o[i.yQ[e]],"px")},S=function(e){return(0,n.JU)()[i.J2[e]]},p=function(e){return(0,n.wR)()[i.J2[e]]},m=function(e){var o=(0,n.JU)();if(void 0!==e)return e in i.TI?o[i.b8[e]]:{backgroundColor:e}},L=function(e){var o=(0,n.wR)();if(void 0!==e)return e in i.TI?o[i.b8[e]]:e};function b(e){return b="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},b(e)}function X(e,o,r){return(o=function(e){var o=function(e){if("object"!=b(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=b(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==b(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var h=t.StyleSheet.create({flexDirectionColumn:{flexDirection:"column"},flexDirectionRow:{flexDirection:"row"}}),y=X(X({},i.uY.COLUMN,h.flexDirectionColumn),i.uY.ROW,h.flexDirectionRow),E=function(e){return y[e]},v=t.StyleSheet.create({justifuContentFlexStart:{justifyContent:"flex-start"},justifuContentFlexEnd:{justifyContent:"flex-end"},justifuContentCenter:{justifyContent:"center"},justifuContentSpaceBetween:{justifyContent:"space-between"},justifuContentSpaceAround:{justifyContent:"space-around"},justifuContentSpaceEvenly:{justifyContent:"space-evenly"}}),T=X(X(X(X(X(X({},i.b9.FLEX_START,v.justifuContentFlexStart),i.b9.FLEX_END,v.justifuContentFlexEnd),i.b9.CENTER,v.justifuContentCenter),i.b9.SPACE_BETWEEN,v.justifuContentSpaceBetween),i.b9.SPACE_AROUND,v.justifuContentSpaceAround),i.b9.SPACE_EVENLY,v.justifuContentSpaceEvenly),R=function(e){return T[e]},A=t.StyleSheet.create({alignItemsFlexStart:{alignItems:"flex-start"},alignItemsFlexEnd:{alignItems:"flex-end"},alignItemsCenter:{alignItems:"center"},alignItemsStretch:{alignItems:"stretch"},alignItemsBaseline:{alignItems:"baseline"}}),M=X(X(X(X(X({},i.th.FLEX_START,A.alignItemsFlexStart),i.th.FLEX_END,A.alignItemsFlexEnd),i.th.CENTER,A.alignItemsCenter),i.th.STRETCH,A.alignItemsStretch),i.th.BASELINE,A.alignItemsBaseline),F=function(e){return M[e]},I=t.StyleSheet.create({alignSelfFlexStart:{alignSelf:"flex-start"},alignSelfFlexEnd:{alignSelf:"flex-end"},alignSelfCenter:{alignSelf:"center"},alignSelfStretch:{alignSelf:"stretch"},alignSelfBaseline:{alignSelf:"baseline"}}),W=X(X(X(X(X({},i.F5.FLEX_START,I.alignSelfFlexStart),i.F5.FLEX_END,I.alignSelfFlexEnd),i.F5.CENTER,I.alignSelfCenter),i.F5.STRETCH,I.alignSelfStretch),i.F5.BASELINE,I.alignSelfBaseline),C=function(e){return W[e]},_=t.StyleSheet.create({alignContentFlexStart:{alignContent:"flex-start"},alignContentFlexEnd:{alignContent:"flex-end"},alignContentCenter:{alignContent:"center"},alignContentStretch:{alignContent:"stretch"},alignContentSpaceBetween:{alignContent:"space-between"},alignContentSpaceAround:{alignContent:"space-around"},valignContentSpaceEvenly:{alignContent:"space-evenly"}}),x=X(X(X(X(X(X({},i.CN.FLEX_START,_.alignContentFlexStart),i.CN.FLEX_END,_.alignContentFlexEnd),i.CN.CENTER,_.alignContentCenter),i.CN.STRETCH,_.alignContentStretch),i.CN.SPACE_BETWEEN,_.alignContentSpaceBetween),i.CN.SPACE_AROUND,_.alignContentSpaceAround),w=function(e){return x[e]},D=function(e){if(e)return e.toValue()};function N(e){return N="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},N(e)}function P(e,o,r){return(o=function(e){var o=function(e){if("object"!=N(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=N(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==N(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var G=t.StyleSheet.create({overflowVisible:{overflow:"visible"},overflowHidden:{overflow:"hidden"}}),O=P(P({},i.Ie.VISIBLE,G.overflowVisible),i.Ie.HIDDEN,G.overflowHidden),j=function(e){return O[e]};function k(e){return k="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},k(e)}function H(e,o,r){return(o=function(e){var o=function(e){if("object"!=k(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=k(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==k(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var z=t.StyleSheet.create({positionRelative:{position:"relative"},positionAbsolute:{position:"absolute"}}),V=H(H({},i.JT.RELATIVE,z.positionRelative),i.JT.ABSOLUTE,z.positionAbsolute),U=function(e){return V[e]},J=function(e){if(e)return e.toValue()};function K(e){return K="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},K(e)}function Y(e,o,r){return(o=function(e){var o=function(e){if("object"!=K(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=K(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==K(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var q=Y(Y(Y({},i.lo.SM,"0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px -1px rgba(0,0,0,0.1)"),i.lo.MD,"0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -2px rgba(0,0,0,0.1)"),i.lo.LG,"0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -4px rgba(0,0,0,0.1)"),Q=function(e){return q[e]},$=t.StyleSheet.create({boxShadowSM:{boxShadow:q[i.lo.SM]},boxShadowMD:{boxShadow:q[i.lo.MD]},boxShadowLG:{boxShadow:q[i.lo.LG]}}),Z=Y(Y(Y({},i.lo.SM,$.boxShadowSM),i.lo.MD,$.boxShadowMD),i.lo.LG,$.boxShadowLG),ee=function(e){return Z[e]},oe=function(e){if(e)return e.toValue()},re=function(e){return(0,n.JU)()[i.Dz[e]]},ne=function(e){return(0,n.JU)()[i.Wi[e]]},te=function(e){return(0,n.JU)()[i.DK[e]]},ie=function(e){return(0,n.JU)()[i.Wk[e]]},ae=function(e){return(0,n.JU)()[i.iq[e]]},se=function(e){return(0,n.JU)()[i.l2[e]]},le=function(e){return(0,n.JU)()[i.X1[e]]},ue=function(e){return(0,n.JU)()[i.mN[e]]},de=function(e){var o=(0,n.wR)();if(void 0!==o[i.wu[e]])return"".concat(o[i.wu[e]],"px")}},689:(e,o,r)=>{r.d(o,{A:()=>u});var n=r(389),t=r(123),i=r(579),a=r(848),s=n.StyleSheet.create({default:{display:"flex",margin:0,padding:0,zIndex:0,position:"relative",listStyle:"none",borderStyle:"solid",textDecoration:"none",boxSizing:"border-box"}}),l=function(e){var o=e.testId,r=e.position,l=void 0===r?t.JT.RELATIVE:r,u=e.top,d=e.left,g=e.right,c=e.bottom,B=e.opacity,f=e.overflow,S=void 0===f?t.Ie.VISIBLE:f,p=e.flexDirection,m=void 0===p?t.uY.COLUMN:p,L=e.justifyContent,b=void 0===L?t.b9.FLEX_START:L,X=e.alignItems,h=void 0===X?t.th.STRETCH:X,y=e.alignSelf,E=e.alignContent,v=void 0===E?t.CN.FLEX_START:E,T=e.marginTop,R=e.paddingTop,A=e.marginLeft,M=e.paddingLeft,F=e.marginRight,I=e.paddingRight,W=e.marginBottom,C=e.paddingBottom,_=e.minWidth,x=e.width,w=e.maxWidth,D=e.minHeight,N=e.height,P=e.maxHeight,G=e.boxShadow,O=e.borderColor,j=e.borderWidth,k=e.borderWidthTop,H=e.borderWidthLeft,z=e.borderWidthRight,V=e.borderWidthBottom,U=e.borderRadius,J=e.backgroundColor,K=e.children;return(0,a.jsx)(n.View,{testID:o,style:[s.default,(0,i.xT)(l),{top:(0,i.bW)(u),left:(0,i.bW)(d),right:(0,i.bW)(g),bottom:(0,i.bW)(c)},{opacity:(0,i.X6)(B)},(0,i.S)(S),(0,i.kP)(m),(0,i.VW)(b),(0,i.lF)(h),(0,i.r1)(y),(0,i.GK)(v),(0,i.Vf)(T),(0,i.we)(R),(0,i.hX)(A),(0,i.mu)(M),(0,i.w7)(F),(0,i.XV)(I),(0,i.vD)(W),(0,i.Gd)(C),{minWidth:(0,i.FK)(_),width:(0,i.FK)(x),maxWidth:(0,i.FK)(w),minHeight:(0,i.FK)(D),height:(0,i.FK)(N),maxHeight:(0,i.FK)(P)},(0,i.Ps)(G),(0,i.TY)(O),(0,i.ud)(j),(0,i.LN)(k),(0,i.TX)(H),(0,i.Ei)(z),(0,i.bS)(V),(0,i.UI)(U),(0,i.vd)(J)],children:K})};l.Tag=t.SQ,l.Position=t.JT,l.Overflow=t.Ie,l.FlexDirection=t.uY,l.JustifyContent=t.b9,l.AlignItems=t.th,l.AlignSelf=t.F5,l.AlignContent=t.CN,l.Spacing=t.TL,l.BoxShadow=t.lo,l.BorderColor=t.Vc,l.BorderWidth=t.s_,l.BorderRadius=t.uC,l.BackgroundColor=t.TI;const u=l},741:(e,o,r)=>{r.d(o,{A:()=>y});var n,t=r(729),i=r.n(t),a=r(123);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(e,o,r){return(o=function(e){var o=function(e){if("object"!=s(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=s(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==s(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var u,d,g=l(l({},a.JT.RELATIVE,"relative"),a.JT.ABSOLUTE,"absolute"),c=l(l({},a.Ie.VISIBLE,"visible"),a.Ie.HIDDEN,"hidden"),B=l(l({},a.uY.COLUMN,"column"),a.uY.ROW,"row"),f=l(l(l(l(l(l({},a.b9.FLEX_START,"flex-start"),a.b9.FLEX_END,"flex-end"),a.b9.CENTER,"center"),a.b9.SPACE_BETWEEN,"space-between"),a.b9.SPACE_AROUND,"space-around"),a.b9.SPACE_EVENLY,"space-evenly"),S=l(l(l(l(l({},a.th.FLEX_START,"flex-start"),a.th.FLEX_END,"flex-end"),a.th.STRETCH,"stretch"),a.th.CENTER,"center"),a.th.BASELINE,"baseline"),p=l(l(l(l(l({},a.F5.FLEX_START,"flex-start"),a.F5.FLEX_END,"flex-end"),a.F5.CENTER,"center"),a.F5.STRETCH,"stretch"),a.F5.BASELINE,"baseline"),m=l(l(l(l(l(l({},a.CN.FLEX_START,"flex-start"),a.CN.FLEX_END,"flex-end"),a.CN.CENTER,"center"),a.CN.STRETCH,"stretch"),a.CN.SPACE_BETWEEN,"space-between"),a.CN.SPACE_AROUND,"space-around"),L=i().div(n||(u=["\n display: flex;\n margin: 0;\n padding: 0;\n z-index: 0;\n position: relative;\n list-style: none;\n border-style: solid;\n text-decoration: none;\n box-sizing: border-box;\n position: ",";\n top: ",";\n left: ",";\n right: ",";\n bottom: ",";\n opacity: ",";\n overflow: ",";\n flex-direction: ",";\n justify-content: ",";\n align-items: ",";\n align-self: ",";\n align-content: ",";\n margin-top: ",";\n padding-top: ",";\n margin-left: ",";\n padding-left: ",";\n margin-right: ",";\n padding-right: ",";\n margin-bottom: ",";\n padding-bottom: ",";\n min-width: ",";\n width: ",";\n max-width: ",";\n min-height: ",";\n height: ",";\n max-height: ",";\n box-shadow: ",";\n border-color: ",";\n border-width: ",";\n border-top-width: ",";\n border-left-width: ",";\n border-right-width: ",";\n border-bottom-width: ",";\n border-radius: ",";\n background-color: ",";\n"],d||(d=u.slice(0)),n=Object.freeze(Object.defineProperties(u,{raw:{value:Object.freeze(d)}}))),(function(e){var o=e.position;return g[o]}),(function(e){return e.top}),(function(e){return e.left}),(function(e){return e.right}),(function(e){return e.bottom}),(function(e){return e.opacity}),(function(e){var o=e.overflow;return c[o]}),(function(e){var o=e.flexDirection;return B[o]}),(function(e){var o=e.justifyContent;return f[o]}),(function(e){var o=e.alignItems;return S[o]}),(function(e){var o=e.alignSelf;return p[o]}),(function(e){var o=e.alignContent;return m[o]}),(function(e){return e.marginTop}),(function(e){return e.paddingTop}),(function(e){return e.marginLeft}),(function(e){return e.paddingLeft}),(function(e){return e.marginRight}),(function(e){return e.paddingRight}),(function(e){return e.marginBottom}),(function(e){return e.paddingBottom}),(function(e){return e.minWidth}),(function(e){return e.width}),(function(e){return e.maxWidth}),(function(e){return e.minHeight}),(function(e){return e.height}),(function(e){return e.maxHeight}),(function(e){return e.boxShadow}),(function(e){return e.borderColor}),(function(e){return e.borderWidth}),(function(e){return e.borderWidthTop}),(function(e){return e.borderWidthLeft}),(function(e){return e.borderWidthRight}),(function(e){return e.borderWidthBottom}),(function(e){return e.borderRadius}),(function(e){return e.backgroundColor})),b=r(579),X=r(848),h=function(e){var o=e.testId,r=e.tag,n=void 0===r?a.SQ.DIV:r,t=e.position,i=void 0===t?a.JT.RELATIVE:t,s=e.top,l=e.left,u=e.right,d=e.bottom,g=e.opacity,c=e.overflow,B=void 0===c?a.Ie.VISIBLE:c,f=e.flexDirection,S=void 0===f?a.uY.COLUMN:f,p=e.justifyContent,m=void 0===p?a.b9.FLEX_START:p,h=e.alignItems,y=void 0===h?a.th.STRETCH:h,E=e.alignSelf,v=e.alignContent,T=void 0===v?a.CN.FLEX_START:v,R=e.marginTop,A=e.paddingTop,M=e.marginLeft,F=e.paddingLeft,I=e.marginRight,W=e.paddingRight,C=e.marginBottom,_=e.paddingBottom,x=e.minWidth,w=e.width,D=e.maxWidth,N=e.minHeight,P=e.height,G=e.maxHeight,O=e.boxShadow,j=e.borderColor,k=e.borderWidth,H=e.borderWidthTop,z=e.borderWidthLeft,V=e.borderWidthRight,U=e.borderWidthBottom,J=e.borderRadius,K=e.backgroundColor,Y=e.children;return(0,X.jsx)(L,{"data-testid":o,as:a.l5[n],position:i,top:(0,b.bW)(s),left:(0,b.bW)(l),right:(0,b.bW)(u),bottom:(0,b.bW)(d),opacity:(0,b.X6)(g),overflow:B,flexDirection:S,justifyContent:m,alignItems:y,alignSelf:E,alignContent:T,marginTop:(0,b.aL)(R),paddingTop:(0,b.aL)(A),marginLeft:(0,b.aL)(M),paddingLeft:(0,b.aL)(F),marginRight:(0,b.aL)(I),paddingRight:(0,b.aL)(W),marginBottom:(0,b.aL)(C),paddingBottom:(0,b.aL)(_),minWidth:(0,b.FK)(x),width:(0,b.FK)(w),maxWidth:(0,b.FK)(D),minHeight:(0,b.FK)(N),height:(0,b.FK)(P),maxHeight:(0,b.FK)(G),boxShadow:(0,b.ev)(O),borderColor:(0,b.M4)(j),borderWidth:(0,b.ft)(k),borderWidthTop:(0,b.ft)(H),borderWidthLeft:(0,b.ft)(z),borderWidthRight:(0,b.ft)(V),borderWidthBottom:(0,b.ft)(U),borderRadius:(0,b.v5)(J),backgroundColor:(0,b.QR)(K),children:Y})};h.Tag=a.SQ,h.Position=a.JT,h.Overflow=a.Ie,h.FlexDirection=a.uY,h.JustifyContent=a.b9,h.AlignItems=a.th,h.AlignSelf=a.F5,h.AlignContent=a.CN,h.Spacing=a.TL,h.BoxShadow=a.lo,h.BorderColor=a.Vc,h.BorderWidth=a.s_,h.BorderRadius=a.uC,h.BackgroundColor=a.TI;const y=h},695:(e,o,r)=>{r.d(o,{JU:()=>n.JU,wR:()=>n.wR}),r(410);var n=r(506)},410:(e,o,r)=>{r.d(o,{$U:()=>S,tZ:()=>l,$c:()=>u});var n=r(155),t=r(389),i=function(e){return e[e.MD=0]="MD",e[e.LG=1]="LG",e[e.XL=2]="XL",e}({}),a=r(848),s=(0,n.createContext)({}),l=function(e){var o=e.breakpointMD,r=e.breakpointLG,l=e.breakpointXL,u=e.children,d=function(e,o,r){var a=(0,t.useWindowDimensions)().width;return(0,n.useMemo)((function(){return a>=r?i.XL:a>=o?i.LG:a>=e?i.MD:void 0}),[a>=r,a>=o,a>=e])}(null!=o?o:768,null!=r?r:1024,null!=l?l:1280),g=(0,n.useMemo)((function(){return{breakpoint:d}}),[d]);return(0,a.jsx)(s.Provider,{value:g,children:(0,a.jsx)(m,{children:u})})},u=function(){return(0,n.useContext)(s)};function d(e){return d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},d(e)}function g(e,o){(null==o||o>e.length)&&(o=e.length);for(var r=0,n=Array(o);r<o;r++)n[r]=e[r];return n}function c(e,o,r){return(o=function(e){var o=function(e){if("object"!=d(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=d(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==d(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var B=c(c(c({},i.MD,1),i.LG,2),i.XL,3),f=function(e,o){return B[e]>B[o]},S=t.Platform.select({web:function(e){var o=e.isDefault,r=e.isOtherwise,t=e.breakpoint,i=e.children,a=u(),s=function(e,o){return function(e){if(Array.isArray(e))return e}(e)||function(e,o){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,t,i,a,s=[],l=!0,u=!1;try{if(i=(r=r.call(e)).next,0===o){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(s.push(n.value),s.length!==o);l=!0);}catch(e){u=!0,t=e}finally{try{if(!l&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(u)throw t}}return s}}(e,o)||function(e,o){if(e){if("string"==typeof e)return g(e,o);var r={}.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?g(e,o):void 0}}(e,o)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}((0,n.useState)(!1),2),l=s[0],d=s[1];if((0,n.useEffect)((function(){d(!0)}),[]),l){if(o&&void 0===a.breakpoint)return i;if(a.breakpoint===t)return i;if(r&&f(a.breakpoint,t))return i}else if(o)return i},default:function(e){var o=e.isDefault,r=e.isOtherwise,n=e.breakpoint,t=e.children,i=u();return o&&void 0===i.breakpoint||i.breakpoint===n||r&&f(i.breakpoint,n)?t:void 0}});function p(e,o){(null==o||o>e.length)&&(o=e.length);for(var r=0,n=Array(o);r<o;r++)n[r]=e[r];return n}S.Breakpoint=i;var m=t.Platform.select({web:function(e){var o=e.children,r=(0,n.useRef)(),t=function(e,o){return function(e){if(Array.isArray(e))return e}(e)||function(e,o){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,t,i,a,s=[],l=!0,u=!1;try{if(i=(r=r.call(e)).next,0===o){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(s.push(n.value),s.length!==o);l=!0);}catch(e){u=!0,t=e}finally{try{if(!l&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(u)throw t}}return s}}(e,o)||function(e,o){if(e){if("string"==typeof e)return p(e,o);var r={}.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?p(e,o):void 0}}(e,o)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}((0,n.useState)(!1),2),i=t[0],s=t[1];(0,n.useEffect)((function(){s(!0)}),[]);var l=(0,n.useMemo)((function(){return i||"undefined"==typeof window||"undefined"==typeof document?{display:"flex",flexGrow:1,flexShrink:1,flexBasis:"100%",flexDirection:"column"}:{display:"none",flexGrow:1,flexShrink:1,flexBasis:"100%",flexDirection:"column"}}),[i]);return(0,a.jsxs)("div",{ref:r,style:l,suppressHydrationWarning:!0,children:[(0,a.jsx)("script",{dangerouslySetInnerHTML:{__html:'document.currentScript.parentElement.style.display="none"'}}),o]})},default:function(e){return e.children}})},506:(e,o,r)=>{r.d(o,{wX:()=>V,wR:()=>U,JU:()=>i});var n=r(155),t=r(389),i=function(){var e=U();return(0,n.useMemo)((function(){return t.StyleSheet.create({colorBackgroundBase100:{backgroundColor:e.colorBackgroundBase100},colorBackgroundBase200:{backgroundColor:e.colorBackgroundBase200},colorBackgroundBase300:{backgroundColor:e.colorBackgroundBase300},colorBackgroundBase400:{backgroundColor:e.colorBackgroundBase400},colorBackgroundBase500:{backgroundColor:e.colorBackgroundBase500},colorBackgroundBase600:{backgroundColor:e.colorBackgroundBase600},colorBackgroundBase700:{backgroundColor:e.colorBackgroundBase700},colorBackgroundBase800:{backgroundColor:e.colorBackgroundBase800},colorBackgroundBase900:{backgroundColor:e.colorBackgroundBase900},colorBorderBase100:{borderColor:e.colorBorderBase100},colorBorderBase200:{borderColor:e.colorBorderBase200},colorBorderBase300:{borderColor:e.colorBorderBase300},colorBorderBase400:{borderColor:e.colorBorderBase400},colorBorderBase500:{borderColor:e.colorBorderBase500},colorBorderBase600:{borderColor:e.colorBorderBase600},colorBorderBase700:{borderColor:e.colorBorderBase700},colorBorderBase800:{borderColor:e.colorBorderBase800},colorBorderBase900:{borderColor:e.colorBorderBase900},colorForegroundBase100:{color:e.colorForegroundBase100},colorForegroundBase200:{color:e.colorForegroundBase200},colorForegroundBase300:{color:e.colorForegroundBase300},colorForegroundBase400:{color:e.colorForegroundBase400},colorForegroundBase500:{color:e.colorForegroundBase500},colorForegroundBase600:{color:e.colorForegroundBase600},colorForegroundBase700:{color:e.colorForegroundBase700},colorForegroundBase800:{color:e.colorForegroundBase800},colorForegroundBase900:{color:e.colorForegroundBase900},colorForegroundInverse100:{color:e.colorForegroundInverse100},colorForegroundInverse200:{color:e.colorForegroundInverse200},colorForegroundInverse300:{color:e.colorForegroundInverse300},colorForegroundInverse400:{color:e.colorForegroundInverse400},colorForegroundInverse500:{color:e.colorForegroundInverse500},colorForegroundInverse600:{color:e.colorForegroundInverse600},colorForegroundInverse700:{color:e.colorForegroundInverse700},colorForegroundInverse800:{color:e.colorForegroundInverse800},colorForegroundInverse900:{color:e.colorForegroundInverse900},fontFamilyBase:{fontFamily:e.fontFamilyBase},fontWeightBaseThin:{fontWeight:e.fontWeightBaseThin},fontWeightBaseExtraLight:{fontWeight:e.fontWeightBaseExtraLight},fontWeightBaseLight:{fontWeight:e.fontWeightBaseLight},fontWeightBaseRegular:{fontWeight:e.fontWeightBaseRegular},fontWeightBaseMedium:{fontWeight:e.fontWeightBaseMedium},fontWeightBaseSemiBold:{fontWeight:e.fontWeightBaseSemiBold},fontWeightBaseBold:{fontWeight:e.fontWeightBaseBold},fontWeightBaseExtraBold:{fontWeight:e.fontWeightBaseExtraBold},fontWeightBaseBlack:{fontWeight:e.fontWeightBaseBlack},fontSizeBaseX2S:{fontSize:e.fontSizeBaseX2S},fontSizeBaseXS:{fontSize:e.fontSizeBaseXS},fontSizeBaseSM:{fontSize:e.fontSizeBaseSM},fontSizeBaseMD:{fontSize:e.fontSizeBaseMD},fontSizeBaseLG:{fontSize:e.fontSizeBaseLG},fontSizeBaseXL:{fontSize:e.fontSizeBaseXL},fontSizeBaseX2L:{fontSize:e.fontSizeBaseX2L},fontSizeBaseX3L:{fontSize:e.fontSizeBaseX3L},fontSizeBaseX4L:{fontSize:e.fontSizeBaseX4L},fontSizeBaseX5L:{fontSize:e.fontSizeBaseX5L},marginTopBaseX6S:{marginTop:e.spacingBaseX6S},paddingTopBaseX6S:{paddingTop:e.spacingBaseX6S},marginLeftBaseX6S:{marginLeft:e.spacingBaseX6S},paddingLeftBaseX6S:{paddingLeft:e.spacingBaseX6S},marginRightBaseX6S:{marginRight:e.spacingBaseX6S},paddingRightBaseX6S:{paddingRight:e.spacingBaseX6S},marginBottomBaseX6S:{marginBottom:e.spacingBaseX6S},paddingBottomBaseX6S:{paddingBottom:e.spacingBaseX6S},marginTopBaseX5S:{marginTop:e.spacingBaseX5S},paddingTopBaseX5S:{paddingTop:e.spacingBaseX5S},marginLeftBaseX5S:{marginLeft:e.spacingBaseX5S},paddingLeftBaseX5S:{paddingLeft:e.spacingBaseX5S},marginRightBaseX5S:{marginRight:e.spacingBaseX5S},paddingRightBaseX5S:{paddingRight:e.spacingBaseX5S},marginBottomBaseX5S:{marginBottom:e.spacingBaseX5S},paddingBottomBaseX5S:{paddingBottom:e.spacingBaseX5S},marginTopBaseX4S:{marginTop:e.spacingBaseX4S},paddingTopBaseX4S:{paddingTop:e.spacingBaseX4S},marginLeftBaseX4S:{marginLeft:e.spacingBaseX4S},paddingLeftBaseX4S:{paddingLeft:e.spacingBaseX4S},marginRightBaseX4S:{marginRight:e.spacingBaseX4S},paddingRightBaseX4S:{paddingRight:e.spacingBaseX4S},marginBottomBaseX4S:{marginBottom:e.spacingBaseX4S},paddingBottomBaseX4S:{paddingBottom:e.spacingBaseX4S},marginTopBaseX3S:{marginTop:e.spacingBaseX3S},paddingTopBaseX3S:{paddingTop:e.spacingBaseX3S},marginLeftBaseX3S:{marginLeft:e.spacingBaseX3S},paddingLeftBaseX3S:{paddingLeft:e.spacingBaseX3S},marginRightBaseX3S:{marginRight:e.spacingBaseX3S},paddingRightBaseX3S:{paddingRight:e.spacingBaseX3S},marginBottomBaseX3S:{marginBottom:e.spacingBaseX3S},paddingBottomBaseX3S:{paddingBottom:e.spacingBaseX3S},marginTopBaseX2S:{marginTop:e.spacingBaseX2S},paddingTopBaseX2S:{paddingTop:e.spacingBaseX2S},marginLeftBaseX2S:{marginLeft:e.spacingBaseX2S},paddingLeftBaseX2S:{paddingLeft:e.spacingBaseX2S},marginRightBaseX2S:{marginRight:e.spacingBaseX2S},paddingRightBaseX2S:{paddingRight:e.spacingBaseX2S},marginBottomBaseX2S:{marginBottom:e.spacingBaseX2S},paddingBottomBaseX2S:{paddingBottom:e.spacingBaseX2S},marginTopBaseXS:{marginTop:e.spacingBaseXS},paddingTopBaseXS:{paddingTop:e.spacingBaseXS},marginLeftBaseXS:{marginLeft:e.spacingBaseXS},paddingLeftBaseXS:{paddingLeft:e.spacingBaseXS},marginRightBaseXS:{marginRight:e.spacingBaseXS},paddingRightBaseXS:{paddingRight:e.spacingBaseXS},marginBottomBaseXS:{marginBottom:e.spacingBaseXS},paddingBottomBaseXS:{paddingBottom:e.spacingBaseXS},marginTopBaseSM:{marginTop:e.spacingBaseSM},paddingTopBaseSM:{paddingTop:e.spacingBaseSM},marginLeftBaseSM:{marginLeft:e.spacingBaseSM},paddingLeftBaseSM:{paddingLeft:e.spacingBaseSM},marginRightBaseSM:{marginRight:e.spacingBaseSM},paddingRightBaseSM:{paddingRight:e.spacingBaseSM},marginBottomBaseSM:{marginBottom:e.spacingBaseSM},paddingBottomBaseSM:{paddingBottom:e.spacingBaseSM},marginTopBaseMD:{marginTop:e.spacingBaseMD},paddingTopBaseMD:{paddingTop:e.spacingBaseMD},marginLeftBaseMD:{marginLeft:e.spacingBaseMD},paddingLeftBaseMD:{paddingLeft:e.spacingBaseMD},marginRightBaseMD:{marginRight:e.spacingBaseMD},paddingRightBaseMD:{paddingRight:e.spacingBaseMD},marginBottomBaseMD:{marginBottom:e.spacingBaseMD},paddingBottomBaseMD:{paddingBottom:e.spacingBaseMD},marginTopBaseLG:{marginTop:e.spacingBaseLG},paddingTopBaseLG:{paddingTop:e.spacingBaseLG},marginLeftBaseLG:{marginLeft:e.spacingBaseLG},paddingLeftBaseLG:{paddingLeft:e.spacingBaseLG},marginRightBaseLG:{marginRight:e.spacingBaseLG},paddingRightBaseLG:{paddingRight:e.spacingBaseLG},marginBottomBaseLG:{marginBottom:e.spacingBaseLG},paddingBottomBaseLG:{paddingBottom:e.spacingBaseLG},marginTopBaseXL:{marginTop:e.spacingBaseXL},paddingTopBaseXL:{paddingTop:e.spacingBaseXL},marginLeftBaseXL:{marginLeft:e.spacingBaseXL},paddingLeftBaseXL:{paddingLeft:e.spacingBaseXL},marginRightBaseXL:{marginRight:e.spacingBaseXL},paddingRightBaseXL:{paddingRight:e.spacingBaseXL},marginBottomBaseXL:{marginBottom:e.spacingBaseXL},paddingBottomBaseXL:{paddingBottom:e.spacingBaseXL},marginTopBaseX2L:{marginTop:e.spacingBaseX2L},paddingTopBaseX2L:{paddingTop:e.spacingBaseX2L},marginLeftBaseX2L:{marginLeft:e.spacingBaseX2L},paddingLeftBaseX2L:{paddingLeft:e.spacingBaseX2L},marginRightBaseX2L:{marginRight:e.spacingBaseX2L},paddingRightBaseX2L:{paddingRight:e.spacingBaseX2L},marginBottomBaseX2L:{marginBottom:e.spacingBaseX2L},paddingBottomBaseX2L:{paddingBottom:e.spacingBaseX2L},marginTopBaseX3L:{marginTop:e.spacingBaseX3L},paddingTopBaseX3L:{paddingTop:e.spacingBaseX3L},marginLeftBaseX3L:{marginLeft:e.spacingBaseX3L},paddingLeftBaseX3L:{paddingLeft:e.spacingBaseX3L},marginRightBaseX3L:{marginRight:e.spacingBaseX3L},paddingRightBaseX3L:{paddingRight:e.spacingBaseX3L},marginBottomBaseX3L:{marginBottom:e.spacingBaseX3L},paddingBottomBaseX3L:{paddingBottom:e.spacingBaseX3L},marginTopBaseX4L:{marginTop:e.spacingBaseX4L},paddingTopBaseX4L:{paddingTop:e.spacingBaseX4L},marginLeftBaseX4L:{marginLeft:e.spacingBaseX4L},paddingLeftBaseX4L:{paddingLeft:e.spacingBaseX4L},marginRightBaseX4L:{marginRight:e.spacingBaseX4L},paddingRightBaseX4L:{paddingRight:e.spacingBaseX4L},marginBottomBaseX4L:{marginBottom:e.spacingBaseX4L},paddingBottomBaseX4L:{paddingBottom:e.spacingBaseX4L},marginTopBaseX5L:{marginTop:e.spacingBaseX5L},paddingTopBaseX5L:{paddingTop:e.spacingBaseX5L},marginLeftBaseX5L:{marginLeft:e.spacingBaseX5L},paddingLeftBaseX5L:{paddingLeft:e.spacingBaseX5L},marginRightBaseX5L:{marginRight:e.spacingBaseX5L},paddingRightBaseX5L:{paddingRight:e.spacingBaseX5L},marginBottomBaseX5L:{marginBottom:e.spacingBaseX5L},paddingBottomBaseX5L:{paddingBottom:e.spacingBaseX5L},marginTopBaseX6L:{marginTop:e.spacingBaseX6L},paddingTopBaseX6L:{paddingTop:e.spacingBaseX6L},marginLeftBaseX6L:{marginLeft:e.spacingBaseX6L},paddingLeftBaseX6L:{paddingLeft:e.spacingBaseX6L},marginRightBaseX6L:{marginRight:e.spacingBaseX6L},paddingRightBaseX6L:{paddingRight:e.spacingBaseX6L},marginBottomBaseX6L:{marginBottom:e.spacingBaseX6L},paddingBottomBaseX6L:{paddingBottom:e.spacingBaseX6L},borderWidthBaseSM:{borderWidth:e.borderWidthBaseSM},borderWidthBaseMD:{borderWidth:e.borderWidthBaseMD},borderWidthBaseLG:{borderWidth:e.borderWidthBaseLG},borderWidthTopBaseSM:{borderTopWidth:e.borderWidthBaseSM},borderWidthTopBaseMD:{borderTopWidth:e.borderWidthBaseMD},borderWidthTopBaseLG:{borderTopWidth:e.borderWidthBaseLG},borderWidthLeftBaseSM:{borderLeftWidth:e.borderWidthBaseSM},borderWidthLeftBaseMD:{borderLeftWidth:e.borderWidthBaseMD},borderWidthLeftBaseLG:{borderLeftWidth:e.borderWidthBaseLG},borderWidthRightBaseSM:{borderRightWidth:e.borderWidthBaseSM},borderWidthRightBaseMD:{borderRightWidth:e.borderWidthBaseMD},borderWidthRightBaseLG:{borderRightWidth:e.borderWidthBaseLG},borderWidthBottomBaseSM:{borderBottomWidth:e.borderWidthBaseSM},borderWidthBottomBaseMD:{borderBottomWidth:e.borderWidthBaseMD},borderWidthBottomBaseLG:{borderBottomWidth:e.borderWidthBaseLG},borderRadiusBaseXS:{borderRadius:e.borderRadiusBaseXS},borderRadiusBaseSM:{borderRadius:e.borderRadiusBaseSM},borderRadiusBaseMD:{borderRadius:e.borderRadiusBaseMD},borderRadiusBaseLG:{borderRadius:e.borderRadiusBaseLG},borderRadiusBaseXL:{borderRadius:e.borderRadiusBaseXL}})}),[e])},a="rgb(198,198,202)",s="rgb(212,212,216)",l="rgb(216,216,228)",u="rgb(218,218,234)",d="rgb(224,224,238)",g="rgb(244,244,245)",c="rgb(247,247,249)",B="rgb(249,249,250)",f="rgb(254,254,255)",S="rgb(253,252,254)",p="rgb(249,249,250)",m="rgb(247,247,249)",L="rgb(244,244,245)",b="rgb(224,224,238)",X="rgb(218,218,234)",h="rgb(216,216,228)",y="rgb(212,212,216)",E="rgb(198,198,202)",v="rgb(102,102,116)",T="rgb(82,82,92)",R="rgb(74,74,88)",A="rgb(63,63,70)",M="rgb(49,49,56)",F="rgb(39,39,42)",I="rgb(30,30,34)",W="rgb(24,24,27)",C="rgb(6,6,14)",_="rgb(198,198,202)",x="rgb(212,212,216)",w="rgb(216,216,228)",D="rgb(218,218,234)",N="rgb(224,224,238)",P="rgb(244,244,245)",G="rgb(247,247,249)",O="rgb(249,249,250)",j="rgb(254,254,255)",k=["ui-sans-serif","-apple-system","BlinkMacSystemFont",'"Segoe UI"',"Roboto","Helvetica","Arial","sans-serif"].join(","),H=r(848),z=(0,n.createContext)({colorBackgroundBase100:a,colorBackgroundBase200:s,colorBackgroundBase300:l,colorBackgroundBase400:u,colorBackgroundBase500:d,colorBackgroundBase600:g,colorBackgroundBase700:c,colorBackgroundBase800:B,colorBackgroundBase900:f,colorBorderBase100:S,colorBorderBase200:p,colorBorderBase300:m,colorBorderBase400:L,colorBorderBase500:b,colorBorderBase600:X,colorBorderBase700:h,colorBorderBase800:y,colorBorderBase900:E,colorForegroundBase100:v,colorForegroundBase200:T,colorForegroundBase300:R,colorForegroundBase400:A,colorForegroundBase500:M,colorForegroundBase600:F,colorForegroundBase700:I,colorForegroundBase800:W,colorForegroundBase900:C,colorForegroundInverse100:_,colorForegroundInverse200:x,colorForegroundInverse300:w,colorForegroundInverse400:D,colorForegroundInverse500:N,colorForegroundInverse600:P,colorForegroundInverse700:G,colorForegroundInverse800:O,colorForegroundInverse900:j,fontFamilyBase:k,fontWeightBaseThin:100,fontWeightBaseExtraLight:200,fontWeightBaseLight:300,fontWeightBaseRegular:400,fontWeightBaseMedium:500,fontWeightBaseSemiBold:600,fontWeightBaseBold:700,fontWeightBaseExtraBold:800,fontWeightBaseBlack:900,fontSizeBaseX2S:12,fontSizeBaseXS:14,fontSizeBaseSM:16,fontSizeBaseMD:18,fontSizeBaseLG:20,fontSizeBaseXL:24,fontSizeBaseX2L:30,fontSizeBaseX3L:36,fontSizeBaseX4L:48,fontSizeBaseX5L:60,lineHeightBaseNone:1,lineHeightBaseTight:1.25,lineHeightBaseSnug:1.375,lineHeightBaseNormal:1.5,lineHeightBaseRelaxed:1.625,lineHeightBaseLoose:2,spacingBaseX6S:2,spacingBaseX5S:4,spacingBaseX4S:6,spacingBaseX3S:8,spacingBaseX2S:10,spacingBaseXS:12,spacingBaseSM:14,spacingBaseMD:16,spacingBaseLG:18,spacingBaseXL:20,spacingBaseX2L:24,spacingBaseX3L:28,spacingBaseX4L:32,spacingBaseX5L:36,spacingBaseX6L:40,borderWidthBaseSM:.5,borderWidthBaseMD:1,borderWidthBaseLG:1.5,borderRadiusBaseXS:2,borderRadiusBaseSM:4,borderRadiusBaseMD:6,borderRadiusBaseLG:8,borderRadiusBaseXL:10}),V=function(e){var o=e.colorBackgroundBase100,r=e.colorBackgroundBase200,t=e.colorBackgroundBase300,i=e.colorBackgroundBase400,V=e.colorBackgroundBase500,U=e.colorBackgroundBase600,J=e.colorBackgroundBase700,K=e.colorBackgroundBase800,Y=e.colorBackgroundBase900,q=e.colorBorderBase100,Q=e.colorBorderBase200,$=e.colorBorderBase300,Z=e.colorBorderBase400,ee=e.colorBorderBase500,oe=e.colorBorderBase600,re=e.colorBorderBase700,ne=e.colorBorderBase800,te=e.colorBorderBase900,ie=e.colorForegroundBase100,ae=e.colorForegroundBase200,se=e.colorForegroundBase300,le=e.colorForegroundBase400,ue=e.colorForegroundBase500,de=e.colorForegroundBase600,ge=e.colorForegroundBase700,ce=e.colorForegroundBase800,Be=e.colorForegroundBase900,fe=e.colorForegroundInverse100,Se=e.colorForegroundInverse200,pe=e.colorForegroundInverse300,me=e.colorForegroundInverse400,Le=e.colorForegroundInverse500,be=e.colorForegroundInverse600,Xe=e.colorForegroundInverse700,he=e.colorForegroundInverse800,ye=e.colorForegroundInverse900,Ee=e.fontFamilyBase,ve=e.fontWeightBaseThin,Te=e.fontWeightBaseExtraLight,Re=e.fontWeightBaseLight,Ae=e.fontWeightBaseRegular,Me=e.fontWeightBaseMedium,Fe=e.fontWeightBaseSemiBold,Ie=e.fontWeightBaseBold,We=e.fontWeightBaseExtraBold,Ce=e.fontWeightBaseBlack,_e=e.fontSizeBaseX2S,xe=e.fontSizeBaseXS,we=e.fontSizeBaseSM,De=e.fontSizeBaseMD,Ne=e.fontSizeBaseLG,Pe=e.fontSizeBaseXL,Ge=e.fontSizeBaseX2L,Oe=e.fontSizeBaseX3L,je=e.fontSizeBaseX4L,ke=e.fontSizeBaseX5L,He=e.lineHeightBaseNone,ze=e.lineHeightBaseTight,Ve=e.lineHeightBaseSnug,Ue=e.lineHeightBaseNormal,Je=e.lineHeightBaseRelaxed,Ke=e.lineHeightBaseLoose,Ye=e.spacingBaseX6S,qe=e.spacingBaseX5S,Qe=e.spacingBaseX4S,$e=e.spacingBaseX3S,Ze=e.spacingBaseX2S,eo=e.spacingBaseXS,oo=e.spacingBaseSM,ro=e.spacingBaseMD,no=e.spacingBaseLG,to=e.spacingBaseXL,io=e.spacingBaseX2L,ao=e.spacingBaseX3L,so=e.spacingBaseX4L,lo=e.spacingBaseX5L,uo=e.spacingBaseX6L,go=e.borderWidthBaseSM,co=e.borderWidthBaseMD,Bo=e.borderWidthBaseLG,fo=e.borderRadiusBaseXS,So=e.borderRadiusBaseSM,po=e.borderRadiusBaseMD,mo=e.borderRadiusBaseLG,Lo=e.borderRadiusBaseXL,bo=e.children,Xo=(0,n.useMemo)((function(){return{colorBackgroundBase100:null!=o?o:a,colorBackgroundBase200:null!=r?r:s,colorBackgroundBase300:null!=t?t:l,colorBackgroundBase400:null!=i?i:u,colorBackgroundBase500:null!=V?V:d,colorBackgroundBase600:null!=U?U:g,colorBackgroundBase700:null!=J?J:c,colorBackgroundBase800:null!=K?K:B,colorBackgroundBase900:null!=Y?Y:f,colorBorderBase100:null!=q?q:S,colorBorderBase200:null!=Q?Q:p,colorBorderBase300:null!=$?$:m,colorBorderBase400:null!=Z?Z:L,colorBorderBase500:null!=ee?ee:b,colorBorderBase600:null!=oe?oe:X,colorBorderBase700:null!=re?re:h,colorBorderBase800:null!=ne?ne:y,colorBorderBase900:null!=te?te:E,colorForegroundBase100:null!=ie?ie:v,colorForegroundBase200:null!=ae?ae:T,colorForegroundBase300:null!=se?se:R,colorForegroundBase400:null!=le?le:A,colorForegroundBase500:null!=ue?ue:M,colorForegroundBase600:null!=de?de:F,colorForegroundBase700:null!=ge?ge:I,colorForegroundBase800:null!=ce?ce:W,colorForegroundBase900:null!=Be?Be:C,colorForegroundInverse100:null!=fe?fe:_,colorForegroundInverse200:null!=Se?Se:x,colorForegroundInverse300:null!=pe?pe:w,colorForegroundInverse400:null!=me?me:D,colorForegroundInverse500:null!=Le?Le:N,colorForegroundInverse600:null!=be?be:P,colorForegroundInverse700:null!=Xe?Xe:G,colorForegroundInverse800:null!=he?he:O,colorForegroundInverse900:null!=ye?ye:j,fontFamilyBase:null!=Ee?Ee:k,fontWeightBaseThin:null!=ve?ve:100,fontWeightBaseExtraLight:null!=Te?Te:200,fontWeightBaseLight:null!=Re?Re:300,fontWeightBaseRegular:null!=Ae?Ae:400,fontWeightBaseMedium:null!=Me?Me:500,fontWeightBaseSemiBold:null!=Fe?Fe:600,fontWeightBaseBold:null!=Ie?Ie:700,fontWeightBaseExtraBold:null!=We?We:800,fontWeightBaseBlack:null!=Ce?Ce:900,fontSizeBaseX2S:null!=_e?_e:12,fontSizeBaseXS:null!=xe?xe:14,fontSizeBaseSM:null!=we?we:16,fontSizeBaseMD:null!=De?De:18,fontSizeBaseLG:null!=Ne?Ne:20,fontSizeBaseXL:null!=Pe?Pe:24,fontSizeBaseX2L:null!=Ge?Ge:30,fontSizeBaseX3L:null!=Oe?Oe:36,fontSizeBaseX4L:null!=je?je:48,fontSizeBaseX5L:null!=ke?ke:60,lineHeightBaseNone:null!=He?He:1,lineHeightBaseTight:null!=ze?ze:1.25,lineHeightBaseSnug:null!=Ve?Ve:1.375,lineHeightBaseNormal:null!=Ue?Ue:1.5,lineHeightBaseRelaxed:null!=Je?Je:1.625,lineHeightBaseLoose:null!=Ke?Ke:2,spacingBaseX6S:null!=Ye?Ye:2,spacingBaseX5S:null!=qe?qe:4,spacingBaseX4S:null!=Qe?Qe:6,spacingBaseX3S:null!=$e?$e:8,spacingBaseX2S:null!=Ze?Ze:10,spacingBaseXS:null!=eo?eo:12,spacingBaseSM:null!=oo?oo:14,spacingBaseMD:null!=ro?ro:16,spacingBaseLG:null!=no?no:18,spacingBaseXL:null!=to?to:20,spacingBaseX2L:null!=io?io:24,spacingBaseX3L:null!=ao?ao:28,spacingBaseX4L:null!=so?so:32,spacingBaseX5L:null!=lo?lo:36,spacingBaseX6L:null!=uo?uo:40,borderWidthBaseSM:null!=go?go:.5,borderWidthBaseMD:null!=co?co:1,borderWidthBaseLG:null!=Bo?Bo:1.5,borderRadiusBaseXS:null!=fo?fo:2,borderRadiusBaseSM:null!=So?So:4,borderRadiusBaseMD:null!=po?po:6,borderRadiusBaseLG:null!=mo?mo:8,borderRadiusBaseXL:null!=Lo?Lo:10}}),[o,r,t,i,V,U,J,K,Y,q,Q,$,Z,ee,oe,re,ne,te,ie,ae,se,le,ue,de,ge,ce,Be,fe,Se,pe,me,Le,be,Xe,he,ye,Ee,ve,Te,Re,Ae,Me,Fe,Ie,We,Ce,_e,xe,we,De,Ne,Pe,Ge,Oe,je,ke,He,ze,Ve,Ue,Je,Ke,Ye,qe,Qe,$e,Ze,eo,oo,ro,no,to,io,ao,so,lo,uo,go,co,Bo,fo,So,po,mo,Lo]);return(0,H.jsx)(z.Provider,{value:Xo,children:bo})},U=function(){return(0,n.useContext)(z)}},20:(e,o,r)=>{var n=r(155),t=Symbol.for("react.element"),i=(Symbol.for("react.fragment"),Object.prototype.hasOwnProperty),a=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,s={key:!0,ref:!0,__self:!0,__source:!0};function l(e,o,r){var n,l={},u=null,d=null;for(n in void 0!==r&&(u=""+r),void 0!==o.key&&(u=""+o.key),void 0!==o.ref&&(d=o.ref),o)i.call(o,n)&&!s.hasOwnProperty(n)&&(l[n]=o[n]);if(e&&e.defaultProps)for(n in o=e.defaultProps)void 0===l[n]&&(l[n]=o[n]);return{$$typeof:t,type:e,key:u,ref:d,props:l,_owner:a.current}}o.jsx=l,o.jsxs=l},848:(e,o,r)=>{e.exports=r(20)},729:e=>{e.exports=r},155:e=>{e.exports=o},389:o=>{o.exports=e}},t={};function i(e){var o=t[e];if(void 0!==o)return o.exports;var r=t[e]={exports:{}};return n[e](r,r.exports,i),r.exports}i.n=e=>{var o=e&&e.__esModule?()=>e.default:()=>e;return i.d(o,{a:o}),o},i.d=(e,o)=>{for(var r in o)i.o(o,r)&&!i.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:o[r]})},i.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var a={};i.r(a),i.d(a,{Dimension:()=>d,Media:()=>T.$U,MediaContextProvider:()=>T.tZ,Opacity:()=>I,POSITION_MAX:()=>L,POSITION_MIN:()=>b,Position:()=>m,SIZE_FULL:()=>v,Size:()=>E,Text:()=>l,ThemeContextProvider:()=>R.wX,View:()=>u,useMediaContext:()=>T.$c,useThemeContext:()=>R.wR,useThemeStyleSheet:()=>R.JU});var s=i(389),l=s.Platform.select({native:function(){return i(79).A},web:function(){return i(54).A}})(),u=s.Platform.select({native:function(){return i(689).A},web:function(){return i(741).A}})(),d=function(e){return e[e.PIXEL=0]="PIXEL",e[e.PERCENT=1]="PERCENT",e}({});function g(e){return g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},g(e)}function c(e,o){for(var r=0;r<o.length;r++){var n=o[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,B(n.key),n)}}function B(e){var o=function(e){if("object"!=g(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=g(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==g(o)?o:o+""}var f,S,p,m=function(){return e=function e(o){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:d.PIXEL;!function(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}(this,e),this.amount=o,this.dimension=r},(o=[{key:"toValue",value:function(){return this.dimension===d.PIXEL?s.Platform.select({web:"".concat(this.amount,"px"),default:this.amount}):"".concat(this.amount,"%")}}])&&c(e.prototype,o),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,o}();f=m,p=d,(S=B(S="Dimension"))in f?Object.defineProperty(f,S,{value:p,enumerable:!0,configurable:!0,writable:!0}):f[S]=p;var L=new m(100,m.Dimension.PERCENT),b=new m(0,m.Dimension.PIXEL);function X(e){return X="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},X(e)}function h(e,o){for(var r=0;r<o.length;r++){var n=o[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,y(n.key),n)}}function y(e){var o=function(e){if("object"!=X(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=X(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==X(o)?o:o+""}var E=function(){return function(e,o){return o&&h(e.prototype,o),Object.defineProperty(e,"prototype",{writable:!1}),e}((function e(o){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:d.PIXEL;!function(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}(this,e),this.amount=o,this.dimension=r}),[{key:"toValue",value:function(){return this.dimension===d.PIXEL?s.Platform.select({web:"".concat(this.amount,"px"),default:this.amount}):"".concat(this.amount,"%")}}])}();!function(e,o,r){(o=y(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r}(E,"Dimension",d);var v=new E(100,E.Dimension.PERCENT),T=i(410),R=i(506);function A(e){return A="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},A(e)}function M(e,o){for(var r=0;r<o.length;r++){var n=o[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,F(n.key),n)}}function F(e){var o=function(e){if("object"!=A(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=A(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==A(o)?o:o+""}var I=function(){return function(e,o){return o&&M(e.prototype,o),Object.defineProperty(e,"prototype",{writable:!1}),e}((function e(o){!function(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}(this,e),this.value=o}),[{key:"toValue",value:function(){return this.value}}])}();return a})()));
|
|
2
|
+
!function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o(require("react-native"),require("react-native-svg"),require("react"),require("@emotion/styled")):"function"==typeof define&&define.amd?define("creactive",["react-native","react-native-svg","react","@emotion/styled"],o):"object"==typeof exports?exports.creactive=o(require("react-native"),require("react-native-svg"),require("react"),require("@emotion/styled")):e.creactive=o(e["react-native"],e["react-native-svg"],e.react,e["@emotion/styled"])}(this,((e,o,r,n)=>(()=>{"use strict";var t={661:(e,o,r)=>{var n;function t(e){return t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},t(e)}function i(e,o,r){return(o=function(e){var o=function(e){if("object"!=t(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=t(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==t(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}r.d(o,{SS:()=>s,TP:()=>m,sV:()=>B,LN:()=>g,PI:()=>y,nO:()=>X,r7:()=>a,k8:()=>c,rq:()=>d,lF:()=>h,Wh:()=>p});var a=function(e){return e[e.TRANSPARENT=0]="TRANSPARENT",e[e.BASE_100=1]="BASE_100",e[e.BASE_200=2]="BASE_200",e[e.BASE_300=3]="BASE_300",e[e.BASE_400=4]="BASE_400",e[e.BASE_500=5]="BASE_500",e[e.BASE_600=6]="BASE_600",e[e.BASE_700=7]="BASE_700",e[e.BASE_800=8]="BASE_800",e[e.BASE_900=9]="BASE_900",e[e.INVERSE_100=10]="INVERSE_100",e[e.INVERSE_200=11]="INVERSE_200",e[e.INVERSE_300=12]="INVERSE_300",e[e.INVERSE_400=13]="INVERSE_400",e[e.INVERSE_500=14]="INVERSE_500",e[e.INVERSE_600=15]="INVERSE_600",e[e.INVERSE_700=16]="INVERSE_700",e[e.INVERSE_800=17]="INVERSE_800",e[e.INVERSE_900=18]="INVERSE_900",e}({}),s=(i(i(i(i(i(i(i(i(i(i(n={},a.BASE_100,"colorForegroundBase100"),a.BASE_200,"colorForegroundBase200"),a.BASE_300,"colorForegroundBase300"),a.BASE_400,"colorForegroundBase400"),a.BASE_500,"colorForegroundBase500"),a.BASE_600,"colorForegroundBase600"),a.BASE_700,"colorForegroundBase700"),a.BASE_800,"colorForegroundBase800"),a.BASE_900,"colorForegroundBase900"),a.INVERSE_100,"colorForegroundInverse100"),i(i(i(i(i(i(i(i(n,a.INVERSE_200,"colorForegroundInverse200"),a.INVERSE_300,"colorForegroundInverse300"),a.INVERSE_400,"colorForegroundInverse400"),a.INVERSE_500,"colorForegroundInverse500"),a.INVERSE_600,"colorForegroundInverse600"),a.INVERSE_700,"colorForegroundInverse700"),a.INVERSE_800,"colorForegroundInverse800"),a.INVERSE_900,"colorForegroundInverse900"));function l(e){return l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},l(e)}function u(e,o,r){return(o=function(e){var o=function(e){if("object"!=l(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=l(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==l(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var d=function(e){return e[e.THIN=0]="THIN",e[e.EXTRA_LIGHT=1]="EXTRA_LIGHT",e[e.LIGHT=2]="LIGHT",e[e.REGULAR=3]="REGULAR",e[e.MEDIUM=4]="MEDIUM",e[e.SEMIBOLD=5]="SEMIBOLD",e[e.BOLD=6]="BOLD",e[e.EXTRA_BOLD=7]="EXTRA_BOLD",e[e.BLACK=8]="BLACK",e}({}),g=u(u(u(u(u(u(u(u(u({},d.THIN,"fontWeightBaseThin"),d.EXTRA_LIGHT,"fontWeightBaseExtraLight"),d.LIGHT,"fontWeightBaseLight"),d.REGULAR,"fontWeightBaseRegular"),d.MEDIUM,"fontWeightBaseMedium"),d.SEMIBOLD,"fontWeightBaseSemiBold"),d.BOLD,"fontWeightBaseBold"),d.EXTRA_BOLD,"fontWeightBaseExtraBold"),d.BLACK,"fontWeightBaseBlack"),c=function(e){return e[e.X2S=0]="X2S",e[e.XS=1]="XS",e[e.SM=2]="SM",e[e.MD=3]="MD",e[e.LG=4]="LG",e[e.XL=5]="XL",e[e.X2L=6]="X2L",e[e.X3L=7]="X3L",e[e.X4L=8]="X4L",e[e.X5L=9]="X5L",e}({}),B=u(u(u(u(u(u(u(u(u(u({},c.X2S,"fontSizeBaseX2S"),c.XS,"fontSizeBaseXS"),c.SM,"fontSizeBaseSM"),c.MD,"fontSizeBaseMD"),c.LG,"fontSizeBaseLG"),c.XL,"fontSizeBaseXL"),c.X2L,"fontSizeBaseX2L"),c.X3L,"fontSizeBaseX3L"),c.X4L,"fontSizeBaseX4L"),c.X5L,"fontSizeBaseX5L");function f(e){return f="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f(e)}function S(e,o,r){return(o=function(e){var o=function(e){if("object"!=f(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=f(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==f(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var p=function(e){return e[e.H1=0]="H1",e[e.H2=1]="H2",e[e.H3=2]="H3",e[e.H4=3]="H4",e[e.H5=4]="H5",e[e.H6=5]="H6",e[e.P=6]="P",e[e.SPAN=7]="SPAN",e}({}),m=S(S(S(S(S(S(S(S({},p.H1,"h1"),p.H2,"h2"),p.H3,"h3"),p.H4,"h4"),p.H5,"h5"),p.H6,"h6"),p.P,"p"),p.SPAN,"span");function b(e){return b="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},b(e)}function L(e,o,r){return(o=function(e){var o=function(e){if("object"!=b(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=b(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==b(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var X=function(e){return e[e.LEFT=0]="LEFT",e[e.CENTER=1]="CENTER",e[e.RIGHT=2]="RIGHT",e}({}),h=function(e){return e[e.NONE=0]="NONE",e[e.TIGHT=1]="TIGHT",e[e.SNUG=2]="SNUG",e[e.NORMAL=3]="NORMAL",e[e.RELAXED=4]="RELAXED",e[e.LOOSE=5]="LOOSE",e}({}),y=L(L(L(L(L(L({},h.NONE,"lineHeightBaseNone"),h.TIGHT,"lineHeightBaseTight"),h.SNUG,"lineHeightBaseSnug"),h.NORMAL,"lineHeightBaseNormal"),h.RELAXED,"lineHeightBaseRelaxed"),h.LOOSE,"lineHeightBaseLoose")},231:(e,o,r)=>{r.d(o,{Fu:()=>L,yx:()=>l,ZZ:()=>s,yg:()=>B,jh:()=>f,EM:()=>c,LG:()=>g,ts:()=>d,EO:()=>u,iW:()=>X});var n=r(695),t=r(389),i=r(661),a=t.StyleSheet.create({transparent:{color:"transparent"}}),s=function(e){var o=(0,n.JU)();return e===i.r7.TRANSPARENT?a.transparent:o[i.SS[e]]},l=function(e){var o=(0,n.wR)();return e===i.r7.TRANSPARENT?"transparent":o[i.SS[e]]},u=function(){return(0,n.JU)().fontFamilyBase},d=function(){return(0,n.wR)().fontFamilyBase},g=function(e){return(0,n.JU)()[i.LN[e]]},c=function(e){return(0,n.wR)()[i.LN[e]]},B=function(e){return(0,n.JU)()[i.sV[e]]},f=function(e){return(0,n.wR)()[i.sV[e]]};function S(e){return S="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},S(e)}function p(e,o,r){return(o=function(e){var o=function(e){if("object"!=S(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=S(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==S(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var m=t.StyleSheet.create({textAlignLeft:{textAlign:"left"},textAlignCenter:{textAlign:"center"},textAlignRight:{textAlign:"right"}}),b=p(p(p({},i.nO.LEFT,m.textAlignLeft),i.nO.CENTER,m.textAlignCenter),i.nO.RIGHT,m.textAlignRight),L=function(e){return b[e]},X=function(e){return(0,n.wR)()[i.PI[e]]}},79:(e,o,r)=>{r.d(o,{A:()=>g});var n=r(389),t=r(661),i=new Map,a=function(e,o){var r=[e,o].join("-");if(i.has(r))return i.get(r);var t=n.StyleSheet.create({textLineHeight:{lineHeight:e*o}});return i.set(r,t),t},s=r(231),l=r(848),u=n.StyleSheet.create({default:{display:"inline",margin:0,padding:0,position:"static",listStyle:"none",borderStyle:"solid",boxSizing:"border-box",textDecoration:"none",whiteSpace:"pre-wrap",overflowWrap:"break-word",borderWidth:0}}),d=function(e){var o=e.align,r=void 0===o?t.nO.LEFT:o,i=e.fontWeight,d=void 0===i?t.rq.REGULAR:i,g=e.fontSize,c=void 0===g?t.k8.MD:g,B=e.lineHeight,f=void 0===B?t.lF.NORMAL:B,S=e.maxLines,p=e.color,m=void 0===p?t.r7.BASE_800:p,b=e.children;return(0,l.jsx)(n.Text,{style:[u.default,(0,s.Fu)(r),(0,s.EO)(),(0,s.LG)(d),(0,s.yg)(c),a((0,s.jh)(c),(0,s.iW)(f)),(0,s.ZZ)(m)],numberOfLines:S,children:b})};d.Tag=t.Wh,d.Align=t.nO,d.FontWeight=t.rq,d.FontSize=t.k8,d.LineHeight=t.lF,d.Color=t.r7;const g=d},54:(e,o,r)=>{r.d(o,{A:()=>p});var n,t=r(729),i=r.n(t),a=r(661);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(e,o,r){return(o=function(e){var o=function(e){if("object"!=s(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=s(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==s(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var u,d,g=l(l(l({},a.nO.LEFT,"left"),a.nO.CENTER,"center"),a.nO.RIGHT,"right"),c=i().span(n||(u=["\n display: ",";\n margin: 0;\n padding: 0;\n position: static;\n list-style: none;\n border-style: solid;\n box-sizing: border-box;\n text-decoration: none;\n white-space: pre-wrap;\n overflow: hidden;\n overflow-wrap: break-word;\n text-overflow: ellipsis;\n text-align: ",";\n font-family: ",";\n font-weight: ",";\n font-size: ","px;\n line-height: ","px;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: ",";\n color: ",";\n border-width: 0;\n"],d||(d=u.slice(0)),n=Object.freeze(Object.defineProperties(u,{raw:{value:Object.freeze(d)}}))),(function(e){return void 0===e.maxLines?"inline":"-webkit-box"}),(function(e){var o=e.align;return g[o]}),(function(e){return e.fontFamily}),(function(e){return e.fontWeight}),(function(e){return e.fontSize}),(function(e){return e.lineHeight}),(function(e){return e.maxLines}),(function(e){return e.color})),B=r(231),f=r(848),S=function(e){var o=e.tag,r=e.align,n=void 0===r?a.nO.LEFT:r,t=e.fontWeight,i=void 0===t?a.rq.REGULAR:t,s=e.fontSize,l=void 0===s?a.k8.MD:s,u=e.lineHeight,d=void 0===u?a.lF.NORMAL:u,g=e.maxLines,S=e.color,p=void 0===S?a.r7.BASE_800:S,m=e.children,b=(0,B.jh)(l),L=(0,B.iW)(d);return(0,f.jsx)(c,{as:a.TP[o],align:n,fontFamily:(0,B.ts)(),fontWeight:(0,B.EM)(i),fontSize:b,lineHeight:b*L,color:(0,B.yx)(p),maxLines:g,children:m})};S.Tag=a.Wh,S.Align=a.nO,S.FontWeight=a.rq,S.FontSize=a.k8,S.LineHeight=a.lF,S.Color=a.r7;const p=S},123:(e,o,r)=>{function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function t(e,o,r){return(o=function(e){var o=function(e){if("object"!=n(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=n(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==n(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}r.d(o,{l5:()=>Q,wu:()=>J,b8:()=>M,J2:()=>T,yQ:()=>c,ce:()=>d,kI:()=>a,Er:()=>l,Rw:()=>u,g9:()=>s,X1:()=>V,DK:()=>j,iq:()=>H,Dz:()=>O,mN:()=>U,Wk:()=>k,l2:()=>z,Wi:()=>G,CN:()=>C,th:()=>I,F5:()=>W,TI:()=>R,Vc:()=>v,uC:()=>g,s_:()=>i,lo:()=>_,uY:()=>A,b9:()=>F,Ie:()=>x,JT:()=>w,TL:()=>P,SQ:()=>q});var i=function(e){return e[e.SM=0]="SM",e[e.MD=1]="MD",e[e.LG=2]="LG",e}({}),a=t(t(t({},i.SM,"borderWidthBaseSM"),i.MD,"borderWidthBaseMD"),i.LG,"borderWidthBaseLG"),s=t(t(t({},i.SM,"borderWidthTopBaseSM"),i.MD,"borderWidthTopBaseMD"),i.LG,"borderWidthTopBaseLG"),l=t(t(t({},i.SM,"borderWidthLeftBaseSM"),i.MD,"borderWidthLeftBaseMD"),i.LG,"borderWidthLeftBaseLG"),u=t(t(t({},i.SM,"borderWidthRightBaseSM"),i.MD,"borderWidthRightBaseMD"),i.LG,"borderWidthRightBaseLG"),d=t(t(t({},i.SM,"borderWidthBottomBaseSM"),i.MD,"borderWidthBottomBaseMD"),i.LG,"borderWidthBottomBaseLG"),g=function(e){return e[e.XS=0]="XS",e[e.SM=1]="SM",e[e.MD=2]="MD",e[e.LG=3]="LG",e[e.XL=4]="XL",e[e.MAX=5]="MAX",e}({}),c=t(t(t(t(t({},g.XS,"borderRadiusBaseXS"),g.SM,"borderRadiusBaseSM"),g.MD,"borderRadiusBaseMD"),g.LG,"borderRadiusBaseLG"),g.XL,"borderRadiusBaseXL");function B(e){return B="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},B(e)}function f(e,o,r){return(o=function(e){var o=function(e){if("object"!=B(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=B(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==B(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var S,p,m,b,L,X,h,y,E,v=function(e){return e[e.BASE_100=0]="BASE_100",e[e.BASE_200=1]="BASE_200",e[e.BASE_300=2]="BASE_300",e[e.BASE_400=3]="BASE_400",e[e.BASE_500=4]="BASE_500",e[e.BASE_600=5]="BASE_600",e[e.BASE_700=6]="BASE_700",e[e.BASE_800=7]="BASE_800",e[e.BASE_900=8]="BASE_900",e}({}),T=f(f(f(f(f(f(f(f(f({},v.BASE_100,"colorBorderBase100"),v.BASE_200,"colorBorderBase200"),v.BASE_300,"colorBorderBase300"),v.BASE_400,"colorBorderBase400"),v.BASE_500,"colorBorderBase500"),v.BASE_600,"colorBorderBase600"),v.BASE_700,"colorBorderBase700"),v.BASE_800,"colorBorderBase800"),v.BASE_900,"colorBorderBase900"),R=function(e){return e[e.BASE_100=0]="BASE_100",e[e.BASE_200=1]="BASE_200",e[e.BASE_300=2]="BASE_300",e[e.BASE_400=3]="BASE_400",e[e.BASE_500=4]="BASE_500",e[e.BASE_600=5]="BASE_600",e[e.BASE_700=6]="BASE_700",e[e.BASE_800=7]="BASE_800",e[e.BASE_900=8]="BASE_900",e}({}),M=f(f(f(f(f(f(f(f(f({},R.BASE_100,"colorBackgroundBase100"),R.BASE_200,"colorBackgroundBase200"),R.BASE_300,"colorBackgroundBase300"),R.BASE_400,"colorBackgroundBase400"),R.BASE_500,"colorBackgroundBase500"),R.BASE_600,"colorBackgroundBase600"),R.BASE_700,"colorBackgroundBase700"),R.BASE_800,"colorBackgroundBase800"),R.BASE_900,"colorBackgroundBase900"),A=function(e){return e[e.COLUMN=0]="COLUMN",e[e.ROW=1]="ROW",e}({}),F=function(e){return e[e.FLEX_START=0]="FLEX_START",e[e.FLEX_END=1]="FLEX_END",e[e.CENTER=2]="CENTER",e[e.SPACE_BETWEEN=3]="SPACE_BETWEEN",e[e.SPACE_AROUND=4]="SPACE_AROUND",e[e.SPACE_EVENLY=5]="SPACE_EVENLY",e}({}),I=function(e){return e[e.FLEX_START=0]="FLEX_START",e[e.FLEX_END=1]="FLEX_END",e[e.CENTER=2]="CENTER",e[e.STRETCH=3]="STRETCH",e[e.BASELINE=4]="BASELINE",e}({}),W=function(e){return e[e.FLEX_START=0]="FLEX_START",e[e.FLEX_END=1]="FLEX_END",e[e.CENTER=2]="CENTER",e[e.STRETCH=3]="STRETCH",e[e.BASELINE=4]="BASELINE",e}({}),C=function(e){return e[e.FLEX_START=0]="FLEX_START",e[e.FLEX_END=1]="FLEX_END",e[e.CENTER=2]="CENTER",e[e.STRETCH=3]="STRETCH",e[e.SPACE_BETWEEN=4]="SPACE_BETWEEN",e[e.SPACE_AROUND=5]="SPACE_AROUND",e}({}),x=function(e){return e[e.VISIBLE=0]="VISIBLE",e[e.HIDDEN=1]="HIDDEN",e}({}),w=function(e){return e[e.RELATIVE=0]="RELATIVE",e[e.ABSOLUTE=1]="ABSOLUTE",e}({}),_=function(e){return e[e.SM=0]="SM",e[e.MD=1]="MD",e[e.LG=2]="LG",e}({});function D(e){return D="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},D(e)}function N(e,o,r){return(o=function(e){var o=function(e){if("object"!=D(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=D(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==D(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var P=function(e){return e[e.X6S=0]="X6S",e[e.X5S=1]="X5S",e[e.X4S=2]="X4S",e[e.X3S=3]="X3S",e[e.X2S=4]="X2S",e[e.XS=5]="XS",e[e.SM=6]="SM",e[e.MD=7]="MD",e[e.LG=8]="LG",e[e.XL=9]="XL",e[e.X2L=10]="X2L",e[e.X3L=11]="X3L",e[e.X4L=12]="X4L",e[e.X5L=13]="X5L",e[e.X6L=14]="X6L",e}({}),O=(N(N(N(N(N(N(N(N(N(N(S={},P.X6S,"marginTopBaseX6S"),P.X5S,"marginTopBaseX5S"),P.X4S,"marginTopBaseX4S"),P.X3S,"marginTopBaseX3S"),P.X2S,"marginTopBaseX2S"),P.XS,"marginTopBaseXS"),P.SM,"marginTopBaseSM"),P.MD,"marginTopBaseMD"),P.LG,"marginTopBaseLG"),P.XL,"marginTopBaseXL"),N(N(N(N(N(S,P.X2L,"marginTopBaseX2L"),P.X3L,"marginTopBaseX3L"),P.X4L,"marginTopBaseX4L"),P.X5L,"marginTopBaseX5L"),P.X6L,"marginTopBaseX6L")),G=(N(N(N(N(N(N(N(N(N(N(p={},P.X6S,"paddingTopBaseX6S"),P.X5S,"paddingTopBaseX5S"),P.X4S,"paddingTopBaseX4S"),P.X3S,"paddingTopBaseX3S"),P.X2S,"paddingTopBaseX2S"),P.XS,"paddingTopBaseXS"),P.SM,"paddingTopBaseSM"),P.MD,"paddingTopBaseMD"),P.LG,"paddingTopBaseLG"),P.XL,"paddingTopBaseXL"),N(N(N(N(N(p,P.X2L,"paddingTopBaseX2L"),P.X3L,"paddingTopBaseX3L"),P.X4L,"paddingTopBaseX4L"),P.X5L,"paddingTopBaseX5L"),P.X6L,"paddingTopBaseX6L")),j=(N(N(N(N(N(N(N(N(N(N(m={},P.X6S,"marginLeftBaseX6S"),P.X5S,"marginLeftBaseX5S"),P.X4S,"marginLeftBaseX4S"),P.X3S,"marginLeftBaseX3S"),P.X2S,"marginLeftBaseX2S"),P.XS,"marginLeftBaseXS"),P.SM,"marginLeftBaseSM"),P.MD,"marginLeftBaseMD"),P.LG,"marginLeftBaseLG"),P.XL,"marginLeftBaseXL"),N(N(N(N(N(m,P.X2L,"marginLeftBaseX2L"),P.X3L,"marginLeftBaseX3L"),P.X4L,"marginLeftBaseX4L"),P.X5L,"marginLeftBaseX5L"),P.X6L,"marginLeftBaseX6L")),k=(N(N(N(N(N(N(N(N(N(N(b={},P.X6S,"paddingLeftBaseX6S"),P.X5S,"paddingLeftBaseX5S"),P.X4S,"paddingLeftBaseX4S"),P.X3S,"paddingLeftBaseX3S"),P.X2S,"paddingLeftBaseX2S"),P.XS,"paddingLeftBaseXS"),P.SM,"paddingLeftBaseSM"),P.MD,"paddingLeftBaseMD"),P.LG,"paddingLeftBaseLG"),P.XL,"paddingLeftBaseXL"),N(N(N(N(N(b,P.X2L,"paddingLeftBaseX2L"),P.X3L,"paddingLeftBaseX3L"),P.X4L,"paddingLeftBaseX4L"),P.X5L,"paddingLeftBaseX5L"),P.X6L,"paddingLeftBaseX6L")),H=(N(N(N(N(N(N(N(N(N(N(L={},P.X6S,"marginRightBaseX6S"),P.X5S,"marginRightBaseX5S"),P.X4S,"marginRightBaseX4S"),P.X3S,"marginRightBaseX3S"),P.X2S,"marginRightBaseX2S"),P.XS,"marginRightBaseXS"),P.SM,"marginRightBaseSM"),P.MD,"marginRightBaseMD"),P.LG,"marginRightBaseLG"),P.XL,"marginRightBaseXL"),N(N(N(N(N(L,P.X2L,"marginRightBaseX2L"),P.X3L,"marginRightBaseX3L"),P.X4L,"marginRightBaseX4L"),P.X5L,"marginRightBaseX5L"),P.X6L,"marginRightBaseX6L")),z=(N(N(N(N(N(N(N(N(N(N(X={},P.X6S,"paddingRightBaseX6S"),P.X5S,"paddingRightBaseX5S"),P.X4S,"paddingRightBaseX4S"),P.X3S,"paddingRightBaseX3S"),P.X2S,"paddingRightBaseX2S"),P.XS,"paddingRightBaseXS"),P.SM,"paddingRightBaseSM"),P.MD,"paddingRightBaseMD"),P.LG,"paddingRightBaseLG"),P.XL,"paddingRightBaseXL"),N(N(N(N(N(X,P.X2L,"paddingRightBaseX2L"),P.X3L,"paddingRightBaseX3L"),P.X4L,"paddingRightBaseX4L"),P.X5L,"paddingRightBaseX5L"),P.X6L,"paddingRightBaseX6L")),V=(N(N(N(N(N(N(N(N(N(N(h={},P.X6S,"marginBottomBaseX6S"),P.X5S,"marginBottomBaseX5S"),P.X4S,"marginBottomBaseX4S"),P.X3S,"marginBottomBaseX3S"),P.X2S,"marginBottomBaseX2S"),P.XS,"marginBottomBaseXS"),P.SM,"marginBottomBaseSM"),P.MD,"marginBottomBaseMD"),P.LG,"marginBottomBaseLG"),P.XL,"marginBottomBaseXL"),N(N(N(N(N(h,P.X2L,"marginBottomBaseX2L"),P.X3L,"marginBottomBaseX3L"),P.X4L,"marginBottomBaseX4L"),P.X5L,"marginBottomBaseX5L"),P.X6L,"marginBottomBaseX6L")),U=(N(N(N(N(N(N(N(N(N(N(y={},P.X6S,"paddingBottomBaseX6S"),P.X5S,"paddingBottomBaseX5S"),P.X4S,"paddingBottomBaseX4S"),P.X3S,"paddingBottomBaseX3S"),P.X2S,"paddingBottomBaseX2S"),P.XS,"paddingBottomBaseXS"),P.SM,"paddingBottomBaseSM"),P.MD,"paddingBottomBaseMD"),P.LG,"paddingBottomBaseLG"),P.XL,"paddingBottomBaseXL"),N(N(N(N(N(y,P.X2L,"paddingBottomBaseX2L"),P.X3L,"paddingBottomBaseX3L"),P.X4L,"paddingBottomBaseX4L"),P.X5L,"paddingBottomBaseX5L"),P.X6L,"paddingBottomBaseX6L")),J=(N(N(N(N(N(N(N(N(N(N(E={},P.X6S,"spacingBaseX6S"),P.X5S,"spacingBaseX5S"),P.X4S,"spacingBaseX4S"),P.X3S,"spacingBaseX3S"),P.X2S,"spacingBaseX2S"),P.XS,"spacingBaseXS"),P.SM,"spacingBaseSM"),P.MD,"spacingBaseMD"),P.LG,"spacingBaseLG"),P.XL,"spacingBaseXL"),N(N(N(N(N(E,P.X2L,"spacingBaseX2L"),P.X3L,"spacingBaseX3L"),P.X4L,"spacingBaseX4L"),P.X5L,"spacingBaseX5L"),P.X6L,"spacingBaseX6L"));function K(e){return K="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},K(e)}function Y(e,o,r){return(o=function(e){var o=function(e){if("object"!=K(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=K(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==K(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var q=function(e){return e[e.DIV=0]="DIV",e[e.FIGURE=1]="FIGURE",e[e.FIGCAPTION=2]="FIGCAPTION",e[e.ARTICLE=3]="ARTICLE",e[e.SECTION=4]="SECTION",e[e.HEADER=5]="HEADER",e[e.MAIN=6]="MAIN",e[e.FOOTER=7]="FOOTER",e}({}),Q=Y(Y(Y(Y(Y(Y(Y(Y({},q.DIV,"div"),q.FIGURE,"figure"),q.FIGCAPTION,"figcaption"),q.ARTICLE,"article"),q.SECTION,"section"),q.HEADER,"header"),q.MAIN,"main"),q.FOOTER,"footer")},579:(e,o,r)=>{r.d(o,{GK:()=>_,lF:()=>F,r1:()=>C,QR:()=>b,vd:()=>m,M4:()=>p,TY:()=>S,v5:()=>f,UI:()=>B,bS:()=>d,ft:()=>g,TX:()=>l,Ei:()=>u,ud:()=>a,LN:()=>s,ev:()=>Q,Ps:()=>ee,kP:()=>E,VW:()=>R,vD:()=>le,hX:()=>te,w7:()=>ae,Vf:()=>re,X6:()=>D,S:()=>j,Gd:()=>ue,mu:()=>ie,XV:()=>se,we:()=>ne,xT:()=>U,bW:()=>J,FK:()=>oe,aL:()=>de});var n=r(695),t=r(389),i=r(123),a=function(e){var o;return null!==(o=(0,n.JU)()[i.kI[e]])&&void 0!==o?o:{borderWidth:0}},s=function(e){var o;return null!==(o=(0,n.JU)()[i.g9[e]])&&void 0!==o?o:{borderTopWidth:void 0}},l=function(e){var o;return null!==(o=(0,n.JU)()[i.Er[e]])&&void 0!==o?o:{borderLeftWidth:void 0}},u=function(e){var o;return null!==(o=(0,n.JU)()[i.Rw[e]])&&void 0!==o?o:{borderRightWidth:void 0}},d=function(e){var o;return null!==(o=(0,n.JU)()[i.ce[e]])&&void 0!==o?o:{borderBottomWidth:void 0}},g=function(e){var o=(0,n.wR)();return void 0===e?"0px":"".concat(o[i.kI[e]],"px")},c=t.StyleSheet.create({borderRadiusMax:{borderRadius:"50%"}}),B=function(e){var o=(0,n.JU)();return e===i.uC.MAX?c.borderRadiusMax:o[i.yQ[e]]},f=function(e){var o=(0,n.wR)();if(void 0!==e)return e===i.uC.MAX?"50%":"".concat(o[i.yQ[e]],"px")},S=function(e){return(0,n.JU)()[i.J2[e]]},p=function(e){return(0,n.wR)()[i.J2[e]]},m=function(e){var o=(0,n.JU)();if(void 0!==e)return e in i.TI?o[i.b8[e]]:{backgroundColor:e}},b=function(e){var o=(0,n.wR)();if(void 0!==e)return e in i.TI?o[i.b8[e]]:e};function L(e){return L="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},L(e)}function X(e,o,r){return(o=function(e){var o=function(e){if("object"!=L(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=L(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==L(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var h=t.StyleSheet.create({flexDirectionColumn:{flexDirection:"column"},flexDirectionRow:{flexDirection:"row"}}),y=X(X({},i.uY.COLUMN,h.flexDirectionColumn),i.uY.ROW,h.flexDirectionRow),E=function(e){return y[e]},v=t.StyleSheet.create({justifuContentFlexStart:{justifyContent:"flex-start"},justifuContentFlexEnd:{justifyContent:"flex-end"},justifuContentCenter:{justifyContent:"center"},justifuContentSpaceBetween:{justifyContent:"space-between"},justifuContentSpaceAround:{justifyContent:"space-around"},justifuContentSpaceEvenly:{justifyContent:"space-evenly"}}),T=X(X(X(X(X(X({},i.b9.FLEX_START,v.justifuContentFlexStart),i.b9.FLEX_END,v.justifuContentFlexEnd),i.b9.CENTER,v.justifuContentCenter),i.b9.SPACE_BETWEEN,v.justifuContentSpaceBetween),i.b9.SPACE_AROUND,v.justifuContentSpaceAround),i.b9.SPACE_EVENLY,v.justifuContentSpaceEvenly),R=function(e){return T[e]},M=t.StyleSheet.create({alignItemsFlexStart:{alignItems:"flex-start"},alignItemsFlexEnd:{alignItems:"flex-end"},alignItemsCenter:{alignItems:"center"},alignItemsStretch:{alignItems:"stretch"},alignItemsBaseline:{alignItems:"baseline"}}),A=X(X(X(X(X({},i.th.FLEX_START,M.alignItemsFlexStart),i.th.FLEX_END,M.alignItemsFlexEnd),i.th.CENTER,M.alignItemsCenter),i.th.STRETCH,M.alignItemsStretch),i.th.BASELINE,M.alignItemsBaseline),F=function(e){return A[e]},I=t.StyleSheet.create({alignSelfFlexStart:{alignSelf:"flex-start"},alignSelfFlexEnd:{alignSelf:"flex-end"},alignSelfCenter:{alignSelf:"center"},alignSelfStretch:{alignSelf:"stretch"},alignSelfBaseline:{alignSelf:"baseline"}}),W=X(X(X(X(X({},i.F5.FLEX_START,I.alignSelfFlexStart),i.F5.FLEX_END,I.alignSelfFlexEnd),i.F5.CENTER,I.alignSelfCenter),i.F5.STRETCH,I.alignSelfStretch),i.F5.BASELINE,I.alignSelfBaseline),C=function(e){return W[e]},x=t.StyleSheet.create({alignContentFlexStart:{alignContent:"flex-start"},alignContentFlexEnd:{alignContent:"flex-end"},alignContentCenter:{alignContent:"center"},alignContentStretch:{alignContent:"stretch"},alignContentSpaceBetween:{alignContent:"space-between"},alignContentSpaceAround:{alignContent:"space-around"},valignContentSpaceEvenly:{alignContent:"space-evenly"}}),w=X(X(X(X(X(X({},i.CN.FLEX_START,x.alignContentFlexStart),i.CN.FLEX_END,x.alignContentFlexEnd),i.CN.CENTER,x.alignContentCenter),i.CN.STRETCH,x.alignContentStretch),i.CN.SPACE_BETWEEN,x.alignContentSpaceBetween),i.CN.SPACE_AROUND,x.alignContentSpaceAround),_=function(e){return w[e]},D=function(e){if(e)return e.toValue()};function N(e){return N="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},N(e)}function P(e,o,r){return(o=function(e){var o=function(e){if("object"!=N(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=N(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==N(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var O=t.StyleSheet.create({overflowVisible:{overflow:"visible"},overflowHidden:{overflow:"hidden"}}),G=P(P({},i.Ie.VISIBLE,O.overflowVisible),i.Ie.HIDDEN,O.overflowHidden),j=function(e){return G[e]};function k(e){return k="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},k(e)}function H(e,o,r){return(o=function(e){var o=function(e){if("object"!=k(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=k(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==k(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var z=t.StyleSheet.create({positionRelative:{position:"relative"},positionAbsolute:{position:"absolute"}}),V=H(H({},i.JT.RELATIVE,z.positionRelative),i.JT.ABSOLUTE,z.positionAbsolute),U=function(e){return V[e]},J=function(e){if(e)return e.toValue()};function K(e){return K="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},K(e)}function Y(e,o,r){return(o=function(e){var o=function(e){if("object"!=K(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=K(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==K(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var q=Y(Y(Y({},i.lo.SM,"0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px -1px rgba(0,0,0,0.1)"),i.lo.MD,"0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -2px rgba(0,0,0,0.1)"),i.lo.LG,"0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -4px rgba(0,0,0,0.1)"),Q=function(e){return q[e]},$=t.StyleSheet.create({boxShadowSM:{boxShadow:q[i.lo.SM]},boxShadowMD:{boxShadow:q[i.lo.MD]},boxShadowLG:{boxShadow:q[i.lo.LG]}}),Z=Y(Y(Y({},i.lo.SM,$.boxShadowSM),i.lo.MD,$.boxShadowMD),i.lo.LG,$.boxShadowLG),ee=function(e){return Z[e]},oe=function(e){if(e)return e.toValue()},re=function(e){return(0,n.JU)()[i.Dz[e]]},ne=function(e){return(0,n.JU)()[i.Wi[e]]},te=function(e){return(0,n.JU)()[i.DK[e]]},ie=function(e){return(0,n.JU)()[i.Wk[e]]},ae=function(e){return(0,n.JU)()[i.iq[e]]},se=function(e){return(0,n.JU)()[i.l2[e]]},le=function(e){return(0,n.JU)()[i.X1[e]]},ue=function(e){return(0,n.JU)()[i.mN[e]]},de=function(e){var o=(0,n.wR)();if(void 0!==o[i.wu[e]])return"".concat(o[i.wu[e]],"px")}},689:(e,o,r)=>{r.d(o,{A:()=>u});var n=r(389),t=r(123),i=r(579),a=r(848),s=n.StyleSheet.create({default:{display:"flex",margin:0,padding:0,zIndex:0,position:"relative",listStyle:"none",borderStyle:"solid",textDecoration:"none",boxSizing:"border-box"}}),l=function(e){var o=e.testId,r=e.position,l=void 0===r?t.JT.RELATIVE:r,u=e.top,d=e.left,g=e.right,c=e.bottom,B=e.opacity,f=e.overflow,S=void 0===f?t.Ie.VISIBLE:f,p=e.flexDirection,m=void 0===p?t.uY.COLUMN:p,b=e.justifyContent,L=void 0===b?t.b9.FLEX_START:b,X=e.alignItems,h=void 0===X?t.th.STRETCH:X,y=e.alignSelf,E=e.alignContent,v=void 0===E?t.CN.FLEX_START:E,T=e.marginTop,R=e.paddingTop,M=e.marginLeft,A=e.paddingLeft,F=e.marginRight,I=e.paddingRight,W=e.marginBottom,C=e.paddingBottom,x=e.minWidth,w=e.width,_=e.maxWidth,D=e.minHeight,N=e.height,P=e.maxHeight,O=e.boxShadow,G=e.borderColor,j=e.borderWidth,k=e.borderWidthTop,H=e.borderWidthLeft,z=e.borderWidthRight,V=e.borderWidthBottom,U=e.borderRadius,J=e.backgroundColor,K=e.children;return(0,a.jsx)(n.View,{testID:o,style:[s.default,(0,i.xT)(l),{top:(0,i.bW)(u),left:(0,i.bW)(d),right:(0,i.bW)(g),bottom:(0,i.bW)(c)},{opacity:(0,i.X6)(B)},(0,i.S)(S),(0,i.kP)(m),(0,i.VW)(L),(0,i.lF)(h),(0,i.r1)(y),(0,i.GK)(v),(0,i.Vf)(T),(0,i.we)(R),(0,i.hX)(M),(0,i.mu)(A),(0,i.w7)(F),(0,i.XV)(I),(0,i.vD)(W),(0,i.Gd)(C),{minWidth:(0,i.FK)(x),width:(0,i.FK)(w),maxWidth:(0,i.FK)(_),minHeight:(0,i.FK)(D),height:(0,i.FK)(N),maxHeight:(0,i.FK)(P)},(0,i.Ps)(O),(0,i.TY)(G),(0,i.ud)(j),(0,i.LN)(k),(0,i.TX)(H),(0,i.Ei)(z),(0,i.bS)(V),(0,i.UI)(U),(0,i.vd)(J)],children:K})};l.Tag=t.SQ,l.Position=t.JT,l.Overflow=t.Ie,l.FlexDirection=t.uY,l.JustifyContent=t.b9,l.AlignItems=t.th,l.AlignSelf=t.F5,l.AlignContent=t.CN,l.Spacing=t.TL,l.BoxShadow=t.lo,l.BorderColor=t.Vc,l.BorderWidth=t.s_,l.BorderRadius=t.uC,l.BackgroundColor=t.TI;const u=l},741:(e,o,r)=>{r.d(o,{A:()=>y});var n,t=r(729),i=r.n(t),a=r(123);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(e,o,r){return(o=function(e){var o=function(e){if("object"!=s(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=s(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==s(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var u,d,g=l(l({},a.JT.RELATIVE,"relative"),a.JT.ABSOLUTE,"absolute"),c=l(l({},a.Ie.VISIBLE,"visible"),a.Ie.HIDDEN,"hidden"),B=l(l({},a.uY.COLUMN,"column"),a.uY.ROW,"row"),f=l(l(l(l(l(l({},a.b9.FLEX_START,"flex-start"),a.b9.FLEX_END,"flex-end"),a.b9.CENTER,"center"),a.b9.SPACE_BETWEEN,"space-between"),a.b9.SPACE_AROUND,"space-around"),a.b9.SPACE_EVENLY,"space-evenly"),S=l(l(l(l(l({},a.th.FLEX_START,"flex-start"),a.th.FLEX_END,"flex-end"),a.th.STRETCH,"stretch"),a.th.CENTER,"center"),a.th.BASELINE,"baseline"),p=l(l(l(l(l({},a.F5.FLEX_START,"flex-start"),a.F5.FLEX_END,"flex-end"),a.F5.CENTER,"center"),a.F5.STRETCH,"stretch"),a.F5.BASELINE,"baseline"),m=l(l(l(l(l(l({},a.CN.FLEX_START,"flex-start"),a.CN.FLEX_END,"flex-end"),a.CN.CENTER,"center"),a.CN.STRETCH,"stretch"),a.CN.SPACE_BETWEEN,"space-between"),a.CN.SPACE_AROUND,"space-around"),b=i().div(n||(u=["\n display: flex;\n margin: 0;\n padding: 0;\n z-index: 0;\n position: relative;\n list-style: none;\n border-style: solid;\n text-decoration: none;\n box-sizing: border-box;\n position: ",";\n top: ",";\n left: ",";\n right: ",";\n bottom: ",";\n opacity: ",";\n overflow: ",";\n flex-direction: ",";\n justify-content: ",";\n align-items: ",";\n align-self: ",";\n align-content: ",";\n margin-top: ",";\n padding-top: ",";\n margin-left: ",";\n padding-left: ",";\n margin-right: ",";\n padding-right: ",";\n margin-bottom: ",";\n padding-bottom: ",";\n min-width: ",";\n width: ",";\n max-width: ",";\n min-height: ",";\n height: ",";\n max-height: ",";\n box-shadow: ",";\n border-color: ",";\n border-width: ",";\n border-top-width: ",";\n border-left-width: ",";\n border-right-width: ",";\n border-bottom-width: ",";\n border-radius: ",";\n background-color: ",";\n"],d||(d=u.slice(0)),n=Object.freeze(Object.defineProperties(u,{raw:{value:Object.freeze(d)}}))),(function(e){var o=e.position;return g[o]}),(function(e){return e.top}),(function(e){return e.left}),(function(e){return e.right}),(function(e){return e.bottom}),(function(e){return e.opacity}),(function(e){var o=e.overflow;return c[o]}),(function(e){var o=e.flexDirection;return B[o]}),(function(e){var o=e.justifyContent;return f[o]}),(function(e){var o=e.alignItems;return S[o]}),(function(e){var o=e.alignSelf;return p[o]}),(function(e){var o=e.alignContent;return m[o]}),(function(e){return e.marginTop}),(function(e){return e.paddingTop}),(function(e){return e.marginLeft}),(function(e){return e.paddingLeft}),(function(e){return e.marginRight}),(function(e){return e.paddingRight}),(function(e){return e.marginBottom}),(function(e){return e.paddingBottom}),(function(e){return e.minWidth}),(function(e){return e.width}),(function(e){return e.maxWidth}),(function(e){return e.minHeight}),(function(e){return e.height}),(function(e){return e.maxHeight}),(function(e){return e.boxShadow}),(function(e){return e.borderColor}),(function(e){return e.borderWidth}),(function(e){return e.borderWidthTop}),(function(e){return e.borderWidthLeft}),(function(e){return e.borderWidthRight}),(function(e){return e.borderWidthBottom}),(function(e){return e.borderRadius}),(function(e){return e.backgroundColor})),L=r(579),X=r(848),h=function(e){var o=e.testId,r=e.tag,n=void 0===r?a.SQ.DIV:r,t=e.position,i=void 0===t?a.JT.RELATIVE:t,s=e.top,l=e.left,u=e.right,d=e.bottom,g=e.opacity,c=e.overflow,B=void 0===c?a.Ie.VISIBLE:c,f=e.flexDirection,S=void 0===f?a.uY.COLUMN:f,p=e.justifyContent,m=void 0===p?a.b9.FLEX_START:p,h=e.alignItems,y=void 0===h?a.th.STRETCH:h,E=e.alignSelf,v=e.alignContent,T=void 0===v?a.CN.FLEX_START:v,R=e.marginTop,M=e.paddingTop,A=e.marginLeft,F=e.paddingLeft,I=e.marginRight,W=e.paddingRight,C=e.marginBottom,x=e.paddingBottom,w=e.minWidth,_=e.width,D=e.maxWidth,N=e.minHeight,P=e.height,O=e.maxHeight,G=e.boxShadow,j=e.borderColor,k=e.borderWidth,H=e.borderWidthTop,z=e.borderWidthLeft,V=e.borderWidthRight,U=e.borderWidthBottom,J=e.borderRadius,K=e.backgroundColor,Y=e.children;return(0,X.jsx)(b,{"data-testid":o,as:a.l5[n],position:i,top:(0,L.bW)(s),left:(0,L.bW)(l),right:(0,L.bW)(u),bottom:(0,L.bW)(d),opacity:(0,L.X6)(g),overflow:B,flexDirection:S,justifyContent:m,alignItems:y,alignSelf:E,alignContent:T,marginTop:(0,L.aL)(R),paddingTop:(0,L.aL)(M),marginLeft:(0,L.aL)(A),paddingLeft:(0,L.aL)(F),marginRight:(0,L.aL)(I),paddingRight:(0,L.aL)(W),marginBottom:(0,L.aL)(C),paddingBottom:(0,L.aL)(x),minWidth:(0,L.FK)(w),width:(0,L.FK)(_),maxWidth:(0,L.FK)(D),minHeight:(0,L.FK)(N),height:(0,L.FK)(P),maxHeight:(0,L.FK)(O),boxShadow:(0,L.ev)(G),borderColor:(0,L.M4)(j),borderWidth:(0,L.ft)(k),borderWidthTop:(0,L.ft)(H),borderWidthLeft:(0,L.ft)(z),borderWidthRight:(0,L.ft)(V),borderWidthBottom:(0,L.ft)(U),borderRadius:(0,L.v5)(J),backgroundColor:(0,L.QR)(K),children:Y})};h.Tag=a.SQ,h.Position=a.JT,h.Overflow=a.Ie,h.FlexDirection=a.uY,h.JustifyContent=a.b9,h.AlignItems=a.th,h.AlignSelf=a.F5,h.AlignContent=a.CN,h.Spacing=a.TL,h.BoxShadow=a.lo,h.BorderColor=a.Vc,h.BorderWidth=a.s_,h.BorderRadius=a.uC,h.BackgroundColor=a.TI;const y=h},695:(e,o,r)=>{r.d(o,{JU:()=>n.JU,wR:()=>n.wR}),r(410);var n=r(506)},410:(e,o,r)=>{r.d(o,{$U:()=>S,tZ:()=>l,$c:()=>u});var n=r(155),t=r(389),i=function(e){return e[e.MD=0]="MD",e[e.LG=1]="LG",e[e.XL=2]="XL",e}({}),a=r(848),s=(0,n.createContext)({}),l=function(e){var o=e.breakpointMD,r=e.breakpointLG,l=e.breakpointXL,u=e.children,d=function(e,o,r){var a=(0,t.useWindowDimensions)().width;return(0,n.useMemo)((function(){return a>=r?i.XL:a>=o?i.LG:a>=e?i.MD:void 0}),[a>=r,a>=o,a>=e])}(null!=o?o:768,null!=r?r:1024,null!=l?l:1280),g=(0,n.useMemo)((function(){return{breakpoint:d}}),[d]);return(0,a.jsx)(s.Provider,{value:g,children:(0,a.jsx)(m,{children:u})})},u=function(){return(0,n.useContext)(s)};function d(e){return d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},d(e)}function g(e,o){(null==o||o>e.length)&&(o=e.length);for(var r=0,n=Array(o);r<o;r++)n[r]=e[r];return n}function c(e,o,r){return(o=function(e){var o=function(e){if("object"!=d(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=d(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==d(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var B=c(c(c({},i.MD,1),i.LG,2),i.XL,3),f=function(e,o){return B[e]>B[o]},S=t.Platform.select({web:function(e){var o=e.isDefault,r=e.isOtherwise,t=e.breakpoint,i=e.children,a=u(),s=function(e,o){return function(e){if(Array.isArray(e))return e}(e)||function(e,o){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,t,i,a,s=[],l=!0,u=!1;try{if(i=(r=r.call(e)).next,0===o){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(s.push(n.value),s.length!==o);l=!0);}catch(e){u=!0,t=e}finally{try{if(!l&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(u)throw t}}return s}}(e,o)||function(e,o){if(e){if("string"==typeof e)return g(e,o);var r={}.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?g(e,o):void 0}}(e,o)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}((0,n.useState)(!1),2),l=s[0],d=s[1];if((0,n.useEffect)((function(){d(!0)}),[]),l){if(o&&void 0===a.breakpoint)return i;if(a.breakpoint===t)return i;if(r&&f(a.breakpoint,t))return i}else if(o)return i},default:function(e){var o=e.isDefault,r=e.isOtherwise,n=e.breakpoint,t=e.children,i=u();return o&&void 0===i.breakpoint||i.breakpoint===n||r&&f(i.breakpoint,n)?t:void 0}});function p(e,o){(null==o||o>e.length)&&(o=e.length);for(var r=0,n=Array(o);r<o;r++)n[r]=e[r];return n}S.Breakpoint=i;var m=t.Platform.select({web:function(e){var o=e.children,r=(0,n.useRef)(),t=function(e,o){return function(e){if(Array.isArray(e))return e}(e)||function(e,o){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,t,i,a,s=[],l=!0,u=!1;try{if(i=(r=r.call(e)).next,0===o){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(s.push(n.value),s.length!==o);l=!0);}catch(e){u=!0,t=e}finally{try{if(!l&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(u)throw t}}return s}}(e,o)||function(e,o){if(e){if("string"==typeof e)return p(e,o);var r={}.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?p(e,o):void 0}}(e,o)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}((0,n.useState)(!1),2),i=t[0],s=t[1];(0,n.useEffect)((function(){s(!0)}),[]);var l=(0,n.useMemo)((function(){return i||"undefined"==typeof window||"undefined"==typeof document?{display:"flex",flexGrow:1,flexShrink:1,flexBasis:"100%",flexDirection:"column"}:{display:"none",flexGrow:1,flexShrink:1,flexBasis:"100%",flexDirection:"column"}}),[i]);return(0,a.jsxs)("div",{ref:r,style:l,suppressHydrationWarning:!0,children:[(0,a.jsx)("script",{dangerouslySetInnerHTML:{__html:'document.currentScript.parentElement.style.display="none"'}}),o]})},default:function(e){return e.children}})},506:(e,o,r)=>{r.d(o,{wX:()=>V,wR:()=>U,JU:()=>i});var n=r(155),t=r(389),i=function(){var e=U();return(0,n.useMemo)((function(){return t.StyleSheet.create({colorBackgroundBase100:{backgroundColor:e.colorBackgroundBase100},colorBackgroundBase200:{backgroundColor:e.colorBackgroundBase200},colorBackgroundBase300:{backgroundColor:e.colorBackgroundBase300},colorBackgroundBase400:{backgroundColor:e.colorBackgroundBase400},colorBackgroundBase500:{backgroundColor:e.colorBackgroundBase500},colorBackgroundBase600:{backgroundColor:e.colorBackgroundBase600},colorBackgroundBase700:{backgroundColor:e.colorBackgroundBase700},colorBackgroundBase800:{backgroundColor:e.colorBackgroundBase800},colorBackgroundBase900:{backgroundColor:e.colorBackgroundBase900},colorBorderBase100:{borderColor:e.colorBorderBase100},colorBorderBase200:{borderColor:e.colorBorderBase200},colorBorderBase300:{borderColor:e.colorBorderBase300},colorBorderBase400:{borderColor:e.colorBorderBase400},colorBorderBase500:{borderColor:e.colorBorderBase500},colorBorderBase600:{borderColor:e.colorBorderBase600},colorBorderBase700:{borderColor:e.colorBorderBase700},colorBorderBase800:{borderColor:e.colorBorderBase800},colorBorderBase900:{borderColor:e.colorBorderBase900},colorForegroundBase100:{color:e.colorForegroundBase100},colorForegroundBase200:{color:e.colorForegroundBase200},colorForegroundBase300:{color:e.colorForegroundBase300},colorForegroundBase400:{color:e.colorForegroundBase400},colorForegroundBase500:{color:e.colorForegroundBase500},colorForegroundBase600:{color:e.colorForegroundBase600},colorForegroundBase700:{color:e.colorForegroundBase700},colorForegroundBase800:{color:e.colorForegroundBase800},colorForegroundBase900:{color:e.colorForegroundBase900},colorForegroundInverse100:{color:e.colorForegroundInverse100},colorForegroundInverse200:{color:e.colorForegroundInverse200},colorForegroundInverse300:{color:e.colorForegroundInverse300},colorForegroundInverse400:{color:e.colorForegroundInverse400},colorForegroundInverse500:{color:e.colorForegroundInverse500},colorForegroundInverse600:{color:e.colorForegroundInverse600},colorForegroundInverse700:{color:e.colorForegroundInverse700},colorForegroundInverse800:{color:e.colorForegroundInverse800},colorForegroundInverse900:{color:e.colorForegroundInverse900},fontFamilyBase:{fontFamily:e.fontFamilyBase},fontWeightBaseThin:{fontWeight:e.fontWeightBaseThin},fontWeightBaseExtraLight:{fontWeight:e.fontWeightBaseExtraLight},fontWeightBaseLight:{fontWeight:e.fontWeightBaseLight},fontWeightBaseRegular:{fontWeight:e.fontWeightBaseRegular},fontWeightBaseMedium:{fontWeight:e.fontWeightBaseMedium},fontWeightBaseSemiBold:{fontWeight:e.fontWeightBaseSemiBold},fontWeightBaseBold:{fontWeight:e.fontWeightBaseBold},fontWeightBaseExtraBold:{fontWeight:e.fontWeightBaseExtraBold},fontWeightBaseBlack:{fontWeight:e.fontWeightBaseBlack},fontSizeBaseX2S:{fontSize:e.fontSizeBaseX2S},fontSizeBaseXS:{fontSize:e.fontSizeBaseXS},fontSizeBaseSM:{fontSize:e.fontSizeBaseSM},fontSizeBaseMD:{fontSize:e.fontSizeBaseMD},fontSizeBaseLG:{fontSize:e.fontSizeBaseLG},fontSizeBaseXL:{fontSize:e.fontSizeBaseXL},fontSizeBaseX2L:{fontSize:e.fontSizeBaseX2L},fontSizeBaseX3L:{fontSize:e.fontSizeBaseX3L},fontSizeBaseX4L:{fontSize:e.fontSizeBaseX4L},fontSizeBaseX5L:{fontSize:e.fontSizeBaseX5L},marginTopBaseX6S:{marginTop:e.spacingBaseX6S},paddingTopBaseX6S:{paddingTop:e.spacingBaseX6S},marginLeftBaseX6S:{marginLeft:e.spacingBaseX6S},paddingLeftBaseX6S:{paddingLeft:e.spacingBaseX6S},marginRightBaseX6S:{marginRight:e.spacingBaseX6S},paddingRightBaseX6S:{paddingRight:e.spacingBaseX6S},marginBottomBaseX6S:{marginBottom:e.spacingBaseX6S},paddingBottomBaseX6S:{paddingBottom:e.spacingBaseX6S},marginTopBaseX5S:{marginTop:e.spacingBaseX5S},paddingTopBaseX5S:{paddingTop:e.spacingBaseX5S},marginLeftBaseX5S:{marginLeft:e.spacingBaseX5S},paddingLeftBaseX5S:{paddingLeft:e.spacingBaseX5S},marginRightBaseX5S:{marginRight:e.spacingBaseX5S},paddingRightBaseX5S:{paddingRight:e.spacingBaseX5S},marginBottomBaseX5S:{marginBottom:e.spacingBaseX5S},paddingBottomBaseX5S:{paddingBottom:e.spacingBaseX5S},marginTopBaseX4S:{marginTop:e.spacingBaseX4S},paddingTopBaseX4S:{paddingTop:e.spacingBaseX4S},marginLeftBaseX4S:{marginLeft:e.spacingBaseX4S},paddingLeftBaseX4S:{paddingLeft:e.spacingBaseX4S},marginRightBaseX4S:{marginRight:e.spacingBaseX4S},paddingRightBaseX4S:{paddingRight:e.spacingBaseX4S},marginBottomBaseX4S:{marginBottom:e.spacingBaseX4S},paddingBottomBaseX4S:{paddingBottom:e.spacingBaseX4S},marginTopBaseX3S:{marginTop:e.spacingBaseX3S},paddingTopBaseX3S:{paddingTop:e.spacingBaseX3S},marginLeftBaseX3S:{marginLeft:e.spacingBaseX3S},paddingLeftBaseX3S:{paddingLeft:e.spacingBaseX3S},marginRightBaseX3S:{marginRight:e.spacingBaseX3S},paddingRightBaseX3S:{paddingRight:e.spacingBaseX3S},marginBottomBaseX3S:{marginBottom:e.spacingBaseX3S},paddingBottomBaseX3S:{paddingBottom:e.spacingBaseX3S},marginTopBaseX2S:{marginTop:e.spacingBaseX2S},paddingTopBaseX2S:{paddingTop:e.spacingBaseX2S},marginLeftBaseX2S:{marginLeft:e.spacingBaseX2S},paddingLeftBaseX2S:{paddingLeft:e.spacingBaseX2S},marginRightBaseX2S:{marginRight:e.spacingBaseX2S},paddingRightBaseX2S:{paddingRight:e.spacingBaseX2S},marginBottomBaseX2S:{marginBottom:e.spacingBaseX2S},paddingBottomBaseX2S:{paddingBottom:e.spacingBaseX2S},marginTopBaseXS:{marginTop:e.spacingBaseXS},paddingTopBaseXS:{paddingTop:e.spacingBaseXS},marginLeftBaseXS:{marginLeft:e.spacingBaseXS},paddingLeftBaseXS:{paddingLeft:e.spacingBaseXS},marginRightBaseXS:{marginRight:e.spacingBaseXS},paddingRightBaseXS:{paddingRight:e.spacingBaseXS},marginBottomBaseXS:{marginBottom:e.spacingBaseXS},paddingBottomBaseXS:{paddingBottom:e.spacingBaseXS},marginTopBaseSM:{marginTop:e.spacingBaseSM},paddingTopBaseSM:{paddingTop:e.spacingBaseSM},marginLeftBaseSM:{marginLeft:e.spacingBaseSM},paddingLeftBaseSM:{paddingLeft:e.spacingBaseSM},marginRightBaseSM:{marginRight:e.spacingBaseSM},paddingRightBaseSM:{paddingRight:e.spacingBaseSM},marginBottomBaseSM:{marginBottom:e.spacingBaseSM},paddingBottomBaseSM:{paddingBottom:e.spacingBaseSM},marginTopBaseMD:{marginTop:e.spacingBaseMD},paddingTopBaseMD:{paddingTop:e.spacingBaseMD},marginLeftBaseMD:{marginLeft:e.spacingBaseMD},paddingLeftBaseMD:{paddingLeft:e.spacingBaseMD},marginRightBaseMD:{marginRight:e.spacingBaseMD},paddingRightBaseMD:{paddingRight:e.spacingBaseMD},marginBottomBaseMD:{marginBottom:e.spacingBaseMD},paddingBottomBaseMD:{paddingBottom:e.spacingBaseMD},marginTopBaseLG:{marginTop:e.spacingBaseLG},paddingTopBaseLG:{paddingTop:e.spacingBaseLG},marginLeftBaseLG:{marginLeft:e.spacingBaseLG},paddingLeftBaseLG:{paddingLeft:e.spacingBaseLG},marginRightBaseLG:{marginRight:e.spacingBaseLG},paddingRightBaseLG:{paddingRight:e.spacingBaseLG},marginBottomBaseLG:{marginBottom:e.spacingBaseLG},paddingBottomBaseLG:{paddingBottom:e.spacingBaseLG},marginTopBaseXL:{marginTop:e.spacingBaseXL},paddingTopBaseXL:{paddingTop:e.spacingBaseXL},marginLeftBaseXL:{marginLeft:e.spacingBaseXL},paddingLeftBaseXL:{paddingLeft:e.spacingBaseXL},marginRightBaseXL:{marginRight:e.spacingBaseXL},paddingRightBaseXL:{paddingRight:e.spacingBaseXL},marginBottomBaseXL:{marginBottom:e.spacingBaseXL},paddingBottomBaseXL:{paddingBottom:e.spacingBaseXL},marginTopBaseX2L:{marginTop:e.spacingBaseX2L},paddingTopBaseX2L:{paddingTop:e.spacingBaseX2L},marginLeftBaseX2L:{marginLeft:e.spacingBaseX2L},paddingLeftBaseX2L:{paddingLeft:e.spacingBaseX2L},marginRightBaseX2L:{marginRight:e.spacingBaseX2L},paddingRightBaseX2L:{paddingRight:e.spacingBaseX2L},marginBottomBaseX2L:{marginBottom:e.spacingBaseX2L},paddingBottomBaseX2L:{paddingBottom:e.spacingBaseX2L},marginTopBaseX3L:{marginTop:e.spacingBaseX3L},paddingTopBaseX3L:{paddingTop:e.spacingBaseX3L},marginLeftBaseX3L:{marginLeft:e.spacingBaseX3L},paddingLeftBaseX3L:{paddingLeft:e.spacingBaseX3L},marginRightBaseX3L:{marginRight:e.spacingBaseX3L},paddingRightBaseX3L:{paddingRight:e.spacingBaseX3L},marginBottomBaseX3L:{marginBottom:e.spacingBaseX3L},paddingBottomBaseX3L:{paddingBottom:e.spacingBaseX3L},marginTopBaseX4L:{marginTop:e.spacingBaseX4L},paddingTopBaseX4L:{paddingTop:e.spacingBaseX4L},marginLeftBaseX4L:{marginLeft:e.spacingBaseX4L},paddingLeftBaseX4L:{paddingLeft:e.spacingBaseX4L},marginRightBaseX4L:{marginRight:e.spacingBaseX4L},paddingRightBaseX4L:{paddingRight:e.spacingBaseX4L},marginBottomBaseX4L:{marginBottom:e.spacingBaseX4L},paddingBottomBaseX4L:{paddingBottom:e.spacingBaseX4L},marginTopBaseX5L:{marginTop:e.spacingBaseX5L},paddingTopBaseX5L:{paddingTop:e.spacingBaseX5L},marginLeftBaseX5L:{marginLeft:e.spacingBaseX5L},paddingLeftBaseX5L:{paddingLeft:e.spacingBaseX5L},marginRightBaseX5L:{marginRight:e.spacingBaseX5L},paddingRightBaseX5L:{paddingRight:e.spacingBaseX5L},marginBottomBaseX5L:{marginBottom:e.spacingBaseX5L},paddingBottomBaseX5L:{paddingBottom:e.spacingBaseX5L},marginTopBaseX6L:{marginTop:e.spacingBaseX6L},paddingTopBaseX6L:{paddingTop:e.spacingBaseX6L},marginLeftBaseX6L:{marginLeft:e.spacingBaseX6L},paddingLeftBaseX6L:{paddingLeft:e.spacingBaseX6L},marginRightBaseX6L:{marginRight:e.spacingBaseX6L},paddingRightBaseX6L:{paddingRight:e.spacingBaseX6L},marginBottomBaseX6L:{marginBottom:e.spacingBaseX6L},paddingBottomBaseX6L:{paddingBottom:e.spacingBaseX6L},borderWidthBaseSM:{borderWidth:e.borderWidthBaseSM},borderWidthBaseMD:{borderWidth:e.borderWidthBaseMD},borderWidthBaseLG:{borderWidth:e.borderWidthBaseLG},borderWidthTopBaseSM:{borderTopWidth:e.borderWidthBaseSM},borderWidthTopBaseMD:{borderTopWidth:e.borderWidthBaseMD},borderWidthTopBaseLG:{borderTopWidth:e.borderWidthBaseLG},borderWidthLeftBaseSM:{borderLeftWidth:e.borderWidthBaseSM},borderWidthLeftBaseMD:{borderLeftWidth:e.borderWidthBaseMD},borderWidthLeftBaseLG:{borderLeftWidth:e.borderWidthBaseLG},borderWidthRightBaseSM:{borderRightWidth:e.borderWidthBaseSM},borderWidthRightBaseMD:{borderRightWidth:e.borderWidthBaseMD},borderWidthRightBaseLG:{borderRightWidth:e.borderWidthBaseLG},borderWidthBottomBaseSM:{borderBottomWidth:e.borderWidthBaseSM},borderWidthBottomBaseMD:{borderBottomWidth:e.borderWidthBaseMD},borderWidthBottomBaseLG:{borderBottomWidth:e.borderWidthBaseLG},borderRadiusBaseXS:{borderRadius:e.borderRadiusBaseXS},borderRadiusBaseSM:{borderRadius:e.borderRadiusBaseSM},borderRadiusBaseMD:{borderRadius:e.borderRadiusBaseMD},borderRadiusBaseLG:{borderRadius:e.borderRadiusBaseLG},borderRadiusBaseXL:{borderRadius:e.borderRadiusBaseXL}})}),[e])},a="rgb(198,198,202)",s="rgb(212,212,216)",l="rgb(216,216,228)",u="rgb(218,218,234)",d="rgb(224,224,238)",g="rgb(244,244,245)",c="rgb(247,247,249)",B="rgb(249,249,250)",f="rgb(254,254,255)",S="rgb(253,252,254)",p="rgb(249,249,250)",m="rgb(247,247,249)",b="rgb(244,244,245)",L="rgb(224,224,238)",X="rgb(218,218,234)",h="rgb(216,216,228)",y="rgb(212,212,216)",E="rgb(198,198,202)",v="rgb(102,102,116)",T="rgb(82,82,92)",R="rgb(74,74,88)",M="rgb(63,63,70)",A="rgb(49,49,56)",F="rgb(39,39,42)",I="rgb(30,30,34)",W="rgb(24,24,27)",C="rgb(6,6,14)",x="rgb(198,198,202)",w="rgb(212,212,216)",_="rgb(216,216,228)",D="rgb(218,218,234)",N="rgb(224,224,238)",P="rgb(244,244,245)",O="rgb(247,247,249)",G="rgb(249,249,250)",j="rgb(254,254,255)",k=["ui-sans-serif","-apple-system","BlinkMacSystemFont",'"Segoe UI"',"Roboto","Helvetica","Arial","sans-serif"].join(","),H=r(848),z=(0,n.createContext)({colorBackgroundBase100:a,colorBackgroundBase200:s,colorBackgroundBase300:l,colorBackgroundBase400:u,colorBackgroundBase500:d,colorBackgroundBase600:g,colorBackgroundBase700:c,colorBackgroundBase800:B,colorBackgroundBase900:f,colorBorderBase100:S,colorBorderBase200:p,colorBorderBase300:m,colorBorderBase400:b,colorBorderBase500:L,colorBorderBase600:X,colorBorderBase700:h,colorBorderBase800:y,colorBorderBase900:E,colorForegroundBase100:v,colorForegroundBase200:T,colorForegroundBase300:R,colorForegroundBase400:M,colorForegroundBase500:A,colorForegroundBase600:F,colorForegroundBase700:I,colorForegroundBase800:W,colorForegroundBase900:C,colorForegroundInverse100:x,colorForegroundInverse200:w,colorForegroundInverse300:_,colorForegroundInverse400:D,colorForegroundInverse500:N,colorForegroundInverse600:P,colorForegroundInverse700:O,colorForegroundInverse800:G,colorForegroundInverse900:j,fontFamilyBase:k,fontWeightBaseThin:100,fontWeightBaseExtraLight:200,fontWeightBaseLight:300,fontWeightBaseRegular:400,fontWeightBaseMedium:500,fontWeightBaseSemiBold:600,fontWeightBaseBold:700,fontWeightBaseExtraBold:800,fontWeightBaseBlack:900,fontSizeBaseX2S:12,fontSizeBaseXS:14,fontSizeBaseSM:16,fontSizeBaseMD:18,fontSizeBaseLG:20,fontSizeBaseXL:24,fontSizeBaseX2L:30,fontSizeBaseX3L:36,fontSizeBaseX4L:48,fontSizeBaseX5L:60,lineHeightBaseNone:1,lineHeightBaseTight:1.25,lineHeightBaseSnug:1.375,lineHeightBaseNormal:1.5,lineHeightBaseRelaxed:1.625,lineHeightBaseLoose:2,spacingBaseX6S:2,spacingBaseX5S:4,spacingBaseX4S:6,spacingBaseX3S:8,spacingBaseX2S:10,spacingBaseXS:12,spacingBaseSM:14,spacingBaseMD:16,spacingBaseLG:18,spacingBaseXL:20,spacingBaseX2L:24,spacingBaseX3L:28,spacingBaseX4L:32,spacingBaseX5L:36,spacingBaseX6L:40,borderWidthBaseSM:.5,borderWidthBaseMD:1,borderWidthBaseLG:1.5,borderRadiusBaseXS:2,borderRadiusBaseSM:4,borderRadiusBaseMD:6,borderRadiusBaseLG:8,borderRadiusBaseXL:10}),V=function(e){var o=e.colorBackgroundBase100,r=e.colorBackgroundBase200,t=e.colorBackgroundBase300,i=e.colorBackgroundBase400,V=e.colorBackgroundBase500,U=e.colorBackgroundBase600,J=e.colorBackgroundBase700,K=e.colorBackgroundBase800,Y=e.colorBackgroundBase900,q=e.colorBorderBase100,Q=e.colorBorderBase200,$=e.colorBorderBase300,Z=e.colorBorderBase400,ee=e.colorBorderBase500,oe=e.colorBorderBase600,re=e.colorBorderBase700,ne=e.colorBorderBase800,te=e.colorBorderBase900,ie=e.colorForegroundBase100,ae=e.colorForegroundBase200,se=e.colorForegroundBase300,le=e.colorForegroundBase400,ue=e.colorForegroundBase500,de=e.colorForegroundBase600,ge=e.colorForegroundBase700,ce=e.colorForegroundBase800,Be=e.colorForegroundBase900,fe=e.colorForegroundInverse100,Se=e.colorForegroundInverse200,pe=e.colorForegroundInverse300,me=e.colorForegroundInverse400,be=e.colorForegroundInverse500,Le=e.colorForegroundInverse600,Xe=e.colorForegroundInverse700,he=e.colorForegroundInverse800,ye=e.colorForegroundInverse900,Ee=e.fontFamilyBase,ve=e.fontWeightBaseThin,Te=e.fontWeightBaseExtraLight,Re=e.fontWeightBaseLight,Me=e.fontWeightBaseRegular,Ae=e.fontWeightBaseMedium,Fe=e.fontWeightBaseSemiBold,Ie=e.fontWeightBaseBold,We=e.fontWeightBaseExtraBold,Ce=e.fontWeightBaseBlack,xe=e.fontSizeBaseX2S,we=e.fontSizeBaseXS,_e=e.fontSizeBaseSM,De=e.fontSizeBaseMD,Ne=e.fontSizeBaseLG,Pe=e.fontSizeBaseXL,Oe=e.fontSizeBaseX2L,Ge=e.fontSizeBaseX3L,je=e.fontSizeBaseX4L,ke=e.fontSizeBaseX5L,He=e.lineHeightBaseNone,ze=e.lineHeightBaseTight,Ve=e.lineHeightBaseSnug,Ue=e.lineHeightBaseNormal,Je=e.lineHeightBaseRelaxed,Ke=e.lineHeightBaseLoose,Ye=e.spacingBaseX6S,qe=e.spacingBaseX5S,Qe=e.spacingBaseX4S,$e=e.spacingBaseX3S,Ze=e.spacingBaseX2S,eo=e.spacingBaseXS,oo=e.spacingBaseSM,ro=e.spacingBaseMD,no=e.spacingBaseLG,to=e.spacingBaseXL,io=e.spacingBaseX2L,ao=e.spacingBaseX3L,so=e.spacingBaseX4L,lo=e.spacingBaseX5L,uo=e.spacingBaseX6L,go=e.borderWidthBaseSM,co=e.borderWidthBaseMD,Bo=e.borderWidthBaseLG,fo=e.borderRadiusBaseXS,So=e.borderRadiusBaseSM,po=e.borderRadiusBaseMD,mo=e.borderRadiusBaseLG,bo=e.borderRadiusBaseXL,Lo=e.children,Xo=(0,n.useMemo)((function(){return{colorBackgroundBase100:null!=o?o:a,colorBackgroundBase200:null!=r?r:s,colorBackgroundBase300:null!=t?t:l,colorBackgroundBase400:null!=i?i:u,colorBackgroundBase500:null!=V?V:d,colorBackgroundBase600:null!=U?U:g,colorBackgroundBase700:null!=J?J:c,colorBackgroundBase800:null!=K?K:B,colorBackgroundBase900:null!=Y?Y:f,colorBorderBase100:null!=q?q:S,colorBorderBase200:null!=Q?Q:p,colorBorderBase300:null!=$?$:m,colorBorderBase400:null!=Z?Z:b,colorBorderBase500:null!=ee?ee:L,colorBorderBase600:null!=oe?oe:X,colorBorderBase700:null!=re?re:h,colorBorderBase800:null!=ne?ne:y,colorBorderBase900:null!=te?te:E,colorForegroundBase100:null!=ie?ie:v,colorForegroundBase200:null!=ae?ae:T,colorForegroundBase300:null!=se?se:R,colorForegroundBase400:null!=le?le:M,colorForegroundBase500:null!=ue?ue:A,colorForegroundBase600:null!=de?de:F,colorForegroundBase700:null!=ge?ge:I,colorForegroundBase800:null!=ce?ce:W,colorForegroundBase900:null!=Be?Be:C,colorForegroundInverse100:null!=fe?fe:x,colorForegroundInverse200:null!=Se?Se:w,colorForegroundInverse300:null!=pe?pe:_,colorForegroundInverse400:null!=me?me:D,colorForegroundInverse500:null!=be?be:N,colorForegroundInverse600:null!=Le?Le:P,colorForegroundInverse700:null!=Xe?Xe:O,colorForegroundInverse800:null!=he?he:G,colorForegroundInverse900:null!=ye?ye:j,fontFamilyBase:null!=Ee?Ee:k,fontWeightBaseThin:null!=ve?ve:100,fontWeightBaseExtraLight:null!=Te?Te:200,fontWeightBaseLight:null!=Re?Re:300,fontWeightBaseRegular:null!=Me?Me:400,fontWeightBaseMedium:null!=Ae?Ae:500,fontWeightBaseSemiBold:null!=Fe?Fe:600,fontWeightBaseBold:null!=Ie?Ie:700,fontWeightBaseExtraBold:null!=We?We:800,fontWeightBaseBlack:null!=Ce?Ce:900,fontSizeBaseX2S:null!=xe?xe:12,fontSizeBaseXS:null!=we?we:14,fontSizeBaseSM:null!=_e?_e:16,fontSizeBaseMD:null!=De?De:18,fontSizeBaseLG:null!=Ne?Ne:20,fontSizeBaseXL:null!=Pe?Pe:24,fontSizeBaseX2L:null!=Oe?Oe:30,fontSizeBaseX3L:null!=Ge?Ge:36,fontSizeBaseX4L:null!=je?je:48,fontSizeBaseX5L:null!=ke?ke:60,lineHeightBaseNone:null!=He?He:1,lineHeightBaseTight:null!=ze?ze:1.25,lineHeightBaseSnug:null!=Ve?Ve:1.375,lineHeightBaseNormal:null!=Ue?Ue:1.5,lineHeightBaseRelaxed:null!=Je?Je:1.625,lineHeightBaseLoose:null!=Ke?Ke:2,spacingBaseX6S:null!=Ye?Ye:2,spacingBaseX5S:null!=qe?qe:4,spacingBaseX4S:null!=Qe?Qe:6,spacingBaseX3S:null!=$e?$e:8,spacingBaseX2S:null!=Ze?Ze:10,spacingBaseXS:null!=eo?eo:12,spacingBaseSM:null!=oo?oo:14,spacingBaseMD:null!=ro?ro:16,spacingBaseLG:null!=no?no:18,spacingBaseXL:null!=to?to:20,spacingBaseX2L:null!=io?io:24,spacingBaseX3L:null!=ao?ao:28,spacingBaseX4L:null!=so?so:32,spacingBaseX5L:null!=lo?lo:36,spacingBaseX6L:null!=uo?uo:40,borderWidthBaseSM:null!=go?go:.5,borderWidthBaseMD:null!=co?co:1,borderWidthBaseLG:null!=Bo?Bo:1.5,borderRadiusBaseXS:null!=fo?fo:2,borderRadiusBaseSM:null!=So?So:4,borderRadiusBaseMD:null!=po?po:6,borderRadiusBaseLG:null!=mo?mo:8,borderRadiusBaseXL:null!=bo?bo:10}}),[o,r,t,i,V,U,J,K,Y,q,Q,$,Z,ee,oe,re,ne,te,ie,ae,se,le,ue,de,ge,ce,Be,fe,Se,pe,me,be,Le,Xe,he,ye,Ee,ve,Te,Re,Me,Ae,Fe,Ie,We,Ce,xe,we,_e,De,Ne,Pe,Oe,Ge,je,ke,He,ze,Ve,Ue,Je,Ke,Ye,qe,Qe,$e,Ze,eo,oo,ro,no,to,io,ao,so,lo,uo,go,co,Bo,fo,So,po,mo,bo]);return(0,H.jsx)(z.Provider,{value:Xo,children:Lo})},U=function(){return(0,n.useContext)(z)}},20:(e,o,r)=>{var n=r(155),t=Symbol.for("react.element"),i=(Symbol.for("react.fragment"),Object.prototype.hasOwnProperty),a=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,s={key:!0,ref:!0,__self:!0,__source:!0};function l(e,o,r){var n,l={},u=null,d=null;for(n in void 0!==r&&(u=""+r),void 0!==o.key&&(u=""+o.key),void 0!==o.ref&&(d=o.ref),o)i.call(o,n)&&!s.hasOwnProperty(n)&&(l[n]=o[n]);if(e&&e.defaultProps)for(n in o=e.defaultProps)void 0===l[n]&&(l[n]=o[n]);return{$$typeof:t,type:e,key:u,ref:d,props:l,_owner:a.current}}o.jsx=l,o.jsxs=l},848:(e,o,r)=>{e.exports=r(20)},729:e=>{e.exports=n},155:e=>{e.exports=r},389:o=>{o.exports=e},254:e=>{e.exports=o}},i={};function a(e){var o=i[e];if(void 0!==o)return o.exports;var r=i[e]={exports:{}};return t[e](r,r.exports,a),r.exports}a.n=e=>{var o=e&&e.__esModule?()=>e.default:()=>e;return a.d(o,{a:o}),o},a.d=(e,o)=>{for(var r in o)a.o(o,r)&&!a.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:o[r]})},a.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var s={};a.r(s),a.d(s,{Dimension:()=>h,FRACTION_MAX:()=>M,FRACTION_MIN:()=>R,Fraction:()=>T,Gradient:()=>b,Media:()=>k.$U,MediaContextProvider:()=>k.tZ,POSITION_MAX:()=>_,POSITION_MIN:()=>D,Position:()=>w,SIZE_FULL:()=>j,Size:()=>G,Text:()=>L,ThemeContextProvider:()=>H.wX,View:()=>X,useMediaContext:()=>k.$c,useThemeContext:()=>H.wR,useThemeStyleSheet:()=>H.JU});var l=a(389),u=a(254),d=a.n(u),g=function(e){return e[e.RIGHT=0]="RIGHT",e[e.BOTTOM=1]="BOTTOM",e}({}),c=a(848);function B(e){return B="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},B(e)}function f(e,o,r){return(o=function(e){var o=function(e){if("object"!=B(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=B(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==B(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var S=f(f({},g.RIGHT,1),g.BOTTOM,0),p=f(f({},g.RIGHT,0),g.BOTTOM,1),m=function(e){var o=e.direction,r=void 0===o?g.BOTTOM:o,n=e.children;return(0,c.jsx)(l.View,{style:l.StyleSheet.absoluteFill,children:(0,c.jsxs)(d(),{width:"100%",height:"100%",children:[(0,c.jsx)(u.Defs,{children:(0,c.jsx)(u.LinearGradient,{id:"gradient-linear",x1:0,y1:0,x2:S[r],y2:p[r],children:n})}),(0,c.jsx)(u.Rect,{x:"0",y:"0",width:"100%",height:"100%",fill:"url(#gradient-linear)"})]})})};m.Direction=g;var b={Linear:m,Stop:function(e){var o=e.offset,r=e.color;return(0,c.jsx)(u.Stop,{offset:o.toValue(),stopColor:r})}},L=l.Platform.select({native:function(){return a(79).A},web:function(){return a(54).A}})(),X=l.Platform.select({native:function(){return a(689).A},web:function(){return a(741).A}})(),h=function(e){return e[e.PIXEL=0]="PIXEL",e[e.PERCENT=1]="PERCENT",e}({});function y(e){return y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},y(e)}function E(e,o){for(var r=0;r<o.length;r++){var n=o[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,v(n.key),n)}}function v(e){var o=function(e){if("object"!=y(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=y(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==y(o)?o:o+""}var T=function(){return e=function e(o){!function(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}(this,e),this.value=o},(o=[{key:"toValue",value:function(){return this.value}}])&&E(e.prototype,o),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,o}(),R=new T(0),M=new T(1);function A(e){return A="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},A(e)}function F(e,o){for(var r=0;r<o.length;r++){var n=o[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,I(n.key),n)}}function I(e){var o=function(e){if("object"!=A(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=A(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==A(o)?o:o+""}var W,C,x,w=function(){return e=function e(o){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:h.PIXEL;!function(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}(this,e),this.amount=o,this.dimension=r},(o=[{key:"toValue",value:function(){return this.dimension===h.PIXEL?l.Platform.select({web:"".concat(this.amount,"px"),default:this.amount}):"".concat(this.amount,"%")}}])&&F(e.prototype,o),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,o}();W=w,x=h,(C=I(C="Dimension"))in W?Object.defineProperty(W,C,{value:x,enumerable:!0,configurable:!0,writable:!0}):W[C]=x;var _=new w(100,w.Dimension.PERCENT),D=new w(0,w.Dimension.PIXEL);function N(e){return N="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},N(e)}function P(e,o){for(var r=0;r<o.length;r++){var n=o[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,O(n.key),n)}}function O(e){var o=function(e){if("object"!=N(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=N(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==N(o)?o:o+""}var G=function(){return function(e,o){return o&&P(e.prototype,o),Object.defineProperty(e,"prototype",{writable:!1}),e}((function e(o){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:h.PIXEL;!function(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}(this,e),this.amount=o,this.dimension=r}),[{key:"toValue",value:function(){return this.dimension===h.PIXEL?l.Platform.select({web:"".concat(this.amount,"px"),default:this.amount}):"".concat(this.amount,"%")}}])}();!function(e,o,r){(o=O(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r}(G,"Dimension",h);var j=new G(100,G.Dimension.PERCENT),k=a(410),H=a(506);return s})()));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Fraction } from './fraction';
|
package/build/helpers/index.d.ts
CHANGED
package/build/index.d.ts
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
* Allows to keep some exports private at the same time.
|
|
4
|
-
*/
|
|
1
|
+
export { Gradient } from './components/gradient';
|
|
2
|
+
export type { GradientLinearComponent, GradientLinearProps, GradientObject, StopComponent, StopProps, } from './components/gradient';
|
|
5
3
|
export { Text } from './components/text';
|
|
6
4
|
export type { TextComponent, TextProps } from './components/text';
|
|
7
5
|
export { View } from './components/view';
|
|
8
6
|
export type { ViewComponent, ViewProps } from './components/view';
|
|
9
7
|
export { Dimension } from './constants/dimension';
|
|
8
|
+
export { FRACTION_MAX, FRACTION_MIN } from './constants/fraction';
|
|
10
9
|
export { POSITION_MAX, POSITION_MIN } from './constants/position';
|
|
11
10
|
export { SIZE_FULL } from './constants/size';
|
|
12
11
|
export { Media, MediaContextProvider, useMediaContext } from './contexts/media';
|
|
13
12
|
export type { MediaComponent, MediaContextProviderComponent, MediaContextValue, MediaProps, } from './contexts/media';
|
|
14
13
|
export { ThemeContextProvider, useThemeContext, useThemeStyleSheet, } from './contexts/theme';
|
|
15
14
|
export type { ThemeContextProviderComponent, ThemeContextProviderProps, ThemeContextValue, } from './contexts/theme';
|
|
16
|
-
export {
|
|
15
|
+
export { Fraction } from './helpers/fraction';
|
|
17
16
|
export { Position } from './helpers/position';
|
|
18
17
|
export type { PositionValue } from './helpers/position';
|
|
19
18
|
export { Size } from './helpers/size';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "creactive",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.106",
|
|
4
4
|
"main": "build/default.js",
|
|
5
5
|
"files": [
|
|
6
6
|
"build/**"
|
|
@@ -26,6 +26,8 @@
|
|
|
26
26
|
"react": ">= 18 < 19",
|
|
27
27
|
"react-dom": ">= 18 < 19",
|
|
28
28
|
"react-native": ">= 0.76 < 0.78",
|
|
29
|
+
"react-native-svg": ">= 13.0.0 < 14.0.0",
|
|
30
|
+
"react-native-svg-web": ">= 1.0.0 < 2.0.0",
|
|
29
31
|
"react-native-web": ">= 0.19.10"
|
|
30
32
|
},
|
|
31
33
|
"devDependencies": {
|
|
@@ -59,6 +61,8 @@
|
|
|
59
61
|
"react": "^18.3.1",
|
|
60
62
|
"react-dom": "^18.3.1",
|
|
61
63
|
"react-native": "^0.76.7",
|
|
64
|
+
"react-native-svg": "^14.2.0",
|
|
65
|
+
"react-native-svg-web": "^1.0.9",
|
|
62
66
|
"react-native-web": "^0.19.13",
|
|
63
67
|
"tsc-alias": "^1.8.10",
|
|
64
68
|
"typescript": "^5.3.3",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { Opacity } from './opacity';
|