@syncfusion/ej2-angular-inputs 30.1.37-ngcc → 30.1.38-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.
Files changed (50) hide show
  1. package/@syncfusion/ej2-angular-inputs.es5.js +2468 -2468
  2. package/@syncfusion/ej2-angular-inputs.js +2236 -2236
  3. package/dist/ej2-angular-inputs.umd.js +2458 -2458
  4. package/dist/ej2-angular-inputs.umd.min.js +1 -1
  5. package/ej2-angular-inputs.d.ts +16 -16
  6. package/{LICENSE → license} +10 -10
  7. package/package.json +45 -14
  8. package/public_api.d.ts +1 -1
  9. package/schematics/utils/lib-details.d.ts +2 -2
  10. package/schematics/utils/lib-details.js +2 -2
  11. package/schematics/utils/lib-details.ts +4 -4
  12. package/src/color-picker/colorpicker-all.module.d.ts +5 -5
  13. package/src/color-picker/colorpicker.component.d.ts +45 -45
  14. package/src/color-picker/colorpicker.module.d.ts +5 -5
  15. package/src/form-validator/form-validator.d.ts +36 -36
  16. package/src/index.d.ts +39 -39
  17. package/src/maskedtextbox/maskedtextbox-all.module.d.ts +5 -5
  18. package/src/maskedtextbox/maskedtextbox.component.d.ts +40 -40
  19. package/src/maskedtextbox/maskedtextbox.module.d.ts +5 -5
  20. package/src/numerictextbox/numerictextbox-all.module.d.ts +5 -5
  21. package/src/numerictextbox/numerictextbox.component.d.ts +40 -40
  22. package/src/numerictextbox/numerictextbox.module.d.ts +5 -5
  23. package/src/otp-input/otpinput-all.module.d.ts +5 -5
  24. package/src/otp-input/otpinput.component.d.ts +40 -40
  25. package/src/otp-input/otpinput.module.d.ts +5 -5
  26. package/src/rating/rating-all.module.d.ts +5 -5
  27. package/src/rating/rating.component.d.ts +86 -86
  28. package/src/rating/rating.module.d.ts +5 -5
  29. package/src/signature/signature-all.module.d.ts +5 -5
  30. package/src/signature/signature.component.d.ts +38 -38
  31. package/src/signature/signature.module.d.ts +5 -5
  32. package/src/slider/slider-all.module.d.ts +5 -5
  33. package/src/slider/slider.component.d.ts +42 -42
  34. package/src/slider/slider.module.d.ts +5 -5
  35. package/src/smart-textarea/smarttextarea-all.module.d.ts +5 -5
  36. package/src/smart-textarea/smarttextarea.component.d.ts +41 -41
  37. package/src/smart-textarea/smarttextarea.module.d.ts +5 -5
  38. package/src/speech-to-text/speechtotext-all.module.d.ts +5 -5
  39. package/src/speech-to-text/speechtotext.component.d.ts +33 -33
  40. package/src/speech-to-text/speechtotext.module.d.ts +5 -5
  41. package/src/textarea/textarea-all.module.d.ts +5 -5
  42. package/src/textarea/textarea.component.d.ts +41 -41
  43. package/src/textarea/textarea.module.d.ts +5 -5
  44. package/src/textbox/textbox-all.module.d.ts +5 -5
  45. package/src/textbox/textbox.component.d.ts +41 -41
  46. package/src/textbox/textbox.module.d.ts +5 -5
  47. package/src/uploader/files.directive.d.ts +41 -41
  48. package/src/uploader/uploader-all.module.d.ts +5 -5
  49. package/src/uploader/uploader.component.d.ts +66 -66
  50. package/src/uploader/uploader.module.d.ts +5 -5
@@ -1,40 +1,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
- export declare const inputs: string[];
5
- export declare const outputs: string[];
6
- export declare const twoWays: string[];
7
- /**
8
- * Represents the EJ2 Angular NumericTextBox Component.
9
- * ```html
10
- * <ej-numerictextbox [value]='value'></ej-numerictextbox>
11
- * ```
12
- */
13
- export declare class NumericTextBoxComponent extends NumericTextBox implements IComponentBase {
14
- private ngEle;
15
- private srenderer;
16
- private viewContainerRef;
17
- private injector;
18
- private cdr;
19
- formCompContext: any;
20
- formContext: any;
21
- tagObjects: any;
22
- blur: any;
23
- change: any;
24
- created: any;
25
- destroyed: any;
26
- focus: any;
27
- valueChange: any;
28
- private skipFromEvent;
29
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
30
- registerOnChange(registerFunction: (_: any) => void): void;
31
- registerOnTouched(registerFunction: () => void): void;
32
- writeValue(value: any): void;
33
- setDisabledState(disabled: boolean): void;
34
- ngOnInit(): void;
35
- ngAfterViewInit(): void;
36
- ngOnDestroy(): void;
37
- ngAfterContentChecked(): void;
38
- registerEvents: (eventList: string[]) => void;
39
- addTwoWay: (propList: string[]) => void;
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
+ export declare const inputs: string[];
5
+ export declare const outputs: string[];
6
+ export declare const twoWays: string[];
7
+ /**
8
+ * Represents the EJ2 Angular NumericTextBox Component.
9
+ * ```html
10
+ * <ej-numerictextbox [value]='value'></ej-numerictextbox>
11
+ * ```
12
+ */
13
+ export declare class NumericTextBoxComponent extends NumericTextBox implements IComponentBase {
14
+ private ngEle;
15
+ private srenderer;
16
+ private viewContainerRef;
17
+ private injector;
18
+ private cdr;
19
+ formCompContext: any;
20
+ formContext: any;
21
+ tagObjects: any;
22
+ blur: any;
23
+ change: any;
24
+ created: any;
25
+ destroyed: any;
26
+ focus: any;
27
+ valueChange: any;
28
+ private skipFromEvent;
29
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
30
+ registerOnChange(registerFunction: (_: any) => void): void;
31
+ registerOnTouched(registerFunction: () => void): void;
32
+ writeValue(value: any): void;
33
+ setDisabledState(disabled: boolean): void;
34
+ ngOnInit(): void;
35
+ ngAfterViewInit(): void;
36
+ ngOnDestroy(): void;
37
+ ngAfterContentChecked(): void;
38
+ registerEvents: (eventList: string[]) => void;
39
+ addTwoWay: (propList: string[]) => void;
40
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the NumericTextBox component.
3
- */
4
- export declare class NumericTextBoxModule {
5
- }
1
+ /**
2
+ * NgModule definition for the NumericTextBox component.
3
+ */
4
+ export declare class NumericTextBoxModule {
5
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the OtpInput component with providers.
3
- */
4
- export declare class OtpInputAllModule {
5
- }
1
+ /**
2
+ * NgModule definition for the OtpInput component with providers.
3
+ */
4
+ export declare class OtpInputAllModule {
5
+ }
@@ -1,40 +1,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
- export declare const inputs: string[];
5
- export declare const outputs: string[];
6
- export declare const twoWays: string[];
7
- /**
8
- * Represents the EJ2 Angular OtpInput Component.
9
- * ```html
10
- * <div ejs-otpinput [value]='value'></div>
11
- * ```
12
- */
13
- export declare class OtpInputComponent extends OtpInput implements IComponentBase {
14
- private ngEle;
15
- private srenderer;
16
- private viewContainerRef;
17
- private injector;
18
- private cdr;
19
- formCompContext: any;
20
- formContext: any;
21
- tagObjects: any;
22
- blur: any;
23
- created: any;
24
- focus: any;
25
- input: any;
26
- valueChanged: any;
27
- valueChange: any;
28
- private skipFromEvent;
29
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
30
- registerOnChange(registerFunction: (_: any) => void): void;
31
- registerOnTouched(registerFunction: () => void): void;
32
- writeValue(value: any): void;
33
- setDisabledState(disabled: boolean): void;
34
- ngOnInit(): void;
35
- ngAfterViewInit(): void;
36
- ngOnDestroy(): void;
37
- ngAfterContentChecked(): void;
38
- registerEvents: (eventList: string[]) => void;
39
- addTwoWay: (propList: string[]) => void;
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
+ export declare const inputs: string[];
5
+ export declare const outputs: string[];
6
+ export declare const twoWays: string[];
7
+ /**
8
+ * Represents the EJ2 Angular OtpInput Component.
9
+ * ```html
10
+ * <div ejs-otpinput [value]='value'></div>
11
+ * ```
12
+ */
13
+ export declare class OtpInputComponent extends OtpInput implements IComponentBase {
14
+ private ngEle;
15
+ private srenderer;
16
+ private viewContainerRef;
17
+ private injector;
18
+ private cdr;
19
+ formCompContext: any;
20
+ formContext: any;
21
+ tagObjects: any;
22
+ blur: any;
23
+ created: any;
24
+ focus: any;
25
+ input: any;
26
+ valueChanged: any;
27
+ valueChange: any;
28
+ private skipFromEvent;
29
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
30
+ registerOnChange(registerFunction: (_: any) => void): void;
31
+ registerOnTouched(registerFunction: () => void): void;
32
+ writeValue(value: any): void;
33
+ setDisabledState(disabled: boolean): void;
34
+ ngOnInit(): void;
35
+ ngAfterViewInit(): void;
36
+ ngOnDestroy(): void;
37
+ ngAfterContentChecked(): void;
38
+ registerEvents: (eventList: string[]) => void;
39
+ addTwoWay: (propList: string[]) => void;
40
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the OtpInput component.
3
- */
4
- export declare class OtpInputModule {
5
- }
1
+ /**
2
+ * NgModule definition for the OtpInput component.
3
+ */
4
+ export declare class OtpInputModule {
5
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Rating component with providers.
3
- */
4
- export declare class RatingAllModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Rating component with providers.
3
+ */
4
+ export declare class RatingAllModule {
5
+ }
@@ -1,86 +1,86 @@
1
- import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { Rating } from '@syncfusion/ej2-inputs';
4
- export declare const inputs: string[];
5
- export declare const outputs: string[];
6
- export declare const twoWays: string[];
7
- /**
8
- * Represents the EJ2 Angular Rating Component.
9
- * ```html
10
- * <input ejs-rating [value]='value' />
11
- * ```
12
- */
13
- export declare class RatingComponent extends Rating implements IComponentBase {
14
- private ngEle;
15
- private srenderer;
16
- private viewContainerRef;
17
- private injector;
18
- private cdr;
19
- formCompContext: any;
20
- formContext: any;
21
- tagObjects: any;
22
- beforeItemRender: any;
23
- created: any;
24
- onItemHover: any;
25
- valueChanged: any;
26
- valueChange: any;
27
- /**
28
- * Defines the template that defines the appearance of each rated item in a rating component.
29
- *
30
- * {% codeBlock src='rating/fullTemplate/index.md' %}{% endcodeBlock %}
31
- *
32
- * @default ''
33
- * @angulartype string | object
34
- * @reacttype string | function | JSX.Element
35
- * @vuetype string | function
36
- * @asptype string
37
- */
38
- fullTemplate: any;
39
- /**
40
- * Defines the template that defines the appearance of each un-rated item in a rating component.
41
- * @default ''
42
- * @angulartype string | object
43
- * @reacttype string | function | JSX.Element
44
- * @vuetype string | function
45
- * @asptype string
46
- */
47
- emptyTemplate: any;
48
- /**
49
- * Defines the template that used as tooltip content over default tooltip content of the rating.
50
- * The current value of rating passed as context to build the content.
51
- *
52
- * {% codeBlock src='rating/tooltipTemplate/index.md' %}{% endcodeBlock %}
53
- *
54
- * @default ''
55
- * @angulartype string | object
56
- * @reacttype string | function | JSX.Element
57
- * @vuetype string | function
58
- * @asptype string
59
- */
60
- tooltipTemplate: any;
61
- /**
62
- * Defines the template that used as label over default label of the rating. The current value of rating passed as context to build the content.
63
- *
64
- * {% codeBlock src='rating/labelTemplate/index.md' %}{% endcodeBlock %}
65
- *
66
- * @default ''
67
- * @angulartype string | object
68
- * @reacttype string | function | JSX.Element
69
- * @vuetype string | function
70
- * @asptype string
71
- */
72
- labelTemplate: any;
73
- focus: any;
74
- blur: any;
75
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
76
- registerOnChange(registerFunction: (_: any) => void): void;
77
- registerOnTouched(registerFunction: () => void): void;
78
- writeValue(value: any): void;
79
- setDisabledState(disabled: boolean): void;
80
- ngOnInit(): void;
81
- ngAfterViewInit(): void;
82
- ngOnDestroy(): void;
83
- ngAfterContentChecked(): void;
84
- registerEvents: (eventList: string[]) => void;
85
- addTwoWay: (propList: string[]) => void;
86
- }
1
+ import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { Rating } from '@syncfusion/ej2-inputs';
4
+ export declare const inputs: string[];
5
+ export declare const outputs: string[];
6
+ export declare const twoWays: string[];
7
+ /**
8
+ * Represents the EJ2 Angular Rating Component.
9
+ * ```html
10
+ * <input ejs-rating [value]='value' />
11
+ * ```
12
+ */
13
+ export declare class RatingComponent extends Rating implements IComponentBase {
14
+ private ngEle;
15
+ private srenderer;
16
+ private viewContainerRef;
17
+ private injector;
18
+ private cdr;
19
+ formCompContext: any;
20
+ formContext: any;
21
+ tagObjects: any;
22
+ beforeItemRender: any;
23
+ created: any;
24
+ onItemHover: any;
25
+ valueChanged: any;
26
+ valueChange: any;
27
+ /**
28
+ * Defines the template that defines the appearance of each rated item in a rating component.
29
+ *
30
+ * {% codeBlock src='rating/fullTemplate/index.md' %}{% endcodeBlock %}
31
+ *
32
+ * @default ''
33
+ * @angulartype string | object
34
+ * @reacttype string | function | JSX.Element
35
+ * @vuetype string | function
36
+ * @asptype string
37
+ */
38
+ fullTemplate: any;
39
+ /**
40
+ * Defines the template that defines the appearance of each un-rated item in a rating component.
41
+ * @default ''
42
+ * @angulartype string | object
43
+ * @reacttype string | function | JSX.Element
44
+ * @vuetype string | function
45
+ * @asptype string
46
+ */
47
+ emptyTemplate: any;
48
+ /**
49
+ * Defines the template that used as tooltip content over default tooltip content of the rating.
50
+ * The current value of rating passed as context to build the content.
51
+ *
52
+ * {% codeBlock src='rating/tooltipTemplate/index.md' %}{% endcodeBlock %}
53
+ *
54
+ * @default ''
55
+ * @angulartype string | object
56
+ * @reacttype string | function | JSX.Element
57
+ * @vuetype string | function
58
+ * @asptype string
59
+ */
60
+ tooltipTemplate: any;
61
+ /**
62
+ * Defines the template that used as label over default label of the rating. The current value of rating passed as context to build the content.
63
+ *
64
+ * {% codeBlock src='rating/labelTemplate/index.md' %}{% endcodeBlock %}
65
+ *
66
+ * @default ''
67
+ * @angulartype string | object
68
+ * @reacttype string | function | JSX.Element
69
+ * @vuetype string | function
70
+ * @asptype string
71
+ */
72
+ labelTemplate: any;
73
+ focus: any;
74
+ blur: any;
75
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
76
+ registerOnChange(registerFunction: (_: any) => void): void;
77
+ registerOnTouched(registerFunction: () => void): void;
78
+ writeValue(value: any): void;
79
+ setDisabledState(disabled: boolean): void;
80
+ ngOnInit(): void;
81
+ ngAfterViewInit(): void;
82
+ ngOnDestroy(): void;
83
+ ngAfterContentChecked(): void;
84
+ registerEvents: (eventList: string[]) => void;
85
+ addTwoWay: (propList: string[]) => void;
86
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Rating component.
3
- */
4
- export declare class RatingModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Rating component.
3
+ */
4
+ export declare class RatingModule {
5
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Signature component with providers.
3
- */
4
- export declare class SignatureAllModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Signature component with providers.
3
+ */
4
+ export declare class SignatureAllModule {
5
+ }
@@ -1,38 +1,38 @@
1
- import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { Signature } from '@syncfusion/ej2-inputs';
4
- export declare const inputs: string[];
5
- export declare const outputs: string[];
6
- export declare const twoWays: string[];
7
- /**
8
- * Represents the EJ2 Angular Signature Component.
9
- * ```html
10
- * <canvas ejs-signature />
11
- * ```
12
- */
13
- export declare class SignatureComponent extends Signature implements IComponentBase {
14
- private ngEle;
15
- private srenderer;
16
- private viewContainerRef;
17
- private injector;
18
- private cdr;
19
- formCompContext: any;
20
- formContext: any;
21
- tagObjects: any;
22
- beforeSave: any;
23
- change: any;
24
- created: any;
25
- focus: any;
26
- blur: any;
27
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
28
- registerOnChange(registerFunction: (_: any) => void): void;
29
- registerOnTouched(registerFunction: () => void): void;
30
- writeValue(value: any): void;
31
- setDisabledState(disabled: boolean): void;
32
- ngOnInit(): void;
33
- ngAfterViewInit(): void;
34
- ngOnDestroy(): void;
35
- ngAfterContentChecked(): void;
36
- registerEvents: (eventList: string[]) => void;
37
- addTwoWay: (propList: string[]) => void;
38
- }
1
+ import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { Signature } from '@syncfusion/ej2-inputs';
4
+ export declare const inputs: string[];
5
+ export declare const outputs: string[];
6
+ export declare const twoWays: string[];
7
+ /**
8
+ * Represents the EJ2 Angular Signature Component.
9
+ * ```html
10
+ * <canvas ejs-signature />
11
+ * ```
12
+ */
13
+ export declare class SignatureComponent extends Signature implements IComponentBase {
14
+ private ngEle;
15
+ private srenderer;
16
+ private viewContainerRef;
17
+ private injector;
18
+ private cdr;
19
+ formCompContext: any;
20
+ formContext: any;
21
+ tagObjects: any;
22
+ beforeSave: any;
23
+ change: any;
24
+ created: any;
25
+ focus: any;
26
+ blur: any;
27
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef);
28
+ registerOnChange(registerFunction: (_: any) => void): void;
29
+ registerOnTouched(registerFunction: () => void): void;
30
+ writeValue(value: any): void;
31
+ setDisabledState(disabled: boolean): void;
32
+ ngOnInit(): void;
33
+ ngAfterViewInit(): void;
34
+ ngOnDestroy(): void;
35
+ ngAfterContentChecked(): void;
36
+ registerEvents: (eventList: string[]) => void;
37
+ addTwoWay: (propList: string[]) => void;
38
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Signature component.
3
- */
4
- export declare class SignatureModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Signature component.
3
+ */
4
+ export declare class SignatureModule {
5
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Slider component with providers.
3
- */
4
- export declare class SliderAllModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Slider component with providers.
3
+ */
4
+ export declare class SliderAllModule {
5
+ }
@@ -1,42 +1,42 @@
1
- import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { Slider } from '@syncfusion/ej2-inputs';
4
- export declare const inputs: string[];
5
- export declare const outputs: string[];
6
- export declare const twoWays: string[];
7
- /**
8
- * Represents the EJ2 Angular Slider Component.
9
- * ```html
10
- * <ejs-slider [value]='value'></ejs-slider>
11
- * ```
12
- */
13
- export declare class SliderComponent extends Slider implements IComponentBase {
14
- private ngEle;
15
- private srenderer;
16
- private viewContainerRef;
17
- private injector;
18
- private cdr;
19
- formCompContext: any;
20
- formContext: any;
21
- tagObjects: any;
22
- change: any;
23
- changed: any;
24
- created: any;
25
- renderedTicks: any;
26
- renderingTicks: any;
27
- tooltipChange: any;
28
- valueChange: any;
29
- focus: any;
30
- blur: any;
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
- }
1
+ import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { Slider } from '@syncfusion/ej2-inputs';
4
+ export declare const inputs: string[];
5
+ export declare const outputs: string[];
6
+ export declare const twoWays: string[];
7
+ /**
8
+ * Represents the EJ2 Angular Slider Component.
9
+ * ```html
10
+ * <ejs-slider [value]='value'></ejs-slider>
11
+ * ```
12
+ */
13
+ export declare class SliderComponent extends Slider implements IComponentBase {
14
+ private ngEle;
15
+ private srenderer;
16
+ private viewContainerRef;
17
+ private injector;
18
+ private cdr;
19
+ formCompContext: any;
20
+ formContext: any;
21
+ tagObjects: any;
22
+ change: any;
23
+ changed: any;
24
+ created: any;
25
+ renderedTicks: any;
26
+ renderingTicks: any;
27
+ tooltipChange: any;
28
+ valueChange: any;
29
+ focus: any;
30
+ blur: any;
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
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Slider component.
3
- */
4
- export declare class SliderModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Slider component.
3
+ */
4
+ export declare class SliderModule {
5
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the SmartTextArea component with providers.
3
- */
4
- export declare class SmartTextAreaAllModule {
5
- }
1
+ /**
2
+ * NgModule definition for the SmartTextArea component with providers.
3
+ */
4
+ export declare class SmartTextAreaAllModule {
5
+ }