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 +1 -1
- package/dist/assets/icons/audio.d.ts +1 -0
- package/dist/assets/icons/edit.d.ts +1 -0
- package/dist/assets/icons/gallery.d.ts +1 -0
- package/dist/assets/icons/trash.d.ts +1 -0
- package/dist/assets/icons/video.d.ts +1 -0
- package/dist/components/popover/popover.d.ts +14 -0
- package/dist/image-salon-sdk.js +1312 -1183
- package/dist/image-salon-sdk.umd.cjs +4 -5
- package/dist/style.css +1 -1
- package/dist/types/image-salon-types.d.ts +1 -1
- package/dist/utils/folder.d.ts +2 -0
- package/package.json +1 -1
- package/dist/assets/icons/cloud-upload.d.ts +0 -1
- /package/dist/{components → utils}/generic-grpc-authorization.d.ts +0 -0
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?:
|
|
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;
|