@syncfusion/ej2-angular-layouts 24.2.3-ngcc → 24.2.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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/dashboard-layout/dashboardlayout-all.module.mjs +23 -0
- package/esm2020/src/dashboard-layout/dashboardlayout.component.mjs +64 -0
- package/esm2020/src/dashboard-layout/dashboardlayout.module.mjs +34 -0
- package/esm2020/src/dashboard-layout/panels.directive.mjs +72 -0
- package/esm2020/src/index.mjs +10 -0
- package/esm2020/src/splitter/panesettings.directive.mjs +66 -0
- package/esm2020/src/splitter/splitter-all.module.mjs +23 -0
- package/esm2020/src/splitter/splitter.component.mjs +64 -0
- package/esm2020/src/splitter/splitter.module.mjs +34 -0
- package/esm2020/syncfusion-ej2-angular-layouts.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-layouts.mjs +354 -0
- package/fesm2015/syncfusion-ej2-angular-layouts.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-layouts.mjs +354 -0
- package/fesm2020/syncfusion-ej2-angular-layouts.mjs.map +1 -0
- package/package.json +26 -12
- package/src/dashboard-layout/dashboardlayout-all.module.d.ts +6 -0
- package/src/dashboard-layout/dashboardlayout.component.d.ts +3 -0
- package/src/dashboard-layout/dashboardlayout.module.d.ts +7 -0
- package/src/dashboard-layout/panels.directive.d.ts +5 -0
- package/src/splitter/panesettings.directive.d.ts +5 -0
- package/src/splitter/splitter-all.module.d.ts +6 -0
- package/src/splitter/splitter.component.d.ts +3 -0
- package/src/splitter/splitter.module.d.ts +7 -0
- package/syncfusion-ej2-angular-layouts.d.ts +5 -0
- package/@syncfusion/ej2-angular-layouts.es5.js +0 -495
- package/@syncfusion/ej2-angular-layouts.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-layouts.js +0 -447
- package/@syncfusion/ej2-angular-layouts.js.map +0 -1
- package/CHANGELOG.md +0 -575
- package/dist/ej2-angular-layouts.umd.js +0 -522
- package/dist/ej2-angular-layouts.umd.js.map +0 -1
- package/dist/ej2-angular-layouts.umd.min.js +0 -11
- package/dist/ej2-angular-layouts.umd.min.js.map +0 -1
- package/ej2-angular-layouts.d.ts +0 -6
- package/ej2-angular-layouts.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,354 @@
|
|
1
|
+
import { __decorate } from 'tslib';
|
2
|
+
import * as i0 from '@angular/core';
|
3
|
+
import { Directive, ContentChild, ContentChildren, Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
|
4
|
+
import { ComplexBase, setValue, Template, ArrayBase, ComponentBase, ComponentMixins } from '@syncfusion/ej2-angular-base';
|
5
|
+
import { Splitter, DashboardLayout } from '@syncfusion/ej2-layouts';
|
6
|
+
export * from '@syncfusion/ej2-layouts';
|
7
|
+
import { CommonModule } from '@angular/common';
|
8
|
+
|
9
|
+
let input$1 = ['collapsed', 'collapsible', 'content', 'cssClass', 'max', 'min', 'resizable', 'size'];
|
10
|
+
let outputs$3 = [];
|
11
|
+
/**
|
12
|
+
* 'e-panesettings' directive represent a panes of angular splitter
|
13
|
+
* It must be contained in a Splitter component(`ejs-splitter`).
|
14
|
+
* ```html
|
15
|
+
* <ejs-splitter id='splitter' >
|
16
|
+
* <e-panes>
|
17
|
+
* <e-pane size ='150px'></e-pane>
|
18
|
+
* <e-pane size = '20%'></e-pane>
|
19
|
+
* </e-panes>
|
20
|
+
* </ejs-splitter>
|
21
|
+
* ```
|
22
|
+
*/
|
23
|
+
class PaneDirective extends ComplexBase {
|
24
|
+
constructor(viewContainerRef) {
|
25
|
+
super();
|
26
|
+
this.viewContainerRef = viewContainerRef;
|
27
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
28
|
+
this.registerEvents(outputs$3);
|
29
|
+
this.directivePropList = input$1;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
PaneDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PaneDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
33
|
+
PaneDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: PaneDirective, selector: "e-panes>e-pane", inputs: { collapsed: "collapsed", collapsible: "collapsible", content: "content", cssClass: "cssClass", max: "max", min: "min", resizable: "resizable", size: "size" }, queries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true }], usesInheritance: true, ngImport: i0 });
|
34
|
+
__decorate([
|
35
|
+
Template()
|
36
|
+
], PaneDirective.prototype, "content", void 0);
|
37
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PaneDirective, decorators: [{
|
38
|
+
type: Directive,
|
39
|
+
args: [{
|
40
|
+
selector: 'e-panes>e-pane',
|
41
|
+
inputs: input$1,
|
42
|
+
outputs: outputs$3,
|
43
|
+
queries: {}
|
44
|
+
}]
|
45
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { content: [{
|
46
|
+
type: ContentChild,
|
47
|
+
args: ['content']
|
48
|
+
}] } });
|
49
|
+
/**
|
50
|
+
* Pane Array Directive
|
51
|
+
* @private
|
52
|
+
*/
|
53
|
+
class PanesDirective extends ArrayBase {
|
54
|
+
constructor() {
|
55
|
+
super('panesettings');
|
56
|
+
}
|
57
|
+
}
|
58
|
+
PanesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PanesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
59
|
+
PanesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: PanesDirective, selector: "ejs-splitter>e-panes", queries: [{ propertyName: "children", predicate: PaneDirective }], usesInheritance: true, ngImport: i0 });
|
60
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PanesDirective, decorators: [{
|
61
|
+
type: Directive,
|
62
|
+
args: [{
|
63
|
+
selector: 'ejs-splitter>e-panes',
|
64
|
+
queries: {
|
65
|
+
children: new ContentChildren(PaneDirective)
|
66
|
+
},
|
67
|
+
}]
|
68
|
+
}], ctorParameters: function () { return []; } });
|
69
|
+
|
70
|
+
const inputs$1 = ['cssClass', 'enableHtmlSanitizer', 'enablePersistence', 'enableReversePanes', 'enableRtl', 'enabled', 'height', 'locale', 'orientation', 'paneSettings', 'separatorSize', 'width'];
|
71
|
+
const outputs$2 = ['beforeCollapse', 'beforeExpand', 'beforeSanitizeHtml', 'collapsed', 'created', 'expanded', 'resizeStart', 'resizeStop', 'resizing'];
|
72
|
+
const twoWays$1 = [''];
|
73
|
+
/**
|
74
|
+
* Represents the Angular Splitter Component
|
75
|
+
* ```html
|
76
|
+
* <ejs-splitter></ejs-splitter>
|
77
|
+
* ```
|
78
|
+
*/
|
79
|
+
let SplitterComponent = class SplitterComponent extends Splitter {
|
80
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
81
|
+
super();
|
82
|
+
this.ngEle = ngEle;
|
83
|
+
this.srenderer = srenderer;
|
84
|
+
this.viewContainerRef = viewContainerRef;
|
85
|
+
this.injector = injector;
|
86
|
+
this.tags = ['paneSettings'];
|
87
|
+
this.element = this.ngEle.nativeElement;
|
88
|
+
this.injectedModules = this.injectedModules || [];
|
89
|
+
this.registerEvents(outputs$2);
|
90
|
+
this.addTwoWay.call(this, twoWays$1);
|
91
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
92
|
+
this.containerContext = new ComponentBase();
|
93
|
+
}
|
94
|
+
ngOnInit() {
|
95
|
+
this.containerContext.ngOnInit(this);
|
96
|
+
}
|
97
|
+
ngAfterViewInit() {
|
98
|
+
this.containerContext.ngAfterViewInit(this);
|
99
|
+
}
|
100
|
+
ngOnDestroy() {
|
101
|
+
this.containerContext.ngOnDestroy(this);
|
102
|
+
}
|
103
|
+
ngAfterContentChecked() {
|
104
|
+
this.tagObjects[0].instance = this.childPaneSettings;
|
105
|
+
this.containerContext.ngAfterContentChecked(this);
|
106
|
+
}
|
107
|
+
};
|
108
|
+
SplitterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SplitterComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
109
|
+
SplitterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: SplitterComponent, selector: "ejs-splitter", inputs: { cssClass: "cssClass", enableHtmlSanitizer: "enableHtmlSanitizer", enablePersistence: "enablePersistence", enableReversePanes: "enableReversePanes", enableRtl: "enableRtl", enabled: "enabled", height: "height", locale: "locale", orientation: "orientation", paneSettings: "paneSettings", separatorSize: "separatorSize", width: "width" }, outputs: { beforeCollapse: "beforeCollapse", beforeExpand: "beforeExpand", beforeSanitizeHtml: "beforeSanitizeHtml", collapsed: "collapsed", created: "created", expanded: "expanded", resizeStart: "resizeStart", resizeStop: "resizeStop", resizing: "resizing" }, queries: [{ propertyName: "childPaneSettings", first: true, predicate: PanesDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: `<ng-content select='div'></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
110
|
+
SplitterComponent = __decorate([
|
111
|
+
ComponentMixins([ComponentBase])
|
112
|
+
], SplitterComponent);
|
113
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SplitterComponent, decorators: [{
|
114
|
+
type: Component,
|
115
|
+
args: [{
|
116
|
+
selector: 'ejs-splitter',
|
117
|
+
inputs: inputs$1,
|
118
|
+
outputs: outputs$2,
|
119
|
+
template: `<ng-content select='div'></ng-content>`,
|
120
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
121
|
+
queries: {
|
122
|
+
childPaneSettings: new ContentChild(PanesDirective)
|
123
|
+
}
|
124
|
+
}]
|
125
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
|
126
|
+
|
127
|
+
/**
|
128
|
+
* NgModule definition for the Splitter component.
|
129
|
+
*/
|
130
|
+
class SplitterModule {
|
131
|
+
}
|
132
|
+
SplitterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SplitterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
133
|
+
SplitterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SplitterModule, declarations: [SplitterComponent,
|
134
|
+
PaneDirective,
|
135
|
+
PanesDirective], imports: [CommonModule], exports: [SplitterComponent,
|
136
|
+
PaneDirective,
|
137
|
+
PanesDirective] });
|
138
|
+
SplitterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SplitterModule, imports: [[CommonModule]] });
|
139
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SplitterModule, decorators: [{
|
140
|
+
type: NgModule,
|
141
|
+
args: [{
|
142
|
+
imports: [CommonModule],
|
143
|
+
declarations: [
|
144
|
+
SplitterComponent,
|
145
|
+
PaneDirective,
|
146
|
+
PanesDirective
|
147
|
+
],
|
148
|
+
exports: [
|
149
|
+
SplitterComponent,
|
150
|
+
PaneDirective,
|
151
|
+
PanesDirective
|
152
|
+
]
|
153
|
+
}]
|
154
|
+
}] });
|
155
|
+
|
156
|
+
/**
|
157
|
+
* NgModule definition for the Splitter component with providers.
|
158
|
+
*/
|
159
|
+
class SplitterAllModule {
|
160
|
+
}
|
161
|
+
SplitterAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SplitterAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
162
|
+
SplitterAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SplitterAllModule, imports: [CommonModule, SplitterModule], exports: [SplitterModule] });
|
163
|
+
SplitterAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SplitterAllModule, providers: [], imports: [[CommonModule, SplitterModule], SplitterModule] });
|
164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SplitterAllModule, decorators: [{
|
165
|
+
type: NgModule,
|
166
|
+
args: [{
|
167
|
+
imports: [CommonModule, SplitterModule],
|
168
|
+
exports: [
|
169
|
+
SplitterModule
|
170
|
+
],
|
171
|
+
providers: []
|
172
|
+
}]
|
173
|
+
}] });
|
174
|
+
|
175
|
+
let input = ['col', 'content', 'cssClass', 'enabled', 'header', 'id', 'maxSizeX', 'maxSizeY', 'minSizeX', 'minSizeY', 'row', 'sizeX', 'sizeY', 'zIndex'];
|
176
|
+
let outputs$1 = [];
|
177
|
+
/**
|
178
|
+
* 'e-panels' directive represent a panels of angular dashboardlayout
|
179
|
+
* It must be contained in a dashboardlayout component(`ej-dashboardlayout`).
|
180
|
+
* ```html
|
181
|
+
* <ejs-dashboardlayout>
|
182
|
+
* <e-panels>
|
183
|
+
* <e-panel></e-panel>
|
184
|
+
* <e-panel></e-panel>
|
185
|
+
* </e-panels>
|
186
|
+
* </ejs-dashboardlayout>
|
187
|
+
* ```
|
188
|
+
*/
|
189
|
+
class PanelDirective extends ComplexBase {
|
190
|
+
constructor(viewContainerRef) {
|
191
|
+
super();
|
192
|
+
this.viewContainerRef = viewContainerRef;
|
193
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
194
|
+
this.registerEvents(outputs$1);
|
195
|
+
this.directivePropList = input;
|
196
|
+
}
|
197
|
+
}
|
198
|
+
PanelDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PanelDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
199
|
+
PanelDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: PanelDirective, selector: "e-panels>e-panel", inputs: { col: "col", content: "content", cssClass: "cssClass", enabled: "enabled", header: "header", id: "id", maxSizeX: "maxSizeX", maxSizeY: "maxSizeY", minSizeX: "minSizeX", minSizeY: "minSizeY", row: "row", sizeX: "sizeX", sizeY: "sizeY", zIndex: "zIndex" }, queries: [{ propertyName: "header", first: true, predicate: ["header"], descendants: true }, { propertyName: "content", first: true, predicate: ["content"], descendants: true }], usesInheritance: true, ngImport: i0 });
|
200
|
+
__decorate([
|
201
|
+
Template()
|
202
|
+
], PanelDirective.prototype, "header", void 0);
|
203
|
+
__decorate([
|
204
|
+
Template()
|
205
|
+
], PanelDirective.prototype, "content", void 0);
|
206
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PanelDirective, decorators: [{
|
207
|
+
type: Directive,
|
208
|
+
args: [{
|
209
|
+
selector: 'e-panels>e-panel',
|
210
|
+
inputs: input,
|
211
|
+
outputs: outputs$1,
|
212
|
+
queries: {}
|
213
|
+
}]
|
214
|
+
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { header: [{
|
215
|
+
type: ContentChild,
|
216
|
+
args: ['header']
|
217
|
+
}], content: [{
|
218
|
+
type: ContentChild,
|
219
|
+
args: ['content']
|
220
|
+
}] } });
|
221
|
+
/**
|
222
|
+
* Panel Array Directive
|
223
|
+
* @private
|
224
|
+
*/
|
225
|
+
class PanelsDirective extends ArrayBase {
|
226
|
+
constructor() {
|
227
|
+
super('panels');
|
228
|
+
}
|
229
|
+
}
|
230
|
+
PanelsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PanelsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
231
|
+
PanelsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: PanelsDirective, selector: "ejs-dashboardlayout>e-panels", queries: [{ propertyName: "children", predicate: PanelDirective }], usesInheritance: true, ngImport: i0 });
|
232
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: PanelsDirective, decorators: [{
|
233
|
+
type: Directive,
|
234
|
+
args: [{
|
235
|
+
selector: 'ejs-dashboardlayout>e-panels',
|
236
|
+
queries: {
|
237
|
+
children: new ContentChildren(PanelDirective)
|
238
|
+
},
|
239
|
+
}]
|
240
|
+
}], ctorParameters: function () { return []; } });
|
241
|
+
|
242
|
+
const inputs = ['allowDragging', 'allowFloating', 'allowPushing', 'allowResizing', 'cellAspectRatio', 'cellSpacing', 'columns', 'draggableHandle', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'locale', 'mediaQuery', 'panels', 'resizableHandles', 'showGridLines'];
|
243
|
+
const outputs = ['change', 'created', 'destroyed', 'drag', 'dragStart', 'dragStop', 'resize', 'resizeStart', 'resizeStop'];
|
244
|
+
const twoWays = [''];
|
245
|
+
/**
|
246
|
+
* Represents the Essential JS 2 Angular DashboardLayout Component.
|
247
|
+
* ```html
|
248
|
+
* <ejs-dashboardlayout></ejs-dashboardlayout>
|
249
|
+
* ```
|
250
|
+
*/
|
251
|
+
let DashboardLayoutComponent = class DashboardLayoutComponent extends DashboardLayout {
|
252
|
+
constructor(ngEle, srenderer, viewContainerRef, injector) {
|
253
|
+
super();
|
254
|
+
this.ngEle = ngEle;
|
255
|
+
this.srenderer = srenderer;
|
256
|
+
this.viewContainerRef = viewContainerRef;
|
257
|
+
this.injector = injector;
|
258
|
+
this.tags = ['panels'];
|
259
|
+
this.element = this.ngEle.nativeElement;
|
260
|
+
this.injectedModules = this.injectedModules || [];
|
261
|
+
this.registerEvents(outputs);
|
262
|
+
this.addTwoWay.call(this, twoWays);
|
263
|
+
setValue('currentInstance', this, this.viewContainerRef);
|
264
|
+
this.containerContext = new ComponentBase();
|
265
|
+
}
|
266
|
+
ngOnInit() {
|
267
|
+
this.containerContext.ngOnInit(this);
|
268
|
+
}
|
269
|
+
ngAfterViewInit() {
|
270
|
+
this.containerContext.ngAfterViewInit(this);
|
271
|
+
}
|
272
|
+
ngOnDestroy() {
|
273
|
+
this.containerContext.ngOnDestroy(this);
|
274
|
+
}
|
275
|
+
ngAfterContentChecked() {
|
276
|
+
this.tagObjects[0].instance = this.childPanels;
|
277
|
+
this.containerContext.ngAfterContentChecked(this);
|
278
|
+
}
|
279
|
+
};
|
280
|
+
DashboardLayoutComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DashboardLayoutComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
281
|
+
DashboardLayoutComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: DashboardLayoutComponent, selector: "ejs-dashboardlayout", inputs: { allowDragging: "allowDragging", allowFloating: "allowFloating", allowPushing: "allowPushing", allowResizing: "allowResizing", cellAspectRatio: "cellAspectRatio", cellSpacing: "cellSpacing", columns: "columns", draggableHandle: "draggableHandle", enableHtmlSanitizer: "enableHtmlSanitizer", enablePersistence: "enablePersistence", enableRtl: "enableRtl", locale: "locale", mediaQuery: "mediaQuery", panels: "panels", resizableHandles: "resizableHandles", showGridLines: "showGridLines" }, outputs: { change: "change", created: "created", destroyed: "destroyed", drag: "drag", dragStart: "dragStart", dragStop: "dragStop", resize: "resize", resizeStart: "resizeStart", resizeStop: "resizeStop" }, queries: [{ propertyName: "childPanels", first: true, predicate: PanelsDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: `<ng-content select='div'></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
282
|
+
DashboardLayoutComponent = __decorate([
|
283
|
+
ComponentMixins([ComponentBase])
|
284
|
+
], DashboardLayoutComponent);
|
285
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DashboardLayoutComponent, decorators: [{
|
286
|
+
type: Component,
|
287
|
+
args: [{
|
288
|
+
selector: 'ejs-dashboardlayout',
|
289
|
+
inputs: inputs,
|
290
|
+
outputs: outputs,
|
291
|
+
template: `<ng-content select='div'></ng-content>`,
|
292
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
293
|
+
queries: {
|
294
|
+
childPanels: new ContentChild(PanelsDirective)
|
295
|
+
}
|
296
|
+
}]
|
297
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
|
298
|
+
|
299
|
+
/**
|
300
|
+
* NgModule definition for the DashboardLayout component.
|
301
|
+
*/
|
302
|
+
class DashboardLayoutModule {
|
303
|
+
}
|
304
|
+
DashboardLayoutModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DashboardLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
305
|
+
DashboardLayoutModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DashboardLayoutModule, declarations: [DashboardLayoutComponent,
|
306
|
+
PanelDirective,
|
307
|
+
PanelsDirective], imports: [CommonModule], exports: [DashboardLayoutComponent,
|
308
|
+
PanelDirective,
|
309
|
+
PanelsDirective] });
|
310
|
+
DashboardLayoutModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DashboardLayoutModule, imports: [[CommonModule]] });
|
311
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DashboardLayoutModule, decorators: [{
|
312
|
+
type: NgModule,
|
313
|
+
args: [{
|
314
|
+
imports: [CommonModule],
|
315
|
+
declarations: [
|
316
|
+
DashboardLayoutComponent,
|
317
|
+
PanelDirective,
|
318
|
+
PanelsDirective
|
319
|
+
],
|
320
|
+
exports: [
|
321
|
+
DashboardLayoutComponent,
|
322
|
+
PanelDirective,
|
323
|
+
PanelsDirective
|
324
|
+
]
|
325
|
+
}]
|
326
|
+
}] });
|
327
|
+
|
328
|
+
/**
|
329
|
+
* NgModule definition for the DashboardLayout component with providers.
|
330
|
+
*/
|
331
|
+
class DashboardLayoutAllModule {
|
332
|
+
}
|
333
|
+
DashboardLayoutAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DashboardLayoutAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
334
|
+
DashboardLayoutAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DashboardLayoutAllModule, imports: [CommonModule, DashboardLayoutModule], exports: [DashboardLayoutModule] });
|
335
|
+
DashboardLayoutAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DashboardLayoutAllModule, providers: [], imports: [[CommonModule, DashboardLayoutModule], DashboardLayoutModule] });
|
336
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DashboardLayoutAllModule, decorators: [{
|
337
|
+
type: NgModule,
|
338
|
+
args: [{
|
339
|
+
imports: [CommonModule, DashboardLayoutModule],
|
340
|
+
exports: [
|
341
|
+
DashboardLayoutModule
|
342
|
+
],
|
343
|
+
providers: []
|
344
|
+
}]
|
345
|
+
}] });
|
346
|
+
|
347
|
+
// Mapping root file for package generation
|
348
|
+
|
349
|
+
/**
|
350
|
+
* Generated bundle index. Do not edit.
|
351
|
+
*/
|
352
|
+
|
353
|
+
export { DashboardLayoutAllModule, DashboardLayoutComponent, DashboardLayoutModule, PaneDirective, PanelDirective, PanelsDirective, PanesDirective, SplitterAllModule, SplitterComponent, SplitterModule };
|
354
|
+
//# sourceMappingURL=syncfusion-ej2-angular-layouts.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"syncfusion-ej2-angular-layouts.mjs","sources":["../../src/splitter/panesettings.directive.ts","../../src/splitter/splitter.component.ts","../../src/splitter/splitter.module.ts","../../src/splitter/splitter-all.module.ts","../../src/dashboard-layout/panels.directive.ts","../../src/dashboard-layout/dashboardlayout.component.ts","../../src/dashboard-layout/dashboardlayout.module.ts","../../src/dashboard-layout/dashboardlayout-all.module.ts","../../public_api.ts","../../syncfusion-ej2-angular-layouts.ts"],"sourcesContent":["import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet input: string[] = ['collapsed', 'collapsible', 'content', 'cssClass', 'max', 'min', 'resizable', 'size'];\nlet outputs: string[] = [];\n/**\n * 'e-panesettings' directive represent a panes of angular splitter \n * It must be contained in a Splitter component(`ejs-splitter`). \n * ```html\n * <ejs-splitter id='splitter' > \n * <e-panes>\n * <e-pane size ='150px'></e-pane>\n * <e-pane size = '20%'></e-pane>\n * </e-panes>\n * </ejs-splitter>\n * ```\n */\n@Directive({\n selector: 'e-panes>e-pane',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class PaneDirective extends ComplexBase<PaneDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * Specifies whether a pane is collapsed or not collapsed at the initial rendering of splitter.\n * \n * {% codeBlock src='splitter/collapsed/index.md' %}{% endcodeBlock %}\n * \n * @default false\n */\n public collapsed: any;\n /** \n * Specifies whether a pane is collapsible or not collapsible.\n * \n * {% codeBlock src='splitter/collapsible/index.md' %}{% endcodeBlock %}\n * \n * @default false\n */\n public collapsible: any;\n /** \n * Specifies the CSS class names that defines specific user-defined \n * styles and themes to be appended on corresponding pane of the Splitter. \n * It is used to customize the Splitter control panes. \n * One or more custom CSS classes can be specified to the Splitter panes.\n * @default ''\n */\n public cssClass: any;\n /** \n * Specifies the maximum size of a pane. The pane cannot be resized if it is more than the specified maximum limit.\n * @default null\n */\n public max: any;\n /** \n * Specifies the minimum size of a pane. The pane cannot be resized if it is less than the specified minimum size.\n * @default null\n */\n public min: any;\n /** \n * Specifies the value whether a pane is resizable. By default, the Splitter is resizable in all panes. \n * You can disable this for any specific panes using this property.\n * @default true\n */\n public resizable: any;\n /** \n * Configures the properties for each pane.\n * @default ''\n */\n public size: any;\n /** \n * Specifies the content of split pane as plain text, HTML markup, or any other JavaScript controls.\n * @default ''\n * @blazortype string\n */\n @ContentChild('content')\n @Template()\n public content: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * Pane Array Directive\n * @private\n */\n@Directive({\n selector: 'ejs-splitter>e-panes',\n queries: {\n children: new ContentChildren(PaneDirective)\n },\n})\nexport class PanesDirective extends ArrayBase<PanesDirective> {\n constructor() {\n super('panesettings');\n }\n}","import { Component, ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectionStrategy, QueryList, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, ComponentMixins, IComponentBase, applyMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { Splitter } from '@syncfusion/ej2-layouts';\n\nimport { PanesDirective } from './panesettings.directive';\n\nexport const inputs: string[] = ['cssClass','enableHtmlSanitizer','enablePersistence','enableReversePanes','enableRtl','enabled','height','locale','orientation','paneSettings','separatorSize','width'];\nexport const outputs: string[] = ['beforeCollapse','beforeExpand','beforeSanitizeHtml','collapsed','created','expanded','resizeStart','resizeStop','resizing'];\nexport const twoWays: string[] = [''];\n\n/**\n * Represents the Angular Splitter Component\n * ```html\n * <ejs-splitter></ejs-splitter>\n * ```\n */\n@Component({\n selector: 'ejs-splitter',\n inputs: inputs,\n outputs: outputs,\n template: `<ng-content select='div'></ng-content>`,\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childPaneSettings: new ContentChild(PanesDirective)\n }\n})\n@ComponentMixins([ComponentBase])\nexport class SplitterComponent extends Splitter implements IComponentBase {\n public containerContext : any;\n public tagObjects: any;\n\tbeforeCollapse: any;\n\tbeforeExpand: any;\n\tbeforeSanitizeHtml: any;\n\tcollapsed: any;\n\tcreated: any;\n\texpanded: any;\n\tresizeStart: any;\n\tresizeStop: any;\n\tpublic resizing: any;\n public childPaneSettings: QueryList<PanesDirective>;\n public tags: string[] = ['paneSettings'];\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.containerContext = new ComponentBase();\n }\n\n public ngOnInit() {\n this.containerContext.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.containerContext.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.containerContext.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childPaneSettings;\n this.containerContext.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PaneDirective, PanesDirective } from './panesettings.directive';\nimport { SplitterComponent } from './splitter.component';\n\n/**\n * NgModule definition for the Splitter component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n SplitterComponent,\n PaneDirective,\n PanesDirective\n ],\n exports: [\n SplitterComponent,\n PaneDirective,\n PanesDirective\n ]\n})\nexport class SplitterModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PaneDirective, PanesDirective } from './panesettings.directive';\nimport { SplitterComponent } from './splitter.component';\nimport { SplitterModule } from './splitter.module';\n\n\n\n\n\n/**\n * NgModule definition for the Splitter component with providers.\n */\n@NgModule({\n imports: [CommonModule, SplitterModule],\n exports: [\n SplitterModule\n ],\n providers:[\n \n ]\n})\nexport class SplitterAllModule { }","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet input: string[] = ['col', 'content', 'cssClass', 'enabled', 'header', 'id', 'maxSizeX', 'maxSizeY', 'minSizeX', 'minSizeY', 'row', 'sizeX', 'sizeY', 'zIndex'];\nlet outputs: string[] = [];\n/**\n * 'e-panels' directive represent a panels of angular dashboardlayout \n * It must be contained in a dashboardlayout component(`ej-dashboardlayout`). \n * ```html\n * <ejs-dashboardlayout> \n * <e-panels>\n * <e-panel></e-panel>\n * <e-panel></e-panel>\n * </e-panels>\n * </ejs-dashboardlayout>\n * ```\n */\n@Directive({\n selector: 'e-panels>e-panel',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n})\nexport class PanelDirective extends ComplexBase<PanelDirective> {\n public directivePropList: any;\n\t\n\n\n /** \n * Defines the column value where the panel to be placed.\n * @default 0\n * @asptype int\n */\n public col: any;\n /** \n * Defines the CSS class name that can be appended with each panel element.\n * @default ''\n */\n public cssClass: any;\n /** \n * Defines whether to the panel should be enabled or not.\n * @default true\n */\n public enabled: any;\n /** \n * Defines the id of the panel.\n * @default ''\n */\n public id: any;\n /** \n * Specifies the maximum width of the panel in cells count.\n * @default null\n * @asptype int\n */\n public maxSizeX: any;\n /** \n * Specifies the maximum height of the panel in cells count.\n * @default null\n * @asptype int\n\n */\n public maxSizeY: any;\n /** \n * Specifies the minimum width of the panel in cells count.\n * @default 1\n */\n public minSizeX: any;\n /** \n * Specifies the minimum height of the panel in cells count.\n * @default 1\n */\n public minSizeY: any;\n /** \n * Defines a row value where the panel should be placed.\n * @default 0\n * @asptype int\n */\n public row: any;\n /** \n * Specifies the width of the panel in the layout in cells count.\n * @default 1\n */\n public sizeX: any;\n /** \n * Specifies the height of the panel in the layout in cells count.\n * @default 1\n */\n public sizeY: any;\n /** \n * Specifies the z-index of the panel\n * @default 1000\n * @asptype double\n */\n public zIndex: any;\n /** \n * Defines the template value that should be displayed as the panel's header.\n * @asptype string\n */\n @ContentChild('header')\n @Template()\n public header: any;\n /** \n * Defines the template value that should be displayed as the panel's content.\n * @asptype string\n */\n @ContentChild('content')\n @Template()\n public content: any;\n\n constructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\n}\n\n/**\n * Panel Array Directive\n * @private\n */\n@Directive({\n selector: 'ejs-dashboardlayout>e-panels',\n queries: {\n children: new ContentChildren(PanelDirective)\n },\n})\nexport class PanelsDirective extends ArrayBase<PanelsDirective> {\n constructor() {\n super('panels');\n }\n}","import { Component, ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectionStrategy, QueryList, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, ComponentMixins, IComponentBase, applyMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DashboardLayout } from '@syncfusion/ej2-layouts';\n\nimport { PanelsDirective } from './panels.directive';\n\nexport const inputs: string[] = ['allowDragging','allowFloating','allowPushing','allowResizing','cellAspectRatio','cellSpacing','columns','draggableHandle','enableHtmlSanitizer','enablePersistence','enableRtl','locale','mediaQuery','panels','resizableHandles','showGridLines'];\nexport const outputs: string[] = ['change','created','destroyed','drag','dragStart','dragStop','resize','resizeStart','resizeStop'];\nexport const twoWays: string[] = [''];\n\n/**\n * Represents the Essential JS 2 Angular DashboardLayout Component.\n * ```html\n * <ejs-dashboardlayout></ejs-dashboardlayout>\n * ```\n */\n@Component({\n selector: 'ejs-dashboardlayout',\n inputs: inputs,\n outputs: outputs,\n template: `<ng-content select='div'></ng-content>`,\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childPanels: new ContentChild(PanelsDirective)\n }\n})\n@ComponentMixins([ComponentBase])\nexport class DashboardLayoutComponent extends DashboardLayout implements IComponentBase {\n public containerContext : any;\n public tagObjects: any;\n\tchange: any;\n\tcreated: any;\n\tdestroyed: any;\n\tdrag: any;\n\tdragStart: any;\n\tdragStop: any;\n\tresize: any;\n\tresizeStart: any;\n\tpublic resizeStop: any;\n public childPanels: QueryList<PanelsDirective>;\n public tags: string[] = ['panels'];\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.containerContext = new ComponentBase();\n }\n\n public ngOnInit() {\n this.containerContext.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.containerContext.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.containerContext.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childPanels;\n this.containerContext.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PanelDirective, PanelsDirective } from './panels.directive';\nimport { DashboardLayoutComponent } from './dashboardlayout.component';\n\n/**\n * NgModule definition for the DashboardLayout component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n DashboardLayoutComponent,\n PanelDirective,\n PanelsDirective\n ],\n exports: [\n DashboardLayoutComponent,\n PanelDirective,\n PanelsDirective\n ]\n})\nexport class DashboardLayoutModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { PanelDirective, PanelsDirective } from './panels.directive';\nimport { DashboardLayoutComponent } from './dashboardlayout.component';\nimport { DashboardLayoutModule } from './dashboardlayout.module';\n\n\n\n\n\n/**\n * NgModule definition for the DashboardLayout component with providers.\n */\n@NgModule({\n imports: [CommonModule, DashboardLayoutModule],\n exports: [\n DashboardLayoutModule\n ],\n providers:[\n \n ]\n})\nexport class DashboardLayoutAllModule { }","// Mapping root file for package generation\nexport * from './src/index';","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["input","outputs","inputs","twoWays"],"mappings":"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"}
|