image-salon-sdk 1.0.22 → 1.0.23

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/README.md CHANGED
@@ -67,7 +67,7 @@ parameters for create method
67
67
  parentContainerId: string; //id of the container where you want to load message snippet.
68
68
  buttonText?: string;
69
69
  buttonStyle?: object; // style css object
70
- buttonIcon?: node; // node component to render icon
70
+ buttonIcon?: string; // pass svg as string
71
71
  buttonClass?: string;
72
72
  ```
73
73
 
@@ -0,0 +1 @@
1
+ export declare function audioIcon(): SVGSVGElement;
@@ -0,0 +1 @@
1
+ export declare function editIcon(): SVGSVGElement;
@@ -0,0 +1 @@
1
+ export declare function galleryIcon(): SVGSVGElement;
@@ -0,0 +1 @@
1
+ export declare function trashIcon(): SVGSVGElement;
@@ -0,0 +1 @@
1
+ export declare function videoIcon(): SVGSVGElement;
@@ -0,0 +1,14 @@
1
+ interface PopoverOptions {
2
+ mainContainer: HTMLElement;
3
+ content: string | HTMLElement;
4
+ divId: string;
5
+ }
6
+ declare class Popover {
7
+ main: HTMLElement;
8
+ dialogBody: HTMLElement;
9
+ constructor();
10
+ show(options: PopoverOptions): void;
11
+ hide(): void;
12
+ }
13
+ declare const HpPopover: Popover;
14
+ export default HpPopover;