@syncfusion/ej2-angular-inputs 24.2.9-ngcc → 25.1.35-ngcc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/@syncfusion/ej2-angular-inputs.es5.js +269 -90
- package/@syncfusion/ej2-angular-inputs.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-inputs.js +258 -90
- package/@syncfusion/ej2-angular-inputs.js.map +1 -1
- package/CHANGELOG.md +0 -46
- package/dist/ej2-angular-inputs.umd.js +284 -98
- package/dist/ej2-angular-inputs.umd.js.map +1 -1
- package/dist/ej2-angular-inputs.umd.min.js +2 -2
- package/dist/ej2-angular-inputs.umd.min.js.map +1 -1
- package/ej2-angular-inputs.d.ts +8 -7
- package/ej2-angular-inputs.metadata.json +1 -1
- package/package.json +9 -9
- package/postinstall/tagchange.js +1 -1
- package/schematics/utils/lib-details.d.ts +3 -3
- package/schematics/utils/lib-details.js +3 -3
- package/schematics/utils/lib-details.ts +3 -3
- package/src/index.d.ts +3 -0
- package/src/textarea/textarea-all.module.d.ts +5 -0
- package/src/textarea/textarea.component.d.ts +41 -0
- package/src/textarea/textarea.module.d.ts +5 -0
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.scss +1 -0
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.scss +1 -0
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.scss +1 -0
- package/styles/material-dark.scss +1 -0
- package/styles/material.scss +1 -0
- package/styles/material3-dark.scss +1 -0
- package/styles/material3.scss +1 -0
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.scss +1 -0
- package/styles/textarea/bootstrap-dark.css +1 -0
- package/styles/textarea/bootstrap-dark.scss +1 -0
- package/styles/textarea/bootstrap.css +1 -0
- package/styles/textarea/bootstrap.scss +1 -0
- package/styles/textarea/bootstrap4.css +1 -0
- package/styles/textarea/bootstrap4.scss +1 -0
- package/styles/textarea/bootstrap5-dark.css +1 -0
- package/styles/textarea/bootstrap5-dark.scss +1 -0
- package/styles/textarea/bootstrap5.css +1 -0
- package/styles/textarea/bootstrap5.scss +1 -0
- package/styles/textarea/fabric-dark.css +1 -0
- package/styles/textarea/fabric-dark.scss +1 -0
- package/styles/textarea/fabric.css +1 -0
- package/styles/textarea/fabric.scss +1 -0
- package/styles/textarea/fluent-dark.css +1 -0
- package/styles/textarea/fluent-dark.scss +1 -0
- package/styles/textarea/fluent.css +1 -0
- package/styles/textarea/fluent.scss +1 -0
- package/styles/textarea/highcontrast-light.css +1 -0
- package/styles/textarea/highcontrast-light.scss +1 -0
- package/styles/textarea/highcontrast.css +1 -0
- package/styles/textarea/highcontrast.scss +1 -0
- package/styles/textarea/material-dark.css +1 -0
- package/styles/textarea/material-dark.scss +1 -0
- package/styles/textarea/material.css +1 -0
- package/styles/textarea/material.scss +1 -0
- package/styles/textarea/material3-dark.css +1 -0
- package/styles/textarea/material3-dark.scss +2 -0
- package/styles/textarea/material3.css +1 -0
- package/styles/textarea/material3.scss +2 -0
- package/styles/textarea/tailwind-dark.css +1 -0
- package/styles/textarea/tailwind-dark.scss +1 -0
- package/styles/textarea/tailwind.css +1 -0
- package/styles/textarea/tailwind.scss +1 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-inputs.umd.js
|
|
3
|
-
* version :
|
|
3
|
+
* version : 25.1.35
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
@@ -216,9 +216,188 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
|
216
216
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
217
217
|
return Reflect.metadata(k, v);
|
|
218
218
|
};
|
|
219
|
-
var inputs$1 = ['
|
|
220
|
-
var outputs$1 = ['blur', 'change', 'created', 'destroyed', 'focus', 'valueChange'];
|
|
219
|
+
var inputs$1 = ['columnsCount', 'cssClass', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'maxLength', 'placeholder', 'readonly', 'resizeMode', 'rowsCount', 'showClearButton', 'value', 'width'];
|
|
220
|
+
var outputs$1 = ['blur', 'change', 'created', 'destroyed', 'focus', 'input', 'valueChange'];
|
|
221
221
|
var twoWays$1 = ['value'];
|
|
222
|
+
/**
|
|
223
|
+
* Represents the EJ2 Angular TextArea Component.
|
|
224
|
+
* ```html
|
|
225
|
+
* <ejs-textarea [value]='value'></ejs-textarea>
|
|
226
|
+
* ```
|
|
227
|
+
*/
|
|
228
|
+
exports.TextAreaComponent = TextAreaComponent_1 = /** @class */ (function (_super) {
|
|
229
|
+
__extends(TextAreaComponent, _super);
|
|
230
|
+
/**
|
|
231
|
+
* @param {?} ngEle
|
|
232
|
+
* @param {?} srenderer
|
|
233
|
+
* @param {?} viewContainerRef
|
|
234
|
+
* @param {?} injector
|
|
235
|
+
* @param {?} cdr
|
|
236
|
+
*/
|
|
237
|
+
function TextAreaComponent(ngEle, srenderer, viewContainerRef, injector, cdr) {
|
|
238
|
+
var _this = _super.call(this) || this;
|
|
239
|
+
_this.ngEle = ngEle;
|
|
240
|
+
_this.srenderer = srenderer;
|
|
241
|
+
_this.viewContainerRef = viewContainerRef;
|
|
242
|
+
_this.injector = injector;
|
|
243
|
+
_this.cdr = cdr;
|
|
244
|
+
_this.skipFromEvent = true;
|
|
245
|
+
_this.element = _this.ngEle.nativeElement;
|
|
246
|
+
_this.injectedModules = _this.injectedModules || [];
|
|
247
|
+
_this.registerEvents(outputs$1);
|
|
248
|
+
_this.addTwoWay.call(_this, twoWays$1);
|
|
249
|
+
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
250
|
+
_this.formContext = new ej2AngularBase.FormBase();
|
|
251
|
+
_this.formCompContext = new ej2AngularBase.ComponentBase();
|
|
252
|
+
return _this;
|
|
253
|
+
}
|
|
254
|
+
/**
|
|
255
|
+
* @param {?} registerFunction
|
|
256
|
+
* @return {?}
|
|
257
|
+
*/
|
|
258
|
+
TextAreaComponent.prototype.registerOnChange = function (registerFunction) {
|
|
259
|
+
};
|
|
260
|
+
/**
|
|
261
|
+
* @param {?} registerFunction
|
|
262
|
+
* @return {?}
|
|
263
|
+
*/
|
|
264
|
+
TextAreaComponent.prototype.registerOnTouched = function (registerFunction) {
|
|
265
|
+
};
|
|
266
|
+
/**
|
|
267
|
+
* @param {?} value
|
|
268
|
+
* @return {?}
|
|
269
|
+
*/
|
|
270
|
+
TextAreaComponent.prototype.writeValue = function (value) {
|
|
271
|
+
};
|
|
272
|
+
/**
|
|
273
|
+
* @param {?} disabled
|
|
274
|
+
* @return {?}
|
|
275
|
+
*/
|
|
276
|
+
TextAreaComponent.prototype.setDisabledState = function (disabled) {
|
|
277
|
+
};
|
|
278
|
+
/**
|
|
279
|
+
* @return {?}
|
|
280
|
+
*/
|
|
281
|
+
TextAreaComponent.prototype.ngOnInit = function () {
|
|
282
|
+
this.formCompContext.ngOnInit(this);
|
|
283
|
+
};
|
|
284
|
+
/**
|
|
285
|
+
* @return {?}
|
|
286
|
+
*/
|
|
287
|
+
TextAreaComponent.prototype.ngAfterViewInit = function () {
|
|
288
|
+
this.formContext.ngAfterViewInit(this);
|
|
289
|
+
};
|
|
290
|
+
/**
|
|
291
|
+
* @return {?}
|
|
292
|
+
*/
|
|
293
|
+
TextAreaComponent.prototype.ngOnDestroy = function () {
|
|
294
|
+
this.formCompContext.ngOnDestroy(this);
|
|
295
|
+
};
|
|
296
|
+
/**
|
|
297
|
+
* @return {?}
|
|
298
|
+
*/
|
|
299
|
+
TextAreaComponent.prototype.ngAfterContentChecked = function () {
|
|
300
|
+
this.formCompContext.ngAfterContentChecked(this);
|
|
301
|
+
};
|
|
302
|
+
return TextAreaComponent;
|
|
303
|
+
}(ej2Inputs.TextArea));
|
|
304
|
+
exports.TextAreaComponent.decorators = [
|
|
305
|
+
{ type: core.Component, args: [{
|
|
306
|
+
selector: 'ejs-textarea',
|
|
307
|
+
inputs: inputs$1,
|
|
308
|
+
outputs: outputs$1,
|
|
309
|
+
template: '',
|
|
310
|
+
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
311
|
+
providers: [
|
|
312
|
+
{
|
|
313
|
+
provide: forms.NG_VALUE_ACCESSOR,
|
|
314
|
+
useExisting: core.forwardRef(function () { return TextAreaComponent_1; }),
|
|
315
|
+
multi: true
|
|
316
|
+
}
|
|
317
|
+
],
|
|
318
|
+
queries: {}
|
|
319
|
+
},] },
|
|
320
|
+
];
|
|
321
|
+
/**
|
|
322
|
+
* @nocollapse
|
|
323
|
+
*/
|
|
324
|
+
exports.TextAreaComponent.ctorParameters = function () { return [
|
|
325
|
+
{ type: core.ElementRef, },
|
|
326
|
+
{ type: core.Renderer2, },
|
|
327
|
+
{ type: core.ViewContainerRef, },
|
|
328
|
+
{ type: core.Injector, },
|
|
329
|
+
{ type: core.ChangeDetectorRef, },
|
|
330
|
+
]; };
|
|
331
|
+
exports.TextAreaComponent = TextAreaComponent_1 = __decorate$1([
|
|
332
|
+
ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
|
|
333
|
+
__metadata$1("design:paramtypes", [core.ElementRef,
|
|
334
|
+
core.Renderer2,
|
|
335
|
+
core.ViewContainerRef,
|
|
336
|
+
core.Injector,
|
|
337
|
+
core.ChangeDetectorRef])
|
|
338
|
+
], exports.TextAreaComponent);
|
|
339
|
+
var TextAreaComponent_1;
|
|
340
|
+
/**
|
|
341
|
+
* NgModule definition for the TextArea component.
|
|
342
|
+
*/
|
|
343
|
+
var TextAreaModule = /** @class */ (function () {
|
|
344
|
+
function TextAreaModule() {
|
|
345
|
+
}
|
|
346
|
+
return TextAreaModule;
|
|
347
|
+
}());
|
|
348
|
+
TextAreaModule.decorators = [
|
|
349
|
+
{ type: core.NgModule, args: [{
|
|
350
|
+
imports: [common.CommonModule],
|
|
351
|
+
declarations: [
|
|
352
|
+
exports.TextAreaComponent
|
|
353
|
+
],
|
|
354
|
+
exports: [
|
|
355
|
+
exports.TextAreaComponent
|
|
356
|
+
]
|
|
357
|
+
},] },
|
|
358
|
+
];
|
|
359
|
+
/**
|
|
360
|
+
* @nocollapse
|
|
361
|
+
*/
|
|
362
|
+
TextAreaModule.ctorParameters = function () { return []; };
|
|
363
|
+
/**
|
|
364
|
+
* NgModule definition for the TextArea component with providers.
|
|
365
|
+
*/
|
|
366
|
+
var TextAreaAllModule = /** @class */ (function () {
|
|
367
|
+
function TextAreaAllModule() {
|
|
368
|
+
}
|
|
369
|
+
return TextAreaAllModule;
|
|
370
|
+
}());
|
|
371
|
+
TextAreaAllModule.decorators = [
|
|
372
|
+
{ type: core.NgModule, args: [{
|
|
373
|
+
imports: [common.CommonModule, TextAreaModule],
|
|
374
|
+
exports: [
|
|
375
|
+
TextAreaModule
|
|
376
|
+
],
|
|
377
|
+
providers: []
|
|
378
|
+
},] },
|
|
379
|
+
];
|
|
380
|
+
/**
|
|
381
|
+
* @nocollapse
|
|
382
|
+
*/
|
|
383
|
+
TextAreaAllModule.ctorParameters = function () { return []; };
|
|
384
|
+
var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
385
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
386
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
387
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
388
|
+
else
|
|
389
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
390
|
+
if (d = decorators[i])
|
|
391
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
392
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
393
|
+
};
|
|
394
|
+
var __metadata$2 = (this && this.__metadata) || function (k, v) {
|
|
395
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
396
|
+
return Reflect.metadata(k, v);
|
|
397
|
+
};
|
|
398
|
+
var inputs$2 = ['cssClass', 'currency', 'currencyCode', 'decimals', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'format', 'htmlAttributes', 'locale', 'max', 'min', 'placeholder', 'readonly', 'showClearButton', 'showSpinButton', 'step', 'strictMode', 'validateDecimalOnType', 'value', 'width'];
|
|
399
|
+
var outputs$2 = ['blur', 'change', 'created', 'destroyed', 'focus', 'valueChange'];
|
|
400
|
+
var twoWays$2 = ['value'];
|
|
222
401
|
/**
|
|
223
402
|
* Represents the EJ2 Angular NumericTextBox Component.
|
|
224
403
|
* ```html
|
|
@@ -244,8 +423,8 @@ exports.NumericTextBoxComponent = NumericTextBoxComponent_1 = /** @class */ (fun
|
|
|
244
423
|
_this.skipFromEvent = true;
|
|
245
424
|
_this.element = _this.ngEle.nativeElement;
|
|
246
425
|
_this.injectedModules = _this.injectedModules || [];
|
|
247
|
-
_this.registerEvents(outputs$
|
|
248
|
-
_this.addTwoWay.call(_this, twoWays$
|
|
426
|
+
_this.registerEvents(outputs$2);
|
|
427
|
+
_this.addTwoWay.call(_this, twoWays$2);
|
|
249
428
|
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
250
429
|
_this.formContext = new ej2AngularBase.FormBase();
|
|
251
430
|
_this.formCompContext = new ej2AngularBase.ComponentBase();
|
|
@@ -304,8 +483,8 @@ exports.NumericTextBoxComponent = NumericTextBoxComponent_1 = /** @class */ (fun
|
|
|
304
483
|
exports.NumericTextBoxComponent.decorators = [
|
|
305
484
|
{ type: core.Component, args: [{
|
|
306
485
|
selector: 'ejs-numerictextbox',
|
|
307
|
-
inputs: inputs$
|
|
308
|
-
outputs: outputs$
|
|
486
|
+
inputs: inputs$2,
|
|
487
|
+
outputs: outputs$2,
|
|
309
488
|
template: '',
|
|
310
489
|
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
311
490
|
providers: [
|
|
@@ -328,9 +507,9 @@ exports.NumericTextBoxComponent.ctorParameters = function () { return [
|
|
|
328
507
|
{ type: core.Injector, },
|
|
329
508
|
{ type: core.ChangeDetectorRef, },
|
|
330
509
|
]; };
|
|
331
|
-
exports.NumericTextBoxComponent = NumericTextBoxComponent_1 = __decorate$
|
|
510
|
+
exports.NumericTextBoxComponent = NumericTextBoxComponent_1 = __decorate$2([
|
|
332
511
|
ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
|
|
333
|
-
__metadata$
|
|
512
|
+
__metadata$2("design:paramtypes", [core.ElementRef,
|
|
334
513
|
core.Renderer2,
|
|
335
514
|
core.ViewContainerRef,
|
|
336
515
|
core.Injector,
|
|
@@ -381,7 +560,7 @@ NumericTextBoxAllModule.decorators = [
|
|
|
381
560
|
* @nocollapse
|
|
382
561
|
*/
|
|
383
562
|
NumericTextBoxAllModule.ctorParameters = function () { return []; };
|
|
384
|
-
var __decorate$
|
|
563
|
+
var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
385
564
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
386
565
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
387
566
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -391,13 +570,13 @@ var __decorate$2 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
391
570
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
392
571
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
393
572
|
};
|
|
394
|
-
var __metadata$
|
|
573
|
+
var __metadata$3 = (this && this.__metadata) || function (k, v) {
|
|
395
574
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
396
575
|
return Reflect.metadata(k, v);
|
|
397
576
|
};
|
|
398
|
-
var inputs$
|
|
399
|
-
var outputs$
|
|
400
|
-
var twoWays$
|
|
577
|
+
var inputs$3 = ['cssClass', 'customCharacters', 'enablePersistence', 'enableRtl', 'enabled', 'floatLabelType', 'htmlAttributes', 'locale', 'mask', 'placeholder', 'promptChar', 'readonly', 'showClearButton', 'value', 'width'];
|
|
578
|
+
var outputs$3 = ['blur', 'change', 'created', 'destroyed', 'focus', 'valueChange'];
|
|
579
|
+
var twoWays$3 = ['value'];
|
|
401
580
|
/**
|
|
402
581
|
* Represents the EJ2 Angular MaskedTextbox Component.
|
|
403
582
|
* ```html
|
|
@@ -423,8 +602,8 @@ exports.MaskedTextBoxComponent = MaskedTextBoxComponent_1 = /** @class */ (funct
|
|
|
423
602
|
_this.skipFromEvent = true;
|
|
424
603
|
_this.element = _this.ngEle.nativeElement;
|
|
425
604
|
_this.injectedModules = _this.injectedModules || [];
|
|
426
|
-
_this.registerEvents(outputs$
|
|
427
|
-
_this.addTwoWay.call(_this, twoWays$
|
|
605
|
+
_this.registerEvents(outputs$3);
|
|
606
|
+
_this.addTwoWay.call(_this, twoWays$3);
|
|
428
607
|
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
429
608
|
_this.formContext = new ej2AngularBase.FormBase();
|
|
430
609
|
_this.formCompContext = new ej2AngularBase.ComponentBase();
|
|
@@ -483,8 +662,8 @@ exports.MaskedTextBoxComponent = MaskedTextBoxComponent_1 = /** @class */ (funct
|
|
|
483
662
|
exports.MaskedTextBoxComponent.decorators = [
|
|
484
663
|
{ type: core.Component, args: [{
|
|
485
664
|
selector: 'ejs-maskedtextbox',
|
|
486
|
-
inputs: inputs$
|
|
487
|
-
outputs: outputs$
|
|
665
|
+
inputs: inputs$3,
|
|
666
|
+
outputs: outputs$3,
|
|
488
667
|
template: '',
|
|
489
668
|
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
490
669
|
providers: [
|
|
@@ -507,9 +686,9 @@ exports.MaskedTextBoxComponent.ctorParameters = function () { return [
|
|
|
507
686
|
{ type: core.Injector, },
|
|
508
687
|
{ type: core.ChangeDetectorRef, },
|
|
509
688
|
]; };
|
|
510
|
-
exports.MaskedTextBoxComponent = MaskedTextBoxComponent_1 = __decorate$
|
|
689
|
+
exports.MaskedTextBoxComponent = MaskedTextBoxComponent_1 = __decorate$3([
|
|
511
690
|
ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
|
|
512
|
-
__metadata$
|
|
691
|
+
__metadata$3("design:paramtypes", [core.ElementRef,
|
|
513
692
|
core.Renderer2,
|
|
514
693
|
core.ViewContainerRef,
|
|
515
694
|
core.Injector,
|
|
@@ -560,7 +739,7 @@ MaskedTextBoxAllModule.decorators = [
|
|
|
560
739
|
* @nocollapse
|
|
561
740
|
*/
|
|
562
741
|
MaskedTextBoxAllModule.ctorParameters = function () { return []; };
|
|
563
|
-
var __decorate$
|
|
742
|
+
var __decorate$4 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
564
743
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
565
744
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
566
745
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -570,13 +749,13 @@ var __decorate$3 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
570
749
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
571
750
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
572
751
|
};
|
|
573
|
-
var __metadata$
|
|
752
|
+
var __metadata$4 = (this && this.__metadata) || function (k, v) {
|
|
574
753
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
575
754
|
return Reflect.metadata(k, v);
|
|
576
755
|
};
|
|
577
|
-
var inputs$
|
|
578
|
-
var outputs$
|
|
579
|
-
var twoWays$
|
|
756
|
+
var inputs$4 = ['colorRange', 'cssClass', 'customValues', 'enableAnimation', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enabled', 'limits', 'locale', 'max', 'min', 'orientation', 'readonly', 'showButtons', 'step', 'ticks', 'tooltip', 'type', 'value', 'width'];
|
|
757
|
+
var outputs$4 = ['focus', 'blur', 'change', 'changed', 'created', 'renderedTicks', 'renderingTicks', 'tooltipChange', 'valueChange'];
|
|
758
|
+
var twoWays$4 = ['value'];
|
|
580
759
|
/**
|
|
581
760
|
* Represents the EJ2 Angular Slider Component.
|
|
582
761
|
* ```html
|
|
@@ -601,8 +780,8 @@ exports.SliderComponent = SliderComponent_1 = /** @class */ (function (_super) {
|
|
|
601
780
|
_this.cdr = cdr;
|
|
602
781
|
_this.element = _this.ngEle.nativeElement;
|
|
603
782
|
_this.injectedModules = _this.injectedModules || [];
|
|
604
|
-
_this.registerEvents(outputs$
|
|
605
|
-
_this.addTwoWay.call(_this, twoWays$
|
|
783
|
+
_this.registerEvents(outputs$4);
|
|
784
|
+
_this.addTwoWay.call(_this, twoWays$4);
|
|
606
785
|
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
607
786
|
_this.formContext = new ej2AngularBase.FormBase();
|
|
608
787
|
_this.formCompContext = new ej2AngularBase.ComponentBase();
|
|
@@ -661,8 +840,8 @@ exports.SliderComponent = SliderComponent_1 = /** @class */ (function (_super) {
|
|
|
661
840
|
exports.SliderComponent.decorators = [
|
|
662
841
|
{ type: core.Component, args: [{
|
|
663
842
|
selector: 'ejs-slider',
|
|
664
|
-
inputs: inputs$
|
|
665
|
-
outputs: outputs$
|
|
843
|
+
inputs: inputs$4,
|
|
844
|
+
outputs: outputs$4,
|
|
666
845
|
template: '',
|
|
667
846
|
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
668
847
|
providers: [
|
|
@@ -685,9 +864,9 @@ exports.SliderComponent.ctorParameters = function () { return [
|
|
|
685
864
|
{ type: core.Injector, },
|
|
686
865
|
{ type: core.ChangeDetectorRef, },
|
|
687
866
|
]; };
|
|
688
|
-
exports.SliderComponent = SliderComponent_1 = __decorate$
|
|
867
|
+
exports.SliderComponent = SliderComponent_1 = __decorate$4([
|
|
689
868
|
ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
|
|
690
|
-
__metadata$
|
|
869
|
+
__metadata$4("design:paramtypes", [core.ElementRef,
|
|
691
870
|
core.Renderer2,
|
|
692
871
|
core.ViewContainerRef,
|
|
693
872
|
core.Injector,
|
|
@@ -739,7 +918,7 @@ SliderAllModule.decorators = [
|
|
|
739
918
|
*/
|
|
740
919
|
SliderAllModule.ctorParameters = function () { return []; };
|
|
741
920
|
var input = ['name', 'size', 'type'];
|
|
742
|
-
var outputs$
|
|
921
|
+
var outputs$5 = [];
|
|
743
922
|
/**
|
|
744
923
|
* 'e-files' directive represent a file of angular uploader
|
|
745
924
|
* It must be contained in a Uploader component(`ejs-uploader`).
|
|
@@ -761,7 +940,7 @@ var UploadedFilesDirective = /** @class */ (function (_super) {
|
|
|
761
940
|
var _this = _super.call(this) || this;
|
|
762
941
|
_this.viewContainerRef = viewContainerRef;
|
|
763
942
|
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
764
|
-
_this.registerEvents(outputs$
|
|
943
|
+
_this.registerEvents(outputs$5);
|
|
765
944
|
_this.directivePropList = input;
|
|
766
945
|
return _this;
|
|
767
946
|
}
|
|
@@ -771,7 +950,7 @@ UploadedFilesDirective.decorators = [
|
|
|
771
950
|
{ type: core.Directive, args: [{
|
|
772
951
|
selector: 'e-files>e-uploadedfiles',
|
|
773
952
|
inputs: input,
|
|
774
|
-
outputs: outputs$
|
|
953
|
+
outputs: outputs$5,
|
|
775
954
|
queries: {}
|
|
776
955
|
},] },
|
|
777
956
|
];
|
|
@@ -803,7 +982,7 @@ FilesDirective.decorators = [
|
|
|
803
982
|
* @nocollapse
|
|
804
983
|
*/
|
|
805
984
|
FilesDirective.ctorParameters = function () { return []; };
|
|
806
|
-
var __decorate$
|
|
985
|
+
var __decorate$5 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
807
986
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
808
987
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
809
988
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -813,13 +992,13 @@ var __decorate$4 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
813
992
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
814
993
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
815
994
|
};
|
|
816
|
-
var __metadata$
|
|
995
|
+
var __metadata$5 = (this && this.__metadata) || function (k, v) {
|
|
817
996
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
818
997
|
return Reflect.metadata(k, v);
|
|
819
998
|
};
|
|
820
|
-
var inputs$
|
|
821
|
-
var outputs$
|
|
822
|
-
var twoWays$
|
|
999
|
+
var inputs$5 = ['allowedExtensions', 'asyncSettings', 'autoUpload', 'buttons', 'cssClass', 'directoryUpload', 'dropArea', 'dropEffect', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enabled', 'files', 'htmlAttributes', 'locale', 'maxFileSize', 'minFileSize', 'multiple', 'sequentialUpload', 'showFileList', 'template'];
|
|
1000
|
+
var outputs$6 = ['focus', 'blur', 'actionComplete', 'beforeRemove', 'beforeUpload', 'canceling', 'change', 'chunkFailure', 'chunkSuccess', 'chunkUploading', 'clearing', 'created', 'failure', 'fileListRendering', 'pausing', 'progress', 'removing', 'rendering', 'resuming', 'selected', 'success', 'uploading'];
|
|
1001
|
+
var twoWays$5 = [];
|
|
823
1002
|
/**
|
|
824
1003
|
* Represents the EJ2 Angular Uploader Component.
|
|
825
1004
|
* ```html
|
|
@@ -845,8 +1024,8 @@ exports.UploaderComponent = UploaderComponent_1 = /** @class */ (function (_supe
|
|
|
845
1024
|
_this.tags = ['files'];
|
|
846
1025
|
_this.element = _this.ngEle.nativeElement;
|
|
847
1026
|
_this.injectedModules = _this.injectedModules || [];
|
|
848
|
-
_this.registerEvents(outputs$
|
|
849
|
-
_this.addTwoWay.call(_this, twoWays$
|
|
1027
|
+
_this.registerEvents(outputs$6);
|
|
1028
|
+
_this.addTwoWay.call(_this, twoWays$5);
|
|
850
1029
|
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
851
1030
|
_this.formContext = new ej2AngularBase.FormBase();
|
|
852
1031
|
_this.formCompContext = new ej2AngularBase.ComponentBase();
|
|
@@ -906,8 +1085,8 @@ exports.UploaderComponent = UploaderComponent_1 = /** @class */ (function (_supe
|
|
|
906
1085
|
exports.UploaderComponent.decorators = [
|
|
907
1086
|
{ type: core.Component, args: [{
|
|
908
1087
|
selector: 'ejs-uploader',
|
|
909
|
-
inputs: inputs$
|
|
910
|
-
outputs: outputs$
|
|
1088
|
+
inputs: inputs$5,
|
|
1089
|
+
outputs: outputs$6,
|
|
911
1090
|
template: '',
|
|
912
1091
|
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
913
1092
|
providers: [
|
|
@@ -935,13 +1114,13 @@ exports.UploaderComponent.ctorParameters = function () { return [
|
|
|
935
1114
|
exports.UploaderComponent.propDecorators = {
|
|
936
1115
|
'template': [{ type: core.ContentChild, args: ['template',] },],
|
|
937
1116
|
};
|
|
938
|
-
__decorate$
|
|
1117
|
+
__decorate$5([
|
|
939
1118
|
ej2AngularBase.Template(),
|
|
940
|
-
__metadata$
|
|
1119
|
+
__metadata$5("design:type", Object)
|
|
941
1120
|
], exports.UploaderComponent.prototype, "template", void 0);
|
|
942
|
-
exports.UploaderComponent = UploaderComponent_1 = __decorate$
|
|
1121
|
+
exports.UploaderComponent = UploaderComponent_1 = __decorate$5([
|
|
943
1122
|
ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
|
|
944
|
-
__metadata$
|
|
1123
|
+
__metadata$5("design:paramtypes", [core.ElementRef,
|
|
945
1124
|
core.Renderer2,
|
|
946
1125
|
core.ViewContainerRef,
|
|
947
1126
|
core.Injector,
|
|
@@ -996,7 +1175,7 @@ UploaderAllModule.decorators = [
|
|
|
996
1175
|
* @nocollapse
|
|
997
1176
|
*/
|
|
998
1177
|
UploaderAllModule.ctorParameters = function () { return []; };
|
|
999
|
-
var __decorate$
|
|
1178
|
+
var __decorate$6 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1000
1179
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1001
1180
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1002
1181
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1006,13 +1185,13 @@ var __decorate$5 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1006
1185
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1007
1186
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1008
1187
|
};
|
|
1009
|
-
var __metadata$
|
|
1188
|
+
var __metadata$6 = (this && this.__metadata) || function (k, v) {
|
|
1010
1189
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
1011
1190
|
return Reflect.metadata(k, v);
|
|
1012
1191
|
};
|
|
1013
|
-
var inputs$
|
|
1014
|
-
var outputs$
|
|
1015
|
-
var twoWays$
|
|
1192
|
+
var inputs$6 = ['columns', 'createPopupOnClick', 'cssClass', 'disabled', 'enableOpacity', 'enablePersistence', 'enableRtl', 'inline', 'locale', 'mode', 'modeSwitcher', 'noColor', 'presetColors', 'showButtons', 'value'];
|
|
1193
|
+
var outputs$7 = ['focus', 'blur', 'beforeClose', 'beforeModeSwitch', 'beforeOpen', 'beforeTileRender', 'change', 'created', 'onModeSwitch', 'open', 'select', 'valueChange'];
|
|
1194
|
+
var twoWays$6 = ['value'];
|
|
1016
1195
|
/**
|
|
1017
1196
|
* Represents the EJ2 Angular ColorPicker Component.
|
|
1018
1197
|
* ```html
|
|
@@ -1037,8 +1216,8 @@ exports.ColorPickerComponent = ColorPickerComponent_1 = /** @class */ (function
|
|
|
1037
1216
|
_this.cdr = cdr;
|
|
1038
1217
|
_this.element = _this.ngEle.nativeElement;
|
|
1039
1218
|
_this.injectedModules = _this.injectedModules || [];
|
|
1040
|
-
_this.registerEvents(outputs$
|
|
1041
|
-
_this.addTwoWay.call(_this, twoWays$
|
|
1219
|
+
_this.registerEvents(outputs$7);
|
|
1220
|
+
_this.addTwoWay.call(_this, twoWays$6);
|
|
1042
1221
|
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
1043
1222
|
_this.formContext = new ej2AngularBase.FormBase();
|
|
1044
1223
|
_this.formCompContext = new ej2AngularBase.ComponentBase();
|
|
@@ -1097,8 +1276,8 @@ exports.ColorPickerComponent = ColorPickerComponent_1 = /** @class */ (function
|
|
|
1097
1276
|
exports.ColorPickerComponent.decorators = [
|
|
1098
1277
|
{ type: core.Component, args: [{
|
|
1099
1278
|
selector: '[ejs-colorpicker]',
|
|
1100
|
-
inputs: inputs$
|
|
1101
|
-
outputs: outputs$
|
|
1279
|
+
inputs: inputs$6,
|
|
1280
|
+
outputs: outputs$7,
|
|
1102
1281
|
template: '',
|
|
1103
1282
|
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
1104
1283
|
providers: [
|
|
@@ -1121,9 +1300,9 @@ exports.ColorPickerComponent.ctorParameters = function () { return [
|
|
|
1121
1300
|
{ type: core.Injector, },
|
|
1122
1301
|
{ type: core.ChangeDetectorRef, },
|
|
1123
1302
|
]; };
|
|
1124
|
-
exports.ColorPickerComponent = ColorPickerComponent_1 = __decorate$
|
|
1303
|
+
exports.ColorPickerComponent = ColorPickerComponent_1 = __decorate$6([
|
|
1125
1304
|
ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
|
|
1126
|
-
__metadata$
|
|
1305
|
+
__metadata$6("design:paramtypes", [core.ElementRef,
|
|
1127
1306
|
core.Renderer2,
|
|
1128
1307
|
core.ViewContainerRef,
|
|
1129
1308
|
core.Injector,
|
|
@@ -1174,7 +1353,7 @@ ColorPickerAllModule.decorators = [
|
|
|
1174
1353
|
* @nocollapse
|
|
1175
1354
|
*/
|
|
1176
1355
|
ColorPickerAllModule.ctorParameters = function () { return []; };
|
|
1177
|
-
var __decorate$
|
|
1356
|
+
var __decorate$7 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1178
1357
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1179
1358
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1180
1359
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1184,13 +1363,13 @@ var __decorate$6 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1184
1363
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1185
1364
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1186
1365
|
};
|
|
1187
|
-
var __metadata$
|
|
1366
|
+
var __metadata$7 = (this && this.__metadata) || function (k, v) {
|
|
1188
1367
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
1189
1368
|
return Reflect.metadata(k, v);
|
|
1190
1369
|
};
|
|
1191
|
-
var inputs$
|
|
1192
|
-
var outputs$
|
|
1193
|
-
var twoWays$
|
|
1370
|
+
var inputs$7 = ['backgroundColor', 'backgroundImage', 'disabled', 'enablePersistence', 'enableRtl', 'isReadOnly', 'locale', 'maxStrokeWidth', 'minStrokeWidth', 'saveWithBackground', 'strokeColor', 'velocity'];
|
|
1371
|
+
var outputs$8 = ['focus', 'blur', 'beforeSave', 'change', 'created'];
|
|
1372
|
+
var twoWays$7 = [];
|
|
1194
1373
|
/**
|
|
1195
1374
|
* Represents the EJ2 Angular Signature Component.
|
|
1196
1375
|
* ```html
|
|
@@ -1215,8 +1394,8 @@ exports.SignatureComponent = SignatureComponent_1 = /** @class */ (function (_su
|
|
|
1215
1394
|
_this.cdr = cdr;
|
|
1216
1395
|
_this.element = _this.ngEle.nativeElement;
|
|
1217
1396
|
_this.injectedModules = _this.injectedModules || [];
|
|
1218
|
-
_this.registerEvents(outputs$
|
|
1219
|
-
_this.addTwoWay.call(_this, twoWays$
|
|
1397
|
+
_this.registerEvents(outputs$8);
|
|
1398
|
+
_this.addTwoWay.call(_this, twoWays$7);
|
|
1220
1399
|
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
1221
1400
|
_this.formContext = new ej2AngularBase.FormBase();
|
|
1222
1401
|
_this.formCompContext = new ej2AngularBase.ComponentBase();
|
|
@@ -1275,8 +1454,8 @@ exports.SignatureComponent = SignatureComponent_1 = /** @class */ (function (_su
|
|
|
1275
1454
|
exports.SignatureComponent.decorators = [
|
|
1276
1455
|
{ type: core.Component, args: [{
|
|
1277
1456
|
selector: '[ejs-signature]',
|
|
1278
|
-
inputs: inputs$
|
|
1279
|
-
outputs: outputs$
|
|
1457
|
+
inputs: inputs$7,
|
|
1458
|
+
outputs: outputs$8,
|
|
1280
1459
|
template: '',
|
|
1281
1460
|
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
1282
1461
|
providers: [
|
|
@@ -1299,9 +1478,9 @@ exports.SignatureComponent.ctorParameters = function () { return [
|
|
|
1299
1478
|
{ type: core.Injector, },
|
|
1300
1479
|
{ type: core.ChangeDetectorRef, },
|
|
1301
1480
|
]; };
|
|
1302
|
-
exports.SignatureComponent = SignatureComponent_1 = __decorate$
|
|
1481
|
+
exports.SignatureComponent = SignatureComponent_1 = __decorate$7([
|
|
1303
1482
|
ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
|
|
1304
|
-
__metadata$
|
|
1483
|
+
__metadata$7("design:paramtypes", [core.ElementRef,
|
|
1305
1484
|
core.Renderer2,
|
|
1306
1485
|
core.ViewContainerRef,
|
|
1307
1486
|
core.Injector,
|
|
@@ -1352,7 +1531,7 @@ SignatureAllModule.decorators = [
|
|
|
1352
1531
|
* @nocollapse
|
|
1353
1532
|
*/
|
|
1354
1533
|
SignatureAllModule.ctorParameters = function () { return []; };
|
|
1355
|
-
var __decorate$
|
|
1534
|
+
var __decorate$8 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
1356
1535
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
1357
1536
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
1358
1537
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -1362,13 +1541,13 @@ var __decorate$7 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
1362
1541
|
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
1363
1542
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
1364
1543
|
};
|
|
1365
|
-
var __metadata$
|
|
1544
|
+
var __metadata$8 = (this && this.__metadata) || function (k, v) {
|
|
1366
1545
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
1367
1546
|
return Reflect.metadata(k, v);
|
|
1368
1547
|
};
|
|
1369
|
-
var inputs$
|
|
1370
|
-
var outputs$
|
|
1371
|
-
var twoWays$
|
|
1548
|
+
var inputs$8 = ['allowReset', 'cssClass', 'disabled', 'emptyTemplate', 'enableAnimation', 'enablePersistence', 'enableRtl', 'enableSingleSelection', 'fullTemplate', 'itemsCount', 'labelPosition', 'labelTemplate', 'locale', 'min', 'precision', 'readOnly', 'showLabel', 'showTooltip', 'tooltipTemplate', 'value', 'visible'];
|
|
1549
|
+
var outputs$9 = ['focus', 'blur', 'beforeItemRender', 'created', 'onItemHover', 'valueChanged', 'valueChange'];
|
|
1550
|
+
var twoWays$8 = ['value'];
|
|
1372
1551
|
/**
|
|
1373
1552
|
* Represents the EJ2 Angular Rating Component.
|
|
1374
1553
|
* ```html
|
|
@@ -1393,8 +1572,8 @@ exports.RatingComponent = RatingComponent_1 = /** @class */ (function (_super) {
|
|
|
1393
1572
|
_this.cdr = cdr;
|
|
1394
1573
|
_this.element = _this.ngEle.nativeElement;
|
|
1395
1574
|
_this.injectedModules = _this.injectedModules || [];
|
|
1396
|
-
_this.registerEvents(outputs$
|
|
1397
|
-
_this.addTwoWay.call(_this, twoWays$
|
|
1575
|
+
_this.registerEvents(outputs$9);
|
|
1576
|
+
_this.addTwoWay.call(_this, twoWays$8);
|
|
1398
1577
|
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
1399
1578
|
_this.formContext = new ej2AngularBase.FormBase();
|
|
1400
1579
|
_this.formCompContext = new ej2AngularBase.ComponentBase();
|
|
@@ -1453,8 +1632,8 @@ exports.RatingComponent = RatingComponent_1 = /** @class */ (function (_super) {
|
|
|
1453
1632
|
exports.RatingComponent.decorators = [
|
|
1454
1633
|
{ type: core.Component, args: [{
|
|
1455
1634
|
selector: '[ejs-rating]',
|
|
1456
|
-
inputs: inputs$
|
|
1457
|
-
outputs: outputs$
|
|
1635
|
+
inputs: inputs$8,
|
|
1636
|
+
outputs: outputs$9,
|
|
1458
1637
|
template: '',
|
|
1459
1638
|
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
1460
1639
|
providers: [
|
|
@@ -1483,25 +1662,25 @@ exports.RatingComponent.propDecorators = {
|
|
|
1483
1662
|
'tooltipTemplate': [{ type: core.ContentChild, args: ['tooltipTemplate',] },],
|
|
1484
1663
|
'labelTemplate': [{ type: core.ContentChild, args: ['labelTemplate',] },],
|
|
1485
1664
|
};
|
|
1486
|
-
__decorate$
|
|
1665
|
+
__decorate$8([
|
|
1487
1666
|
ej2AngularBase.Template(),
|
|
1488
|
-
__metadata$
|
|
1667
|
+
__metadata$8("design:type", Object)
|
|
1489
1668
|
], exports.RatingComponent.prototype, "fullTemplate", void 0);
|
|
1490
|
-
__decorate$
|
|
1669
|
+
__decorate$8([
|
|
1491
1670
|
ej2AngularBase.Template(),
|
|
1492
|
-
__metadata$
|
|
1671
|
+
__metadata$8("design:type", Object)
|
|
1493
1672
|
], exports.RatingComponent.prototype, "emptyTemplate", void 0);
|
|
1494
|
-
__decorate$
|
|
1673
|
+
__decorate$8([
|
|
1495
1674
|
ej2AngularBase.Template(),
|
|
1496
|
-
__metadata$
|
|
1675
|
+
__metadata$8("design:type", Object)
|
|
1497
1676
|
], exports.RatingComponent.prototype, "tooltipTemplate", void 0);
|
|
1498
|
-
__decorate$
|
|
1677
|
+
__decorate$8([
|
|
1499
1678
|
ej2AngularBase.Template(),
|
|
1500
|
-
__metadata$
|
|
1679
|
+
__metadata$8("design:type", Object)
|
|
1501
1680
|
], exports.RatingComponent.prototype, "labelTemplate", void 0);
|
|
1502
|
-
exports.RatingComponent = RatingComponent_1 = __decorate$
|
|
1681
|
+
exports.RatingComponent = RatingComponent_1 = __decorate$8([
|
|
1503
1682
|
ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase, ej2AngularBase.FormBase]),
|
|
1504
|
-
__metadata$
|
|
1683
|
+
__metadata$8("design:paramtypes", [core.ElementRef,
|
|
1505
1684
|
core.Renderer2,
|
|
1506
1685
|
core.ViewContainerRef,
|
|
1507
1686
|
core.Injector,
|
|
@@ -1796,6 +1975,8 @@ var FormValidators = /** @class */ (function () {
|
|
|
1796
1975
|
|
|
1797
1976
|
exports.TextBoxModule = TextBoxModule;
|
|
1798
1977
|
exports.TextBoxAllModule = TextBoxAllModule;
|
|
1978
|
+
exports.TextAreaModule = TextAreaModule;
|
|
1979
|
+
exports.TextAreaAllModule = TextAreaAllModule;
|
|
1799
1980
|
exports.NumericTextBoxModule = NumericTextBoxModule;
|
|
1800
1981
|
exports.NumericTextBoxAllModule = NumericTextBoxAllModule;
|
|
1801
1982
|
exports.MaskedTextBoxModule = MaskedTextBoxModule;
|
|
@@ -1813,22 +1994,24 @@ exports.SignatureAllModule = SignatureAllModule;
|
|
|
1813
1994
|
exports.RatingModule = RatingModule;
|
|
1814
1995
|
exports.RatingAllModule = RatingAllModule;
|
|
1815
1996
|
exports.FormValidators = FormValidators;
|
|
1816
|
-
exports.ɵk = inputs$5;
|
|
1817
|
-
exports.ɵl = outputs$6;
|
|
1818
|
-
exports.ɵe = inputs$2;
|
|
1819
|
-
exports.ɵf = outputs$2;
|
|
1820
|
-
exports.ɵc = inputs$1;
|
|
1821
|
-
exports.ɵd = outputs$1;
|
|
1822
|
-
exports.ɵo = inputs$7;
|
|
1823
|
-
exports.ɵp = outputs$8;
|
|
1824
1997
|
exports.ɵm = inputs$6;
|
|
1825
1998
|
exports.ɵn = outputs$7;
|
|
1826
1999
|
exports.ɵg = inputs$3;
|
|
1827
2000
|
exports.ɵh = outputs$3;
|
|
2001
|
+
exports.ɵe = inputs$2;
|
|
2002
|
+
exports.ɵf = outputs$2;
|
|
2003
|
+
exports.ɵq = inputs$8;
|
|
2004
|
+
exports.ɵr = outputs$9;
|
|
2005
|
+
exports.ɵo = inputs$7;
|
|
2006
|
+
exports.ɵp = outputs$8;
|
|
2007
|
+
exports.ɵi = inputs$4;
|
|
2008
|
+
exports.ɵj = outputs$4;
|
|
2009
|
+
exports.ɵc = inputs$1;
|
|
2010
|
+
exports.ɵd = outputs$1;
|
|
1828
2011
|
exports.ɵa = inputs;
|
|
1829
2012
|
exports.ɵb = outputs;
|
|
1830
|
-
exports.ɵ
|
|
1831
|
-
exports.ɵ
|
|
2013
|
+
exports.ɵk = inputs$5;
|
|
2014
|
+
exports.ɵl = outputs$6;
|
|
1832
2015
|
exports.NumericTextBox = ej2Inputs.NumericTextBox;
|
|
1833
2016
|
exports.regularExpressions = ej2Inputs.regularExpressions;
|
|
1834
2017
|
exports.createMask = ej2Inputs.createMask;
|
|
@@ -1853,6 +2036,8 @@ exports.getVal = ej2Inputs.getVal;
|
|
|
1853
2036
|
exports.getMaskedVal = ej2Inputs.getMaskedVal;
|
|
1854
2037
|
exports.MaskUndo = ej2Inputs.MaskUndo;
|
|
1855
2038
|
exports.MaskedTextBox = ej2Inputs.MaskedTextBox;
|
|
2039
|
+
exports.containerAttributes = ej2Inputs.containerAttributes;
|
|
2040
|
+
exports.TEXTBOX_FOCUS = ej2Inputs.TEXTBOX_FOCUS;
|
|
1856
2041
|
exports.Input = ej2Inputs.Input;
|
|
1857
2042
|
exports.TicksData = ej2Inputs.TicksData;
|
|
1858
2043
|
exports.ColorRangeData = ej2Inputs.ColorRangeData;
|
|
@@ -1868,6 +2053,7 @@ exports.AsyncSettings = ej2Inputs.AsyncSettings;
|
|
|
1868
2053
|
exports.Uploader = ej2Inputs.Uploader;
|
|
1869
2054
|
exports.ColorPicker = ej2Inputs.ColorPicker;
|
|
1870
2055
|
exports.TextBox = ej2Inputs.TextBox;
|
|
2056
|
+
exports.TextArea = ej2Inputs.TextArea;
|
|
1871
2057
|
exports.Signature = ej2Inputs.Signature;
|
|
1872
2058
|
exports.LabelPosition = ej2Inputs.LabelPosition;
|
|
1873
2059
|
exports.PrecisionType = ej2Inputs.PrecisionType;
|