tcce-design-system 0.1.18 → 0.1.19

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.
@@ -1164,6 +1164,47 @@ declare interface SpinnerProps {
1164
1164
  variant?: Variant;
1165
1165
  }
1166
1166
 
1167
+ /**
1168
+ * Represents a single step in the Stepper.
1169
+ */
1170
+ export declare interface Step {
1171
+ id: string | number;
1172
+ label?: string;
1173
+ }
1174
+
1175
+ /**
1176
+ * Stepper component for displaying multi-step navigation UI.
1177
+ * Simple and functional with hover labels.
1178
+ */
1179
+ export declare const Stepper: default_2.FC<StepperProps>;
1180
+
1181
+ /**
1182
+ * Orientation options for the Stepper component.
1183
+ * - horizontal: Steps are arranged horizontally (default).
1184
+ * - vertical: Steps are arranged vertically.
1185
+ */
1186
+ export declare type StepperOrientation = 'horizontal' | 'vertical';
1187
+
1188
+ /**
1189
+ * Props for the Stepper component.
1190
+ */
1191
+ export declare interface StepperProps {
1192
+ steps: Step[];
1193
+ currentStep: number;
1194
+ orientation?: StepperOrientation;
1195
+ size?: StepperSize;
1196
+ onStepClick?: (stepIndex: number) => void;
1197
+ className?: string;
1198
+ }
1199
+
1200
+ /**
1201
+ * Size options for the Stepper component.
1202
+ * - sm: Small size stepper.
1203
+ * - md: Medium size stepper (default).
1204
+ * - lg: Large size stepper.
1205
+ */
1206
+ export declare type StepperSize = 'sm' | 'md' | 'lg';
1207
+
1167
1208
  /**
1168
1209
  * Submenu expand/collapse animation (top-down).
1169
1210
  * Smooth height auto + fade + slight upward offset for a natural reveal.