@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.
- package/CHANGELOG.md +1622 -0
- package/README.md +11 -3
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/color-picker/colorpicker-all.module.mjs +23 -0
- package/esm2020/src/color-picker/colorpicker.component.mjs +84 -0
- package/esm2020/src/color-picker/colorpicker.module.mjs +25 -0
- package/esm2020/src/form-validator/form-validator.mjs +193 -0
- package/esm2020/src/index.mjs +40 -0
- package/esm2020/src/maskedtextbox/maskedtextbox-all.module.mjs +23 -0
- package/esm2020/src/maskedtextbox/maskedtextbox.component.mjs +85 -0
- package/esm2020/src/maskedtextbox/maskedtextbox.module.mjs +25 -0
- package/esm2020/src/numerictextbox/numerictextbox-all.module.mjs +23 -0
- package/esm2020/src/numerictextbox/numerictextbox.component.mjs +85 -0
- package/esm2020/src/numerictextbox/numerictextbox.module.mjs +25 -0
- package/esm2020/src/otp-input/otpinput-all.module.mjs +23 -0
- package/esm2020/src/otp-input/otpinput.component.mjs +85 -0
- package/esm2020/src/otp-input/otpinput.module.mjs +25 -0
- package/esm2020/src/rating/rating-all.module.mjs +23 -0
- package/esm2020/src/rating/rating.component.mjs +109 -0
- package/esm2020/src/rating/rating.module.mjs +25 -0
- package/esm2020/src/signature/signature-all.module.mjs +23 -0
- package/esm2020/src/signature/signature.component.mjs +84 -0
- package/esm2020/src/signature/signature.module.mjs +25 -0
- package/esm2020/src/slider/slider-all.module.mjs +23 -0
- package/esm2020/src/slider/slider.component.mjs +84 -0
- package/esm2020/src/slider/slider.module.mjs +25 -0
- package/esm2020/src/smart-textarea/smarttextarea-all.module.mjs +23 -0
- package/esm2020/src/smart-textarea/smarttextarea.component.mjs +85 -0
- package/esm2020/src/smart-textarea/smarttextarea.module.mjs +25 -0
- package/esm2020/src/speech-to-text/speechtotext-all.module.mjs +23 -0
- package/esm2020/src/speech-to-text/speechtotext.component.mjs +59 -0
- package/esm2020/src/speech-to-text/speechtotext.module.mjs +25 -0
- package/esm2020/src/textarea/textarea-all.module.mjs +23 -0
- package/esm2020/src/textarea/textarea.component.mjs +85 -0
- package/esm2020/src/textarea/textarea.module.mjs +25 -0
- package/esm2020/src/textbox/textbox-all.module.mjs +23 -0
- package/esm2020/src/textbox/textbox.component.mjs +85 -0
- package/esm2020/src/textbox/textbox.module.mjs +25 -0
- package/esm2020/src/uploader/files.directive.mjs +58 -0
- package/esm2020/src/uploader/uploader-all.module.mjs +23 -0
- package/esm2020/src/uploader/uploader.component.mjs +96 -0
- package/esm2020/src/uploader/uploader.module.mjs +34 -0
- package/esm2020/syncfusion-ej2-angular-inputs.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-inputs.mjs +1690 -0
- package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-inputs.mjs +1690 -0
- package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -0
- package/package.json +20 -7
- package/public_api.d.ts +1 -1
- package/src/color-picker/colorpicker-all.module.d.ts +11 -5
- package/src/color-picker/colorpicker.component.d.ts +48 -45
- package/src/color-picker/colorpicker.module.d.ts +11 -5
- package/src/form-validator/form-validator.d.ts +36 -36
- package/src/index.d.ts +39 -39
- package/src/maskedtextbox/maskedtextbox-all.module.d.ts +11 -5
- package/src/maskedtextbox/maskedtextbox.component.d.ts +43 -40
- package/src/maskedtextbox/maskedtextbox.module.d.ts +11 -5
- package/src/numerictextbox/numerictextbox-all.module.d.ts +11 -5
- package/src/numerictextbox/numerictextbox.component.d.ts +43 -40
- package/src/numerictextbox/numerictextbox.module.d.ts +11 -5
- package/src/otp-input/otpinput-all.module.d.ts +11 -5
- package/src/otp-input/otpinput.component.d.ts +43 -40
- package/src/otp-input/otpinput.module.d.ts +11 -5
- package/src/rating/rating-all.module.d.ts +11 -5
- package/src/rating/rating.component.d.ts +89 -86
- package/src/rating/rating.module.d.ts +11 -5
- package/src/signature/signature-all.module.d.ts +11 -5
- package/src/signature/signature.component.d.ts +41 -38
- package/src/signature/signature.module.d.ts +11 -5
- package/src/slider/slider-all.module.d.ts +11 -5
- package/src/slider/slider.component.d.ts +45 -42
- package/src/slider/slider.module.d.ts +11 -5
- package/src/smart-textarea/smarttextarea-all.module.d.ts +11 -5
- package/src/smart-textarea/smarttextarea.component.d.ts +44 -41
- package/src/smart-textarea/smarttextarea.module.d.ts +11 -5
- package/src/speech-to-text/speechtotext-all.module.d.ts +11 -5
- package/src/speech-to-text/speechtotext.component.d.ts +36 -33
- package/src/speech-to-text/speechtotext.module.d.ts +11 -5
- package/src/textarea/textarea-all.module.d.ts +11 -5
- package/src/textarea/textarea.component.d.ts +44 -41
- package/src/textarea/textarea.module.d.ts +11 -5
- package/src/textbox/textbox-all.module.d.ts +11 -5
- package/src/textbox/textbox.component.d.ts +44 -41
- package/src/textbox/textbox.module.d.ts +11 -5
- package/src/uploader/files.directive.d.ts +46 -41
- package/src/uploader/uploader-all.module.d.ts +11 -5
- package/src/uploader/uploader.component.d.ts +69 -66
- package/src/uploader/uploader.module.d.ts +12 -5
- package/syncfusion-ej2-angular-inputs.d.ts +5 -0
- package/@syncfusion/ej2-angular-inputs.es5.js +0 -2469
- package/@syncfusion/ej2-angular-inputs.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-inputs.js +0 -2323
- package/@syncfusion/ej2-angular-inputs.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-inputs.umd.js +0 -2587
- package/dist/ej2-angular-inputs.umd.js.map +0 -1
- package/dist/ej2-angular-inputs.umd.min.js +0 -11
- package/dist/ej2-angular-inputs.umd.min.js.map +0 -1
- package/ej2-angular-inputs.d.ts +0 -16
- package/ej2-angular-inputs.metadata.json +0 -1
package/src/index.d.ts
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
export { TextBoxComponent } from './textbox/textbox.component';
|
|
2
|
-
export { TextBoxModule } from './textbox/textbox.module';
|
|
3
|
-
export { TextBoxAllModule } from './textbox/textbox-all.module';
|
|
4
|
-
export { TextAreaComponent } from './textarea/textarea.component';
|
|
5
|
-
export { TextAreaModule } from './textarea/textarea.module';
|
|
6
|
-
export { TextAreaAllModule } from './textarea/textarea-all.module';
|
|
7
|
-
export { NumericTextBoxComponent } from './numerictextbox/numerictextbox.component';
|
|
8
|
-
export { NumericTextBoxModule } from './numerictextbox/numerictextbox.module';
|
|
9
|
-
export { NumericTextBoxAllModule } from './numerictextbox/numerictextbox-all.module';
|
|
10
|
-
export { MaskedTextBoxComponent } from './maskedtextbox/maskedtextbox.component';
|
|
11
|
-
export { MaskedTextBoxModule } from './maskedtextbox/maskedtextbox.module';
|
|
12
|
-
export { MaskedTextBoxAllModule } from './maskedtextbox/maskedtextbox-all.module';
|
|
13
|
-
export { SliderComponent } from './slider/slider.component';
|
|
14
|
-
export { SliderModule } from './slider/slider.module';
|
|
15
|
-
export { SliderAllModule } from './slider/slider-all.module';
|
|
16
|
-
export { UploadedFilesDirective, FilesDirective } from './uploader/files.directive';
|
|
17
|
-
export { UploaderComponent } from './uploader/uploader.component';
|
|
18
|
-
export { UploaderModule } from './uploader/uploader.module';
|
|
19
|
-
export { UploaderAllModule } from './uploader/uploader-all.module';
|
|
20
|
-
export { ColorPickerComponent } from './color-picker/colorpicker.component';
|
|
21
|
-
export { ColorPickerModule } from './color-picker/colorpicker.module';
|
|
22
|
-
export { ColorPickerAllModule } from './color-picker/colorpicker-all.module';
|
|
23
|
-
export { SignatureComponent } from './signature/signature.component';
|
|
24
|
-
export { SignatureModule } from './signature/signature.module';
|
|
25
|
-
export { SignatureAllModule } from './signature/signature-all.module';
|
|
26
|
-
export { RatingComponent } from './rating/rating.component';
|
|
27
|
-
export { RatingModule } from './rating/rating.module';
|
|
28
|
-
export { RatingAllModule } from './rating/rating-all.module';
|
|
29
|
-
export { OtpInputComponent } from './otp-input/otpinput.component';
|
|
30
|
-
export { OtpInputModule } from './otp-input/otpinput.module';
|
|
31
|
-
export { OtpInputAllModule } from './otp-input/otpinput-all.module';
|
|
32
|
-
export { SmartTextAreaComponent } from './smart-textarea/smarttextarea.component';
|
|
33
|
-
export { SmartTextAreaModule } from './smart-textarea/smarttextarea.module';
|
|
34
|
-
export { SmartTextAreaAllModule } from './smart-textarea/smarttextarea-all.module';
|
|
35
|
-
export { SpeechToTextComponent } from './speech-to-text/speechtotext.component';
|
|
36
|
-
export { SpeechToTextModule } from './speech-to-text/speechtotext.module';
|
|
37
|
-
export { SpeechToTextAllModule } from './speech-to-text/speechtotext-all.module';
|
|
38
|
-
export * from './form-validator/form-validator';
|
|
39
|
-
export * from '@syncfusion/ej2-inputs';
|
|
1
|
+
export { TextBoxComponent } from './textbox/textbox.component';
|
|
2
|
+
export { TextBoxModule } from './textbox/textbox.module';
|
|
3
|
+
export { TextBoxAllModule } from './textbox/textbox-all.module';
|
|
4
|
+
export { TextAreaComponent } from './textarea/textarea.component';
|
|
5
|
+
export { TextAreaModule } from './textarea/textarea.module';
|
|
6
|
+
export { TextAreaAllModule } from './textarea/textarea-all.module';
|
|
7
|
+
export { NumericTextBoxComponent } from './numerictextbox/numerictextbox.component';
|
|
8
|
+
export { NumericTextBoxModule } from './numerictextbox/numerictextbox.module';
|
|
9
|
+
export { NumericTextBoxAllModule } from './numerictextbox/numerictextbox-all.module';
|
|
10
|
+
export { MaskedTextBoxComponent } from './maskedtextbox/maskedtextbox.component';
|
|
11
|
+
export { MaskedTextBoxModule } from './maskedtextbox/maskedtextbox.module';
|
|
12
|
+
export { MaskedTextBoxAllModule } from './maskedtextbox/maskedtextbox-all.module';
|
|
13
|
+
export { SliderComponent } from './slider/slider.component';
|
|
14
|
+
export { SliderModule } from './slider/slider.module';
|
|
15
|
+
export { SliderAllModule } from './slider/slider-all.module';
|
|
16
|
+
export { UploadedFilesDirective, FilesDirective } from './uploader/files.directive';
|
|
17
|
+
export { UploaderComponent } from './uploader/uploader.component';
|
|
18
|
+
export { UploaderModule } from './uploader/uploader.module';
|
|
19
|
+
export { UploaderAllModule } from './uploader/uploader-all.module';
|
|
20
|
+
export { ColorPickerComponent } from './color-picker/colorpicker.component';
|
|
21
|
+
export { ColorPickerModule } from './color-picker/colorpicker.module';
|
|
22
|
+
export { ColorPickerAllModule } from './color-picker/colorpicker-all.module';
|
|
23
|
+
export { SignatureComponent } from './signature/signature.component';
|
|
24
|
+
export { SignatureModule } from './signature/signature.module';
|
|
25
|
+
export { SignatureAllModule } from './signature/signature-all.module';
|
|
26
|
+
export { RatingComponent } from './rating/rating.component';
|
|
27
|
+
export { RatingModule } from './rating/rating.module';
|
|
28
|
+
export { RatingAllModule } from './rating/rating-all.module';
|
|
29
|
+
export { OtpInputComponent } from './otp-input/otpinput.component';
|
|
30
|
+
export { OtpInputModule } from './otp-input/otpinput.module';
|
|
31
|
+
export { OtpInputAllModule } from './otp-input/otpinput-all.module';
|
|
32
|
+
export { SmartTextAreaComponent } from './smart-textarea/smarttextarea.component';
|
|
33
|
+
export { SmartTextAreaModule } from './smart-textarea/smarttextarea.module';
|
|
34
|
+
export { SmartTextAreaAllModule } from './smart-textarea/smarttextarea-all.module';
|
|
35
|
+
export { SpeechToTextComponent } from './speech-to-text/speechtotext.component';
|
|
36
|
+
export { SpeechToTextModule } from './speech-to-text/speechtotext.module';
|
|
37
|
+
export { SpeechToTextAllModule } from './speech-to-text/speechtotext-all.module';
|
|
38
|
+
export * from './form-validator/form-validator';
|
|
39
|
+
export * from '@syncfusion/ej2-inputs';
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./maskedtextbox.module";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the MaskedTextBox component with providers.
|
|
6
|
+
*/
|
|
7
|
+
export declare class MaskedTextBoxAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaskedTextBoxAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MaskedTextBoxAllModule, never, [typeof i1.CommonModule, typeof i2.MaskedTextBoxModule], [typeof i2.MaskedTextBoxModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MaskedTextBoxAllModule>;
|
|
11
|
+
}
|
|
@@ -1,40 +1,43 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { MaskedTextBox } from '@syncfusion/ej2-inputs';
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
private
|
|
18
|
-
private
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { MaskedTextBox } from '@syncfusion/ej2-inputs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare const inputs: string[];
|
|
6
|
+
export declare const outputs: string[];
|
|
7
|
+
export declare const twoWays: string[];
|
|
8
|
+
/**
|
|
9
|
+
* Represents the EJ2 Angular MaskedTextbox Component.
|
|
10
|
+
* ```html
|
|
11
|
+
* <ej-maskedtextbox [value]='value'></ej-maskedtextbox>
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export declare class MaskedTextBoxComponent extends MaskedTextBox implements IComponentBase {
|
|
15
|
+
private ngEle;
|
|
16
|
+
private srenderer;
|
|
17
|
+
private viewContainerRef;
|
|
18
|
+
private injector;
|
|
19
|
+
private cdr;
|
|
20
|
+
formCompContext: any;
|
|
21
|
+
formContext: any;
|
|
22
|
+
tagObjects: any;
|
|
23
|
+
blur: any;
|
|
24
|
+
change: any;
|
|
25
|
+
created: any;
|
|
26
|
+
destroyed: any;
|
|
27
|
+
focus: any;
|
|
28
|
+
valueChange: any;
|
|
29
|
+
private skipFromEvent;
|
|
30
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
|
|
31
|
+
registerOnChange(registerFunction: (_: any) => void): void;
|
|
32
|
+
registerOnTouched(registerFunction: () => void): void;
|
|
33
|
+
writeValue(value: any): void;
|
|
34
|
+
setDisabledState(disabled: boolean): void;
|
|
35
|
+
ngOnInit(): void;
|
|
36
|
+
ngAfterViewInit(): void;
|
|
37
|
+
ngOnDestroy(): void;
|
|
38
|
+
ngAfterContentChecked(): void;
|
|
39
|
+
registerEvents: (eventList: string[]) => void;
|
|
40
|
+
addTwoWay: (propList: string[]) => void;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaskedTextBoxComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MaskedTextBoxComponent, "ejs-maskedtextbox", never, { "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"; }, { "blur": "blur"; "change": "change"; "created": "created"; "destroyed": "destroyed"; "focus": "focus"; "valueChange": "valueChange"; }, never, never>;
|
|
43
|
+
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./maskedtextbox.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the MaskedTextBox component.
|
|
6
|
+
*/
|
|
7
|
+
export declare class MaskedTextBoxModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaskedTextBoxModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MaskedTextBoxModule, [typeof i1.MaskedTextBoxComponent], [typeof i2.CommonModule], [typeof i1.MaskedTextBoxComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MaskedTextBoxModule>;
|
|
11
|
+
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./numerictextbox.module";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the NumericTextBox component with providers.
|
|
6
|
+
*/
|
|
7
|
+
export declare class NumericTextBoxAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NumericTextBoxAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NumericTextBoxAllModule, never, [typeof i1.CommonModule, typeof i2.NumericTextBoxModule], [typeof i2.NumericTextBoxModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NumericTextBoxAllModule>;
|
|
11
|
+
}
|
|
@@ -1,40 +1,43 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { NumericTextBox } from '@syncfusion/ej2-inputs';
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
private
|
|
18
|
-
private
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { NumericTextBox } from '@syncfusion/ej2-inputs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare const inputs: string[];
|
|
6
|
+
export declare const outputs: string[];
|
|
7
|
+
export declare const twoWays: string[];
|
|
8
|
+
/**
|
|
9
|
+
* Represents the EJ2 Angular NumericTextBox Component.
|
|
10
|
+
* ```html
|
|
11
|
+
* <ej-numerictextbox [value]='value'></ej-numerictextbox>
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export declare class NumericTextBoxComponent extends NumericTextBox implements IComponentBase {
|
|
15
|
+
private ngEle;
|
|
16
|
+
private srenderer;
|
|
17
|
+
private viewContainerRef;
|
|
18
|
+
private injector;
|
|
19
|
+
private cdr;
|
|
20
|
+
formCompContext: any;
|
|
21
|
+
formContext: any;
|
|
22
|
+
tagObjects: any;
|
|
23
|
+
blur: any;
|
|
24
|
+
change: any;
|
|
25
|
+
created: any;
|
|
26
|
+
destroyed: any;
|
|
27
|
+
focus: any;
|
|
28
|
+
valueChange: any;
|
|
29
|
+
private skipFromEvent;
|
|
30
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
|
|
31
|
+
registerOnChange(registerFunction: (_: any) => void): void;
|
|
32
|
+
registerOnTouched(registerFunction: () => void): void;
|
|
33
|
+
writeValue(value: any): void;
|
|
34
|
+
setDisabledState(disabled: boolean): void;
|
|
35
|
+
ngOnInit(): void;
|
|
36
|
+
ngAfterViewInit(): void;
|
|
37
|
+
ngOnDestroy(): void;
|
|
38
|
+
ngAfterContentChecked(): void;
|
|
39
|
+
registerEvents: (eventList: string[]) => void;
|
|
40
|
+
addTwoWay: (propList: string[]) => void;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NumericTextBoxComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NumericTextBoxComponent, "ejs-numerictextbox", never, { "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"; }, { "blur": "blur"; "change": "change"; "created": "created"; "destroyed": "destroyed"; "focus": "focus"; "valueChange": "valueChange"; }, never, never>;
|
|
43
|
+
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./numerictextbox.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the NumericTextBox component.
|
|
6
|
+
*/
|
|
7
|
+
export declare class NumericTextBoxModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NumericTextBoxModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NumericTextBoxModule, [typeof i1.NumericTextBoxComponent], [typeof i2.CommonModule], [typeof i1.NumericTextBoxComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NumericTextBoxModule>;
|
|
11
|
+
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./otpinput.module";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the OtpInput component with providers.
|
|
6
|
+
*/
|
|
7
|
+
export declare class OtpInputAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OtpInputAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OtpInputAllModule, never, [typeof i1.CommonModule, typeof i2.OtpInputModule], [typeof i2.OtpInputModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<OtpInputAllModule>;
|
|
11
|
+
}
|
|
@@ -1,40 +1,43 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { OtpInput } from '@syncfusion/ej2-inputs';
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
private
|
|
18
|
-
private
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { OtpInput } from '@syncfusion/ej2-inputs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare const inputs: string[];
|
|
6
|
+
export declare const outputs: string[];
|
|
7
|
+
export declare const twoWays: string[];
|
|
8
|
+
/**
|
|
9
|
+
* Represents the EJ2 Angular OtpInput Component.
|
|
10
|
+
* ```html
|
|
11
|
+
* <div ejs-otpinput [value]='value'></div>
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export declare class OtpInputComponent extends OtpInput implements IComponentBase {
|
|
15
|
+
private ngEle;
|
|
16
|
+
private srenderer;
|
|
17
|
+
private viewContainerRef;
|
|
18
|
+
private injector;
|
|
19
|
+
private cdr;
|
|
20
|
+
formCompContext: any;
|
|
21
|
+
formContext: any;
|
|
22
|
+
tagObjects: any;
|
|
23
|
+
blur: any;
|
|
24
|
+
created: any;
|
|
25
|
+
focus: any;
|
|
26
|
+
input: any;
|
|
27
|
+
valueChanged: any;
|
|
28
|
+
valueChange: any;
|
|
29
|
+
private skipFromEvent;
|
|
30
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
|
|
31
|
+
registerOnChange(registerFunction: (_: any) => void): void;
|
|
32
|
+
registerOnTouched(registerFunction: () => void): void;
|
|
33
|
+
writeValue(value: any): void;
|
|
34
|
+
setDisabledState(disabled: boolean): void;
|
|
35
|
+
ngOnInit(): void;
|
|
36
|
+
ngAfterViewInit(): void;
|
|
37
|
+
ngOnDestroy(): void;
|
|
38
|
+
ngAfterContentChecked(): void;
|
|
39
|
+
registerEvents: (eventList: string[]) => void;
|
|
40
|
+
addTwoWay: (propList: string[]) => void;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OtpInputComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OtpInputComponent, "[ejs-otpinput]", never, { "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"; }, { "blur": "blur"; "created": "created"; "focus": "focus"; "input": "input"; "valueChanged": "valueChanged"; "valueChange": "valueChange"; }, never, never>;
|
|
43
|
+
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./otpinput.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the OtpInput component.
|
|
6
|
+
*/
|
|
7
|
+
export declare class OtpInputModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OtpInputModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<OtpInputModule, [typeof i1.OtpInputComponent], [typeof i2.CommonModule], [typeof i1.OtpInputComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<OtpInputModule>;
|
|
11
|
+
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./rating.module";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the Rating component with providers.
|
|
6
|
+
*/
|
|
7
|
+
export declare class RatingAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RatingAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RatingAllModule, never, [typeof i1.CommonModule, typeof i2.RatingModule], [typeof i2.RatingModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<RatingAllModule>;
|
|
11
|
+
}
|