@digipair/skill-web-editor 0.8.13 → 0.8.15
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/index.cjs.js +0 -2
- package/index.cjs2.js +27 -534
- package/index.esm.js +1 -1
- package/index.esm2.js +28 -533
- package/libs/skill-web-editor/src/index.d.ts +0 -1
- package/libs/skill-web-editor/src/lib/editor.element.d.ts +2 -3
- package/libs/skill-web-editor/src/lib/skill-web-editor.d.ts +1 -3
- package/package.json +1 -1
|
@@ -5,11 +5,11 @@ export declare class EditorElement extends LitElement {
|
|
|
5
5
|
menuColor: string;
|
|
6
6
|
menuBackgroundColor: string;
|
|
7
7
|
contentStyle: string;
|
|
8
|
-
|
|
8
|
+
canSave: boolean;
|
|
9
|
+
codeInWorkspace: any;
|
|
9
10
|
private workspace;
|
|
10
11
|
private blocks;
|
|
11
12
|
private toolbox;
|
|
12
|
-
private codeInWorkspace;
|
|
13
13
|
private librariesToLoad;
|
|
14
14
|
createRenderRoot(): this;
|
|
15
15
|
connectedCallback(): void;
|
|
@@ -18,7 +18,6 @@ export declare class EditorElement extends LitElement {
|
|
|
18
18
|
private getLibraries;
|
|
19
19
|
private loadScene;
|
|
20
20
|
private verifyCanSaveAndGetCode;
|
|
21
|
-
private saveScene;
|
|
22
21
|
private loadBlockly;
|
|
23
22
|
render(): TemplateResult;
|
|
24
23
|
}
|
|
@@ -1,3 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const information: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<void>;
|
|
3
|
-
export declare const error: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<void>;
|
|
1
|
+
export * from './editor.element';
|