@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.
@@ -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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@veevarts/design-system",
3
3
  "private": false,
4
- "version": "1.0.0-alpha.30",
4
+ "version": "1.0.0-alpha.31",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",