@syncfusion/ej2-angular-layouts 24.2.3 → 24.2.4-ngcc

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.
Files changed (40) hide show
  1. package/@syncfusion/ej2-angular-layouts.es5.js +495 -0
  2. package/@syncfusion/ej2-angular-layouts.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-layouts.js +447 -0
  4. package/@syncfusion/ej2-angular-layouts.js.map +1 -0
  5. package/CHANGELOG.md +581 -0
  6. package/dist/ej2-angular-layouts.umd.js +522 -0
  7. package/dist/ej2-angular-layouts.umd.js.map +1 -0
  8. package/dist/ej2-angular-layouts.umd.min.js +11 -0
  9. package/dist/ej2-angular-layouts.umd.min.js.map +1 -0
  10. package/ej2-angular-layouts.d.ts +6 -0
  11. package/ej2-angular-layouts.metadata.json +1 -0
  12. package/package.json +13 -27
  13. package/postinstall/tagchange.js +18 -0
  14. package/schematics/utils/lib-details.d.ts +2 -2
  15. package/schematics/utils/lib-details.js +2 -2
  16. package/schematics/utils/lib-details.ts +2 -2
  17. package/src/dashboard-layout/dashboardlayout-all.module.d.ts +0 -6
  18. package/src/dashboard-layout/dashboardlayout.component.d.ts +0 -3
  19. package/src/dashboard-layout/dashboardlayout.module.d.ts +0 -7
  20. package/src/dashboard-layout/panels.directive.d.ts +0 -5
  21. package/src/splitter/panesettings.directive.d.ts +0 -5
  22. package/src/splitter/splitter-all.module.d.ts +0 -6
  23. package/src/splitter/splitter.component.d.ts +0 -3
  24. package/src/splitter/splitter.module.d.ts +0 -7
  25. package/esm2020/public_api.mjs +0 -3
  26. package/esm2020/src/dashboard-layout/dashboardlayout-all.module.mjs +0 -23
  27. package/esm2020/src/dashboard-layout/dashboardlayout.component.mjs +0 -64
  28. package/esm2020/src/dashboard-layout/dashboardlayout.module.mjs +0 -34
  29. package/esm2020/src/dashboard-layout/panels.directive.mjs +0 -72
  30. package/esm2020/src/index.mjs +0 -10
  31. package/esm2020/src/splitter/panesettings.directive.mjs +0 -66
  32. package/esm2020/src/splitter/splitter-all.module.mjs +0 -23
  33. package/esm2020/src/splitter/splitter.component.mjs +0 -64
  34. package/esm2020/src/splitter/splitter.module.mjs +0 -34
  35. package/esm2020/syncfusion-ej2-angular-layouts.mjs +0 -5
  36. package/fesm2015/syncfusion-ej2-angular-layouts.mjs +0 -354
  37. package/fesm2015/syncfusion-ej2-angular-layouts.mjs.map +0 -1
  38. package/fesm2020/syncfusion-ej2-angular-layouts.mjs +0 -354
  39. package/fesm2020/syncfusion-ej2-angular-layouts.mjs.map +0 -1
  40. package/syncfusion-ej2-angular-layouts.d.ts +0 -5
@@ -0,0 +1,495 @@
1
+ var __extends = (this && this.__extends) || (function () {
2
+ var extendStatics = Object.setPrototypeOf ||
3
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5
+ return function (d, b) {
6
+ extendStatics(d, b);
7
+ function __() { this.constructor = d; }
8
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9
+ };
10
+ })();
11
+ import { ChangeDetectionStrategy, Component, ContentChild, ContentChildren, Directive, ElementRef, Injector, NgModule, Renderer2, ViewContainerRef } from '@angular/core';
12
+ import { ArrayBase, ComplexBase, ComponentBase, ComponentMixins, Template, setValue } from '@syncfusion/ej2-angular-base';
13
+ import { DashboardLayout, Splitter } from '@syncfusion/ej2-layouts';
14
+ import { CommonModule } from '@angular/common';
15
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
16
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
17
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
18
+ r = Reflect.decorate(decorators, target, key, desc);
19
+ else
20
+ for (var i = decorators.length - 1; i >= 0; i--)
21
+ if (d = decorators[i])
22
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
23
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
24
+ };
25
+ var __metadata = (this && this.__metadata) || function (k, v) {
26
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
27
+ return Reflect.metadata(k, v);
28
+ };
29
+ var input = ['collapsed', 'collapsible', 'content', 'cssClass', 'max', 'min', 'resizable', 'size'];
30
+ var outputs = [];
31
+ /**
32
+ * 'e-panesettings' directive represent a panes of angular splitter
33
+ * It must be contained in a Splitter component(`ejs-splitter`).
34
+ * ```html
35
+ * <ejs-splitter id='splitter' >
36
+ * <e-panes>
37
+ * <e-pane size ='150px'></e-pane>
38
+ * <e-pane size = '20%'></e-pane>
39
+ * </e-panes>
40
+ * </ejs-splitter>
41
+ * ```
42
+ */
43
+ var PaneDirective = /** @class */ (function (_super) {
44
+ __extends(PaneDirective, _super);
45
+ /**
46
+ * @param {?} viewContainerRef
47
+ */
48
+ function PaneDirective(viewContainerRef) {
49
+ var _this = _super.call(this) || this;
50
+ _this.viewContainerRef = viewContainerRef;
51
+ setValue('currentInstance', _this, _this.viewContainerRef);
52
+ _this.registerEvents(outputs);
53
+ _this.directivePropList = input;
54
+ return _this;
55
+ }
56
+ return PaneDirective;
57
+ }(ComplexBase));
58
+ PaneDirective.decorators = [
59
+ { type: Directive, args: [{
60
+ selector: 'e-panes>e-pane',
61
+ inputs: input,
62
+ outputs: outputs,
63
+ queries: {}
64
+ },] },
65
+ ];
66
+ /**
67
+ * @nocollapse
68
+ */
69
+ PaneDirective.ctorParameters = function () { return [
70
+ { type: ViewContainerRef, },
71
+ ]; };
72
+ PaneDirective.propDecorators = {
73
+ 'content': [{ type: ContentChild, args: ['content',] },],
74
+ };
75
+ __decorate([
76
+ Template(),
77
+ __metadata("design:type", Object)
78
+ ], PaneDirective.prototype, "content", void 0);
79
+ /**
80
+ * Pane Array Directive
81
+ */
82
+ var PanesDirective = /** @class */ (function (_super) {
83
+ __extends(PanesDirective, _super);
84
+ function PanesDirective() {
85
+ return _super.call(this, 'panesettings') || this;
86
+ }
87
+ return PanesDirective;
88
+ }(ArrayBase));
89
+ PanesDirective.decorators = [
90
+ { type: Directive, args: [{
91
+ selector: 'ejs-splitter>e-panes',
92
+ queries: {
93
+ children: new ContentChildren(PaneDirective)
94
+ },
95
+ },] },
96
+ ];
97
+ /**
98
+ * @nocollapse
99
+ */
100
+ PanesDirective.ctorParameters = function () { return []; };
101
+ var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
102
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
103
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
104
+ r = Reflect.decorate(decorators, target, key, desc);
105
+ else
106
+ for (var i = decorators.length - 1; i >= 0; i--)
107
+ if (d = decorators[i])
108
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
109
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
110
+ };
111
+ var __metadata$1 = (this && this.__metadata) || function (k, v) {
112
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
113
+ return Reflect.metadata(k, v);
114
+ };
115
+ var inputs = ['cssClass', 'enableHtmlSanitizer', 'enablePersistence', 'enableReversePanes', 'enableRtl', 'enabled', 'height', 'locale', 'orientation', 'paneSettings', 'separatorSize', 'width'];
116
+ var outputs$1 = ['beforeCollapse', 'beforeExpand', 'beforeSanitizeHtml', 'collapsed', 'created', 'expanded', 'resizeStart', 'resizeStop', 'resizing'];
117
+ var twoWays = [''];
118
+ /**
119
+ * Represents the Angular Splitter Component
120
+ * ```html
121
+ * <ejs-splitter></ejs-splitter>
122
+ * ```
123
+ */
124
+ var SplitterComponent = /** @class */ (function (_super) {
125
+ __extends(SplitterComponent, _super);
126
+ /**
127
+ * @param {?} ngEle
128
+ * @param {?} srenderer
129
+ * @param {?} viewContainerRef
130
+ * @param {?} injector
131
+ */
132
+ function SplitterComponent(ngEle, srenderer, viewContainerRef, injector) {
133
+ var _this = _super.call(this) || this;
134
+ _this.ngEle = ngEle;
135
+ _this.srenderer = srenderer;
136
+ _this.viewContainerRef = viewContainerRef;
137
+ _this.injector = injector;
138
+ _this.tags = ['paneSettings'];
139
+ _this.element = _this.ngEle.nativeElement;
140
+ _this.injectedModules = _this.injectedModules || [];
141
+ _this.registerEvents(outputs$1);
142
+ _this.addTwoWay.call(_this, twoWays);
143
+ setValue('currentInstance', _this, _this.viewContainerRef);
144
+ _this.containerContext = new ComponentBase();
145
+ return _this;
146
+ }
147
+ /**
148
+ * @return {?}
149
+ */
150
+ SplitterComponent.prototype.ngOnInit = function () {
151
+ this.containerContext.ngOnInit(this);
152
+ };
153
+ /**
154
+ * @return {?}
155
+ */
156
+ SplitterComponent.prototype.ngAfterViewInit = function () {
157
+ this.containerContext.ngAfterViewInit(this);
158
+ };
159
+ /**
160
+ * @return {?}
161
+ */
162
+ SplitterComponent.prototype.ngOnDestroy = function () {
163
+ this.containerContext.ngOnDestroy(this);
164
+ };
165
+ /**
166
+ * @return {?}
167
+ */
168
+ SplitterComponent.prototype.ngAfterContentChecked = function () {
169
+ this.tagObjects[0].instance = this.childPaneSettings;
170
+ this.containerContext.ngAfterContentChecked(this);
171
+ };
172
+ return SplitterComponent;
173
+ }(Splitter));
174
+ SplitterComponent.decorators = [
175
+ { type: Component, args: [{
176
+ selector: 'ejs-splitter',
177
+ inputs: inputs,
178
+ outputs: outputs$1,
179
+ template: "<ng-content select='div'></ng-content>",
180
+ changeDetection: ChangeDetectionStrategy.OnPush,
181
+ queries: {
182
+ childPaneSettings: new ContentChild(PanesDirective)
183
+ }
184
+ },] },
185
+ ];
186
+ /**
187
+ * @nocollapse
188
+ */
189
+ SplitterComponent.ctorParameters = function () { return [
190
+ { type: ElementRef, },
191
+ { type: Renderer2, },
192
+ { type: ViewContainerRef, },
193
+ { type: Injector, },
194
+ ]; };
195
+ SplitterComponent = __decorate$1([
196
+ ComponentMixins([ComponentBase]),
197
+ __metadata$1("design:paramtypes", [ElementRef,
198
+ Renderer2,
199
+ ViewContainerRef,
200
+ Injector])
201
+ ], SplitterComponent);
202
+ /**
203
+ * NgModule definition for the Splitter component.
204
+ */
205
+ var SplitterModule = /** @class */ (function () {
206
+ function SplitterModule() {
207
+ }
208
+ return SplitterModule;
209
+ }());
210
+ SplitterModule.decorators = [
211
+ { type: NgModule, args: [{
212
+ imports: [CommonModule],
213
+ declarations: [
214
+ SplitterComponent,
215
+ PaneDirective,
216
+ PanesDirective
217
+ ],
218
+ exports: [
219
+ SplitterComponent,
220
+ PaneDirective,
221
+ PanesDirective
222
+ ]
223
+ },] },
224
+ ];
225
+ /**
226
+ * @nocollapse
227
+ */
228
+ SplitterModule.ctorParameters = function () { return []; };
229
+ /**
230
+ * NgModule definition for the Splitter component with providers.
231
+ */
232
+ var SplitterAllModule = /** @class */ (function () {
233
+ function SplitterAllModule() {
234
+ }
235
+ return SplitterAllModule;
236
+ }());
237
+ SplitterAllModule.decorators = [
238
+ { type: NgModule, args: [{
239
+ imports: [CommonModule, SplitterModule],
240
+ exports: [
241
+ SplitterModule
242
+ ],
243
+ providers: []
244
+ },] },
245
+ ];
246
+ /**
247
+ * @nocollapse
248
+ */
249
+ SplitterAllModule.ctorParameters = function () { return []; };
250
+ var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
251
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
252
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
253
+ r = Reflect.decorate(decorators, target, key, desc);
254
+ else
255
+ for (var i = decorators.length - 1; i >= 0; i--)
256
+ if (d = decorators[i])
257
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
258
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
259
+ };
260
+ var __metadata$2 = (this && this.__metadata) || function (k, v) {
261
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
262
+ return Reflect.metadata(k, v);
263
+ };
264
+ var input$1 = ['col', 'content', 'cssClass', 'enabled', 'header', 'id', 'maxSizeX', 'maxSizeY', 'minSizeX', 'minSizeY', 'row', 'sizeX', 'sizeY', 'zIndex'];
265
+ var outputs$2 = [];
266
+ /**
267
+ * 'e-panels' directive represent a panels of angular dashboardlayout
268
+ * It must be contained in a dashboardlayout component(`ej-dashboardlayout`).
269
+ * ```html
270
+ * <ejs-dashboardlayout>
271
+ * <e-panels>
272
+ * <e-panel></e-panel>
273
+ * <e-panel></e-panel>
274
+ * </e-panels>
275
+ * </ejs-dashboardlayout>
276
+ * ```
277
+ */
278
+ var PanelDirective = /** @class */ (function (_super) {
279
+ __extends(PanelDirective, _super);
280
+ /**
281
+ * @param {?} viewContainerRef
282
+ */
283
+ function PanelDirective(viewContainerRef) {
284
+ var _this = _super.call(this) || this;
285
+ _this.viewContainerRef = viewContainerRef;
286
+ setValue('currentInstance', _this, _this.viewContainerRef);
287
+ _this.registerEvents(outputs$2);
288
+ _this.directivePropList = input$1;
289
+ return _this;
290
+ }
291
+ return PanelDirective;
292
+ }(ComplexBase));
293
+ PanelDirective.decorators = [
294
+ { type: Directive, args: [{
295
+ selector: 'e-panels>e-panel',
296
+ inputs: input$1,
297
+ outputs: outputs$2,
298
+ queries: {}
299
+ },] },
300
+ ];
301
+ /**
302
+ * @nocollapse
303
+ */
304
+ PanelDirective.ctorParameters = function () { return [
305
+ { type: ViewContainerRef, },
306
+ ]; };
307
+ PanelDirective.propDecorators = {
308
+ 'header': [{ type: ContentChild, args: ['header',] },],
309
+ 'content': [{ type: ContentChild, args: ['content',] },],
310
+ };
311
+ __decorate$2([
312
+ Template(),
313
+ __metadata$2("design:type", Object)
314
+ ], PanelDirective.prototype, "header", void 0);
315
+ __decorate$2([
316
+ Template(),
317
+ __metadata$2("design:type", Object)
318
+ ], PanelDirective.prototype, "content", void 0);
319
+ /**
320
+ * Panel Array Directive
321
+ */
322
+ var PanelsDirective = /** @class */ (function (_super) {
323
+ __extends(PanelsDirective, _super);
324
+ function PanelsDirective() {
325
+ return _super.call(this, 'panels') || this;
326
+ }
327
+ return PanelsDirective;
328
+ }(ArrayBase));
329
+ PanelsDirective.decorators = [
330
+ { type: Directive, args: [{
331
+ selector: 'ejs-dashboardlayout>e-panels',
332
+ queries: {
333
+ children: new ContentChildren(PanelDirective)
334
+ },
335
+ },] },
336
+ ];
337
+ /**
338
+ * @nocollapse
339
+ */
340
+ PanelsDirective.ctorParameters = function () { return []; };
341
+ var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
342
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
343
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
344
+ r = Reflect.decorate(decorators, target, key, desc);
345
+ else
346
+ for (var i = decorators.length - 1; i >= 0; i--)
347
+ if (d = decorators[i])
348
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
349
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
350
+ };
351
+ var __metadata$3 = (this && this.__metadata) || function (k, v) {
352
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
353
+ return Reflect.metadata(k, v);
354
+ };
355
+ var inputs$1 = ['allowDragging', 'allowFloating', 'allowPushing', 'allowResizing', 'cellAspectRatio', 'cellSpacing', 'columns', 'draggableHandle', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'locale', 'mediaQuery', 'panels', 'resizableHandles', 'showGridLines'];
356
+ var outputs$3 = ['change', 'created', 'destroyed', 'drag', 'dragStart', 'dragStop', 'resize', 'resizeStart', 'resizeStop'];
357
+ var twoWays$1 = [''];
358
+ /**
359
+ * Represents the Essential JS 2 Angular DashboardLayout Component.
360
+ * ```html
361
+ * <ejs-dashboardlayout></ejs-dashboardlayout>
362
+ * ```
363
+ */
364
+ var DashboardLayoutComponent = /** @class */ (function (_super) {
365
+ __extends(DashboardLayoutComponent, _super);
366
+ /**
367
+ * @param {?} ngEle
368
+ * @param {?} srenderer
369
+ * @param {?} viewContainerRef
370
+ * @param {?} injector
371
+ */
372
+ function DashboardLayoutComponent(ngEle, srenderer, viewContainerRef, injector) {
373
+ var _this = _super.call(this) || this;
374
+ _this.ngEle = ngEle;
375
+ _this.srenderer = srenderer;
376
+ _this.viewContainerRef = viewContainerRef;
377
+ _this.injector = injector;
378
+ _this.tags = ['panels'];
379
+ _this.element = _this.ngEle.nativeElement;
380
+ _this.injectedModules = _this.injectedModules || [];
381
+ _this.registerEvents(outputs$3);
382
+ _this.addTwoWay.call(_this, twoWays$1);
383
+ setValue('currentInstance', _this, _this.viewContainerRef);
384
+ _this.containerContext = new ComponentBase();
385
+ return _this;
386
+ }
387
+ /**
388
+ * @return {?}
389
+ */
390
+ DashboardLayoutComponent.prototype.ngOnInit = function () {
391
+ this.containerContext.ngOnInit(this);
392
+ };
393
+ /**
394
+ * @return {?}
395
+ */
396
+ DashboardLayoutComponent.prototype.ngAfterViewInit = function () {
397
+ this.containerContext.ngAfterViewInit(this);
398
+ };
399
+ /**
400
+ * @return {?}
401
+ */
402
+ DashboardLayoutComponent.prototype.ngOnDestroy = function () {
403
+ this.containerContext.ngOnDestroy(this);
404
+ };
405
+ /**
406
+ * @return {?}
407
+ */
408
+ DashboardLayoutComponent.prototype.ngAfterContentChecked = function () {
409
+ this.tagObjects[0].instance = this.childPanels;
410
+ this.containerContext.ngAfterContentChecked(this);
411
+ };
412
+ return DashboardLayoutComponent;
413
+ }(DashboardLayout));
414
+ DashboardLayoutComponent.decorators = [
415
+ { type: Component, args: [{
416
+ selector: 'ejs-dashboardlayout',
417
+ inputs: inputs$1,
418
+ outputs: outputs$3,
419
+ template: "<ng-content select='div'></ng-content>",
420
+ changeDetection: ChangeDetectionStrategy.OnPush,
421
+ queries: {
422
+ childPanels: new ContentChild(PanelsDirective)
423
+ }
424
+ },] },
425
+ ];
426
+ /**
427
+ * @nocollapse
428
+ */
429
+ DashboardLayoutComponent.ctorParameters = function () { return [
430
+ { type: ElementRef, },
431
+ { type: Renderer2, },
432
+ { type: ViewContainerRef, },
433
+ { type: Injector, },
434
+ ]; };
435
+ DashboardLayoutComponent = __decorate$3([
436
+ ComponentMixins([ComponentBase]),
437
+ __metadata$3("design:paramtypes", [ElementRef,
438
+ Renderer2,
439
+ ViewContainerRef,
440
+ Injector])
441
+ ], DashboardLayoutComponent);
442
+ /**
443
+ * NgModule definition for the DashboardLayout component.
444
+ */
445
+ var DashboardLayoutModule = /** @class */ (function () {
446
+ function DashboardLayoutModule() {
447
+ }
448
+ return DashboardLayoutModule;
449
+ }());
450
+ DashboardLayoutModule.decorators = [
451
+ { type: NgModule, args: [{
452
+ imports: [CommonModule],
453
+ declarations: [
454
+ DashboardLayoutComponent,
455
+ PanelDirective,
456
+ PanelsDirective
457
+ ],
458
+ exports: [
459
+ DashboardLayoutComponent,
460
+ PanelDirective,
461
+ PanelsDirective
462
+ ]
463
+ },] },
464
+ ];
465
+ /**
466
+ * @nocollapse
467
+ */
468
+ DashboardLayoutModule.ctorParameters = function () { return []; };
469
+ /**
470
+ * NgModule definition for the DashboardLayout component with providers.
471
+ */
472
+ var DashboardLayoutAllModule = /** @class */ (function () {
473
+ function DashboardLayoutAllModule() {
474
+ }
475
+ return DashboardLayoutAllModule;
476
+ }());
477
+ DashboardLayoutAllModule.decorators = [
478
+ { type: NgModule, args: [{
479
+ imports: [CommonModule, DashboardLayoutModule],
480
+ exports: [
481
+ DashboardLayoutModule
482
+ ],
483
+ providers: []
484
+ },] },
485
+ ];
486
+ /**
487
+ * @nocollapse
488
+ */
489
+ DashboardLayoutAllModule.ctorParameters = function () { return []; };
490
+ /**
491
+ * Generated bundle index. Do not edit.
492
+ */
493
+ export { PaneDirective, PanesDirective, SplitterComponent, SplitterModule, SplitterAllModule, PanelDirective, PanelsDirective, DashboardLayoutComponent, DashboardLayoutModule, DashboardLayoutAllModule, inputs$1 as ɵc, outputs$3 as ɵd, inputs as ɵa, outputs$1 as ɵb };
494
+ export { PaneProperties, Splitter, Panel, DashboardLayout } from '@syncfusion/ej2-layouts';
495
+ //# sourceMappingURL=ej2-angular-layouts.es5.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ej2-angular-layouts.es5.js","sources":["~/@syncfusion/ej2-angular-layouts/ej2-angular-layouts.ts","~/@syncfusion/ej2-angular-layouts/src/dashboard-layout/dashboardlayout-all.module.ts","~/@syncfusion/ej2-angular-layouts/src/dashboard-layout/dashboardlayout.module.ts","~/@syncfusion/ej2-angular-layouts/src/dashboard-layout/dashboardlayout.component.ts","~/@syncfusion/ej2-angular-layouts/src/dashboard-layout/panels.directive.ts","~/@syncfusion/ej2-angular-layouts/src/splitter/splitter-all.module.ts","~/@syncfusion/ej2-angular-layouts/src/splitter/splitter.module.ts","~/@syncfusion/ej2-angular-layouts/src/splitter/splitter.component.ts","~/@syncfusion/ej2-angular-layouts/src/splitter/panesettings.directive.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport {PaneDirective,PanesDirective,SplitterComponent,SplitterModule,SplitterAllModule,PanelDirective,PanelsDirective,DashboardLayoutComponent,DashboardLayoutModule,DashboardLayoutAllModule,PaneProperties,SanitizeSelectors,BeforeSanitizeHtmlArgs,SanitizeRemoveAttrs,Orientation,Splitter,ResizeEventArgs,ResizingEventArgs,BeforeExpandEventArgs,ExpandedEventArgs,PanePropertiesModel,SplitterModel,Panel,DashboardLayout,DragStartArgs,ChangeEventArgs,DraggedEventArgs,DragStopArgs,ResizeArgs,PanelModel,DashboardLayoutModel} from './public_api';\n\nexport {inputs as ɵc,outputs as ɵd} from './src/dashboard-layout/dashboardlayout.component';\nexport {inputs as ɵa,outputs as ɵb} from './src/splitter/splitter.component';","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 * NgModule definition for the DashboardLayout component with providers.\n */\nexport class DashboardLayoutAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DashboardLayoutModule],\n exports: [\n DashboardLayoutModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DashboardLayoutAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDashboardLayoutAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDashboardLayoutAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\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 * NgModule definition for the DashboardLayout component.\n */\nexport class DashboardLayoutModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DashboardLayoutComponent,\n PanelDirective,\n PanelsDirective\n ],\n exports: [\n DashboardLayoutComponent,\n PanelDirective,\n PanelsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DashboardLayoutModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDashboardLayoutModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDashboardLayoutModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\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 /** @type {?} */ inputs: string[] = ['allowDragging','allowFloating','allowPushing','allowResizing','cellAspectRatio','cellSpacing','columns','draggableHandle','enableHtmlSanitizer','enablePersistence','enableRtl','locale','mediaQuery','panels','resizableHandles','showGridLines'];\nexport const /** @type {?} */ outputs: string[] = ['change','created','destroyed','drag','dragStart','dragStop','resize','resizeStart','resizeStop'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * Represents the Essential JS 2 Angular DashboardLayout Component.\n * ```html\n * <ejs-dashboardlayout></ejs-dashboardlayout>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class DashboardLayoutComponent extends DashboardLayout implements IComponentBase {\npublic containerContext : any;\npublic 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;\npublic resizeStop: any;\npublic childPanels: QueryList<PanelsDirective>;\npublic tags: string[] = ['panels'];\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate 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 * @return {?}\n */\npublic ngOnInit() {\n this.containerContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.containerContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.containerContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childPanels;\n this.containerContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\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];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction DashboardLayoutComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDashboardLayoutComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDashboardLayoutComponent.ctorParameters;\n/** @type {?} */\nDashboardLayoutComponent.prototype.containerContext;\n/** @type {?} */\nDashboardLayoutComponent.prototype.tagObjects;\n/** @type {?} */\nDashboardLayoutComponent.prototype.change;\n/** @type {?} */\nDashboardLayoutComponent.prototype.created;\n/** @type {?} */\nDashboardLayoutComponent.prototype.destroyed;\n/** @type {?} */\nDashboardLayoutComponent.prototype.drag;\n/** @type {?} */\nDashboardLayoutComponent.prototype.dragStart;\n/** @type {?} */\nDashboardLayoutComponent.prototype.dragStop;\n/** @type {?} */\nDashboardLayoutComponent.prototype.resize;\n/** @type {?} */\nDashboardLayoutComponent.prototype.resizeStart;\n/** @type {?} */\nDashboardLayoutComponent.prototype.resizeStop;\n/** @type {?} */\nDashboardLayoutComponent.prototype.childPanels;\n/** @type {?} */\nDashboardLayoutComponent.prototype.tags;\n/** @type {?} */\nDashboardLayoutComponent.prototype.registerEvents;\n/** @type {?} */\nDashboardLayoutComponent.prototype.addTwoWay;\n/** @type {?} */\nDashboardLayoutComponent.prototype.ngEle;\n/** @type {?} */\nDashboardLayoutComponent.prototype.srenderer;\n/** @type {?} */\nDashboardLayoutComponent.prototype.viewContainerRef;\n/** @type {?} */\nDashboardLayoutComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","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 /** @type {?} */ input: string[] = ['col', 'content', 'cssClass', 'enabled', 'header', 'id', 'maxSizeX', 'maxSizeY', 'minSizeX', 'minSizeY', 'row', 'sizeX', 'sizeY', 'zIndex'];\nlet /** @type {?} */ 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 */\nexport class PanelDirective extends ComplexBase<PanelDirective> {\npublic directivePropList: any;\n/**\n * Defines the column value where the panel to be placed.\n * \\@default 0\n * \\@asptype int\n */\npublic col: any;\n/**\n * Defines the CSS class name that can be appended with each panel element.\n * \\@default ''\n */\npublic cssClass: any;\n/**\n * Defines whether to the panel should be enabled or not.\n * \\@default true\n */\npublic enabled: any;\n/**\n * Defines the id of the panel.\n * \\@default ''\n */\npublic id: any;\n/**\n * Specifies the maximum width of the panel in cells count.\n * \\@default null\n * \\@asptype int\n */\npublic maxSizeX: any;\n/**\n * Specifies the maximum height of the panel in cells count.\n * \\@default null\n * \\@asptype int\n */\npublic maxSizeY: any;\n/**\n * Specifies the minimum width of the panel in cells count.\n * \\@default 1\n */\npublic minSizeX: any;\n/**\n * Specifies the minimum height of the panel in cells count.\n * \\@default 1\n */\npublic minSizeY: any;\n/**\n * Defines a row value where the panel should be placed.\n * \\@default 0\n * \\@asptype int\n */\npublic row: any;\n/**\n * Specifies the width of the panel in the layout in cells count.\n * \\@default 1\n */\npublic sizeX: any;\n/**\n * Specifies the height of the panel in the layout in cells count.\n * \\@default 1\n */\npublic sizeY: any;\n/**\n * Specifies the z-index of the panel\n * \\@default 1000\n * \\@asptype double\n */\npublic zIndex: any;\n/**\n * Defines the template value that should be displayed as the panel's header.\n * \\@asptype string\n */\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@Template()\n public content: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-panels>e-panel',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'header': [{ type: ContentChild, args: ['header', ] },],\n'content': [{ type: ContentChild, args: ['content', ] },],\n};\n}\n\nfunction PanelDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nPanelDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPanelDirective.ctorParameters;\n/** @type {?} */\nPanelDirective.propDecorators;\n/** @type {?} */\nPanelDirective.prototype.directivePropList;\n/**\n * Defines the column value where the panel to be placed.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nPanelDirective.prototype.col;\n/**\n * Defines the CSS class name that can be appended with each panel element.\n * \\@default ''\n * @type {?}\n */\nPanelDirective.prototype.cssClass;\n/**\n * Defines whether to the panel should be enabled or not.\n * \\@default true\n * @type {?}\n */\nPanelDirective.prototype.enabled;\n/**\n * Defines the id of the panel.\n * \\@default ''\n * @type {?}\n */\nPanelDirective.prototype.id;\n/**\n * Specifies the maximum width of the panel in cells count.\n * \\@default null\n * \\@asptype int\n * @type {?}\n */\nPanelDirective.prototype.maxSizeX;\n/**\n * Specifies the maximum height of the panel in cells count.\n * \\@default null\n * \\@asptype int\n * @type {?}\n */\nPanelDirective.prototype.maxSizeY;\n/**\n * Specifies the minimum width of the panel in cells count.\n * \\@default 1\n * @type {?}\n */\nPanelDirective.prototype.minSizeX;\n/**\n * Specifies the minimum height of the panel in cells count.\n * \\@default 1\n * @type {?}\n */\nPanelDirective.prototype.minSizeY;\n/**\n * Defines a row value where the panel should be placed.\n * \\@default 0\n * \\@asptype int\n * @type {?}\n */\nPanelDirective.prototype.row;\n/**\n * Specifies the width of the panel in the layout in cells count.\n * \\@default 1\n * @type {?}\n */\nPanelDirective.prototype.sizeX;\n/**\n * Specifies the height of the panel in the layout in cells count.\n * \\@default 1\n * @type {?}\n */\nPanelDirective.prototype.sizeY;\n/**\n * Specifies the z-index of the panel\n * \\@default 1000\n * \\@asptype double\n * @type {?}\n */\nPanelDirective.prototype.zIndex;\n/**\n * Defines the template value that should be displayed as the panel's header.\n * \\@asptype string\n * @type {?}\n */\nPanelDirective.prototype.header;\n/**\n * Defines the template value that should be displayed as the panel's content.\n * \\@asptype string\n * @type {?}\n */\nPanelDirective.prototype.content;\n/** @type {?} */\nPanelDirective.prototype.viewContainerRef;\n}\n\n/**\n * Panel Array Directive\n */\nexport class PanelsDirective extends ArrayBase<PanelsDirective> {\nconstructor() {\n super('panels');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-dashboardlayout>e-panels',\n queries: {\n children: new ContentChildren(PanelDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction PanelsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nPanelsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPanelsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","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 * NgModule definition for the Splitter component with providers.\n */\nexport class SplitterAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, SplitterModule],\n exports: [\n SplitterModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction SplitterAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nSplitterAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSplitterAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\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 * NgModule definition for the Splitter component.\n */\nexport class SplitterModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n SplitterComponent,\n PaneDirective,\n PanesDirective\n ],\n exports: [\n SplitterComponent,\n PaneDirective,\n PanesDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction SplitterModule_tsickle_Closure_declarations() {\n/** @type {?} */\nSplitterModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSplitterModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\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 /** @type {?} */ inputs: string[] = ['cssClass','enableHtmlSanitizer','enablePersistence','enableReversePanes','enableRtl','enabled','height','locale','orientation','paneSettings','separatorSize','width'];\nexport const /** @type {?} */ outputs: string[] = ['beforeCollapse','beforeExpand','beforeSanitizeHtml','collapsed','created','expanded','resizeStart','resizeStop','resizing'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * Represents the Angular Splitter Component\n * ```html\n * <ejs-splitter></ejs-splitter>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class SplitterComponent extends Splitter implements IComponentBase {\npublic containerContext : any;\npublic 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;\npublic resizing: any;\npublic childPaneSettings: QueryList<PanesDirective>;\npublic tags: string[] = ['paneSettings'];\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate 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 * @return {?}\n */\npublic ngOnInit() {\n this.containerContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.containerContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.containerContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childPaneSettings;\n this.containerContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\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];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction SplitterComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nSplitterComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSplitterComponent.ctorParameters;\n/** @type {?} */\nSplitterComponent.prototype.containerContext;\n/** @type {?} */\nSplitterComponent.prototype.tagObjects;\n/** @type {?} */\nSplitterComponent.prototype.beforeCollapse;\n/** @type {?} */\nSplitterComponent.prototype.beforeExpand;\n/** @type {?} */\nSplitterComponent.prototype.beforeSanitizeHtml;\n/** @type {?} */\nSplitterComponent.prototype.collapsed;\n/** @type {?} */\nSplitterComponent.prototype.created;\n/** @type {?} */\nSplitterComponent.prototype.expanded;\n/** @type {?} */\nSplitterComponent.prototype.resizeStart;\n/** @type {?} */\nSplitterComponent.prototype.resizeStop;\n/** @type {?} */\nSplitterComponent.prototype.resizing;\n/** @type {?} */\nSplitterComponent.prototype.childPaneSettings;\n/** @type {?} */\nSplitterComponent.prototype.tags;\n/** @type {?} */\nSplitterComponent.prototype.registerEvents;\n/** @type {?} */\nSplitterComponent.prototype.addTwoWay;\n/** @type {?} */\nSplitterComponent.prototype.ngEle;\n/** @type {?} */\nSplitterComponent.prototype.srenderer;\n/** @type {?} */\nSplitterComponent.prototype.viewContainerRef;\n/** @type {?} */\nSplitterComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","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 /** @type {?} */ input: string[] = ['collapsed', 'collapsible', 'content', 'cssClass', 'max', 'min', 'resizable', 'size'];\nlet /** @type {?} */ 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 */\nexport class PaneDirective extends ComplexBase<PaneDirective> {\npublic directivePropList: any;\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 */\npublic 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 */\npublic 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 */\npublic 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 */\npublic 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 */\npublic 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 */\npublic resizable: any;\n/**\n * Configures the properties for each pane.\n * \\@default ''\n */\npublic 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@Template()\n public content: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-panes>e-pane',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'content': [{ type: ContentChild, args: ['content', ] },],\n};\n}\n\nfunction PaneDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nPaneDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPaneDirective.ctorParameters;\n/** @type {?} */\nPaneDirective.propDecorators;\n/** @type {?} */\nPaneDirective.prototype.directivePropList;\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 * @type {?}\n */\nPaneDirective.prototype.collapsed;\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 * @type {?}\n */\nPaneDirective.prototype.collapsible;\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 * @type {?}\n */\nPaneDirective.prototype.cssClass;\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 * @type {?}\n */\nPaneDirective.prototype.max;\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 * @type {?}\n */\nPaneDirective.prototype.min;\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 * @type {?}\n */\nPaneDirective.prototype.resizable;\n/**\n * Configures the properties for each pane.\n * \\@default ''\n * @type {?}\n */\nPaneDirective.prototype.size;\n/**\n * Specifies the content of split pane as plain text, HTML markup, or any other JavaScript controls.\n * \\@default ''\n * \\@blazortype string\n * @type {?}\n */\nPaneDirective.prototype.content;\n/** @type {?} */\nPaneDirective.prototype.viewContainerRef;\n}\n\n/**\n * Pane Array Directive\n */\nexport class PanesDirective extends ArrayBase<PanesDirective> {\nconstructor() {\n super('panesettings');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-splitter>e-panes',\n queries: {\n children: new ContentChildren(PaneDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction PanesDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nPanesDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nPanesDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["__metadata","__decorate","outputs","inputs","twoWays","input"],"mappings":"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"}