@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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@testing-library/jest-dom';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -16,7 +16,8 @@ import { GridTheme } from "./ui/theme/gridTheme";
|
|
|
16
16
|
import { CheckboxTheme, CheckTheme, CheckboxWrapperTheme } from './ui/theme/checkboxTheme';
|
|
17
17
|
import { LabelTheme } from './ui/theme/labelTheme';
|
|
18
18
|
import { ImgTheme } from './ui/theme/imgTheme';
|
|
19
|
-
import {
|
|
19
|
+
import { InputTheme } from './ui/theme/inputTheme';
|
|
20
|
+
import { BadgeProps, ButtonProps, CardProps, ChipProps, CodeProps, ColProps, ContainerProps, DividerProps, GridProps, ListProps, RowProps, SectionProps, StackProps, TypographyProps, CheckboxProps, LabelProps, ImgProps, InputProps } from "./ui/props";
|
|
20
21
|
import { DeepPartial } from "./utils/deepPartial";
|
|
21
22
|
export interface ThemeProps {
|
|
22
23
|
button: ComponentTheme<ButtonProps, ButtonTheme>;
|
|
@@ -33,6 +34,8 @@ export interface ThemeProps {
|
|
|
33
34
|
grid2: ComponentTheme<GridProps, GridTheme>;
|
|
34
35
|
grid3: ComponentTheme<GridProps, GridTheme>;
|
|
35
36
|
grid4: ComponentTheme<GridProps, GridTheme>;
|
|
37
|
+
grid5: ComponentTheme<GridProps, GridTheme>;
|
|
38
|
+
grid6: ComponentTheme<GridProps, GridTheme>;
|
|
36
39
|
pageTitle: ComponentTheme<TypographyProps, TypographyTheme>;
|
|
37
40
|
sectionTitle: ComponentTheme<TypographyProps, TypographyTheme>;
|
|
38
41
|
title: ComponentTheme<TypographyProps, TypographyTheme>;
|
|
@@ -47,6 +50,7 @@ export interface ThemeProps {
|
|
|
47
50
|
};
|
|
48
51
|
label: ComponentTheme<LabelProps, LabelTheme>;
|
|
49
52
|
img: ComponentTheme<ImgProps, ImgTheme>;
|
|
53
|
+
input: ComponentTheme<InputProps, InputTheme>;
|
|
50
54
|
}
|
|
51
55
|
export type PartialTheme = DeepPartial<ThemeProps>;
|
|
52
56
|
export declare const defaultTheme: ThemeProps;
|
|
@@ -81,6 +85,8 @@ export type ThemeDefaults = {
|
|
|
81
85
|
grid2?: Partial<BooleanKeys<GridProps>>;
|
|
82
86
|
grid3?: Partial<BooleanKeys<GridProps>>;
|
|
83
87
|
grid4?: Partial<BooleanKeys<GridProps>>;
|
|
88
|
+
grid5?: Partial<BooleanKeys<GridProps>>;
|
|
89
|
+
grid6?: Partial<BooleanKeys<GridProps>>;
|
|
84
90
|
pageTitle?: Partial<BooleanKeys<TypographyProps>>;
|
|
85
91
|
sectionTitle?: Partial<BooleanKeys<TypographyProps>>;
|
|
86
92
|
title?: Partial<BooleanKeys<TypographyProps>>;
|
|
@@ -95,6 +101,7 @@ export type ThemeDefaults = {
|
|
|
95
101
|
};
|
|
96
102
|
label?: Partial<BooleanKeys<LabelProps>>;
|
|
97
103
|
img?: Partial<BooleanKeys<ImgProps>>;
|
|
104
|
+
input?: Partial<BooleanKeys<InputProps>>;
|
|
98
105
|
};
|
|
99
106
|
export type ThemeExtraClasses = {
|
|
100
107
|
button?: Partial<StringValueKeys<ButtonProps>>;
|
|
@@ -111,6 +118,8 @@ export type ThemeExtraClasses = {
|
|
|
111
118
|
grid2?: Partial<StringValueKeys<GridProps>>;
|
|
112
119
|
grid3?: Partial<StringValueKeys<GridProps>>;
|
|
113
120
|
grid4?: Partial<StringValueKeys<GridProps>>;
|
|
121
|
+
grid5?: Partial<StringValueKeys<GridProps>>;
|
|
122
|
+
grid6?: Partial<StringValueKeys<GridProps>>;
|
|
114
123
|
pageTitle?: Partial<StringValueKeys<TypographyProps>>;
|
|
115
124
|
sectionTitle?: Partial<StringValueKeys<TypographyProps>>;
|
|
116
125
|
title?: Partial<StringValueKeys<TypographyProps>>;
|
|
@@ -125,6 +134,7 @@ export type ThemeExtraClasses = {
|
|
|
125
134
|
};
|
|
126
135
|
label?: Partial<StringValueKeys<LabelProps>>;
|
|
127
136
|
img?: Partial<StringValueKeys<ImgProps>>;
|
|
137
|
+
input?: Partial<StringValueKeys<InputProps>>;
|
|
128
138
|
};
|
|
129
139
|
export type MergeStrategy = 'merge' | 'replace';
|
|
130
140
|
export interface ThemeProviderProps {
|
|
@@ -1,2 +1,126 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
export declare const Card: 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
|
+
padding?: boolean | undefined;
|
|
9
|
+
border?: boolean | undefined;
|
|
10
|
+
shadow?: boolean | undefined;
|
|
11
|
+
ring?: boolean | undefined;
|
|
12
|
+
default?: boolean | undefined;
|
|
13
|
+
accent?: boolean | undefined;
|
|
14
|
+
primary?: boolean | undefined;
|
|
15
|
+
secondary?: boolean | undefined;
|
|
16
|
+
tertiary?: boolean | undefined;
|
|
17
|
+
success?: boolean | undefined;
|
|
18
|
+
danger?: boolean | undefined;
|
|
19
|
+
warning?: boolean | undefined;
|
|
20
|
+
info?: boolean | undefined;
|
|
21
|
+
link?: boolean | undefined;
|
|
22
|
+
noBorder?: boolean | undefined;
|
|
23
|
+
xsCol?: boolean | undefined;
|
|
24
|
+
smCol?: boolean | undefined;
|
|
25
|
+
mdCol?: boolean | undefined;
|
|
26
|
+
lgCol?: boolean | undefined;
|
|
27
|
+
xlCol?: boolean | undefined;
|
|
28
|
+
inline?: boolean | undefined;
|
|
29
|
+
block?: boolean | undefined;
|
|
30
|
+
inlineBlock?: boolean | undefined;
|
|
31
|
+
flex?: boolean | undefined;
|
|
32
|
+
inlineFlex?: boolean | undefined;
|
|
33
|
+
grid?: boolean | undefined;
|
|
34
|
+
inlineGrid?: boolean | undefined;
|
|
35
|
+
contents?: boolean | undefined;
|
|
36
|
+
table?: boolean | undefined;
|
|
37
|
+
tableCell?: boolean | undefined;
|
|
38
|
+
hidden?: boolean | undefined;
|
|
39
|
+
row?: boolean | undefined;
|
|
40
|
+
column?: boolean | undefined;
|
|
41
|
+
rowReverse?: boolean | undefined;
|
|
42
|
+
columnReverse?: boolean | undefined;
|
|
43
|
+
sans?: boolean | undefined;
|
|
44
|
+
serif?: boolean | undefined;
|
|
45
|
+
mono?: boolean | undefined;
|
|
46
|
+
italic?: boolean | undefined;
|
|
47
|
+
notItalic?: boolean | undefined;
|
|
48
|
+
thin?: boolean | undefined;
|
|
49
|
+
extralight?: boolean | undefined;
|
|
50
|
+
light?: boolean | undefined;
|
|
51
|
+
normal?: boolean | undefined;
|
|
52
|
+
medium?: boolean | undefined;
|
|
53
|
+
semibold?: boolean | undefined;
|
|
54
|
+
bold?: boolean | undefined;
|
|
55
|
+
extrabold?: boolean | undefined;
|
|
56
|
+
black?: boolean | undefined;
|
|
57
|
+
noGap?: boolean | undefined;
|
|
58
|
+
xsHide?: boolean | undefined;
|
|
59
|
+
smHide?: boolean | undefined;
|
|
60
|
+
mdHide?: boolean | undefined;
|
|
61
|
+
lgHide?: boolean | undefined;
|
|
62
|
+
xlHide?: boolean | undefined;
|
|
63
|
+
itemsStart?: boolean | undefined;
|
|
64
|
+
itemsEnd?: boolean | undefined;
|
|
65
|
+
itemsCenter?: boolean | undefined;
|
|
66
|
+
itemsBaseline?: boolean | undefined;
|
|
67
|
+
itemsStretch?: boolean | undefined;
|
|
68
|
+
justifyStart?: boolean | undefined;
|
|
69
|
+
justifyEnd?: boolean | undefined;
|
|
70
|
+
justifyCenter?: boolean | undefined;
|
|
71
|
+
justifyBetween?: boolean | undefined;
|
|
72
|
+
justifyAround?: boolean | undefined;
|
|
73
|
+
justifyEvenly?: boolean | undefined;
|
|
74
|
+
justifyStretch?: boolean | undefined;
|
|
75
|
+
justifyBaseline?: boolean | undefined;
|
|
76
|
+
overflowAuto?: boolean | undefined;
|
|
77
|
+
overflowHidden?: boolean | undefined;
|
|
78
|
+
overflowClip?: boolean | undefined;
|
|
79
|
+
overflowVisible?: boolean | undefined;
|
|
80
|
+
overflowScroll?: boolean | undefined;
|
|
81
|
+
overflowXAuto?: boolean | undefined;
|
|
82
|
+
overflowYAuto?: boolean | undefined;
|
|
83
|
+
overflowXHidden?: boolean | undefined;
|
|
84
|
+
overflowYHidden?: boolean | undefined;
|
|
85
|
+
overflowXClip?: boolean | undefined;
|
|
86
|
+
overflowYClip?: boolean | undefined;
|
|
87
|
+
overflowXVisible?: boolean | undefined;
|
|
88
|
+
overflowYVisible?: boolean | undefined;
|
|
89
|
+
overflowXScroll?: boolean | undefined;
|
|
90
|
+
overflowYScroll?: boolean | undefined;
|
|
91
|
+
noPadding?: boolean | undefined;
|
|
92
|
+
relative?: boolean | undefined;
|
|
93
|
+
absolute?: boolean | undefined;
|
|
94
|
+
fixed?: boolean | undefined;
|
|
95
|
+
sticky?: boolean | undefined;
|
|
96
|
+
static?: boolean | undefined;
|
|
97
|
+
noRing?: boolean | undefined;
|
|
98
|
+
noShadow?: boolean | undefined;
|
|
99
|
+
pill?: boolean | undefined;
|
|
100
|
+
sharp?: boolean | undefined;
|
|
101
|
+
rounded?: boolean | undefined;
|
|
102
|
+
xs?: boolean | undefined;
|
|
103
|
+
sm?: boolean | undefined;
|
|
104
|
+
md?: boolean | undefined;
|
|
105
|
+
lg?: boolean | undefined;
|
|
106
|
+
xl?: boolean | undefined;
|
|
107
|
+
textLeft?: boolean | undefined;
|
|
108
|
+
textCenter?: boolean | undefined;
|
|
109
|
+
textRight?: boolean | undefined;
|
|
110
|
+
textJustify?: boolean | undefined;
|
|
111
|
+
underline?: boolean | undefined;
|
|
112
|
+
lineThrough?: boolean | undefined;
|
|
113
|
+
noUnderline?: boolean | undefined;
|
|
114
|
+
overline?: boolean | undefined;
|
|
115
|
+
uppercase?: boolean | undefined;
|
|
116
|
+
lowercase?: boolean | undefined;
|
|
117
|
+
capitalize?: boolean | undefined;
|
|
118
|
+
normalCase?: boolean | undefined;
|
|
119
|
+
filled?: boolean | undefined;
|
|
120
|
+
outline?: boolean | undefined;
|
|
121
|
+
flexWrap?: boolean | undefined;
|
|
122
|
+
flexNoWrap?: boolean | undefined;
|
|
123
|
+
flexWrapReverse?: boolean | undefined;
|
|
124
|
+
} & {
|
|
125
|
+
tag?: React.ElementType;
|
|
126
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -6,6 +6,7 @@ export declare const Checkbox: 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 Checkbox: 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;
|
|
@@ -1,18 +1,20 @@
|
|
|
1
|
-
import { AppearanceKey, TransparentKey
|
|
2
|
-
export declare const filledBackgroundAppearanceClasses: Record<AppearanceKey | TransparentKey
|
|
3
|
-
export declare const filledHoverBackgroundAppearanceClasses: Record<AppearanceKey | TransparentKey
|
|
4
|
-
export declare const filledActiveBackgroundAppearanceClasses: Record<AppearanceKey | TransparentKey
|
|
5
|
-
export declare const backgroundAppearanceClasses: Record<AppearanceKey | TransparentKey
|
|
6
|
-
export declare const hoverBackgroundAppearanceClasses: Record<AppearanceKey | TransparentKey
|
|
7
|
-
export declare const activeBackgroundAppearanceClasses: Record<AppearanceKey | TransparentKey
|
|
8
|
-
export declare const layoutBackgroundAppearanceClasses: Record<AppearanceKey | TransparentKey
|
|
9
|
-
export declare const layoutFilledBackgroundAppearanceClasses: Record<AppearanceKey | TransparentKey
|
|
10
|
-
export declare const bgBorderAppearanceClasses: Record<AppearanceKey | TransparentKey
|
|
11
|
-
export declare const borderAppearanceClasses: Record<AppearanceKey | TransparentKey
|
|
12
|
-
export declare const filledBorderAppearanceClasses: Record<AppearanceKey | TransparentKey
|
|
13
|
-
export declare const ringAppearanceClasses: Record<AppearanceKey | TransparentKey
|
|
14
|
-
export declare const filledRingAppearanceClasses: Record<AppearanceKey | TransparentKey
|
|
15
|
-
export declare const
|
|
16
|
-
export declare const
|
|
17
|
-
export declare const
|
|
18
|
-
export declare const
|
|
1
|
+
import { AppearanceKey, TransparentKey } from "../props";
|
|
2
|
+
export declare const filledBackgroundAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
3
|
+
export declare const filledHoverBackgroundAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
4
|
+
export declare const filledActiveBackgroundAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
5
|
+
export declare const backgroundAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
6
|
+
export declare const hoverBackgroundAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
7
|
+
export declare const activeBackgroundAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
8
|
+
export declare const layoutBackgroundAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
9
|
+
export declare const layoutFilledBackgroundAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
10
|
+
export declare const bgBorderAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
11
|
+
export declare const borderAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
12
|
+
export declare const filledBorderAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
13
|
+
export declare const ringAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
14
|
+
export declare const filledRingAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
15
|
+
export declare const focusVisibleOutlineAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
16
|
+
export declare const filledFocusVisibleOutlineAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
17
|
+
export declare const accentColorAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
18
|
+
export declare const filledAccentColorAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
19
|
+
export declare const checkedBackgroundAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
20
|
+
export declare const filledCheckedBackgroundAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SizeKey, AppearanceKey, TransparentKey
|
|
2
|
-
export declare const filledTextAppearanceClasses: Record<AppearanceKey | TransparentKey
|
|
3
|
-
export declare const textAppearanceClasses: Record<AppearanceKey | TransparentKey
|
|
1
|
+
import { SizeKey, AppearanceKey, TransparentKey } from "../props";
|
|
2
|
+
export declare const filledTextAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
3
|
+
export declare const textAppearanceClasses: Record<AppearanceKey | TransparentKey, string>;
|
|
4
4
|
export declare const textSizeClasses: Record<SizeKey, string>;
|
|
@@ -9,6 +9,7 @@ export declare const Code: import("react").ForwardRefExoticComponent<{
|
|
|
9
9
|
border?: boolean | undefined;
|
|
10
10
|
shadow?: boolean | undefined;
|
|
11
11
|
ring?: boolean | undefined;
|
|
12
|
+
focusVisible?: boolean | undefined;
|
|
12
13
|
default?: boolean | undefined;
|
|
13
14
|
accent?: boolean | undefined;
|
|
14
15
|
primary?: boolean | undefined;
|
|
@@ -91,6 +92,7 @@ export declare const Code: import("react").ForwardRefExoticComponent<{
|
|
|
91
92
|
static?: boolean | undefined;
|
|
92
93
|
noRing?: boolean | undefined;
|
|
93
94
|
noShadow?: boolean | undefined;
|
|
95
|
+
noFocusVisible?: boolean | undefined;
|
|
94
96
|
pill?: boolean | undefined;
|
|
95
97
|
sharp?: boolean | undefined;
|
|
96
98
|
rounded?: boolean | undefined;
|
|
@@ -1,2 +1,93 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
export declare const Col: 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
|
+
border?: boolean | undefined;
|
|
9
|
+
shadow?: boolean | undefined;
|
|
10
|
+
ring?: boolean | undefined;
|
|
11
|
+
default?: boolean | undefined;
|
|
12
|
+
accent?: boolean | undefined;
|
|
13
|
+
primary?: boolean | undefined;
|
|
14
|
+
secondary?: boolean | undefined;
|
|
15
|
+
tertiary?: boolean | undefined;
|
|
16
|
+
success?: boolean | undefined;
|
|
17
|
+
danger?: boolean | undefined;
|
|
18
|
+
warning?: boolean | undefined;
|
|
19
|
+
info?: boolean | undefined;
|
|
20
|
+
link?: boolean | undefined;
|
|
21
|
+
noBorder?: boolean | undefined;
|
|
22
|
+
inline?: boolean | undefined;
|
|
23
|
+
block?: boolean | undefined;
|
|
24
|
+
inlineBlock?: boolean | undefined;
|
|
25
|
+
flex?: boolean | undefined;
|
|
26
|
+
inlineFlex?: boolean | undefined;
|
|
27
|
+
grid?: boolean | undefined;
|
|
28
|
+
inlineGrid?: boolean | undefined;
|
|
29
|
+
contents?: boolean | undefined;
|
|
30
|
+
table?: boolean | undefined;
|
|
31
|
+
tableCell?: boolean | undefined;
|
|
32
|
+
hidden?: boolean | undefined;
|
|
33
|
+
row?: boolean | undefined;
|
|
34
|
+
column?: boolean | undefined;
|
|
35
|
+
rowReverse?: boolean | undefined;
|
|
36
|
+
columnReverse?: boolean | undefined;
|
|
37
|
+
noGap?: boolean | undefined;
|
|
38
|
+
xsHide?: boolean | undefined;
|
|
39
|
+
smHide?: boolean | undefined;
|
|
40
|
+
mdHide?: boolean | undefined;
|
|
41
|
+
lgHide?: boolean | undefined;
|
|
42
|
+
xlHide?: boolean | undefined;
|
|
43
|
+
itemsStart?: boolean | undefined;
|
|
44
|
+
itemsEnd?: boolean | undefined;
|
|
45
|
+
itemsCenter?: boolean | undefined;
|
|
46
|
+
itemsBaseline?: boolean | undefined;
|
|
47
|
+
itemsStretch?: boolean | undefined;
|
|
48
|
+
justifyStart?: boolean | undefined;
|
|
49
|
+
justifyEnd?: boolean | undefined;
|
|
50
|
+
justifyCenter?: boolean | undefined;
|
|
51
|
+
justifyBetween?: boolean | undefined;
|
|
52
|
+
justifyAround?: boolean | undefined;
|
|
53
|
+
justifyEvenly?: boolean | undefined;
|
|
54
|
+
justifyStretch?: boolean | undefined;
|
|
55
|
+
justifyBaseline?: boolean | undefined;
|
|
56
|
+
overflowAuto?: boolean | undefined;
|
|
57
|
+
overflowHidden?: boolean | undefined;
|
|
58
|
+
overflowClip?: boolean | undefined;
|
|
59
|
+
overflowVisible?: boolean | undefined;
|
|
60
|
+
overflowScroll?: boolean | undefined;
|
|
61
|
+
overflowXAuto?: boolean | undefined;
|
|
62
|
+
overflowYAuto?: boolean | undefined;
|
|
63
|
+
overflowXHidden?: boolean | undefined;
|
|
64
|
+
overflowYHidden?: boolean | undefined;
|
|
65
|
+
overflowXClip?: boolean | undefined;
|
|
66
|
+
overflowYClip?: boolean | undefined;
|
|
67
|
+
overflowXVisible?: boolean | undefined;
|
|
68
|
+
overflowYVisible?: boolean | undefined;
|
|
69
|
+
overflowXScroll?: boolean | undefined;
|
|
70
|
+
overflowYScroll?: boolean | undefined;
|
|
71
|
+
relative?: boolean | undefined;
|
|
72
|
+
absolute?: boolean | undefined;
|
|
73
|
+
fixed?: boolean | undefined;
|
|
74
|
+
sticky?: boolean | undefined;
|
|
75
|
+
static?: boolean | undefined;
|
|
76
|
+
noRing?: boolean | undefined;
|
|
77
|
+
noShadow?: boolean | undefined;
|
|
78
|
+
pill?: boolean | undefined;
|
|
79
|
+
sharp?: boolean | undefined;
|
|
80
|
+
rounded?: boolean | undefined;
|
|
81
|
+
xs?: boolean | undefined;
|
|
82
|
+
sm?: boolean | undefined;
|
|
83
|
+
md?: boolean | undefined;
|
|
84
|
+
lg?: boolean | undefined;
|
|
85
|
+
xl?: boolean | undefined;
|
|
86
|
+
filled?: boolean | undefined;
|
|
87
|
+
outline?: boolean | undefined;
|
|
88
|
+
flexWrap?: boolean | undefined;
|
|
89
|
+
flexNoWrap?: boolean | undefined;
|
|
90
|
+
flexWrapReverse?: boolean | undefined;
|
|
91
|
+
} & {
|
|
92
|
+
tag?: React.ElementType;
|
|
93
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -1,2 +1,93 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
export declare const Container: 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
|
+
border?: boolean | undefined;
|
|
9
|
+
shadow?: boolean | undefined;
|
|
10
|
+
ring?: boolean | undefined;
|
|
11
|
+
default?: boolean | undefined;
|
|
12
|
+
accent?: boolean | undefined;
|
|
13
|
+
primary?: boolean | undefined;
|
|
14
|
+
secondary?: boolean | undefined;
|
|
15
|
+
tertiary?: boolean | undefined;
|
|
16
|
+
success?: boolean | undefined;
|
|
17
|
+
danger?: boolean | undefined;
|
|
18
|
+
warning?: boolean | undefined;
|
|
19
|
+
info?: boolean | undefined;
|
|
20
|
+
link?: boolean | undefined;
|
|
21
|
+
noBorder?: boolean | undefined;
|
|
22
|
+
inline?: boolean | undefined;
|
|
23
|
+
block?: boolean | undefined;
|
|
24
|
+
inlineBlock?: boolean | undefined;
|
|
25
|
+
flex?: boolean | undefined;
|
|
26
|
+
inlineFlex?: boolean | undefined;
|
|
27
|
+
grid?: boolean | undefined;
|
|
28
|
+
inlineGrid?: boolean | undefined;
|
|
29
|
+
contents?: boolean | undefined;
|
|
30
|
+
table?: boolean | undefined;
|
|
31
|
+
tableCell?: boolean | undefined;
|
|
32
|
+
hidden?: boolean | undefined;
|
|
33
|
+
row?: boolean | undefined;
|
|
34
|
+
column?: boolean | undefined;
|
|
35
|
+
rowReverse?: boolean | undefined;
|
|
36
|
+
columnReverse?: boolean | undefined;
|
|
37
|
+
noGap?: boolean | undefined;
|
|
38
|
+
xsHide?: boolean | undefined;
|
|
39
|
+
smHide?: boolean | undefined;
|
|
40
|
+
mdHide?: boolean | undefined;
|
|
41
|
+
lgHide?: boolean | undefined;
|
|
42
|
+
xlHide?: boolean | undefined;
|
|
43
|
+
itemsStart?: boolean | undefined;
|
|
44
|
+
itemsEnd?: boolean | undefined;
|
|
45
|
+
itemsCenter?: boolean | undefined;
|
|
46
|
+
itemsBaseline?: boolean | undefined;
|
|
47
|
+
itemsStretch?: boolean | undefined;
|
|
48
|
+
justifyStart?: boolean | undefined;
|
|
49
|
+
justifyEnd?: boolean | undefined;
|
|
50
|
+
justifyCenter?: boolean | undefined;
|
|
51
|
+
justifyBetween?: boolean | undefined;
|
|
52
|
+
justifyAround?: boolean | undefined;
|
|
53
|
+
justifyEvenly?: boolean | undefined;
|
|
54
|
+
justifyStretch?: boolean | undefined;
|
|
55
|
+
justifyBaseline?: boolean | undefined;
|
|
56
|
+
overflowAuto?: boolean | undefined;
|
|
57
|
+
overflowHidden?: boolean | undefined;
|
|
58
|
+
overflowClip?: boolean | undefined;
|
|
59
|
+
overflowVisible?: boolean | undefined;
|
|
60
|
+
overflowScroll?: boolean | undefined;
|
|
61
|
+
overflowXAuto?: boolean | undefined;
|
|
62
|
+
overflowYAuto?: boolean | undefined;
|
|
63
|
+
overflowXHidden?: boolean | undefined;
|
|
64
|
+
overflowYHidden?: boolean | undefined;
|
|
65
|
+
overflowXClip?: boolean | undefined;
|
|
66
|
+
overflowYClip?: boolean | undefined;
|
|
67
|
+
overflowXVisible?: boolean | undefined;
|
|
68
|
+
overflowYVisible?: boolean | undefined;
|
|
69
|
+
overflowXScroll?: boolean | undefined;
|
|
70
|
+
overflowYScroll?: boolean | undefined;
|
|
71
|
+
relative?: boolean | undefined;
|
|
72
|
+
absolute?: boolean | undefined;
|
|
73
|
+
fixed?: boolean | undefined;
|
|
74
|
+
sticky?: boolean | undefined;
|
|
75
|
+
static?: boolean | undefined;
|
|
76
|
+
noRing?: boolean | undefined;
|
|
77
|
+
noShadow?: boolean | undefined;
|
|
78
|
+
pill?: boolean | undefined;
|
|
79
|
+
sharp?: boolean | undefined;
|
|
80
|
+
rounded?: boolean | undefined;
|
|
81
|
+
xs?: boolean | undefined;
|
|
82
|
+
sm?: boolean | undefined;
|
|
83
|
+
md?: boolean | undefined;
|
|
84
|
+
lg?: boolean | undefined;
|
|
85
|
+
xl?: boolean | undefined;
|
|
86
|
+
filled?: boolean | undefined;
|
|
87
|
+
outline?: boolean | undefined;
|
|
88
|
+
flexWrap?: boolean | undefined;
|
|
89
|
+
flexNoWrap?: boolean | undefined;
|
|
90
|
+
flexWrapReverse?: boolean | undefined;
|
|
91
|
+
} & {
|
|
92
|
+
tag?: React.ElementType;
|
|
93
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|