@vaneui/ui 0.3.1-alpha.20251201135827.a31cb1e → 0.3.1-alpha.20251213103636.79707b4
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/components/ui/badge.d.ts +36 -2
- package/dist/components/ui/badge.d.ts.map +1 -1
- package/dist/components/ui/button.d.ts +39 -3
- package/dist/components/ui/button.d.ts.map +1 -1
- package/dist/components/ui/card.d.ts +43 -2
- package/dist/components/ui/card.d.ts.map +1 -1
- package/dist/components/ui/checkbox.d.ts +39 -2
- package/dist/components/ui/checkbox.d.ts.map +1 -1
- package/dist/components/ui/chip.d.ts +36 -2
- package/dist/components/ui/chip.d.ts.map +1 -1
- package/dist/components/ui/code.d.ts +36 -2
- package/dist/components/ui/code.d.ts.map +1 -1
- package/dist/components/ui/col.d.ts +41 -2
- package/dist/components/ui/col.d.ts.map +1 -1
- package/dist/components/ui/container.d.ts +38 -2
- package/dist/components/ui/container.d.ts.map +1 -1
- package/dist/components/ui/divider.d.ts +32 -2
- package/dist/components/ui/divider.d.ts.map +1 -1
- package/dist/components/ui/docs/propDocs.d.ts +2 -2
- package/dist/components/ui/docs/propDocs.d.ts.map +1 -1
- package/dist/components/ui/grid.d.ts +117 -10
- package/dist/components/ui/grid.d.ts.map +1 -1
- package/dist/components/ui/img.d.ts +36 -2
- package/dist/components/ui/img.d.ts.map +1 -1
- package/dist/components/ui/input.d.ts +36 -2
- package/dist/components/ui/input.d.ts.map +1 -1
- package/dist/components/ui/label.d.ts +42 -2
- package/dist/components/ui/label.d.ts.map +1 -1
- package/dist/components/ui/row.d.ts +40 -2
- package/dist/components/ui/row.d.ts.map +1 -1
- package/dist/components/ui/section.d.ts +39 -2
- package/dist/components/ui/section.d.ts.map +1 -1
- package/dist/components/ui/stack.d.ts +40 -2
- package/dist/components/ui/stack.d.ts.map +1 -1
- package/dist/components/ui/typography.d.ts +223 -14
- package/dist/components/ui/typography.d.ts.map +1 -1
- package/dist/index.esm.js +839 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +839 -0
- package/dist/index.js.map +1 -1
- package/dist/ui.css +15 -0
- package/package.json +1 -1
|
@@ -1,27 +1,134 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, TransparentProps, VariantProps } from './props';
|
|
2
3
|
/** Grid component props */
|
|
3
4
|
export type GridProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & TransparentProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children'> & {
|
|
4
5
|
/** Custom HTML tag or React component to render as */
|
|
5
6
|
tag?: React.ElementType;
|
|
6
7
|
};
|
|
7
|
-
|
|
8
|
+
/**
|
|
9
|
+
* A 2-column CSS grid container.
|
|
10
|
+
*
|
|
11
|
+
* Creates a responsive grid with 2 equal-width columns. Grid items automatically
|
|
12
|
+
* fill available columns. Uses CSS Grid for precise layout control.
|
|
13
|
+
*
|
|
14
|
+
* @example
|
|
15
|
+
* ```tsx
|
|
16
|
+
* // Basic 2-column grid
|
|
17
|
+
* <Grid2 gap>
|
|
18
|
+
* <Card>Item 1</Card>
|
|
19
|
+
* <Card>Item 2</Card>
|
|
20
|
+
* <Card>Item 3</Card>
|
|
21
|
+
* <Card>Item 4</Card>
|
|
22
|
+
* </Grid2>
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* @example
|
|
26
|
+
* ```tsx
|
|
27
|
+
* // Grid with custom styling
|
|
28
|
+
* <Grid2 gap lg className="auto-rows-fr">
|
|
29
|
+
* <div>Column 1</div>
|
|
30
|
+
* <div>Column 2</div>
|
|
31
|
+
* </Grid2>
|
|
32
|
+
* ```
|
|
33
|
+
*
|
|
34
|
+
* @see {@link GridProps} for all available props
|
|
35
|
+
*/
|
|
36
|
+
export declare const Grid2: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & TransparentProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
8
37
|
/** Custom HTML tag or React component to render as */
|
|
9
38
|
tag?: React.ElementType;
|
|
10
|
-
} &
|
|
11
|
-
|
|
39
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
40
|
+
/**
|
|
41
|
+
* A 3-column CSS grid container.
|
|
42
|
+
*
|
|
43
|
+
* Creates a responsive grid with 3 equal-width columns. Ideal for card
|
|
44
|
+
* layouts and feature displays. Grid items automatically wrap to new rows.
|
|
45
|
+
*
|
|
46
|
+
* @example
|
|
47
|
+
* ```tsx
|
|
48
|
+
* // Basic 3-column grid
|
|
49
|
+
* <Grid3 gap>
|
|
50
|
+
* <Card>Feature 1</Card>
|
|
51
|
+
* <Card>Feature 2</Card>
|
|
52
|
+
* <Card>Feature 3</Card>
|
|
53
|
+
* </Grid3>
|
|
54
|
+
* ```
|
|
55
|
+
*
|
|
56
|
+
* @see {@link GridProps} for all available props
|
|
57
|
+
*/
|
|
58
|
+
export declare const Grid3: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & TransparentProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
12
59
|
/** Custom HTML tag or React component to render as */
|
|
13
60
|
tag?: React.ElementType;
|
|
14
|
-
} &
|
|
15
|
-
|
|
61
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
62
|
+
/**
|
|
63
|
+
* A 4-column CSS grid container.
|
|
64
|
+
*
|
|
65
|
+
* Creates a responsive grid with 4 equal-width columns. Perfect for
|
|
66
|
+
* image galleries or product listings with multiple items per row.
|
|
67
|
+
*
|
|
68
|
+
* @example
|
|
69
|
+
* ```tsx
|
|
70
|
+
* // Basic 4-column grid
|
|
71
|
+
* <Grid4 gap>
|
|
72
|
+
* <Img src="/img1.jpg" alt="1" />
|
|
73
|
+
* <Img src="/img2.jpg" alt="2" />
|
|
74
|
+
* <Img src="/img3.jpg" alt="3" />
|
|
75
|
+
* <Img src="/img4.jpg" alt="4" />
|
|
76
|
+
* </Grid4>
|
|
77
|
+
* ```
|
|
78
|
+
*
|
|
79
|
+
* @see {@link GridProps} for all available props
|
|
80
|
+
*/
|
|
81
|
+
export declare const Grid4: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & TransparentProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
16
82
|
/** Custom HTML tag or React component to render as */
|
|
17
83
|
tag?: React.ElementType;
|
|
18
|
-
} &
|
|
19
|
-
|
|
84
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
85
|
+
/**
|
|
86
|
+
* A 5-column CSS grid container.
|
|
87
|
+
*
|
|
88
|
+
* Creates a responsive grid with 5 equal-width columns. Useful for
|
|
89
|
+
* dense layouts with many small items, like icon grids or tag clouds.
|
|
90
|
+
*
|
|
91
|
+
* @example
|
|
92
|
+
* ```tsx
|
|
93
|
+
* // Basic 5-column grid
|
|
94
|
+
* <Grid5 gap>
|
|
95
|
+
* <Badge>Tag 1</Badge>
|
|
96
|
+
* <Badge>Tag 2</Badge>
|
|
97
|
+
* <Badge>Tag 3</Badge>
|
|
98
|
+
* <Badge>Tag 4</Badge>
|
|
99
|
+
* <Badge>Tag 5</Badge>
|
|
100
|
+
* </Grid5>
|
|
101
|
+
* ```
|
|
102
|
+
*
|
|
103
|
+
* @see {@link GridProps} for all available props
|
|
104
|
+
*/
|
|
105
|
+
export declare const Grid5: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & TransparentProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
20
106
|
/** Custom HTML tag or React component to render as */
|
|
21
107
|
tag?: React.ElementType;
|
|
22
|
-
} &
|
|
23
|
-
|
|
108
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
109
|
+
/**
|
|
110
|
+
* A 6-column CSS grid container.
|
|
111
|
+
*
|
|
112
|
+
* Creates a responsive grid with 6 equal-width columns. Ideal for very
|
|
113
|
+
* dense layouts or dashboard widgets with many small components.
|
|
114
|
+
*
|
|
115
|
+
* @example
|
|
116
|
+
* ```tsx
|
|
117
|
+
* // Basic 6-column grid
|
|
118
|
+
* <Grid6 gap>
|
|
119
|
+
* <Chip>Item 1</Chip>
|
|
120
|
+
* <Chip>Item 2</Chip>
|
|
121
|
+
* <Chip>Item 3</Chip>
|
|
122
|
+
* <Chip>Item 4</Chip>
|
|
123
|
+
* <Chip>Item 5</Chip>
|
|
124
|
+
* <Chip>Item 6</Chip>
|
|
125
|
+
* </Grid6>
|
|
126
|
+
* ```
|
|
127
|
+
*
|
|
128
|
+
* @see {@link GridProps} for all available props
|
|
129
|
+
*/
|
|
130
|
+
export declare const Grid6: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & TransparentProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
24
131
|
/** Custom HTML tag or React component to render as */
|
|
25
132
|
tag?: React.ElementType;
|
|
26
|
-
} &
|
|
133
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
27
134
|
//# sourceMappingURL=grid.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grid.d.ts","sourceRoot":"","sources":["../../../src/components/ui/grid.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"grid.d.ts","sourceRoot":"","sources":["../../../src/components/ui/grid.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,gBAAgB,EAChB,YAAY,EACb,MAAM,SAAS,CAAC;AAIjB,2BAA2B;AAC3B,MAAM,MAAM,SAAS,GAAG,SAAS,GAC/B,SAAS,GACT,SAAS,GACT,UAAU,GACV,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,SAAS,GACT,QAAQ,GACR,kBAAkB,GAClB,YAAY,GACZ,eAAe,GACf,gBAAgB,GAChB,YAAY,GACZ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,GAAG;IACvE,sDAAsD;IACtD,GAAG,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CACzB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,eAAO,MAAM,KAAK;IAhChB,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCAoCxB,CAAC;AAEF;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,KAAK;IAzDhB,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCA6DxB,CAAC;AAEF;;;;;;;;;;;;;;;;;;GAkBG;AACH,eAAO,MAAM,KAAK;IAnFhB,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCAuFxB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;GAmBG;AACH,eAAO,MAAM,KAAK;IA9GhB,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCAkHxB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,eAAO,MAAM,KAAK;IA1IhB,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCA8IxB,CAAC"}
|
|
@@ -1,11 +1,45 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, AppearanceProps, TransparentProps, BorderProps, ShadowProps, RingProps, ShapeProps, VariantProps } from './props';
|
|
2
3
|
/** Img component props */
|
|
3
4
|
export type ImgProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & TransparentProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & Omit<React.ImgHTMLAttributes<HTMLImageElement>, 'className' | 'children'> & {
|
|
4
5
|
/** Custom HTML tag or React component to render as */
|
|
5
6
|
tag?: React.ElementType;
|
|
6
7
|
};
|
|
7
|
-
|
|
8
|
+
/**
|
|
9
|
+
* An image component with styling and layout support.
|
|
10
|
+
*
|
|
11
|
+
* Wraps the HTML img element with VaneUI's styling system. Supports all
|
|
12
|
+
* standard image attributes (src, alt, width, height, etc.) plus additional
|
|
13
|
+
* props for borders, shadows, shapes, and positioning.
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```tsx
|
|
17
|
+
* // Basic image
|
|
18
|
+
* <Img src="/photo.jpg" alt="Description" />
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @example
|
|
22
|
+
* ```tsx
|
|
23
|
+
* // Rounded image with border
|
|
24
|
+
* <Img src="/avatar.jpg" alt="User" pill border primary />
|
|
25
|
+
* ```
|
|
26
|
+
*
|
|
27
|
+
* @example
|
|
28
|
+
* ```tsx
|
|
29
|
+
* // Image with shadow and custom size
|
|
30
|
+
* <Img src="/product.jpg" alt="Product" shadow lg />
|
|
31
|
+
* ```
|
|
32
|
+
*
|
|
33
|
+
* @example
|
|
34
|
+
* ```tsx
|
|
35
|
+
* // Full width responsive image
|
|
36
|
+
* <Img src="/banner.jpg" alt="Banner" className="w-full h-auto" />
|
|
37
|
+
* ```
|
|
38
|
+
*
|
|
39
|
+
* @see {@link ImgProps} for all available props
|
|
40
|
+
*/
|
|
41
|
+
export declare const Img: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & TransparentProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & Omit<React.ImgHTMLAttributes<HTMLImageElement>, "className" | "children"> & {
|
|
8
42
|
/** Custom HTML tag or React component to render as */
|
|
9
43
|
tag?: React.ElementType;
|
|
10
|
-
} &
|
|
44
|
+
} & React.RefAttributes<HTMLImageElement>>;
|
|
11
45
|
//# sourceMappingURL=img.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"img.d.ts","sourceRoot":"","sources":["../../../src/components/ui/img.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"img.d.ts","sourceRoot":"","sources":["../../../src/components/ui/img.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,eAAe,EACf,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,SAAS,EACT,UAAU,EACV,YAAY,EACb,MAAM,SAAS,CAAC;AAIjB,0BAA0B;AAC1B,MAAM,MAAM,QAAQ,GAAG,SAAS,GAC9B,SAAS,GACT,SAAS,GACT,UAAU,GACV,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,eAAe,GACf,gBAAgB,GAChB,WAAW,GACX,WAAW,GACX,SAAS,GACT,UAAU,GACV,YAAY,GACZ,IAAI,CAAC,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,GAAG;IAC5E,sDAAsD;IACtD,GAAG,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CACzB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,eAAO,MAAM,GAAG;IArCd,sDAAsD;UAChD,KAAK,CAAC,WAAW;0CA4CxB,CAAC"}
|
|
@@ -1,11 +1,45 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, TransparentProps, BorderProps, ShadowProps, RingProps, FocusVisibleProps, ShapeProps, FontWeightProps, FontStyleProps, TextDecorationProps, TextTransformProps, FontFamilyProps, TextAlignProps, PaddingProps, VariantProps } from './props';
|
|
2
3
|
/** Input component props */
|
|
3
4
|
export type InputProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & TransparentProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & Omit<React.InputHTMLAttributes<HTMLInputElement>, 'className' | 'children'> & {
|
|
4
5
|
/** Custom HTML tag or React component to render as */
|
|
5
6
|
tag?: React.ElementType;
|
|
6
7
|
};
|
|
7
|
-
|
|
8
|
+
/**
|
|
9
|
+
* A text input field component for forms and user data entry.
|
|
10
|
+
*
|
|
11
|
+
* Provides a styled input element with support for all standard HTML input
|
|
12
|
+
* attributes and types. Can be customized with appearances, sizes, and variants
|
|
13
|
+
* to match your design system. Supports all native input types (text, email, password, etc.).
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```tsx
|
|
17
|
+
* // Basic text input
|
|
18
|
+
* <Input placeholder="Enter your name" />
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @example
|
|
22
|
+
* ```tsx
|
|
23
|
+
* // Email input with primary styling
|
|
24
|
+
* <Input type="email" primary outline placeholder="Email address" />
|
|
25
|
+
* ```
|
|
26
|
+
*
|
|
27
|
+
* @example
|
|
28
|
+
* ```tsx
|
|
29
|
+
* // Large input with custom styling
|
|
30
|
+
* <Input lg className="w-full" placeholder="Search..." />
|
|
31
|
+
* ```
|
|
32
|
+
*
|
|
33
|
+
* @example
|
|
34
|
+
* ```tsx
|
|
35
|
+
* // Controlled input with state
|
|
36
|
+
* <Input value={value} onChange={(e) => setValue(e.target.value)} />
|
|
37
|
+
* ```
|
|
38
|
+
*
|
|
39
|
+
* @see {@link InputProps} for all available props
|
|
40
|
+
*/
|
|
41
|
+
export declare const Input: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & TransparentProps & BorderProps & ShadowProps & RingProps & FocusVisibleProps & ShapeProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & PaddingProps & VariantProps & Omit<React.InputHTMLAttributes<HTMLInputElement>, "className" | "children"> & {
|
|
8
42
|
/** Custom HTML tag or React component to render as */
|
|
9
43
|
tag?: React.ElementType;
|
|
10
|
-
} &
|
|
44
|
+
} & React.RefAttributes<HTMLInputElement>>;
|
|
11
45
|
//# sourceMappingURL=input.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/components/ui/input.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"input.d.ts","sourceRoot":"","sources":["../../../src/components/ui/input.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,SAAS,EACT,iBAAiB,EACjB,UAAU,EACV,eAAe,EACf,cAAc,EACd,mBAAmB,EACnB,kBAAkB,EAClB,eAAe,EACf,cAAc,EACd,YAAY,EACZ,YAAY,EACb,MAAM,SAAS,CAAC;AAIjB,4BAA4B;AAC5B,MAAM,MAAM,UAAU,GAAG,SAAS,GAChC,SAAS,GACT,SAAS,GACT,UAAU,GACV,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,SAAS,GACT,QAAQ,GACR,kBAAkB,GAClB,YAAY,GACZ,eAAe,GACf,gBAAgB,GAChB,WAAW,GACX,WAAW,GACX,SAAS,GACT,iBAAiB,GACjB,UAAU,GACV,eAAe,GACf,cAAc,GACd,mBAAmB,GACnB,kBAAkB,GAClB,eAAe,GACf,cAAc,GACd,YAAY,GACZ,YAAY,GACZ,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,GAAG;IAC9E,sDAAsD;IACtD,GAAG,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CACzB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,eAAO,MAAM,KAAK;IArChB,sDAAsD;UAChD,KAAK,CAAC,WAAW;0CAyCxB,CAAC"}
|
|
@@ -1,11 +1,51 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { BaseProps, FontWeightProps, FontStyleProps, TextDecorationProps, TextTransformProps, FontFamilyProps, TextAlignProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, TransparentProps, VariantProps } from './props';
|
|
2
3
|
/** Label component props */
|
|
3
4
|
export type LabelProps = BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & TransparentProps & VariantProps & Omit<React.LabelHTMLAttributes<HTMLLabelElement>, 'className' | 'children'> & {
|
|
4
5
|
/** Custom HTML tag or React component to render as */
|
|
5
6
|
tag?: React.ElementType;
|
|
6
7
|
};
|
|
7
|
-
|
|
8
|
+
/**
|
|
9
|
+
* A label component for form fields and inputs.
|
|
10
|
+
*
|
|
11
|
+
* Renders a semantic HTML label element with typography and styling support.
|
|
12
|
+
* Typically used with form inputs like Input or Checkbox to provide
|
|
13
|
+
* accessible labels. Clicking the label focuses the associated input.
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```tsx
|
|
17
|
+
* // Basic label
|
|
18
|
+
* <Label htmlFor="email">Email Address</Label>
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @example
|
|
22
|
+
* ```tsx
|
|
23
|
+
* // Label with checkbox
|
|
24
|
+
* <Label>
|
|
25
|
+
* <Checkbox id="terms" />
|
|
26
|
+
* I agree to the terms
|
|
27
|
+
* </Label>
|
|
28
|
+
* ```
|
|
29
|
+
*
|
|
30
|
+
* @example
|
|
31
|
+
* ```tsx
|
|
32
|
+
* // Styled label with custom appearance
|
|
33
|
+
* <Label semibold primary>Username</Label>
|
|
34
|
+
* ```
|
|
35
|
+
*
|
|
36
|
+
* @example
|
|
37
|
+
* ```tsx
|
|
38
|
+
* // Label with input
|
|
39
|
+
* <Label htmlFor="password" className="block mb-2">
|
|
40
|
+
* Password
|
|
41
|
+
* </Label>
|
|
42
|
+
* <Input id="password" type="password" />
|
|
43
|
+
* ```
|
|
44
|
+
*
|
|
45
|
+
* @see {@link LabelProps} for all available props
|
|
46
|
+
*/
|
|
47
|
+
export declare const Label: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & TransparentProps & VariantProps & Omit<React.LabelHTMLAttributes<HTMLLabelElement>, "className" | "children"> & {
|
|
8
48
|
/** Custom HTML tag or React component to render as */
|
|
9
49
|
tag?: React.ElementType;
|
|
10
|
-
} &
|
|
50
|
+
} & React.RefAttributes<HTMLLabelElement>>;
|
|
11
51
|
//# sourceMappingURL=label.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"label.d.ts","sourceRoot":"","sources":["../../../src/components/ui/label.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"label.d.ts","sourceRoot":"","sources":["../../../src/components/ui/label.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,eAAe,EACf,cAAc,EACd,mBAAmB,EACnB,kBAAkB,EAClB,eAAe,EACf,cAAc,EACd,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,gBAAgB,EAChB,YAAY,EACb,MAAM,SAAS,CAAC;AAIjB,4BAA4B;AAC5B,MAAM,MAAM,UAAU,GAAG,SAAS,GAChC,eAAe,GACf,cAAc,GACd,mBAAmB,GACnB,kBAAkB,GAClB,eAAe,GACf,cAAc,GACd,SAAS,GACT,SAAS,GACT,UAAU,GACV,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,SAAS,GACT,QAAQ,GACR,kBAAkB,GAClB,YAAY,GACZ,eAAe,GACf,gBAAgB,GAChB,YAAY,GACZ,IAAI,CAAC,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,GAAG;IAC9E,sDAAsD;IACtD,GAAG,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CACzB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,eAAO,MAAM,KAAK;IA3ChB,sDAAsD;UAChD,KAAK,CAAC,WAAW;0CA+CxB,CAAC"}
|
|
@@ -1,11 +1,49 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, BreakpointProps, AppearanceProps, TransparentProps, BorderProps, ShadowProps, RingProps, ShapeProps, VariantProps } from './props';
|
|
2
3
|
/** Row component props */
|
|
3
4
|
export type RowProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & BreakpointProps & AppearanceProps & TransparentProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children'> & {
|
|
4
5
|
/** Custom HTML tag or React component to render as */
|
|
5
6
|
tag?: React.ElementType;
|
|
6
7
|
};
|
|
7
|
-
|
|
8
|
+
/**
|
|
9
|
+
* A horizontal flex container for arranging elements side-by-side.
|
|
10
|
+
*
|
|
11
|
+
* Arranges children horizontally with consistent spacing. Supports responsive
|
|
12
|
+
* breakpoints to switch to vertical stacking on smaller screens. Uses layout
|
|
13
|
+
* spacing for structural organization.
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```tsx
|
|
17
|
+
* // Basic horizontal row
|
|
18
|
+
* <Row gap>
|
|
19
|
+
* <Button>Action 1</Button>
|
|
20
|
+
* <Button>Action 2</Button>
|
|
21
|
+
* </Row>
|
|
22
|
+
* ```
|
|
23
|
+
*
|
|
24
|
+
* @example
|
|
25
|
+
* ```tsx
|
|
26
|
+
* // Row with space-between
|
|
27
|
+
* <Row justifyBetween itemsCenter>
|
|
28
|
+
* <Title>Page Header</Title>
|
|
29
|
+
* <Button>CTA</Button>
|
|
30
|
+
* </Row>
|
|
31
|
+
* ```
|
|
32
|
+
*
|
|
33
|
+
* @example
|
|
34
|
+
* ```tsx
|
|
35
|
+
* // Responsive row (stacks on tablets and below)
|
|
36
|
+
* <Row tabletCol gap>
|
|
37
|
+
* <Card>Card 1</Card>
|
|
38
|
+
* <Card>Card 2</Card>
|
|
39
|
+
* <Card>Card 3</Card>
|
|
40
|
+
* </Row>
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* @see {@link RowProps} for all available props
|
|
44
|
+
*/
|
|
45
|
+
export declare const Row: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & BreakpointProps & AppearanceProps & TransparentProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
8
46
|
/** Custom HTML tag or React component to render as */
|
|
9
47
|
tag?: React.ElementType;
|
|
10
|
-
} &
|
|
48
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
11
49
|
//# sourceMappingURL=row.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"row.d.ts","sourceRoot":"","sources":["../../../src/components/ui/row.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"row.d.ts","sourceRoot":"","sources":["../../../src/components/ui/row.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,eAAe,EACf,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,SAAS,EACT,UAAU,EACV,YAAY,EACb,MAAM,SAAS,CAAC;AAIjB,0BAA0B;AAC1B,MAAM,MAAM,QAAQ,GAAG,SAAS,GAC9B,SAAS,GACT,SAAS,GACT,UAAU,GACV,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,SAAS,GACT,QAAQ,GACR,kBAAkB,GAClB,YAAY,GACZ,eAAe,GACf,eAAe,GACf,gBAAgB,GAChB,WAAW,GACX,WAAW,GACX,SAAS,GACT,UAAU,GACV,YAAY,GACZ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,GAAG;IACvE,sDAAsD;IACtD,GAAG,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CACzB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,eAAO,MAAM,GAAG;IAzCd,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCA6CxB,CAAC"}
|
|
@@ -1,11 +1,48 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, AppearanceProps, TransparentProps, BorderProps, ShadowProps, RingProps, ShapeProps, PaddingProps, BreakpointProps, VariantProps } from './props';
|
|
2
3
|
/** Section component props */
|
|
3
4
|
export type SectionProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & TransparentProps & BorderProps & ShadowProps & RingProps & ShapeProps & PaddingProps & BreakpointProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children'> & {
|
|
4
5
|
/** Custom HTML tag or React component to render as */
|
|
5
6
|
tag?: React.ElementType;
|
|
6
7
|
};
|
|
7
|
-
|
|
8
|
+
/**
|
|
9
|
+
* A semantic section container for grouping related content.
|
|
10
|
+
*
|
|
11
|
+
* Renders as a semantic HTML section element with generous layout spacing.
|
|
12
|
+
* Use to organize page content into logical sections. Supports responsive
|
|
13
|
+
* flex direction with breakpoint props (mobileCol, tabletCol, etc.).
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```tsx
|
|
17
|
+
* // Basic section
|
|
18
|
+
* <Section>
|
|
19
|
+
* <SectionTitle>About</SectionTitle>
|
|
20
|
+
* <Text>Section content here.</Text>
|
|
21
|
+
* </Section>
|
|
22
|
+
* ```
|
|
23
|
+
*
|
|
24
|
+
* @example
|
|
25
|
+
* ```tsx
|
|
26
|
+
* // Section with padding and gap
|
|
27
|
+
* <Section padding gap>
|
|
28
|
+
* <Title>Features</Title>
|
|
29
|
+
* <Text>Feature descriptions...</Text>
|
|
30
|
+
* </Section>
|
|
31
|
+
* ```
|
|
32
|
+
*
|
|
33
|
+
* @example
|
|
34
|
+
* ```tsx
|
|
35
|
+
* // Responsive section that stacks on tablets
|
|
36
|
+
* <Section tabletCol gap>
|
|
37
|
+
* <Card>Card 1</Card>
|
|
38
|
+
* <Card>Card 2</Card>
|
|
39
|
+
* </Section>
|
|
40
|
+
* ```
|
|
41
|
+
*
|
|
42
|
+
* @see {@link SectionProps} for all available props
|
|
43
|
+
*/
|
|
44
|
+
export declare const Section: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & AppearanceProps & TransparentProps & BorderProps & ShadowProps & RingProps & ShapeProps & PaddingProps & BreakpointProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
8
45
|
/** Custom HTML tag or React component to render as */
|
|
9
46
|
tag?: React.ElementType;
|
|
10
|
-
} &
|
|
47
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
11
48
|
//# sourceMappingURL=section.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"section.d.ts","sourceRoot":"","sources":["../../../src/components/ui/section.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"section.d.ts","sourceRoot":"","sources":["../../../src/components/ui/section.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,SAAS,EACT,UAAU,EACV,YAAY,EACZ,eAAe,EACf,YAAY,EACb,MAAM,SAAS,CAAC;AAIjB,8BAA8B;AAC9B,MAAM,MAAM,YAAY,GAAG,SAAS,GAClC,SAAS,GACT,SAAS,GACT,UAAU,GACV,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,SAAS,GACT,QAAQ,GACR,kBAAkB,GAClB,YAAY,GACZ,eAAe,GACf,gBAAgB,GAChB,WAAW,GACX,WAAW,GACX,SAAS,GACT,UAAU,GACV,YAAY,GACZ,eAAe,GACf,YAAY,GACZ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,GAAG;IACvE,sDAAsD;IACtD,GAAG,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CACzB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,eAAO,MAAM,OAAO;IAxClB,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCA4CxB,CAAC"}
|
|
@@ -1,11 +1,49 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { BaseProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, WrapProps, GapProps, FlexDirectionProps, ReverseProps, BreakpointProps, PaddingProps, AppearanceProps, TransparentProps, BorderProps, ShadowProps, RingProps, ShapeProps, VariantProps } from './props';
|
|
2
3
|
/** Stack component props */
|
|
3
4
|
export type StackProps = BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & BreakpointProps & PaddingProps & AppearanceProps & TransparentProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children'> & {
|
|
4
5
|
/** Custom HTML tag or React component to render as */
|
|
5
6
|
tag?: React.ElementType;
|
|
6
7
|
};
|
|
7
|
-
|
|
8
|
+
/**
|
|
9
|
+
* A vertical flex container for stacking elements.
|
|
10
|
+
*
|
|
11
|
+
* Arranges children vertically with consistent spacing. Supports responsive
|
|
12
|
+
* breakpoints to switch to horizontal layout on larger screens. Uses layout
|
|
13
|
+
* spacing for structural organization.
|
|
14
|
+
*
|
|
15
|
+
* @example
|
|
16
|
+
* ```tsx
|
|
17
|
+
* // Basic vertical stack
|
|
18
|
+
* <Stack gap>
|
|
19
|
+
* <Button>Button 1</Button>
|
|
20
|
+
* <Button>Button 2</Button>
|
|
21
|
+
* <Button>Button 3</Button>
|
|
22
|
+
* </Stack>
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* @example
|
|
26
|
+
* ```tsx
|
|
27
|
+
* // Stack with padding and alignment
|
|
28
|
+
* <Stack padding gap itemsCenter>
|
|
29
|
+
* <Title>Centered Content</Title>
|
|
30
|
+
* <Text>All items are centered</Text>
|
|
31
|
+
* </Stack>
|
|
32
|
+
* ```
|
|
33
|
+
*
|
|
34
|
+
* @example
|
|
35
|
+
* ```tsx
|
|
36
|
+
* // Responsive stack (becomes horizontal on desktop)
|
|
37
|
+
* <Stack desktopCol gap>
|
|
38
|
+
* <Card>Item 1</Card>
|
|
39
|
+
* <Card>Item 2</Card>
|
|
40
|
+
* </Stack>
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* @see {@link StackProps} for all available props
|
|
44
|
+
*/
|
|
45
|
+
export declare const Stack: React.ForwardRefExoticComponent<BaseProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & WrapProps & GapProps & FlexDirectionProps & ReverseProps & BreakpointProps & PaddingProps & AppearanceProps & TransparentProps & BorderProps & ShadowProps & RingProps & ShapeProps & VariantProps & Omit<React.HTMLAttributes<HTMLDivElement>, "className" | "children"> & {
|
|
8
46
|
/** Custom HTML tag or React component to render as */
|
|
9
47
|
tag?: React.ElementType;
|
|
10
|
-
} &
|
|
48
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
11
49
|
//# sourceMappingURL=stack.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stack.d.ts","sourceRoot":"","sources":["../../../src/components/ui/stack.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"stack.d.ts","sourceRoot":"","sources":["../../../src/components/ui/stack.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAC1C,OAAO,KAAK,EACV,SAAS,EACT,SAAS,EACT,SAAS,EACT,UAAU,EACV,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,aAAa,EACb,SAAS,EACT,QAAQ,EACR,kBAAkB,EAClB,YAAY,EACZ,eAAe,EACf,YAAY,EACZ,eAAe,EACf,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,SAAS,EACT,UAAU,EACV,YAAY,EACb,MAAM,SAAS,CAAC;AAIjB,4BAA4B;AAC5B,MAAM,MAAM,UAAU,GAAG,SAAS,GAChC,SAAS,GACT,SAAS,GACT,UAAU,GACV,YAAY,GACZ,aAAa,GACb,YAAY,GACZ,aAAa,GACb,SAAS,GACT,QAAQ,GACR,kBAAkB,GAClB,YAAY,GACZ,eAAe,GACf,YAAY,GACZ,eAAe,GACf,gBAAgB,GAChB,WAAW,GACX,WAAW,GACX,SAAS,GACT,UAAU,GACV,YAAY,GACZ,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,WAAW,GAAG,UAAU,CAAC,GAAG;IACvE,sDAAsD;IACtD,GAAG,CAAC,EAAE,KAAK,CAAC,WAAW,CAAC;CACzB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,eAAO,MAAM,KAAK;IAzChB,sDAAsD;UAChD,KAAK,CAAC,WAAW;wCA8CxB,CAAC"}
|