@thecb/components 9.2.0-beta.8 → 9.2.0-beta.9

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.d.ts CHANGED
@@ -380,9 +380,9 @@ interface UseToastResult {
380
380
  hideToast: () => void;
381
381
  }
382
382
 
383
- declare function useToastNotification({
384
- timeout,
385
- }: UseToastProps): UseToastResult;
383
+ declare function useToastNotification(
384
+ props: UseToastProps
385
+ ): UseToastResult;
386
386
 
387
387
 
388
388
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "9.2.0-beta.8",
3
+ "version": "9.2.0-beta.9",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -18,6 +18,6 @@ export interface UseToastResult {
18
18
  hideToast: () => void;
19
19
  }
20
20
 
21
- export default function useToastNotification({
22
- timeout,
23
- }: UseToastProps): UseToastResult;
21
+ export default function useToastNotification(
22
+ props: UseToastProps
23
+ ): UseToastResult;