nectiasw 0.0.74 → 0.0.76

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.
@@ -0,0 +1,13 @@
1
+ import { default as React } from 'react';
2
+
3
+ export interface StepperProps {
4
+ steps: Step[];
5
+ currentStep: number;
6
+ onStepChange: (step: number) => void;
7
+ canProceed: boolean[];
8
+ }
9
+ export interface Step {
10
+ id: number;
11
+ label: string;
12
+ }
13
+ export declare const Stepper: React.FC<StepperProps>;
@@ -0,0 +1,10 @@
1
+ export declare const classes: {
2
+ container: string;
3
+ lastItem: string;
4
+ stepItem: string;
5
+ stepItemDisabled: string;
6
+ label: string;
7
+ button: {
8
+ index: string;
9
+ };
10
+ };
package/dist/index.d.ts CHANGED
@@ -113,3 +113,4 @@ export { Timeline } from './components/Timeline';
113
113
  export type { TimelineProps, TimelineDashedProps, } from './components/Timeline/types';
114
114
  export { Dragarea } from './components/Dragarea';
115
115
  export type { DragareaProps } from './components/Dragarea/types';
116
+ export { Stepper, type StepperProps, type Step } from './components/Stepper';