@syncfusion/ej2-angular-splitbuttons 33.1.49 → 33.2.3-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 (47) hide show
  1. package/@syncfusion/ej2-angular-splitbuttons.es5.js +565 -0
  2. package/@syncfusion/ej2-angular-splitbuttons.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-splitbuttons.js +516 -0
  4. package/@syncfusion/ej2-angular-splitbuttons.js.map +1 -0
  5. package/LICENSE +10 -0
  6. package/dist/ej2-angular-splitbuttons.umd.js +604 -0
  7. package/dist/ej2-angular-splitbuttons.umd.js.map +1 -0
  8. package/dist/ej2-angular-splitbuttons.umd.min.js +11 -0
  9. package/dist/ej2-angular-splitbuttons.umd.min.js.map +1 -0
  10. package/ej2-angular-splitbuttons.d.ts +7 -0
  11. package/ej2-angular-splitbuttons.metadata.json +1 -0
  12. package/package.json +48 -30
  13. package/public_api.d.ts +1 -1
  14. package/schematics/utils/lib-details.js +2 -2
  15. package/schematics/utils/lib-details.ts +2 -2
  16. package/src/drop-down-button/dropdownbutton-all.module.d.ts +5 -11
  17. package/src/drop-down-button/dropdownbutton.component.d.ts +37 -40
  18. package/src/drop-down-button/dropdownbutton.module.d.ts +5 -12
  19. package/src/drop-down-button/items.directive.d.ts +45 -50
  20. package/src/index.d.ts +12 -12
  21. package/src/progress-button/progressbutton-all.module.d.ts +5 -11
  22. package/src/progress-button/progressbutton.component.d.ts +32 -35
  23. package/src/progress-button/progressbutton.module.d.ts +5 -11
  24. package/src/split-button/items.directive.d.ts +45 -50
  25. package/src/split-button/splitbutton-all.module.d.ts +5 -11
  26. package/src/split-button/splitbutton.component.d.ts +38 -41
  27. package/src/split-button/splitbutton.module.d.ts +5 -12
  28. package/CHANGELOG.md +0 -285
  29. package/esm2020/public_api.mjs +0 -2
  30. package/esm2020/src/drop-down-button/dropdownbutton-all.module.mjs +0 -23
  31. package/esm2020/src/drop-down-button/dropdownbutton.component.mjs +0 -64
  32. package/esm2020/src/drop-down-button/dropdownbutton.module.mjs +0 -34
  33. package/esm2020/src/drop-down-button/items.directive.mjs +0 -46
  34. package/esm2020/src/index.mjs +0 -13
  35. package/esm2020/src/progress-button/progressbutton-all.module.mjs +0 -23
  36. package/esm2020/src/progress-button/progressbutton.component.mjs +0 -59
  37. package/esm2020/src/progress-button/progressbutton.module.mjs +0 -25
  38. package/esm2020/src/split-button/items.directive.mjs +0 -46
  39. package/esm2020/src/split-button/splitbutton-all.module.mjs +0 -23
  40. package/esm2020/src/split-button/splitbutton.component.mjs +0 -64
  41. package/esm2020/src/split-button/splitbutton.module.mjs +0 -34
  42. package/esm2020/syncfusion-ej2-angular-splitbuttons.mjs +0 -5
  43. package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs +0 -403
  44. package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs.map +0 -1
  45. package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs +0 -403
  46. package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs.map +0 -1
  47. package/syncfusion-ej2-angular-splitbuttons.d.ts +0 -5
@@ -0,0 +1,516 @@
1
+ import { ChangeDetectionStrategy, Component, ContentChild, ContentChildren, Directive, ElementRef, Injector, NgModule, Renderer2, ViewContainerRef } from '@angular/core';
2
+ import { ArrayBase, ComplexBase, ComponentBase, ComponentMixins, setValue } from '@syncfusion/ej2-angular-base';
3
+ import { DropDownButton, ProgressButton, SplitButton } from '@syncfusion/ej2-splitbuttons';
4
+ import { CommonModule } from '@angular/common';
5
+
6
+ let input = ['disabled', 'iconCss', 'id', 'separator', 'text', 'url'];
7
+ let outputs = [];
8
+ class DropDownButtonItemDirective extends ComplexBase {
9
+ /**
10
+ * @param {?} viewContainerRef
11
+ */
12
+ constructor(viewContainerRef) {
13
+ super();
14
+ this.viewContainerRef = viewContainerRef;
15
+ setValue('currentInstance', this, this.viewContainerRef);
16
+ this.registerEvents(outputs);
17
+ this.directivePropList = input;
18
+ }
19
+ }
20
+ DropDownButtonItemDirective.decorators = [
21
+ { type: Directive, args: [{
22
+ selector: 'e-dropdownbuttonitems>e-dropdownbuttonitem',
23
+ inputs: input,
24
+ outputs: outputs,
25
+ queries: {}
26
+ },] },
27
+ ];
28
+ /**
29
+ * @nocollapse
30
+ */
31
+ DropDownButtonItemDirective.ctorParameters = () => [
32
+ { type: ViewContainerRef, },
33
+ ];
34
+ /**
35
+ * DropDownButtonItem Array Directive
36
+ */
37
+ class DropDownButtonItemsDirective extends ArrayBase {
38
+ constructor() {
39
+ super('items');
40
+ }
41
+ }
42
+ DropDownButtonItemsDirective.decorators = [
43
+ { type: Directive, args: [{
44
+ selector: 'ejs-dropdownbutton>e-dropdownbuttonitems',
45
+ queries: {
46
+ children: new ContentChildren(DropDownButtonItemDirective)
47
+ },
48
+ },] },
49
+ ];
50
+ /**
51
+ * @nocollapse
52
+ */
53
+ DropDownButtonItemsDirective.ctorParameters = () => [];
54
+
55
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
56
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
57
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
58
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
59
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
60
+ };
61
+ var __metadata = (this && this.__metadata) || function (k, v) {
62
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
63
+ };
64
+ const inputs = ['animationSettings', 'closeActionEvents', 'content', 'createPopupOnClick', 'cssClass', 'disabled', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'iconCss', 'iconPosition', 'itemTemplate', 'items', 'locale', 'popupWidth', 'target'];
65
+ const outputs$1 = ['beforeClose', 'beforeItemRender', 'beforeOpen', 'close', 'created', 'open', 'select'];
66
+ const twoWays = [];
67
+ /**
68
+ * Represents the Angular DropDownButton Component.
69
+ * ```html
70
+ * <button ejs-dropdownbutton>DropDownButton</button>
71
+ * ```
72
+ */
73
+ let DropDownButtonComponent = class DropDownButtonComponent extends DropDownButton {
74
+ /**
75
+ * @param {?} ngEle
76
+ * @param {?} srenderer
77
+ * @param {?} viewContainerRef
78
+ * @param {?} injector
79
+ */
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 = ['items'];
87
+ this.element = this.ngEle.nativeElement;
88
+ this.injectedModules = this.injectedModules || [];
89
+ this.registerEvents(outputs$1);
90
+ this.addTwoWay.call(this, twoWays);
91
+ setValue('currentInstance', this, this.viewContainerRef);
92
+ this.containerContext = new ComponentBase();
93
+ }
94
+ /**
95
+ * @return {?}
96
+ */
97
+ ngOnInit() {
98
+ this.containerContext.ngOnInit(this);
99
+ }
100
+ /**
101
+ * @return {?}
102
+ */
103
+ ngAfterViewInit() {
104
+ this.containerContext.ngAfterViewInit(this);
105
+ }
106
+ /**
107
+ * @return {?}
108
+ */
109
+ ngOnDestroy() {
110
+ this.containerContext.ngOnDestroy(this);
111
+ }
112
+ /**
113
+ * @return {?}
114
+ */
115
+ ngAfterContentChecked() {
116
+ this.tagObjects[0].instance = this.childItems;
117
+ this.containerContext.ngAfterContentChecked(this);
118
+ }
119
+ };
120
+ DropDownButtonComponent.decorators = [
121
+ { type: Component, args: [{
122
+ selector: '[ejs-dropdownbutton]',
123
+ inputs: inputs,
124
+ outputs: outputs$1,
125
+ template: `<ng-content ></ng-content>`,
126
+ changeDetection: ChangeDetectionStrategy.OnPush,
127
+ queries: {
128
+ childItems: new ContentChild(DropDownButtonItemsDirective)
129
+ }
130
+ },] },
131
+ ];
132
+ /**
133
+ * @nocollapse
134
+ */
135
+ DropDownButtonComponent.ctorParameters = () => [
136
+ { type: ElementRef, },
137
+ { type: Renderer2, },
138
+ { type: ViewContainerRef, },
139
+ { type: Injector, },
140
+ ];
141
+ DropDownButtonComponent = __decorate([
142
+ ComponentMixins([ComponentBase]),
143
+ __metadata("design:paramtypes", [ElementRef,
144
+ Renderer2,
145
+ ViewContainerRef,
146
+ Injector])
147
+ ], DropDownButtonComponent);
148
+
149
+ /**
150
+ * NgModule definition for the DropDownButton component.
151
+ */
152
+ class DropDownButtonModule {
153
+ }
154
+ DropDownButtonModule.decorators = [
155
+ { type: NgModule, args: [{
156
+ imports: [CommonModule],
157
+ declarations: [
158
+ DropDownButtonComponent,
159
+ DropDownButtonItemDirective,
160
+ DropDownButtonItemsDirective
161
+ ],
162
+ exports: [
163
+ DropDownButtonComponent,
164
+ DropDownButtonItemDirective,
165
+ DropDownButtonItemsDirective
166
+ ]
167
+ },] },
168
+ ];
169
+ /**
170
+ * @nocollapse
171
+ */
172
+ DropDownButtonModule.ctorParameters = () => [];
173
+
174
+ /**
175
+ * NgModule definition for the DropDownButton component with providers.
176
+ */
177
+ class DropDownButtonAllModule {
178
+ }
179
+ DropDownButtonAllModule.decorators = [
180
+ { type: NgModule, args: [{
181
+ imports: [CommonModule, DropDownButtonModule],
182
+ exports: [
183
+ DropDownButtonModule
184
+ ],
185
+ providers: []
186
+ },] },
187
+ ];
188
+ /**
189
+ * @nocollapse
190
+ */
191
+ DropDownButtonAllModule.ctorParameters = () => [];
192
+
193
+ let input$1 = ['disabled', 'iconCss', 'id', 'separator', 'text', 'url'];
194
+ let outputs$2 = [];
195
+ class SplitButtonItemDirective extends ComplexBase {
196
+ /**
197
+ * @param {?} viewContainerRef
198
+ */
199
+ constructor(viewContainerRef) {
200
+ super();
201
+ this.viewContainerRef = viewContainerRef;
202
+ setValue('currentInstance', this, this.viewContainerRef);
203
+ this.registerEvents(outputs$2);
204
+ this.directivePropList = input$1;
205
+ }
206
+ }
207
+ SplitButtonItemDirective.decorators = [
208
+ { type: Directive, args: [{
209
+ selector: 'e-splitbuttonitems>e-splitbuttonitem',
210
+ inputs: input$1,
211
+ outputs: outputs$2,
212
+ queries: {}
213
+ },] },
214
+ ];
215
+ /**
216
+ * @nocollapse
217
+ */
218
+ SplitButtonItemDirective.ctorParameters = () => [
219
+ { type: ViewContainerRef, },
220
+ ];
221
+ /**
222
+ * SplitButtonItem Array Directive
223
+ */
224
+ class SplitButtonItemsDirective extends ArrayBase {
225
+ constructor() {
226
+ super('items');
227
+ }
228
+ }
229
+ SplitButtonItemsDirective.decorators = [
230
+ { type: Directive, args: [{
231
+ selector: 'ejs-splitbutton>e-splitbuttonitems',
232
+ queries: {
233
+ children: new ContentChildren(SplitButtonItemDirective)
234
+ },
235
+ },] },
236
+ ];
237
+ /**
238
+ * @nocollapse
239
+ */
240
+ SplitButtonItemsDirective.ctorParameters = () => [];
241
+
242
+ var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
243
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
244
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
245
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
246
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
247
+ };
248
+ var __metadata$1 = (this && this.__metadata) || function (k, v) {
249
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
250
+ };
251
+ const inputs$1 = ['animationSettings', 'closeActionEvents', 'content', 'createPopupOnClick', 'cssClass', 'disabled', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'iconCss', 'iconPosition', 'itemTemplate', 'items', 'locale', 'popupWidth', 'target'];
252
+ const outputs$3 = ['beforeClose', 'beforeItemRender', 'beforeOpen', 'click', 'close', 'created', 'open', 'select'];
253
+ const twoWays$1 = [];
254
+ /**
255
+ * Represents the Angular SplitButton Component.
256
+ * ```html
257
+ * <ejs-splitbutton content='Split Button'></ejs-splitbutton>
258
+ * ```
259
+ */
260
+ let SplitButtonComponent = class SplitButtonComponent extends SplitButton {
261
+ /**
262
+ * @param {?} ngEle
263
+ * @param {?} srenderer
264
+ * @param {?} viewContainerRef
265
+ * @param {?} injector
266
+ */
267
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
268
+ super();
269
+ this.ngEle = ngEle;
270
+ this.srenderer = srenderer;
271
+ this.viewContainerRef = viewContainerRef;
272
+ this.injector = injector;
273
+ this.tags = ['items'];
274
+ this.element = this.ngEle.nativeElement;
275
+ this.injectedModules = this.injectedModules || [];
276
+ this.registerEvents(outputs$3);
277
+ this.addTwoWay.call(this, twoWays$1);
278
+ setValue('currentInstance', this, this.viewContainerRef);
279
+ this.containerContext = new ComponentBase();
280
+ }
281
+ /**
282
+ * @return {?}
283
+ */
284
+ ngOnInit() {
285
+ this.containerContext.ngOnInit(this);
286
+ }
287
+ /**
288
+ * @return {?}
289
+ */
290
+ ngAfterViewInit() {
291
+ this.containerContext.ngAfterViewInit(this);
292
+ }
293
+ /**
294
+ * @return {?}
295
+ */
296
+ ngOnDestroy() {
297
+ this.containerContext.ngOnDestroy(this);
298
+ }
299
+ /**
300
+ * @return {?}
301
+ */
302
+ ngAfterContentChecked() {
303
+ this.tagObjects[0].instance = this.childItems;
304
+ this.containerContext.ngAfterContentChecked(this);
305
+ }
306
+ };
307
+ SplitButtonComponent.decorators = [
308
+ { type: Component, args: [{
309
+ selector: 'ejs-splitbutton',
310
+ inputs: inputs$1,
311
+ outputs: outputs$3,
312
+ template: `<ng-content ></ng-content>`,
313
+ changeDetection: ChangeDetectionStrategy.OnPush,
314
+ queries: {
315
+ childItems: new ContentChild(SplitButtonItemsDirective)
316
+ }
317
+ },] },
318
+ ];
319
+ /**
320
+ * @nocollapse
321
+ */
322
+ SplitButtonComponent.ctorParameters = () => [
323
+ { type: ElementRef, },
324
+ { type: Renderer2, },
325
+ { type: ViewContainerRef, },
326
+ { type: Injector, },
327
+ ];
328
+ SplitButtonComponent = __decorate$1([
329
+ ComponentMixins([ComponentBase]),
330
+ __metadata$1("design:paramtypes", [ElementRef,
331
+ Renderer2,
332
+ ViewContainerRef,
333
+ Injector])
334
+ ], SplitButtonComponent);
335
+
336
+ /**
337
+ * NgModule definition for the SplitButton component.
338
+ */
339
+ class SplitButtonModule {
340
+ }
341
+ SplitButtonModule.decorators = [
342
+ { type: NgModule, args: [{
343
+ imports: [CommonModule],
344
+ declarations: [
345
+ SplitButtonComponent,
346
+ SplitButtonItemDirective,
347
+ SplitButtonItemsDirective
348
+ ],
349
+ exports: [
350
+ SplitButtonComponent,
351
+ SplitButtonItemDirective,
352
+ SplitButtonItemsDirective
353
+ ]
354
+ },] },
355
+ ];
356
+ /**
357
+ * @nocollapse
358
+ */
359
+ SplitButtonModule.ctorParameters = () => [];
360
+
361
+ /**
362
+ * NgModule definition for the SplitButton component with providers.
363
+ */
364
+ class SplitButtonAllModule {
365
+ }
366
+ SplitButtonAllModule.decorators = [
367
+ { type: NgModule, args: [{
368
+ imports: [CommonModule, SplitButtonModule],
369
+ exports: [
370
+ SplitButtonModule
371
+ ],
372
+ providers: []
373
+ },] },
374
+ ];
375
+ /**
376
+ * @nocollapse
377
+ */
378
+ SplitButtonAllModule.ctorParameters = () => [];
379
+
380
+ var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
381
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
382
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
383
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
384
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
385
+ };
386
+ var __metadata$2 = (this && this.__metadata) || function (k, v) {
387
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
388
+ };
389
+ const inputs$2 = ['animationSettings', 'content', 'cssClass', 'disabled', 'duration', 'enableHtmlSanitizer', 'enableProgress', 'iconCss', 'iconPosition', 'isPrimary', 'isToggle', 'spinSettings'];
390
+ const outputs$4 = ['begin', 'created', 'end', 'fail', 'progress'];
391
+ const twoWays$2 = [];
392
+ /**
393
+ * Represents the Angular ProgressButton Component.
394
+ * ```html
395
+ * <button ejs-progressbutton content='Progress Button'></button>
396
+ * ```
397
+ */
398
+ let ProgressButtonComponent = class ProgressButtonComponent extends ProgressButton {
399
+ /**
400
+ * @param {?} ngEle
401
+ * @param {?} srenderer
402
+ * @param {?} viewContainerRef
403
+ * @param {?} injector
404
+ */
405
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
406
+ super();
407
+ this.ngEle = ngEle;
408
+ this.srenderer = srenderer;
409
+ this.viewContainerRef = viewContainerRef;
410
+ this.injector = injector;
411
+ this.element = this.ngEle.nativeElement;
412
+ this.injectedModules = this.injectedModules || [];
413
+ this.registerEvents(outputs$4);
414
+ this.addTwoWay.call(this, twoWays$2);
415
+ setValue('currentInstance', this, this.viewContainerRef);
416
+ this.containerContext = new ComponentBase();
417
+ }
418
+ /**
419
+ * @return {?}
420
+ */
421
+ ngOnInit() {
422
+ this.containerContext.ngOnInit(this);
423
+ }
424
+ /**
425
+ * @return {?}
426
+ */
427
+ ngAfterViewInit() {
428
+ this.containerContext.ngAfterViewInit(this);
429
+ }
430
+ /**
431
+ * @return {?}
432
+ */
433
+ ngOnDestroy() {
434
+ this.containerContext.ngOnDestroy(this);
435
+ }
436
+ /**
437
+ * @return {?}
438
+ */
439
+ ngAfterContentChecked() {
440
+ this.containerContext.ngAfterContentChecked(this);
441
+ }
442
+ };
443
+ ProgressButtonComponent.decorators = [
444
+ { type: Component, args: [{
445
+ selector: '[ejs-progressbutton]',
446
+ inputs: inputs$2,
447
+ outputs: outputs$4,
448
+ template: `<ng-content ></ng-content>`,
449
+ changeDetection: ChangeDetectionStrategy.OnPush,
450
+ queries: {}
451
+ },] },
452
+ ];
453
+ /**
454
+ * @nocollapse
455
+ */
456
+ ProgressButtonComponent.ctorParameters = () => [
457
+ { type: ElementRef, },
458
+ { type: Renderer2, },
459
+ { type: ViewContainerRef, },
460
+ { type: Injector, },
461
+ ];
462
+ ProgressButtonComponent = __decorate$2([
463
+ ComponentMixins([ComponentBase]),
464
+ __metadata$2("design:paramtypes", [ElementRef,
465
+ Renderer2,
466
+ ViewContainerRef,
467
+ Injector])
468
+ ], ProgressButtonComponent);
469
+
470
+ /**
471
+ * NgModule definition for the ProgressButton component.
472
+ */
473
+ class ProgressButtonModule {
474
+ }
475
+ ProgressButtonModule.decorators = [
476
+ { type: NgModule, args: [{
477
+ imports: [CommonModule],
478
+ declarations: [
479
+ ProgressButtonComponent
480
+ ],
481
+ exports: [
482
+ ProgressButtonComponent
483
+ ]
484
+ },] },
485
+ ];
486
+ /**
487
+ * @nocollapse
488
+ */
489
+ ProgressButtonModule.ctorParameters = () => [];
490
+
491
+ /**
492
+ * NgModule definition for the ProgressButton component with providers.
493
+ */
494
+ class ProgressButtonAllModule {
495
+ }
496
+ ProgressButtonAllModule.decorators = [
497
+ { type: NgModule, args: [{
498
+ imports: [CommonModule, ProgressButtonModule],
499
+ exports: [
500
+ ProgressButtonModule
501
+ ],
502
+ providers: []
503
+ },] },
504
+ ];
505
+ /**
506
+ * @nocollapse
507
+ */
508
+ ProgressButtonAllModule.ctorParameters = () => [];
509
+
510
+ /**
511
+ * Generated bundle index. Do not edit.
512
+ */
513
+
514
+ export { DropDownButtonItemDirective, DropDownButtonItemsDirective, DropDownButtonComponent, DropDownButtonModule, DropDownButtonAllModule, SplitButtonItemDirective, SplitButtonItemsDirective, SplitButtonComponent, SplitButtonModule, SplitButtonAllModule, ProgressButtonComponent, ProgressButtonModule, ProgressButtonAllModule, inputs as ɵa, outputs$1 as ɵb, inputs$2 as ɵe, outputs$4 as ɵf, inputs$1 as ɵc, outputs$3 as ɵd };
515
+ export { getModel, upDownKeyHandler, setBlankIconStyle, Item, DropDownMenuAnimationSettings, DropDownButton, SplitButton, Deferred, createButtonGroup, SpinSettings, AnimationSettings, ProgressButton } from '@syncfusion/ej2-splitbuttons';
516
+ //# sourceMappingURL=ej2-angular-splitbuttons.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ej2-angular-splitbuttons.js","sources":["~/@syncfusion/ej2-angular-splitbuttons/ej2-angular-splitbuttons.ts","~/@syncfusion/ej2-angular-splitbuttons/src/progress-button/progressbutton-all.module.ts","~/@syncfusion/ej2-angular-splitbuttons/src/progress-button/progressbutton.module.ts","~/@syncfusion/ej2-angular-splitbuttons/src/progress-button/progressbutton.component.ts","~/@syncfusion/ej2-angular-splitbuttons/src/split-button/splitbutton-all.module.ts","~/@syncfusion/ej2-angular-splitbuttons/src/split-button/splitbutton.module.ts","~/@syncfusion/ej2-angular-splitbuttons/src/split-button/splitbutton.component.ts","~/@syncfusion/ej2-angular-splitbuttons/src/split-button/items.directive.ts","~/@syncfusion/ej2-angular-splitbuttons/src/drop-down-button/dropdownbutton-all.module.ts","~/@syncfusion/ej2-angular-splitbuttons/src/drop-down-button/dropdownbutton.module.ts","~/@syncfusion/ej2-angular-splitbuttons/src/drop-down-button/dropdownbutton.component.ts","~/@syncfusion/ej2-angular-splitbuttons/src/drop-down-button/items.directive.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport {DropDownButtonItemDirective,DropDownButtonItemsDirective,DropDownButtonComponent,DropDownButtonModule,DropDownButtonAllModule,SplitButtonItemDirective,SplitButtonItemsDirective,SplitButtonComponent,SplitButtonModule,SplitButtonAllModule,ProgressButtonComponent,ProgressButtonModule,ProgressButtonAllModule,SplitButtonIconPosition,getModel,upDownKeyHandler,setBlankIconStyle,Item,MenuEventArgs,BeforeOpenCloseMenuEventArgs,OpenCloseMenuEventArgs,DropDownAnimationEffect,ItemModel,DropDownMenuAnimationSettings,DropDownButton,DropDownMenuAnimationSettingsModel,DropDownButtonModel,SplitButton,ClickEventArgs,Deferred,SplitButtonModel,DeferredModel,createButtonGroup,CreateButtonGroupModel,SpinSettings,AnimationSettings,ProgressButton,SpinPosition,AnimationEffect,ProgressEventArgs,SpinSettingsModel,AnimationSettingsModel,ProgressButtonModel} from './public_api';\n\nexport {inputs as ɵa,outputs as ɵb} from './src/drop-down-button/dropdownbutton.component';\nexport {inputs as ɵe,outputs as ɵf} from './src/progress-button/progressbutton.component';\nexport {inputs as ɵc,outputs as ɵd} from './src/split-button/splitbutton.component';","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ProgressButtonComponent } from './progressbutton.component';\nimport { ProgressButtonModule } from './progressbutton.module';\n/**\n * NgModule definition for the ProgressButton component with providers.\n */\nexport class ProgressButtonAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, ProgressButtonModule],\n exports: [\n ProgressButtonModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ProgressButtonAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressButtonAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressButtonAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ProgressButtonComponent } from './progressbutton.component';\n/**\n * NgModule definition for the ProgressButton component.\n */\nexport class ProgressButtonModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n ProgressButtonComponent\n ],\n exports: [\n ProgressButtonComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ProgressButtonModule_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressButtonModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressButtonModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectionStrategy, QueryList, ValueProvider } from '@angular/core';\nimport { ComponentBase, ComponentMixins, IComponentBase, applyMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { ProgressButton } from '@syncfusion/ej2-splitbuttons';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['animationSettings','content','cssClass','disabled','duration','enableHtmlSanitizer','enableProgress','iconCss','iconPosition','isPrimary','isToggle','spinSettings'];\nexport const /** @type {?} */ outputs: string[] = ['begin','created','end','fail','progress'];\nexport const /** @type {?} */ twoWays: string[] = [];\n/**\n * Represents the Angular ProgressButton Component.\n * ```html\n * <button ejs-progressbutton content='Progress Button'></button>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class ProgressButtonComponent extends ProgressButton implements IComponentBase {\npublic containerContext : any;\npublic tagObjects: any;\n\tbegin: any;\n\tcreated: any;\n\tend: any;\n\tfail: any;\npublic progress: any;\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 \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-progressbutton]',\n inputs: inputs,\n outputs: outputs,\n template: `<ng-content ></ng-content>`,\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\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 ProgressButtonComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nProgressButtonComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nProgressButtonComponent.ctorParameters;\n/** @type {?} */\nProgressButtonComponent.prototype.containerContext;\n/** @type {?} */\nProgressButtonComponent.prototype.tagObjects;\n/** @type {?} */\nProgressButtonComponent.prototype.begin;\n/** @type {?} */\nProgressButtonComponent.prototype.created;\n/** @type {?} */\nProgressButtonComponent.prototype.end;\n/** @type {?} */\nProgressButtonComponent.prototype.fail;\n/** @type {?} */\nProgressButtonComponent.prototype.progress;\n/** @type {?} */\nProgressButtonComponent.prototype.registerEvents;\n/** @type {?} */\nProgressButtonComponent.prototype.addTwoWay;\n/** @type {?} */\nProgressButtonComponent.prototype.ngEle;\n/** @type {?} */\nProgressButtonComponent.prototype.srenderer;\n/** @type {?} */\nProgressButtonComponent.prototype.viewContainerRef;\n/** @type {?} */\nProgressButtonComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { SplitButtonItemDirective, SplitButtonItemsDirective } from './items.directive';\nimport { SplitButtonComponent } from './splitbutton.component';\nimport { SplitButtonModule } from './splitbutton.module';\n/**\n * NgModule definition for the SplitButton component with providers.\n */\nexport class SplitButtonAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, SplitButtonModule],\n exports: [\n SplitButtonModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction SplitButtonAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nSplitButtonAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSplitButtonAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { SplitButtonItemDirective, SplitButtonItemsDirective } from './items.directive';\nimport { SplitButtonComponent } from './splitbutton.component';\n/**\n * NgModule definition for the SplitButton component.\n */\nexport class SplitButtonModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n SplitButtonComponent,\n SplitButtonItemDirective,\n SplitButtonItemsDirective\n ],\n exports: [\n SplitButtonComponent,\n SplitButtonItemDirective,\n SplitButtonItemsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction SplitButtonModule_tsickle_Closure_declarations() {\n/** @type {?} */\nSplitButtonModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSplitButtonModule.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 { SplitButton } from '@syncfusion/ej2-splitbuttons';\n\nimport { SplitButtonItemsDirective } from './items.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['animationSettings','closeActionEvents','content','createPopupOnClick','cssClass','disabled','enableHtmlSanitizer','enablePersistence','enableRtl','iconCss','iconPosition','itemTemplate','items','locale','popupWidth','target'];\nexport const /** @type {?} */ outputs: string[] = ['beforeClose','beforeItemRender','beforeOpen','click','close','created','open','select'];\nexport const /** @type {?} */ twoWays: string[] = [];\n/**\n * Represents the Angular SplitButton Component.\n * ```html\n * <ejs-splitbutton content='Split Button'></ejs-splitbutton>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class SplitButtonComponent extends SplitButton implements IComponentBase {\npublic containerContext : any;\npublic tagObjects: any;\n\tbeforeClose: any;\n\tbeforeItemRender: any;\n\tbeforeOpen: any;\n\tclick: any;\n\tclose: any;\n\tcreated: any;\n\topen: any;\npublic select: any;\npublic childItems: QueryList<SplitButtonItemsDirective>;\npublic tags: string[] = ['items'];\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.childItems;\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-splitbutton',\n inputs: inputs,\n outputs: outputs,\n template: `<ng-content ></ng-content>`,\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childItems: new ContentChild(SplitButtonItemsDirective)\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 SplitButtonComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nSplitButtonComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSplitButtonComponent.ctorParameters;\n/** @type {?} */\nSplitButtonComponent.prototype.containerContext;\n/** @type {?} */\nSplitButtonComponent.prototype.tagObjects;\n/** @type {?} */\nSplitButtonComponent.prototype.beforeClose;\n/** @type {?} */\nSplitButtonComponent.prototype.beforeItemRender;\n/** @type {?} */\nSplitButtonComponent.prototype.beforeOpen;\n/** @type {?} */\nSplitButtonComponent.prototype.click;\n/** @type {?} */\nSplitButtonComponent.prototype.close;\n/** @type {?} */\nSplitButtonComponent.prototype.created;\n/** @type {?} */\nSplitButtonComponent.prototype.open;\n/** @type {?} */\nSplitButtonComponent.prototype.select;\n/** @type {?} */\nSplitButtonComponent.prototype.childItems;\n/** @type {?} */\nSplitButtonComponent.prototype.tags;\n/** @type {?} */\nSplitButtonComponent.prototype.registerEvents;\n/** @type {?} */\nSplitButtonComponent.prototype.addTwoWay;\n/** @type {?} */\nSplitButtonComponent.prototype.ngEle;\n/** @type {?} */\nSplitButtonComponent.prototype.srenderer;\n/** @type {?} */\nSplitButtonComponent.prototype.viewContainerRef;\n/** @type {?} */\nSplitButtonComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet /** @type {?} */ input: string[] = ['disabled', 'iconCss', 'id', 'separator', 'text', 'url'];\nlet /** @type {?} */ outputs: string[] = [];\nexport class SplitButtonItemDirective extends ComplexBase<SplitButtonItemDirective> {\npublic directivePropList: any;\n/**\n * Used to enable or disable the item.\n * \\@default false\n */\npublic disabled: any;\n/**\n * Defines class/multiple classes separated by a space for the item that is used to include an icon. \n * Action item can include font icon and sprite image.\n * \\@default ''\n */\npublic iconCss: any;\n/**\n * Specifies the id for item.\n * \\@default ''\n */\npublic id: any;\n/**\n * Specifies separator between the items. Separator are horizontal lines used to group action items.\n * \\@default false\n */\npublic separator: any;\n/**\n * Specifies text for item.\n * \\@default ''\n */\npublic text: any;\n/**\n * Specifies url for item that creates the anchor link to navigate to the url provided.\n * \\@default ''\n */\npublic url: 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-splitbuttonitems>e-splitbuttonitem',\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];\n}\n\nfunction SplitButtonItemDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nSplitButtonItemDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSplitButtonItemDirective.ctorParameters;\n/** @type {?} */\nSplitButtonItemDirective.prototype.directivePropList;\n/**\n * Used to enable or disable the item.\n * \\@default false\n * @type {?}\n */\nSplitButtonItemDirective.prototype.disabled;\n/**\n * Defines class/multiple classes separated by a space for the item that is used to include an icon. \n * Action item can include font icon and sprite image.\n * \\@default ''\n * @type {?}\n */\nSplitButtonItemDirective.prototype.iconCss;\n/**\n * Specifies the id for item.\n * \\@default ''\n * @type {?}\n */\nSplitButtonItemDirective.prototype.id;\n/**\n * Specifies separator between the items. Separator are horizontal lines used to group action items.\n * \\@default false\n * @type {?}\n */\nSplitButtonItemDirective.prototype.separator;\n/**\n * Specifies text for item.\n * \\@default ''\n * @type {?}\n */\nSplitButtonItemDirective.prototype.text;\n/**\n * Specifies url for item that creates the anchor link to navigate to the url provided.\n * \\@default ''\n * @type {?}\n */\nSplitButtonItemDirective.prototype.url;\n/** @type {?} */\nSplitButtonItemDirective.prototype.viewContainerRef;\n}\n\n/**\n * SplitButtonItem Array Directive\n */\nexport class SplitButtonItemsDirective extends ArrayBase<SplitButtonItemsDirective> {\nconstructor() {\n super('items');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-splitbutton>e-splitbuttonitems',\n queries: {\n children: new ContentChildren(SplitButtonItemDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction SplitButtonItemsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nSplitButtonItemsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nSplitButtonItemsDirective.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 { DropDownButtonItemDirective, DropDownButtonItemsDirective } from './items.directive';\nimport { DropDownButtonComponent } from './dropdownbutton.component';\nimport { DropDownButtonModule } from './dropdownbutton.module';\n/**\n * NgModule definition for the DropDownButton component with providers.\n */\nexport class DropDownButtonAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DropDownButtonModule],\n exports: [\n DropDownButtonModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DropDownButtonAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDropDownButtonAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDropDownButtonAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DropDownButtonItemDirective, DropDownButtonItemsDirective } from './items.directive';\nimport { DropDownButtonComponent } from './dropdownbutton.component';\n/**\n * NgModule definition for the DropDownButton component.\n */\nexport class DropDownButtonModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DropDownButtonComponent,\n DropDownButtonItemDirective,\n DropDownButtonItemsDirective\n ],\n exports: [\n DropDownButtonComponent,\n DropDownButtonItemDirective,\n DropDownButtonItemsDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DropDownButtonModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDropDownButtonModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDropDownButtonModule.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 { DropDownButton } from '@syncfusion/ej2-splitbuttons';\n\nimport { DropDownButtonItemsDirective } from './items.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['animationSettings','closeActionEvents','content','createPopupOnClick','cssClass','disabled','enableHtmlSanitizer','enablePersistence','enableRtl','iconCss','iconPosition','itemTemplate','items','locale','popupWidth','target'];\nexport const /** @type {?} */ outputs: string[] = ['beforeClose','beforeItemRender','beforeOpen','close','created','open','select'];\nexport const /** @type {?} */ twoWays: string[] = [];\n/**\n * Represents the Angular DropDownButton Component.\n * ```html\n * <button ejs-dropdownbutton>DropDownButton</button>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class DropDownButtonComponent extends DropDownButton implements IComponentBase {\npublic containerContext : any;\npublic tagObjects: any;\n\tbeforeClose: any;\n\tbeforeItemRender: any;\n\tbeforeOpen: any;\n\tclose: any;\n\tcreated: any;\n\topen: any;\npublic select: any;\npublic childItems: QueryList<DropDownButtonItemsDirective>;\npublic tags: string[] = ['items'];\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.childItems;\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-dropdownbutton]',\n inputs: inputs,\n outputs: outputs,\n template: `<ng-content ></ng-content>`,\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childItems: new ContentChild(DropDownButtonItemsDirective)\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 DropDownButtonComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDropDownButtonComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDropDownButtonComponent.ctorParameters;\n/** @type {?} */\nDropDownButtonComponent.prototype.containerContext;\n/** @type {?} */\nDropDownButtonComponent.prototype.tagObjects;\n/** @type {?} */\nDropDownButtonComponent.prototype.beforeClose;\n/** @type {?} */\nDropDownButtonComponent.prototype.beforeItemRender;\n/** @type {?} */\nDropDownButtonComponent.prototype.beforeOpen;\n/** @type {?} */\nDropDownButtonComponent.prototype.close;\n/** @type {?} */\nDropDownButtonComponent.prototype.created;\n/** @type {?} */\nDropDownButtonComponent.prototype.open;\n/** @type {?} */\nDropDownButtonComponent.prototype.select;\n/** @type {?} */\nDropDownButtonComponent.prototype.childItems;\n/** @type {?} */\nDropDownButtonComponent.prototype.tags;\n/** @type {?} */\nDropDownButtonComponent.prototype.registerEvents;\n/** @type {?} */\nDropDownButtonComponent.prototype.addTwoWay;\n/** @type {?} */\nDropDownButtonComponent.prototype.ngEle;\n/** @type {?} */\nDropDownButtonComponent.prototype.srenderer;\n/** @type {?} */\nDropDownButtonComponent.prototype.viewContainerRef;\n/** @type {?} */\nDropDownButtonComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet /** @type {?} */ input: string[] = ['disabled', 'iconCss', 'id', 'separator', 'text', 'url'];\nlet /** @type {?} */ outputs: string[] = [];\nexport class DropDownButtonItemDirective extends ComplexBase<DropDownButtonItemDirective> {\npublic directivePropList: any;\n/**\n * Used to enable or disable the item.\n * \\@default false\n */\npublic disabled: any;\n/**\n * Defines class/multiple classes separated by a space for the item that is used to include an icon. \n * Action item can include font icon and sprite image.\n * \\@default ''\n */\npublic iconCss: any;\n/**\n * Specifies the id for item.\n * \\@default ''\n */\npublic id: any;\n/**\n * Specifies separator between the items. Separator are horizontal lines used to group action items.\n * \\@default false\n */\npublic separator: any;\n/**\n * Specifies text for item.\n * \\@default ''\n */\npublic text: any;\n/**\n * Specifies url for item that creates the anchor link to navigate to the url provided.\n * \\@default ''\n */\npublic url: 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-dropdownbuttonitems>e-dropdownbuttonitem',\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];\n}\n\nfunction DropDownButtonItemDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nDropDownButtonItemDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDropDownButtonItemDirective.ctorParameters;\n/** @type {?} */\nDropDownButtonItemDirective.prototype.directivePropList;\n/**\n * Used to enable or disable the item.\n * \\@default false\n * @type {?}\n */\nDropDownButtonItemDirective.prototype.disabled;\n/**\n * Defines class/multiple classes separated by a space for the item that is used to include an icon. \n * Action item can include font icon and sprite image.\n * \\@default ''\n * @type {?}\n */\nDropDownButtonItemDirective.prototype.iconCss;\n/**\n * Specifies the id for item.\n * \\@default ''\n * @type {?}\n */\nDropDownButtonItemDirective.prototype.id;\n/**\n * Specifies separator between the items. Separator are horizontal lines used to group action items.\n * \\@default false\n * @type {?}\n */\nDropDownButtonItemDirective.prototype.separator;\n/**\n * Specifies text for item.\n * \\@default ''\n * @type {?}\n */\nDropDownButtonItemDirective.prototype.text;\n/**\n * Specifies url for item that creates the anchor link to navigate to the url provided.\n * \\@default ''\n * @type {?}\n */\nDropDownButtonItemDirective.prototype.url;\n/** @type {?} */\nDropDownButtonItemDirective.prototype.viewContainerRef;\n}\n\n/**\n * DropDownButtonItem Array Directive\n */\nexport class DropDownButtonItemsDirective extends ArrayBase<DropDownButtonItemsDirective> {\nconstructor() {\n super('items');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-dropdownbutton>e-dropdownbuttonitems',\n queries: {\n children: new ContentChildren(DropDownButtonItemDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DropDownButtonItemsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nDropDownButtonItemsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDropDownButtonItemsDirective.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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"}
package/LICENSE ADDED
@@ -0,0 +1,10 @@
1
+ Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
2
+
3
+ To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
4
+
5
+ Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
6
+
7
+ Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
8
+
9
+ The Syncfusion license that contains the terms and conditions can be found at
10
+ https://www.syncfusion.com/content/downloads/syncfusion_license.pdf