package.dist.cjs.theme.recipes.progress.cjs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of react Show documentation
Show all versions of react Show documentation
Responsive and accessible React UI components built with React and Emotion
The newest version!
"use strict";
'use strict';
var config = require('../../styled-system/config.cjs');
var progress = require('@ark-ui/react/progress');
const progressSlotRecipe = config.defineSlotRecipe({
slots: progress.progressAnatomy.keys(),
className: "chakra-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"
}
});
exports.progressSlotRecipe = progressSlotRecipe;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy