@pepperi-addons/ngx-composite-lib 0.4.2-beta.194 → 0.4.2-beta.197
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/color-settings/color-settings.component.mjs +1 -1
- package/esm2020/icon-picker/icon-picker.component.mjs +1 -1
- package/esm2020/layout-builder/main-editor/main-editor.component.mjs +1 -1
- package/esm2020/layout-builder/section-editor/section-editor.component.mjs +1 -1
- package/esm2020/layout-builder2/hide-in/hide-in.component.mjs +54 -0
- package/esm2020/layout-builder2/hide-in/hide-in.module.mjs +81 -0
- package/esm2020/layout-builder2/layout/layout.component.mjs +266 -0
- package/esm2020/layout-builder2/layout/layout.module.mjs +55 -0
- package/esm2020/layout-builder2/layout-builder-editor/layout-builder-editor.component.mjs +25 -0
- package/esm2020/layout-builder2/layout-builder-editor/layout-builder-editor.module.mjs +45 -0
- package/esm2020/layout-builder2/layout-builder-internal.service.mjs +639 -0
- package/esm2020/layout-builder2/layout-builder.component.mjs +357 -0
- package/esm2020/layout-builder2/layout-builder.model.mjs +2 -0
- package/esm2020/layout-builder2/layout-builder.module.mjs +145 -0
- package/esm2020/layout-builder2/layout-builder.service.mjs +49 -0
- package/esm2020/layout-builder2/layout-content.directive.mjs +13 -0
- package/esm2020/layout-builder2/main-editor/main-editor.component.mjs +170 -0
- package/esm2020/layout-builder2/main-editor/main-editor.module.mjs +99 -0
- package/esm2020/layout-builder2/pepperi-addons-ngx-composite-lib-layout-builder2.mjs +5 -0
- package/esm2020/layout-builder2/public-api.mjs +13 -0
- package/esm2020/layout-builder2/section/section.component.mjs +382 -0
- package/esm2020/layout-builder2/section/section.module.mjs +44 -0
- package/esm2020/layout-builder2/section-block/section-block.component.mjs +172 -0
- package/esm2020/layout-builder2/section-block/section-block.module.mjs +34 -0
- package/esm2020/layout-builder2/section-editor/section-editor.component.mjs +204 -0
- package/esm2020/layout-builder2/section-editor/section-editor.module.mjs +48 -0
- package/esm2020/padding-settings/padding-settings.component.mjs +1 -1
- package/esm2020/shadow-settings/shadow-settings.component.mjs +1 -1
- package/fesm2015/pepperi-addons-ngx-composite-lib-color-settings.mjs +1 -1
- package/fesm2015/pepperi-addons-ngx-composite-lib-color-settings.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-composite-lib-icon-picker.mjs +1 -1
- package/fesm2015/pepperi-addons-ngx-composite-lib-icon-picker.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-composite-lib-layout-builder.mjs +2 -2
- package/fesm2015/pepperi-addons-ngx-composite-lib-layout-builder.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-composite-lib-layout-builder2.mjs +2755 -0
- package/fesm2015/pepperi-addons-ngx-composite-lib-layout-builder2.mjs.map +1 -0
- package/fesm2015/pepperi-addons-ngx-composite-lib-padding-settings.mjs +1 -1
- package/fesm2015/pepperi-addons-ngx-composite-lib-padding-settings.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-composite-lib-shadow-settings.mjs +1 -1
- package/fesm2015/pepperi-addons-ngx-composite-lib-shadow-settings.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-composite-lib-color-settings.mjs +1 -1
- package/fesm2020/pepperi-addons-ngx-composite-lib-color-settings.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-composite-lib-icon-picker.mjs +1 -1
- package/fesm2020/pepperi-addons-ngx-composite-lib-icon-picker.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-composite-lib-layout-builder.mjs +2 -2
- package/fesm2020/pepperi-addons-ngx-composite-lib-layout-builder.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-composite-lib-layout-builder2.mjs +2717 -0
- package/fesm2020/pepperi-addons-ngx-composite-lib-layout-builder2.mjs.map +1 -0
- package/fesm2020/pepperi-addons-ngx-composite-lib-padding-settings.mjs +1 -1
- package/fesm2020/pepperi-addons-ngx-composite-lib-padding-settings.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-composite-lib-shadow-settings.mjs +1 -1
- package/fesm2020/pepperi-addons-ngx-composite-lib-shadow-settings.mjs.map +1 -1
- package/layout-builder2/hide-in/hide-in.component.d.ts +25 -0
- package/layout-builder2/hide-in/hide-in.component.theme.scss +9 -0
- package/layout-builder2/hide-in/hide-in.module.d.ts +20 -0
- package/layout-builder2/index.d.ts +5 -0
- package/layout-builder2/layout/layout.component.d.ts +58 -0
- package/layout-builder2/layout/layout.module.d.ts +16 -0
- package/layout-builder2/layout-builder-editor/layout-builder-editor.component.d.ts +12 -0
- package/layout-builder2/layout-builder-editor/layout-builder-editor.module.d.ts +14 -0
- package/layout-builder2/layout-builder-internal.service.d.ts +118 -0
- package/layout-builder2/layout-builder.component.d.ts +87 -0
- package/layout-builder2/layout-builder.component.theme.scss +57 -0
- package/layout-builder2/layout-builder.model.d.ts +43 -0
- package/layout-builder2/layout-builder.module.d.ts +33 -0
- package/layout-builder2/layout-builder.service.d.ts +24 -0
- package/layout-builder2/layout-content.directive.d.ts +5 -0
- package/layout-builder2/main-editor/main-editor.component.d.ts +52 -0
- package/layout-builder2/main-editor/main-editor.module.d.ts +27 -0
- package/layout-builder2/public-api.d.ts +9 -0
- package/layout-builder2/section/section.component.d.ts +86 -0
- package/layout-builder2/section/section.component.theme.scss +115 -0
- package/layout-builder2/section/section.module.d.ts +14 -0
- package/layout-builder2/section-block/section-block.component.d.ts +48 -0
- package/layout-builder2/section-block/section-block.component.theme.scss +13 -0
- package/layout-builder2/section-block/section-block.module.d.ts +11 -0
- package/layout-builder2/section-editor/section-editor.component.d.ts +56 -0
- package/layout-builder2/section-editor/section-editor.module.d.ts +15 -0
- package/package.json +10 -2
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { PageBlockContainer, PageLayout, PageSection, PageSectionColumn, PageSizeType } from "@pepperi-addons/papi-sdk";
|
|
2
|
+
import { IPepDraggableItem } from "@pepperi-addons/ngx-lib/draggable-items";
|
|
3
|
+
import { TemplateRef } from "@angular/core";
|
|
4
|
+
export declare type PepLayoutSizeType = PageSizeType;
|
|
5
|
+
export interface IPepLayoutView {
|
|
6
|
+
Layout: IPepLayout;
|
|
7
|
+
}
|
|
8
|
+
export interface IPepLayout extends PageLayout {
|
|
9
|
+
Sections: IPepLayoutSection[];
|
|
10
|
+
VerticalSpacing?: PepLayoutSizeType;
|
|
11
|
+
HorizontalSpacing?: PepLayoutSizeType;
|
|
12
|
+
SectionsGap?: PepLayoutSizeType;
|
|
13
|
+
ColumnsGap?: PepLayoutSizeType;
|
|
14
|
+
}
|
|
15
|
+
export interface IPepLayoutSection extends PageSection {
|
|
16
|
+
Columns: IPepLayoutSectionColumn[];
|
|
17
|
+
ColumnsGap?: PepLayoutSizeType;
|
|
18
|
+
}
|
|
19
|
+
export interface IPepLayoutSectionColumn extends PageSectionColumn {
|
|
20
|
+
BlockContainer?: IPepLayoutBlockContainer;
|
|
21
|
+
}
|
|
22
|
+
export declare type IPepLayoutBlockContainer = PageBlockContainer;
|
|
23
|
+
export interface IPepLayoutBlockConfig {
|
|
24
|
+
navigateToEditorAfterBlockAdded?: boolean;
|
|
25
|
+
blocksLimitNumber?: number;
|
|
26
|
+
getBlockTitle?: (blockKey: string) => string;
|
|
27
|
+
}
|
|
28
|
+
export interface IPepLayoutBlockAddedEvent {
|
|
29
|
+
BlockKey: string;
|
|
30
|
+
DraggableItem: IPepDraggableItem;
|
|
31
|
+
}
|
|
32
|
+
export interface IEditor {
|
|
33
|
+
id: string;
|
|
34
|
+
title: string;
|
|
35
|
+
type: PepLayoutEditorType;
|
|
36
|
+
hostObject?: any;
|
|
37
|
+
}
|
|
38
|
+
export declare type PepLayoutEditorType = 'layout-builder' | 'section' | 'block';
|
|
39
|
+
export interface IPepEditorTab {
|
|
40
|
+
key: string;
|
|
41
|
+
title: string;
|
|
42
|
+
templateRef: TemplateRef<any> | undefined;
|
|
43
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { PepIconRegistry } from '@pepperi-addons/ngx-lib/icon';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./layout-builder.component";
|
|
4
|
+
import * as i2 from "./layout-content.directive";
|
|
5
|
+
import * as i3 from "@angular/common";
|
|
6
|
+
import * as i4 from "@angular/cdk/drag-drop";
|
|
7
|
+
import * as i5 from "@angular/material/core";
|
|
8
|
+
import * as i6 from "@angular/material/tabs";
|
|
9
|
+
import * as i7 from "@pepperi-addons/ngx-lib";
|
|
10
|
+
import * as i8 from "@pepperi-addons/ngx-lib/dialog";
|
|
11
|
+
import * as i9 from "@pepperi-addons/ngx-lib/icon";
|
|
12
|
+
import * as i10 from "@pepperi-addons/ngx-lib/page-layout";
|
|
13
|
+
import * as i11 from "@pepperi-addons/ngx-lib/side-bar";
|
|
14
|
+
import * as i12 from "@pepperi-addons/ngx-lib/button";
|
|
15
|
+
import * as i13 from "@pepperi-addons/ngx-lib/checkbox";
|
|
16
|
+
import * as i14 from "@pepperi-addons/ngx-lib/textbox";
|
|
17
|
+
import * as i15 from "@pepperi-addons/ngx-lib/select";
|
|
18
|
+
import * as i16 from "@pepperi-addons/ngx-lib/size-detector";
|
|
19
|
+
import * as i17 from "@pepperi-addons/ngx-lib/group-buttons";
|
|
20
|
+
import * as i18 from "@pepperi-addons/ngx-lib/draggable-items";
|
|
21
|
+
import * as i19 from "@pepperi-addons/ngx-composite-lib/group-buttons-settings";
|
|
22
|
+
import * as i20 from "./hide-in/hide-in.module";
|
|
23
|
+
import * as i21 from "./layout/layout.module";
|
|
24
|
+
import * as i22 from "./main-editor/main-editor.module";
|
|
25
|
+
import * as i23 from "./section-editor/section-editor.module";
|
|
26
|
+
import * as i24 from "./layout-builder-editor/layout-builder-editor.module";
|
|
27
|
+
export declare class PepLayoutBuilderModule2 {
|
|
28
|
+
private pepIconRegistry;
|
|
29
|
+
constructor(pepIconRegistry: PepIconRegistry);
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PepLayoutBuilderModule2, never>;
|
|
31
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PepLayoutBuilderModule2, [typeof i1.PepLayoutBuilder2Component, typeof i2.PepLayoutContentDirective], [typeof i3.CommonModule, typeof i4.DragDropModule, typeof i5.MatCommonModule, typeof i6.MatTabsModule, typeof i7.PepNgxLibModule, typeof i8.PepDialogModule, typeof i9.PepIconModule, typeof i10.PepPageLayoutModule, typeof i11.PepSideBarModule, typeof i12.PepButtonModule, typeof i13.PepCheckboxModule, typeof i14.PepTextboxModule, typeof i15.PepSelectModule, typeof i16.PepSizeDetectorModule, typeof i17.PepGroupButtonsModule, typeof i18.PepDraggableItemsModule, typeof i19.PepGroupButtonsSettingsModule, typeof i20.HideInModule, typeof i21.PepLayout2Module, typeof i22.MainEditorModule, typeof i23.SectionEditorModule, typeof i24.PepLayoutBuilderEditorModule], [typeof i1.PepLayoutBuilder2Component, typeof i2.PepLayoutContentDirective, typeof i21.PepLayout2Module, typeof i24.PepLayoutBuilderEditorModule]>;
|
|
32
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PepLayoutBuilderModule2>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { DataViewScreenSize } from "@pepperi-addons/papi-sdk";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PepLayoutBuilderService {
|
|
4
|
+
constructor();
|
|
5
|
+
getIsHidden(hideIn: DataViewScreenSize[] | undefined, currentScreenType: DataViewScreenSize): boolean;
|
|
6
|
+
/**
|
|
7
|
+
* Deprecated
|
|
8
|
+
*/
|
|
9
|
+
getCurrentScreenType(): DataViewScreenSize;
|
|
10
|
+
/**
|
|
11
|
+
* Deprecated
|
|
12
|
+
*/
|
|
13
|
+
getEditableState(): boolean;
|
|
14
|
+
/**
|
|
15
|
+
* Deprecated
|
|
16
|
+
*/
|
|
17
|
+
showSkeleton(show: boolean): void;
|
|
18
|
+
/**
|
|
19
|
+
* Deprecated
|
|
20
|
+
*/
|
|
21
|
+
lockScreen(lock: boolean): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PepLayoutBuilderService, never>;
|
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PepLayoutBuilderService>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class PepLayoutContentDirective {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PepLayoutContentDirective, never>;
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PepLayoutContentDirective, "[layout-content]", never, {}, {}, never, never, false>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { CdkDragEnd, CdkDragStart } from '@angular/cdk/drag-drop';
|
|
2
|
+
import { ElementRef, Renderer2 } from '@angular/core';
|
|
3
|
+
import { AfterViewChecked, EventEmitter, OnInit } from '@angular/core';
|
|
4
|
+
import { BaseDestroyerDirective } from '@pepperi-addons/ngx-lib';
|
|
5
|
+
import { IPepDraggableItem } from '@pepperi-addons/ngx-lib/draggable-items';
|
|
6
|
+
import { PepLayoutSizeType } from '../layout-builder.model';
|
|
7
|
+
import { ILayoutEditor } from '../layout-builder-internal.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class MainEditorComponent extends BaseDestroyerDirective implements AfterViewChecked, OnInit {
|
|
10
|
+
private hostElement;
|
|
11
|
+
private renderer;
|
|
12
|
+
private layoutEditorTopHost?;
|
|
13
|
+
availableBlocksContainer: ElementRef;
|
|
14
|
+
availableBlocksForDrag: Array<IPepDraggableItem>;
|
|
15
|
+
sectionsColumnsDropList: never[];
|
|
16
|
+
private _layoutEditorTopElement;
|
|
17
|
+
set layoutEditorTopElement(value: HTMLElement | null);
|
|
18
|
+
get layoutEditorTopElement(): HTMLElement | null;
|
|
19
|
+
private _hostObject;
|
|
20
|
+
set hostObject(value: ILayoutEditor);
|
|
21
|
+
get hostObject(): ILayoutEditor;
|
|
22
|
+
hostObjectChange: EventEmitter<ILayoutEditor>;
|
|
23
|
+
addSectionClick: EventEmitter<void>;
|
|
24
|
+
onBlockDragStart: EventEmitter<CdkDragStart>;
|
|
25
|
+
onBlockDragEnd: EventEmitter<CdkDragEnd>;
|
|
26
|
+
protected isFullWidth: boolean;
|
|
27
|
+
protected maxWidth: number;
|
|
28
|
+
protected horizontalSpacing: PepLayoutSizeType;
|
|
29
|
+
protected verticalSpacing: PepLayoutSizeType;
|
|
30
|
+
protected sectionsGap: PepLayoutSizeType;
|
|
31
|
+
protected columnsGap: PepLayoutSizeType;
|
|
32
|
+
protected roundedCorners: PepLayoutSizeType;
|
|
33
|
+
protected availableBlocksContainerId: string;
|
|
34
|
+
protected showTopContent: boolean;
|
|
35
|
+
constructor(hostElement: ElementRef, renderer: Renderer2);
|
|
36
|
+
private mountLayoutEditorTopElement;
|
|
37
|
+
private updateHostObject;
|
|
38
|
+
ngOnInit(): void;
|
|
39
|
+
ngAfterViewChecked(): void;
|
|
40
|
+
onAddSectionClick(event: any): void;
|
|
41
|
+
isFullWidthChange(isChecked: boolean): void;
|
|
42
|
+
onMaxWidthChange(maxWidth: string): void;
|
|
43
|
+
setColumnsHorizntalGap(key: string): void;
|
|
44
|
+
setColumnsVerticalGap(key: string): void;
|
|
45
|
+
setSectionGap(key: string): void;
|
|
46
|
+
setColumnsGap(key: string): void;
|
|
47
|
+
setRoundedCorners(key: string): void;
|
|
48
|
+
onDragStart(event: CdkDragStart): void;
|
|
49
|
+
onDragEnd(event: CdkDragEnd): void;
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MainEditorComponent, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MainEditorComponent, "main-editor", never, { "availableBlocksForDrag": "availableBlocksForDrag"; "sectionsColumnsDropList": "sectionsColumnsDropList"; "layoutEditorTopElement": "layoutEditorTopElement"; "hostObject": "hostObject"; }, { "hostObjectChange": "hostObjectChange"; "addSectionClick": "addSectionClick"; "onBlockDragStart": "onBlockDragStart"; "onBlockDragEnd": "onBlockDragEnd"; }, never, never, false>;
|
|
52
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./main-editor.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/common/http";
|
|
5
|
+
import * as i4 from "@angular/cdk/drag-drop";
|
|
6
|
+
import * as i5 from "@angular/cdk/overlay";
|
|
7
|
+
import * as i6 from "@angular/material/tabs";
|
|
8
|
+
import * as i7 from "@angular/material/slider";
|
|
9
|
+
import * as i8 from "@pepperi-addons/ngx-lib";
|
|
10
|
+
import * as i9 from "@pepperi-addons/ngx-lib/select";
|
|
11
|
+
import * as i10 from "@pepperi-addons/ngx-lib/textbox";
|
|
12
|
+
import * as i11 from "@pepperi-addons/ngx-lib/button";
|
|
13
|
+
import * as i12 from "@pepperi-addons/ngx-lib/checkbox";
|
|
14
|
+
import * as i13 from "@pepperi-addons/ngx-lib/group-buttons";
|
|
15
|
+
import * as i14 from "@pepperi-addons/ngx-lib/color";
|
|
16
|
+
import * as i15 from "@pepperi-addons/ngx-lib/image";
|
|
17
|
+
import * as i16 from "@pepperi-addons/ngx-composite-lib/group-buttons-settings";
|
|
18
|
+
import * as i17 from "@pepperi-addons/ngx-lib/draggable-items";
|
|
19
|
+
import * as i18 from "@pepperi-addons/ngx-lib/dialog";
|
|
20
|
+
import * as i19 from "../layout-builder-editor/layout-builder-editor.module";
|
|
21
|
+
import * as i20 from "@ngx-translate/core";
|
|
22
|
+
export declare class MainEditorModule {
|
|
23
|
+
constructor();
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MainEditorModule, never>;
|
|
25
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MainEditorModule, [typeof i1.MainEditorComponent], [typeof i2.CommonModule, typeof i3.HttpClientModule, typeof i4.DragDropModule, typeof i5.OverlayModule, typeof i6.MatTabsModule, typeof i7.MatSliderModule, typeof i8.PepNgxLibModule, typeof i9.PepSelectModule, typeof i10.PepTextboxModule, typeof i11.PepButtonModule, typeof i12.PepCheckboxModule, typeof i13.PepGroupButtonsModule, typeof i14.PepColorModule, typeof i15.PepImageModule, typeof i16.PepGroupButtonsSettingsModule, typeof i17.PepDraggableItemsModule, typeof i18.PepDialogModule, typeof i19.PepLayoutBuilderEditorModule, typeof i20.TranslateModule], [typeof i1.MainEditorComponent]>;
|
|
26
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MainEditorModule>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './layout-builder.module';
|
|
2
|
+
export * from './layout-builder.model';
|
|
3
|
+
export * from './layout-builder.service';
|
|
4
|
+
export * from './layout-builder.component';
|
|
5
|
+
export * from './layout-content.directive';
|
|
6
|
+
export * from './layout-builder-editor/layout-builder-editor.module';
|
|
7
|
+
export * from './layout-builder-editor/layout-builder-editor.component';
|
|
8
|
+
export * from './layout/layout.module';
|
|
9
|
+
export * from './layout/layout.component';
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { ElementRef, OnInit, QueryList, Renderer2, TemplateRef } from '@angular/core';
|
|
2
|
+
import { CdkDrag, CdkDragDrop, CdkDragEnd, CdkDragEnter, CdkDragExit, CdkDragStart, CdkDropList } from '@angular/cdk/drag-drop';
|
|
3
|
+
import { DataViewScreenSize, SplitType } from '@pepperi-addons/papi-sdk';
|
|
4
|
+
import { BaseDestroyerDirective, PepScreenSizeType } from '@pepperi-addons/ngx-lib';
|
|
5
|
+
import { LayoutBuilderInternalService } from '../layout-builder-internal.service';
|
|
6
|
+
import { IPepLayoutSectionColumn, PepLayoutSizeType } from '../layout-builder.model';
|
|
7
|
+
import { PepPaddingSettings } from '@pepperi-addons/ngx-composite-lib/padding-settings';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class SectionComponent extends BaseDestroyerDirective implements OnInit {
|
|
10
|
+
private renderer;
|
|
11
|
+
private layoutBuilderInternalService;
|
|
12
|
+
sectionContainerRef: ElementRef;
|
|
13
|
+
columnsElementRef: QueryList<ElementRef>;
|
|
14
|
+
blockTemplate: TemplateRef<any> | undefined;
|
|
15
|
+
blockTemplateRenderer: ((host: HTMLElement, blockKey: string) => void) | null;
|
|
16
|
+
blockTemplateUnmount: ((host: HTMLElement) => void) | null;
|
|
17
|
+
key: string;
|
|
18
|
+
name: string;
|
|
19
|
+
private _split;
|
|
20
|
+
set split(value: SplitType | undefined);
|
|
21
|
+
get split(): SplitType | undefined;
|
|
22
|
+
private _height;
|
|
23
|
+
set height(value: number | undefined);
|
|
24
|
+
get height(): number | undefined;
|
|
25
|
+
private _collapseOnTablet;
|
|
26
|
+
set collapseOnTablet(value: boolean);
|
|
27
|
+
get collapseOnTablet(): boolean;
|
|
28
|
+
private _padding;
|
|
29
|
+
set padding(value: PepPaddingSettings | undefined);
|
|
30
|
+
get padding(): PepPaddingSettings;
|
|
31
|
+
private _columns;
|
|
32
|
+
set columns(value: Array<IPepLayoutSectionColumn>);
|
|
33
|
+
get columns(): Array<IPepLayoutSectionColumn>;
|
|
34
|
+
private _hideIn;
|
|
35
|
+
set hideIn(value: DataViewScreenSize[]);
|
|
36
|
+
get hideIn(): DataViewScreenSize[];
|
|
37
|
+
columnsGap: PepLayoutSizeType;
|
|
38
|
+
styleMaxHeight: string;
|
|
39
|
+
styleHeight: string;
|
|
40
|
+
protected sectionsColumnsDropList: string[];
|
|
41
|
+
protected get editable(): boolean;
|
|
42
|
+
private _screenSize;
|
|
43
|
+
protected set screenSize(value: PepScreenSizeType);
|
|
44
|
+
protected get screenSize(): PepScreenSizeType;
|
|
45
|
+
protected sectionColumnKeyPrefix: string;
|
|
46
|
+
protected isMainEditorState: boolean;
|
|
47
|
+
protected isEditing: boolean;
|
|
48
|
+
protected selectedSectionKey: string;
|
|
49
|
+
protected selectedBlockKey: string;
|
|
50
|
+
protected containsBlocks: boolean;
|
|
51
|
+
protected shouldSetDefaultHeight: boolean;
|
|
52
|
+
protected pepScreenSizeToFlipToVertical: PepScreenSizeType;
|
|
53
|
+
protected screenType: DataViewScreenSize;
|
|
54
|
+
protected hideForCurrentScreenType: boolean;
|
|
55
|
+
protected draggingBlockKey: string;
|
|
56
|
+
protected draggingSectionKey: string;
|
|
57
|
+
protected hoverState: boolean;
|
|
58
|
+
protected isHorizontalView: boolean;
|
|
59
|
+
constructor(renderer: Renderer2, layoutBuilderInternalService: LayoutBuilderInternalService);
|
|
60
|
+
private calculateIfSectionContainsBlocks;
|
|
61
|
+
private setScreenType;
|
|
62
|
+
private setIfHideForCurrentScreenType;
|
|
63
|
+
private getCssGridColumn;
|
|
64
|
+
private setSectionColumnStyle;
|
|
65
|
+
private refreshSplit;
|
|
66
|
+
private setStyleHeight;
|
|
67
|
+
getIsDragging(): boolean;
|
|
68
|
+
getIsHidden(hideIn: DataViewScreenSize[] | undefined, currentScreenType: DataViewScreenSize): boolean;
|
|
69
|
+
ngOnInit(): void;
|
|
70
|
+
onEditSectionClick(): void;
|
|
71
|
+
onRemoveSectionClick(): void;
|
|
72
|
+
onHideSectionChange(hideIn: DataViewScreenSize[]): void;
|
|
73
|
+
onHideInMenuOpened(): void;
|
|
74
|
+
onHideInMenuClosed(): void;
|
|
75
|
+
onBlockDropped(event: CdkDragDrop<IPepLayoutSectionColumn, any, any>): void;
|
|
76
|
+
canDropPredicate(columnIndex: number): (drag: CdkDrag, drop: CdkDropList) => boolean;
|
|
77
|
+
onDragStart(event: CdkDragStart): void;
|
|
78
|
+
onDragEnd(event: CdkDragEnd): void;
|
|
79
|
+
onSectionBlockDragExited(event: CdkDragExit): void;
|
|
80
|
+
onSectionBlockDragEntered(event: CdkDragEnter): void;
|
|
81
|
+
getPadding(): {
|
|
82
|
+
padding: string;
|
|
83
|
+
};
|
|
84
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SectionComponent, never>;
|
|
85
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SectionComponent, "section", never, { "blockTemplate": "blockTemplate"; "blockTemplateRenderer": "blockTemplateRenderer"; "blockTemplateUnmount": "blockTemplateUnmount"; "key": "key"; "name": "name"; "split": "split"; "height": "height"; "collapseOnTablet": "collapseOnTablet"; "padding": "padding"; "columns": "columns"; "hideIn": "hideIn"; "columnsGap": "columnsGap"; }, {}, never, never, false>;
|
|
86
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
@use '@pepperi-addons/ngx-lib/src/core/style/abstracts/mixins' as ngx-mixins;
|
|
2
|
+
@use '@pepperi-addons/ngx-lib/src/core/style/abstracts/functions' as ngx-functions;
|
|
3
|
+
|
|
4
|
+
@use '../mixins.scss' as mix;
|
|
5
|
+
|
|
6
|
+
.section-container {
|
|
7
|
+
// background: ngx-functions.get-pep-color(color-system-primary-invert, color-base);
|
|
8
|
+
background: transparent;
|
|
9
|
+
|
|
10
|
+
// This css is only for edit mode.
|
|
11
|
+
&.editable-state {
|
|
12
|
+
$color-caution: ngx-functions.get-pep-color(color-text, color-caution);
|
|
13
|
+
$color-system-primary: ngx-functions.get-pep-color(color-system-primary, color-base);
|
|
14
|
+
|
|
15
|
+
&.active-section {
|
|
16
|
+
background: ngx-functions.get-pep-color(color-system-primary-invert, color-base);
|
|
17
|
+
@include ngx-mixins.focus();
|
|
18
|
+
|
|
19
|
+
.columns-wrapper {
|
|
20
|
+
background: ngx-functions.get-pep-color(color-system-primary-invert, color-base);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// For section hidden state
|
|
25
|
+
&.section-hidden-state {
|
|
26
|
+
// If the current section is not active (his editor after edit click)
|
|
27
|
+
&:not(.active-section) {
|
|
28
|
+
@include ngx-mixins.pep-cross-hatch();
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// Only in main editor state show focus colors.
|
|
33
|
+
&.main-editor-state {
|
|
34
|
+
&.cdk-drag-preview {
|
|
35
|
+
@include ngx-mixins.focus(false, $color-caution, mix.$border-width);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
&.cdk-drag-placeholder {
|
|
39
|
+
@include ngx-mixins.focus();
|
|
40
|
+
|
|
41
|
+
&:hover,
|
|
42
|
+
&.show-hover-state {
|
|
43
|
+
@include ngx-mixins.focus(true);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&:hover,
|
|
48
|
+
&.show-hover-state {
|
|
49
|
+
&:not(.section-is-dragging) {
|
|
50
|
+
@include ngx-mixins.focus(false, $color-caution, mix.$border-width);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.section-toolbar {
|
|
55
|
+
::ng-deep.pep-draggable-item-container {
|
|
56
|
+
@include ngx-mixins.focus(false, $color-caution, mix.$border-width);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.section-background {
|
|
62
|
+
.back-template {
|
|
63
|
+
background-color: #BEC3E5;
|
|
64
|
+
@include mix.dash-border(border-right, mix.$border-width, $color-system-primary);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.columns-wrapper {
|
|
69
|
+
.section-column {
|
|
70
|
+
@include mix.dash-border(border, mix.$border-width, $color-system-primary);
|
|
71
|
+
|
|
72
|
+
&.active-column {
|
|
73
|
+
background: ngx-functions.get-pep-color(color-system-primary-invert, color-base);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
// &.cdk-drop-list-receivin - can recive block
|
|
77
|
+
// &.cdk-drop-list-dragging - the block is dragging on this area.
|
|
78
|
+
&.cdk-drop-list-dragging {
|
|
79
|
+
@include ngx-mixins.focus();
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// When section column already contains block show on hover caution focus.
|
|
83
|
+
&.already-contains-block {
|
|
84
|
+
&:hover {
|
|
85
|
+
@include ngx-mixins.focus(false, $color-caution);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// Only if there is no gap remove the double border.
|
|
91
|
+
&.gap-none {
|
|
92
|
+
.section-column {
|
|
93
|
+
// Remove the border for no dupplicate.
|
|
94
|
+
&:not(&:first-of-type) {
|
|
95
|
+
&.horizontal {
|
|
96
|
+
border-left: unset;
|
|
97
|
+
|
|
98
|
+
&.cdk-drop-list-dragging {
|
|
99
|
+
@include mix.dash-border(border-left, mix.$border-width, $color-system-primary);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
&.vertical {
|
|
104
|
+
border-top: unset;
|
|
105
|
+
|
|
106
|
+
&.cdk-drop-list-dragging {
|
|
107
|
+
@include mix.dash-border(border-top, mix.$border-width, $color-system-primary);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./section.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/cdk/drag-drop";
|
|
5
|
+
import * as i4 from "@pepperi-addons/ngx-lib/button";
|
|
6
|
+
import * as i5 from "../section-block/section-block.module";
|
|
7
|
+
import * as i6 from "../hide-in/hide-in.module";
|
|
8
|
+
import * as i7 from "@pepperi-addons/ngx-lib/draggable-items";
|
|
9
|
+
import * as i8 from "@ngx-translate/core";
|
|
10
|
+
export declare class SectionModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SectionModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SectionModule, [typeof i1.SectionComponent], [typeof i2.CommonModule, typeof i3.DragDropModule, typeof i4.PepButtonModule, typeof i5.SectionBlockModule, typeof i6.HideInModule, typeof i7.PepDraggableItemsModule, typeof i8.TranslateModule], [typeof i1.SectionComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SectionModule>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { AfterViewInit, EventEmitter, OnChanges, OnInit, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
|
+
import { CdkDragEnd, CdkDragEnter, CdkDragExit, CdkDragStart } from '@angular/cdk/drag-drop';
|
|
3
|
+
import { DataViewScreenSize } from '@pepperi-addons/papi-sdk';
|
|
4
|
+
import { BaseDestroyerDirective } from '@pepperi-addons/ngx-lib';
|
|
5
|
+
import { LayoutBuilderInternalService } from '../layout-builder-internal.service';
|
|
6
|
+
import { IPepLayoutBlockContainer } from '../layout-builder.model';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class SectionBlockComponent extends BaseDestroyerDirective implements OnInit, OnChanges, AfterViewInit {
|
|
9
|
+
private layoutBuilderInternalService;
|
|
10
|
+
blockTemplate: TemplateRef<any> | undefined;
|
|
11
|
+
blockTemplateRenderer: ((host: HTMLElement, blockKey: string) => void) | null;
|
|
12
|
+
blockTemplateUnmount: ((host: HTMLElement) => void) | null;
|
|
13
|
+
sectionKey: string;
|
|
14
|
+
sectionHeight: string;
|
|
15
|
+
isMainEditorState: boolean;
|
|
16
|
+
editable: boolean;
|
|
17
|
+
active: boolean;
|
|
18
|
+
private blockTemplateHost?;
|
|
19
|
+
private viewInitialized;
|
|
20
|
+
private _blockContainer;
|
|
21
|
+
set blockContainer(value: IPepLayoutBlockContainer | undefined);
|
|
22
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
23
|
+
ngAfterViewInit(): void;
|
|
24
|
+
ngOnDestroy(): void;
|
|
25
|
+
private renderExternalTemplateIfNeeded;
|
|
26
|
+
private unmountExternalTemplate;
|
|
27
|
+
get blockContainer(): IPepLayoutBlockContainer | undefined;
|
|
28
|
+
private _screenType;
|
|
29
|
+
set screenType(value: DataViewScreenSize);
|
|
30
|
+
get screenType(): DataViewScreenSize;
|
|
31
|
+
dragExited: EventEmitter<CdkDragExit>;
|
|
32
|
+
dragEntered: EventEmitter<CdkDragEnter>;
|
|
33
|
+
protected hideForCurrentScreenType: boolean;
|
|
34
|
+
protected blockTitle: string;
|
|
35
|
+
private lastRenderedBlockKey;
|
|
36
|
+
constructor(layoutBuilderInternalService: LayoutBuilderInternalService);
|
|
37
|
+
private setIfHideForCurrentScreenType;
|
|
38
|
+
ngOnInit(): void;
|
|
39
|
+
onEditBlockClick(): void;
|
|
40
|
+
onRemoveBlockClick(): void;
|
|
41
|
+
onHideBlockChange(hideIn: DataViewScreenSize[]): void;
|
|
42
|
+
onDragStart(event: CdkDragStart): void;
|
|
43
|
+
onDragEnd(event: CdkDragEnd): void;
|
|
44
|
+
onDragExited(event: CdkDragExit): void;
|
|
45
|
+
onDragEntered(event: CdkDragEnter): void;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SectionBlockComponent, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SectionBlockComponent, "section-block", never, { "blockTemplate": "blockTemplate"; "blockTemplateRenderer": "blockTemplateRenderer"; "blockTemplateUnmount": "blockTemplateUnmount"; "sectionKey": "sectionKey"; "sectionHeight": "sectionHeight"; "isMainEditorState": "isMainEditorState"; "editable": "editable"; "active": "active"; "blockContainer": "blockContainer"; "screenType": "screenType"; }, { "dragExited": "dragExited"; "dragEntered": "dragEntered"; }, never, never, false>;
|
|
48
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
@use '@pepperi-addons/ngx-lib/src/core/style/abstracts/mixins' as ngx-mixins;
|
|
2
|
+
|
|
3
|
+
.section-block-container {
|
|
4
|
+
&.editable-state {
|
|
5
|
+
|
|
6
|
+
// If the current block is not active (his editor after edit click)
|
|
7
|
+
&.block-hidden-state {
|
|
8
|
+
&:not(.active-block) {
|
|
9
|
+
@include ngx-mixins.pep-cross-hatch();
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./section-block.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/cdk/drag-drop";
|
|
5
|
+
import * as i4 from "@pepperi-addons/ngx-lib/button";
|
|
6
|
+
import * as i5 from "@pepperi-addons/ngx-lib/draggable-items";
|
|
7
|
+
export declare class SectionBlockModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SectionBlockModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SectionBlockModule, [typeof i1.SectionBlockComponent], [typeof i2.CommonModule, typeof i3.DragDropModule, typeof i4.PepButtonModule, typeof i5.PepDraggableItemsModule], [typeof i1.SectionBlockComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SectionBlockModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import { IPepOption } from '@pepperi-addons/ngx-lib';
|
|
4
|
+
import { SplitType } from '@pepperi-addons/papi-sdk';
|
|
5
|
+
import { PepDialogService } from '@pepperi-addons/ngx-lib/dialog';
|
|
6
|
+
import { ILayoutSectionEditor } from '../layout-builder-internal.service';
|
|
7
|
+
import { PepPaddingSettings } from '@pepperi-addons/ngx-composite-lib/padding-settings';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export interface ISplitOption {
|
|
10
|
+
key: SplitType;
|
|
11
|
+
value: string;
|
|
12
|
+
}
|
|
13
|
+
export interface IAllSplitOption {
|
|
14
|
+
key: string;
|
|
15
|
+
value: Array<ISplitOption>;
|
|
16
|
+
}
|
|
17
|
+
export declare class SectionEditorComponent implements OnInit {
|
|
18
|
+
private translate;
|
|
19
|
+
private dialog;
|
|
20
|
+
readonly MIN_HEIGHT = 40;
|
|
21
|
+
private _hostObject;
|
|
22
|
+
set hostObject(value: ILayoutSectionEditor);
|
|
23
|
+
get hostObject(): ILayoutSectionEditor;
|
|
24
|
+
sectionName: string;
|
|
25
|
+
private _split;
|
|
26
|
+
set split(value: SplitType | undefined);
|
|
27
|
+
get split(): SplitType | undefined;
|
|
28
|
+
isAutoHeight: boolean;
|
|
29
|
+
height: number;
|
|
30
|
+
hostObjectChange: EventEmitter<ILayoutSectionEditor>;
|
|
31
|
+
collapseOnTablet: boolean;
|
|
32
|
+
fillHeight: boolean;
|
|
33
|
+
subSections: boolean;
|
|
34
|
+
partsNumber: string;
|
|
35
|
+
partsNumberOptions: IPepOption[];
|
|
36
|
+
splitOptions: ISplitOption[];
|
|
37
|
+
allSplitOptions: IAllSplitOption[];
|
|
38
|
+
padding: PepPaddingSettings;
|
|
39
|
+
constructor(translate: TranslateService, dialog: PepDialogService);
|
|
40
|
+
private initData;
|
|
41
|
+
private loadSplitOptions;
|
|
42
|
+
private updateHostObject;
|
|
43
|
+
ngOnInit(): void;
|
|
44
|
+
isAutoHeightChange(isChecked: boolean): void;
|
|
45
|
+
onHeightChange(height: number): void;
|
|
46
|
+
onSectionNameChange(value: string): void;
|
|
47
|
+
onCollapseOnTabletChange(value: boolean): void;
|
|
48
|
+
onFillHeightChange(value: boolean): void;
|
|
49
|
+
onPaddingChange(value: PepPaddingSettings): void;
|
|
50
|
+
onSubSectionsChange(value: boolean): void;
|
|
51
|
+
onPartsNumberChange(key: string): void;
|
|
52
|
+
showDeleteSectionMsg(continueCB: () => void, cancelCB: () => void): void;
|
|
53
|
+
onSplitChange(key: string): void;
|
|
54
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SectionEditorComponent, never>;
|
|
55
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SectionEditorComponent, "section-editor", never, { "hostObject": "hostObject"; }, { "hostObjectChange": "hostObjectChange"; }, never, never, false>;
|
|
56
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./section-editor.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@pepperi-addons/ngx-lib/button";
|
|
5
|
+
import * as i4 from "@pepperi-addons/ngx-lib/textbox";
|
|
6
|
+
import * as i5 from "@pepperi-addons/ngx-lib/select";
|
|
7
|
+
import * as i6 from "@pepperi-addons/ngx-lib/checkbox";
|
|
8
|
+
import * as i7 from "../layout-builder-editor/layout-builder-editor.module";
|
|
9
|
+
import * as i8 from "@pepperi-addons/ngx-composite-lib/padding-settings";
|
|
10
|
+
import * as i9 from "@ngx-translate/core";
|
|
11
|
+
export declare class SectionEditorModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SectionEditorModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SectionEditorModule, [typeof i1.SectionEditorComponent], [typeof i2.CommonModule, typeof i3.PepButtonModule, typeof i4.PepTextboxModule, typeof i5.PepSelectModule, typeof i6.PepCheckboxModule, typeof i7.PepLayoutBuilderEditorModule, typeof i8.PepPaddingSettingsModule, typeof i9.TranslateModule], [typeof i1.SectionEditorComponent]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SectionEditorModule>;
|
|
15
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pepperi-addons/ngx-composite-lib",
|
|
3
|
-
"version": "0.4.2-beta.
|
|
3
|
+
"version": "0.4.2-beta.197",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/animations": ">= 14.0.2",
|
|
6
6
|
"@angular/cdk": ">= 14.0.2",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"@angular/platform-browser-dynamic": ">= 14.0.2",
|
|
14
14
|
"@ngx-translate/core": ">= ^14.0.0",
|
|
15
15
|
"@ngx-translate/http-loader": ">= ^7.0.0",
|
|
16
|
-
"@pepperi-addons/ngx-lib": ">=
|
|
16
|
+
"@pepperi-addons/ngx-lib": ">=0.4.2-beta.302",
|
|
17
17
|
"@pepperi-addons/papi-sdk": ">= 1.81.25",
|
|
18
18
|
"ngx-translate-multi-http-loader": ">= ^3.0.0",
|
|
19
19
|
"rxjs": ">= 6.5.5"
|
|
@@ -139,6 +139,14 @@
|
|
|
139
139
|
"node": "./fesm2015/pepperi-addons-ngx-composite-lib-layout-builder.mjs",
|
|
140
140
|
"default": "./fesm2020/pepperi-addons-ngx-composite-lib-layout-builder.mjs"
|
|
141
141
|
},
|
|
142
|
+
"./layout-builder2": {
|
|
143
|
+
"types": "./layout-builder2/index.d.ts",
|
|
144
|
+
"esm2020": "./esm2020/layout-builder2/pepperi-addons-ngx-composite-lib-layout-builder2.mjs",
|
|
145
|
+
"es2020": "./fesm2020/pepperi-addons-ngx-composite-lib-layout-builder2.mjs",
|
|
146
|
+
"es2015": "./fesm2015/pepperi-addons-ngx-composite-lib-layout-builder2.mjs",
|
|
147
|
+
"node": "./fesm2015/pepperi-addons-ngx-composite-lib-layout-builder2.mjs",
|
|
148
|
+
"default": "./fesm2020/pepperi-addons-ngx-composite-lib-layout-builder2.mjs"
|
|
149
|
+
},
|
|
142
150
|
"./manage-parameters": {
|
|
143
151
|
"types": "./manage-parameters/index.d.ts",
|
|
144
152
|
"esm2020": "./esm2020/manage-parameters/pepperi-addons-ngx-composite-lib-manage-parameters.mjs",
|