@capitaltg/vero 1.8.0 → 1.8.1
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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +49 -44
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -556,6 +556,11 @@ export declare interface StepIndicatorProps<T extends readonly Step[] | Step[] =
|
|
|
556
556
|
* Defaults to 'h4'.
|
|
557
557
|
*/
|
|
558
558
|
headingLevel?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
|
|
559
|
+
/**
|
|
560
|
+
* If false, labels will not be shown below the segments or counter list.
|
|
561
|
+
* Defaults to true.
|
|
562
|
+
*/
|
|
563
|
+
showLabels?: boolean;
|
|
559
564
|
}
|
|
560
565
|
|
|
561
566
|
export declare const Switch: React_2.ForwardRefExoticComponent<SwitchProps & React_2.RefAttributes<HTMLButtonElement>>;
|