rupoui 1.3.2 → 1.3.3
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 +13 -13
- package/dist/components/button/Button.d.ts +6 -3
- package/dist/components/button/button.styles.d.ts +176 -162
- package/dist/components/button/button.types.d.ts +14 -14
- package/dist/components/button/index.d.ts +2 -2
- package/dist/components/calendar/Calendar.d.ts +3 -2
- package/dist/components/calendar/calendar.grid.d.ts +5 -2
- package/dist/components/calendar/calendar.navigation.d.ts +1 -1
- package/dist/components/calendar/calendar.selection.d.ts +6 -2
- package/dist/components/calendar/calendar.state.d.ts +1 -1
- package/dist/components/calendar/calendar.styles.d.ts +106 -83
- package/dist/components/calendar/calendar.types.d.ts +39 -39
- package/dist/components/calendar/index.d.ts +3 -3
- package/dist/components/checkbox/Checkbox.d.ts +4 -2
- package/dist/components/checkbox/CheckboxGroup.d.ts +4 -2
- package/dist/components/checkbox/checkbox-group-context.d.ts +12 -12
- package/dist/components/checkbox/checkbox.styles.d.ts +313 -285
- package/dist/components/checkbox/checkbox.types.d.ts +161 -154
- package/dist/components/checkbox/index.d.ts +3 -3
- package/dist/components/checkbox/useCheckbox.d.ts +389 -311
- package/dist/components/checkbox/useCheckboxGroup.d.ts +353 -280
- package/dist/components/chip/Chip.d.ts +4 -2
- package/dist/components/chip/ChipGroup.d.ts +4 -2
- package/dist/components/chip/chip-group-context.d.ts +9 -6
- package/dist/components/chip/chip.styles.d.ts +206 -192
- package/dist/components/chip/chip.types.d.ts +155 -149
- package/dist/components/chip/index.d.ts +5 -5
- package/dist/components/chip/useChip.d.ts +22 -20
- package/dist/components/chip/useChipGroup.d.ts +350 -277
- package/dist/components/datepicker/DatePart.d.ts +16 -14
- package/dist/components/datepicker/DatePicker.d.ts +17 -16
- package/dist/components/datepicker/DatePickerCalendar.d.ts +8 -7
- package/dist/components/datepicker/DatePickerDay.d.ts +11 -9
- package/dist/components/datepicker/DatePickerInput.d.ts +16 -15
- package/dist/components/datepicker/DatePickerPopover.d.ts +7 -6
- package/dist/components/datepicker/SegmentedDatePickerInput.d.ts +9 -8
- package/dist/components/datepicker/datepicker.controller.d.ts +6 -2
- package/dist/components/datepicker/datepicker.input.logic.d.ts +16 -6
- package/dist/components/datepicker/datepicker.input.state.d.ts +1 -1
- package/dist/components/datepicker/datepicker.input.types.d.ts +20 -20
- package/dist/components/datepicker/datepicker.keyboard.d.ts +6 -2
- package/dist/components/datepicker/datepicker.state.d.ts +1 -1
- package/dist/components/datepicker/datepicker.styles.d.ts +118 -95
- package/dist/components/datepicker/datepicker.types.d.ts +52 -52
- package/dist/components/datepicker/index.d.ts +5 -5
- package/dist/components/dropdown/Dropdown.d.ts +3 -2
- package/dist/components/dropdown/DropdownContent.d.ts +3 -2
- package/dist/components/dropdown/DropdownItem.d.ts +3 -2
- package/dist/components/dropdown/DropdownSection.d.ts +3 -2
- package/dist/components/dropdown/DropdownSeparator.d.ts +3 -2
- package/dist/components/dropdown/DropdownTrigger.d.ts +3 -2
- package/dist/components/dropdown/context.d.ts +22 -21
- package/dist/components/dropdown/dropdown.styles.d.ts +180 -166
- package/dist/components/dropdown/dropdown.types.d.ts +97 -85
- package/dist/components/dropdown/index.d.ts +9 -9
- package/dist/components/dropdown/useDropdown.d.ts +15 -15
- package/dist/components/input/Input.d.ts +9 -4
- package/dist/components/input/index.d.ts +2 -2
- package/dist/components/input/input.styles.d.ts +239 -225
- package/dist/components/input/input.types.d.ts +60 -58
- package/dist/components/input-number/InputNumber.d.ts +24 -5
- package/dist/components/input-number/index.d.ts +2 -2
- package/dist/components/input-number/input-number.styles.d.ts +331 -317
- package/dist/components/input-number/input-number.types.d.ts +132 -116
- package/dist/components/input-number/utils.d.ts +11 -3
- package/dist/components/modal/Modal.d.ts +4 -3
- package/dist/components/modal/ModalContent.d.ts +7 -3
- package/dist/components/modal/ModalLayout.d.ts +16 -4
- package/dist/components/modal/ModalTrigger.d.ts +5 -3
- package/dist/components/modal/context.d.ts +8 -8
- package/dist/components/modal/index.d.ts +6 -6
- package/dist/components/modal/modal.styles.d.ts +233 -219
- package/dist/components/modal/modal.types.d.ts +35 -34
- package/dist/components/modal/useModal.d.ts +7 -7
- package/dist/components/pagination/Pagination.d.ts +6 -3
- package/dist/components/pagination/PaginationContent.d.ts +6 -3
- package/dist/components/pagination/PaginationContext.d.ts +54 -54
- package/dist/components/pagination/PaginationEllipsis.d.ts +6 -3
- package/dist/components/pagination/PaginationItem.d.ts +6 -3
- package/dist/components/pagination/PaginationItems.d.ts +2 -2
- package/dist/components/pagination/PaginationNext.d.ts +6 -3
- package/dist/components/pagination/PaginationPrevious.d.ts +6 -3
- package/dist/components/pagination/index.d.ts +18 -9
- package/dist/components/pagination/pagination.styles.d.ts +147 -133
- package/dist/components/pagination/pagination.types.d.ts +125 -121
- package/dist/components/pagination/usePagination.d.ts +25 -20
- package/dist/components/popover/Popover.d.ts +3 -2
- package/dist/components/popover/PopoverContent.d.ts +3 -2
- package/dist/components/popover/PopoverContext.d.ts +103 -83
- package/dist/components/popover/PopoverTrigger.d.ts +3 -2
- package/dist/components/popover/index.d.ts +6 -6
- package/dist/components/popover/popover.styles.d.ts +122 -108
- package/dist/components/popover/popover.types.d.ts +96 -95
- package/dist/components/popover/usePopover.d.ts +52 -42
- package/dist/components/radio/Radio.d.ts +4 -2
- package/dist/components/radio/RadioGroup.d.ts +4 -2
- package/dist/components/radio/index.d.ts +3 -3
- package/dist/components/radio/radio-group-context.d.ts +12 -12
- package/dist/components/radio/radio.styles.d.ts +306 -278
- package/dist/components/radio/radio.types.d.ts +145 -138
- package/dist/components/radio/useRadio.d.ts +391 -311
- package/dist/components/radio/useRadioGroup.d.ts +354 -281
- package/dist/components/ripple/Ripple.d.ts +9 -9
- package/dist/components/select/Select.d.ts +6 -3
- package/dist/components/select/SelectItem.d.ts +15 -4
- package/dist/components/select/index.d.ts +5 -5
- package/dist/components/select/select.styles.d.ts +224 -210
- package/dist/components/select/select.types.d.ts +51 -50
- package/dist/components/select/useSelect.d.ts +16 -16
- package/dist/components/spinner/Spinner.d.ts +9 -3
- package/dist/components/spinner/index.d.ts +2 -2
- package/dist/components/spinner/spinner.styles.d.ts +91 -77
- package/dist/components/spinner/spinner.types.d.ts +4 -4
- package/dist/components/switch/Switch.d.ts +4 -2
- package/dist/components/switch/index.d.ts +2 -2
- package/dist/components/switch/switch.styles.d.ts +147 -133
- package/dist/components/switch/switch.types.d.ts +84 -80
- package/dist/components/switch/useSwitch.d.ts +389 -311
- package/dist/components/tabs/Tab.d.ts +1 -1
- package/dist/components/tabs/Tabs.d.ts +1 -1
- package/dist/components/tabs/index.d.ts +4 -4
- package/dist/components/tabs/tabs.styles.d.ts +341 -327
- package/dist/components/tabs/tabs.types.d.ts +67 -66
- package/dist/components/tabs/useTabs.d.ts +4 -4
- package/dist/components/textarea/Textarea.d.ts +9 -4
- package/dist/components/textarea/index.d.ts +2 -2
- package/dist/components/textarea/textarea.styles.d.ts +276 -262
- package/dist/components/textarea/textarea.types.d.ts +57 -55
- package/dist/components/toast/Toast.d.ts +8 -4
- package/dist/components/toast/ToastProvider.d.ts +8 -4
- package/dist/components/toast/ToastViewport.d.ts +14 -4
- package/dist/components/toast/Toaster.d.ts +4 -2
- package/dist/components/toast/index.d.ts +7 -7
- package/dist/components/toast/toast-store.d.ts +10 -10
- package/dist/components/toast/toast-subcomponents.d.ts +10 -4
- package/dist/components/toast/toast.types.d.ts +18 -18
- package/dist/components/toast/use-toast-internal.d.ts +1 -1
- package/dist/components/toast/utils.d.ts +1 -1
- package/dist/components/tooltip/Tooltip.d.ts +1 -1
- package/dist/components/tooltip/index.d.ts +3 -3
- package/dist/components/tooltip/tooltip.styles.d.ts +187 -173
- package/dist/components/tooltip/tooltip.types.d.ts +85 -72
- package/dist/components/tooltip/useTooltip.d.ts +25 -25
- package/dist/components/tooltip/utils.d.ts +24 -13
- package/dist/hooks/index.d.ts +3 -3
- package/dist/hooks/useDisclosure.d.ts +10 -10
- package/dist/hooks/useFocusTrap.d.ts +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +24 -25
- package/dist/index.js +1697 -1632
- package/dist/motion/focus.d.ts +6 -6
- package/dist/motion/hover.d.ts +8 -8
- package/dist/motion/index.d.ts +5 -5
- package/dist/motion/press.d.ts +7 -7
- package/dist/motion/reveal.d.ts +16 -16
- package/dist/motion/tokens.d.ts +9 -9
- package/dist/provider/RupoUIContext.d.ts +2 -2
- package/dist/provider/RupoUIProvider.d.ts +9 -5
- package/dist/provider/types.d.ts +46 -25
- package/dist/provider/useRupoUI.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/styles/tokens/colors.d.ts +24 -24
- package/dist/styles/tokens/index.d.ts +5 -5
- package/dist/styles/tokens/motion.d.ts +9 -9
- package/dist/styles/tokens/radius.d.ts +6 -6
- package/dist/styles/tokens/spacing.d.ts +11 -11
- package/dist/styles/tokens/typography.d.ts +64 -32
- package/dist/tailwind/index.d.ts +7 -7
- package/dist/tailwind/plugin-utils.d.ts +1 -1
- package/dist/tailwind/theme.d.ts +1 -1
- package/package.json +11 -2
- package/dist/components/toast/ToastDemo.d.ts +0 -1
|
@@ -1,361 +1,375 @@
|
|
|
1
|
-
export declare const textarea: import(
|
|
1
|
+
export declare const textarea: import("tailwind-variants").TVReturnType<
|
|
2
|
+
{
|
|
2
3
|
variant: {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
4
|
+
solid: {
|
|
5
|
+
inputWrapper: string;
|
|
6
|
+
};
|
|
7
|
+
flat: {
|
|
8
|
+
inputWrapper: string;
|
|
9
|
+
};
|
|
10
|
+
bordered: {
|
|
11
|
+
inputWrapper: string;
|
|
12
|
+
};
|
|
13
|
+
ghost: {
|
|
14
|
+
inputWrapper: string;
|
|
15
|
+
};
|
|
15
16
|
};
|
|
16
17
|
color: {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
18
|
+
primary: {
|
|
19
|
+
inputWrapper: string;
|
|
20
|
+
label: string;
|
|
21
|
+
};
|
|
22
|
+
secondary: {
|
|
23
|
+
inputWrapper: string;
|
|
24
|
+
label: string;
|
|
25
|
+
};
|
|
26
|
+
success: {
|
|
27
|
+
inputWrapper: string;
|
|
28
|
+
label: string;
|
|
29
|
+
};
|
|
30
|
+
warning: {
|
|
31
|
+
inputWrapper: string;
|
|
32
|
+
label: string;
|
|
33
|
+
};
|
|
34
|
+
danger: {
|
|
35
|
+
inputWrapper: string;
|
|
36
|
+
label: string;
|
|
37
|
+
};
|
|
37
38
|
};
|
|
38
39
|
size: {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
40
|
+
sm: {
|
|
41
|
+
inputWrapper: string;
|
|
42
|
+
input: string;
|
|
43
|
+
label: string;
|
|
44
|
+
};
|
|
45
|
+
md: {
|
|
46
|
+
inputWrapper: string;
|
|
47
|
+
input: string;
|
|
48
|
+
label: string;
|
|
49
|
+
};
|
|
50
|
+
lg: {
|
|
51
|
+
inputWrapper: string;
|
|
52
|
+
input: string;
|
|
53
|
+
label: string;
|
|
54
|
+
};
|
|
54
55
|
};
|
|
55
56
|
radius: {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
57
|
+
none: {
|
|
58
|
+
inputWrapper: string;
|
|
59
|
+
};
|
|
60
|
+
sm: {
|
|
61
|
+
inputWrapper: string;
|
|
62
|
+
};
|
|
63
|
+
md: {
|
|
64
|
+
inputWrapper: string;
|
|
65
|
+
};
|
|
66
|
+
lg: {
|
|
67
|
+
inputWrapper: string;
|
|
68
|
+
};
|
|
69
|
+
xl: {
|
|
70
|
+
inputWrapper: string;
|
|
71
|
+
};
|
|
72
|
+
full: {
|
|
73
|
+
inputWrapper: string;
|
|
74
|
+
};
|
|
74
75
|
};
|
|
75
76
|
fullWidth: {
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
77
|
+
true: {
|
|
78
|
+
base: string;
|
|
79
|
+
inputWrapper: string;
|
|
80
|
+
};
|
|
80
81
|
};
|
|
81
82
|
isDisabled: {
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
83
|
+
true: {
|
|
84
|
+
base: string;
|
|
85
|
+
inputWrapper: string;
|
|
86
|
+
input: string;
|
|
87
|
+
};
|
|
87
88
|
};
|
|
88
89
|
isInvalid: {
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
90
|
+
true: {
|
|
91
|
+
inputWrapper: string;
|
|
92
|
+
label: string;
|
|
93
|
+
input: string;
|
|
94
|
+
};
|
|
94
95
|
};
|
|
95
96
|
isReadOnly: {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
97
|
+
true: {
|
|
98
|
+
input: string;
|
|
99
|
+
};
|
|
99
100
|
};
|
|
100
101
|
resize: {
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
102
|
+
none: {
|
|
103
|
+
input: string;
|
|
104
|
+
};
|
|
105
|
+
vertical: {
|
|
106
|
+
input: string;
|
|
107
|
+
};
|
|
108
|
+
horizontal: {
|
|
109
|
+
input: string;
|
|
110
|
+
};
|
|
111
|
+
both: {
|
|
112
|
+
input: string;
|
|
113
|
+
};
|
|
113
114
|
};
|
|
114
|
-
},
|
|
115
|
+
},
|
|
116
|
+
{
|
|
115
117
|
base: string;
|
|
116
118
|
label: string;
|
|
117
119
|
inputWrapper: string;
|
|
118
120
|
input: string;
|
|
119
121
|
description: string;
|
|
120
122
|
errorMessage: string;
|
|
121
|
-
},
|
|
123
|
+
},
|
|
124
|
+
undefined,
|
|
125
|
+
{
|
|
122
126
|
variant: {
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
127
|
+
solid: {
|
|
128
|
+
inputWrapper: string;
|
|
129
|
+
};
|
|
130
|
+
flat: {
|
|
131
|
+
inputWrapper: string;
|
|
132
|
+
};
|
|
133
|
+
bordered: {
|
|
134
|
+
inputWrapper: string;
|
|
135
|
+
};
|
|
136
|
+
ghost: {
|
|
137
|
+
inputWrapper: string;
|
|
138
|
+
};
|
|
135
139
|
};
|
|
136
140
|
color: {
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
141
|
+
primary: {
|
|
142
|
+
inputWrapper: string;
|
|
143
|
+
label: string;
|
|
144
|
+
};
|
|
145
|
+
secondary: {
|
|
146
|
+
inputWrapper: string;
|
|
147
|
+
label: string;
|
|
148
|
+
};
|
|
149
|
+
success: {
|
|
150
|
+
inputWrapper: string;
|
|
151
|
+
label: string;
|
|
152
|
+
};
|
|
153
|
+
warning: {
|
|
154
|
+
inputWrapper: string;
|
|
155
|
+
label: string;
|
|
156
|
+
};
|
|
157
|
+
danger: {
|
|
158
|
+
inputWrapper: string;
|
|
159
|
+
label: string;
|
|
160
|
+
};
|
|
157
161
|
};
|
|
158
162
|
size: {
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
163
|
+
sm: {
|
|
164
|
+
inputWrapper: string;
|
|
165
|
+
input: string;
|
|
166
|
+
label: string;
|
|
167
|
+
};
|
|
168
|
+
md: {
|
|
169
|
+
inputWrapper: string;
|
|
170
|
+
input: string;
|
|
171
|
+
label: string;
|
|
172
|
+
};
|
|
173
|
+
lg: {
|
|
174
|
+
inputWrapper: string;
|
|
175
|
+
input: string;
|
|
176
|
+
label: string;
|
|
177
|
+
};
|
|
174
178
|
};
|
|
175
179
|
radius: {
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
180
|
+
none: {
|
|
181
|
+
inputWrapper: string;
|
|
182
|
+
};
|
|
183
|
+
sm: {
|
|
184
|
+
inputWrapper: string;
|
|
185
|
+
};
|
|
186
|
+
md: {
|
|
187
|
+
inputWrapper: string;
|
|
188
|
+
};
|
|
189
|
+
lg: {
|
|
190
|
+
inputWrapper: string;
|
|
191
|
+
};
|
|
192
|
+
xl: {
|
|
193
|
+
inputWrapper: string;
|
|
194
|
+
};
|
|
195
|
+
full: {
|
|
196
|
+
inputWrapper: string;
|
|
197
|
+
};
|
|
194
198
|
};
|
|
195
199
|
fullWidth: {
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
+
true: {
|
|
201
|
+
base: string;
|
|
202
|
+
inputWrapper: string;
|
|
203
|
+
};
|
|
200
204
|
};
|
|
201
205
|
isDisabled: {
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
206
|
+
true: {
|
|
207
|
+
base: string;
|
|
208
|
+
inputWrapper: string;
|
|
209
|
+
input: string;
|
|
210
|
+
};
|
|
207
211
|
};
|
|
208
212
|
isInvalid: {
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
213
|
+
true: {
|
|
214
|
+
inputWrapper: string;
|
|
215
|
+
label: string;
|
|
216
|
+
input: string;
|
|
217
|
+
};
|
|
214
218
|
};
|
|
215
219
|
isReadOnly: {
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
220
|
+
true: {
|
|
221
|
+
input: string;
|
|
222
|
+
};
|
|
219
223
|
};
|
|
220
224
|
resize: {
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
225
|
+
none: {
|
|
226
|
+
input: string;
|
|
227
|
+
};
|
|
228
|
+
vertical: {
|
|
229
|
+
input: string;
|
|
230
|
+
};
|
|
231
|
+
horizontal: {
|
|
232
|
+
input: string;
|
|
233
|
+
};
|
|
234
|
+
both: {
|
|
235
|
+
input: string;
|
|
236
|
+
};
|
|
233
237
|
};
|
|
234
|
-
},
|
|
238
|
+
},
|
|
239
|
+
{
|
|
235
240
|
base: string;
|
|
236
241
|
label: string;
|
|
237
242
|
inputWrapper: string;
|
|
238
243
|
input: string;
|
|
239
244
|
description: string;
|
|
240
245
|
errorMessage: string;
|
|
241
|
-
},
|
|
242
|
-
|
|
246
|
+
},
|
|
247
|
+
import("tailwind-variants").TVReturnType<
|
|
248
|
+
{
|
|
249
|
+
variant: {
|
|
243
250
|
solid: {
|
|
244
|
-
|
|
251
|
+
inputWrapper: string;
|
|
245
252
|
};
|
|
246
253
|
flat: {
|
|
247
|
-
|
|
254
|
+
inputWrapper: string;
|
|
248
255
|
};
|
|
249
256
|
bordered: {
|
|
250
|
-
|
|
257
|
+
inputWrapper: string;
|
|
251
258
|
};
|
|
252
259
|
ghost: {
|
|
253
|
-
|
|
260
|
+
inputWrapper: string;
|
|
254
261
|
};
|
|
255
|
-
|
|
256
|
-
|
|
262
|
+
};
|
|
263
|
+
color: {
|
|
257
264
|
primary: {
|
|
258
|
-
|
|
259
|
-
|
|
265
|
+
inputWrapper: string;
|
|
266
|
+
label: string;
|
|
260
267
|
};
|
|
261
268
|
secondary: {
|
|
262
|
-
|
|
263
|
-
|
|
269
|
+
inputWrapper: string;
|
|
270
|
+
label: string;
|
|
264
271
|
};
|
|
265
272
|
success: {
|
|
266
|
-
|
|
267
|
-
|
|
273
|
+
inputWrapper: string;
|
|
274
|
+
label: string;
|
|
268
275
|
};
|
|
269
276
|
warning: {
|
|
270
|
-
|
|
271
|
-
|
|
277
|
+
inputWrapper: string;
|
|
278
|
+
label: string;
|
|
272
279
|
};
|
|
273
280
|
danger: {
|
|
274
|
-
|
|
275
|
-
|
|
281
|
+
inputWrapper: string;
|
|
282
|
+
label: string;
|
|
276
283
|
};
|
|
277
|
-
|
|
278
|
-
|
|
284
|
+
};
|
|
285
|
+
size: {
|
|
279
286
|
sm: {
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
287
|
+
inputWrapper: string;
|
|
288
|
+
input: string;
|
|
289
|
+
label: string;
|
|
283
290
|
};
|
|
284
291
|
md: {
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
292
|
+
inputWrapper: string;
|
|
293
|
+
input: string;
|
|
294
|
+
label: string;
|
|
288
295
|
};
|
|
289
296
|
lg: {
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
297
|
+
inputWrapper: string;
|
|
298
|
+
input: string;
|
|
299
|
+
label: string;
|
|
293
300
|
};
|
|
294
|
-
|
|
295
|
-
|
|
301
|
+
};
|
|
302
|
+
radius: {
|
|
296
303
|
none: {
|
|
297
|
-
|
|
304
|
+
inputWrapper: string;
|
|
298
305
|
};
|
|
299
306
|
sm: {
|
|
300
|
-
|
|
307
|
+
inputWrapper: string;
|
|
301
308
|
};
|
|
302
309
|
md: {
|
|
303
|
-
|
|
310
|
+
inputWrapper: string;
|
|
304
311
|
};
|
|
305
312
|
lg: {
|
|
306
|
-
|
|
313
|
+
inputWrapper: string;
|
|
307
314
|
};
|
|
308
315
|
xl: {
|
|
309
|
-
|
|
316
|
+
inputWrapper: string;
|
|
310
317
|
};
|
|
311
318
|
full: {
|
|
312
|
-
|
|
319
|
+
inputWrapper: string;
|
|
313
320
|
};
|
|
314
|
-
|
|
315
|
-
|
|
321
|
+
};
|
|
322
|
+
fullWidth: {
|
|
316
323
|
true: {
|
|
317
|
-
|
|
318
|
-
|
|
324
|
+
base: string;
|
|
325
|
+
inputWrapper: string;
|
|
319
326
|
};
|
|
320
|
-
|
|
321
|
-
|
|
327
|
+
};
|
|
328
|
+
isDisabled: {
|
|
322
329
|
true: {
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
330
|
+
base: string;
|
|
331
|
+
inputWrapper: string;
|
|
332
|
+
input: string;
|
|
326
333
|
};
|
|
327
|
-
|
|
328
|
-
|
|
334
|
+
};
|
|
335
|
+
isInvalid: {
|
|
329
336
|
true: {
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
337
|
+
inputWrapper: string;
|
|
338
|
+
label: string;
|
|
339
|
+
input: string;
|
|
333
340
|
};
|
|
334
|
-
|
|
335
|
-
|
|
341
|
+
};
|
|
342
|
+
isReadOnly: {
|
|
336
343
|
true: {
|
|
337
|
-
|
|
344
|
+
input: string;
|
|
338
345
|
};
|
|
339
|
-
|
|
340
|
-
|
|
346
|
+
};
|
|
347
|
+
resize: {
|
|
341
348
|
none: {
|
|
342
|
-
|
|
349
|
+
input: string;
|
|
343
350
|
};
|
|
344
351
|
vertical: {
|
|
345
|
-
|
|
352
|
+
input: string;
|
|
346
353
|
};
|
|
347
354
|
horizontal: {
|
|
348
|
-
|
|
355
|
+
input: string;
|
|
349
356
|
};
|
|
350
357
|
both: {
|
|
351
|
-
|
|
352
|
-
};
|
|
353
|
-
|
|
354
|
-
},
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
358
|
+
input: string;
|
|
359
|
+
};
|
|
360
|
+
};
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
base: string;
|
|
364
|
+
label: string;
|
|
365
|
+
inputWrapper: string;
|
|
366
|
+
input: string;
|
|
367
|
+
description: string;
|
|
368
|
+
errorMessage: string;
|
|
369
|
+
},
|
|
370
|
+
undefined,
|
|
371
|
+
unknown,
|
|
372
|
+
unknown,
|
|
373
|
+
undefined
|
|
374
|
+
>
|
|
375
|
+
>;
|