@jobber/components 4.23.23 → 4.23.24

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.
@@ -6,7 +6,15 @@ interface BaseToastProps {
6
6
  readonly id?: number;
7
7
  }
8
8
  interface ActionToastProps extends BaseToastProps {
9
+ /**
10
+ * **Deprecated**: action will be removed in the next major version
11
+ * @deprecated
12
+ */
9
13
  action(): void;
14
+ /**
15
+ * **Deprecated**: actionLabel will be removed in the next major version
16
+ * @deprecated
17
+ */
10
18
  actionLabel: string;
11
19
  }
12
20
  export type ToastProps = XOR<BaseToastProps, ActionToastProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobber/components",
3
- "version": "4.23.23",
3
+ "version": "4.23.24",
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": "45e371b4ec93e59f06d8dc6e3e830ca572230acf"
86
+ "gitHead": "9d507eff9b65307c0fdf8decab79618597a50130"
87
87
  }