@vaneui/ui 0.2.2-alpha.20250907183237.5f63365 → 0.2.2-alpha.20250913214402.427a7ea
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/README.md +2 -2
- package/dist/index.esm.js +1007 -410
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1169 -409
- package/dist/index.js.map +1 -1
- package/dist/src/components/tests/grid5.test.d.ts +1 -0
- package/dist/src/components/tests/grid6.test.d.ts +1 -0
- package/dist/src/components/tests/input.test.d.ts +1 -0
- package/dist/src/components/tests/transparent-key-behavior.test.d.ts +1 -0
- package/dist/src/components/themeContext.d.ts +11 -1
- package/dist/src/components/ui/card.d.ts +126 -2
- package/dist/src/components/ui/checkbox.d.ts +2 -0
- package/dist/src/components/ui/classes/appearanceClasses.d.ts +20 -18
- package/dist/src/components/ui/classes/typographyClasses.d.ts +3 -3
- package/dist/src/components/ui/code.d.ts +2 -0
- package/dist/src/components/ui/col.d.ts +93 -2
- package/dist/src/components/ui/container.d.ts +93 -2
- package/dist/src/components/ui/grid.d.ts +420 -4
- package/dist/src/components/ui/img.d.ts +2 -0
- package/dist/src/components/ui/input.d.ts +123 -0
- package/dist/src/components/ui/layout.d.ts +1 -1
- package/dist/src/components/ui/props/appearance.d.ts +22 -0
- package/dist/src/components/ui/props/border.d.ts +6 -0
- package/dist/src/components/ui/props/breakpoint.d.ts +12 -0
- package/dist/src/components/ui/props/display.d.ts +24 -0
- package/dist/src/components/ui/props/flexDirection.d.ts +10 -0
- package/dist/src/components/ui/props/focusVisible.d.ts +6 -0
- package/dist/src/components/ui/props/fontFamily.d.ts +8 -0
- package/dist/src/components/ui/props/fontStyle.d.ts +6 -0
- package/dist/src/components/ui/props/fontWeight.d.ts +20 -0
- package/dist/src/components/ui/props/gap.d.ts +6 -0
- package/dist/src/components/ui/props/hide.d.ts +12 -0
- package/dist/src/components/ui/props/items.d.ts +12 -0
- package/dist/src/components/ui/props/justify.d.ts +18 -0
- package/dist/src/components/ui/props/keys.d.ts +143 -16
- package/dist/src/components/ui/props/listStyle.d.ts +6 -0
- package/dist/src/components/ui/props/mode.d.ts +21 -0
- package/dist/src/components/ui/props/overflow.d.ts +32 -0
- package/dist/src/components/ui/props/padding.d.ts +6 -0
- package/dist/src/components/ui/props/position.d.ts +12 -0
- package/dist/src/components/ui/props/props.d.ts +25 -8
- package/dist/src/components/ui/props/reverse.d.ts +4 -0
- package/dist/src/components/ui/props/ring.d.ts +6 -0
- package/dist/src/components/ui/props/shadow.d.ts +6 -0
- package/dist/src/components/ui/props/shape.d.ts +8 -0
- package/dist/src/components/ui/props/size.d.ts +12 -0
- package/dist/src/components/ui/props/textAlign.d.ts +10 -0
- package/dist/src/components/ui/props/textDecoration.d.ts +10 -0
- package/dist/src/components/ui/props/textTransform.d.ts +10 -0
- package/dist/src/components/ui/props/transparent.d.ts +4 -0
- package/dist/src/components/ui/props/variant.d.ts +6 -0
- package/dist/src/components/ui/props/wrap.d.ts +8 -0
- package/dist/src/components/ui/row.d.ts +98 -2
- package/dist/src/components/ui/section.d.ts +100 -2
- package/dist/src/components/ui/stack.d.ts +100 -2
- package/dist/src/components/ui/theme/appearance/appearanceTheme.d.ts +3 -2
- package/dist/src/components/ui/theme/appearance/genericVariantTheme.d.ts +5 -0
- package/dist/src/components/ui/theme/appearance/shadowAppearanceTheme.d.ts +5 -5
- package/dist/src/components/ui/theme/badgeTheme.d.ts +3 -0
- package/dist/src/components/ui/theme/buttonTheme.d.ts +3 -0
- package/dist/src/components/ui/theme/checkboxTheme.d.ts +11 -2
- package/dist/src/components/ui/theme/chipTheme.d.ts +3 -0
- package/dist/src/components/ui/theme/codeTheme.d.ts +3 -0
- package/dist/src/components/ui/theme/common/ComponentTheme.d.ts +3 -3
- package/dist/src/components/ui/theme/gridTheme.d.ts +2 -0
- package/dist/src/components/ui/theme/imgTheme.d.ts +4 -0
- package/dist/src/components/ui/theme/inputTheme.d.ts +40 -0
- package/dist/src/components/ui/theme/layout/borderTheme.d.ts +2 -0
- package/dist/src/components/ui/theme/layout/focusVisibleTheme.d.ts +11 -0
- package/dist/src/components/ui/theme/layout/ringTheme.d.ts +2 -0
- package/dist/src/index.d.ts +2 -1
- package/dist/ui.css +690 -566
- package/dist/vars.css +134 -134
- package/package.json +1 -1
|
@@ -1,4 +1,420 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
export declare const Grid2: import("react").ForwardRefExoticComponent<{
|
|
2
|
+
className?: string;
|
|
3
|
+
children?: React.ReactNode;
|
|
4
|
+
} & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
5
|
+
transparent?: boolean | undefined;
|
|
6
|
+
gap?: boolean | undefined;
|
|
7
|
+
reverse?: boolean | undefined;
|
|
8
|
+
default?: boolean | undefined;
|
|
9
|
+
accent?: boolean | undefined;
|
|
10
|
+
primary?: boolean | undefined;
|
|
11
|
+
secondary?: boolean | undefined;
|
|
12
|
+
tertiary?: boolean | undefined;
|
|
13
|
+
success?: boolean | undefined;
|
|
14
|
+
danger?: boolean | undefined;
|
|
15
|
+
warning?: boolean | undefined;
|
|
16
|
+
info?: boolean | undefined;
|
|
17
|
+
link?: boolean | undefined;
|
|
18
|
+
inline?: boolean | undefined;
|
|
19
|
+
block?: boolean | undefined;
|
|
20
|
+
inlineBlock?: boolean | undefined;
|
|
21
|
+
flex?: boolean | undefined;
|
|
22
|
+
inlineFlex?: boolean | undefined;
|
|
23
|
+
grid?: boolean | undefined;
|
|
24
|
+
inlineGrid?: boolean | undefined;
|
|
25
|
+
contents?: boolean | undefined;
|
|
26
|
+
table?: boolean | undefined;
|
|
27
|
+
tableCell?: boolean | undefined;
|
|
28
|
+
hidden?: boolean | undefined;
|
|
29
|
+
row?: boolean | undefined;
|
|
30
|
+
column?: boolean | undefined;
|
|
31
|
+
rowReverse?: boolean | undefined;
|
|
32
|
+
columnReverse?: boolean | undefined;
|
|
33
|
+
noGap?: boolean | undefined;
|
|
34
|
+
xsHide?: boolean | undefined;
|
|
35
|
+
smHide?: boolean | undefined;
|
|
36
|
+
mdHide?: boolean | undefined;
|
|
37
|
+
lgHide?: boolean | undefined;
|
|
38
|
+
xlHide?: boolean | undefined;
|
|
39
|
+
itemsStart?: boolean | undefined;
|
|
40
|
+
itemsEnd?: boolean | undefined;
|
|
41
|
+
itemsCenter?: boolean | undefined;
|
|
42
|
+
itemsBaseline?: boolean | undefined;
|
|
43
|
+
itemsStretch?: boolean | undefined;
|
|
44
|
+
justifyStart?: boolean | undefined;
|
|
45
|
+
justifyEnd?: boolean | undefined;
|
|
46
|
+
justifyCenter?: boolean | undefined;
|
|
47
|
+
justifyBetween?: boolean | undefined;
|
|
48
|
+
justifyAround?: boolean | undefined;
|
|
49
|
+
justifyEvenly?: boolean | undefined;
|
|
50
|
+
justifyStretch?: boolean | undefined;
|
|
51
|
+
justifyBaseline?: boolean | undefined;
|
|
52
|
+
overflowAuto?: boolean | undefined;
|
|
53
|
+
overflowHidden?: boolean | undefined;
|
|
54
|
+
overflowClip?: boolean | undefined;
|
|
55
|
+
overflowVisible?: boolean | undefined;
|
|
56
|
+
overflowScroll?: boolean | undefined;
|
|
57
|
+
overflowXAuto?: boolean | undefined;
|
|
58
|
+
overflowYAuto?: boolean | undefined;
|
|
59
|
+
overflowXHidden?: boolean | undefined;
|
|
60
|
+
overflowYHidden?: boolean | undefined;
|
|
61
|
+
overflowXClip?: boolean | undefined;
|
|
62
|
+
overflowYClip?: boolean | undefined;
|
|
63
|
+
overflowXVisible?: boolean | undefined;
|
|
64
|
+
overflowYVisible?: boolean | undefined;
|
|
65
|
+
overflowXScroll?: boolean | undefined;
|
|
66
|
+
overflowYScroll?: boolean | undefined;
|
|
67
|
+
relative?: boolean | undefined;
|
|
68
|
+
absolute?: boolean | undefined;
|
|
69
|
+
fixed?: boolean | undefined;
|
|
70
|
+
sticky?: boolean | undefined;
|
|
71
|
+
static?: boolean | undefined;
|
|
72
|
+
xs?: boolean | undefined;
|
|
73
|
+
sm?: boolean | undefined;
|
|
74
|
+
md?: boolean | undefined;
|
|
75
|
+
lg?: boolean | undefined;
|
|
76
|
+
xl?: boolean | undefined;
|
|
77
|
+
filled?: boolean | undefined;
|
|
78
|
+
outline?: boolean | undefined;
|
|
79
|
+
flexWrap?: boolean | undefined;
|
|
80
|
+
flexNoWrap?: boolean | undefined;
|
|
81
|
+
flexWrapReverse?: boolean | undefined;
|
|
82
|
+
} & {
|
|
83
|
+
tag?: React.ElementType;
|
|
84
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
85
|
+
export declare const Grid3: import("react").ForwardRefExoticComponent<{
|
|
86
|
+
className?: string;
|
|
87
|
+
children?: React.ReactNode;
|
|
88
|
+
} & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
89
|
+
transparent?: boolean | undefined;
|
|
90
|
+
gap?: boolean | undefined;
|
|
91
|
+
reverse?: boolean | undefined;
|
|
92
|
+
default?: boolean | undefined;
|
|
93
|
+
accent?: boolean | undefined;
|
|
94
|
+
primary?: boolean | undefined;
|
|
95
|
+
secondary?: boolean | undefined;
|
|
96
|
+
tertiary?: boolean | undefined;
|
|
97
|
+
success?: boolean | undefined;
|
|
98
|
+
danger?: boolean | undefined;
|
|
99
|
+
warning?: boolean | undefined;
|
|
100
|
+
info?: boolean | undefined;
|
|
101
|
+
link?: boolean | undefined;
|
|
102
|
+
inline?: boolean | undefined;
|
|
103
|
+
block?: boolean | undefined;
|
|
104
|
+
inlineBlock?: boolean | undefined;
|
|
105
|
+
flex?: boolean | undefined;
|
|
106
|
+
inlineFlex?: boolean | undefined;
|
|
107
|
+
grid?: boolean | undefined;
|
|
108
|
+
inlineGrid?: boolean | undefined;
|
|
109
|
+
contents?: boolean | undefined;
|
|
110
|
+
table?: boolean | undefined;
|
|
111
|
+
tableCell?: boolean | undefined;
|
|
112
|
+
hidden?: boolean | undefined;
|
|
113
|
+
row?: boolean | undefined;
|
|
114
|
+
column?: boolean | undefined;
|
|
115
|
+
rowReverse?: boolean | undefined;
|
|
116
|
+
columnReverse?: boolean | undefined;
|
|
117
|
+
noGap?: boolean | undefined;
|
|
118
|
+
xsHide?: boolean | undefined;
|
|
119
|
+
smHide?: boolean | undefined;
|
|
120
|
+
mdHide?: boolean | undefined;
|
|
121
|
+
lgHide?: boolean | undefined;
|
|
122
|
+
xlHide?: boolean | undefined;
|
|
123
|
+
itemsStart?: boolean | undefined;
|
|
124
|
+
itemsEnd?: boolean | undefined;
|
|
125
|
+
itemsCenter?: boolean | undefined;
|
|
126
|
+
itemsBaseline?: boolean | undefined;
|
|
127
|
+
itemsStretch?: boolean | undefined;
|
|
128
|
+
justifyStart?: boolean | undefined;
|
|
129
|
+
justifyEnd?: boolean | undefined;
|
|
130
|
+
justifyCenter?: boolean | undefined;
|
|
131
|
+
justifyBetween?: boolean | undefined;
|
|
132
|
+
justifyAround?: boolean | undefined;
|
|
133
|
+
justifyEvenly?: boolean | undefined;
|
|
134
|
+
justifyStretch?: boolean | undefined;
|
|
135
|
+
justifyBaseline?: boolean | undefined;
|
|
136
|
+
overflowAuto?: boolean | undefined;
|
|
137
|
+
overflowHidden?: boolean | undefined;
|
|
138
|
+
overflowClip?: boolean | undefined;
|
|
139
|
+
overflowVisible?: boolean | undefined;
|
|
140
|
+
overflowScroll?: boolean | undefined;
|
|
141
|
+
overflowXAuto?: boolean | undefined;
|
|
142
|
+
overflowYAuto?: boolean | undefined;
|
|
143
|
+
overflowXHidden?: boolean | undefined;
|
|
144
|
+
overflowYHidden?: boolean | undefined;
|
|
145
|
+
overflowXClip?: boolean | undefined;
|
|
146
|
+
overflowYClip?: boolean | undefined;
|
|
147
|
+
overflowXVisible?: boolean | undefined;
|
|
148
|
+
overflowYVisible?: boolean | undefined;
|
|
149
|
+
overflowXScroll?: boolean | undefined;
|
|
150
|
+
overflowYScroll?: boolean | undefined;
|
|
151
|
+
relative?: boolean | undefined;
|
|
152
|
+
absolute?: boolean | undefined;
|
|
153
|
+
fixed?: boolean | undefined;
|
|
154
|
+
sticky?: boolean | undefined;
|
|
155
|
+
static?: boolean | undefined;
|
|
156
|
+
xs?: boolean | undefined;
|
|
157
|
+
sm?: boolean | undefined;
|
|
158
|
+
md?: boolean | undefined;
|
|
159
|
+
lg?: boolean | undefined;
|
|
160
|
+
xl?: boolean | undefined;
|
|
161
|
+
filled?: boolean | undefined;
|
|
162
|
+
outline?: boolean | undefined;
|
|
163
|
+
flexWrap?: boolean | undefined;
|
|
164
|
+
flexNoWrap?: boolean | undefined;
|
|
165
|
+
flexWrapReverse?: boolean | undefined;
|
|
166
|
+
} & {
|
|
167
|
+
tag?: React.ElementType;
|
|
168
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
169
|
+
export declare const Grid4: import("react").ForwardRefExoticComponent<{
|
|
170
|
+
className?: string;
|
|
171
|
+
children?: React.ReactNode;
|
|
172
|
+
} & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
173
|
+
transparent?: boolean | undefined;
|
|
174
|
+
gap?: boolean | undefined;
|
|
175
|
+
reverse?: boolean | undefined;
|
|
176
|
+
default?: boolean | undefined;
|
|
177
|
+
accent?: boolean | undefined;
|
|
178
|
+
primary?: boolean | undefined;
|
|
179
|
+
secondary?: boolean | undefined;
|
|
180
|
+
tertiary?: boolean | undefined;
|
|
181
|
+
success?: boolean | undefined;
|
|
182
|
+
danger?: boolean | undefined;
|
|
183
|
+
warning?: boolean | undefined;
|
|
184
|
+
info?: boolean | undefined;
|
|
185
|
+
link?: boolean | undefined;
|
|
186
|
+
inline?: boolean | undefined;
|
|
187
|
+
block?: boolean | undefined;
|
|
188
|
+
inlineBlock?: boolean | undefined;
|
|
189
|
+
flex?: boolean | undefined;
|
|
190
|
+
inlineFlex?: boolean | undefined;
|
|
191
|
+
grid?: boolean | undefined;
|
|
192
|
+
inlineGrid?: boolean | undefined;
|
|
193
|
+
contents?: boolean | undefined;
|
|
194
|
+
table?: boolean | undefined;
|
|
195
|
+
tableCell?: boolean | undefined;
|
|
196
|
+
hidden?: boolean | undefined;
|
|
197
|
+
row?: boolean | undefined;
|
|
198
|
+
column?: boolean | undefined;
|
|
199
|
+
rowReverse?: boolean | undefined;
|
|
200
|
+
columnReverse?: boolean | undefined;
|
|
201
|
+
noGap?: boolean | undefined;
|
|
202
|
+
xsHide?: boolean | undefined;
|
|
203
|
+
smHide?: boolean | undefined;
|
|
204
|
+
mdHide?: boolean | undefined;
|
|
205
|
+
lgHide?: boolean | undefined;
|
|
206
|
+
xlHide?: boolean | undefined;
|
|
207
|
+
itemsStart?: boolean | undefined;
|
|
208
|
+
itemsEnd?: boolean | undefined;
|
|
209
|
+
itemsCenter?: boolean | undefined;
|
|
210
|
+
itemsBaseline?: boolean | undefined;
|
|
211
|
+
itemsStretch?: boolean | undefined;
|
|
212
|
+
justifyStart?: boolean | undefined;
|
|
213
|
+
justifyEnd?: boolean | undefined;
|
|
214
|
+
justifyCenter?: boolean | undefined;
|
|
215
|
+
justifyBetween?: boolean | undefined;
|
|
216
|
+
justifyAround?: boolean | undefined;
|
|
217
|
+
justifyEvenly?: boolean | undefined;
|
|
218
|
+
justifyStretch?: boolean | undefined;
|
|
219
|
+
justifyBaseline?: boolean | undefined;
|
|
220
|
+
overflowAuto?: boolean | undefined;
|
|
221
|
+
overflowHidden?: boolean | undefined;
|
|
222
|
+
overflowClip?: boolean | undefined;
|
|
223
|
+
overflowVisible?: boolean | undefined;
|
|
224
|
+
overflowScroll?: boolean | undefined;
|
|
225
|
+
overflowXAuto?: boolean | undefined;
|
|
226
|
+
overflowYAuto?: boolean | undefined;
|
|
227
|
+
overflowXHidden?: boolean | undefined;
|
|
228
|
+
overflowYHidden?: boolean | undefined;
|
|
229
|
+
overflowXClip?: boolean | undefined;
|
|
230
|
+
overflowYClip?: boolean | undefined;
|
|
231
|
+
overflowXVisible?: boolean | undefined;
|
|
232
|
+
overflowYVisible?: boolean | undefined;
|
|
233
|
+
overflowXScroll?: boolean | undefined;
|
|
234
|
+
overflowYScroll?: boolean | undefined;
|
|
235
|
+
relative?: boolean | undefined;
|
|
236
|
+
absolute?: boolean | undefined;
|
|
237
|
+
fixed?: boolean | undefined;
|
|
238
|
+
sticky?: boolean | undefined;
|
|
239
|
+
static?: boolean | undefined;
|
|
240
|
+
xs?: boolean | undefined;
|
|
241
|
+
sm?: boolean | undefined;
|
|
242
|
+
md?: boolean | undefined;
|
|
243
|
+
lg?: boolean | undefined;
|
|
244
|
+
xl?: boolean | undefined;
|
|
245
|
+
filled?: boolean | undefined;
|
|
246
|
+
outline?: boolean | undefined;
|
|
247
|
+
flexWrap?: boolean | undefined;
|
|
248
|
+
flexNoWrap?: boolean | undefined;
|
|
249
|
+
flexWrapReverse?: boolean | undefined;
|
|
250
|
+
} & {
|
|
251
|
+
tag?: React.ElementType;
|
|
252
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
253
|
+
export declare const Grid5: import("react").ForwardRefExoticComponent<{
|
|
254
|
+
className?: string;
|
|
255
|
+
children?: React.ReactNode;
|
|
256
|
+
} & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
257
|
+
transparent?: boolean | undefined;
|
|
258
|
+
gap?: boolean | undefined;
|
|
259
|
+
reverse?: boolean | undefined;
|
|
260
|
+
default?: boolean | undefined;
|
|
261
|
+
accent?: boolean | undefined;
|
|
262
|
+
primary?: boolean | undefined;
|
|
263
|
+
secondary?: boolean | undefined;
|
|
264
|
+
tertiary?: boolean | undefined;
|
|
265
|
+
success?: boolean | undefined;
|
|
266
|
+
danger?: boolean | undefined;
|
|
267
|
+
warning?: boolean | undefined;
|
|
268
|
+
info?: boolean | undefined;
|
|
269
|
+
link?: boolean | undefined;
|
|
270
|
+
inline?: boolean | undefined;
|
|
271
|
+
block?: boolean | undefined;
|
|
272
|
+
inlineBlock?: boolean | undefined;
|
|
273
|
+
flex?: boolean | undefined;
|
|
274
|
+
inlineFlex?: boolean | undefined;
|
|
275
|
+
grid?: boolean | undefined;
|
|
276
|
+
inlineGrid?: boolean | undefined;
|
|
277
|
+
contents?: boolean | undefined;
|
|
278
|
+
table?: boolean | undefined;
|
|
279
|
+
tableCell?: boolean | undefined;
|
|
280
|
+
hidden?: boolean | undefined;
|
|
281
|
+
row?: boolean | undefined;
|
|
282
|
+
column?: boolean | undefined;
|
|
283
|
+
rowReverse?: boolean | undefined;
|
|
284
|
+
columnReverse?: boolean | undefined;
|
|
285
|
+
noGap?: boolean | undefined;
|
|
286
|
+
xsHide?: boolean | undefined;
|
|
287
|
+
smHide?: boolean | undefined;
|
|
288
|
+
mdHide?: boolean | undefined;
|
|
289
|
+
lgHide?: boolean | undefined;
|
|
290
|
+
xlHide?: boolean | undefined;
|
|
291
|
+
itemsStart?: boolean | undefined;
|
|
292
|
+
itemsEnd?: boolean | undefined;
|
|
293
|
+
itemsCenter?: boolean | undefined;
|
|
294
|
+
itemsBaseline?: boolean | undefined;
|
|
295
|
+
itemsStretch?: boolean | undefined;
|
|
296
|
+
justifyStart?: boolean | undefined;
|
|
297
|
+
justifyEnd?: boolean | undefined;
|
|
298
|
+
justifyCenter?: boolean | undefined;
|
|
299
|
+
justifyBetween?: boolean | undefined;
|
|
300
|
+
justifyAround?: boolean | undefined;
|
|
301
|
+
justifyEvenly?: boolean | undefined;
|
|
302
|
+
justifyStretch?: boolean | undefined;
|
|
303
|
+
justifyBaseline?: boolean | undefined;
|
|
304
|
+
overflowAuto?: boolean | undefined;
|
|
305
|
+
overflowHidden?: boolean | undefined;
|
|
306
|
+
overflowClip?: boolean | undefined;
|
|
307
|
+
overflowVisible?: boolean | undefined;
|
|
308
|
+
overflowScroll?: boolean | undefined;
|
|
309
|
+
overflowXAuto?: boolean | undefined;
|
|
310
|
+
overflowYAuto?: boolean | undefined;
|
|
311
|
+
overflowXHidden?: boolean | undefined;
|
|
312
|
+
overflowYHidden?: boolean | undefined;
|
|
313
|
+
overflowXClip?: boolean | undefined;
|
|
314
|
+
overflowYClip?: boolean | undefined;
|
|
315
|
+
overflowXVisible?: boolean | undefined;
|
|
316
|
+
overflowYVisible?: boolean | undefined;
|
|
317
|
+
overflowXScroll?: boolean | undefined;
|
|
318
|
+
overflowYScroll?: boolean | undefined;
|
|
319
|
+
relative?: boolean | undefined;
|
|
320
|
+
absolute?: boolean | undefined;
|
|
321
|
+
fixed?: boolean | undefined;
|
|
322
|
+
sticky?: boolean | undefined;
|
|
323
|
+
static?: boolean | undefined;
|
|
324
|
+
xs?: boolean | undefined;
|
|
325
|
+
sm?: boolean | undefined;
|
|
326
|
+
md?: boolean | undefined;
|
|
327
|
+
lg?: boolean | undefined;
|
|
328
|
+
xl?: boolean | undefined;
|
|
329
|
+
filled?: boolean | undefined;
|
|
330
|
+
outline?: boolean | undefined;
|
|
331
|
+
flexWrap?: boolean | undefined;
|
|
332
|
+
flexNoWrap?: boolean | undefined;
|
|
333
|
+
flexWrapReverse?: boolean | undefined;
|
|
334
|
+
} & {
|
|
335
|
+
tag?: React.ElementType;
|
|
336
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
337
|
+
export declare const Grid6: import("react").ForwardRefExoticComponent<{
|
|
338
|
+
className?: string;
|
|
339
|
+
children?: React.ReactNode;
|
|
340
|
+
} & import("react").HTMLAttributes<HTMLDivElement> & {
|
|
341
|
+
transparent?: boolean | undefined;
|
|
342
|
+
gap?: boolean | undefined;
|
|
343
|
+
reverse?: boolean | undefined;
|
|
344
|
+
default?: boolean | undefined;
|
|
345
|
+
accent?: boolean | undefined;
|
|
346
|
+
primary?: boolean | undefined;
|
|
347
|
+
secondary?: boolean | undefined;
|
|
348
|
+
tertiary?: boolean | undefined;
|
|
349
|
+
success?: boolean | undefined;
|
|
350
|
+
danger?: boolean | undefined;
|
|
351
|
+
warning?: boolean | undefined;
|
|
352
|
+
info?: boolean | undefined;
|
|
353
|
+
link?: boolean | undefined;
|
|
354
|
+
inline?: boolean | undefined;
|
|
355
|
+
block?: boolean | undefined;
|
|
356
|
+
inlineBlock?: boolean | undefined;
|
|
357
|
+
flex?: boolean | undefined;
|
|
358
|
+
inlineFlex?: boolean | undefined;
|
|
359
|
+
grid?: boolean | undefined;
|
|
360
|
+
inlineGrid?: boolean | undefined;
|
|
361
|
+
contents?: boolean | undefined;
|
|
362
|
+
table?: boolean | undefined;
|
|
363
|
+
tableCell?: boolean | undefined;
|
|
364
|
+
hidden?: boolean | undefined;
|
|
365
|
+
row?: boolean | undefined;
|
|
366
|
+
column?: boolean | undefined;
|
|
367
|
+
rowReverse?: boolean | undefined;
|
|
368
|
+
columnReverse?: boolean | undefined;
|
|
369
|
+
noGap?: boolean | undefined;
|
|
370
|
+
xsHide?: boolean | undefined;
|
|
371
|
+
smHide?: boolean | undefined;
|
|
372
|
+
mdHide?: boolean | undefined;
|
|
373
|
+
lgHide?: boolean | undefined;
|
|
374
|
+
xlHide?: boolean | undefined;
|
|
375
|
+
itemsStart?: boolean | undefined;
|
|
376
|
+
itemsEnd?: boolean | undefined;
|
|
377
|
+
itemsCenter?: boolean | undefined;
|
|
378
|
+
itemsBaseline?: boolean | undefined;
|
|
379
|
+
itemsStretch?: boolean | undefined;
|
|
380
|
+
justifyStart?: boolean | undefined;
|
|
381
|
+
justifyEnd?: boolean | undefined;
|
|
382
|
+
justifyCenter?: boolean | undefined;
|
|
383
|
+
justifyBetween?: boolean | undefined;
|
|
384
|
+
justifyAround?: boolean | undefined;
|
|
385
|
+
justifyEvenly?: boolean | undefined;
|
|
386
|
+
justifyStretch?: boolean | undefined;
|
|
387
|
+
justifyBaseline?: boolean | undefined;
|
|
388
|
+
overflowAuto?: boolean | undefined;
|
|
389
|
+
overflowHidden?: boolean | undefined;
|
|
390
|
+
overflowClip?: boolean | undefined;
|
|
391
|
+
overflowVisible?: boolean | undefined;
|
|
392
|
+
overflowScroll?: boolean | undefined;
|
|
393
|
+
overflowXAuto?: boolean | undefined;
|
|
394
|
+
overflowYAuto?: boolean | undefined;
|
|
395
|
+
overflowXHidden?: boolean | undefined;
|
|
396
|
+
overflowYHidden?: boolean | undefined;
|
|
397
|
+
overflowXClip?: boolean | undefined;
|
|
398
|
+
overflowYClip?: boolean | undefined;
|
|
399
|
+
overflowXVisible?: boolean | undefined;
|
|
400
|
+
overflowYVisible?: boolean | undefined;
|
|
401
|
+
overflowXScroll?: boolean | undefined;
|
|
402
|
+
overflowYScroll?: boolean | undefined;
|
|
403
|
+
relative?: boolean | undefined;
|
|
404
|
+
absolute?: boolean | undefined;
|
|
405
|
+
fixed?: boolean | undefined;
|
|
406
|
+
sticky?: boolean | undefined;
|
|
407
|
+
static?: boolean | undefined;
|
|
408
|
+
xs?: boolean | undefined;
|
|
409
|
+
sm?: boolean | undefined;
|
|
410
|
+
md?: boolean | undefined;
|
|
411
|
+
lg?: boolean | undefined;
|
|
412
|
+
xl?: boolean | undefined;
|
|
413
|
+
filled?: boolean | undefined;
|
|
414
|
+
outline?: boolean | undefined;
|
|
415
|
+
flexWrap?: boolean | undefined;
|
|
416
|
+
flexNoWrap?: boolean | undefined;
|
|
417
|
+
flexWrapReverse?: boolean | undefined;
|
|
418
|
+
} & {
|
|
419
|
+
tag?: React.ElementType;
|
|
420
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -6,6 +6,7 @@ export declare const Img: import("react").ForwardRefExoticComponent<{
|
|
|
6
6
|
border?: boolean | undefined;
|
|
7
7
|
shadow?: boolean | undefined;
|
|
8
8
|
ring?: boolean | undefined;
|
|
9
|
+
focusVisible?: boolean | undefined;
|
|
9
10
|
default?: boolean | undefined;
|
|
10
11
|
accent?: boolean | undefined;
|
|
11
12
|
primary?: boolean | undefined;
|
|
@@ -68,6 +69,7 @@ export declare const Img: import("react").ForwardRefExoticComponent<{
|
|
|
68
69
|
static?: boolean | undefined;
|
|
69
70
|
noRing?: boolean | undefined;
|
|
70
71
|
noShadow?: boolean | undefined;
|
|
72
|
+
noFocusVisible?: boolean | undefined;
|
|
71
73
|
pill?: boolean | undefined;
|
|
72
74
|
sharp?: boolean | undefined;
|
|
73
75
|
rounded?: boolean | undefined;
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
export declare const Input: import("react").ForwardRefExoticComponent<{
|
|
2
|
+
className?: string;
|
|
3
|
+
children?: React.ReactNode;
|
|
4
|
+
} & import("react").InputHTMLAttributes<HTMLInputElement> & {
|
|
5
|
+
transparent?: boolean | undefined;
|
|
6
|
+
gap?: boolean | undefined;
|
|
7
|
+
reverse?: boolean | undefined;
|
|
8
|
+
padding?: boolean | undefined;
|
|
9
|
+
border?: boolean | undefined;
|
|
10
|
+
shadow?: boolean | undefined;
|
|
11
|
+
ring?: boolean | undefined;
|
|
12
|
+
focusVisible?: boolean | undefined;
|
|
13
|
+
default?: boolean | undefined;
|
|
14
|
+
accent?: boolean | undefined;
|
|
15
|
+
primary?: boolean | undefined;
|
|
16
|
+
secondary?: boolean | undefined;
|
|
17
|
+
tertiary?: boolean | undefined;
|
|
18
|
+
success?: boolean | undefined;
|
|
19
|
+
danger?: boolean | undefined;
|
|
20
|
+
warning?: boolean | undefined;
|
|
21
|
+
info?: boolean | undefined;
|
|
22
|
+
link?: boolean | undefined;
|
|
23
|
+
noBorder?: boolean | undefined;
|
|
24
|
+
inline?: boolean | undefined;
|
|
25
|
+
block?: boolean | undefined;
|
|
26
|
+
inlineBlock?: boolean | undefined;
|
|
27
|
+
flex?: boolean | undefined;
|
|
28
|
+
inlineFlex?: boolean | undefined;
|
|
29
|
+
grid?: boolean | undefined;
|
|
30
|
+
inlineGrid?: boolean | undefined;
|
|
31
|
+
contents?: boolean | undefined;
|
|
32
|
+
table?: boolean | undefined;
|
|
33
|
+
tableCell?: boolean | undefined;
|
|
34
|
+
hidden?: boolean | undefined;
|
|
35
|
+
row?: boolean | undefined;
|
|
36
|
+
column?: boolean | undefined;
|
|
37
|
+
rowReverse?: boolean | undefined;
|
|
38
|
+
columnReverse?: boolean | undefined;
|
|
39
|
+
sans?: boolean | undefined;
|
|
40
|
+
serif?: boolean | undefined;
|
|
41
|
+
mono?: boolean | undefined;
|
|
42
|
+
italic?: boolean | undefined;
|
|
43
|
+
notItalic?: boolean | undefined;
|
|
44
|
+
thin?: boolean | undefined;
|
|
45
|
+
extralight?: boolean | undefined;
|
|
46
|
+
light?: boolean | undefined;
|
|
47
|
+
normal?: boolean | undefined;
|
|
48
|
+
medium?: boolean | undefined;
|
|
49
|
+
semibold?: boolean | undefined;
|
|
50
|
+
bold?: boolean | undefined;
|
|
51
|
+
extrabold?: boolean | undefined;
|
|
52
|
+
black?: boolean | undefined;
|
|
53
|
+
noGap?: boolean | undefined;
|
|
54
|
+
xsHide?: boolean | undefined;
|
|
55
|
+
smHide?: boolean | undefined;
|
|
56
|
+
mdHide?: boolean | undefined;
|
|
57
|
+
lgHide?: boolean | undefined;
|
|
58
|
+
xlHide?: boolean | undefined;
|
|
59
|
+
itemsStart?: boolean | undefined;
|
|
60
|
+
itemsEnd?: boolean | undefined;
|
|
61
|
+
itemsCenter?: boolean | undefined;
|
|
62
|
+
itemsBaseline?: boolean | undefined;
|
|
63
|
+
itemsStretch?: boolean | undefined;
|
|
64
|
+
justifyStart?: boolean | undefined;
|
|
65
|
+
justifyEnd?: boolean | undefined;
|
|
66
|
+
justifyCenter?: boolean | undefined;
|
|
67
|
+
justifyBetween?: boolean | undefined;
|
|
68
|
+
justifyAround?: boolean | undefined;
|
|
69
|
+
justifyEvenly?: boolean | undefined;
|
|
70
|
+
justifyStretch?: boolean | undefined;
|
|
71
|
+
justifyBaseline?: boolean | undefined;
|
|
72
|
+
overflowAuto?: boolean | undefined;
|
|
73
|
+
overflowHidden?: boolean | undefined;
|
|
74
|
+
overflowClip?: boolean | undefined;
|
|
75
|
+
overflowVisible?: boolean | undefined;
|
|
76
|
+
overflowScroll?: boolean | undefined;
|
|
77
|
+
overflowXAuto?: boolean | undefined;
|
|
78
|
+
overflowYAuto?: boolean | undefined;
|
|
79
|
+
overflowXHidden?: boolean | undefined;
|
|
80
|
+
overflowYHidden?: boolean | undefined;
|
|
81
|
+
overflowXClip?: boolean | undefined;
|
|
82
|
+
overflowYClip?: boolean | undefined;
|
|
83
|
+
overflowXVisible?: boolean | undefined;
|
|
84
|
+
overflowYVisible?: boolean | undefined;
|
|
85
|
+
overflowXScroll?: boolean | undefined;
|
|
86
|
+
overflowYScroll?: boolean | undefined;
|
|
87
|
+
noPadding?: boolean | undefined;
|
|
88
|
+
relative?: boolean | undefined;
|
|
89
|
+
absolute?: boolean | undefined;
|
|
90
|
+
fixed?: boolean | undefined;
|
|
91
|
+
sticky?: boolean | undefined;
|
|
92
|
+
static?: boolean | undefined;
|
|
93
|
+
noRing?: boolean | undefined;
|
|
94
|
+
noShadow?: boolean | undefined;
|
|
95
|
+
noFocusVisible?: boolean | undefined;
|
|
96
|
+
pill?: boolean | undefined;
|
|
97
|
+
sharp?: boolean | undefined;
|
|
98
|
+
rounded?: boolean | undefined;
|
|
99
|
+
xs?: boolean | undefined;
|
|
100
|
+
sm?: boolean | undefined;
|
|
101
|
+
md?: boolean | undefined;
|
|
102
|
+
lg?: boolean | undefined;
|
|
103
|
+
xl?: boolean | undefined;
|
|
104
|
+
textLeft?: boolean | undefined;
|
|
105
|
+
textCenter?: boolean | undefined;
|
|
106
|
+
textRight?: boolean | undefined;
|
|
107
|
+
textJustify?: boolean | undefined;
|
|
108
|
+
underline?: boolean | undefined;
|
|
109
|
+
lineThrough?: boolean | undefined;
|
|
110
|
+
noUnderline?: boolean | undefined;
|
|
111
|
+
overline?: boolean | undefined;
|
|
112
|
+
uppercase?: boolean | undefined;
|
|
113
|
+
lowercase?: boolean | undefined;
|
|
114
|
+
capitalize?: boolean | undefined;
|
|
115
|
+
normalCase?: boolean | undefined;
|
|
116
|
+
filled?: boolean | undefined;
|
|
117
|
+
outline?: boolean | undefined;
|
|
118
|
+
flexWrap?: boolean | undefined;
|
|
119
|
+
flexNoWrap?: boolean | undefined;
|
|
120
|
+
flexWrapReverse?: boolean | undefined;
|
|
121
|
+
} & {
|
|
122
|
+
tag?: React.ElementType;
|
|
123
|
+
} & import("react").RefAttributes<HTMLInputElement>>;
|
|
@@ -2,6 +2,6 @@ export { Section } from './section';
|
|
|
2
2
|
export { Container } from './container';
|
|
3
3
|
export { Col } from './col';
|
|
4
4
|
export { Row } from './row';
|
|
5
|
-
export { Grid2, Grid3, Grid4 } from './grid';
|
|
5
|
+
export { Grid2, Grid3, Grid4, Grid5, Grid6 } from './grid';
|
|
6
6
|
export { Card } from './card';
|
|
7
7
|
export { Stack } from './stack';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/** Default neutral appearance - uses default color variables */
|
|
2
|
+
export declare const DEFAULT: "default";
|
|
3
|
+
/** Accent appearance - uses accent/rose color variables for brand secondary styling */
|
|
4
|
+
export declare const ACCENT: "accent";
|
|
5
|
+
/** Primary appearance - uses primary/blue color variables for main brand styling */
|
|
6
|
+
export declare const PRIMARY: "primary";
|
|
7
|
+
/** Secondary appearance - uses secondary/gray color variables for muted styling */
|
|
8
|
+
export declare const SECONDARY: "secondary";
|
|
9
|
+
/** Tertiary appearance - uses tertiary/gray color variables for subtle styling */
|
|
10
|
+
export declare const TERTIARY: "tertiary";
|
|
11
|
+
/** Success appearance - uses success/emerald color variables for positive states */
|
|
12
|
+
export declare const SUCCESS: "success";
|
|
13
|
+
/** Danger appearance - uses danger/red color variables for error/destructive states */
|
|
14
|
+
export declare const DANGER: "danger";
|
|
15
|
+
/** Warning appearance - uses warning/amber color variables for caution states */
|
|
16
|
+
export declare const WARNING: "warning";
|
|
17
|
+
/** Info appearance - uses info/cyan color variables for informational states */
|
|
18
|
+
export declare const INFO: "info";
|
|
19
|
+
/** Link appearance - uses link/blue color variables for hyperlinks and navigation */
|
|
20
|
+
export declare const LINK: "link";
|
|
21
|
+
/** All appearance property values */
|
|
22
|
+
export declare const APPEARANCE_VALUES: readonly ["default", "accent", "primary", "secondary", "tertiary", "success", "danger", "warning", "info", "link"];
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/** Show border - adds appearance-based border styling */
|
|
2
|
+
export declare const BORDER: "border";
|
|
3
|
+
/** Hide border - removes border styling (overrides appearance colors) */
|
|
4
|
+
export declare const NO_BORDER: "noBorder";
|
|
5
|
+
/** All border property values */
|
|
6
|
+
export declare const BORDER_VALUES: readonly ["border", "noBorder"];
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/** Extra-small column breakpoint - responsive grid column sizing for xs screens */
|
|
2
|
+
export declare const XS_COL: "xsCol";
|
|
3
|
+
/** Small column breakpoint - responsive grid column sizing for sm screens */
|
|
4
|
+
export declare const SM_COL: "smCol";
|
|
5
|
+
/** Medium column breakpoint - responsive grid column sizing for md screens */
|
|
6
|
+
export declare const MD_COL: "mdCol";
|
|
7
|
+
/** Large column breakpoint - responsive grid column sizing for lg screens */
|
|
8
|
+
export declare const LG_COL: "lgCol";
|
|
9
|
+
/** Extra-large column breakpoint - responsive grid column sizing for xl screens */
|
|
10
|
+
export declare const XL_COL: "xlCol";
|
|
11
|
+
/** All breakpoint property values */
|
|
12
|
+
export declare const BREAKPOINT_VALUES: readonly ["xsCol", "smCol", "mdCol", "lgCol", "xlCol"];
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/** Inline display - flows with text */
|
|
2
|
+
export declare const INLINE: "inline";
|
|
3
|
+
/** Block display - takes full width, new line */
|
|
4
|
+
export declare const BLOCK: "block";
|
|
5
|
+
/** Inline-block display - inline but with block properties */
|
|
6
|
+
export declare const INLINE_BLOCK: "inlineBlock";
|
|
7
|
+
/** Flex display - flexbox container */
|
|
8
|
+
export declare const FLEX: "flex";
|
|
9
|
+
/** Inline-flex display - inline flexbox container */
|
|
10
|
+
export declare const INLINE_FLEX: "inlineFlex";
|
|
11
|
+
/** Grid display - CSS grid container */
|
|
12
|
+
export declare const GRID: "grid";
|
|
13
|
+
/** Inline-grid display - inline grid container */
|
|
14
|
+
export declare const INLINE_GRID: "inlineGrid";
|
|
15
|
+
/** Contents display - element's box is removed, children display as if parent didn't exist */
|
|
16
|
+
export declare const CONTENTS: "contents";
|
|
17
|
+
/** Table display - behaves like table element */
|
|
18
|
+
export declare const TABLE: "table";
|
|
19
|
+
/** Table-cell display - behaves like td element */
|
|
20
|
+
export declare const TABLE_CELL: "tableCell";
|
|
21
|
+
/** Hidden display - element is not visible */
|
|
22
|
+
export declare const HIDDEN: "hidden";
|
|
23
|
+
/** All display property values */
|
|
24
|
+
export declare const DISPLAY_VALUES: readonly ["inline", "block", "inlineBlock", "flex", "inlineFlex", "grid", "inlineGrid", "contents", "table", "tableCell", "hidden"];
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/** Horizontal flex direction (left to right) */
|
|
2
|
+
export declare const ROW: "row";
|
|
3
|
+
/** Vertical flex direction (top to bottom) */
|
|
4
|
+
export declare const COLUMN: "column";
|
|
5
|
+
/** Horizontal flex direction reversed (right to left) */
|
|
6
|
+
export declare const ROW_REVERSE: "rowReverse";
|
|
7
|
+
/** Vertical flex direction reversed (bottom to top) */
|
|
8
|
+
export declare const COLUMN_REVERSE: "columnReverse";
|
|
9
|
+
/** All flex direction property values */
|
|
10
|
+
export declare const FLEX_DIRECTION_VALUES: readonly ["row", "column", "rowReverse", "columnReverse"];
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/** Show focus-visible outline - adds visible focus indicator for keyboard navigation */
|
|
2
|
+
export declare const FOCUS_VISIBLE_OUTLINE: "focusVisible";
|
|
3
|
+
/** Hide focus-visible outline - removes focus-visible outline styling */
|
|
4
|
+
export declare const NO_FOCUS_VISIBLE_OUTLINE: "noFocusVisible";
|
|
5
|
+
/** All focusVisible property values */
|
|
6
|
+
export declare const FOCUS_VISIBLE_VALUES: readonly ["focusVisible", "noFocusVisible"];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/** Sans-serif font family - clean, modern typeface without serifs */
|
|
2
|
+
export declare const SANS: "sans";
|
|
3
|
+
/** Serif font family - traditional typeface with small decorative strokes */
|
|
4
|
+
export declare const SERIF: "serif";
|
|
5
|
+
/** Monospace font family - fixed-width typeface for code and data */
|
|
6
|
+
export declare const MONO: "mono";
|
|
7
|
+
/** All font family property values */
|
|
8
|
+
export declare const FONT_FAMILY_VALUES: readonly ["sans", "serif", "mono"];
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/** Italic font style - slanted text styling */
|
|
2
|
+
export declare const ITALIC: "italic";
|
|
3
|
+
/** Normal font style - upright text styling (not italic) */
|
|
4
|
+
export declare const NOT_ITALIC: "notItalic";
|
|
5
|
+
/** All font style property values */
|
|
6
|
+
export declare const FONT_STYLE_VALUES: readonly ["italic", "notItalic"];
|