import { defineSlotRecipe } from "../def" export const progressSlotRecipe = defineSlotRecipe({ slots: [ "root", "label", "track", "range", "valueText", "view", "circle", "circleTrack", "circleRange", ], className: "progress", base: { root: { textStyle: "sm", position: "relative", }, track: { overflow: "hidden", position: "relative", }, range: { display: "flex", alignItems: "center", justifyContent: "center", transitionProperty: "width, height", transitionDuration: "slow", height: "100%", bgColor: "var(--track-color)", _indeterminate: { "--animate-from-x": "-40%", "--animate-to-x": "100%", position: "absolute", willChange: "left", minWidth: "50%", animation: "position 1s ease infinite normal none running", backgroundImage: "linear-gradient(to right, transparent 0%, var(--track-color) 50%, transparent 100%)", }, }, label: { display: "inline-flex", fontWeight: "medium", alignItems: "center", gap: "1", }, valueText: { textStyle: "xs", lineHeight: "1", fontWeight: "medium", }, }, variants: { variant: { outline: { track: { shadow: "inset", bgColor: "bg.muted", }, range: { bgColor: "colorPalette.solid", }, }, subtle: { track: { bgColor: "colorPalette.muted", }, range: { bgColor: "colorPalette.solid/72", }, }, }, shape: { square: {}, rounded: { track: { borderRadius: "l1", }, }, full: { track: { borderRadius: "full", }, }, }, striped: { true: { range: { backgroundImage: "linear-gradient(45deg, var(--stripe-color) 25%, transparent 25%, transparent 50%, var(--stripe-color) 50%, var(--stripe-color) 75%, transparent 75%, transparent)", backgroundSize: "var(--stripe-size) var(--stripe-size)", "--stripe-size": "1rem", "--stripe-color": { _light: "rgba(255, 255, 255, 0.3)", _dark: "rgba(0, 0, 0, 0.3)", }, }, }, }, animated: { true: { range: { "--animate-from": "var(--stripe-size)", animation: "bg-position 1s linear infinite", }, }, }, size: { xs: { track: { h: "1.5", }, }, sm: { track: { h: "2", }, }, md: { track: { h: "2.5", }, }, lg: { track: { h: "3", }, }, xl: { track: { h: "4", }, }, }, }, defaultVariants: { variant: "outline", size: "md", shape: "rounded", }, })