@syncfusion/ej2-angular-inputs 27.2.2-ngcc → 27.2.2
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 +1576 -0
- 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 +37 -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/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 +1597 -0
- package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-inputs.mjs +1597 -0
- package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -0
- package/package.json +24 -11
- package/src/color-picker/colorpicker-all.module.d.ts +6 -0
- package/src/color-picker/colorpicker.component.d.ts +3 -0
- package/src/color-picker/colorpicker.module.d.ts +6 -0
- package/src/maskedtextbox/maskedtextbox-all.module.d.ts +6 -0
- package/src/maskedtextbox/maskedtextbox.component.d.ts +3 -0
- package/src/maskedtextbox/maskedtextbox.module.d.ts +6 -0
- package/src/numerictextbox/numerictextbox-all.module.d.ts +6 -0
- package/src/numerictextbox/numerictextbox.component.d.ts +3 -0
- package/src/numerictextbox/numerictextbox.module.d.ts +6 -0
- package/src/otp-input/otpinput-all.module.d.ts +6 -0
- package/src/otp-input/otpinput.component.d.ts +3 -0
- package/src/otp-input/otpinput.module.d.ts +6 -0
- package/src/rating/rating-all.module.d.ts +6 -0
- package/src/rating/rating.component.d.ts +3 -0
- package/src/rating/rating.module.d.ts +6 -0
- package/src/signature/signature-all.module.d.ts +6 -0
- package/src/signature/signature.component.d.ts +3 -0
- package/src/signature/signature.module.d.ts +6 -0
- package/src/slider/slider-all.module.d.ts +6 -0
- package/src/slider/slider.component.d.ts +3 -0
- package/src/slider/slider.module.d.ts +6 -0
- package/src/smart-textarea/smarttextarea-all.module.d.ts +6 -0
- package/src/smart-textarea/smarttextarea.component.d.ts +3 -0
- package/src/smart-textarea/smarttextarea.module.d.ts +6 -0
- package/src/textarea/textarea-all.module.d.ts +6 -0
- package/src/textarea/textarea.component.d.ts +3 -0
- package/src/textarea/textarea.module.d.ts +6 -0
- package/src/textbox/textbox-all.module.d.ts +6 -0
- package/src/textbox/textbox.component.d.ts +3 -0
- package/src/textbox/textbox.module.d.ts +6 -0
- package/src/uploader/files.directive.d.ts +5 -0
- package/src/uploader/uploader-all.module.d.ts +6 -0
- package/src/uploader/uploader.component.d.ts +3 -0
- package/src/uploader/uploader.module.d.ts +7 -0
- package/syncfusion-ej2-angular-inputs.d.ts +5 -0
- package/@syncfusion/ej2-angular-inputs.es5.js +0 -2328
- package/@syncfusion/ej2-angular-inputs.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-inputs.js +0 -2193
- package/@syncfusion/ej2-angular-inputs.js.map +0 -1
- package/dist/ej2-angular-inputs.umd.js +0 -2438
- 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 -15
- package/ej2-angular-inputs.metadata.json +0 -1
- package/license +0 -10
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./signature.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the Signature component.
|
|
3
6
|
*/
|
|
4
7
|
export declare class SignatureModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SignatureModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SignatureModule, [typeof i1.SignatureComponent], [typeof i2.CommonModule], [typeof i1.SignatureComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SignatureModule>;
|
|
5
11
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./slider.module";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the Slider component with providers.
|
|
3
6
|
*/
|
|
4
7
|
export declare class SliderAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SliderAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SliderAllModule, never, [typeof i1.CommonModule, typeof i2.SliderModule], [typeof i2.SliderModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SliderAllModule>;
|
|
5
11
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { Slider } from '@syncfusion/ej2-inputs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare const inputs: string[];
|
|
5
6
|
export declare const outputs: string[];
|
|
6
7
|
export declare const twoWays: string[];
|
|
@@ -39,4 +40,6 @@ export declare class SliderComponent extends Slider implements IComponentBase {
|
|
|
39
40
|
ngAfterContentChecked(): void;
|
|
40
41
|
registerEvents: (eventList: string[]) => void;
|
|
41
42
|
addTwoWay: (propList: string[]) => void;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SliderComponent, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SliderComponent, "ejs-slider", never, { "colorRange": "colorRange"; "cssClass": "cssClass"; "customValues": "customValues"; "enableAnimation": "enableAnimation"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enabled": "enabled"; "limits": "limits"; "locale": "locale"; "max": "max"; "min": "min"; "orientation": "orientation"; "readonly": "readonly"; "showButtons": "showButtons"; "step": "step"; "ticks": "ticks"; "tooltip": "tooltip"; "type": "type"; "value": "value"; "width": "width"; }, { "focus": "focus"; "blur": "blur"; "change": "change"; "changed": "changed"; "created": "created"; "renderedTicks": "renderedTicks"; "renderingTicks": "renderingTicks"; "tooltipChange": "tooltipChange"; "valueChange": "valueChange"; }, never, never>;
|
|
42
45
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./slider.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the Slider component.
|
|
3
6
|
*/
|
|
4
7
|
export declare class SliderModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SliderModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SliderModule, [typeof i1.SliderComponent], [typeof i2.CommonModule], [typeof i1.SliderComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SliderModule>;
|
|
5
11
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./smarttextarea.module";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the SmartTextArea component with providers.
|
|
3
6
|
*/
|
|
4
7
|
export declare class SmartTextAreaAllModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmartTextAreaAllModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartTextAreaAllModule, never, [typeof i1.CommonModule, typeof i2.SmartTextAreaModule], [typeof i2.SmartTextAreaModule]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SmartTextAreaAllModule>;
|
|
5
11
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { SmartTextArea } from '@syncfusion/ej2-inputs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare const inputs: string[];
|
|
5
6
|
export declare const outputs: string[];
|
|
6
7
|
export declare const twoWays: string[];
|
|
@@ -38,4 +39,6 @@ export declare class SmartTextAreaComponent extends SmartTextArea implements ICo
|
|
|
38
39
|
ngAfterContentChecked(): void;
|
|
39
40
|
registerEvents: (eventList: string[]) => void;
|
|
40
41
|
addTwoWay: (propList: string[]) => void;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmartTextAreaComponent, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartTextAreaComponent, "ejs-smarttextarea", never, { "UserPhrases": "UserPhrases"; "aiSuggestionHandler": "aiSuggestionHandler"; "cols": "cols"; "cssClass": "cssClass"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enabled": "enabled"; "floatLabelType": "floatLabelType"; "htmlAttributes": "htmlAttributes"; "locale": "locale"; "maxLength": "maxLength"; "placeholder": "placeholder"; "readonly": "readonly"; "resizeMode": "resizeMode"; "rows": "rows"; "showClearButton": "showClearButton"; "showSuggestionOnPopup": "showSuggestionOnPopup"; "userRole": "userRole"; "value": "value"; "width": "width"; }, { "blur": "blur"; "change": "change"; "created": "created"; "destroyed": "destroyed"; "focus": "focus"; "input": "input"; "valueChange": "valueChange"; }, never, never>;
|
|
41
44
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./smarttextarea.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the SmartTextArea component.
|
|
3
6
|
*/
|
|
4
7
|
export declare class SmartTextAreaModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SmartTextAreaModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartTextAreaModule, [typeof i1.SmartTextAreaComponent], [typeof i2.CommonModule], [typeof i1.SmartTextAreaComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SmartTextAreaModule>;
|
|
5
11
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./textarea.module";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the TextArea component with providers.
|
|
3
6
|
*/
|
|
4
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>;
|
|
5
11
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { TextArea } from '@syncfusion/ej2-inputs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare const inputs: string[];
|
|
5
6
|
export declare const outputs: string[];
|
|
6
7
|
export declare const twoWays: string[];
|
|
@@ -38,4 +39,6 @@ export declare class TextAreaComponent extends TextArea implements IComponentBas
|
|
|
38
39
|
ngAfterContentChecked(): void;
|
|
39
40
|
registerEvents: (eventList: string[]) => void;
|
|
40
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>;
|
|
41
44
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./textarea.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the TextArea component.
|
|
3
6
|
*/
|
|
4
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>;
|
|
5
11
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./textbox.module";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the TextBox component with providers.
|
|
3
6
|
*/
|
|
4
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>;
|
|
5
11
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { TextBox } from '@syncfusion/ej2-inputs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare const inputs: string[];
|
|
5
6
|
export declare const outputs: string[];
|
|
6
7
|
export declare const twoWays: string[];
|
|
@@ -38,4 +39,6 @@ export declare class TextBoxComponent extends TextBox implements IComponentBase
|
|
|
38
39
|
ngAfterContentChecked(): void;
|
|
39
40
|
registerEvents: (eventList: string[]) => void;
|
|
40
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>;
|
|
41
44
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./textbox.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the TextBox component.
|
|
3
6
|
*/
|
|
4
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>;
|
|
5
11
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* 'e-files' directive represent a file of angular uploader
|
|
5
6
|
* It must be contained in a Uploader component(`ejs-uploader`).
|
|
@@ -31,6 +32,8 @@ export declare class UploadedFilesDirective extends ComplexBase<UploadedFilesDir
|
|
|
31
32
|
*/
|
|
32
33
|
size: any;
|
|
33
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>;
|
|
34
37
|
}
|
|
35
38
|
/**
|
|
36
39
|
* UploadedFiles Array Directive
|
|
@@ -38,4 +41,6 @@ export declare class UploadedFilesDirective extends ComplexBase<UploadedFilesDir
|
|
|
38
41
|
*/
|
|
39
42
|
export declare class FilesDirective extends ArrayBase<FilesDirective> {
|
|
40
43
|
constructor();
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilesDirective, never>;
|
|
45
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FilesDirective, "ejs-uploader>e-files", never, {}, {}, ["children"]>;
|
|
41
46
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/common";
|
|
3
|
+
import * as i2 from "./uploader.module";
|
|
1
4
|
/**
|
|
2
5
|
* NgModule definition for the Uploader component with providers.
|
|
3
6
|
*/
|
|
4
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>;
|
|
5
11
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
3
|
import { Uploader } from '@syncfusion/ej2-inputs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare const inputs: string[];
|
|
5
6
|
export declare const outputs: string[];
|
|
6
7
|
export declare const twoWays: string[];
|
|
@@ -63,4 +64,6 @@ export declare class UploaderComponent extends Uploader implements IComponentBas
|
|
|
63
64
|
ngAfterContentChecked(): void;
|
|
64
65
|
registerEvents: (eventList: string[]) => void;
|
|
65
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>;
|
|
66
69
|
}
|
|
@@ -1,5 +1,12 @@
|
|
|
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";
|
|
1
5
|
/**
|
|
2
6
|
* NgModule definition for the Uploader component.
|
|
3
7
|
*/
|
|
4
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>;
|
|
5
12
|
}
|