@firestitch/content 12.3.1 → 12.3.3
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/app/modules/content-pages/components/content-page-editor/content-page-editor.component.d.ts +2 -1
- package/app/modules/editor/components/editor/editor.component.d.ts +2 -0
- package/app/modules/editor/components/editor-label/editor-label.component.d.ts +7 -0
- package/app/modules/editor/components/editor-label/index.d.ts +1 -0
- package/app/modules/editor/fs-content-editor.module.d.ts +18 -17
- package/bundles/firestitch-content.umd.js +131 -99
- package/bundles/firestitch-content.umd.js.map +1 -1
- package/esm2015/app/modules/content-pages/components/content-page-editor/content-page-editor.component.js +14 -9
- package/esm2015/app/modules/editor/components/editor/editor.component.js +12 -8
- package/esm2015/app/modules/editor/components/editor-label/editor-label.component.js +21 -0
- package/esm2015/app/modules/editor/components/editor-label/index.js +2 -0
- package/esm2015/app/modules/editor/fs-content-editor.module.js +5 -2
- package/fesm2015/firestitch-content.js +74 -45
- package/fesm2015/firestitch-content.js.map +1 -1
- package/package.json +1 -1
package/app/modules/content-pages/components/content-page-editor/content-page-editor.component.d.ts
CHANGED
@@ -32,6 +32,7 @@ export declare class ContentPageEditorComponent implements OnInit, OnDestroy {
|
|
32
32
|
globalScss: boolean;
|
33
33
|
};
|
34
34
|
get isMac(): boolean;
|
35
|
+
submitting: boolean;
|
35
36
|
private _destroy$;
|
36
37
|
constructor(_data: {
|
37
38
|
contentPage: any;
|
@@ -42,7 +43,7 @@ export declare class ContentPageEditorComponent implements OnInit, OnDestroy {
|
|
42
43
|
ngOnDestroy(): void;
|
43
44
|
_initContentPage(contentPage: any): void;
|
44
45
|
editorFocused(type: any): void;
|
45
|
-
save: () => import("rxjs").
|
46
|
+
save: () => import("rxjs").Subscription;
|
46
47
|
saveContentPage(): import("rxjs").Observable<import("../../../../interfaces").FsContentPage>;
|
47
48
|
close(): void;
|
48
49
|
openSettings(): void;
|
@@ -23,6 +23,7 @@ export declare class EditorComponent implements OnInit, OnDestroy {
|
|
23
23
|
blured: EventEmitter<string>;
|
24
24
|
changes: any;
|
25
25
|
EditorType: typeof EditorType;
|
26
|
+
focusedArea: string;
|
26
27
|
contentStyle: {
|
27
28
|
scss?: string;
|
28
29
|
};
|
@@ -42,6 +43,7 @@ export declare class EditorComponent implements OnInit, OnDestroy {
|
|
42
43
|
initTextEditors(): void;
|
43
44
|
initGlobalContentStyle(): void;
|
44
45
|
saveGlobalScss(): import("rxjs").Observable<import("../../../../interfaces").FsContentStyle>;
|
46
|
+
private _onFocus;
|
45
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<EditorComponent, never>;
|
46
48
|
static ɵcmp: i0.ɵɵComponentDeclaration<EditorComponent, "app-editor", never, { "showHtml": "showHtml"; "showScss": "showScss"; "showJs": "showJs"; "showGlobalScss": "showGlobalScss"; "html": "html"; "scss": "scss"; "js": "js"; "contentConfig": "contentConfig"; }, { "changed": "changed"; "focused": "focused"; "blured": "blured"; }, never, never>;
|
47
49
|
}
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class EditorLabelComponent {
|
3
|
+
changed: boolean;
|
4
|
+
focused: boolean;
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EditorLabelComponent, never>;
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EditorLabelComponent, "app-editor-label", never, { "changed": "changed"; "focused": "focused"; }, {}, never, ["*"]>;
|
7
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './editor-label.component';
|
@@ -1,23 +1,24 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
import * as i1 from "./components/editor/editor.component";
|
3
|
-
import * as i2 from "
|
4
|
-
import * as i3 from "@angular/
|
5
|
-
import * as i4 from "@angular/
|
6
|
-
import * as i5 from "@angular/material/
|
7
|
-
import * as i6 from "@angular/material/
|
8
|
-
import * as i7 from "@angular/material/
|
9
|
-
import * as i8 from "@angular/material/
|
10
|
-
import * as i9 from "@
|
11
|
-
import * as i10 from "@firestitch/
|
12
|
-
import * as i11 from "@firestitch/
|
13
|
-
import * as i12 from "@firestitch/
|
14
|
-
import * as i13 from "@firestitch/
|
15
|
-
import * as i14 from "@firestitch/
|
16
|
-
import * as i15 from "@firestitch/
|
17
|
-
import * as i16 from "@firestitch/
|
18
|
-
import * as i17 from "
|
3
|
+
import * as i2 from "./components/editor-label/editor-label.component";
|
4
|
+
import * as i3 from "@angular/common";
|
5
|
+
import * as i4 from "@angular/forms";
|
6
|
+
import * as i5 from "@angular/material/dialog";
|
7
|
+
import * as i6 from "@angular/material/button";
|
8
|
+
import * as i7 from "@angular/material/tabs";
|
9
|
+
import * as i8 from "@angular/material/icon";
|
10
|
+
import * as i9 from "@angular/material/button-toggle";
|
11
|
+
import * as i10 from "@firestitch/list";
|
12
|
+
import * as i11 from "@firestitch/form";
|
13
|
+
import * as i12 from "@firestitch/skeleton";
|
14
|
+
import * as i13 from "@firestitch/label";
|
15
|
+
import * as i14 from "@firestitch/html-editor";
|
16
|
+
import * as i15 from "@firestitch/common";
|
17
|
+
import * as i16 from "@firestitch/dialog";
|
18
|
+
import * as i17 from "@firestitch/text-editor";
|
19
|
+
import * as i18 from "angular-split";
|
19
20
|
export declare class FsContentEditorModule {
|
20
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<FsContentEditorModule, never>;
|
21
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FsContentEditorModule, [typeof i1.EditorComponent], [typeof
|
22
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FsContentEditorModule, [typeof i1.EditorComponent, typeof i2.EditorLabelComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.MatDialogModule, typeof i6.MatButtonModule, typeof i7.MatTabsModule, typeof i8.MatIconModule, typeof i9.MatButtonToggleModule, typeof i10.FsListModule, typeof i11.FsFormModule, typeof i12.FsSkeletonModule, typeof i13.FsLabelModule, typeof i14.FsHtmlEditorModule, typeof i15.FsCommonModule, typeof i16.FsDialogModule, typeof i17.FsTextEditorModule, typeof i18.AngularSplitModule], [typeof i1.EditorComponent]>;
|
22
23
|
static ɵinj: i0.ɵɵInjectorDeclaration<FsContentEditorModule>;
|
23
24
|
}
|