@rarui/styles 1.19.0 → 1.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -8604,6 +8604,124 @@ declare const status$1: {
8604
8604
  }>;
8605
8605
  };
8606
8606
  };
8607
+ declare const stepperStyles: {
8608
+ stepper: import("@vanilla-extract/recipes").RuntimeFn<{
8609
+ /**
8610
+ * Specifies the direction of the stepper. This prop accepts one of the following values: vertical or horizontal.
8611
+ * @default horizontal
8612
+ */
8613
+ direction: {
8614
+ horizontal: {
8615
+ width: "100%";
8616
+ flexDirection: "row";
8617
+ };
8618
+ vertical: {
8619
+ flexDirection: "column";
8620
+ height: "100%";
8621
+ alignItems: "flex-start";
8622
+ };
8623
+ };
8624
+ }>;
8625
+ step: import("@vanilla-extract/recipes").RuntimeFn<{
8626
+ direction: {
8627
+ /**
8628
+ * Specifies the direction of the stepper. This prop accepts one of the following values: vertical or horizontal.
8629
+ * @default horizontal
8630
+ */
8631
+ horizontal: {
8632
+ flexDirection: "column";
8633
+ ":after": {
8634
+ top: "20px";
8635
+ height: "1px";
8636
+ width: "calc(100% - 60px)";
8637
+ left: "calc(50% + 30px)";
8638
+ };
8639
+ };
8640
+ vertical: {
8641
+ ":after": {
8642
+ width: "1px";
8643
+ height: "calc(100% - 60px)";
8644
+ top: "calc(50% + 30px)";
8645
+ left: "18px";
8646
+ };
8647
+ };
8648
+ };
8649
+ }>;
8650
+ stepCircle: import("@vanilla-extract/recipes").RuntimeFn<{
8651
+ /**
8652
+ * Indicates whether the step is currently active. An active step is typically highlighted to show that it is the current step.
8653
+ */
8654
+ active: {
8655
+ true: {
8656
+ backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
8657
+ color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
8658
+ };
8659
+ };
8660
+ /**
8661
+ * Indicates whether the step has been completed. A completed step is usually marked with a checkmark or other indicator.
8662
+ */
8663
+ done: {
8664
+ true: {
8665
+ backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
8666
+ color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
8667
+ };
8668
+ };
8669
+ }>;
8670
+ };
8671
+ export type StepperVariants = RecipeVariants<typeof stepperStyles.stepper>;
8672
+ export type StepperStepVariants = RecipeVariants<typeof stepperStyles.stepCircle>;
8673
+ export declare const stepper: {
8674
+ classNames: {
8675
+ stepper: import("@vanilla-extract/recipes").RuntimeFn<{
8676
+ direction: {
8677
+ horizontal: {
8678
+ width: "100%";
8679
+ flexDirection: "row";
8680
+ };
8681
+ vertical: {
8682
+ flexDirection: "column";
8683
+ height: "100%";
8684
+ alignItems: "flex-start";
8685
+ };
8686
+ };
8687
+ }>;
8688
+ step: import("@vanilla-extract/recipes").RuntimeFn<{
8689
+ direction: {
8690
+ horizontal: {
8691
+ flexDirection: "column";
8692
+ ":after": {
8693
+ top: "20px";
8694
+ height: "1px";
8695
+ width: "calc(100% - 60px)";
8696
+ left: "calc(50% + 30px)";
8697
+ };
8698
+ };
8699
+ vertical: {
8700
+ ":after": {
8701
+ width: "1px";
8702
+ height: "calc(100% - 60px)";
8703
+ top: "calc(50% + 30px)";
8704
+ left: "18px";
8705
+ };
8706
+ };
8707
+ };
8708
+ }>;
8709
+ stepCircle: import("@vanilla-extract/recipes").RuntimeFn<{
8710
+ active: {
8711
+ true: {
8712
+ backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
8713
+ color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
8714
+ };
8715
+ };
8716
+ done: {
8717
+ true: {
8718
+ backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
8719
+ color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
8720
+ };
8721
+ };
8722
+ }>;
8723
+ };
8724
+ };
8607
8725
  declare const textLineHeightProperties: {
8608
8726
  xxs: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
8609
8727
  xs: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;