@streamoid/photogenix-chat 0.1.0
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 +42 -0
- package/dist/index.js +34776 -0
- package/package.json +38 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
declare class PhotogenixEditorElement extends HTMLElement {
|
|
2
|
+
private _root;
|
|
3
|
+
private _shadow;
|
|
4
|
+
workspaceId: string;
|
|
5
|
+
userId: string;
|
|
6
|
+
email: string;
|
|
7
|
+
conversationId: string;
|
|
8
|
+
isActive: boolean;
|
|
9
|
+
submitted?: boolean;
|
|
10
|
+
submittedValues?: Record<string, unknown>;
|
|
11
|
+
uiProps: Record<string, unknown>;
|
|
12
|
+
meta?: Record<string, unknown>;
|
|
13
|
+
constructor();
|
|
14
|
+
connectedCallback(): void;
|
|
15
|
+
disconnectedCallback(): void;
|
|
16
|
+
/** Re-render when the host updates properties via Object.assign(). */
|
|
17
|
+
update(): void;
|
|
18
|
+
private _render;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
declare const photogenixManifest: {
|
|
22
|
+
readonly name: "photogenix:editor";
|
|
23
|
+
readonly aliases: readonly ["photogenixEditOptions", "M2MphotogenixEditOptions", "Man2MphotogenixEditOptions", "F2MphotogenixEditOptions", "AdCreatorphotogenixEditOptions", "SwatchPhotogenixEditOptions", "ProductphotogenixEditOptions"];
|
|
24
|
+
readonly service: "photogenix";
|
|
25
|
+
readonly description: "Photogenix photo editing studio for the chat host";
|
|
26
|
+
readonly containerStyle: {
|
|
27
|
+
readonly width: "780px";
|
|
28
|
+
readonly height: "480px";
|
|
29
|
+
readonly borderRadius: "8px";
|
|
30
|
+
readonly border: "1px solid #e5e7eb";
|
|
31
|
+
readonly overflow: "hidden";
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
declare const COMPONENT_EVENTS: {
|
|
36
|
+
readonly READY: "component:ready";
|
|
37
|
+
readonly SUBMIT: "component:submit";
|
|
38
|
+
readonly CANCEL: "component:cancel";
|
|
39
|
+
readonly RESIZE: "component:resize";
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
export { COMPONENT_EVENTS, PhotogenixEditorElement, photogenixManifest };
|