@vaneui/ui 0.3.1-alpha.20251201135827.a31cb1e → 0.3.1-alpha.20251201144940.b3e097b
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/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,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { BaseProps, FontWeightProps, FontStyleProps, TextDecorationProps, TextTransformProps, FontFamilyProps, TextAlignProps, SizeProps, HideProps, ItemsProps, JustifyProps, PositionProps, DisplayProps, OverflowProps, AppearanceProps, TransparentProps, VariantProps, ListStyleProps, PaddingProps } from './props';
|
|
2
3
|
/** Typography component props (for Text, PageTitle, SectionTitle, Title, Link, ListItem) */
|
|
3
4
|
export type TypographyProps = BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & TransparentProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, 'className' | 'children'> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, 'className' | 'children'>> & {
|
|
@@ -11,44 +12,252 @@ export type ListProps = BaseProps & FontWeightProps & FontStyleProps & TextDecor
|
|
|
11
12
|
/** Custom HTML tag or React component to render as */
|
|
12
13
|
tag?: React.ElementType;
|
|
13
14
|
};
|
|
14
|
-
|
|
15
|
+
/**
|
|
16
|
+
* A top-level page heading component (h1).
|
|
17
|
+
*
|
|
18
|
+
* Renders the main heading for a page with large, bold typography.
|
|
19
|
+
* Automatically scales down on smaller screens for responsive design.
|
|
20
|
+
* Can be rendered as a link when href prop is provided.
|
|
21
|
+
*
|
|
22
|
+
* @example
|
|
23
|
+
* ```tsx
|
|
24
|
+
* // Basic page title
|
|
25
|
+
* <PageTitle>Welcome to My Site</PageTitle>
|
|
26
|
+
* ```
|
|
27
|
+
*
|
|
28
|
+
* @example
|
|
29
|
+
* ```tsx
|
|
30
|
+
* // Page title with custom styling
|
|
31
|
+
* <PageTitle primary xl>Product Launch</PageTitle>
|
|
32
|
+
* ```
|
|
33
|
+
*
|
|
34
|
+
* @example
|
|
35
|
+
* ```tsx
|
|
36
|
+
* // Page title as a link
|
|
37
|
+
* <PageTitle href="/">Home Page</PageTitle>
|
|
38
|
+
* ```
|
|
39
|
+
*
|
|
40
|
+
* @see {@link TypographyProps} for all available props
|
|
41
|
+
*/
|
|
42
|
+
export declare const PageTitle: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & TransparentProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
15
43
|
/** URL to navigate to (renders component as anchor tag) */
|
|
16
44
|
href?: string;
|
|
17
45
|
/** Custom HTML tag or React component to render as */
|
|
18
46
|
tag?: React.ElementType;
|
|
19
|
-
} &
|
|
20
|
-
|
|
47
|
+
} & React.RefAttributes<HTMLHeadingElement>>;
|
|
48
|
+
/**
|
|
49
|
+
* A section heading component (h2).
|
|
50
|
+
*
|
|
51
|
+
* Renders a heading for major sections of content. Medium-large size with
|
|
52
|
+
* responsive scaling on smaller screens. Typically used to divide page
|
|
53
|
+
* content into logical sections.
|
|
54
|
+
*
|
|
55
|
+
* @example
|
|
56
|
+
* ```tsx
|
|
57
|
+
* // Basic section title
|
|
58
|
+
* <SectionTitle>Features</SectionTitle>
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* @example
|
|
62
|
+
* ```tsx
|
|
63
|
+
* // Section title with styling
|
|
64
|
+
* <SectionTitle secondary bold>About Us</SectionTitle>
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* @example
|
|
68
|
+
* ```tsx
|
|
69
|
+
* // Section title as a link
|
|
70
|
+
* <SectionTitle href="#features">Jump to Features</SectionTitle>
|
|
71
|
+
* ```
|
|
72
|
+
*
|
|
73
|
+
* @see {@link TypographyProps} for all available props
|
|
74
|
+
*/
|
|
75
|
+
export declare const SectionTitle: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & TransparentProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
21
76
|
/** URL to navigate to (renders component as anchor tag) */
|
|
22
77
|
href?: string;
|
|
23
78
|
/** Custom HTML tag or React component to render as */
|
|
24
79
|
tag?: React.ElementType;
|
|
25
|
-
} &
|
|
26
|
-
|
|
80
|
+
} & React.RefAttributes<HTMLHeadingElement>>;
|
|
81
|
+
/**
|
|
82
|
+
* A subsection heading component (h3).
|
|
83
|
+
*
|
|
84
|
+
* Renders a heading for subsections or cards. Medium size with subtle
|
|
85
|
+
* responsive scaling. Use for content organization below section titles.
|
|
86
|
+
*
|
|
87
|
+
* @example
|
|
88
|
+
* ```tsx
|
|
89
|
+
* // Basic title
|
|
90
|
+
* <Title>Getting Started</Title>
|
|
91
|
+
* ```
|
|
92
|
+
*
|
|
93
|
+
* @example
|
|
94
|
+
* ```tsx
|
|
95
|
+
* // Title with custom appearance
|
|
96
|
+
* <Title primary semibold>Installation</Title>
|
|
97
|
+
* ```
|
|
98
|
+
*
|
|
99
|
+
* @example
|
|
100
|
+
* ```tsx
|
|
101
|
+
* // Title as a link
|
|
102
|
+
* <Title href="/docs/intro">Documentation</Title>
|
|
103
|
+
* ```
|
|
104
|
+
*
|
|
105
|
+
* @see {@link TypographyProps} for all available props
|
|
106
|
+
*/
|
|
107
|
+
export declare const Title: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & TransparentProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
27
108
|
/** URL to navigate to (renders component as anchor tag) */
|
|
28
109
|
href?: string;
|
|
29
110
|
/** Custom HTML tag or React component to render as */
|
|
30
111
|
tag?: React.ElementType;
|
|
31
|
-
} &
|
|
32
|
-
|
|
112
|
+
} & React.RefAttributes<HTMLHeadingElement>>;
|
|
113
|
+
/**
|
|
114
|
+
* A body text component (p).
|
|
115
|
+
*
|
|
116
|
+
* Renders paragraph text with automatic URL detection and link conversion.
|
|
117
|
+
* Use for main content, descriptions, and body copy. Can be rendered as
|
|
118
|
+
* a link when href prop is provided.
|
|
119
|
+
*
|
|
120
|
+
* @example
|
|
121
|
+
* ```tsx
|
|
122
|
+
* // Basic paragraph
|
|
123
|
+
* <Text>This is a paragraph of body text.</Text>
|
|
124
|
+
* ```
|
|
125
|
+
*
|
|
126
|
+
* @example
|
|
127
|
+
* ```tsx
|
|
128
|
+
* // Text with custom styling
|
|
129
|
+
* <Text secondary lg>Large secondary text content.</Text>
|
|
130
|
+
* ```
|
|
131
|
+
*
|
|
132
|
+
* @example
|
|
133
|
+
* ```tsx
|
|
134
|
+
* // Text as a link
|
|
135
|
+
* <Text href="/about">Learn more</Text>
|
|
136
|
+
* ```
|
|
137
|
+
*
|
|
138
|
+
* @example
|
|
139
|
+
* ```tsx
|
|
140
|
+
* // Text with typography props
|
|
141
|
+
* <Text mono semibold>Monospace bold text</Text>
|
|
142
|
+
* ```
|
|
143
|
+
*
|
|
144
|
+
* @see {@link TypographyProps} for all available props
|
|
145
|
+
*/
|
|
146
|
+
export declare const Text: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & TransparentProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
33
147
|
/** URL to navigate to (renders component as anchor tag) */
|
|
34
148
|
href?: string;
|
|
35
149
|
/** Custom HTML tag or React component to render as */
|
|
36
150
|
tag?: React.ElementType;
|
|
37
|
-
} &
|
|
38
|
-
|
|
151
|
+
} & React.RefAttributes<HTMLParagraphElement>>;
|
|
152
|
+
/**
|
|
153
|
+
* An anchor link component (a).
|
|
154
|
+
*
|
|
155
|
+
* Renders a hyperlink with hover underline effect. Inherits text styling
|
|
156
|
+
* from parent or can be customized with typography props. Use for
|
|
157
|
+
* navigation links and clickable text.
|
|
158
|
+
*
|
|
159
|
+
* @example
|
|
160
|
+
* ```tsx
|
|
161
|
+
* // Basic link
|
|
162
|
+
* <Link href="/about">About Us</Link>
|
|
163
|
+
* ```
|
|
164
|
+
*
|
|
165
|
+
* @example
|
|
166
|
+
* ```tsx
|
|
167
|
+
* // Styled link
|
|
168
|
+
* <Link href="/contact" primary semibold>Contact</Link>
|
|
169
|
+
* ```
|
|
170
|
+
*
|
|
171
|
+
* @example
|
|
172
|
+
* ```tsx
|
|
173
|
+
* // External link
|
|
174
|
+
* <Link href="https://example.com" target="_blank" rel="noopener">
|
|
175
|
+
* Visit Example
|
|
176
|
+
* </Link>
|
|
177
|
+
* ```
|
|
178
|
+
*
|
|
179
|
+
* @see {@link TypographyProps} for all available props
|
|
180
|
+
*/
|
|
181
|
+
export declare const Link: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & TransparentProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
39
182
|
/** URL to navigate to (renders component as anchor tag) */
|
|
40
183
|
href?: string;
|
|
41
184
|
/** Custom HTML tag or React component to render as */
|
|
42
185
|
tag?: React.ElementType;
|
|
43
|
-
} &
|
|
44
|
-
|
|
186
|
+
} & React.RefAttributes<HTMLAnchorElement>>;
|
|
187
|
+
/**
|
|
188
|
+
* A list item component (li).
|
|
189
|
+
*
|
|
190
|
+
* Renders an individual list item within a List component. Supports
|
|
191
|
+
* typography styling and can be rendered as a link when href is provided.
|
|
192
|
+
* Use within List for bullet points or numbered lists.
|
|
193
|
+
*
|
|
194
|
+
* @example
|
|
195
|
+
* ```tsx
|
|
196
|
+
* // Basic list item
|
|
197
|
+
* <List>
|
|
198
|
+
* <ListItem>First item</ListItem>
|
|
199
|
+
* <ListItem>Second item</ListItem>
|
|
200
|
+
* </List>
|
|
201
|
+
* ```
|
|
202
|
+
*
|
|
203
|
+
* @example
|
|
204
|
+
* ```tsx
|
|
205
|
+
* // Styled list item
|
|
206
|
+
* <ListItem primary semibold>Important item</ListItem>
|
|
207
|
+
* ```
|
|
208
|
+
*
|
|
209
|
+
* @example
|
|
210
|
+
* ```tsx
|
|
211
|
+
* // List item as a link
|
|
212
|
+
* <ListItem href="/item/1">Click to view details</ListItem>
|
|
213
|
+
* ```
|
|
214
|
+
*
|
|
215
|
+
* @see {@link TypographyProps} for all available props
|
|
216
|
+
*/
|
|
217
|
+
export declare const ListItem: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & TransparentProps & VariantProps & Omit<React.HTMLAttributes<HTMLSpanElement>, "className" | "children"> & Partial<Omit<React.AnchorHTMLAttributes<HTMLAnchorElement>, "className" | "children">> & {
|
|
45
218
|
/** URL to navigate to (renders component as anchor tag) */
|
|
46
219
|
href?: string;
|
|
47
220
|
/** Custom HTML tag or React component to render as */
|
|
48
221
|
tag?: React.ElementType;
|
|
49
|
-
} &
|
|
50
|
-
|
|
222
|
+
} & React.RefAttributes<HTMLLIElement>>;
|
|
223
|
+
/**
|
|
224
|
+
* A list container component (ul or ol).
|
|
225
|
+
*
|
|
226
|
+
* Renders an unordered (bullets) or ordered (numbers) list. Automatically
|
|
227
|
+
* switches between ul and ol based on the `decimal` prop. Use with ListItem
|
|
228
|
+
* components for structured lists.
|
|
229
|
+
*
|
|
230
|
+
* @example
|
|
231
|
+
* ```tsx
|
|
232
|
+
* // Unordered list (bullets)
|
|
233
|
+
* <List>
|
|
234
|
+
* <ListItem>Item one</ListItem>
|
|
235
|
+
* <ListItem>Item two</ListItem>
|
|
236
|
+
* </List>
|
|
237
|
+
* ```
|
|
238
|
+
*
|
|
239
|
+
* @example
|
|
240
|
+
* ```tsx
|
|
241
|
+
* // Ordered list (numbers)
|
|
242
|
+
* <List decimal>
|
|
243
|
+
* <ListItem>First step</ListItem>
|
|
244
|
+
* <ListItem>Second step</ListItem>
|
|
245
|
+
* </List>
|
|
246
|
+
* ```
|
|
247
|
+
*
|
|
248
|
+
* @example
|
|
249
|
+
* ```tsx
|
|
250
|
+
* // Styled list
|
|
251
|
+
* <List primary lg padding>
|
|
252
|
+
* <ListItem>Feature A</ListItem>
|
|
253
|
+
* <ListItem>Feature B</ListItem>
|
|
254
|
+
* </List>
|
|
255
|
+
* ```
|
|
256
|
+
*
|
|
257
|
+
* @see {@link ListProps} for all available props
|
|
258
|
+
*/
|
|
259
|
+
export declare const List: React.ForwardRefExoticComponent<BaseProps & FontWeightProps & FontStyleProps & TextDecorationProps & TextTransformProps & FontFamilyProps & TextAlignProps & ListStyleProps & SizeProps & HideProps & ItemsProps & JustifyProps & PositionProps & DisplayProps & OverflowProps & AppearanceProps & TransparentProps & PaddingProps & VariantProps & Omit<React.HTMLAttributes<HTMLElement>, "className" | "children"> & {
|
|
51
260
|
/** Custom HTML tag or React component to render as */
|
|
52
261
|
tag?: React.ElementType;
|
|
53
|
-
} &
|
|
262
|
+
} & React.RefAttributes<HTMLUListElement>>;
|
|
54
263
|
//# sourceMappingURL=typography.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../../src/components/ui/typography.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"typography.d.ts","sourceRoot":"","sources":["../../../src/components/ui/typography.tsx"],"names":[],"mappings":"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"}
|