@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
|
@@ -1,33 +1,36 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { SpeechToText } 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
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { SpeechToText } 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 SpeechToText Component.
|
|
10
|
+
* ```html
|
|
11
|
+
* <button ejs-speechtotext ></button>
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export declare class SpeechToTextComponent extends SpeechToText implements IComponentBase {
|
|
15
|
+
private ngEle;
|
|
16
|
+
private srenderer;
|
|
17
|
+
private viewContainerRef;
|
|
18
|
+
private injector;
|
|
19
|
+
containerContext: any;
|
|
20
|
+
tagObjects: any;
|
|
21
|
+
created: any;
|
|
22
|
+
onError: any;
|
|
23
|
+
onStart: any;
|
|
24
|
+
onStop: any;
|
|
25
|
+
transcriptChanged: any;
|
|
26
|
+
transcriptChange: any;
|
|
27
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
28
|
+
ngOnInit(): void;
|
|
29
|
+
ngAfterViewInit(): void;
|
|
30
|
+
ngOnDestroy(): void;
|
|
31
|
+
ngAfterContentChecked(): void;
|
|
32
|
+
registerEvents: (eventList: string[]) => void;
|
|
33
|
+
addTwoWay: (propList: string[]) => void;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SpeechToTextComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SpeechToTextComponent, "[ejs-speechtotext]", never, { "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"; }, { "created": "created"; "onError": "onError"; "onStart": "onStart"; "onStop": "onStop"; "transcriptChanged": "transcriptChanged"; "transcriptChange": "transcriptChange"; }, never, ["*"]>;
|
|
36
|
+
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./speechtotext.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the SpeechToText component.
|
|
6
|
+
*/
|
|
7
|
+
export declare class SpeechToTextModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SpeechToTextModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SpeechToTextModule, [typeof i1.SpeechToTextComponent], [typeof i2.CommonModule], [typeof i1.SpeechToTextComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SpeechToTextModule>;
|
|
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 "./textarea.module";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the TextArea component with providers.
|
|
6
|
+
*/
|
|
7
|
+
export declare class TextAreaAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TextAreaAllModule, never, [typeof i1.CommonModule, typeof i2.TextAreaModule], [typeof i2.TextAreaModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TextAreaAllModule>;
|
|
11
|
+
}
|
|
@@ -1,41 +1,44 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { TextArea } 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
|
-
|
|
41
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { TextArea } 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 TextArea Component.
|
|
10
|
+
* ```html
|
|
11
|
+
* <ejs-textarea [value]='value'></ejs-textarea>
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export declare class TextAreaComponent extends TextArea 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
|
+
input: any;
|
|
29
|
+
valueChange: any;
|
|
30
|
+
private skipFromEvent;
|
|
31
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
|
|
32
|
+
registerOnChange(registerFunction: (_: any) => void): void;
|
|
33
|
+
registerOnTouched(registerFunction: () => void): void;
|
|
34
|
+
writeValue(value: any): void;
|
|
35
|
+
setDisabledState(disabled: boolean): void;
|
|
36
|
+
ngOnInit(): void;
|
|
37
|
+
ngAfterViewInit(): void;
|
|
38
|
+
ngOnDestroy(): void;
|
|
39
|
+
ngAfterContentChecked(): void;
|
|
40
|
+
registerEvents: (eventList: string[]) => void;
|
|
41
|
+
addTwoWay: (propList: string[]) => void;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "ejs-textarea", never, { "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"; }, { "blur": "blur"; "change": "change"; "created": "created"; "destroyed": "destroyed"; "focus": "focus"; "input": "input"; "valueChange": "valueChange"; }, never, never>;
|
|
44
|
+
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./textarea.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the TextArea component.
|
|
6
|
+
*/
|
|
7
|
+
export declare class TextAreaModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TextAreaModule, [typeof i1.TextAreaComponent], [typeof i2.CommonModule], [typeof i1.TextAreaComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TextAreaModule>;
|
|
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 "./textbox.module";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the TextBox component with providers.
|
|
6
|
+
*/
|
|
7
|
+
export declare class TextBoxAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextBoxAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TextBoxAllModule, never, [typeof i1.CommonModule, typeof i2.TextBoxModule], [typeof i2.TextBoxModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TextBoxAllModule>;
|
|
11
|
+
}
|
|
@@ -1,41 +1,44 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { TextBox } 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
|
-
|
|
41
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { TextBox } 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 TextBox Component.
|
|
10
|
+
* ```html
|
|
11
|
+
* <ejs-textbox [value]='value'></ejs-textbox>
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export declare class TextBoxComponent extends TextBox 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
|
+
input: any;
|
|
29
|
+
valueChange: any;
|
|
30
|
+
private skipFromEvent;
|
|
31
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
|
|
32
|
+
registerOnChange(registerFunction: (_: any) => void): void;
|
|
33
|
+
registerOnTouched(registerFunction: () => void): void;
|
|
34
|
+
writeValue(value: any): void;
|
|
35
|
+
setDisabledState(disabled: boolean): void;
|
|
36
|
+
ngOnInit(): void;
|
|
37
|
+
ngAfterViewInit(): void;
|
|
38
|
+
ngOnDestroy(): void;
|
|
39
|
+
ngAfterContentChecked(): void;
|
|
40
|
+
registerEvents: (eventList: string[]) => void;
|
|
41
|
+
addTwoWay: (propList: string[]) => void;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextBoxComponent, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextBoxComponent, "ejs-textbox", never, { "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"; }, { "blur": "blur"; "change": "change"; "created": "created"; "destroyed": "destroyed"; "focus": "focus"; "input": "input"; "valueChange": "valueChange"; }, never, never>;
|
|
44
|
+
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./textbox.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the TextBox component.
|
|
6
|
+
*/
|
|
7
|
+
export declare class TextBoxModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextBoxModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TextBoxModule, [typeof i1.TextBoxComponent], [typeof i2.CommonModule], [typeof i1.TextBoxComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TextBoxModule>;
|
|
11
|
+
}
|
|
@@ -1,41 +1,46 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* <e-file name='
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
*
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
*
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
*
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* 'e-files' directive represent a file of angular uploader
|
|
6
|
+
* It must be contained in a Uploader component(`ejs-uploader`).
|
|
7
|
+
* ```html
|
|
8
|
+
* <ejs-uploader id='fileupload' multiple=true>
|
|
9
|
+
* <e-files>
|
|
10
|
+
* <e-file name='Java' size=23000 type='pdf'></e-file>
|
|
11
|
+
* <e-file name='C++' size=30000 type='.docx'></e-file>
|
|
12
|
+
* </e-files>
|
|
13
|
+
* </ejs-uploader>
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare class UploadedFilesDirective extends ComplexBase<UploadedFilesDirective> {
|
|
17
|
+
private viewContainerRef;
|
|
18
|
+
directivePropList: any;
|
|
19
|
+
/**
|
|
20
|
+
* Specifies the type of the file
|
|
21
|
+
* @default ''
|
|
22
|
+
*/
|
|
23
|
+
type: any;
|
|
24
|
+
/**
|
|
25
|
+
* Specifies the name of the file
|
|
26
|
+
* @default ''
|
|
27
|
+
*/
|
|
28
|
+
name: any;
|
|
29
|
+
/**
|
|
30
|
+
* Specifies the size of the file
|
|
31
|
+
* @default null
|
|
32
|
+
*/
|
|
33
|
+
size: any;
|
|
34
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UploadedFilesDirective, never>;
|
|
36
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<UploadedFilesDirective, "e-files>e-uploadedfiles", never, { "name": "name"; "size": "size"; "type": "type"; }, {}, never>;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* UploadedFiles Array Directive
|
|
40
|
+
* @private
|
|
41
|
+
*/
|
|
42
|
+
export declare class FilesDirective extends ArrayBase<FilesDirective> {
|
|
43
|
+
constructor();
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilesDirective, never>;
|
|
45
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FilesDirective, "ejs-uploader>e-files", never, {}, {}, ["children"]>;
|
|
46
|
+
}
|
|
@@ -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 "./uploader.module";
|
|
4
|
+
/**
|
|
5
|
+
* NgModule definition for the Uploader component with providers.
|
|
6
|
+
*/
|
|
7
|
+
export declare class UploaderAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UploaderAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UploaderAllModule, never, [typeof i1.CommonModule, typeof i2.UploaderModule], [typeof i2.UploaderModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<UploaderAllModule>;
|
|
11
|
+
}
|
|
@@ -1,66 +1,69 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { Uploader } 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
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
* @
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { Uploader } 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 Uploader Component.
|
|
10
|
+
* ```html
|
|
11
|
+
* <ejs-uploader></ejs-uploader>
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export declare class UploaderComponent extends Uploader 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
|
+
actionComplete: any;
|
|
24
|
+
beforeRemove: any;
|
|
25
|
+
beforeUpload: any;
|
|
26
|
+
canceling: any;
|
|
27
|
+
change: any;
|
|
28
|
+
chunkFailure: any;
|
|
29
|
+
chunkSuccess: any;
|
|
30
|
+
chunkUploading: any;
|
|
31
|
+
clearing: any;
|
|
32
|
+
created: any;
|
|
33
|
+
failure: any;
|
|
34
|
+
fileListRendering: any;
|
|
35
|
+
pausing: any;
|
|
36
|
+
progress: any;
|
|
37
|
+
removing: any;
|
|
38
|
+
rendering: any;
|
|
39
|
+
resuming: any;
|
|
40
|
+
selected: any;
|
|
41
|
+
success: any;
|
|
42
|
+
uploading: any;
|
|
43
|
+
childFiles: any;
|
|
44
|
+
tags: string[];
|
|
45
|
+
/**
|
|
46
|
+
* Specifies the HTML string that used to customize the content of each file in the list.
|
|
47
|
+
*
|
|
48
|
+
* > For more information, refer to the [template](../../uploader/template/) section from the documentation.
|
|
49
|
+
*
|
|
50
|
+
* @default null
|
|
51
|
+
* @asptype string
|
|
52
|
+
*/
|
|
53
|
+
template: any;
|
|
54
|
+
focus: any;
|
|
55
|
+
blur: any;
|
|
56
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
|
|
57
|
+
registerOnChange(registerFunction: (_: any) => void): void;
|
|
58
|
+
registerOnTouched(registerFunction: () => void): void;
|
|
59
|
+
writeValue(value: any): void;
|
|
60
|
+
setDisabledState(disabled: boolean): void;
|
|
61
|
+
ngOnInit(): void;
|
|
62
|
+
ngAfterViewInit(): void;
|
|
63
|
+
ngOnDestroy(): void;
|
|
64
|
+
ngAfterContentChecked(): void;
|
|
65
|
+
registerEvents: (eventList: string[]) => void;
|
|
66
|
+
addTwoWay: (propList: string[]) => void;
|
|
67
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UploaderComponent, never>;
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UploaderComponent, "ejs-uploader", never, { "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"; }, { "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"; }, ["template", "childFiles"], never>;
|
|
69
|
+
}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./uploader.component";
|
|
3
|
+
import * as i2 from "./files.directive";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
/**
|
|
6
|
+
* NgModule definition for the Uploader component.
|
|
7
|
+
*/
|
|
8
|
+
export declare class UploaderModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UploaderModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UploaderModule, [typeof i1.UploaderComponent, typeof i2.UploadedFilesDirective, typeof i2.FilesDirective], [typeof i3.CommonModule], [typeof i1.UploaderComponent, typeof i2.UploadedFilesDirective, typeof i2.FilesDirective]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<UploaderModule>;
|
|
12
|
+
}
|