@magiclabs/ui-components 1.36.11 → 1.36.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/list-items/navigation-button.js +1 -1
- package/dist/cjs/components/list-items/navigation-button.js.map +1 -1
- package/dist/es/components/list-items/navigation-button.js +1 -1
- package/dist/es/components/list-items/navigation-button.js.map +1 -1
- package/dist/types/components/list-items/navigation-button.d.ts +2 -2
- package/dist/types/components/list-items/navigation-button.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("react/jsx-runtime"),
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("react/jsx-runtime"),g=require("../containers/button.js");require("../containers/card.js");var o=require("@styled/css"),t=require("@styled/jsx"),v=require("@styled/tokens"),f=require("../icons/ico-external-link.js");require("../primitives/button.js"),require("../primitives/checkbox.js"),require("../primitives/dropdown-selector.js"),require("../primitives/popover.js"),require("../primitives/radio.js"),require("../primitives/segmented-control.js"),require("../primitives/switch.js");var q=require("../primitives/text.js"),s=require("react");require("../utils/client-asset-logo.js"),require("react-qrcode-logo"),require("../utils/secured-by-magic.js"),require("../containers/header.js"),require("../containers/menu.js"),require("../containers/modal.js"),require("../containers/overlay.js");var u=require("create-slots");const p=u.createSlot(({children:i,...r})=>e.jsx(t.Center,{children:s.Children.map(i,a=>s.cloneElement(a,r))})),x=u.createSlot(({children:i,...r})=>e.jsx(t.Center,{children:s.Children.map(i,a=>s.cloneElement(a,r))})),m=s.forwardRef(({className:i,...r},a)=>{const{primaryLabel:l,secondaryLabel:d,isExternalLink:j}=r;return u.createHost(r.children,h=>{const n=h.get(p),c=h.get(x);return e.jsx(g.ButtonContainer,{ref:a,className:o.cx(o.css({p:4,bg:"neutral.quaternary",_hover:{bg:"neutral.secondary"}}),i),borderRadius:"0.5rem",expand:!0,...r,children:e.jsxs(t.HStack,{justify:"space-between",w:"full",children:[e.jsxs(t.HStack,{children:[n&&{...n,props:{height:24,...n.props,className:n.props.color?void 0:o.css({color:"brand.base"})}},e.jsxs(t.VStack,{gap:0,alignItems:"start",children:[e.jsxs(t.HStack,{children:[typeof l=="string"?e.jsx(q.default,{fontWeight:"medium",children:l}):l,j&&e.jsx(f.default,{width:14,height:14,color:v.token("colors.neutral.primary")})]}),d&&e.jsx(q.default,{size:"sm",fontColor:"text.tertiary",children:d})]})]}),e.jsx(t.HStack,{children:c&&{...c,props:{...c.props,className:c.props.color?void 0:o.css({color:"neutral.primary"}),width:16,height:16}}})]})})})});m.displayName="NavigationButton";const b=Object.assign(m,{LeadingIcon:p,TrailingIcon:x});exports.default=b;
|
|
2
2
|
//# sourceMappingURL=navigation-button.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"navigation-button.js","sources":["../../../../src/components/list-items/navigation-button.tsx"],"sourcesContent":["import { ButtonContainer, ButtonContainerProps } from '@components/containers';\nimport { IcoExternalLink } from '@components/icons';\nimport { Text } from '@components/primitives';\nimport { css } from '@styled/css';\nimport { Center, HStack, VStack } from '@styled/jsx';\nimport { token } from '@styled/tokens';\nimport { createHost, createSlot } from 'create-slots';\nimport { Children, cloneElement, forwardRef } from 'react';\nimport { AriaButtonProps } from 'react-aria';\n\nexport interface NavigationButtonProps extends AriaButtonProps, ButtonContainerProps {\n primaryLabel: string;\n secondaryLabel?: string;\n isExternalLink?: boolean;\n disabled?: boolean;\n}\n\nconst LeadingIcon = createSlot(({ children, ...props }) => {\n return (\n <Center>\n {Children.map(children, child => {\n return cloneElement(child, props);\n })}\n </Center>\n );\n});\n\nconst TrailingIcon = createSlot(({ children, ...props }) => {\n return (\n <Center>\n {Children.map(children, child => {\n return cloneElement(child, props);\n })}\n </Center>\n );\n});\n\nconst NavigationButtonBase = forwardRef<HTMLButtonElement, NavigationButtonProps>((props, forwardedRef) => {\n
|
|
1
|
+
{"version":3,"file":"navigation-button.js","sources":["../../../../src/components/list-items/navigation-button.tsx"],"sourcesContent":["import { ButtonContainer, ButtonContainerProps } from '@components/containers';\nimport { IcoExternalLink } from '@components/icons';\nimport { Text } from '@components/primitives';\nimport { css, cx } from '@styled/css';\nimport { Center, HStack, VStack } from '@styled/jsx';\nimport { token } from '@styled/tokens';\nimport { createHost, createSlot } from 'create-slots';\nimport { Children, cloneElement, forwardRef, ReactNode } from 'react';\nimport { AriaButtonProps } from 'react-aria';\n\nexport interface NavigationButtonProps extends AriaButtonProps, ButtonContainerProps {\n primaryLabel: string | ReactNode;\n secondaryLabel?: string;\n isExternalLink?: boolean;\n disabled?: boolean;\n}\n\nconst LeadingIcon = createSlot(({ children, ...props }) => {\n return (\n <Center>\n {Children.map(children, child => {\n return cloneElement(child, props);\n })}\n </Center>\n );\n});\n\nconst TrailingIcon = createSlot(({ children, ...props }) => {\n return (\n <Center>\n {Children.map(children, child => {\n return cloneElement(child, props);\n })}\n </Center>\n );\n});\n\nconst NavigationButtonBase = forwardRef<HTMLButtonElement, NavigationButtonProps>(\n ({ className, ...props }, forwardedRef) => {\n const { primaryLabel, secondaryLabel, isExternalLink } = props;\n\n return createHost(props.children, slots => {\n const leadingIcon = slots.get(LeadingIcon);\n const trailingIcon = slots.get(TrailingIcon);\n\n return (\n <ButtonContainer\n ref={forwardedRef}\n className={cx(\n css({\n p: 4,\n bg: 'neutral.quaternary',\n _hover: { bg: 'neutral.secondary' },\n }),\n className,\n )}\n borderRadius=\"0.5rem\"\n expand\n {...props}\n >\n <HStack justify=\"space-between\" w=\"full\">\n <HStack>\n {leadingIcon && {\n ...leadingIcon,\n props: {\n height: 24,\n ...leadingIcon.props,\n className: !leadingIcon.props.color ? css({ color: 'brand.base' }) : undefined,\n },\n }}\n <VStack gap={0} alignItems=\"start\">\n <HStack>\n {typeof primaryLabel === 'string' ? <Text fontWeight=\"medium\">{primaryLabel}</Text> : primaryLabel}\n {isExternalLink && <IcoExternalLink width={14} height={14} color={token('colors.neutral.primary')} />}\n </HStack>\n {secondaryLabel && (\n <Text size=\"sm\" fontColor=\"text.tertiary\">\n {secondaryLabel}\n </Text>\n )}\n </VStack>\n </HStack>\n <HStack>\n {trailingIcon && {\n ...trailingIcon,\n props: {\n ...trailingIcon.props,\n className: !trailingIcon.props.color ? css({ color: 'neutral.primary' }) : undefined,\n width: 16,\n height: 16,\n },\n }}\n </HStack>\n </HStack>\n </ButtonContainer>\n );\n });\n },\n);\n\nNavigationButtonBase.displayName = 'NavigationButton';\n\nconst NavigationButton = Object.assign(NavigationButtonBase, { LeadingIcon, TrailingIcon });\n\nexport default NavigationButton;\n"],"names":["LeadingIcon","createSlot","children","props","_jsx","Center","Children","child","cloneElement","TrailingIcon","NavigationButtonBase","forwardRef","className","forwardedRef","primaryLabel","secondaryLabel","isExternalLink","createHost","slots","leadingIcon","trailingIcon","ButtonContainer","cx","css","_jsxs","HStack","VStack","Text","IcoExternalLink","token","NavigationButton"],"mappings":"u4BAiBA,MAAMA,EAAcC,EAAAA,WAAW,CAAC,CAAE,SAAAC,EAAU,GAAGC,CAAO,IAElDC,EAAAA,IAACC,EAAAA,OAAM,CAAA,SACJC,EAAAA,SAAS,IAAIJ,EAAUK,GACfC,EAAaD,aAAAA,EAAOJ,CAAK,CACjC,CACM,CAAA,CAEZ,EAEKM,EAAeR,EAAAA,WAAW,CAAC,CAAE,SAAAC,EAAU,GAAGC,CAAO,IAEnDC,MAACC,EAAAA,OAAM,CAAA,SACJC,WAAS,IAAIJ,EAAUK,GACfC,eAAaD,EAAOJ,CAAK,CACjC,CACM,CAAA,CAEZ,EAEKO,EAAuBC,aAC3B,CAAC,CAAE,UAAAC,EAAW,GAAGT,CAAK,EAAIU,IAAgB,CACxC,KAAM,CAAE,aAAAC,EAAc,eAAAC,EAAgB,eAAAC,CAAc,EAAKb,EAEzD,OAAOc,EAAAA,WAAWd,EAAM,SAAUe,GAAQ,CACxC,MAAMC,EAAcD,EAAM,IAAIlB,CAAW,EACnCoB,EAAeF,EAAM,IAAIT,CAAY,EAE3C,OACEL,EAAAA,IAACiB,EAAAA,gBAAe,CACd,IAAKR,EACL,UAAWS,EAAAA,GACTC,EAAI,IAAA,CACF,EAAG,EACH,GAAI,qBACJ,OAAQ,CAAE,GAAI,mBAAqB,EACpC,EACDX,CAAS,EAEX,aAAa,SACb,OACI,GAAA,GAAAT,EAEJ,SAAAqB,EAAAA,KAACC,SAAM,CAAC,QAAQ,gBAAgB,EAAE,OAAM,SAAA,CACtCD,EAACC,KAAAA,EAAAA,OACE,CAAA,SAAA,CAAAN,GAAe,CACd,GAAGA,EACH,MAAO,CACL,OAAQ,GACR,GAAGA,EAAY,MACf,UAAYA,EAAY,MAAM,MAAuC,OAA/BI,EAAI,IAAA,CAAE,MAAO,aAAc,CAClE,CACF,EACDC,EAAAA,KAACE,EAAAA,OAAM,CAAC,IAAK,EAAG,WAAW,kBACzBF,EAAAA,KAACC,EAAAA,kBACE,OAAOX,GAAiB,SAAWV,EAACuB,IAAAA,EAAAA,QAAI,CAAC,WAAW,SAAU,SAAAb,CAAoB,CAAA,EAAGA,EACrFE,GAAkBZ,EAAAA,IAACwB,UAAe,CAAC,MAAO,GAAI,OAAQ,GAAI,MAAOC,EAAAA,MAAM,wBAAwB,CAAC,CAAA,CAAI,IAEtGd,GACCX,MAACuB,EAAAA,QAAI,CAAC,KAAK,KAAK,UAAU,gBACvB,SAAAZ,CACI,CAAA,CACR,GACM,CACF,CAAA,EACTX,EAAAA,IAACqB,EAAAA,OAAM,CAAA,SACJL,GAAgB,CACf,GAAGA,EACH,MAAO,CACL,GAAGA,EAAa,MAChB,UAAYA,EAAa,MAAM,MAA4C,OAApCG,EAAAA,IAAI,CAAE,MAAO,kBAAmB,EACvE,MAAO,GACP,OAAQ,EACT,EAEI,CAAA,CAAA,CAAA,CAAA,CAEK,CAAA,CAEtB,CAAC,CACH,CAAC,EAGHb,EAAqB,YAAc,yBAE7BoB,EAAmB,OAAO,OAAOpB,EAAsB,CAAE,YAAAV,EAAa,aAAAS,CAAY,CAAE"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{jsx as o,jsxs as
|
|
1
|
+
import{jsx as o,jsxs as n}from"react/jsx-runtime";import{ButtonContainer as w}from"../containers/button.js";import"../containers/card.js";import{cx as C,css as s}from"@styled/css";import{Center as d,HStack as a,VStack as j}from"@styled/jsx";import{token as k}from"@styled/tokens";import v from"../icons/ico-external-link.js";import"../primitives/button.js";import"../primitives/checkbox.js";import"../primitives/dropdown-selector.js";import"../primitives/popover.js";import"../primitives/radio.js";import"../primitives/segmented-control.js";import"../primitives/switch.js";import h from"../primitives/text.js";import{Children as f,cloneElement as g,forwardRef as L}from"react";import"../utils/client-asset-logo.js";import"react-qrcode-logo";import"../utils/secured-by-magic.js";import"../containers/header.js";import"../containers/menu.js";import"../containers/modal.js";import"../containers/overlay.js";import{createSlot as u,createHost as B}from"create-slots";const y=u(({children:t,...r})=>o(d,{children:f.map(t,e=>g(e,r))})),b=u(({children:t,...r})=>o(d,{children:f.map(t,e=>g(e,r))})),x=L(({className:t,...r},e)=>{const{primaryLabel:p,secondaryLabel:l,isExternalLink:N}=r;return B(r.children,c=>{const i=c.get(y),m=c.get(b);return o(w,{ref:e,className:C(s({p:4,bg:"neutral.quaternary",_hover:{bg:"neutral.secondary"}}),t),borderRadius:"0.5rem",expand:!0,...r,children:n(a,{justify:"space-between",w:"full",children:[n(a,{children:[i&&{...i,props:{height:24,...i.props,className:i.props.color?void 0:s({color:"brand.base"})}},n(j,{gap:0,alignItems:"start",children:[n(a,{children:[typeof p=="string"?o(h,{fontWeight:"medium",children:p}):p,N&&o(v,{width:14,height:14,color:k("colors.neutral.primary")})]}),l&&o(h,{size:"sm",fontColor:"text.tertiary",children:l})]})]}),o(a,{children:m&&{...m,props:{...m.props,className:m.props.color?void 0:s({color:"neutral.primary"}),width:16,height:16}}})]})})})});x.displayName="NavigationButton";const I=Object.assign(x,{LeadingIcon:y,TrailingIcon:b});export{I as default};
|
|
2
2
|
//# sourceMappingURL=navigation-button.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"navigation-button.js","sources":["../../../../src/components/list-items/navigation-button.tsx"],"sourcesContent":["import { ButtonContainer, ButtonContainerProps } from '@components/containers';\nimport { IcoExternalLink } from '@components/icons';\nimport { Text } from '@components/primitives';\nimport { css } from '@styled/css';\nimport { Center, HStack, VStack } from '@styled/jsx';\nimport { token } from '@styled/tokens';\nimport { createHost, createSlot } from 'create-slots';\nimport { Children, cloneElement, forwardRef } from 'react';\nimport { AriaButtonProps } from 'react-aria';\n\nexport interface NavigationButtonProps extends AriaButtonProps, ButtonContainerProps {\n primaryLabel: string;\n secondaryLabel?: string;\n isExternalLink?: boolean;\n disabled?: boolean;\n}\n\nconst LeadingIcon = createSlot(({ children, ...props }) => {\n return (\n <Center>\n {Children.map(children, child => {\n return cloneElement(child, props);\n })}\n </Center>\n );\n});\n\nconst TrailingIcon = createSlot(({ children, ...props }) => {\n return (\n <Center>\n {Children.map(children, child => {\n return cloneElement(child, props);\n })}\n </Center>\n );\n});\n\nconst NavigationButtonBase = forwardRef<HTMLButtonElement, NavigationButtonProps>((props, forwardedRef) => {\n
|
|
1
|
+
{"version":3,"file":"navigation-button.js","sources":["../../../../src/components/list-items/navigation-button.tsx"],"sourcesContent":["import { ButtonContainer, ButtonContainerProps } from '@components/containers';\nimport { IcoExternalLink } from '@components/icons';\nimport { Text } from '@components/primitives';\nimport { css, cx } from '@styled/css';\nimport { Center, HStack, VStack } from '@styled/jsx';\nimport { token } from '@styled/tokens';\nimport { createHost, createSlot } from 'create-slots';\nimport { Children, cloneElement, forwardRef, ReactNode } from 'react';\nimport { AriaButtonProps } from 'react-aria';\n\nexport interface NavigationButtonProps extends AriaButtonProps, ButtonContainerProps {\n primaryLabel: string | ReactNode;\n secondaryLabel?: string;\n isExternalLink?: boolean;\n disabled?: boolean;\n}\n\nconst LeadingIcon = createSlot(({ children, ...props }) => {\n return (\n <Center>\n {Children.map(children, child => {\n return cloneElement(child, props);\n })}\n </Center>\n );\n});\n\nconst TrailingIcon = createSlot(({ children, ...props }) => {\n return (\n <Center>\n {Children.map(children, child => {\n return cloneElement(child, props);\n })}\n </Center>\n );\n});\n\nconst NavigationButtonBase = forwardRef<HTMLButtonElement, NavigationButtonProps>(\n ({ className, ...props }, forwardedRef) => {\n const { primaryLabel, secondaryLabel, isExternalLink } = props;\n\n return createHost(props.children, slots => {\n const leadingIcon = slots.get(LeadingIcon);\n const trailingIcon = slots.get(TrailingIcon);\n\n return (\n <ButtonContainer\n ref={forwardedRef}\n className={cx(\n css({\n p: 4,\n bg: 'neutral.quaternary',\n _hover: { bg: 'neutral.secondary' },\n }),\n className,\n )}\n borderRadius=\"0.5rem\"\n expand\n {...props}\n >\n <HStack justify=\"space-between\" w=\"full\">\n <HStack>\n {leadingIcon && {\n ...leadingIcon,\n props: {\n height: 24,\n ...leadingIcon.props,\n className: !leadingIcon.props.color ? css({ color: 'brand.base' }) : undefined,\n },\n }}\n <VStack gap={0} alignItems=\"start\">\n <HStack>\n {typeof primaryLabel === 'string' ? <Text fontWeight=\"medium\">{primaryLabel}</Text> : primaryLabel}\n {isExternalLink && <IcoExternalLink width={14} height={14} color={token('colors.neutral.primary')} />}\n </HStack>\n {secondaryLabel && (\n <Text size=\"sm\" fontColor=\"text.tertiary\">\n {secondaryLabel}\n </Text>\n )}\n </VStack>\n </HStack>\n <HStack>\n {trailingIcon && {\n ...trailingIcon,\n props: {\n ...trailingIcon.props,\n className: !trailingIcon.props.color ? css({ color: 'neutral.primary' }) : undefined,\n width: 16,\n height: 16,\n },\n }}\n </HStack>\n </HStack>\n </ButtonContainer>\n );\n });\n },\n);\n\nNavigationButtonBase.displayName = 'NavigationButton';\n\nconst NavigationButton = Object.assign(NavigationButtonBase, { LeadingIcon, TrailingIcon });\n\nexport default NavigationButton;\n"],"names":["LeadingIcon","createSlot","children","props","_jsx","Center","Children","child","cloneElement","TrailingIcon","NavigationButtonBase","forwardRef","className","forwardedRef","primaryLabel","secondaryLabel","isExternalLink","createHost","slots","leadingIcon","trailingIcon","ButtonContainer","cx","css","_jsxs","HStack","VStack","Text","IcoExternalLink","token","NavigationButton"],"mappings":"k8BAiBA,MAAMA,EAAcC,EAAW,CAAC,CAAE,SAAAC,EAAU,GAAGC,CAAO,IAElDC,EAACC,EAAM,CAAA,SACJC,EAAS,IAAIJ,EAAUK,GACfC,EAAaD,EAAOJ,CAAK,CACjC,CACM,CAAA,CAEZ,EAEKM,EAAeR,EAAW,CAAC,CAAE,SAAAC,EAAU,GAAGC,CAAO,IAEnDC,EAACC,EAAM,CAAA,SACJC,EAAS,IAAIJ,EAAUK,GACfC,EAAaD,EAAOJ,CAAK,CACjC,CACM,CAAA,CAEZ,EAEKO,EAAuBC,EAC3B,CAAC,CAAE,UAAAC,EAAW,GAAGT,CAAK,EAAIU,IAAgB,CACxC,KAAM,CAAE,aAAAC,EAAc,eAAAC,EAAgB,eAAAC,CAAc,EAAKb,EAEzD,OAAOc,EAAWd,EAAM,SAAUe,GAAQ,CACxC,MAAMC,EAAcD,EAAM,IAAIlB,CAAW,EACnCoB,EAAeF,EAAM,IAAIT,CAAY,EAE3C,OACEL,EAACiB,EAAe,CACd,IAAKR,EACL,UAAWS,EACTC,EAAI,CACF,EAAG,EACH,GAAI,qBACJ,OAAQ,CAAE,GAAI,mBAAqB,EACpC,EACDX,CAAS,EAEX,aAAa,SACb,OACI,GAAA,GAAAT,EAEJ,SAAAqB,EAACC,EAAM,CAAC,QAAQ,gBAAgB,EAAE,OAAM,SAAA,CACtCD,EAACC,EACE,CAAA,SAAA,CAAAN,GAAe,CACd,GAAGA,EACH,MAAO,CACL,OAAQ,GACR,GAAGA,EAAY,MACf,UAAYA,EAAY,MAAM,MAAuC,OAA/BI,EAAI,CAAE,MAAO,aAAc,CAClE,CACF,EACDC,EAACE,EAAM,CAAC,IAAK,EAAG,WAAW,kBACzBF,EAACC,aACE,OAAOX,GAAiB,SAAWV,EAACuB,EAAI,CAAC,WAAW,SAAU,SAAAb,CAAoB,CAAA,EAAGA,EACrFE,GAAkBZ,EAACwB,EAAe,CAAC,MAAO,GAAI,OAAQ,GAAI,MAAOC,EAAM,wBAAwB,CAAC,CAAA,CAAI,IAEtGd,GACCX,EAACuB,EAAI,CAAC,KAAK,KAAK,UAAU,gBACvB,SAAAZ,CACI,CAAA,CACR,GACM,CACF,CAAA,EACTX,EAACqB,EAAM,CAAA,SACJL,GAAgB,CACf,GAAGA,EACH,MAAO,CACL,GAAGA,EAAa,MAChB,UAAYA,EAAa,MAAM,MAA4C,OAApCG,EAAI,CAAE,MAAO,kBAAmB,EACvE,MAAO,GACP,OAAQ,EACT,EAEI,CAAA,CAAA,CAAA,CAAA,CAEK,CAAA,CAEtB,CAAC,CACH,CAAC,EAGHb,EAAqB,YAAc,yBAE7BoB,EAAmB,OAAO,OAAOpB,EAAsB,CAAE,YAAAV,EAAa,aAAAS,CAAY,CAAE"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { ButtonContainerProps } from '../containers';
|
|
2
|
+
import { ReactNode } from 'react';
|
|
3
3
|
import { AriaButtonProps } from 'react-aria';
|
|
4
4
|
export interface NavigationButtonProps extends AriaButtonProps, ButtonContainerProps {
|
|
5
|
-
primaryLabel: string;
|
|
5
|
+
primaryLabel: string | ReactNode;
|
|
6
6
|
secondaryLabel?: string;
|
|
7
7
|
isExternalLink?: boolean;
|
|
8
8
|
disabled?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"navigation-button.d.ts","sourceRoot":"","sources":["../../../../src/components/list-items/navigation-button.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"navigation-button.d.ts","sourceRoot":"","sources":["../../../../src/components/list-items/navigation-button.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAmB,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAO/E,OAAO,EAAsC,SAAS,EAAE,MAAM,OAAO,CAAC;AACtE,OAAO,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAE7C,MAAM,WAAW,qBAAsB,SAAQ,eAAe,EAAE,oBAAoB;IAClF,YAAY,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAuFD,QAAA,MAAM,gBAAgB;;;CAAqE,CAAC;AAE5F,eAAe,gBAAgB,CAAC"}
|