-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathforms.ts
426 lines (409 loc) · 9.74 KB
/
forms.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
import { tv, type VariantProps } from '../../tw';
import { focusVisibleRing, focusVisibleWithinRing } from '../shared';
const label = tv({
slots: {
base: 'text-foreground inline-block font-semibold leading-tight pb-1',
asterisk: 'text-danger'
},
variants: {
size: {
sm: {
base: 'text-xs'
},
md: {},
lg: {
base: 'text-lg'
}
}
},
defaultVariants: {
size: 'md'
}
});
const formDescription = tv({
base: 'text-default-400 text-xs pb-1 last:pb-0',
variants: {
size: {
sm: 'text-xs',
md: '',
lg: 'text-lg'
}
},
defaultVariants: {
size: 'md'
}
});
const formFeedback = tv({
base: 'text-xs pt-1',
variants: {
intent: {
primary: 'text-primary',
success: 'text-success',
danger: 'text-danger',
warning: 'text-warning'
},
size: {
sm: 'text-xs',
md: '',
lg: 'text-lg'
}
},
defaultVariants: {
size: 'sm'
}
});
const input = tv({
slots: {
base: '',
innerContainer: 'relative flex',
startContent: 'absolute inset-y-0 left-0 flex items-center',
endContent: 'absolute inset-y-0 right-0 flex items-center',
input: [
'appearance-none',
'flex-1',
'w-full',
'bg-white dark:bg-default-100',
'text-default-900',
'placeholder-default-400',
'text-base text-left text-foreground',
'border',
'border-default-400',
'rounded',
'leading-tight',
'focus:ring',
'focus:outline-none',
'focus:border-primary-400',
'selection:bg-content3',
'disabled:border-default-200 disabled:text-default-500',
'aria-invalid:border-danger-400',
'aria-invalid:focus:ring-danger-400'
]
},
variants: {
size: {
sm: { input: 'p-2', startContent: 'pl-2', endContent: 'pr-2' },
md: { input: 'p-3', startContent: 'pl-3', endContent: 'pr-3' },
lg: { input: 'p-4', startContent: 'pl-4', endContent: 'pr-4' }
},
hasStartContent: {
true: { input: 'ps-8' }
},
hasEndContent: {
true: { input: 'pe-10' }
},
startContentPointerEvents: {
auto: { startContent: 'pointer-events-auto' },
none: { startContent: 'pointer-events-none' }
},
endContentPointerEvents: {
auto: { endContent: 'pointer-events-auto' },
none: { endContent: 'pointer-events-none' }
}
},
defaultVariants: {
size: 'md'
}
});
const textarea = tv({
extend: input,
slots: { input: 'min-h-24' },
variants: {
size: {
sm: {},
md: {},
lg: {}
}
}
});
const checkboxRadioBase = tv({
slots: {
base: ['max-w-fit flex items-center justify-start'],
input: [
'appearance-none',
'inline-block',
'align-middle',
'select-none',
'shrink-0',
'h-[1em] w-[1em]',
'text-base',
'text-primary',
'border border-default-400',
'bg-white dark:bg-default-100',
'checked:bg-origin-border checked:border-transparent dark:checked:bg-current checked:bg-current checked:bg-center checked:bg-no-repeat checked:disabled:bg-default-300',
...focusVisibleRing
],
labelContainer: ['flex flex-col ml-2'],
label: 'font-normal pb-0'
},
variants: {
size: {
sm: { input: '' },
md: { input: '' },
lg: { input: '' }
}
},
defaultVariants: {
size: 'md'
}
});
const checkboxRadioGroupBase = tv({
slots: {
base: '',
optionsContainer: [
'flex flex-col flex-wrap gap-4 data-[orientation=horizontal]:flex-row'
],
label: 'pb-2'
},
variants: {
size: {
sm: '',
md: '',
lg: ''
}
}
});
const checkbox = tv({
extend: checkboxRadioBase,
slots: {
input: ['checked-bg-checkbox', 'rounded-sm']
},
variants: {
size: {
sm: { input: '' },
md: { input: '' },
lg: { input: '' }
}
},
defaultVariants: {
size: 'md'
}
});
const radio = tv({
extend: checkboxRadioBase,
slots: {
input: ['checked-bg-radio', 'rounded-full']
},
variants: {
size: {
sm: { input: '' },
md: { input: '' },
lg: { input: '' }
}
},
defaultVariants: {
size: 'md'
}
});
const radioGroup = tv({
extend: checkboxRadioGroupBase
});
const checkboxGroup = tv({
extend: checkboxRadioGroupBase
});
const select = tv({
extend: input,
slots: {
base: [],
placeholder: 'text-default-400',
listbox: 'scroll-py-6 max-h-64',
icon: 'w-5 h-5',
clearButton: 'pointer-events-auto',
input: '[&:is(button)]:cursor-default',
emptyContent: 'p-2'
},
variants: {
size: {
sm: {},
md: {},
lg: {}
}
},
defaultVariants: {
size: 'md'
}
});
const nativeSelect = tv({
extend: input,
slots: {
input: ['appearance-none'],
icon: 'w-5 h-5'
},
variants: {
size: {
sm: {},
md: {},
lg: {}
}
}
});
const switchInput = tv({
slots: {
base: 'group relative max-w-fit inline-flex items-center justify-start',
labelContainer: 'flex flex-col ml-2',
label: 'font-normal pb-0',
wrapper: [
'px-1',
'relative',
'inline-flex',
'items-center',
'justify-start',
'flex-shrink-0',
'overflow-hidden',
'bg-default-300',
'rounded-full',
'cursor-pointer touch-none tap-highlight-transparent select-none',
'transition-background',
...focusVisibleWithinRing
],
hiddenInput: [
'font-inherit',
'text-[100%]',
'leading-[1.15]',
'm-0',
'p-0',
'overflow-visible',
'box-border',
'absolute',
'top-0',
'w-full',
'h-full',
'opacity-[0.0001]',
'z-[1]',
'cursor-pointer',
'disabled:cursor-default'
],
thumb: [
'z-10',
'flex',
'items-center',
'justify-center',
'bg-white',
'shadow-small',
'rounded-full',
'origin-right',
'transition-all',
'pointer-events-none',
'text-black'
],
startContent: [
'z-0 absolute start-1.5 text-current',
'opacity-0',
'scale-50',
'transition-transform-opacity',
'group-data-[selected=true]:scale-100',
'group-data-[selected=true]:opacity-100'
],
endContent: [
'z-0 absolute end-1.5 text-default-600',
'opacity-100',
'transition-transform-opacity',
'group-data-[selected=true]:translate-x-3',
'group-data-[selected=true]:opacity-0'
]
},
variants: {
isDisabled: {
true: {
wrapper: 'opacity-disabled pointer-events-none'
}
},
size: {
sm: {
wrapper: 'w-6 h-3 px-[2px]',
thumb: ['w-2 h-2 text-xs', 'group-data-[selected=true]:ms-3'],
endContent: 'text-xs',
startContent: 'text-xs',
label: 'text-small'
},
md: {
wrapper: 'w-11 h-6',
thumb: ['w-4 h-4 text-sm', 'group-data-[selected=true]:ms-5'],
endContent: 'text-sm',
startContent: 'text-sm',
label: 'text-md'
},
lg: {
wrapper: 'w-12 h-7',
thumb: ['w-5 h-5 text-medium', 'group-data-[selected=true]:ms-5'],
endContent: 'text-md',
startContent: 'text-md',
label: 'text-lg'
}
},
intent: {
default: {
wrapper: [
'group-data-[selected=true]:bg-default-400',
'group-data-[selected=true]:text-default-foreground'
]
},
primary: {
wrapper: [
'group-data-[selected=true]:bg-primary',
'group-data-[selected=true]:text-primary-foreground'
]
},
success: {
wrapper: [
'group-data-[selected=true]:bg-success',
'group-data-[selected=true]:text-success-foreground'
]
},
warning: {
wrapper: [
'group-data-[selected=true]:bg-warning',
'group-data-[selected=true]:text-warning-foreground'
]
},
danger: {
wrapper: [
'group-data-[selected=true]:bg-danger',
'data-[selected=true]:text-danger-foreground'
]
}
}
},
defaultVariants: {
size: 'md',
intent: 'primary',
isDisabled: false
}
});
export type LabelVariants = VariantProps<typeof label>;
export type LabelSlots = keyof ReturnType<typeof label>;
export type FormDescriptionVariants = VariantProps<typeof formDescription>;
export type FormDescriptionSlots = keyof ReturnType<typeof formDescription>;
export type FormFeedbackVariants = VariantProps<typeof formFeedback>;
export type FormFeedbackSlots = keyof ReturnType<typeof formFeedback>;
export type InputVariants = VariantProps<typeof input>;
export type InputSlots = keyof ReturnType<typeof input>;
export type TextareaVariants = VariantProps<typeof textarea>;
export type TextareaSlots = keyof ReturnType<typeof textarea>;
export type CheckboxVariants = VariantProps<typeof checkbox>;
export type CheckboxSlots = keyof ReturnType<typeof checkbox>;
export type RadioVariants = VariantProps<typeof radio>;
export type RadioSlots = keyof ReturnType<typeof radio>;
export type SelectVariants = VariantProps<typeof select>;
export type SelectSlots = keyof ReturnType<typeof select>;
export type NativeSelectVariants = VariantProps<typeof nativeSelect>;
export type NativeSelectSlots = keyof ReturnType<typeof nativeSelect>;
export type CheckboxGroupVariants = VariantProps<typeof checkboxGroup>;
export type CheckboxGroupSlots = keyof ReturnType<typeof checkboxGroup>;
export type RadioGroupVariants = VariantProps<typeof radioGroup>;
export type RadioGroupSlots = keyof ReturnType<typeof radioGroup>;
export type SwitchVariants = VariantProps<typeof switchInput>;
export type SwitchSlots = keyof ReturnType<typeof switchInput>;
export {
label,
formDescription,
formFeedback,
input,
textarea,
checkbox,
radio,
select,
nativeSelect,
checkboxGroup,
radioGroup,
switchInput
};