sag_components 2.0.0-beta193 → 2.0.0-beta194

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.
@@ -1,10 +1,15 @@
1
1
  export default ToasterMessageBox;
2
- declare function ToasterMessageBox({ color, messageText, linkText, duration, width, onLinkClick, onClose }: {
2
+ declare function ToasterMessageBox({ color, messageText, linkText, duration, width, icon, onLinkClick, onClose }: {
3
3
  color?: string;
4
4
  messageText?: string;
5
5
  linkText?: string;
6
6
  duration?: number;
7
7
  width?: string;
8
+ icon?: ({ width, height, color, }: {
9
+ width?: string;
10
+ height?: string;
11
+ color?: string;
12
+ }) => import("react/jsx-runtime").JSX.Element;
8
13
  onLinkClick?: () => void;
9
14
  onClose?: () => void;
10
15
  }): import("react/jsx-runtime").JSX.Element;
@@ -45,6 +45,16 @@ declare namespace _default {
45
45
  const description_6: string;
46
46
  export { description_6 as description };
47
47
  }
48
+ namespace icon {
49
+ export const name: string;
50
+ export const options: string[];
51
+ export namespace control_5 {
52
+ const type: string;
53
+ }
54
+ export { control_5 as control };
55
+ const description_7: string;
56
+ export { description_7 as description };
57
+ }
48
58
  }
49
59
  }
50
60
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sag_components",
3
- "version": "2.0.0-beta193",
3
+ "version": "2.0.0-beta194",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",