@syncfusion/ej2-angular-inputs 26.2.13-ngcc → 26.2.13

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 (85) hide show
  1. package/CHANGELOG.md +1567 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/color-picker/colorpicker-all.module.mjs +23 -0
  4. package/esm2020/src/color-picker/colorpicker.component.mjs +84 -0
  5. package/esm2020/src/color-picker/colorpicker.module.mjs +25 -0
  6. package/esm2020/src/form-validator/form-validator.mjs +193 -0
  7. package/esm2020/src/index.mjs +34 -0
  8. package/esm2020/src/maskedtextbox/maskedtextbox-all.module.mjs +23 -0
  9. package/esm2020/src/maskedtextbox/maskedtextbox.component.mjs +85 -0
  10. package/esm2020/src/maskedtextbox/maskedtextbox.module.mjs +25 -0
  11. package/esm2020/src/numerictextbox/numerictextbox-all.module.mjs +23 -0
  12. package/esm2020/src/numerictextbox/numerictextbox.component.mjs +85 -0
  13. package/esm2020/src/numerictextbox/numerictextbox.module.mjs +25 -0
  14. package/esm2020/src/otp-input/otpinput-all.module.mjs +23 -0
  15. package/esm2020/src/otp-input/otpinput.component.mjs +85 -0
  16. package/esm2020/src/otp-input/otpinput.module.mjs +25 -0
  17. package/esm2020/src/rating/rating-all.module.mjs +23 -0
  18. package/esm2020/src/rating/rating.component.mjs +109 -0
  19. package/esm2020/src/rating/rating.module.mjs +25 -0
  20. package/esm2020/src/signature/signature-all.module.mjs +23 -0
  21. package/esm2020/src/signature/signature.component.mjs +84 -0
  22. package/esm2020/src/signature/signature.module.mjs +25 -0
  23. package/esm2020/src/slider/slider-all.module.mjs +23 -0
  24. package/esm2020/src/slider/slider.component.mjs +84 -0
  25. package/esm2020/src/slider/slider.module.mjs +25 -0
  26. package/esm2020/src/textarea/textarea-all.module.mjs +23 -0
  27. package/esm2020/src/textarea/textarea.component.mjs +85 -0
  28. package/esm2020/src/textarea/textarea.module.mjs +25 -0
  29. package/esm2020/src/textbox/textbox-all.module.mjs +23 -0
  30. package/esm2020/src/textbox/textbox.component.mjs +85 -0
  31. package/esm2020/src/textbox/textbox.module.mjs +25 -0
  32. package/esm2020/src/uploader/files.directive.mjs +58 -0
  33. package/esm2020/src/uploader/uploader-all.module.mjs +23 -0
  34. package/esm2020/src/uploader/uploader.component.mjs +96 -0
  35. package/esm2020/src/uploader/uploader.module.mjs +34 -0
  36. package/esm2020/syncfusion-ej2-angular-inputs.mjs +5 -0
  37. package/fesm2015/syncfusion-ej2-angular-inputs.mjs +1479 -0
  38. package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  39. package/fesm2020/syncfusion-ej2-angular-inputs.mjs +1479 -0
  40. package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  41. package/package.json +27 -13
  42. package/schematics/utils/lib-details.ts +2 -2
  43. package/src/color-picker/colorpicker-all.module.d.ts +6 -0
  44. package/src/color-picker/colorpicker.component.d.ts +3 -0
  45. package/src/color-picker/colorpicker.module.d.ts +6 -0
  46. package/src/maskedtextbox/maskedtextbox-all.module.d.ts +6 -0
  47. package/src/maskedtextbox/maskedtextbox.component.d.ts +3 -0
  48. package/src/maskedtextbox/maskedtextbox.module.d.ts +6 -0
  49. package/src/numerictextbox/numerictextbox-all.module.d.ts +6 -0
  50. package/src/numerictextbox/numerictextbox.component.d.ts +3 -0
  51. package/src/numerictextbox/numerictextbox.module.d.ts +6 -0
  52. package/src/otp-input/otpinput-all.module.d.ts +6 -0
  53. package/src/otp-input/otpinput.component.d.ts +3 -0
  54. package/src/otp-input/otpinput.module.d.ts +6 -0
  55. package/src/rating/rating-all.module.d.ts +6 -0
  56. package/src/rating/rating.component.d.ts +3 -0
  57. package/src/rating/rating.module.d.ts +6 -0
  58. package/src/signature/signature-all.module.d.ts +6 -0
  59. package/src/signature/signature.component.d.ts +3 -0
  60. package/src/signature/signature.module.d.ts +6 -0
  61. package/src/slider/slider-all.module.d.ts +6 -0
  62. package/src/slider/slider.component.d.ts +3 -0
  63. package/src/slider/slider.module.d.ts +6 -0
  64. package/src/textarea/textarea-all.module.d.ts +6 -0
  65. package/src/textarea/textarea.component.d.ts +3 -0
  66. package/src/textarea/textarea.module.d.ts +6 -0
  67. package/src/textbox/textbox-all.module.d.ts +6 -0
  68. package/src/textbox/textbox.component.d.ts +3 -0
  69. package/src/textbox/textbox.module.d.ts +6 -0
  70. package/src/uploader/files.directive.d.ts +5 -0
  71. package/src/uploader/uploader-all.module.d.ts +6 -0
  72. package/src/uploader/uploader.component.d.ts +3 -0
  73. package/src/uploader/uploader.module.d.ts +7 -0
  74. package/syncfusion-ej2-angular-inputs.d.ts +5 -0
  75. package/@syncfusion/ej2-angular-inputs.es5.js +0 -2149
  76. package/@syncfusion/ej2-angular-inputs.es5.js.map +0 -1
  77. package/@syncfusion/ej2-angular-inputs.js +0 -2025
  78. package/@syncfusion/ej2-angular-inputs.js.map +0 -1
  79. package/dist/ej2-angular-inputs.umd.js +0 -2252
  80. package/dist/ej2-angular-inputs.umd.js.map +0 -1
  81. package/dist/ej2-angular-inputs.umd.min.js +0 -11
  82. package/dist/ej2-angular-inputs.umd.min.js.map +0 -1
  83. package/ej2-angular-inputs.d.ts +0 -14
  84. package/ej2-angular-inputs.metadata.json +0 -1
  85. package/license +0 -10
@@ -0,0 +1,1479 @@
1
+ import { __decorate } from 'tslib';
2
+ import * as i0 from '@angular/core';
3
+ import { forwardRef, Component, ChangeDetectionStrategy, NgModule, Directive, ContentChildren, ContentChild } from '@angular/core';
4
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
5
+ import { setValue, FormBase, ComponentBase, ComponentMixins, ComplexBase, ArrayBase, Template } from '@syncfusion/ej2-angular-base';
6
+ import { TextBox, TextArea, NumericTextBox, MaskedTextBox, Slider, Uploader, ColorPicker, Signature, Rating, OtpInput, FormValidator } from '@syncfusion/ej2-inputs';
7
+ export * from '@syncfusion/ej2-inputs';
8
+ import { CommonModule } from '@angular/common';
9
+
10
+ var TextBoxComponent_1;
11
+ const inputs$9 = ['autocomplete', 'cssClass', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'multiline', 'placeholder', 'readonly', 'showClearButton', 'type', 'value', 'width'];
12
+ const outputs$a = ['blur', 'change', 'created', 'destroyed', 'focus', 'input', 'valueChange'];
13
+ const twoWays$9 = ['value'];
14
+ /**
15
+ * Represents the EJ2 Angular TextBox Component.
16
+ * ```html
17
+ * <ejs-textbox [value]='value'></ejs-textbox>
18
+ * ```
19
+ */
20
+ let TextBoxComponent = TextBoxComponent_1 = class TextBoxComponent extends TextBox {
21
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
22
+ super();
23
+ this.ngEle = ngEle;
24
+ this.srenderer = srenderer;
25
+ this.viewContainerRef = viewContainerRef;
26
+ this.injector = injector;
27
+ this.cdr = cdr;
28
+ this.skipFromEvent = true;
29
+ this.element = this.ngEle.nativeElement;
30
+ this.injectedModules = this.injectedModules || [];
31
+ this.registerEvents(outputs$a);
32
+ this.addTwoWay.call(this, twoWays$9);
33
+ setValue('currentInstance', this, this.viewContainerRef);
34
+ this.formContext = new FormBase();
35
+ this.formCompContext = new ComponentBase();
36
+ }
37
+ registerOnChange(registerFunction) {
38
+ }
39
+ registerOnTouched(registerFunction) {
40
+ }
41
+ writeValue(value) {
42
+ }
43
+ setDisabledState(disabled) {
44
+ }
45
+ ngOnInit() {
46
+ this.formCompContext.ngOnInit(this);
47
+ }
48
+ ngAfterViewInit() {
49
+ this.formContext.ngAfterViewInit(this);
50
+ }
51
+ ngOnDestroy() {
52
+ this.formCompContext.ngOnDestroy(this);
53
+ }
54
+ ngAfterContentChecked() {
55
+ this.formCompContext.ngAfterContentChecked(this);
56
+ }
57
+ };
58
+ TextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
59
+ TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: TextBoxComponent, selector: "ejs-textbox", inputs: { autocomplete: "autocomplete", cssClass: "cssClass", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", floatLabelType: "floatLabelType", htmlAttributes: "htmlAttributes", locale: "locale", multiline: "multiline", placeholder: "placeholder", readonly: "readonly", showClearButton: "showClearButton", type: "type", value: "value", width: "width" }, outputs: { blur: "blur", change: "change", created: "created", destroyed: "destroyed", focus: "focus", input: "input", valueChange: "valueChange" }, providers: [
60
+ {
61
+ provide: NG_VALUE_ACCESSOR,
62
+ useExisting: forwardRef(() => TextBoxComponent_1),
63
+ multi: true
64
+ }
65
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
66
+ TextBoxComponent = TextBoxComponent_1 = __decorate([
67
+ ComponentMixins([ComponentBase, FormBase])
68
+ ], TextBoxComponent);
69
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxComponent, decorators: [{
70
+ type: Component,
71
+ args: [{
72
+ selector: 'ejs-textbox',
73
+ inputs: inputs$9,
74
+ outputs: outputs$a,
75
+ template: '',
76
+ changeDetection: ChangeDetectionStrategy.OnPush,
77
+ providers: [
78
+ {
79
+ provide: NG_VALUE_ACCESSOR,
80
+ useExisting: forwardRef(() => TextBoxComponent),
81
+ multi: true
82
+ }
83
+ ],
84
+ queries: {}
85
+ }]
86
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; } });
87
+
88
+ /**
89
+ * NgModule definition for the TextBox component.
90
+ */
91
+ class TextBoxModule {
92
+ }
93
+ TextBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
94
+ TextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxModule, declarations: [TextBoxComponent], imports: [CommonModule], exports: [TextBoxComponent] });
95
+ TextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxModule, imports: [[CommonModule]] });
96
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxModule, decorators: [{
97
+ type: NgModule,
98
+ args: [{
99
+ imports: [CommonModule],
100
+ declarations: [
101
+ TextBoxComponent
102
+ ],
103
+ exports: [
104
+ TextBoxComponent
105
+ ]
106
+ }]
107
+ }] });
108
+
109
+ /**
110
+ * NgModule definition for the TextBox component with providers.
111
+ */
112
+ class TextBoxAllModule {
113
+ }
114
+ TextBoxAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
115
+ TextBoxAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxAllModule, imports: [CommonModule, TextBoxModule], exports: [TextBoxModule] });
116
+ TextBoxAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxAllModule, providers: [], imports: [[CommonModule, TextBoxModule], TextBoxModule] });
117
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextBoxAllModule, decorators: [{
118
+ type: NgModule,
119
+ args: [{
120
+ imports: [CommonModule, TextBoxModule],
121
+ exports: [
122
+ TextBoxModule
123
+ ],
124
+ providers: []
125
+ }]
126
+ }] });
127
+
128
+ var TextAreaComponent_1;
129
+ const inputs$8 = ['cols', 'cssClass', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'maxLength', 'placeholder', 'readonly', 'resizeMode', 'rows', 'showClearButton', 'value', 'width'];
130
+ const outputs$9 = ['blur', 'change', 'created', 'destroyed', 'focus', 'input', 'valueChange'];
131
+ const twoWays$8 = ['value'];
132
+ /**
133
+ * Represents the EJ2 Angular TextArea Component.
134
+ * ```html
135
+ * <ejs-textarea [value]='value'></ejs-textarea>
136
+ * ```
137
+ */
138
+ let TextAreaComponent = TextAreaComponent_1 = class TextAreaComponent extends TextArea {
139
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
140
+ super();
141
+ this.ngEle = ngEle;
142
+ this.srenderer = srenderer;
143
+ this.viewContainerRef = viewContainerRef;
144
+ this.injector = injector;
145
+ this.cdr = cdr;
146
+ this.skipFromEvent = true;
147
+ this.element = this.ngEle.nativeElement;
148
+ this.injectedModules = this.injectedModules || [];
149
+ this.registerEvents(outputs$9);
150
+ this.addTwoWay.call(this, twoWays$8);
151
+ setValue('currentInstance', this, this.viewContainerRef);
152
+ this.formContext = new FormBase();
153
+ this.formCompContext = new ComponentBase();
154
+ }
155
+ registerOnChange(registerFunction) {
156
+ }
157
+ registerOnTouched(registerFunction) {
158
+ }
159
+ writeValue(value) {
160
+ }
161
+ setDisabledState(disabled) {
162
+ }
163
+ ngOnInit() {
164
+ this.formCompContext.ngOnInit(this);
165
+ }
166
+ ngAfterViewInit() {
167
+ this.formContext.ngAfterViewInit(this);
168
+ }
169
+ ngOnDestroy() {
170
+ this.formCompContext.ngOnDestroy(this);
171
+ }
172
+ ngAfterContentChecked() {
173
+ this.formCompContext.ngAfterContentChecked(this);
174
+ }
175
+ };
176
+ TextAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
177
+ TextAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: TextAreaComponent, selector: "ejs-textarea", inputs: { cols: "cols", cssClass: "cssClass", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", floatLabelType: "floatLabelType", htmlAttributes: "htmlAttributes", locale: "locale", maxLength: "maxLength", placeholder: "placeholder", readonly: "readonly", resizeMode: "resizeMode", rows: "rows", showClearButton: "showClearButton", value: "value", width: "width" }, outputs: { blur: "blur", change: "change", created: "created", destroyed: "destroyed", focus: "focus", input: "input", valueChange: "valueChange" }, providers: [
178
+ {
179
+ provide: NG_VALUE_ACCESSOR,
180
+ useExisting: forwardRef(() => TextAreaComponent_1),
181
+ multi: true
182
+ }
183
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
184
+ TextAreaComponent = TextAreaComponent_1 = __decorate([
185
+ ComponentMixins([ComponentBase, FormBase])
186
+ ], TextAreaComponent);
187
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaComponent, decorators: [{
188
+ type: Component,
189
+ args: [{
190
+ selector: 'ejs-textarea',
191
+ inputs: inputs$8,
192
+ outputs: outputs$9,
193
+ template: '',
194
+ changeDetection: ChangeDetectionStrategy.OnPush,
195
+ providers: [
196
+ {
197
+ provide: NG_VALUE_ACCESSOR,
198
+ useExisting: forwardRef(() => TextAreaComponent),
199
+ multi: true
200
+ }
201
+ ],
202
+ queries: {}
203
+ }]
204
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; } });
205
+
206
+ /**
207
+ * NgModule definition for the TextArea component.
208
+ */
209
+ class TextAreaModule {
210
+ }
211
+ TextAreaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
212
+ TextAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaModule, declarations: [TextAreaComponent], imports: [CommonModule], exports: [TextAreaComponent] });
213
+ TextAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaModule, imports: [[CommonModule]] });
214
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaModule, decorators: [{
215
+ type: NgModule,
216
+ args: [{
217
+ imports: [CommonModule],
218
+ declarations: [
219
+ TextAreaComponent
220
+ ],
221
+ exports: [
222
+ TextAreaComponent
223
+ ]
224
+ }]
225
+ }] });
226
+
227
+ /**
228
+ * NgModule definition for the TextArea component with providers.
229
+ */
230
+ class TextAreaAllModule {
231
+ }
232
+ TextAreaAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
233
+ TextAreaAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaAllModule, imports: [CommonModule, TextAreaModule], exports: [TextAreaModule] });
234
+ TextAreaAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaAllModule, providers: [], imports: [[CommonModule, TextAreaModule], TextAreaModule] });
235
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: TextAreaAllModule, decorators: [{
236
+ type: NgModule,
237
+ args: [{
238
+ imports: [CommonModule, TextAreaModule],
239
+ exports: [
240
+ TextAreaModule
241
+ ],
242
+ providers: []
243
+ }]
244
+ }] });
245
+
246
+ var NumericTextBoxComponent_1;
247
+ const inputs$7 = ['cssClass', 'currency', 'currencyCode', 'decimals', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'format', 'htmlAttributes', 'locale', 'max', 'min', 'placeholder', 'readonly', 'showClearButton', 'showSpinButton', 'step', 'strictMode', 'validateDecimalOnType', 'value', 'width'];
248
+ const outputs$8 = ['blur', 'change', 'created', 'destroyed', 'focus', 'valueChange'];
249
+ const twoWays$7 = ['value'];
250
+ /**
251
+ * Represents the EJ2 Angular NumericTextBox Component.
252
+ * ```html
253
+ * <ej-numerictextbox [value]='value'></ej-numerictextbox>
254
+ * ```
255
+ */
256
+ let NumericTextBoxComponent = NumericTextBoxComponent_1 = class NumericTextBoxComponent extends NumericTextBox {
257
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
258
+ super();
259
+ this.ngEle = ngEle;
260
+ this.srenderer = srenderer;
261
+ this.viewContainerRef = viewContainerRef;
262
+ this.injector = injector;
263
+ this.cdr = cdr;
264
+ this.skipFromEvent = true;
265
+ this.element = this.ngEle.nativeElement;
266
+ this.injectedModules = this.injectedModules || [];
267
+ this.registerEvents(outputs$8);
268
+ this.addTwoWay.call(this, twoWays$7);
269
+ setValue('currentInstance', this, this.viewContainerRef);
270
+ this.formContext = new FormBase();
271
+ this.formCompContext = new ComponentBase();
272
+ }
273
+ registerOnChange(registerFunction) {
274
+ }
275
+ registerOnTouched(registerFunction) {
276
+ }
277
+ writeValue(value) {
278
+ }
279
+ setDisabledState(disabled) {
280
+ }
281
+ ngOnInit() {
282
+ this.formCompContext.ngOnInit(this);
283
+ }
284
+ ngAfterViewInit() {
285
+ this.formContext.ngAfterViewInit(this);
286
+ }
287
+ ngOnDestroy() {
288
+ this.formCompContext.ngOnDestroy(this);
289
+ }
290
+ ngAfterContentChecked() {
291
+ this.formCompContext.ngAfterContentChecked(this);
292
+ }
293
+ };
294
+ NumericTextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
295
+ NumericTextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: NumericTextBoxComponent, selector: "ejs-numerictextbox", inputs: { cssClass: "cssClass", currency: "currency", currencyCode: "currencyCode", decimals: "decimals", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", floatLabelType: "floatLabelType", format: "format", htmlAttributes: "htmlAttributes", locale: "locale", max: "max", min: "min", placeholder: "placeholder", readonly: "readonly", showClearButton: "showClearButton", showSpinButton: "showSpinButton", step: "step", strictMode: "strictMode", validateDecimalOnType: "validateDecimalOnType", value: "value", width: "width" }, outputs: { blur: "blur", change: "change", created: "created", destroyed: "destroyed", focus: "focus", valueChange: "valueChange" }, providers: [
296
+ {
297
+ provide: NG_VALUE_ACCESSOR,
298
+ useExisting: forwardRef(() => NumericTextBoxComponent_1),
299
+ multi: true
300
+ }
301
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
302
+ NumericTextBoxComponent = NumericTextBoxComponent_1 = __decorate([
303
+ ComponentMixins([ComponentBase, FormBase])
304
+ ], NumericTextBoxComponent);
305
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxComponent, decorators: [{
306
+ type: Component,
307
+ args: [{
308
+ selector: 'ejs-numerictextbox',
309
+ inputs: inputs$7,
310
+ outputs: outputs$8,
311
+ template: '',
312
+ changeDetection: ChangeDetectionStrategy.OnPush,
313
+ providers: [
314
+ {
315
+ provide: NG_VALUE_ACCESSOR,
316
+ useExisting: forwardRef(() => NumericTextBoxComponent),
317
+ multi: true
318
+ }
319
+ ],
320
+ queries: {}
321
+ }]
322
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; } });
323
+
324
+ /**
325
+ * NgModule definition for the NumericTextBox component.
326
+ */
327
+ class NumericTextBoxModule {
328
+ }
329
+ NumericTextBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
330
+ NumericTextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxModule, declarations: [NumericTextBoxComponent], imports: [CommonModule], exports: [NumericTextBoxComponent] });
331
+ NumericTextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxModule, imports: [[CommonModule]] });
332
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxModule, decorators: [{
333
+ type: NgModule,
334
+ args: [{
335
+ imports: [CommonModule],
336
+ declarations: [
337
+ NumericTextBoxComponent
338
+ ],
339
+ exports: [
340
+ NumericTextBoxComponent
341
+ ]
342
+ }]
343
+ }] });
344
+
345
+ /**
346
+ * NgModule definition for the NumericTextBox component with providers.
347
+ */
348
+ class NumericTextBoxAllModule {
349
+ }
350
+ NumericTextBoxAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
351
+ NumericTextBoxAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxAllModule, imports: [CommonModule, NumericTextBoxModule], exports: [NumericTextBoxModule] });
352
+ NumericTextBoxAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxAllModule, providers: [], imports: [[CommonModule, NumericTextBoxModule], NumericTextBoxModule] });
353
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NumericTextBoxAllModule, decorators: [{
354
+ type: NgModule,
355
+ args: [{
356
+ imports: [CommonModule, NumericTextBoxModule],
357
+ exports: [
358
+ NumericTextBoxModule
359
+ ],
360
+ providers: []
361
+ }]
362
+ }] });
363
+
364
+ var MaskedTextBoxComponent_1;
365
+ const inputs$6 = ['cssClass', 'customCharacters', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'mask', 'placeholder', 'promptChar', 'readonly', 'showClearButton', 'value', 'width'];
366
+ const outputs$7 = ['blur', 'change', 'created', 'destroyed', 'focus', 'valueChange'];
367
+ const twoWays$6 = ['value'];
368
+ /**
369
+ * Represents the EJ2 Angular MaskedTextbox Component.
370
+ * ```html
371
+ * <ej-maskedtextbox [value]='value'></ej-maskedtextbox>
372
+ * ```
373
+ */
374
+ let MaskedTextBoxComponent = MaskedTextBoxComponent_1 = class MaskedTextBoxComponent extends MaskedTextBox {
375
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
376
+ super();
377
+ this.ngEle = ngEle;
378
+ this.srenderer = srenderer;
379
+ this.viewContainerRef = viewContainerRef;
380
+ this.injector = injector;
381
+ this.cdr = cdr;
382
+ this.skipFromEvent = true;
383
+ this.element = this.ngEle.nativeElement;
384
+ this.injectedModules = this.injectedModules || [];
385
+ this.registerEvents(outputs$7);
386
+ this.addTwoWay.call(this, twoWays$6);
387
+ setValue('currentInstance', this, this.viewContainerRef);
388
+ this.formContext = new FormBase();
389
+ this.formCompContext = new ComponentBase();
390
+ }
391
+ registerOnChange(registerFunction) {
392
+ }
393
+ registerOnTouched(registerFunction) {
394
+ }
395
+ writeValue(value) {
396
+ }
397
+ setDisabledState(disabled) {
398
+ }
399
+ ngOnInit() {
400
+ this.formCompContext.ngOnInit(this);
401
+ }
402
+ ngAfterViewInit() {
403
+ this.formContext.ngAfterViewInit(this);
404
+ }
405
+ ngOnDestroy() {
406
+ this.formCompContext.ngOnDestroy(this);
407
+ }
408
+ ngAfterContentChecked() {
409
+ this.formCompContext.ngAfterContentChecked(this);
410
+ }
411
+ };
412
+ MaskedTextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
413
+ MaskedTextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: MaskedTextBoxComponent, selector: "ejs-maskedtextbox", inputs: { cssClass: "cssClass", customCharacters: "customCharacters", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", floatLabelType: "floatLabelType", htmlAttributes: "htmlAttributes", locale: "locale", mask: "mask", placeholder: "placeholder", promptChar: "promptChar", readonly: "readonly", showClearButton: "showClearButton", value: "value", width: "width" }, outputs: { blur: "blur", change: "change", created: "created", destroyed: "destroyed", focus: "focus", valueChange: "valueChange" }, providers: [
414
+ {
415
+ provide: NG_VALUE_ACCESSOR,
416
+ useExisting: forwardRef(() => MaskedTextBoxComponent_1),
417
+ multi: true
418
+ }
419
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
420
+ MaskedTextBoxComponent = MaskedTextBoxComponent_1 = __decorate([
421
+ ComponentMixins([ComponentBase, FormBase])
422
+ ], MaskedTextBoxComponent);
423
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxComponent, decorators: [{
424
+ type: Component,
425
+ args: [{
426
+ selector: 'ejs-maskedtextbox',
427
+ inputs: inputs$6,
428
+ outputs: outputs$7,
429
+ template: '',
430
+ changeDetection: ChangeDetectionStrategy.OnPush,
431
+ providers: [
432
+ {
433
+ provide: NG_VALUE_ACCESSOR,
434
+ useExisting: forwardRef(() => MaskedTextBoxComponent),
435
+ multi: true
436
+ }
437
+ ],
438
+ queries: {}
439
+ }]
440
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; } });
441
+
442
+ /**
443
+ * NgModule definition for the MaskedTextBox component.
444
+ */
445
+ class MaskedTextBoxModule {
446
+ }
447
+ MaskedTextBoxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
448
+ MaskedTextBoxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxModule, declarations: [MaskedTextBoxComponent], imports: [CommonModule], exports: [MaskedTextBoxComponent] });
449
+ MaskedTextBoxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxModule, imports: [[CommonModule]] });
450
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxModule, decorators: [{
451
+ type: NgModule,
452
+ args: [{
453
+ imports: [CommonModule],
454
+ declarations: [
455
+ MaskedTextBoxComponent
456
+ ],
457
+ exports: [
458
+ MaskedTextBoxComponent
459
+ ]
460
+ }]
461
+ }] });
462
+
463
+ /**
464
+ * NgModule definition for the MaskedTextBox component with providers.
465
+ */
466
+ class MaskedTextBoxAllModule {
467
+ }
468
+ MaskedTextBoxAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
469
+ MaskedTextBoxAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxAllModule, imports: [CommonModule, MaskedTextBoxModule], exports: [MaskedTextBoxModule] });
470
+ MaskedTextBoxAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxAllModule, providers: [], imports: [[CommonModule, MaskedTextBoxModule], MaskedTextBoxModule] });
471
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MaskedTextBoxAllModule, decorators: [{
472
+ type: NgModule,
473
+ args: [{
474
+ imports: [CommonModule, MaskedTextBoxModule],
475
+ exports: [
476
+ MaskedTextBoxModule
477
+ ],
478
+ providers: []
479
+ }]
480
+ }] });
481
+
482
+ var SliderComponent_1;
483
+ const inputs$5 = ['colorRange', 'cssClass', 'customValues', 'enableAnimation', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enabled', 'limits', 'locale', 'max', 'min', 'orientation', 'readonly', 'showButtons', 'step', 'ticks', 'tooltip', 'type', 'value', 'width'];
484
+ const outputs$6 = ['focus', 'blur', 'change', 'changed', 'created', 'renderedTicks', 'renderingTicks', 'tooltipChange', 'valueChange'];
485
+ const twoWays$5 = ['value'];
486
+ /**
487
+ * Represents the EJ2 Angular Slider Component.
488
+ * ```html
489
+ * <ejs-slider [value]='value'></ejs-slider>
490
+ * ```
491
+ */
492
+ let SliderComponent = SliderComponent_1 = class SliderComponent extends Slider {
493
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
494
+ super();
495
+ this.ngEle = ngEle;
496
+ this.srenderer = srenderer;
497
+ this.viewContainerRef = viewContainerRef;
498
+ this.injector = injector;
499
+ this.cdr = cdr;
500
+ this.element = this.ngEle.nativeElement;
501
+ this.injectedModules = this.injectedModules || [];
502
+ this.registerEvents(outputs$6);
503
+ this.addTwoWay.call(this, twoWays$5);
504
+ setValue('currentInstance', this, this.viewContainerRef);
505
+ this.formContext = new FormBase();
506
+ this.formCompContext = new ComponentBase();
507
+ }
508
+ registerOnChange(registerFunction) {
509
+ }
510
+ registerOnTouched(registerFunction) {
511
+ }
512
+ writeValue(value) {
513
+ }
514
+ setDisabledState(disabled) {
515
+ }
516
+ ngOnInit() {
517
+ this.formCompContext.ngOnInit(this);
518
+ }
519
+ ngAfterViewInit() {
520
+ this.formContext.ngAfterViewInit(this);
521
+ }
522
+ ngOnDestroy() {
523
+ this.formCompContext.ngOnDestroy(this);
524
+ }
525
+ ngAfterContentChecked() {
526
+ this.formCompContext.ngAfterContentChecked(this);
527
+ }
528
+ };
529
+ SliderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
530
+ SliderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: SliderComponent, selector: "ejs-slider", inputs: { colorRange: "colorRange", cssClass: "cssClass", customValues: "customValues", enableAnimation: "enableAnimation", enableHtmlSanitizer: "enableHtmlSanitizer", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", limits: "limits", locale: "locale", max: "max", min: "min", orientation: "orientation", readonly: "readonly", showButtons: "showButtons", step: "step", ticks: "ticks", tooltip: "tooltip", type: "type", value: "value", width: "width" }, outputs: { focus: "focus", blur: "blur", change: "change", changed: "changed", created: "created", renderedTicks: "renderedTicks", renderingTicks: "renderingTicks", tooltipChange: "tooltipChange", valueChange: "valueChange" }, providers: [
531
+ {
532
+ provide: NG_VALUE_ACCESSOR,
533
+ useExisting: forwardRef(() => SliderComponent_1),
534
+ multi: true
535
+ }
536
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
537
+ SliderComponent = SliderComponent_1 = __decorate([
538
+ ComponentMixins([ComponentBase, FormBase])
539
+ ], SliderComponent);
540
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderComponent, decorators: [{
541
+ type: Component,
542
+ args: [{
543
+ selector: 'ejs-slider',
544
+ inputs: inputs$5,
545
+ outputs: outputs$6,
546
+ template: '',
547
+ changeDetection: ChangeDetectionStrategy.OnPush,
548
+ providers: [
549
+ {
550
+ provide: NG_VALUE_ACCESSOR,
551
+ useExisting: forwardRef(() => SliderComponent),
552
+ multi: true
553
+ }
554
+ ],
555
+ queries: {}
556
+ }]
557
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; } });
558
+
559
+ /**
560
+ * NgModule definition for the Slider component.
561
+ */
562
+ class SliderModule {
563
+ }
564
+ SliderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
565
+ SliderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderModule, declarations: [SliderComponent], imports: [CommonModule], exports: [SliderComponent] });
566
+ SliderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderModule, imports: [[CommonModule]] });
567
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderModule, decorators: [{
568
+ type: NgModule,
569
+ args: [{
570
+ imports: [CommonModule],
571
+ declarations: [
572
+ SliderComponent
573
+ ],
574
+ exports: [
575
+ SliderComponent
576
+ ]
577
+ }]
578
+ }] });
579
+
580
+ /**
581
+ * NgModule definition for the Slider component with providers.
582
+ */
583
+ class SliderAllModule {
584
+ }
585
+ SliderAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
586
+ SliderAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderAllModule, imports: [CommonModule, SliderModule], exports: [SliderModule] });
587
+ SliderAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderAllModule, providers: [], imports: [[CommonModule, SliderModule], SliderModule] });
588
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SliderAllModule, decorators: [{
589
+ type: NgModule,
590
+ args: [{
591
+ imports: [CommonModule, SliderModule],
592
+ exports: [
593
+ SliderModule
594
+ ],
595
+ providers: []
596
+ }]
597
+ }] });
598
+
599
+ let input = ['name', 'size', 'type'];
600
+ let outputs$5 = [];
601
+ /**
602
+ * 'e-files' directive represent a file of angular uploader
603
+ * It must be contained in a Uploader component(`ejs-uploader`).
604
+ * ```html
605
+ * <ejs-uploader id='fileupload' multiple=true>
606
+ * <e-files>
607
+ * <e-file name='Java' size=23000 type='pdf'></e-file>
608
+ * <e-file name='C++' size=30000 type='.docx'></e-file>
609
+ * </e-files>
610
+ * </ejs-uploader>
611
+ * ```
612
+ */
613
+ class UploadedFilesDirective extends ComplexBase {
614
+ constructor(viewContainerRef) {
615
+ super();
616
+ this.viewContainerRef = viewContainerRef;
617
+ setValue('currentInstance', this, this.viewContainerRef);
618
+ this.registerEvents(outputs$5);
619
+ this.directivePropList = input;
620
+ }
621
+ }
622
+ UploadedFilesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploadedFilesDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
623
+ UploadedFilesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: UploadedFilesDirective, selector: "e-files>e-uploadedfiles", inputs: { name: "name", size: "size", type: "type" }, usesInheritance: true, ngImport: i0 });
624
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploadedFilesDirective, decorators: [{
625
+ type: Directive,
626
+ args: [{
627
+ selector: 'e-files>e-uploadedfiles',
628
+ inputs: input,
629
+ outputs: outputs$5,
630
+ queries: {}
631
+ }]
632
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
633
+ /**
634
+ * UploadedFiles Array Directive
635
+ * @private
636
+ */
637
+ class FilesDirective extends ArrayBase {
638
+ constructor() {
639
+ super('files');
640
+ }
641
+ }
642
+ FilesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: FilesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
643
+ FilesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: FilesDirective, selector: "ejs-uploader>e-files", queries: [{ propertyName: "children", predicate: UploadedFilesDirective }], usesInheritance: true, ngImport: i0 });
644
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: FilesDirective, decorators: [{
645
+ type: Directive,
646
+ args: [{
647
+ selector: 'ejs-uploader>e-files',
648
+ queries: {
649
+ children: new ContentChildren(UploadedFilesDirective)
650
+ },
651
+ }]
652
+ }], ctorParameters: function () { return []; } });
653
+
654
+ var UploaderComponent_1;
655
+ const inputs$4 = ['allowedExtensions', 'asyncSettings', 'autoUpload', 'buttons', 'cssClass', 'directoryUpload', 'dropArea', 'dropEffect', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enabled', 'files', 'htmlAttributes', 'locale', 'maxFileSize', 'minFileSize', 'multiple', 'sequentialUpload', 'showFileList', 'template'];
656
+ const outputs$4 = ['focus', 'blur', 'actionComplete', 'beforeRemove', 'beforeUpload', 'canceling', 'change', 'chunkFailure', 'chunkSuccess', 'chunkUploading', 'clearing', 'created', 'failure', 'fileListRendering', 'pausing', 'progress', 'removing', 'rendering', 'resuming', 'selected', 'success', 'uploading'];
657
+ const twoWays$4 = [];
658
+ /**
659
+ * Represents the EJ2 Angular Uploader Component.
660
+ * ```html
661
+ * <ejs-uploader></ejs-uploader>
662
+ * ```
663
+ */
664
+ let UploaderComponent = UploaderComponent_1 = class UploaderComponent extends Uploader {
665
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
666
+ super();
667
+ this.ngEle = ngEle;
668
+ this.srenderer = srenderer;
669
+ this.viewContainerRef = viewContainerRef;
670
+ this.injector = injector;
671
+ this.cdr = cdr;
672
+ this.tags = ['files'];
673
+ this.element = this.ngEle.nativeElement;
674
+ this.injectedModules = this.injectedModules || [];
675
+ this.registerEvents(outputs$4);
676
+ this.addTwoWay.call(this, twoWays$4);
677
+ setValue('currentInstance', this, this.viewContainerRef);
678
+ this.formContext = new FormBase();
679
+ this.formCompContext = new ComponentBase();
680
+ }
681
+ registerOnChange(registerFunction) {
682
+ }
683
+ registerOnTouched(registerFunction) {
684
+ }
685
+ writeValue(value) {
686
+ }
687
+ setDisabledState(disabled) {
688
+ }
689
+ ngOnInit() {
690
+ this.formCompContext.ngOnInit(this);
691
+ }
692
+ ngAfterViewInit() {
693
+ this.formContext.ngAfterViewInit(this);
694
+ }
695
+ ngOnDestroy() {
696
+ this.formCompContext.ngOnDestroy(this);
697
+ }
698
+ ngAfterContentChecked() {
699
+ this.tagObjects[0].instance = this.childFiles;
700
+ this.formCompContext.ngAfterContentChecked(this);
701
+ }
702
+ };
703
+ UploaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
704
+ UploaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: UploaderComponent, selector: "ejs-uploader", inputs: { allowedExtensions: "allowedExtensions", asyncSettings: "asyncSettings", autoUpload: "autoUpload", buttons: "buttons", cssClass: "cssClass", directoryUpload: "directoryUpload", dropArea: "dropArea", dropEffect: "dropEffect", enableHtmlSanitizer: "enableHtmlSanitizer", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enabled: "enabled", files: "files", htmlAttributes: "htmlAttributes", locale: "locale", maxFileSize: "maxFileSize", minFileSize: "minFileSize", multiple: "multiple", sequentialUpload: "sequentialUpload", showFileList: "showFileList", template: "template" }, outputs: { focus: "focus", blur: "blur", actionComplete: "actionComplete", beforeRemove: "beforeRemove", beforeUpload: "beforeUpload", canceling: "canceling", change: "change", chunkFailure: "chunkFailure", chunkSuccess: "chunkSuccess", chunkUploading: "chunkUploading", clearing: "clearing", created: "created", failure: "failure", fileListRendering: "fileListRendering", pausing: "pausing", progress: "progress", removing: "removing", rendering: "rendering", resuming: "resuming", selected: "selected", success: "success", uploading: "uploading" }, providers: [
705
+ {
706
+ provide: NG_VALUE_ACCESSOR,
707
+ useExisting: forwardRef(() => UploaderComponent_1),
708
+ multi: true
709
+ }
710
+ ], queries: [{ propertyName: "template", first: true, predicate: ["template"], descendants: true }, { propertyName: "childFiles", first: true, predicate: FilesDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
711
+ __decorate([
712
+ Template()
713
+ ], UploaderComponent.prototype, "template", void 0);
714
+ UploaderComponent = UploaderComponent_1 = __decorate([
715
+ ComponentMixins([ComponentBase, FormBase])
716
+ ], UploaderComponent);
717
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderComponent, decorators: [{
718
+ type: Component,
719
+ args: [{
720
+ selector: 'ejs-uploader',
721
+ inputs: inputs$4,
722
+ outputs: outputs$4,
723
+ template: '',
724
+ changeDetection: ChangeDetectionStrategy.OnPush,
725
+ providers: [
726
+ {
727
+ provide: NG_VALUE_ACCESSOR,
728
+ useExisting: forwardRef(() => UploaderComponent),
729
+ multi: true
730
+ }
731
+ ],
732
+ queries: {
733
+ childFiles: new ContentChild(FilesDirective)
734
+ }
735
+ }]
736
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { template: [{
737
+ type: ContentChild,
738
+ args: ['template']
739
+ }] } });
740
+
741
+ /**
742
+ * NgModule definition for the Uploader component.
743
+ */
744
+ class UploaderModule {
745
+ }
746
+ UploaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
747
+ UploaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderModule, declarations: [UploaderComponent,
748
+ UploadedFilesDirective,
749
+ FilesDirective], imports: [CommonModule], exports: [UploaderComponent,
750
+ UploadedFilesDirective,
751
+ FilesDirective] });
752
+ UploaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderModule, imports: [[CommonModule]] });
753
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderModule, decorators: [{
754
+ type: NgModule,
755
+ args: [{
756
+ imports: [CommonModule],
757
+ declarations: [
758
+ UploaderComponent,
759
+ UploadedFilesDirective,
760
+ FilesDirective
761
+ ],
762
+ exports: [
763
+ UploaderComponent,
764
+ UploadedFilesDirective,
765
+ FilesDirective
766
+ ]
767
+ }]
768
+ }] });
769
+
770
+ /**
771
+ * NgModule definition for the Uploader component with providers.
772
+ */
773
+ class UploaderAllModule {
774
+ }
775
+ UploaderAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
776
+ UploaderAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderAllModule, imports: [CommonModule, UploaderModule], exports: [UploaderModule] });
777
+ UploaderAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderAllModule, providers: [], imports: [[CommonModule, UploaderModule], UploaderModule] });
778
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: UploaderAllModule, decorators: [{
779
+ type: NgModule,
780
+ args: [{
781
+ imports: [CommonModule, UploaderModule],
782
+ exports: [
783
+ UploaderModule
784
+ ],
785
+ providers: []
786
+ }]
787
+ }] });
788
+
789
+ var ColorPickerComponent_1;
790
+ const inputs$3 = ['columns', 'createPopupOnClick', 'cssClass', 'disabled', 'enableOpacity', 'enablePersistence', 'enableRtl', 'inline', 'locale', 'mode', 'modeSwitcher', 'noColor', 'presetColors', 'showButtons', 'value'];
791
+ const outputs$3 = ['focus', 'blur', 'beforeClose', 'beforeModeSwitch', 'beforeOpen', 'beforeTileRender', 'change', 'created', 'onModeSwitch', 'open', 'select', 'valueChange'];
792
+ const twoWays$3 = ['value'];
793
+ /**
794
+ * Represents the EJ2 Angular ColorPicker Component.
795
+ * ```html
796
+ * <input ejs-colorpicker type='color'/>
797
+ * ```
798
+ */
799
+ let ColorPickerComponent = ColorPickerComponent_1 = class ColorPickerComponent extends ColorPicker {
800
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
801
+ super();
802
+ this.ngEle = ngEle;
803
+ this.srenderer = srenderer;
804
+ this.viewContainerRef = viewContainerRef;
805
+ this.injector = injector;
806
+ this.cdr = cdr;
807
+ this.element = this.ngEle.nativeElement;
808
+ this.injectedModules = this.injectedModules || [];
809
+ this.registerEvents(outputs$3);
810
+ this.addTwoWay.call(this, twoWays$3);
811
+ setValue('currentInstance', this, this.viewContainerRef);
812
+ this.formContext = new FormBase();
813
+ this.formCompContext = new ComponentBase();
814
+ }
815
+ registerOnChange(registerFunction) {
816
+ }
817
+ registerOnTouched(registerFunction) {
818
+ }
819
+ writeValue(value) {
820
+ }
821
+ setDisabledState(disabled) {
822
+ }
823
+ ngOnInit() {
824
+ this.formCompContext.ngOnInit(this);
825
+ }
826
+ ngAfterViewInit() {
827
+ this.formContext.ngAfterViewInit(this);
828
+ }
829
+ ngOnDestroy() {
830
+ this.formCompContext.ngOnDestroy(this);
831
+ }
832
+ ngAfterContentChecked() {
833
+ this.formCompContext.ngAfterContentChecked(this);
834
+ }
835
+ };
836
+ ColorPickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
837
+ ColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: ColorPickerComponent, selector: "[ejs-colorpicker]", inputs: { columns: "columns", createPopupOnClick: "createPopupOnClick", cssClass: "cssClass", disabled: "disabled", enableOpacity: "enableOpacity", enablePersistence: "enablePersistence", enableRtl: "enableRtl", inline: "inline", locale: "locale", mode: "mode", modeSwitcher: "modeSwitcher", noColor: "noColor", presetColors: "presetColors", showButtons: "showButtons", value: "value" }, outputs: { focus: "focus", blur: "blur", beforeClose: "beforeClose", beforeModeSwitch: "beforeModeSwitch", beforeOpen: "beforeOpen", beforeTileRender: "beforeTileRender", change: "change", created: "created", onModeSwitch: "onModeSwitch", open: "open", select: "select", valueChange: "valueChange" }, providers: [
838
+ {
839
+ provide: NG_VALUE_ACCESSOR,
840
+ useExisting: forwardRef(() => ColorPickerComponent_1),
841
+ multi: true
842
+ }
843
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
844
+ ColorPickerComponent = ColorPickerComponent_1 = __decorate([
845
+ ComponentMixins([ComponentBase, FormBase])
846
+ ], ColorPickerComponent);
847
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerComponent, decorators: [{
848
+ type: Component,
849
+ args: [{
850
+ selector: '[ejs-colorpicker]',
851
+ inputs: inputs$3,
852
+ outputs: outputs$3,
853
+ template: '',
854
+ changeDetection: ChangeDetectionStrategy.OnPush,
855
+ providers: [
856
+ {
857
+ provide: NG_VALUE_ACCESSOR,
858
+ useExisting: forwardRef(() => ColorPickerComponent),
859
+ multi: true
860
+ }
861
+ ],
862
+ queries: {}
863
+ }]
864
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; } });
865
+
866
+ /**
867
+ * NgModule definition for the ColorPicker component.
868
+ */
869
+ class ColorPickerModule {
870
+ }
871
+ ColorPickerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
872
+ ColorPickerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerModule, declarations: [ColorPickerComponent], imports: [CommonModule], exports: [ColorPickerComponent] });
873
+ ColorPickerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerModule, imports: [[CommonModule]] });
874
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerModule, decorators: [{
875
+ type: NgModule,
876
+ args: [{
877
+ imports: [CommonModule],
878
+ declarations: [
879
+ ColorPickerComponent
880
+ ],
881
+ exports: [
882
+ ColorPickerComponent
883
+ ]
884
+ }]
885
+ }] });
886
+
887
+ /**
888
+ * NgModule definition for the ColorPicker component with providers.
889
+ */
890
+ class ColorPickerAllModule {
891
+ }
892
+ ColorPickerAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
893
+ ColorPickerAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerAllModule, imports: [CommonModule, ColorPickerModule], exports: [ColorPickerModule] });
894
+ ColorPickerAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerAllModule, providers: [], imports: [[CommonModule, ColorPickerModule], ColorPickerModule] });
895
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorPickerAllModule, decorators: [{
896
+ type: NgModule,
897
+ args: [{
898
+ imports: [CommonModule, ColorPickerModule],
899
+ exports: [
900
+ ColorPickerModule
901
+ ],
902
+ providers: []
903
+ }]
904
+ }] });
905
+
906
+ var SignatureComponent_1;
907
+ const inputs$2 = ['backgroundColor', 'backgroundImage', 'disabled', 'enablePersistence', 'enableRtl', 'isReadOnly', 'locale', 'maxStrokeWidth', 'minStrokeWidth', 'saveWithBackground', 'strokeColor', 'velocity'];
908
+ const outputs$2 = ['focus', 'blur', 'beforeSave', 'change', 'created'];
909
+ const twoWays$2 = [];
910
+ /**
911
+ * Represents the EJ2 Angular Signature Component.
912
+ * ```html
913
+ * <canvas ejs-signature />
914
+ * ```
915
+ */
916
+ let SignatureComponent = SignatureComponent_1 = class SignatureComponent extends Signature {
917
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
918
+ super();
919
+ this.ngEle = ngEle;
920
+ this.srenderer = srenderer;
921
+ this.viewContainerRef = viewContainerRef;
922
+ this.injector = injector;
923
+ this.cdr = cdr;
924
+ this.element = this.ngEle.nativeElement;
925
+ this.injectedModules = this.injectedModules || [];
926
+ this.registerEvents(outputs$2);
927
+ this.addTwoWay.call(this, twoWays$2);
928
+ setValue('currentInstance', this, this.viewContainerRef);
929
+ this.formContext = new FormBase();
930
+ this.formCompContext = new ComponentBase();
931
+ }
932
+ registerOnChange(registerFunction) {
933
+ }
934
+ registerOnTouched(registerFunction) {
935
+ }
936
+ writeValue(value) {
937
+ }
938
+ setDisabledState(disabled) {
939
+ }
940
+ ngOnInit() {
941
+ this.formCompContext.ngOnInit(this);
942
+ }
943
+ ngAfterViewInit() {
944
+ this.formContext.ngAfterViewInit(this);
945
+ }
946
+ ngOnDestroy() {
947
+ this.formCompContext.ngOnDestroy(this);
948
+ }
949
+ ngAfterContentChecked() {
950
+ this.formCompContext.ngAfterContentChecked(this);
951
+ }
952
+ };
953
+ SignatureComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
954
+ SignatureComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: SignatureComponent, selector: "[ejs-signature]", inputs: { backgroundColor: "backgroundColor", backgroundImage: "backgroundImage", disabled: "disabled", enablePersistence: "enablePersistence", enableRtl: "enableRtl", isReadOnly: "isReadOnly", locale: "locale", maxStrokeWidth: "maxStrokeWidth", minStrokeWidth: "minStrokeWidth", saveWithBackground: "saveWithBackground", strokeColor: "strokeColor", velocity: "velocity" }, outputs: { focus: "focus", blur: "blur", beforeSave: "beforeSave", change: "change", created: "created" }, providers: [
955
+ {
956
+ provide: NG_VALUE_ACCESSOR,
957
+ useExisting: forwardRef(() => SignatureComponent_1),
958
+ multi: true
959
+ }
960
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
961
+ SignatureComponent = SignatureComponent_1 = __decorate([
962
+ ComponentMixins([ComponentBase, FormBase])
963
+ ], SignatureComponent);
964
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureComponent, decorators: [{
965
+ type: Component,
966
+ args: [{
967
+ selector: '[ejs-signature]',
968
+ inputs: inputs$2,
969
+ outputs: outputs$2,
970
+ template: '',
971
+ changeDetection: ChangeDetectionStrategy.OnPush,
972
+ providers: [
973
+ {
974
+ provide: NG_VALUE_ACCESSOR,
975
+ useExisting: forwardRef(() => SignatureComponent),
976
+ multi: true
977
+ }
978
+ ],
979
+ queries: {}
980
+ }]
981
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; } });
982
+
983
+ /**
984
+ * NgModule definition for the Signature component.
985
+ */
986
+ class SignatureModule {
987
+ }
988
+ SignatureModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
989
+ SignatureModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureModule, declarations: [SignatureComponent], imports: [CommonModule], exports: [SignatureComponent] });
990
+ SignatureModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureModule, imports: [[CommonModule]] });
991
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureModule, decorators: [{
992
+ type: NgModule,
993
+ args: [{
994
+ imports: [CommonModule],
995
+ declarations: [
996
+ SignatureComponent
997
+ ],
998
+ exports: [
999
+ SignatureComponent
1000
+ ]
1001
+ }]
1002
+ }] });
1003
+
1004
+ /**
1005
+ * NgModule definition for the Signature component with providers.
1006
+ */
1007
+ class SignatureAllModule {
1008
+ }
1009
+ SignatureAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1010
+ SignatureAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureAllModule, imports: [CommonModule, SignatureModule], exports: [SignatureModule] });
1011
+ SignatureAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureAllModule, providers: [], imports: [[CommonModule, SignatureModule], SignatureModule] });
1012
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SignatureAllModule, decorators: [{
1013
+ type: NgModule,
1014
+ args: [{
1015
+ imports: [CommonModule, SignatureModule],
1016
+ exports: [
1017
+ SignatureModule
1018
+ ],
1019
+ providers: []
1020
+ }]
1021
+ }] });
1022
+
1023
+ var RatingComponent_1;
1024
+ const inputs$1 = ['allowReset', 'cssClass', 'disabled', 'emptyTemplate', 'enableAnimation', 'enablePersistence', 'enableRtl', 'enableSingleSelection', 'fullTemplate', 'itemsCount', 'labelPosition', 'labelTemplate', 'locale', 'min', 'precision', 'readOnly', 'showLabel', 'showTooltip', 'tooltipTemplate', 'value', 'visible'];
1025
+ const outputs$1 = ['focus', 'blur', 'beforeItemRender', 'created', 'onItemHover', 'valueChanged', 'valueChange'];
1026
+ const twoWays$1 = ['value'];
1027
+ /**
1028
+ * Represents the EJ2 Angular Rating Component.
1029
+ * ```html
1030
+ * <input ejs-rating [value]='value' />
1031
+ * ```
1032
+ */
1033
+ let RatingComponent = RatingComponent_1 = class RatingComponent extends Rating {
1034
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
1035
+ super();
1036
+ this.ngEle = ngEle;
1037
+ this.srenderer = srenderer;
1038
+ this.viewContainerRef = viewContainerRef;
1039
+ this.injector = injector;
1040
+ this.cdr = cdr;
1041
+ this.element = this.ngEle.nativeElement;
1042
+ this.injectedModules = this.injectedModules || [];
1043
+ this.registerEvents(outputs$1);
1044
+ this.addTwoWay.call(this, twoWays$1);
1045
+ setValue('currentInstance', this, this.viewContainerRef);
1046
+ this.formContext = new FormBase();
1047
+ this.formCompContext = new ComponentBase();
1048
+ }
1049
+ registerOnChange(registerFunction) {
1050
+ }
1051
+ registerOnTouched(registerFunction) {
1052
+ }
1053
+ writeValue(value) {
1054
+ }
1055
+ setDisabledState(disabled) {
1056
+ }
1057
+ ngOnInit() {
1058
+ this.formCompContext.ngOnInit(this);
1059
+ }
1060
+ ngAfterViewInit() {
1061
+ this.formContext.ngAfterViewInit(this);
1062
+ }
1063
+ ngOnDestroy() {
1064
+ this.formCompContext.ngOnDestroy(this);
1065
+ }
1066
+ ngAfterContentChecked() {
1067
+ this.formCompContext.ngAfterContentChecked(this);
1068
+ }
1069
+ };
1070
+ RatingComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
1071
+ RatingComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: RatingComponent, selector: "[ejs-rating]", inputs: { allowReset: "allowReset", cssClass: "cssClass", disabled: "disabled", emptyTemplate: "emptyTemplate", enableAnimation: "enableAnimation", enablePersistence: "enablePersistence", enableRtl: "enableRtl", enableSingleSelection: "enableSingleSelection", fullTemplate: "fullTemplate", itemsCount: "itemsCount", labelPosition: "labelPosition", labelTemplate: "labelTemplate", locale: "locale", min: "min", precision: "precision", readOnly: "readOnly", showLabel: "showLabel", showTooltip: "showTooltip", tooltipTemplate: "tooltipTemplate", value: "value", visible: "visible" }, outputs: { focus: "focus", blur: "blur", beforeItemRender: "beforeItemRender", created: "created", onItemHover: "onItemHover", valueChanged: "valueChanged", valueChange: "valueChange" }, providers: [
1072
+ {
1073
+ provide: NG_VALUE_ACCESSOR,
1074
+ useExisting: forwardRef(() => RatingComponent_1),
1075
+ multi: true
1076
+ }
1077
+ ], queries: [{ propertyName: "fullTemplate", first: true, predicate: ["fullTemplate"], descendants: true }, { propertyName: "emptyTemplate", first: true, predicate: ["emptyTemplate"], descendants: true }, { propertyName: "tooltipTemplate", first: true, predicate: ["tooltipTemplate"], descendants: true }, { propertyName: "labelTemplate", first: true, predicate: ["labelTemplate"], descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1078
+ __decorate([
1079
+ Template()
1080
+ ], RatingComponent.prototype, "fullTemplate", void 0);
1081
+ __decorate([
1082
+ Template()
1083
+ ], RatingComponent.prototype, "emptyTemplate", void 0);
1084
+ __decorate([
1085
+ Template()
1086
+ ], RatingComponent.prototype, "tooltipTemplate", void 0);
1087
+ __decorate([
1088
+ Template()
1089
+ ], RatingComponent.prototype, "labelTemplate", void 0);
1090
+ RatingComponent = RatingComponent_1 = __decorate([
1091
+ ComponentMixins([ComponentBase, FormBase])
1092
+ ], RatingComponent);
1093
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingComponent, decorators: [{
1094
+ type: Component,
1095
+ args: [{
1096
+ selector: '[ejs-rating]',
1097
+ inputs: inputs$1,
1098
+ outputs: outputs$1,
1099
+ template: '',
1100
+ changeDetection: ChangeDetectionStrategy.OnPush,
1101
+ providers: [
1102
+ {
1103
+ provide: NG_VALUE_ACCESSOR,
1104
+ useExisting: forwardRef(() => RatingComponent),
1105
+ multi: true
1106
+ }
1107
+ ],
1108
+ queries: {}
1109
+ }]
1110
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { fullTemplate: [{
1111
+ type: ContentChild,
1112
+ args: ['fullTemplate']
1113
+ }], emptyTemplate: [{
1114
+ type: ContentChild,
1115
+ args: ['emptyTemplate']
1116
+ }], tooltipTemplate: [{
1117
+ type: ContentChild,
1118
+ args: ['tooltipTemplate']
1119
+ }], labelTemplate: [{
1120
+ type: ContentChild,
1121
+ args: ['labelTemplate']
1122
+ }] } });
1123
+
1124
+ /**
1125
+ * NgModule definition for the Rating component.
1126
+ */
1127
+ class RatingModule {
1128
+ }
1129
+ RatingModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1130
+ RatingModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingModule, declarations: [RatingComponent], imports: [CommonModule], exports: [RatingComponent] });
1131
+ RatingModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingModule, imports: [[CommonModule]] });
1132
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingModule, decorators: [{
1133
+ type: NgModule,
1134
+ args: [{
1135
+ imports: [CommonModule],
1136
+ declarations: [
1137
+ RatingComponent
1138
+ ],
1139
+ exports: [
1140
+ RatingComponent
1141
+ ]
1142
+ }]
1143
+ }] });
1144
+
1145
+ /**
1146
+ * NgModule definition for the Rating component with providers.
1147
+ */
1148
+ class RatingAllModule {
1149
+ }
1150
+ RatingAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1151
+ RatingAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingAllModule, imports: [CommonModule, RatingModule], exports: [RatingModule] });
1152
+ RatingAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingAllModule, providers: [], imports: [[CommonModule, RatingModule], RatingModule] });
1153
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RatingAllModule, decorators: [{
1154
+ type: NgModule,
1155
+ args: [{
1156
+ imports: [CommonModule, RatingModule],
1157
+ exports: [
1158
+ RatingModule
1159
+ ],
1160
+ providers: []
1161
+ }]
1162
+ }] });
1163
+
1164
+ var OtpInputComponent_1;
1165
+ const inputs = ['ariaLabels', 'cssClass', 'disabled', 'enablePersistence', 'enableRtl', 'htmlAttributes', 'length', 'locale', 'placeholder', 'separator', 'stylingMode', 'type', 'value'];
1166
+ const outputs = ['blur', 'created', 'focus', 'input', 'valueChanged', 'valueChange'];
1167
+ const twoWays = ['value'];
1168
+ /**
1169
+ * Represents the EJ2 Angular OtpInput Component.
1170
+ * ```html
1171
+ * <div ejs-otpinput [value]='value'></div>
1172
+ * ```
1173
+ */
1174
+ let OtpInputComponent = OtpInputComponent_1 = class OtpInputComponent extends OtpInput {
1175
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
1176
+ super();
1177
+ this.ngEle = ngEle;
1178
+ this.srenderer = srenderer;
1179
+ this.viewContainerRef = viewContainerRef;
1180
+ this.injector = injector;
1181
+ this.cdr = cdr;
1182
+ this.skipFromEvent = true;
1183
+ this.element = this.ngEle.nativeElement;
1184
+ this.injectedModules = this.injectedModules || [];
1185
+ this.registerEvents(outputs);
1186
+ this.addTwoWay.call(this, twoWays);
1187
+ setValue('currentInstance', this, this.viewContainerRef);
1188
+ this.formContext = new FormBase();
1189
+ this.formCompContext = new ComponentBase();
1190
+ }
1191
+ registerOnChange(registerFunction) {
1192
+ }
1193
+ registerOnTouched(registerFunction) {
1194
+ }
1195
+ writeValue(value) {
1196
+ }
1197
+ setDisabledState(disabled) {
1198
+ }
1199
+ ngOnInit() {
1200
+ this.formCompContext.ngOnInit(this);
1201
+ }
1202
+ ngAfterViewInit() {
1203
+ this.formContext.ngAfterViewInit(this);
1204
+ }
1205
+ ngOnDestroy() {
1206
+ this.formCompContext.ngOnDestroy(this);
1207
+ }
1208
+ ngAfterContentChecked() {
1209
+ this.formCompContext.ngAfterContentChecked(this);
1210
+ }
1211
+ };
1212
+ OtpInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
1213
+ OtpInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: OtpInputComponent, selector: "[ejs-otpinput]", inputs: { ariaLabels: "ariaLabels", cssClass: "cssClass", disabled: "disabled", enablePersistence: "enablePersistence", enableRtl: "enableRtl", htmlAttributes: "htmlAttributes", length: "length", locale: "locale", placeholder: "placeholder", separator: "separator", stylingMode: "stylingMode", type: "type", value: "value" }, outputs: { blur: "blur", created: "created", focus: "focus", input: "input", valueChanged: "valueChanged", valueChange: "valueChange" }, providers: [
1214
+ {
1215
+ provide: NG_VALUE_ACCESSOR,
1216
+ useExisting: forwardRef(() => OtpInputComponent_1),
1217
+ multi: true
1218
+ }
1219
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1220
+ OtpInputComponent = OtpInputComponent_1 = __decorate([
1221
+ ComponentMixins([ComponentBase, FormBase])
1222
+ ], OtpInputComponent);
1223
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputComponent, decorators: [{
1224
+ type: Component,
1225
+ args: [{
1226
+ selector: '[ejs-otpinput]',
1227
+ inputs: inputs,
1228
+ outputs: outputs,
1229
+ template: '',
1230
+ changeDetection: ChangeDetectionStrategy.OnPush,
1231
+ providers: [
1232
+ {
1233
+ provide: NG_VALUE_ACCESSOR,
1234
+ useExisting: forwardRef(() => OtpInputComponent),
1235
+ multi: true
1236
+ }
1237
+ ],
1238
+ queries: {}
1239
+ }]
1240
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; } });
1241
+
1242
+ /**
1243
+ * NgModule definition for the OtpInput component.
1244
+ */
1245
+ class OtpInputModule {
1246
+ }
1247
+ OtpInputModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1248
+ OtpInputModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputModule, declarations: [OtpInputComponent], imports: [CommonModule], exports: [OtpInputComponent] });
1249
+ OtpInputModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputModule, imports: [[CommonModule]] });
1250
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputModule, decorators: [{
1251
+ type: NgModule,
1252
+ args: [{
1253
+ imports: [CommonModule],
1254
+ declarations: [
1255
+ OtpInputComponent
1256
+ ],
1257
+ exports: [
1258
+ OtpInputComponent
1259
+ ]
1260
+ }]
1261
+ }] });
1262
+
1263
+ /**
1264
+ * NgModule definition for the OtpInput component with providers.
1265
+ */
1266
+ class OtpInputAllModule {
1267
+ }
1268
+ OtpInputAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1269
+ OtpInputAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputAllModule, imports: [CommonModule, OtpInputModule], exports: [OtpInputModule] });
1270
+ OtpInputAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputAllModule, providers: [], imports: [[CommonModule, OtpInputModule], OtpInputModule] });
1271
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: OtpInputAllModule, decorators: [{
1272
+ type: NgModule,
1273
+ args: [{
1274
+ imports: [CommonModule, OtpInputModule],
1275
+ exports: [
1276
+ OtpInputModule
1277
+ ],
1278
+ providers: []
1279
+ }]
1280
+ }] });
1281
+
1282
+ class FormValidators {
1283
+ //max validation
1284
+ static max(number) {
1285
+ let max = number;
1286
+ return (control) => {
1287
+ //tslint:disable-next-line
1288
+ let result = FormValidator.checkValidator.max({ value: control.value, param: max });
1289
+ if (result === true) {
1290
+ return null;
1291
+ }
1292
+ else {
1293
+ return { 'max': true };
1294
+ }
1295
+ };
1296
+ }
1297
+ // min validation
1298
+ static min(number) {
1299
+ let min = number;
1300
+ return (control) => {
1301
+ //tslint:disable-next-line
1302
+ let result = FormValidator.checkValidator.min({ value: control.value, param: min });
1303
+ if (result === true) {
1304
+ return null;
1305
+ }
1306
+ else {
1307
+ return { 'min': true };
1308
+ }
1309
+ };
1310
+ }
1311
+ // Credit card validation
1312
+ static creditcard(control) {
1313
+ //tslint:disable-next-line
1314
+ let result = FormValidator.checkValidator.creditcard({ value: control.value });
1315
+ if (result === true) {
1316
+ return null;
1317
+ }
1318
+ else {
1319
+ return { 'cardno': true };
1320
+ }
1321
+ }
1322
+ // date validation
1323
+ static date(control) {
1324
+ //tslint:disable-next-line
1325
+ let result = FormValidator.checkValidator.date({ value: control.value });
1326
+ if (result === true) {
1327
+ return null;
1328
+ }
1329
+ else {
1330
+ return { 'date': true };
1331
+ }
1332
+ }
1333
+ // Date-ISO validation
1334
+ static dateIso(control) {
1335
+ //tslint:disable-next-line
1336
+ let result = FormValidator.checkValidator.dateIso({ value: control.value });
1337
+ if (result === true) {
1338
+ return null;
1339
+ }
1340
+ else {
1341
+ return { 'dateiso': true };
1342
+ }
1343
+ }
1344
+ // Digit validation
1345
+ static digits(control) {
1346
+ //tslint:disable-next-line
1347
+ let result = FormValidator.checkValidator.digits({ value: control.value });
1348
+ if (result === true) {
1349
+ return null;
1350
+ }
1351
+ else {
1352
+ return { 'digit': true };
1353
+ }
1354
+ }
1355
+ // Email validation
1356
+ static email(control) {
1357
+ //tslint:disable-next-line
1358
+ let result = FormValidator.checkValidator.email({ value: control.value });
1359
+ if (result === true) {
1360
+ return null;
1361
+ }
1362
+ else {
1363
+ return { 'email': true };
1364
+ }
1365
+ }
1366
+ //maxlength validation
1367
+ static maxLength(number) {
1368
+ let maxlength = number;
1369
+ return (control) => {
1370
+ //tslint:disable-next-line
1371
+ let result = FormValidator.checkValidator.maxLength({ value: control.value, param: maxlength });
1372
+ if (result === true) {
1373
+ return null;
1374
+ }
1375
+ else {
1376
+ return { 'maxlength': true };
1377
+ }
1378
+ };
1379
+ }
1380
+ //minlength validation
1381
+ static minLength(number) {
1382
+ let minlength = number;
1383
+ return (control) => {
1384
+ //tslint:disable-next-line
1385
+ let result = FormValidator.checkValidator.minLength({ value: control.value, param: minlength });
1386
+ if (result === true) {
1387
+ return null;
1388
+ }
1389
+ else {
1390
+ return { 'minlength': true };
1391
+ }
1392
+ };
1393
+ }
1394
+ //number validation
1395
+ static number(control) {
1396
+ //tslint:disable-next-line
1397
+ let result = FormValidator.checkValidator.number({ value: control.value });
1398
+ if (result === true) {
1399
+ return null;
1400
+ }
1401
+ else {
1402
+ return { 'number': true };
1403
+ }
1404
+ }
1405
+ // required validation
1406
+ static required(control) {
1407
+ //tslint:disable-next-line
1408
+ let result = (control.value === null) ? false : FormValidator.checkValidator.required({ value: control.value });
1409
+ if (result === true) {
1410
+ return null;
1411
+ }
1412
+ else {
1413
+ return { 'required': true };
1414
+ }
1415
+ }
1416
+ // Telephone number validation
1417
+ static tel(control) {
1418
+ //tslint:disable-next-line
1419
+ let result = FormValidator.checkValidator.tel({ value: control.value });
1420
+ if (result === true) {
1421
+ return null;
1422
+ }
1423
+ else {
1424
+ return { 'telno': true };
1425
+ }
1426
+ }
1427
+ // Url validation
1428
+ static url(control) {
1429
+ //tslint:disable-next-line
1430
+ let result = FormValidator.checkValidator.url({ value: control.value });
1431
+ if (result === true) {
1432
+ return null;
1433
+ }
1434
+ else {
1435
+ return { 'url': true };
1436
+ }
1437
+ }
1438
+ // RangeLength validation
1439
+ static rangeLength(number1, number2) {
1440
+ let minRL = number1;
1441
+ let maxRL = number2;
1442
+ //tslint:disable-next-line
1443
+ let param = [minRL, maxRL];
1444
+ return (control) => {
1445
+ //tslint:disable-next-line
1446
+ let result = FormValidator.checkValidator.rangeLength({ value: control.value, param: param });
1447
+ if (result === true) {
1448
+ return null;
1449
+ }
1450
+ else {
1451
+ return { 'rangelength': true };
1452
+ }
1453
+ };
1454
+ }
1455
+ // Range validation
1456
+ static range(number1, number2) {
1457
+ let minR = number1;
1458
+ let maxR = number2;
1459
+ //tslint:disable-next-line
1460
+ let param1 = [minR, maxR];
1461
+ return (control) => {
1462
+ //tslint:disable-next-line
1463
+ let result = FormValidator.checkValidator.range({ value: control.value, param: param1 });
1464
+ if (result === true) {
1465
+ return null;
1466
+ }
1467
+ else {
1468
+ return { 'range': true };
1469
+ }
1470
+ };
1471
+ }
1472
+ }
1473
+
1474
+ /**
1475
+ * Generated bundle index. Do not edit.
1476
+ */
1477
+
1478
+ export { ColorPickerAllModule, ColorPickerComponent, ColorPickerModule, FilesDirective, FormValidators, MaskedTextBoxAllModule, MaskedTextBoxComponent, MaskedTextBoxModule, NumericTextBoxAllModule, NumericTextBoxComponent, NumericTextBoxModule, OtpInputAllModule, OtpInputComponent, OtpInputModule, RatingAllModule, RatingComponent, RatingModule, SignatureAllModule, SignatureComponent, SignatureModule, SliderAllModule, SliderComponent, SliderModule, TextAreaAllModule, TextAreaComponent, TextAreaModule, TextBoxAllModule, TextBoxComponent, TextBoxModule, UploadedFilesDirective, UploaderAllModule, UploaderComponent, UploaderModule };
1479
+ //# sourceMappingURL=syncfusion-ej2-angular-inputs.mjs.map