File size: 1,450 Bytes
1e92f2d |
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 |
import { defineSlotRecipe } from "../def"
export const fieldSlotRecipe = defineSlotRecipe({
className: "field",
slots: [
"root",
"errorText",
"helperText",
"input",
"label",
"select",
"textarea",
"requiredIndicator",
"requiredIndicator",
],
base: {
requiredIndicator: {
color: "fg.error",
lineHeight: "1",
},
root: {
display: "flex",
width: "100%",
position: "relative",
gap: "1.5",
},
label: {
display: "flex",
alignItems: "center",
textAlign: "start",
textStyle: "sm",
fontWeight: "medium",
gap: "1",
userSelect: "none",
_disabled: {
opacity: "0.5",
},
},
errorText: {
display: "inline-flex",
alignItems: "center",
fontWeight: "medium",
gap: "1",
color: "fg.error",
textStyle: "xs",
},
helperText: {
color: "fg.muted",
textStyle: "xs",
},
},
variants: {
orientation: {
vertical: {
root: {
flexDirection: "column",
alignItems: "flex-start",
},
},
horizontal: {
root: {
flexDirection: "row",
alignItems: "center",
justifyContent: "space-between",
},
label: {
flex: "0 0 var(--field-label-width, 80px)",
},
},
},
},
defaultVariants: {
orientation: "vertical",
},
})
|