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

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 (100) hide show
  1. package/CHANGELOG.md +1622 -0
  2. package/README.md +11 -3
  3. package/esm2020/public_api.mjs +2 -0
  4. package/esm2020/src/color-picker/colorpicker-all.module.mjs +23 -0
  5. package/esm2020/src/color-picker/colorpicker.component.mjs +84 -0
  6. package/esm2020/src/color-picker/colorpicker.module.mjs +25 -0
  7. package/esm2020/src/form-validator/form-validator.mjs +193 -0
  8. package/esm2020/src/index.mjs +40 -0
  9. package/esm2020/src/maskedtextbox/maskedtextbox-all.module.mjs +23 -0
  10. package/esm2020/src/maskedtextbox/maskedtextbox.component.mjs +85 -0
  11. package/esm2020/src/maskedtextbox/maskedtextbox.module.mjs +25 -0
  12. package/esm2020/src/numerictextbox/numerictextbox-all.module.mjs +23 -0
  13. package/esm2020/src/numerictextbox/numerictextbox.component.mjs +85 -0
  14. package/esm2020/src/numerictextbox/numerictextbox.module.mjs +25 -0
  15. package/esm2020/src/otp-input/otpinput-all.module.mjs +23 -0
  16. package/esm2020/src/otp-input/otpinput.component.mjs +85 -0
  17. package/esm2020/src/otp-input/otpinput.module.mjs +25 -0
  18. package/esm2020/src/rating/rating-all.module.mjs +23 -0
  19. package/esm2020/src/rating/rating.component.mjs +109 -0
  20. package/esm2020/src/rating/rating.module.mjs +25 -0
  21. package/esm2020/src/signature/signature-all.module.mjs +23 -0
  22. package/esm2020/src/signature/signature.component.mjs +84 -0
  23. package/esm2020/src/signature/signature.module.mjs +25 -0
  24. package/esm2020/src/slider/slider-all.module.mjs +23 -0
  25. package/esm2020/src/slider/slider.component.mjs +84 -0
  26. package/esm2020/src/slider/slider.module.mjs +25 -0
  27. package/esm2020/src/smart-textarea/smarttextarea-all.module.mjs +23 -0
  28. package/esm2020/src/smart-textarea/smarttextarea.component.mjs +85 -0
  29. package/esm2020/src/smart-textarea/smarttextarea.module.mjs +25 -0
  30. package/esm2020/src/speech-to-text/speechtotext-all.module.mjs +23 -0
  31. package/esm2020/src/speech-to-text/speechtotext.component.mjs +59 -0
  32. package/esm2020/src/speech-to-text/speechtotext.module.mjs +25 -0
  33. package/esm2020/src/textarea/textarea-all.module.mjs +23 -0
  34. package/esm2020/src/textarea/textarea.component.mjs +85 -0
  35. package/esm2020/src/textarea/textarea.module.mjs +25 -0
  36. package/esm2020/src/textbox/textbox-all.module.mjs +23 -0
  37. package/esm2020/src/textbox/textbox.component.mjs +85 -0
  38. package/esm2020/src/textbox/textbox.module.mjs +25 -0
  39. package/esm2020/src/uploader/files.directive.mjs +58 -0
  40. package/esm2020/src/uploader/uploader-all.module.mjs +23 -0
  41. package/esm2020/src/uploader/uploader.component.mjs +96 -0
  42. package/esm2020/src/uploader/uploader.module.mjs +34 -0
  43. package/esm2020/syncfusion-ej2-angular-inputs.mjs +5 -0
  44. package/fesm2015/syncfusion-ej2-angular-inputs.mjs +1690 -0
  45. package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  46. package/fesm2020/syncfusion-ej2-angular-inputs.mjs +1690 -0
  47. package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  48. package/package.json +20 -7
  49. package/public_api.d.ts +1 -1
  50. package/src/color-picker/colorpicker-all.module.d.ts +11 -5
  51. package/src/color-picker/colorpicker.component.d.ts +48 -45
  52. package/src/color-picker/colorpicker.module.d.ts +11 -5
  53. package/src/form-validator/form-validator.d.ts +36 -36
  54. package/src/index.d.ts +39 -39
  55. package/src/maskedtextbox/maskedtextbox-all.module.d.ts +11 -5
  56. package/src/maskedtextbox/maskedtextbox.component.d.ts +43 -40
  57. package/src/maskedtextbox/maskedtextbox.module.d.ts +11 -5
  58. package/src/numerictextbox/numerictextbox-all.module.d.ts +11 -5
  59. package/src/numerictextbox/numerictextbox.component.d.ts +43 -40
  60. package/src/numerictextbox/numerictextbox.module.d.ts +11 -5
  61. package/src/otp-input/otpinput-all.module.d.ts +11 -5
  62. package/src/otp-input/otpinput.component.d.ts +43 -40
  63. package/src/otp-input/otpinput.module.d.ts +11 -5
  64. package/src/rating/rating-all.module.d.ts +11 -5
  65. package/src/rating/rating.component.d.ts +89 -86
  66. package/src/rating/rating.module.d.ts +11 -5
  67. package/src/signature/signature-all.module.d.ts +11 -5
  68. package/src/signature/signature.component.d.ts +41 -38
  69. package/src/signature/signature.module.d.ts +11 -5
  70. package/src/slider/slider-all.module.d.ts +11 -5
  71. package/src/slider/slider.component.d.ts +45 -42
  72. package/src/slider/slider.module.d.ts +11 -5
  73. package/src/smart-textarea/smarttextarea-all.module.d.ts +11 -5
  74. package/src/smart-textarea/smarttextarea.component.d.ts +44 -41
  75. package/src/smart-textarea/smarttextarea.module.d.ts +11 -5
  76. package/src/speech-to-text/speechtotext-all.module.d.ts +11 -5
  77. package/src/speech-to-text/speechtotext.component.d.ts +36 -33
  78. package/src/speech-to-text/speechtotext.module.d.ts +11 -5
  79. package/src/textarea/textarea-all.module.d.ts +11 -5
  80. package/src/textarea/textarea.component.d.ts +44 -41
  81. package/src/textarea/textarea.module.d.ts +11 -5
  82. package/src/textbox/textbox-all.module.d.ts +11 -5
  83. package/src/textbox/textbox.component.d.ts +44 -41
  84. package/src/textbox/textbox.module.d.ts +11 -5
  85. package/src/uploader/files.directive.d.ts +46 -41
  86. package/src/uploader/uploader-all.module.d.ts +11 -5
  87. package/src/uploader/uploader.component.d.ts +69 -66
  88. package/src/uploader/uploader.module.d.ts +12 -5
  89. package/syncfusion-ej2-angular-inputs.d.ts +5 -0
  90. package/@syncfusion/ej2-angular-inputs.es5.js +0 -2469
  91. package/@syncfusion/ej2-angular-inputs.es5.js.map +0 -1
  92. package/@syncfusion/ej2-angular-inputs.js +0 -2323
  93. package/@syncfusion/ej2-angular-inputs.js.map +0 -1
  94. package/LICENSE +0 -10
  95. package/dist/ej2-angular-inputs.umd.js +0 -2587
  96. package/dist/ej2-angular-inputs.umd.js.map +0 -1
  97. package/dist/ej2-angular-inputs.umd.min.js +0 -11
  98. package/dist/ej2-angular-inputs.umd.min.js.map +0 -1
  99. package/ej2-angular-inputs.d.ts +0 -16
  100. package/ej2-angular-inputs.metadata.json +0 -1
@@ -0,0 +1,1690 @@
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, SmartTextArea, SpeechToText, 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$b = ['autocomplete', 'cssClass', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'multiline', 'placeholder', 'readonly', 'showClearButton', 'type', 'value', 'width'];
12
+ const outputs$c = ['blur', 'change', 'created', 'destroyed', 'focus', 'input', 'valueChange'];
13
+ const twoWays$b = ['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$c);
32
+ this.addTwoWay.call(this, twoWays$b);
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$b,
74
+ outputs: outputs$c,
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$a = ['cols', 'cssClass', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'maxLength', 'placeholder', 'readonly', 'resizeMode', 'rows', 'showClearButton', 'value', 'width'];
130
+ const outputs$b = ['blur', 'change', 'created', 'destroyed', 'focus', 'input', 'valueChange'];
131
+ const twoWays$a = ['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$b);
150
+ this.addTwoWay.call(this, twoWays$a);
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$a,
192
+ outputs: outputs$b,
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$9 = ['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$a = ['blur', 'change', 'created', 'destroyed', 'focus', 'valueChange'];
249
+ const twoWays$9 = ['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$a);
268
+ this.addTwoWay.call(this, twoWays$9);
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$9,
310
+ outputs: outputs$a,
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$8 = ['cssClass', 'customCharacters', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'mask', 'placeholder', 'promptChar', 'readonly', 'showClearButton', 'value', 'width'];
366
+ const outputs$9 = ['blur', 'change', 'created', 'destroyed', 'focus', 'valueChange'];
367
+ const twoWays$8 = ['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$9);
386
+ this.addTwoWay.call(this, twoWays$8);
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$8,
428
+ outputs: outputs$9,
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$7 = ['colorRange', 'cssClass', 'customValues', 'enableAnimation', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enabled', 'limits', 'locale', 'max', 'min', 'orientation', 'readonly', 'showButtons', 'step', 'ticks', 'tooltip', 'type', 'value', 'width'];
484
+ const outputs$8 = ['focus', 'blur', 'change', 'changed', 'created', 'renderedTicks', 'renderingTicks', 'tooltipChange', 'valueChange'];
485
+ const twoWays$7 = ['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$8);
503
+ this.addTwoWay.call(this, twoWays$7);
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$7,
545
+ outputs: outputs$8,
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$7 = [];
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$7);
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$7,
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$6 = ['allowedExtensions', 'asyncSettings', 'autoUpload', 'buttons', 'cssClass', 'directoryUpload', 'dropArea', 'dropEffect', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enabled', 'files', 'htmlAttributes', 'locale', 'maxFileSize', 'minFileSize', 'multiple', 'sequentialUpload', 'showFileList', 'template'];
656
+ const outputs$6 = ['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$6 = [];
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$6);
676
+ this.addTwoWay.call(this, twoWays$6);
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$6,
722
+ outputs: outputs$6,
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$5 = ['columns', 'createPopupOnClick', 'cssClass', 'disabled', 'enableOpacity', 'enablePersistence', 'enableRtl', 'inline', 'locale', 'mode', 'modeSwitcher', 'noColor', 'presetColors', 'showButtons', 'showRecentColors', 'value'];
791
+ const outputs$5 = ['focus', 'blur', 'beforeClose', 'beforeModeSwitch', 'beforeOpen', 'beforeTileRender', 'change', 'created', 'onModeSwitch', 'open', 'select', 'valueChange'];
792
+ const twoWays$5 = ['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$5);
810
+ this.addTwoWay.call(this, twoWays$5);
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", showRecentColors: "showRecentColors", 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$5,
852
+ outputs: outputs$5,
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$4 = ['backgroundColor', 'backgroundImage', 'disabled', 'enablePersistence', 'enableRtl', 'isReadOnly', 'locale', 'maxStrokeWidth', 'minStrokeWidth', 'saveWithBackground', 'strokeColor', 'velocity'];
908
+ const outputs$4 = ['focus', 'blur', 'beforeSave', 'change', 'created'];
909
+ const twoWays$4 = [];
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$4);
927
+ this.addTwoWay.call(this, twoWays$4);
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$4,
969
+ outputs: outputs$4,
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$3 = ['allowReset', 'cssClass', 'disabled', 'emptyTemplate', 'enableAnimation', 'enablePersistence', 'enableRtl', 'enableSingleSelection', 'fullTemplate', 'itemsCount', 'labelPosition', 'labelTemplate', 'locale', 'min', 'precision', 'readOnly', 'showLabel', 'showTooltip', 'tooltipTemplate', 'value', 'visible'];
1025
+ const outputs$3 = ['focus', 'blur', 'beforeItemRender', 'created', 'onItemHover', 'valueChanged', 'valueChange'];
1026
+ const twoWays$3 = ['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$3);
1044
+ this.addTwoWay.call(this, twoWays$3);
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$3,
1098
+ outputs: outputs$3,
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$2 = ['ariaLabels', 'autoFocus', 'cssClass', 'disabled', 'enablePersistence', 'enableRtl', 'htmlAttributes', 'length', 'locale', 'placeholder', 'separator', 'stylingMode', 'textTransform', 'type', 'value'];
1166
+ const outputs$2 = ['blur', 'created', 'focus', 'input', 'valueChanged', 'valueChange'];
1167
+ const twoWays$2 = ['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$2);
1186
+ this.addTwoWay.call(this, twoWays$2);
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", autoFocus: "autoFocus", cssClass: "cssClass", disabled: "disabled", enablePersistence: "enablePersistence", enableRtl: "enableRtl", htmlAttributes: "htmlAttributes", length: "length", locale: "locale", placeholder: "placeholder", separator: "separator", stylingMode: "stylingMode", textTransform: "textTransform", 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$2,
1228
+ outputs: outputs$2,
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
+ var SmartTextAreaComponent_1;
1283
+ const inputs$1 = ['UserPhrases', 'aiSuggestionHandler', 'cols', 'cssClass', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'maxLength', 'placeholder', 'readonly', 'resizeMode', 'rows', 'showClearButton', 'showSuggestionOnPopup', 'userRole', 'value', 'width'];
1284
+ const outputs$1 = ['blur', 'change', 'created', 'destroyed', 'focus', 'input', 'valueChange'];
1285
+ const twoWays$1 = ['value'];
1286
+ /**
1287
+ * Represents the Angular Smart TextArea Component.
1288
+ * ```html
1289
+ * <ejs-smarttextarea></ejs-smarttextarea>
1290
+ * ```
1291
+ */
1292
+ let SmartTextAreaComponent = SmartTextAreaComponent_1 = class SmartTextAreaComponent extends SmartTextArea {
1293
+ constructor(ngEle, srenderer, viewContainerRef, injector, cdr) {
1294
+ super();
1295
+ this.ngEle = ngEle;
1296
+ this.srenderer = srenderer;
1297
+ this.viewContainerRef = viewContainerRef;
1298
+ this.injector = injector;
1299
+ this.cdr = cdr;
1300
+ this.skipFromEvent = true;
1301
+ this.element = this.ngEle.nativeElement;
1302
+ this.injectedModules = this.injectedModules || [];
1303
+ this.registerEvents(outputs$1);
1304
+ this.addTwoWay.call(this, twoWays$1);
1305
+ setValue('currentInstance', this, this.viewContainerRef);
1306
+ this.formContext = new FormBase();
1307
+ this.formCompContext = new ComponentBase();
1308
+ }
1309
+ registerOnChange(registerFunction) {
1310
+ }
1311
+ registerOnTouched(registerFunction) {
1312
+ }
1313
+ writeValue(value) {
1314
+ }
1315
+ setDisabledState(disabled) {
1316
+ }
1317
+ ngOnInit() {
1318
+ this.formCompContext.ngOnInit(this);
1319
+ }
1320
+ ngAfterViewInit() {
1321
+ this.formContext.ngAfterViewInit(this);
1322
+ }
1323
+ ngOnDestroy() {
1324
+ this.formCompContext.ngOnDestroy(this);
1325
+ }
1326
+ ngAfterContentChecked() {
1327
+ this.formCompContext.ngAfterContentChecked(this);
1328
+ }
1329
+ };
1330
+ SmartTextAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
1331
+ SmartTextAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: SmartTextAreaComponent, selector: "ejs-smarttextarea", inputs: { UserPhrases: "UserPhrases", aiSuggestionHandler: "aiSuggestionHandler", 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", showSuggestionOnPopup: "showSuggestionOnPopup", userRole: "userRole", value: "value", width: "width" }, outputs: { blur: "blur", change: "change", created: "created", destroyed: "destroyed", focus: "focus", input: "input", valueChange: "valueChange" }, providers: [
1332
+ {
1333
+ provide: NG_VALUE_ACCESSOR,
1334
+ useExisting: forwardRef(() => SmartTextAreaComponent_1),
1335
+ multi: true
1336
+ }
1337
+ ], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1338
+ SmartTextAreaComponent = SmartTextAreaComponent_1 = __decorate([
1339
+ ComponentMixins([ComponentBase, FormBase])
1340
+ ], SmartTextAreaComponent);
1341
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaComponent, decorators: [{
1342
+ type: Component,
1343
+ args: [{
1344
+ selector: 'ejs-smarttextarea',
1345
+ inputs: inputs$1,
1346
+ outputs: outputs$1,
1347
+ template: '',
1348
+ changeDetection: ChangeDetectionStrategy.OnPush,
1349
+ providers: [
1350
+ {
1351
+ provide: NG_VALUE_ACCESSOR,
1352
+ useExisting: forwardRef(() => SmartTextAreaComponent),
1353
+ multi: true
1354
+ }
1355
+ ],
1356
+ queries: {}
1357
+ }]
1358
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }]; } });
1359
+
1360
+ /**
1361
+ * NgModule definition for the SmartTextArea component.
1362
+ */
1363
+ class SmartTextAreaModule {
1364
+ }
1365
+ SmartTextAreaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1366
+ SmartTextAreaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaModule, declarations: [SmartTextAreaComponent], imports: [CommonModule], exports: [SmartTextAreaComponent] });
1367
+ SmartTextAreaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaModule, imports: [[CommonModule]] });
1368
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaModule, decorators: [{
1369
+ type: NgModule,
1370
+ args: [{
1371
+ imports: [CommonModule],
1372
+ declarations: [
1373
+ SmartTextAreaComponent
1374
+ ],
1375
+ exports: [
1376
+ SmartTextAreaComponent
1377
+ ]
1378
+ }]
1379
+ }] });
1380
+
1381
+ /**
1382
+ * NgModule definition for the SmartTextArea component with providers.
1383
+ */
1384
+ class SmartTextAreaAllModule {
1385
+ }
1386
+ SmartTextAreaAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1387
+ SmartTextAreaAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaAllModule, imports: [CommonModule, SmartTextAreaModule], exports: [SmartTextAreaModule] });
1388
+ SmartTextAreaAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaAllModule, providers: [], imports: [[CommonModule, SmartTextAreaModule], SmartTextAreaModule] });
1389
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SmartTextAreaAllModule, decorators: [{
1390
+ type: NgModule,
1391
+ args: [{
1392
+ imports: [CommonModule, SmartTextAreaModule],
1393
+ exports: [
1394
+ SmartTextAreaModule
1395
+ ],
1396
+ providers: []
1397
+ }]
1398
+ }] });
1399
+
1400
+ const inputs = ['allowInterimResults', 'buttonSettings', 'cssClass', 'disabled', 'enablePersistence', 'enableRtl', 'htmlAttributes', 'lang', 'listeningState', 'locale', 'showTooltip', 'tooltipSettings', 'transcript'];
1401
+ const outputs = ['created', 'onError', 'onStart', 'onStop', 'transcriptChanged', 'transcriptChange'];
1402
+ const twoWays = ['transcript'];
1403
+ /**
1404
+ * Represents the EJ2 Angular SpeechToText Component.
1405
+ * ```html
1406
+ * <button ejs-speechtotext ></button>
1407
+ * ```
1408
+ */
1409
+ let SpeechToTextComponent = class SpeechToTextComponent extends SpeechToText {
1410
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
1411
+ super();
1412
+ this.ngEle = ngEle;
1413
+ this.srenderer = srenderer;
1414
+ this.viewContainerRef = viewContainerRef;
1415
+ this.injector = injector;
1416
+ this.element = this.ngEle.nativeElement;
1417
+ this.injectedModules = this.injectedModules || [];
1418
+ this.registerEvents(outputs);
1419
+ this.addTwoWay.call(this, twoWays);
1420
+ setValue('currentInstance', this, this.viewContainerRef);
1421
+ this.containerContext = new ComponentBase();
1422
+ }
1423
+ ngOnInit() {
1424
+ this.containerContext.ngOnInit(this);
1425
+ }
1426
+ ngAfterViewInit() {
1427
+ this.containerContext.ngAfterViewInit(this);
1428
+ }
1429
+ ngOnDestroy() {
1430
+ this.containerContext.ngOnDestroy(this);
1431
+ }
1432
+ ngAfterContentChecked() {
1433
+ this.containerContext.ngAfterContentChecked(this);
1434
+ }
1435
+ };
1436
+ SpeechToTextComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
1437
+ SpeechToTextComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: SpeechToTextComponent, selector: "[ejs-speechtotext]", inputs: { allowInterimResults: "allowInterimResults", buttonSettings: "buttonSettings", cssClass: "cssClass", disabled: "disabled", enablePersistence: "enablePersistence", enableRtl: "enableRtl", htmlAttributes: "htmlAttributes", lang: "lang", listeningState: "listeningState", locale: "locale", showTooltip: "showTooltip", tooltipSettings: "tooltipSettings", transcript: "transcript" }, outputs: { created: "created", onError: "onError", onStart: "onStart", onStop: "onStop", transcriptChanged: "transcriptChanged", transcriptChange: "transcriptChange" }, usesInheritance: true, ngImport: i0, template: `<ng-content ></ng-content>`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1438
+ SpeechToTextComponent = __decorate([
1439
+ ComponentMixins([ComponentBase])
1440
+ ], SpeechToTextComponent);
1441
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextComponent, decorators: [{
1442
+ type: Component,
1443
+ args: [{
1444
+ selector: '[ejs-speechtotext]',
1445
+ inputs: inputs,
1446
+ outputs: outputs,
1447
+ template: `<ng-content ></ng-content>`,
1448
+ changeDetection: ChangeDetectionStrategy.OnPush,
1449
+ queries: {}
1450
+ }]
1451
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
1452
+
1453
+ /**
1454
+ * NgModule definition for the SpeechToText component.
1455
+ */
1456
+ class SpeechToTextModule {
1457
+ }
1458
+ SpeechToTextModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1459
+ SpeechToTextModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextModule, declarations: [SpeechToTextComponent], imports: [CommonModule], exports: [SpeechToTextComponent] });
1460
+ SpeechToTextModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextModule, imports: [[CommonModule]] });
1461
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextModule, decorators: [{
1462
+ type: NgModule,
1463
+ args: [{
1464
+ imports: [CommonModule],
1465
+ declarations: [
1466
+ SpeechToTextComponent
1467
+ ],
1468
+ exports: [
1469
+ SpeechToTextComponent
1470
+ ]
1471
+ }]
1472
+ }] });
1473
+
1474
+ /**
1475
+ * NgModule definition for the SpeechToText component with providers.
1476
+ */
1477
+ class SpeechToTextAllModule {
1478
+ }
1479
+ SpeechToTextAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1480
+ SpeechToTextAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextAllModule, imports: [CommonModule, SpeechToTextModule], exports: [SpeechToTextModule] });
1481
+ SpeechToTextAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextAllModule, providers: [], imports: [[CommonModule, SpeechToTextModule], SpeechToTextModule] });
1482
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: SpeechToTextAllModule, decorators: [{
1483
+ type: NgModule,
1484
+ args: [{
1485
+ imports: [CommonModule, SpeechToTextModule],
1486
+ exports: [
1487
+ SpeechToTextModule
1488
+ ],
1489
+ providers: []
1490
+ }]
1491
+ }] });
1492
+
1493
+ class FormValidators {
1494
+ //max validation
1495
+ static max(number) {
1496
+ let max = number;
1497
+ return (control) => {
1498
+ //tslint:disable-next-line
1499
+ let result = FormValidator.checkValidator.max({ value: control.value, param: max });
1500
+ if (result === true) {
1501
+ return null;
1502
+ }
1503
+ else {
1504
+ return { 'max': true };
1505
+ }
1506
+ };
1507
+ }
1508
+ // min validation
1509
+ static min(number) {
1510
+ let min = number;
1511
+ return (control) => {
1512
+ //tslint:disable-next-line
1513
+ let result = FormValidator.checkValidator.min({ value: control.value, param: min });
1514
+ if (result === true) {
1515
+ return null;
1516
+ }
1517
+ else {
1518
+ return { 'min': true };
1519
+ }
1520
+ };
1521
+ }
1522
+ // Credit card validation
1523
+ static creditcard(control) {
1524
+ //tslint:disable-next-line
1525
+ let result = FormValidator.checkValidator.creditcard({ value: control.value });
1526
+ if (result === true) {
1527
+ return null;
1528
+ }
1529
+ else {
1530
+ return { 'cardno': true };
1531
+ }
1532
+ }
1533
+ // date validation
1534
+ static date(control) {
1535
+ //tslint:disable-next-line
1536
+ let result = FormValidator.checkValidator.date({ value: control.value });
1537
+ if (result === true) {
1538
+ return null;
1539
+ }
1540
+ else {
1541
+ return { 'date': true };
1542
+ }
1543
+ }
1544
+ // Date-ISO validation
1545
+ static dateIso(control) {
1546
+ //tslint:disable-next-line
1547
+ let result = FormValidator.checkValidator.dateIso({ value: control.value });
1548
+ if (result === true) {
1549
+ return null;
1550
+ }
1551
+ else {
1552
+ return { 'dateiso': true };
1553
+ }
1554
+ }
1555
+ // Digit validation
1556
+ static digits(control) {
1557
+ //tslint:disable-next-line
1558
+ let result = FormValidator.checkValidator.digits({ value: control.value });
1559
+ if (result === true) {
1560
+ return null;
1561
+ }
1562
+ else {
1563
+ return { 'digit': true };
1564
+ }
1565
+ }
1566
+ // Email validation
1567
+ static email(control) {
1568
+ //tslint:disable-next-line
1569
+ let result = FormValidator.checkValidator.email({ value: control.value });
1570
+ if (result === true) {
1571
+ return null;
1572
+ }
1573
+ else {
1574
+ return { 'email': true };
1575
+ }
1576
+ }
1577
+ //maxlength validation
1578
+ static maxLength(number) {
1579
+ let maxlength = number;
1580
+ return (control) => {
1581
+ //tslint:disable-next-line
1582
+ let result = FormValidator.checkValidator.maxLength({ value: control.value, param: maxlength });
1583
+ if (result === true) {
1584
+ return null;
1585
+ }
1586
+ else {
1587
+ return { 'maxlength': true };
1588
+ }
1589
+ };
1590
+ }
1591
+ //minlength validation
1592
+ static minLength(number) {
1593
+ let minlength = number;
1594
+ return (control) => {
1595
+ //tslint:disable-next-line
1596
+ let result = FormValidator.checkValidator.minLength({ value: control.value, param: minlength });
1597
+ if (result === true) {
1598
+ return null;
1599
+ }
1600
+ else {
1601
+ return { 'minlength': true };
1602
+ }
1603
+ };
1604
+ }
1605
+ //number validation
1606
+ static number(control) {
1607
+ //tslint:disable-next-line
1608
+ let result = FormValidator.checkValidator.number({ value: control.value });
1609
+ if (result === true) {
1610
+ return null;
1611
+ }
1612
+ else {
1613
+ return { 'number': true };
1614
+ }
1615
+ }
1616
+ // required validation
1617
+ static required(control) {
1618
+ //tslint:disable-next-line
1619
+ let result = (control.value === null) ? false : FormValidator.checkValidator.required({ value: control.value });
1620
+ if (result === true) {
1621
+ return null;
1622
+ }
1623
+ else {
1624
+ return { 'required': true };
1625
+ }
1626
+ }
1627
+ // Telephone number validation
1628
+ static tel(control) {
1629
+ //tslint:disable-next-line
1630
+ let result = FormValidator.checkValidator.tel({ value: control.value });
1631
+ if (result === true) {
1632
+ return null;
1633
+ }
1634
+ else {
1635
+ return { 'telno': true };
1636
+ }
1637
+ }
1638
+ // Url validation
1639
+ static url(control) {
1640
+ //tslint:disable-next-line
1641
+ let result = FormValidator.checkValidator.url({ value: control.value });
1642
+ if (result === true) {
1643
+ return null;
1644
+ }
1645
+ else {
1646
+ return { 'url': true };
1647
+ }
1648
+ }
1649
+ // RangeLength validation
1650
+ static rangeLength(number1, number2) {
1651
+ let minRL = number1;
1652
+ let maxRL = number2;
1653
+ //tslint:disable-next-line
1654
+ let param = [minRL, maxRL];
1655
+ return (control) => {
1656
+ //tslint:disable-next-line
1657
+ let result = FormValidator.checkValidator.rangeLength({ value: control.value, param: param });
1658
+ if (result === true) {
1659
+ return null;
1660
+ }
1661
+ else {
1662
+ return { 'rangelength': true };
1663
+ }
1664
+ };
1665
+ }
1666
+ // Range validation
1667
+ static range(number1, number2) {
1668
+ let minR = number1;
1669
+ let maxR = number2;
1670
+ //tslint:disable-next-line
1671
+ let param1 = [minR, maxR];
1672
+ return (control) => {
1673
+ //tslint:disable-next-line
1674
+ let result = FormValidator.checkValidator.range({ value: control.value, param: param1 });
1675
+ if (result === true) {
1676
+ return null;
1677
+ }
1678
+ else {
1679
+ return { 'range': true };
1680
+ }
1681
+ };
1682
+ }
1683
+ }
1684
+
1685
+ /**
1686
+ * Generated bundle index. Do not edit.
1687
+ */
1688
+
1689
+ export { ColorPickerAllModule, ColorPickerComponent, ColorPickerModule, FilesDirective, FormValidators, MaskedTextBoxAllModule, MaskedTextBoxComponent, MaskedTextBoxModule, NumericTextBoxAllModule, NumericTextBoxComponent, NumericTextBoxModule, OtpInputAllModule, OtpInputComponent, OtpInputModule, RatingAllModule, RatingComponent, RatingModule, SignatureAllModule, SignatureComponent, SignatureModule, SliderAllModule, SliderComponent, SliderModule, SmartTextAreaAllModule, SmartTextAreaComponent, SmartTextAreaModule, SpeechToTextAllModule, SpeechToTextComponent, SpeechToTextModule, TextAreaAllModule, TextAreaComponent, TextAreaModule, TextBoxAllModule, TextBoxComponent, TextBoxModule, UploadedFilesDirective, UploaderAllModule, UploaderComponent, UploaderModule };
1690
+ //# sourceMappingURL=syncfusion-ej2-angular-inputs.mjs.map