@carto/meridian-ds 2.5.5-alpha-translations.1 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -2
- package/dist/{Alert-CRVceJ9N.js → Alert-DHd9hCGz.js} +1 -1
- package/dist/{Alert-Dyw7Z9wJ.cjs → Alert-DOeOwxOe.cjs} +7 -7
- package/dist/{MenuItem-o51jnNjL.cjs → MenuItem-CYJN2OVU.cjs} +6 -6
- package/dist/{MenuItem-h41wtQTz.js → MenuItem-MUmADf3e.js} +1 -1
- package/dist/components/index.cjs +222 -76
- package/dist/components/index.js +161 -15
- package/dist/{TablePaginationActions-CMC_ZxDN.cjs → css-utils-CCi3p7os.cjs} +6 -0
- package/dist/{TablePaginationActions-DIFPc_wQ.js → css-utils-WejOmkiI.js} +10 -4
- package/dist/theme/index.cjs +108 -114
- package/dist/theme/index.js +7 -13
- package/dist/types/components/EllipsisWithTooltip/EllipsisWithTooltip.d.ts +117 -0
- package/dist/types/components/EllipsisWithTooltip/EllipsisWithTooltip.d.ts.map +1 -0
- package/dist/types/components/EllipsisWithTooltip/EllipsisWithTooltip.stories.d.ts +66 -0
- package/dist/types/components/EllipsisWithTooltip/EllipsisWithTooltip.stories.d.ts.map +1 -0
- package/dist/types/components/EllipsisWithTooltip/EllipsisWithTooltip.test.d.ts +2 -0
- package/dist/types/components/EllipsisWithTooltip/EllipsisWithTooltip.test.d.ts.map +1 -0
- package/dist/types/components/EllipsisWithTooltip/index.d.ts +3 -0
- package/dist/types/components/EllipsisWithTooltip/index.d.ts.map +1 -0
- package/dist/types/components/Link/Link.stories.d.ts +0 -7
- package/dist/types/components/Link/Link.stories.d.ts.map +1 -1
- package/dist/types/components/Tag/Tag.d.ts +176 -4
- package/dist/types/components/Tag/Tag.d.ts.map +1 -1
- package/dist/types/components/index.d.ts +2 -0
- package/dist/types/components/index.d.ts.map +1 -1
- package/dist/types/theme/components/forms.d.ts.map +1 -1
- package/dist/types/utils/css-utils.d.ts +14 -0
- package/dist/types/utils/css-utils.d.ts.map +1 -0
- package/dist/types/widgets/TableWidgetUI/TableWidgetUI.d.ts.map +1 -1
- package/dist/types/widgets/WrapperWidgetUI/WrapperWidgetUI.d.ts.map +1 -1
- package/dist/widgets/index.cjs +114 -119
- package/dist/widgets/index.js +4 -9
- package/package.json +1 -1
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import { default as React, ReactNode, MutableRefObject, ComponentProps } from 'react';
|
|
2
|
+
import { TooltipProps } from '@mui/material';
|
|
3
|
+
/**
|
|
4
|
+
* Props for the EllipsisWithTooltip component.
|
|
5
|
+
*
|
|
6
|
+
* @interface EllipsisWithTooltipProps
|
|
7
|
+
* @extends Omit<TooltipProps, 'title' | 'children'>
|
|
8
|
+
*/
|
|
9
|
+
export type EllipsisWithTooltipProps = Omit<TooltipProps, 'title' | 'children'> & {
|
|
10
|
+
/**
|
|
11
|
+
* The content to be wrapped with ellipsis and tooltip functionality.
|
|
12
|
+
* Can be any ReactNode (text, components, etc.).
|
|
13
|
+
*
|
|
14
|
+
* @example
|
|
15
|
+
* ```tsx
|
|
16
|
+
* <EllipsisWithTooltip>
|
|
17
|
+
* <Typography>Long text that might overflow</Typography>
|
|
18
|
+
* </EllipsisWithTooltip>
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
children: ReactNode;
|
|
22
|
+
/**
|
|
23
|
+
* Custom tooltip text. If not provided, uses the text content of children.
|
|
24
|
+
*
|
|
25
|
+
* @example
|
|
26
|
+
* ```tsx
|
|
27
|
+
* <EllipsisWithTooltip tooltipText="Custom tooltip text">
|
|
28
|
+
* <Typography>Some content</Typography>
|
|
29
|
+
* </EllipsisWithTooltip>
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
tooltipText?: string;
|
|
33
|
+
/**
|
|
34
|
+
* Content display mode for styling.
|
|
35
|
+
*
|
|
36
|
+
* @default 'block'
|
|
37
|
+
* @example
|
|
38
|
+
* ```tsx
|
|
39
|
+
* <EllipsisWithTooltip content="flex">
|
|
40
|
+
* <div>Flex content</div>
|
|
41
|
+
* </EllipsisWithTooltip>
|
|
42
|
+
* ```
|
|
43
|
+
*/
|
|
44
|
+
content?: 'block' | 'flex';
|
|
45
|
+
/**
|
|
46
|
+
* Always show the tooltip, regardless of overflow detection.
|
|
47
|
+
* Useful for testing or when you always want to display the tooltip.
|
|
48
|
+
*
|
|
49
|
+
* @default false
|
|
50
|
+
* @example
|
|
51
|
+
* ```tsx
|
|
52
|
+
* <EllipsisWithTooltip alwaysShowTooltip={true}>
|
|
53
|
+
* <Typography>Always show tooltip</Typography>
|
|
54
|
+
* </EllipsisWithTooltip>
|
|
55
|
+
* ```
|
|
56
|
+
*/
|
|
57
|
+
alwaysShowTooltip?: boolean;
|
|
58
|
+
/**
|
|
59
|
+
* Controls which children should have ellipsis applied.
|
|
60
|
+
* - 'first-child': Apply ellipsis only to the first child element
|
|
61
|
+
* - 'all': Apply ellipsis to all children (default behavior)
|
|
62
|
+
*
|
|
63
|
+
* This is useful for layouts where you want to preserve the visibility of
|
|
64
|
+
* secondary elements while truncating the primary content.
|
|
65
|
+
*
|
|
66
|
+
* @default 'all'
|
|
67
|
+
* @example
|
|
68
|
+
* ```tsx
|
|
69
|
+
* <EllipsisWithTooltip ellipsisTarget="first-child">
|
|
70
|
+
* <Typography>This long text will be ellipsed</Typography>
|
|
71
|
+
* <Typography>This secondary text remains fully visible</Typography>
|
|
72
|
+
* </EllipsisWithTooltip>
|
|
73
|
+
* ```
|
|
74
|
+
*/
|
|
75
|
+
ellipsisTarget?: 'first-child' | 'all';
|
|
76
|
+
/**
|
|
77
|
+
* Number of lines to display before showing ellipsis.
|
|
78
|
+
* When greater than 1, uses CSS line-clamp for multi-line ellipsis.
|
|
79
|
+
*
|
|
80
|
+
* @default 1
|
|
81
|
+
* @example
|
|
82
|
+
* ```tsx
|
|
83
|
+
* <EllipsisWithTooltip lines={3}>
|
|
84
|
+
* <Typography>Long text that can wrap to multiple lines</Typography>
|
|
85
|
+
* </EllipsisWithTooltip>
|
|
86
|
+
* ```
|
|
87
|
+
*/
|
|
88
|
+
lines?: number;
|
|
89
|
+
/**
|
|
90
|
+
* Additional props to pass to the content wrapper element.
|
|
91
|
+
* Useful for styling or adding custom attributes.
|
|
92
|
+
*
|
|
93
|
+
* @example
|
|
94
|
+
* ```tsx
|
|
95
|
+
* <EllipsisWithTooltip contentProps={{ style: { display: 'flex' } }}>
|
|
96
|
+
* <Typography>Content</Typography>
|
|
97
|
+
* </EllipsisWithTooltip>
|
|
98
|
+
* ```
|
|
99
|
+
*/
|
|
100
|
+
contentProps?: ComponentProps<'span'>;
|
|
101
|
+
/**
|
|
102
|
+
* Ref to the text element for manual overflow detection.
|
|
103
|
+
* Useful when you need to control which element is used for overflow detection.
|
|
104
|
+
*
|
|
105
|
+
* @example
|
|
106
|
+
* ```tsx
|
|
107
|
+
* const textRef = useRef<HTMLElement>(null);
|
|
108
|
+
* <EllipsisWithTooltip textRef={textRef}>
|
|
109
|
+
* <Typography ref={textRef}>Content</Typography>
|
|
110
|
+
* </EllipsisWithTooltip>
|
|
111
|
+
* ```
|
|
112
|
+
*/
|
|
113
|
+
textRef?: MutableRefObject<HTMLElement | null>;
|
|
114
|
+
};
|
|
115
|
+
declare const EllipsisWithTooltip: React.ForwardRefExoticComponent<Omit<EllipsisWithTooltipProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
116
|
+
export default EllipsisWithTooltip;
|
|
117
|
+
//# sourceMappingURL=EllipsisWithTooltip.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EllipsisWithTooltip.d.ts","sourceRoot":"","sources":["../../../../src/components/EllipsisWithTooltip/EllipsisWithTooltip.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAMZ,SAAS,EACT,gBAAgB,EAChB,cAAc,EACf,MAAM,OAAO,CAAA;AACd,OAAO,EAAW,YAAY,EAAU,MAAM,eAAe,CAAA;AAG7D;;;;;GAKG;AACH,MAAM,MAAM,wBAAwB,GAAG,IAAI,CACzC,YAAY,EACZ,OAAO,GAAG,UAAU,CACrB,GAAG;IACF;;;;;;;;;;OAUG;IACH,QAAQ,EAAE,SAAS,CAAA;IAEnB;;;;;;;;;OASG;IACH,WAAW,CAAC,EAAE,MAAM,CAAA;IAEpB;;;;;;;;;;OAUG;IACH,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,CAAA;IAE1B;;;;;;;;;;;OAWG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAE3B;;;;;;;;;;;;;;;;OAgBG;IACH,cAAc,CAAC,EAAE,aAAa,GAAG,KAAK,CAAA;IAEtC;;;;;;;;;;;OAWG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;;;;;;;;OAUG;IACH,YAAY,CAAC,EAAE,cAAc,CAAC,MAAM,CAAC,CAAA;IAErC;;;;;;;;;;;OAWG;IACH,OAAO,CAAC,EAAE,gBAAgB,CAAC,WAAW,GAAG,IAAI,CAAC,CAAA;CAC/C,CAAA;AA6LD,QAAA,MAAM,mBAAmB,8GAAmC,CAAA;AAE5D,eAAe,mBAAmB,CAAA"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
declare const options: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: React.ForwardRefExoticComponent<Omit<import('..').EllipsisWithTooltipProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
5
|
+
argTypes: {
|
|
6
|
+
ellipsisTarget: {
|
|
7
|
+
control: "select";
|
|
8
|
+
options: string[];
|
|
9
|
+
description: string;
|
|
10
|
+
};
|
|
11
|
+
content: {
|
|
12
|
+
control: "select";
|
|
13
|
+
options: string[];
|
|
14
|
+
description: string;
|
|
15
|
+
};
|
|
16
|
+
alwaysShowTooltip: {
|
|
17
|
+
control: "boolean";
|
|
18
|
+
description: string;
|
|
19
|
+
};
|
|
20
|
+
lines: {
|
|
21
|
+
control: "number";
|
|
22
|
+
description: string;
|
|
23
|
+
};
|
|
24
|
+
tooltipText: {
|
|
25
|
+
control: "text";
|
|
26
|
+
};
|
|
27
|
+
children: {
|
|
28
|
+
control: "text";
|
|
29
|
+
description: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
args: {
|
|
33
|
+
children: import("react/jsx-runtime").JSX.Element;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
export default options;
|
|
37
|
+
export declare const Playground: {
|
|
38
|
+
render: import('@storybook/core/csf').ArgsStoryFn<import('@storybook/react').ReactRenderer, Omit<import('..').EllipsisWithTooltipProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
39
|
+
};
|
|
40
|
+
export declare const EllipsisTarget: {
|
|
41
|
+
render: import('@storybook/core/csf').ArgsStoryFn<import('@storybook/react').ReactRenderer, Omit<import('..').EllipsisWithTooltipProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
42
|
+
};
|
|
43
|
+
export declare const Lines: {
|
|
44
|
+
render: import('@storybook/core/csf').ArgsStoryFn<import('@storybook/react').ReactRenderer, Omit<import('..').EllipsisWithTooltipProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
45
|
+
argTypes: {
|
|
46
|
+
ellipsisTarget: {
|
|
47
|
+
table: {
|
|
48
|
+
disable: boolean;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
export declare const Content: {
|
|
54
|
+
render: import('@storybook/core/csf').ArgsStoryFn<import('@storybook/react').ReactRenderer, Omit<import('..').EllipsisWithTooltipProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
55
|
+
};
|
|
56
|
+
export declare const AlwaysShowTooltip: {
|
|
57
|
+
render: import('@storybook/core/csf').ArgsStoryFn<import('@storybook/react').ReactRenderer, Omit<import('..').EllipsisWithTooltipProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
58
|
+
args: {
|
|
59
|
+
alwaysShowTooltip: boolean;
|
|
60
|
+
children: import("react/jsx-runtime").JSX.Element;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
export declare const Composition: {
|
|
64
|
+
render: import('@storybook/core/csf').ArgsStoryFn<import('@storybook/react').ReactRenderer, Omit<import('..').EllipsisWithTooltipProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
65
|
+
};
|
|
66
|
+
//# sourceMappingURL=EllipsisWithTooltip.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EllipsisWithTooltip.stories.d.ts","sourceRoot":"","sources":["../../../../src/components/EllipsisWithTooltip/EllipsisWithTooltip.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAiB,MAAM,OAAO,CAAA;AAUrC,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwCG,CAAA;AA8OhB,eAAe,OAAO,CAAA;AAEtB,eAAO,MAAM,UAAU;;CAEtB,CAAA;AAED,eAAO,MAAM,cAAc;;CAE1B,CAAA;AAED,eAAO,MAAM,KAAK;;;;;;;;;CAMjB,CAAA;AAED,eAAO,MAAM,OAAO;;CAEnB,CAAA;AAED,eAAO,MAAM,iBAAiB;;;;;;CAU7B,CAAA;AAED,eAAO,MAAM,WAAW;;CAEvB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EllipsisWithTooltip.test.d.ts","sourceRoot":"","sources":["../../../../src/components/EllipsisWithTooltip/EllipsisWithTooltip.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/EllipsisWithTooltip/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AACtE,mBAAmB,uBAAuB,CAAA"}
|
|
@@ -103,11 +103,4 @@ export declare const InlineLink: {
|
|
|
103
103
|
};
|
|
104
104
|
};
|
|
105
105
|
};
|
|
106
|
-
export declare const ButtonLink: {
|
|
107
|
-
render: ({ ...props }: LinkProps) => import("react/jsx-runtime").JSX.Element;
|
|
108
|
-
args: {
|
|
109
|
-
component: string;
|
|
110
|
-
children: string;
|
|
111
|
-
};
|
|
112
|
-
};
|
|
113
106
|
//# sourceMappingURL=Link.stories.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Link.stories.d.ts","sourceRoot":"","sources":["../../../../src/components/Link/Link.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAWzB,OAAO,EAAQ,SAAS,EAA+B,MAAM,cAAc,CAAA;AAK3E,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6CG,CAAA;AAChB,eAAe,OAAO,CAAA;AAmFtB,eAAO,MAAM,UAAU;2BAjFmB,SAAS;;;;;;CAsFlD,CAAA;AAED,eAAO,MAAM,OAAO;oCAlF4B,SAAS;;;;;;;;CA4FxD,CAAA;AAED,eAAO,MAAM,KAAK;oCA7E4B,SAAS;CA+EtD,CAAA;AAED,eAAO,MAAM,IAAI;oCAhE4B,SAAS;CAkErD,CAAA;AAED,eAAO,MAAM,OAAO;2BA5GsB,SAAS;;;;;CAkHlD,CAAA;AA+HD,eAAO,MAAM,YAAY;oCA7H4B,SAAS;;;;;;;;;;;CA0I7D,CAAA;AAED,eAAO,MAAM,UAAU;mCA3LuB,SAAS;;;;;;;;CAkMtD,CAAA
|
|
1
|
+
{"version":3,"file":"Link.stories.d.ts","sourceRoot":"","sources":["../../../../src/components/Link/Link.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAWzB,OAAO,EAAQ,SAAS,EAA+B,MAAM,cAAc,CAAA;AAK3E,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6CG,CAAA;AAChB,eAAe,OAAO,CAAA;AAmFtB,eAAO,MAAM,UAAU;2BAjFmB,SAAS;;;;;;CAsFlD,CAAA;AAED,eAAO,MAAM,OAAO;oCAlF4B,SAAS;;;;;;;;CA4FxD,CAAA;AAED,eAAO,MAAM,KAAK;oCA7E4B,SAAS;CA+EtD,CAAA;AAED,eAAO,MAAM,IAAI;oCAhE4B,SAAS;CAkErD,CAAA;AAED,eAAO,MAAM,OAAO;2BA5GsB,SAAS;;;;;CAkHlD,CAAA;AA+HD,eAAO,MAAM,YAAY;oCA7H4B,SAAS;;;;;;;;;;;CA0I7D,CAAA;AAED,eAAO,MAAM,UAAU;mCA3LuB,SAAS;;;;;;;;CAkMtD,CAAA"}
|
|
@@ -3,28 +3,200 @@ import { TypographyProps } from '..';
|
|
|
3
3
|
export type TagColor = 'primary' | 'secondary' | 'error' | 'success' | 'warning' | 'default';
|
|
4
4
|
export type TagVariant = 'filled' | 'outlined';
|
|
5
5
|
export type TagType = 'default' | 'code';
|
|
6
|
+
/**
|
|
7
|
+
* Props for the Tag component.
|
|
8
|
+
*
|
|
9
|
+
* @interface TagProps
|
|
10
|
+
* @extends Omit<React.HTMLProps<HTMLDivElement>, 'as' | 'size' | 'label' | 'type' | 'ref'>
|
|
11
|
+
*/
|
|
6
12
|
export type TagProps = Omit<React.HTMLProps<HTMLDivElement>, 'as' | 'size' | 'label' | 'type' | 'ref'> & {
|
|
7
|
-
/**
|
|
13
|
+
/**
|
|
14
|
+
* Label, main content of tag, by default displayed as `caption` type typography.
|
|
15
|
+
* Can be a string, React element, or any ReactNode.
|
|
16
|
+
*
|
|
17
|
+
* @example
|
|
18
|
+
* ```tsx
|
|
19
|
+
* <Tag label="Simple text" />
|
|
20
|
+
* <Tag label={<Typography variant="body2">Custom content</Typography>} />
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
8
23
|
label: ReactNode;
|
|
24
|
+
/**
|
|
25
|
+
* Color theme for the tag.
|
|
26
|
+
*
|
|
27
|
+
* @default 'primary'
|
|
28
|
+
* @example
|
|
29
|
+
* ```tsx
|
|
30
|
+
* <Tag label="Success" color="success" />
|
|
31
|
+
* <Tag label="Warning" color="warning" />
|
|
32
|
+
* ```
|
|
33
|
+
*/
|
|
9
34
|
color?: TagColor;
|
|
35
|
+
/**
|
|
36
|
+
* Optional icon to display before the label.
|
|
37
|
+
* Can be any ReactNode (icon component, emoji, etc.).
|
|
38
|
+
*
|
|
39
|
+
* @example
|
|
40
|
+
* ```tsx
|
|
41
|
+
* <Tag label="File" icon={<FileIcon />} />
|
|
42
|
+
* <Tag label="Folder" icon="📁" />
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
10
45
|
icon?: ReactNode;
|
|
46
|
+
/**
|
|
47
|
+
* Visual variant of the tag.
|
|
48
|
+
*
|
|
49
|
+
* @default 'filled'
|
|
50
|
+
* @example
|
|
51
|
+
* ```tsx
|
|
52
|
+
* <Tag label="Outlined" variant="outlined" />
|
|
53
|
+
* <Tag label="Filled" variant="filled" />
|
|
54
|
+
* ```
|
|
55
|
+
*/
|
|
11
56
|
variant?: TagVariant;
|
|
57
|
+
/**
|
|
58
|
+
* Type of tag, affects typography styling.
|
|
59
|
+
*
|
|
60
|
+
* @default 'default'
|
|
61
|
+
* @example
|
|
62
|
+
* ```tsx
|
|
63
|
+
* <Tag label="const variable" type="code" />
|
|
64
|
+
* <Tag label="Regular tag" type="default" />
|
|
65
|
+
* ```
|
|
66
|
+
*/
|
|
12
67
|
type?: TagType;
|
|
13
|
-
/**
|
|
68
|
+
/**
|
|
69
|
+
* Options passed to the internal Typography component.
|
|
70
|
+
* Use to override default typography styles.
|
|
71
|
+
*
|
|
72
|
+
* @example
|
|
73
|
+
* ```tsx
|
|
74
|
+
* <Tag
|
|
75
|
+
* label="Custom styled"
|
|
76
|
+
* typographyProps={{
|
|
77
|
+
* variant: 'body2',
|
|
78
|
+
* fontWeight: 'bold'
|
|
79
|
+
* }}
|
|
80
|
+
* />
|
|
81
|
+
* ```
|
|
82
|
+
*/
|
|
14
83
|
typographyProps?: TypographyProps;
|
|
84
|
+
/**
|
|
85
|
+
* Whether to prevent text wrapping.
|
|
86
|
+
*
|
|
87
|
+
* @default true
|
|
88
|
+
* @example
|
|
89
|
+
* ```tsx
|
|
90
|
+
* <Tag label="No wrap text" noWrap={true} />
|
|
91
|
+
* <Tag label="Wrapping text" noWrap={false} />
|
|
92
|
+
* ```
|
|
93
|
+
*/
|
|
15
94
|
noWrap?: boolean;
|
|
95
|
+
/**
|
|
96
|
+
* Whether the tag is disabled.
|
|
97
|
+
* Disabled tags have reduced opacity and are not interactive.
|
|
98
|
+
*
|
|
99
|
+
* @default false
|
|
100
|
+
* @example
|
|
101
|
+
* ```tsx
|
|
102
|
+
* <Tag label="Disabled tag" disabled={true} />
|
|
103
|
+
* ```
|
|
104
|
+
*/
|
|
16
105
|
disabled?: boolean;
|
|
17
106
|
};
|
|
18
107
|
declare const Tag: import('react').ForwardRefExoticComponent<Omit<import('react').HTMLProps<HTMLDivElement>, "size" | "label" | "ref" | "type" | "as"> & {
|
|
19
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* Label, main content of tag, by default displayed as `caption` type typography.
|
|
110
|
+
* Can be a string, React element, or any ReactNode.
|
|
111
|
+
*
|
|
112
|
+
* @example
|
|
113
|
+
* ```tsx
|
|
114
|
+
* <Tag label="Simple text" />
|
|
115
|
+
* <Tag label={<Typography variant="body2">Custom content</Typography>} />
|
|
116
|
+
* ```
|
|
117
|
+
*/
|
|
20
118
|
label: ReactNode;
|
|
119
|
+
/**
|
|
120
|
+
* Color theme for the tag.
|
|
121
|
+
*
|
|
122
|
+
* @default 'primary'
|
|
123
|
+
* @example
|
|
124
|
+
* ```tsx
|
|
125
|
+
* <Tag label="Success" color="success" />
|
|
126
|
+
* <Tag label="Warning" color="warning" />
|
|
127
|
+
* ```
|
|
128
|
+
*/
|
|
21
129
|
color?: TagColor;
|
|
130
|
+
/**
|
|
131
|
+
* Optional icon to display before the label.
|
|
132
|
+
* Can be any ReactNode (icon component, emoji, etc.).
|
|
133
|
+
*
|
|
134
|
+
* @example
|
|
135
|
+
* ```tsx
|
|
136
|
+
* <Tag label="File" icon={<FileIcon />} />
|
|
137
|
+
* <Tag label="Folder" icon="📁" />
|
|
138
|
+
* ```
|
|
139
|
+
*/
|
|
22
140
|
icon?: ReactNode;
|
|
141
|
+
/**
|
|
142
|
+
* Visual variant of the tag.
|
|
143
|
+
*
|
|
144
|
+
* @default 'filled'
|
|
145
|
+
* @example
|
|
146
|
+
* ```tsx
|
|
147
|
+
* <Tag label="Outlined" variant="outlined" />
|
|
148
|
+
* <Tag label="Filled" variant="filled" />
|
|
149
|
+
* ```
|
|
150
|
+
*/
|
|
23
151
|
variant?: TagVariant;
|
|
152
|
+
/**
|
|
153
|
+
* Type of tag, affects typography styling.
|
|
154
|
+
*
|
|
155
|
+
* @default 'default'
|
|
156
|
+
* @example
|
|
157
|
+
* ```tsx
|
|
158
|
+
* <Tag label="const variable" type="code" />
|
|
159
|
+
* <Tag label="Regular tag" type="default" />
|
|
160
|
+
* ```
|
|
161
|
+
*/
|
|
24
162
|
type?: TagType;
|
|
25
|
-
/**
|
|
163
|
+
/**
|
|
164
|
+
* Options passed to the internal Typography component.
|
|
165
|
+
* Use to override default typography styles.
|
|
166
|
+
*
|
|
167
|
+
* @example
|
|
168
|
+
* ```tsx
|
|
169
|
+
* <Tag
|
|
170
|
+
* label="Custom styled"
|
|
171
|
+
* typographyProps={{
|
|
172
|
+
* variant: 'body2',
|
|
173
|
+
* fontWeight: 'bold'
|
|
174
|
+
* }}
|
|
175
|
+
* />
|
|
176
|
+
* ```
|
|
177
|
+
*/
|
|
26
178
|
typographyProps?: TypographyProps;
|
|
179
|
+
/**
|
|
180
|
+
* Whether to prevent text wrapping.
|
|
181
|
+
*
|
|
182
|
+
* @default true
|
|
183
|
+
* @example
|
|
184
|
+
* ```tsx
|
|
185
|
+
* <Tag label="No wrap text" noWrap={true} />
|
|
186
|
+
* <Tag label="Wrapping text" noWrap={false} />
|
|
187
|
+
* ```
|
|
188
|
+
*/
|
|
27
189
|
noWrap?: boolean;
|
|
190
|
+
/**
|
|
191
|
+
* Whether the tag is disabled.
|
|
192
|
+
* Disabled tags have reduced opacity and are not interactive.
|
|
193
|
+
*
|
|
194
|
+
* @default false
|
|
195
|
+
* @example
|
|
196
|
+
* ```tsx
|
|
197
|
+
* <Tag label="Disabled tag" disabled={true} />
|
|
198
|
+
* ```
|
|
199
|
+
*/
|
|
28
200
|
disabled?: boolean;
|
|
29
201
|
} & import('react').RefAttributes<HTMLDivElement>>;
|
|
30
202
|
export default Tag;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tag.d.ts","sourceRoot":"","sources":["../../../../src/components/Tag/Tag.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAA4B,MAAM,OAAO,CAAA;AAG3D,OAAO,EAAc,eAAe,EAAE,MAAM,cAAc,CAAA;
|
|
1
|
+
{"version":3,"file":"Tag.d.ts","sourceRoot":"","sources":["../../../../src/components/Tag/Tag.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAA4B,MAAM,OAAO,CAAA;AAG3D,OAAO,EAAc,eAAe,EAAE,MAAM,cAAc,CAAA;AAG1D,MAAM,MAAM,QAAQ,GAChB,SAAS,GACT,WAAW,GACX,OAAO,GACP,SAAS,GACT,SAAS,GACT,SAAS,CAAA;AAEb,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,UAAU,CAAA;AAE9C,MAAM,MAAM,OAAO,GAAG,SAAS,GAAG,MAAM,CAAA;AAExC;;;;;GAKG;AAEH,MAAM,MAAM,QAAQ,GAAG,IAAI,CACzB,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,EAC/B,IAAI,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,KAAK,CACzC,GAAG;IACF;;;;;;;;;OASG;IACH,KAAK,EAAE,SAAS,CAAA;IAEhB;;;;;;;;;OASG;IACH,KAAK,CAAC,EAAE,QAAQ,CAAA;IAEhB;;;;;;;;;OASG;IACH,IAAI,CAAC,EAAE,SAAS,CAAA;IAEhB;;;;;;;;;OASG;IACH,OAAO,CAAC,EAAE,UAAU,CAAA;IAEpB;;;;;;;;;OASG;IACH,IAAI,CAAC,EAAE,OAAO,CAAA;IAEd;;;;;;;;;;;;;;OAcG;IACH,eAAe,CAAC,EAAE,eAAe,CAAA;IAEjC;;;;;;;;;OASG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAEhB;;;;;;;;;OASG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,CAAA;AA0ND,QAAA,MAAM,GAAG;IA9TP;;;;;;;;;OASG;WACI,SAAS;IAEhB;;;;;;;;;OASG;YACK,QAAQ;IAEhB;;;;;;;;;OASG;WACI,SAAS;IAEhB;;;;;;;;;OASG;cACO,UAAU;IAEpB;;;;;;;;;OASG;WACI,OAAO;IAEd;;;;;;;;;;;;;;OAcG;sBACe,eAAe;IAEjC;;;;;;;;;OASG;aACM,OAAO;IAEhB;;;;;;;;;OASG;eACQ,OAAO;kDA2NQ,CAAA;AAC5B,eAAe,GAAG,CAAA"}
|
|
@@ -26,6 +26,7 @@ export * from './Snackbar';
|
|
|
26
26
|
export * from './TablePaginationActions';
|
|
27
27
|
export * from './Tag';
|
|
28
28
|
export * from './UploadField';
|
|
29
|
+
export * from './EllipsisWithTooltip';
|
|
29
30
|
export type * from './Button';
|
|
30
31
|
export type * from './SplitButton';
|
|
31
32
|
export type * from './LabelWithIndicator';
|
|
@@ -54,4 +55,5 @@ export type * from './Snackbar';
|
|
|
54
55
|
export type * from './TablePaginationActions';
|
|
55
56
|
export type * from './Tag';
|
|
56
57
|
export type * from './UploadField';
|
|
58
|
+
export type * from './EllipsisWithTooltip';
|
|
57
59
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,sBAAsB,CAAA;AACpC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,qBAAqB,CAAA;AACnC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,QAAQ,CAAA;AACtB,cAAc,oBAAoB,CAAA;AAClC,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAC1B,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,kBAAkB,CAAA;AAChC,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,kBAAkB,CAAA;AAChC,cAAc,QAAQ,CAAA;AACtB,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,0BAA0B,CAAA;AACxC,cAAc,OAAO,CAAA;AACrB,cAAc,eAAe,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,sBAAsB,CAAA;AACpC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,qBAAqB,CAAA;AACnC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,QAAQ,CAAA;AACtB,cAAc,oBAAoB,CAAA;AAClC,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAC1B,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,kBAAkB,CAAA;AAChC,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,kBAAkB,CAAA;AAChC,cAAc,QAAQ,CAAA;AACtB,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,0BAA0B,CAAA;AACxC,cAAc,OAAO,CAAA;AACrB,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AAErC,mBAAmB,UAAU,CAAA;AAC7B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,sBAAsB,CAAA;AACzC,mBAAmB,iBAAiB,CAAA;AACpC,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,qBAAqB,CAAA;AACxC,mBAAmB,cAAc,CAAA;AACjC,mBAAmB,cAAc,CAAA;AACjC,mBAAmB,QAAQ,CAAA;AAC3B,mBAAmB,oBAAoB,CAAA;AACvC,mBAAmB,qBAAqB,CAAA;AACxC,mBAAmB,qBAAqB,CAAA;AACxC,mBAAmB,gBAAgB,CAAA;AACnC,mBAAmB,UAAU,CAAA;AAC7B,mBAAmB,YAAY,CAAA;AAC/B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,UAAU,CAAA;AAC7B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,kBAAkB,CAAA;AACrC,mBAAmB,SAAS,CAAA;AAC5B,mBAAmB,UAAU,CAAA;AAC7B,mBAAmB,kBAAkB,CAAA;AACrC,mBAAmB,QAAQ,CAAA;AAC3B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,YAAY,CAAA;AAC/B,mBAAmB,0BAA0B,CAAA;AAC7C,mBAAmB,OAAO,CAAA;AAC1B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,uBAAuB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"forms.d.ts","sourceRoot":"","sources":["../../../../src/theme/components/forms.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAuB,KAAK,EAAW,MAAM,eAAe,CAAA;
|
|
1
|
+
{"version":3,"file":"forms.d.ts","sourceRoot":"","sources":["../../../../src/theme/components/forms.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAuB,KAAK,EAAW,MAAM,eAAe,CAAA;AA8F/E,eAAO,MAAM,cAAc,EAAE,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CA05BrD,CAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Common CSS utility styles for the design system.
|
|
3
|
+
* These styles can be reused across components to ensure consistency.
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* Standard ellipsis styles for text truncation.
|
|
7
|
+
* Used for single-line text overflow with ellipsis.
|
|
8
|
+
*/
|
|
9
|
+
export declare const ellipsisStyles: {
|
|
10
|
+
readonly textOverflow: "ellipsis";
|
|
11
|
+
readonly overflow: "hidden";
|
|
12
|
+
readonly whiteSpace: "nowrap";
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=css-utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"css-utils.d.ts","sourceRoot":"","sources":["../../../src/utils/css-utils.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;GAGG;AACH,eAAO,MAAM,cAAc;;;;CAIjB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TableWidgetUI.d.ts","sourceRoot":"","sources":["../../../../src/widgets/TableWidgetUI/TableWidgetUI.tsx"],"names":[],"mappings":"AAEA,OAAO,EAWL,cAAc,EACf,MAAM,eAAe,CAAA;
|
|
1
|
+
{"version":3,"file":"TableWidgetUI.d.ts","sourceRoot":"","sources":["../../../../src/widgets/TableWidgetUI/TableWidgetUI.tsx"],"names":[],"mappings":"AAEA,OAAO,EAWL,cAAc,EACf,MAAM,eAAe,CAAA;AA0CtB,MAAM,MAAM,WAAW,GAAG;IACxB,KAAK,EAAE,MAAM,CAAA;IACb,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,KAAK,CAAC,EAAE,cAAc,CAAC,OAAO,CAAC,CAAA;IAC/B,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,GAAG,CAAC,OAAO,CAAA;IAC3C,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,MAAM,CAAA;CACvC,CAAA;AAED,MAAM,MAAM,kBAAkB,CAC5B,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,IACzD;IACF,OAAO,EAAE,WAAW,EAAE,CAAA;IACtB,IAAI,EAAE,CAAC,EAAE,CAAA;IACT,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,aAAa,CAAC,EAAE,KAAK,GAAG,MAAM,CAAA;IAC9B,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IACrC,kBAAkB,CAAC,EAAE,CAAC,SAAS,EAAE,MAAM,KAAK,IAAI,CAAA;IAChD,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,IAAI,CAAA;IAClC,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC7B,gBAAgB,CAAC,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAA;IAChD,UAAU,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,KAAK,IAAI,CAAA;IAC7B,eAAe,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,KAAK,IAAI,CAAA;IAClC,eAAe,CAAC,EAAE,CAAC,GAAG,EAAE,CAAC,KAAK,IAAI,CAAA;IAClC,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACxB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,eAAe,CAAC,EAAE,MAAM,CAAA;CACzB,CAAA;AAID,MAAM,CAAC,OAAO,UAAU,aAAa,CACnC,CAAC,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC3D,EACA,OAAO,EACP,IAAI,EACJ,OAAe,EACf,MAAM,EACN,aAAqB,EACrB,WAAsB,EACtB,kBAA6B,EAC7B,UAAkB,EAClB,UAAU,EACV,IAAI,EACJ,SAAoB,EACpB,WAAyB,EACzB,kBAAgC,EAChC,gBAA2B,EAC3B,UAAqB,EACrB,eAAe,EACf,eAAe,EACf,MAAM,EACN,KAAa,EACb,SAAS,EACT,eAAe,GAChB,EAAE,kBAAkB,CAAC,CAAC,CAAC,2CA4GvB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WrapperWidgetUI.d.ts","sourceRoot":"","sources":["../../../../src/widgets/WrapperWidgetUI/WrapperWidgetUI.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAuB,KAAK,aAAa,EAAE,MAAM,OAAO,CAAA;AAC/D,OAAO,EAEL,QAAQ,EAaT,MAAM,eAAe,CAAA;
|
|
1
|
+
{"version":3,"file":"WrapperWidgetUI.d.ts","sourceRoot":"","sources":["../../../../src/widgets/WrapperWidgetUI/WrapperWidgetUI.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAuB,KAAK,aAAa,EAAE,MAAM,OAAO,CAAA;AAC/D,OAAO,EAEL,QAAQ,EAaT,MAAM,eAAe,CAAA;AAwGtB,MAAM,MAAM,qBAAqB,GAAG;IAClC,EAAE,EAAE,MAAM,CAAA;IACV,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,KAAK,CAAC,SAAS,CAAA;IACrB,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,OAAO,CAAC,EAAE;QACR,IAAI,EAAE,MAAM,CAAA;QACZ,SAAS,CAAC,EAAE,KAAK,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAA;KAChD,CAAA;CACF,CAAA;AACD,MAAM,MAAM,qBAAqB,GAAG;IAClC,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,MAAM,IAAI,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,CAAA;AACD,MAAM,MAAM,oBAAoB,GAAG;IACjC,KAAK,EAAE,MAAM,CAAA;IACb,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,gBAAgB,CAAC,EAAE,CAAC,QAAQ,EAAE,OAAO,KAAK,IAAI,CAAA;IAC9C,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC7B,OAAO,CAAC,EAAE,qBAAqB,EAAE,CAAA;IACjC,OAAO,CAAC,EAAE,qBAAqB,EAAE,CAAA;IACjC,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC7B,QAAQ,CAAC,EAAE,GAAG,CAAC,OAAO,GAAG,GAAG,CAAC,OAAO,EAAE,CAAA;IACtC,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IACxB,MAAM,CAAC,EAAE,aAAa,CAAC,QAAQ,CAAC,CAAA;IAChC,YAAY,CAAC,EAAE,QAAQ,CAAA;CACxB,GAAG,CACA;IAAE,QAAQ,EAAE,IAAI,CAAC;IAAC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,KAAK,CAAC;IAAC,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,CACnD,CAAA;AAKD,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EACtC,KAAK,EACL,OAA8C,EAC9C,OAA8C,EAC9C,WAAgC,EAChC,QAAQ,EACR,YAAY,EACZ,QAAgB,EAChB,UAAiB,EACjB,QAAQ,EAAE,SAAgB,EAC1B,gBAAgB,EAChB,MAAM,EACN,WAAW,EACX,SAAiB,EACjB,MAAM,GACP,EAAE,oBAAoB,kDAyItB"}
|