@veevarts/design-system 1.0.0-alpha.30 → 1.0.0-alpha.31
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.cjs +6 -6
- package/dist/index.js +820 -817
- package/dist/patterns/Stepper/Stepper.d.ts +12 -0
- package/package.json +1 -1
|
@@ -112,6 +112,18 @@ export interface StepperProps extends React.HTMLAttributes<HTMLElement> {
|
|
|
112
112
|
* ```
|
|
113
113
|
*/
|
|
114
114
|
onStepChange?: (stepIndex: number) => void;
|
|
115
|
+
/**
|
|
116
|
+
* Whether the stepper is disabled.
|
|
117
|
+
* When disabled, steps cannot be clicked.
|
|
118
|
+
*
|
|
119
|
+
* @default false
|
|
120
|
+
*
|
|
121
|
+
* @example
|
|
122
|
+
* ```tsx
|
|
123
|
+
* <Stepper isDisabled stepsCount={3} />
|
|
124
|
+
* ```
|
|
125
|
+
*/
|
|
126
|
+
isDisabled?: boolean;
|
|
115
127
|
}
|
|
116
128
|
/**
|
|
117
129
|
* Stepper - A horizontal progress indicator for multi-step processes.
|