@hexure/ui 1.13.65 → 1.13.67

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.
@@ -4,6 +4,10 @@ export interface StepProps {
4
4
  complete?: boolean;
5
5
  active?: boolean;
6
6
  percentComplete?: number;
7
+ extraProps?: {
8
+ title: string;
9
+ onClick?: () => void;
10
+ };
7
11
  }
8
12
  export interface ProgressBarProps {
9
13
  steps: StepProps[];
package/dist/index.d.ts CHANGED
@@ -468,6 +468,10 @@ interface StepProps {
468
468
  complete?: boolean;
469
469
  active?: boolean;
470
470
  percentComplete?: number;
471
+ extraProps?: {
472
+ title: string;
473
+ onClick?: () => void;
474
+ };
471
475
  }
472
476
  interface ProgressBarProps {
473
477
  steps: StepProps[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hexure/ui",
3
- "version": "1.13.65",
3
+ "version": "1.13.67",
4
4
  "description": "A library of shared UI components used within Hexure products.",
5
5
  "scripts": {
6
6
  "rollup": "rollup -c rollup.config.mjs",