Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { defineSlotRecipe } from "../def"
export const stepsSlotRecipe = defineSlotRecipe({
className: "steps",
slots: [
"root",
"list",
"item",
"trigger",
"indicator",
"separator",
"content",
"title",
"description",
"nextTrigger",
"prevTrigger",
"progress",
],
base: {
root: {
display: "flex",
width: "full",
},
list: {
display: "flex",
justifyContent: "space-between",
"--steps-gutter": "spacing.3",
"--steps-thickness": "2px",
},
title: {
fontWeight: "medium",
color: "fg",
},
description: {
color: "fg.muted",
},
separator: {
bg: "border",
flex: "1",
},
indicator: {
display: "flex",
justifyContent: "center",
alignItems: "center",
flexShrink: "0",
borderRadius: "full",
fontWeight: "medium",
width: "var(--steps-size)",
height: "var(--steps-size)",
_icon: {
flexShrink: "0",
width: "var(--steps-icon-size)",
height: "var(--steps-icon-size)",
},
},
item: {
position: "relative",
display: "flex",
gap: "3",
flex: "1 0 0",
"&:last-of-type": {
flex: "initial",
"& [data-part=separator]": {
display: "none",
},
},
},
trigger: {
display: "flex",
alignItems: "center",
gap: "3",
textAlign: "start",
focusVisibleRing: "outside",
borderRadius: "l2",
},
content: {
focusVisibleRing: "outside",
},
},
variants: {
orientation: {
vertical: {
root: {
flexDirection: "row",
height: "100%",
},
list: {
flexDirection: "column",
alignItems: "flex-start",
},
separator: {
position: "absolute",
width: "var(--steps-thickness)",
height: "100%",
maxHeight: "calc(100% - var(--steps-size) - var(--steps-gutter) * 2)",
top: "calc(var(--steps-size) + var(--steps-gutter))",
insetStart: "calc(var(--steps-size) / 2 - 1px)",
},
item: {
alignItems: "flex-start",
},
},
horizontal: {
root: {
flexDirection: "column",
width: "100%",
},
list: {
flexDirection: "row",
alignItems: "center",
},
separator: {
width: "100%",
height: "var(--steps-thickness)",
marginX: "var(--steps-gutter)",
},
item: {
alignItems: "center",
},
},
},
variant: {
solid: {
indicator: {
_incomplete: {
borderWidth: "var(--steps-thickness)",
},
_current: {
bg: "colorPalette.muted",
borderWidth: "var(--steps-thickness)",
borderColor: "colorPalette.solid",
color: "colorPalette.fg",
},
_complete: {
bg: "colorPalette.solid",
borderColor: "colorPalette.solid",
color: "colorPalette.contrast",
},
},
separator: {
_complete: {
bg: "colorPalette.solid",
},
},
},
subtle: {
indicator: {
_incomplete: {
bg: "bg.muted",
},
_current: {
bg: "colorPalette.muted",
color: "colorPalette.fg",
},
_complete: {
bg: "colorPalette.emphasized",
color: "colorPalette.fg",
},
},
separator: {
_complete: {
bg: "colorPalette.emphasized",
},
},
},
},
size: {
xs: {
root: {
gap: "2.5",
},
list: {
"--steps-size": "sizes.6",
"--steps-icon-size": "sizes.3.5",
textStyle: "xs",
},
title: {
textStyle: "sm",
},
},
sm: {
root: {
gap: "3",
},
list: {
"--steps-size": "sizes.8",
"--steps-icon-size": "sizes.4",
textStyle: "xs",
},
title: {
textStyle: "sm",
},
},
md: {
root: {
gap: "4",
},
list: {
"--steps-size": "sizes.10",
"--steps-icon-size": "sizes.4",
textStyle: "sm",
},
title: {
textStyle: "sm",
},
},
lg: {
root: {
gap: "6",
},
list: {
"--steps-size": "sizes.11",
"--steps-icon-size": "sizes.5",
textStyle: "md",
},
title: {
textStyle: "md",
},
},
},
},
defaultVariants: {
size: "md",
variant: "solid",
orientation: "horizontal",
},
})