@jobber/components 4.23.32 → 4.23.34

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.
@@ -58,19 +58,19 @@ interface BaseConfirmationModalProps {
58
58
  */
59
59
  onRequestClose?(): void;
60
60
  }
61
- interface SimpleConfirmationModalProps extends BaseConfirmationModalProps {
61
+ export interface SimpleConfirmationModalProps extends BaseConfirmationModalProps {
62
62
  readonly open: boolean;
63
63
  readonly confirmLabel: string;
64
64
  }
65
- interface ComplexConfirmationModalProps extends BaseConfirmationModalProps {
65
+ export interface ComplexConfirmationModalProps extends BaseConfirmationModalProps {
66
66
  readonly ref: Ref<ConfirmationModalRef>;
67
67
  readonly open?: undefined;
68
68
  }
69
- interface ChildrenMessage extends BaseConfirmationModalProps {
69
+ export interface ChildrenMessage extends BaseConfirmationModalProps {
70
70
  message?: never;
71
71
  children: ReactNode;
72
72
  }
73
- interface StringMessage extends BaseConfirmationModalProps {
73
+ export interface StringMessage extends BaseConfirmationModalProps {
74
74
  message: string;
75
75
  children?: never;
76
76
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobber/components",
3
- "version": "4.23.32",
3
+ "version": "4.23.34",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -83,5 +83,5 @@
83
83
  "> 1%",
84
84
  "IE 10"
85
85
  ],
86
- "gitHead": "61109165aba3d039ca3ffd6e23aec06139bca550"
86
+ "gitHead": "468cfff2928b7f2338637ddea217ae03729c3d74"
87
87
  }