File size: 1,770 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 77 78 79 80 81 82 83 84 85 86 87 88 |
import { defineSlotRecipe } from "../def"
export const ratingGroupSlotRecipe = defineSlotRecipe({
className: "rating-group",
slots: ["root", "label", "item", "control", "itemIndicator"],
base: {
root: {
display: "inline-flex",
},
control: {
display: "inline-flex",
alignItems: "center",
},
item: {
display: "inline-flex",
alignItems: "center",
justifyContent: "center",
userSelect: "none",
},
itemIndicator: {
display: "inline-flex",
alignItems: "center",
justifyContent: "center",
width: "1em",
height: "1em",
position: "relative",
"--clip-path": {
base: "inset(0 50% 0 0)",
_rtl: "inset(0 0 0 50%)",
},
_icon: {
stroke: "currentColor",
width: "100%",
height: "100%",
display: "inline-block",
flexShrink: 0,
position: "absolute",
left: 0,
top: 0,
},
"& [data-bg]": {
color: "bg.emphasized",
},
"& [data-fg]": {
color: "transparent",
},
"&[data-highlighted]:not([data-half])": {
"& [data-fg]": {
color: "colorPalette.solid",
},
},
"&[data-half]": {
"& [data-fg]": {
color: "colorPalette.solid",
clipPath: "var(--clip-path)",
},
},
},
},
variants: {
size: {
xs: {
item: {
textStyle: "sm",
},
},
sm: {
item: {
textStyle: "md",
},
},
md: {
item: {
textStyle: "xl",
},
},
lg: {
item: {
textStyle: "2xl",
},
},
},
},
defaultVariants: {
size: "md",
},
})
|