@producteca/producteca-ui-kit 1.59.0 → 1.60.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.
@@ -15,4 +15,5 @@ export * from './card';
15
15
  export * from './sidebar';
16
16
  export * from './dropdown';
17
17
  export * from './link';
18
- export * from './draggableList';
18
+ export * from './draggableList';
19
+ export * from './stepper';
@@ -16,3 +16,4 @@ export * from './sidebar';
16
16
  export * from './dropdown';
17
17
  export * from './link';
18
18
  export * from './draggableList';
19
+ export * from './stepper';
@@ -0,0 +1,2 @@
1
+ export { Stepper } from './stepper';
2
+ export { Stepper as default } from './stepper';
@@ -0,0 +1,3 @@
1
+ export { Stepper } from './stepper';
2
+ export type { StepperProps, StepItem, StepStatus } from './stepper.types';
3
+ export { Stepper as default } from './stepper';
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ import { StepperProps } from './stepper.types';
3
+
4
+ export declare const Stepper: React.FC<StepperProps>;
5
+ export default Stepper;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,9 @@
1
+ export type StepStatus = 'completed' | 'current' | 'pending';
2
+ export interface StepItem {
3
+ label: string;
4
+ status?: StepStatus;
5
+ }
6
+ export interface StepperProps {
7
+ steps: StepItem[];
8
+ activeStep?: number;
9
+ }
@@ -453,5 +453,21 @@ declare const _default: {
453
453
  or: string;
454
454
  and: string;
455
455
  };
456
+ stepper: {
457
+ done: string;
458
+ cart: string;
459
+ payment: string;
460
+ stepC: string;
461
+ stepB: string;
462
+ stepA: string;
463
+ profile: string;
464
+ account: string;
465
+ shipping: string;
466
+ review: string;
467
+ confirmation: string;
468
+ component: string;
469
+ steps: string;
470
+ activeStep: string;
471
+ };
456
472
  };
457
473
  export default _default;