File size: 1,137 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 |
import { pinInputAnatomy } from "../../anatomy"
import { defineSlotRecipe } from "../../styled-system"
import { mapEntries } from "../../utils"
import { inputRecipe } from "./input"
const { variants, defaultVariants } = inputRecipe
export const pinInputSlotRecipe = defineSlotRecipe({
className: "chakra-pin-input",
slots: pinInputAnatomy.keys(),
base: {
input: {
...inputRecipe.base,
textAlign: "center",
width: "var(--input-height)",
},
control: {
display: "inline-flex",
gap: "2",
isolation: "isolate",
},
},
variants: {
size: mapEntries(variants!.size, (key, value) => [
key,
{ input: { ...value, px: "1" } },
]),
variant: mapEntries(variants!.variant, (key, value) => [
key,
{ input: value },
]),
attached: {
true: {
control: {
gap: "0",
spaceX: "-1px",
},
input: {
_notFirst: { borderStartRadius: "0" },
_notLast: { borderEndRadius: "0" },
_focusVisible: { zIndex: "1" },
},
},
},
},
defaultVariants: defaultVariants,
})
|