@dito-uai/components 5.1.0-alpha.7 → 5.1.0-alpha.71
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/LICENSE +21 -0
- package/README.md +42 -1
- package/dist/global.css +1 -1
- package/dist/index.cjs +81 -40
- package/dist/index.d.cts +1537 -843
- package/dist/index.d.ts +64 -2240
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +24 -15
- package/dist/ui/alert.d.ts +23 -33
- package/dist/ui/alert.d.ts.map +1 -1
- package/dist/ui/avatar.d.ts +4 -124
- package/dist/ui/avatar.d.ts.map +1 -1
- package/dist/ui/badge.d.ts +4 -148
- package/dist/ui/badge.d.ts.map +1 -1
- package/dist/ui/button.d.ts +166 -316
- package/dist/ui/button.d.ts.map +1 -1
- package/dist/ui/card.d.ts +2 -66
- package/dist/ui/card.d.ts.map +1 -1
- package/dist/ui/checkbox.d.ts +2 -0
- package/dist/ui/checkbox.d.ts.map +1 -1
- package/dist/ui/chips.d.ts +24 -280
- package/dist/ui/chips.d.ts.map +1 -1
- package/dist/ui/collapsible.d.ts +5 -0
- package/dist/ui/collapsible.d.ts.map +1 -1
- package/dist/ui/dropdown-menu.d.ts +131 -0
- package/dist/ui/dropdown-menu.d.ts.map +1 -0
- package/dist/ui/go-to-card.d.ts +203 -0
- package/dist/ui/go-to-card.d.ts.map +1 -0
- package/dist/ui/indicator.d.ts +15 -15
- package/dist/ui/indicator.d.ts.map +1 -1
- package/dist/ui/input-description.d.ts +2 -26
- package/dist/ui/input-description.d.ts.map +1 -1
- package/dist/ui/input.d.ts +129 -255
- package/dist/ui/input.d.ts.map +1 -1
- package/dist/ui/internal/dropdown-content.d.ts.map +1 -1
- package/dist/ui/label.d.ts +2 -18
- package/dist/ui/label.d.ts.map +1 -1
- package/dist/ui/loading.d.ts +9 -0
- package/dist/ui/loading.d.ts.map +1 -0
- package/dist/ui/message.d.ts +57 -0
- package/dist/ui/message.d.ts.map +1 -0
- package/dist/ui/popover.d.ts +7 -0
- package/dist/ui/popover.d.ts.map +1 -0
- package/dist/ui/progress-bar.d.ts +1 -1
- package/dist/ui/progress-bar.d.ts.map +1 -1
- package/dist/ui/progress.d.ts +9 -27
- package/dist/ui/progress.d.ts.map +1 -1
- package/dist/ui/radio.d.ts +98 -4
- package/dist/ui/radio.d.ts.map +1 -1
- package/dist/ui/scope.d.ts +4 -108
- package/dist/ui/scope.d.ts.map +1 -1
- package/dist/ui/search.d.ts +60 -124
- package/dist/ui/search.d.ts.map +1 -1
- package/dist/ui/select-card.d.ts +104 -0
- package/dist/ui/select-card.d.ts.map +1 -0
- package/dist/ui/sheets.d.ts +129 -9
- package/dist/ui/sheets.d.ts.map +1 -1
- package/dist/ui/skeleton.d.ts +42 -0
- package/dist/ui/skeleton.d.ts.map +1 -0
- package/dist/ui/status.d.ts +7 -38
- package/dist/ui/status.d.ts.map +1 -1
- package/dist/ui/switch.d.ts +15 -0
- package/dist/ui/switch.d.ts.map +1 -0
- package/dist/ui/tabs.d.ts +5 -6
- package/dist/ui/tabs.d.ts.map +1 -1
- package/dist/ui/text.d.ts +3 -63
- package/dist/ui/text.d.ts.map +1 -1
- package/dist/ui/textarea.d.ts.map +1 -1
- package/dist/ui/tip-card.d.ts +77 -0
- package/dist/ui/tip-card.d.ts.map +1 -0
- package/dist/ui/toggle-group.d.ts +11 -0
- package/dist/ui/toggle-group.d.ts.map +1 -0
- package/dist/ui/toggle.d.ts +48 -12
- package/dist/ui/toggle.d.ts.map +1 -1
- package/dist/ui/tooltip.d.ts +10 -0
- package/dist/ui/tooltip.d.ts.map +1 -0
- package/llms.md +646 -0
- package/package.json +104 -40
- package/tailwind-preset.ts +281 -0
- package/tailwind.config.ts +12 -262
- package/dist/ui/form-item.d.ts +0 -16
- package/dist/ui/form-item.d.ts.map +0 -1
- package/dist/ui/form.d.ts +0 -1
- package/dist/ui/form.d.ts.map +0 -1
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { VariantProps } from 'tailwind-variants';
|
|
3
|
+
declare const goToCard: import("tailwind-variants").TVReturnType<{
|
|
4
|
+
state: {
|
|
5
|
+
default: {};
|
|
6
|
+
incomplete: {
|
|
7
|
+
root: string;
|
|
8
|
+
title: string;
|
|
9
|
+
description: string;
|
|
10
|
+
iconFill: string;
|
|
11
|
+
chevron: string;
|
|
12
|
+
};
|
|
13
|
+
complete: {
|
|
14
|
+
root: string;
|
|
15
|
+
title: string;
|
|
16
|
+
description: string;
|
|
17
|
+
iconFill: string;
|
|
18
|
+
chevron: string;
|
|
19
|
+
};
|
|
20
|
+
error: {
|
|
21
|
+
root: string;
|
|
22
|
+
title: string;
|
|
23
|
+
description: string;
|
|
24
|
+
iconFill: string;
|
|
25
|
+
chevron: string;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
disabled: {
|
|
29
|
+
true: {
|
|
30
|
+
root: string;
|
|
31
|
+
title: string;
|
|
32
|
+
description: string;
|
|
33
|
+
iconFill: string;
|
|
34
|
+
chevron: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
size: {
|
|
38
|
+
md: {
|
|
39
|
+
root: string;
|
|
40
|
+
prefix: string;
|
|
41
|
+
};
|
|
42
|
+
sm: {
|
|
43
|
+
root: string;
|
|
44
|
+
prefix: string;
|
|
45
|
+
description: string;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
}, {
|
|
49
|
+
root: string;
|
|
50
|
+
prefix: string;
|
|
51
|
+
iconFill: string;
|
|
52
|
+
iconWrapper: string;
|
|
53
|
+
content: string;
|
|
54
|
+
title: string;
|
|
55
|
+
description: string;
|
|
56
|
+
suffix: string;
|
|
57
|
+
stateIconWrapper: string;
|
|
58
|
+
chevron: string;
|
|
59
|
+
}, undefined, {
|
|
60
|
+
state: {
|
|
61
|
+
default: {};
|
|
62
|
+
incomplete: {
|
|
63
|
+
root: string;
|
|
64
|
+
title: string;
|
|
65
|
+
description: string;
|
|
66
|
+
iconFill: string;
|
|
67
|
+
chevron: string;
|
|
68
|
+
};
|
|
69
|
+
complete: {
|
|
70
|
+
root: string;
|
|
71
|
+
title: string;
|
|
72
|
+
description: string;
|
|
73
|
+
iconFill: string;
|
|
74
|
+
chevron: string;
|
|
75
|
+
};
|
|
76
|
+
error: {
|
|
77
|
+
root: string;
|
|
78
|
+
title: string;
|
|
79
|
+
description: string;
|
|
80
|
+
iconFill: string;
|
|
81
|
+
chevron: string;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
disabled: {
|
|
85
|
+
true: {
|
|
86
|
+
root: string;
|
|
87
|
+
title: string;
|
|
88
|
+
description: string;
|
|
89
|
+
iconFill: string;
|
|
90
|
+
chevron: string;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
size: {
|
|
94
|
+
md: {
|
|
95
|
+
root: string;
|
|
96
|
+
prefix: string;
|
|
97
|
+
};
|
|
98
|
+
sm: {
|
|
99
|
+
root: string;
|
|
100
|
+
prefix: string;
|
|
101
|
+
description: string;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
}, {
|
|
105
|
+
root: string;
|
|
106
|
+
prefix: string;
|
|
107
|
+
iconFill: string;
|
|
108
|
+
iconWrapper: string;
|
|
109
|
+
content: string;
|
|
110
|
+
title: string;
|
|
111
|
+
description: string;
|
|
112
|
+
suffix: string;
|
|
113
|
+
stateIconWrapper: string;
|
|
114
|
+
chevron: string;
|
|
115
|
+
}, import("tailwind-variants").TVReturnType<{
|
|
116
|
+
state: {
|
|
117
|
+
default: {};
|
|
118
|
+
incomplete: {
|
|
119
|
+
root: string;
|
|
120
|
+
title: string;
|
|
121
|
+
description: string;
|
|
122
|
+
iconFill: string;
|
|
123
|
+
chevron: string;
|
|
124
|
+
};
|
|
125
|
+
complete: {
|
|
126
|
+
root: string;
|
|
127
|
+
title: string;
|
|
128
|
+
description: string;
|
|
129
|
+
iconFill: string;
|
|
130
|
+
chevron: string;
|
|
131
|
+
};
|
|
132
|
+
error: {
|
|
133
|
+
root: string;
|
|
134
|
+
title: string;
|
|
135
|
+
description: string;
|
|
136
|
+
iconFill: string;
|
|
137
|
+
chevron: string;
|
|
138
|
+
};
|
|
139
|
+
};
|
|
140
|
+
disabled: {
|
|
141
|
+
true: {
|
|
142
|
+
root: string;
|
|
143
|
+
title: string;
|
|
144
|
+
description: string;
|
|
145
|
+
iconFill: string;
|
|
146
|
+
chevron: string;
|
|
147
|
+
};
|
|
148
|
+
};
|
|
149
|
+
size: {
|
|
150
|
+
md: {
|
|
151
|
+
root: string;
|
|
152
|
+
prefix: string;
|
|
153
|
+
};
|
|
154
|
+
sm: {
|
|
155
|
+
root: string;
|
|
156
|
+
prefix: string;
|
|
157
|
+
description: string;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
}, {
|
|
161
|
+
root: string;
|
|
162
|
+
prefix: string;
|
|
163
|
+
iconFill: string;
|
|
164
|
+
iconWrapper: string;
|
|
165
|
+
content: string;
|
|
166
|
+
title: string;
|
|
167
|
+
description: string;
|
|
168
|
+
suffix: string;
|
|
169
|
+
stateIconWrapper: string;
|
|
170
|
+
chevron: string;
|
|
171
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
172
|
+
type GoToCardVariants = VariantProps<typeof goToCard>;
|
|
173
|
+
type GoToCardBaseProps = {
|
|
174
|
+
title: React.ReactNode;
|
|
175
|
+
description?: React.ReactNode;
|
|
176
|
+
icon?: React.ReactNode;
|
|
177
|
+
iconClassName?: string;
|
|
178
|
+
className?: string;
|
|
179
|
+
} & GoToCardVariants;
|
|
180
|
+
type GoToCardAsButton = GoToCardBaseProps & Omit<React.ComponentPropsWithoutRef<'button'>, keyof GoToCardBaseProps> & {
|
|
181
|
+
as?: 'button';
|
|
182
|
+
};
|
|
183
|
+
type GoToCardAsAnchor = GoToCardBaseProps & Omit<React.ComponentPropsWithoutRef<'a'>, keyof GoToCardBaseProps> & {
|
|
184
|
+
as: 'a';
|
|
185
|
+
};
|
|
186
|
+
type GoToCardAsLink = GoToCardBaseProps & Record<string, unknown> & {
|
|
187
|
+
as: React.ComponentType<Record<string, unknown>>;
|
|
188
|
+
to?: string | {
|
|
189
|
+
pathname?: string;
|
|
190
|
+
search?: string;
|
|
191
|
+
hash?: string;
|
|
192
|
+
};
|
|
193
|
+
reloadDocument?: boolean;
|
|
194
|
+
replace?: boolean;
|
|
195
|
+
state?: unknown;
|
|
196
|
+
preventScrollReset?: boolean;
|
|
197
|
+
relative?: 'route' | 'path';
|
|
198
|
+
viewTransition?: boolean;
|
|
199
|
+
};
|
|
200
|
+
export type GoToCardProps = GoToCardAsButton | GoToCardAsAnchor | GoToCardAsLink;
|
|
201
|
+
declare const GoToCard: React.ForwardRefExoticComponent<(GoToCardAsButton | GoToCardAsAnchor | Omit<GoToCardAsLink, "ref">) & React.RefAttributes<HTMLAnchorElement | HTMLButtonElement>>;
|
|
202
|
+
export default GoToCard;
|
|
203
|
+
//# sourceMappingURL=go-to-card.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"go-to-card.d.ts","sourceRoot":"","sources":["../../src/ui/go-to-card.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAO1B,OAAO,EAAM,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAIrD,QAAA,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2CAmHZ,CAAC;AAEH,KAAK,gBAAgB,GAAG,YAAY,CAAC,OAAO,QAAQ,CAAC,CAAC;AAEtD,KAAK,iBAAiB,GAAG;IAEvB,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC;IAEvB,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAE9B,IAAI,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAEvB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,gBAAgB,CAAC;AAErB,KAAK,gBAAgB,GAAG,iBAAiB,GACvC,IAAI,CAAC,KAAK,CAAC,wBAAwB,CAAC,QAAQ,CAAC,EAAE,MAAM,iBAAiB,CAAC,GAAG;IACxE,EAAE,CAAC,EAAE,QAAQ,CAAC;CACf,CAAC;AAEJ,KAAK,gBAAgB,GAAG,iBAAiB,GACvC,IAAI,CAAC,KAAK,CAAC,wBAAwB,CAAC,GAAG,CAAC,EAAE,MAAM,iBAAiB,CAAC,GAAG;IACnE,EAAE,EAAE,GAAG,CAAC;CACT,CAAC;AAEJ,KAAK,cAAc,GAAG,iBAAiB,GACrC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG;IACxB,EAAE,EAAE,KAAK,CAAC,aAAa,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;IACjD,EAAE,CAAC,EAAE,MAAM,GAAG;QAAE,QAAQ,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACpE,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,QAAQ,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IAC5B,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B,CAAC;AAKJ,MAAM,MAAM,aAAa,GACrB,gBAAgB,GAChB,gBAAgB,GAChB,cAAc,CAAC;AAgBnB,QAAA,MAAM,QAAQ,mKA4Eb,CAAC;AAIF,eAAe,QAAQ,CAAC"}
|
package/dist/ui/indicator.d.ts
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { VariantProps } from 'tailwind-variants';
|
|
3
|
-
declare const
|
|
3
|
+
declare const indicatorVariants: import("tailwind-variants").TVReturnType<{
|
|
4
4
|
status: {
|
|
5
5
|
positive: string;
|
|
6
6
|
negative: string;
|
|
7
7
|
neutral: string;
|
|
8
8
|
info: string;
|
|
9
9
|
};
|
|
10
|
-
}, undefined, "text-medium flex h-3 items-center justify-center rounded-sm border border-neutral-200 px-1 py-0.5 [&_svg]:-ml-0.5 [&_svg]:w-2",
|
|
10
|
+
}, undefined, "text-medium flex h-3 items-center justify-center rounded-sm border border-neutral-200 px-1 py-0.5 [&_svg]:-ml-0.5 [&_svg]:w-2", {
|
|
11
11
|
status: {
|
|
12
12
|
positive: string;
|
|
13
13
|
negative: string;
|
|
14
14
|
neutral: string;
|
|
15
15
|
info: string;
|
|
16
16
|
};
|
|
17
|
-
}, {
|
|
18
|
-
status: {
|
|
19
|
-
positive: string;
|
|
20
|
-
negative: string;
|
|
21
|
-
neutral: string;
|
|
22
|
-
info: string;
|
|
23
|
-
};
|
|
24
|
-
}>, {
|
|
17
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
25
18
|
status: {
|
|
26
19
|
positive: string;
|
|
27
20
|
negative: string;
|
|
28
21
|
neutral: string;
|
|
29
22
|
info: string;
|
|
30
23
|
};
|
|
31
|
-
}, undefined,
|
|
24
|
+
}, undefined, "text-medium flex h-3 items-center justify-center rounded-sm border border-neutral-200 px-1 py-0.5 [&_svg]:-ml-0.5 [&_svg]:w-2", unknown, unknown, undefined>>;
|
|
25
|
+
export type IndicatorProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof indicatorVariants> & {
|
|
26
|
+
value: string | number;
|
|
27
|
+
icon?: 'positive' | 'neutral' | 'negative';
|
|
28
|
+
usePercentageSymbol?: boolean;
|
|
29
|
+
};
|
|
30
|
+
declare const Indicator: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & VariantProps<import("tailwind-variants").TVReturnType<{
|
|
32
31
|
status: {
|
|
33
32
|
positive: string;
|
|
34
33
|
negative: string;
|
|
35
34
|
neutral: string;
|
|
36
35
|
info: string;
|
|
37
36
|
};
|
|
38
|
-
}, undefined, "text-medium flex h-3 items-center justify-center rounded-sm border border-neutral-200 px-1 py-0.5 [&_svg]:-ml-0.5 [&_svg]:w-2",
|
|
37
|
+
}, undefined, "text-medium flex h-3 items-center justify-center rounded-sm border border-neutral-200 px-1 py-0.5 [&_svg]:-ml-0.5 [&_svg]:w-2", {
|
|
39
38
|
status: {
|
|
40
39
|
positive: string;
|
|
41
40
|
negative: string;
|
|
42
41
|
neutral: string;
|
|
43
42
|
info: string;
|
|
44
43
|
};
|
|
45
|
-
}, {
|
|
44
|
+
}, undefined, import("tailwind-variants").TVReturnType<{
|
|
46
45
|
status: {
|
|
47
46
|
positive: string;
|
|
48
47
|
negative: string;
|
|
49
48
|
neutral: string;
|
|
50
49
|
info: string;
|
|
51
50
|
};
|
|
52
|
-
}
|
|
53
|
-
value: string;
|
|
51
|
+
}, undefined, "text-medium flex h-3 items-center justify-center rounded-sm border border-neutral-200 px-1 py-0.5 [&_svg]:-ml-0.5 [&_svg]:w-2", unknown, unknown, undefined>>> & {
|
|
52
|
+
value: string | number;
|
|
54
53
|
icon?: "positive" | "neutral" | "negative";
|
|
54
|
+
usePercentageSymbol?: boolean;
|
|
55
55
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
56
56
|
export default Indicator;
|
|
57
57
|
//# sourceMappingURL=indicator.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"indicator.d.ts","sourceRoot":"","sources":["../../src/ui/indicator.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,OAAO,EAAM,YAAY,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"indicator.d.ts","sourceRoot":"","sources":["../../src/ui/indicator.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,OAAO,EAAM,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAIrD,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;4KAarB,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC,GAC/D,YAAY,CAAC,OAAO,iBAAiB,CAAC,GAAG;IAEvC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IAEvB,IAAI,CAAC,EAAE,UAAU,GAAG,SAAS,GAAG,UAAU,CAAC;IAE3C,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC/B,CAAC;AASJ,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;WAdJ,MAAM,GAAG,MAAM;WAEf,UAAU,GAAG,SAAS,GAAG,UAAU;0BAEpB,OAAO;wCAmChC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -9,19 +9,7 @@ declare const inputDescriptionVariants: import("tailwind-variants").TVReturnType
|
|
|
9
9
|
}, {
|
|
10
10
|
text: string;
|
|
11
11
|
counter: string;
|
|
12
|
-
}, undefined,
|
|
13
|
-
invalid: {
|
|
14
|
-
true: {
|
|
15
|
-
text: string;
|
|
16
|
-
};
|
|
17
|
-
};
|
|
18
|
-
}, {
|
|
19
|
-
invalid: {
|
|
20
|
-
true: {
|
|
21
|
-
text: string;
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
}>, {
|
|
12
|
+
}, undefined, {
|
|
25
13
|
invalid: {
|
|
26
14
|
true: {
|
|
27
15
|
text: string;
|
|
@@ -39,19 +27,7 @@ declare const inputDescriptionVariants: import("tailwind-variants").TVReturnType
|
|
|
39
27
|
}, {
|
|
40
28
|
text: string;
|
|
41
29
|
counter: string;
|
|
42
|
-
}, undefined,
|
|
43
|
-
invalid: {
|
|
44
|
-
true: {
|
|
45
|
-
text: string;
|
|
46
|
-
};
|
|
47
|
-
};
|
|
48
|
-
}, {
|
|
49
|
-
invalid: {
|
|
50
|
-
true: {
|
|
51
|
-
text: string;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
|
-
}>, unknown, unknown, undefined>>;
|
|
30
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
55
31
|
export type InputDescriptionProps = React.InputHTMLAttributes<HTMLInputElement> & VariantProps<typeof inputDescriptionVariants> & {
|
|
56
32
|
text?: string;
|
|
57
33
|
counter?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input-description.d.ts","sourceRoot":"","sources":["../../src/ui/input-description.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,EAAE,YAAY,EAAM,MAAM,mBAAmB,CAAC;AAErD,QAAA,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"input-description.d.ts","sourceRoot":"","sources":["../../src/ui/input-description.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,EAAE,YAAY,EAAM,MAAM,mBAAmB,CAAC;AAErD,QAAA,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;2CAa5B,CAAC;AAEH,MAAM,MAAM,qBAAqB,GAC/B,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,GACzC,YAAY,CAAC,OAAO,wBAAwB,CAAC,GAAG;IAE9C,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB,OAAO,CAAC,EAAE,OAAO,CAAC;IAElB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAQN,QAAA,MAAM,gBAAgB;8EAQnB,qBAAqB;;CAevB,CAAC;AAIF,eAAe,gBAAgB,CAAC"}
|