@pepperi-addons/ngx-composite-lib 0.4.2-beta.66 → 0.4.2-beta.67
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/esm2020/layout-builder/layout-builder.component.mjs +3 -3
- package/esm2020/layout-builder/layout-builder.service.mjs +10 -3
- package/esm2020/layout-builder/section/section.component.mjs +2 -2
- package/esm2020/layout-builder/section-block/section-block.component.mjs +3 -3
- package/fesm2015/pepperi-addons-ngx-composite-lib-layout-builder.mjs +15 -8
- package/fesm2015/pepperi-addons-ngx-composite-lib-layout-builder.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-composite-lib-layout-builder.mjs +15 -8
- package/fesm2020/pepperi-addons-ngx-composite-lib-layout-builder.mjs.map +1 -1
- package/layout-builder/layout-builder.service.d.ts +3 -2
- package/package.json +1 -1
|
@@ -22,7 +22,7 @@ export declare class PepLayoutBuilderService {
|
|
|
22
22
|
get screenSizeChange$(): Observable<PepScreenSizeType>;
|
|
23
23
|
private _screenWidthSubject;
|
|
24
24
|
get screenWidthChange$(): Observable<string>;
|
|
25
|
-
|
|
25
|
+
protected _editorSubject: BehaviorSubject<IEditor | null>;
|
|
26
26
|
get editorChange$(): Observable<IEditor | null>;
|
|
27
27
|
private _sectionsColumnsDropListSubject;
|
|
28
28
|
get sectionsColumnsDropListChange$(): Observable<any[]>;
|
|
@@ -71,8 +71,9 @@ export declare class PepLayoutBuilderService {
|
|
|
71
71
|
notifySectionsColumnsDropListChange(sectionsColumnsDropList: any[]): void;
|
|
72
72
|
notifyPreviewModeChange(value: boolean): void;
|
|
73
73
|
notifyLockScreen(value: boolean): void;
|
|
74
|
+
updateCurrentEditorTitle(title: string): void;
|
|
74
75
|
setAvailableBlocksToDrag(availableBlocksForDrag: Array<IPepDraggableItem>): void;
|
|
75
|
-
getBlockEditor
|
|
76
|
+
private getBlockEditor;
|
|
76
77
|
getScreenType(size: PepScreenSizeType): DataViewScreenSize;
|
|
77
78
|
getSectionColumnKey(sectionKey?: string, index?: string): string;
|
|
78
79
|
getIsHidden(hideIn: DataViewScreenSize[] | undefined, currentScreenType: DataViewScreenSize): boolean;
|