@veevarts/design-system 1.14.0-alpha.2 → 1.14.0-alpha.3
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 +4 -4
- package/dist/index.js +1199 -1184
- package/dist/patterns/Stepper/Stepper.d.ts +13 -0
- package/package.json +1 -1
|
@@ -30,6 +30,19 @@ export interface StepperProps extends React.HTMLAttributes<HTMLElement> {
|
|
|
30
30
|
* ```
|
|
31
31
|
*/
|
|
32
32
|
stepLabels?: string[];
|
|
33
|
+
/**
|
|
34
|
+
* Whether to show a tooltip with the step label on each step.
|
|
35
|
+
* Tooltip content comes from `stepLabels[stepIndex]`.
|
|
36
|
+
*
|
|
37
|
+
* @default false
|
|
38
|
+
*/
|
|
39
|
+
showStepLabelTooltip?: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Placement for the optional step label tooltip.
|
|
42
|
+
*
|
|
43
|
+
* @default "top"
|
|
44
|
+
*/
|
|
45
|
+
stepLabelTooltipPlacement?: 'top' | 'bottom' | 'left' | 'right';
|
|
33
46
|
/**
|
|
34
47
|
* Whether to render a step counter like "Step 1 of 6".
|
|
35
48
|
*
|