@syncfusion/ej2-angular-spreadsheet 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.
Files changed (48) hide show
  1. package/CHANGELOG.md +1588 -0
  2. package/README.md +9 -2
  3. package/esm2020/public_api.mjs +2 -0
  4. package/esm2020/src/index.mjs +14 -0
  5. package/esm2020/src/spreadsheet/cells.directive.mjs +71 -0
  6. package/esm2020/src/spreadsheet/chart.directive.mjs +46 -0
  7. package/esm2020/src/spreadsheet/columns.directive.mjs +61 -0
  8. package/esm2020/src/spreadsheet/conditionalformats.directive.mjs +61 -0
  9. package/esm2020/src/spreadsheet/definednames.directive.mjs +58 -0
  10. package/esm2020/src/spreadsheet/image.directive.mjs +46 -0
  11. package/esm2020/src/spreadsheet/ranges.directive.mjs +69 -0
  12. package/esm2020/src/spreadsheet/rows.directive.mjs +65 -0
  13. package/esm2020/src/spreadsheet/sheets.directive.mjs +68 -0
  14. package/esm2020/src/spreadsheet/spreadsheet-all.module.mjs +71 -0
  15. package/esm2020/src/spreadsheet/spreadsheet.component.mjs +181 -0
  16. package/esm2020/src/spreadsheet/spreadsheet.module.mjs +106 -0
  17. package/esm2020/syncfusion-ej2-angular-spreadsheet.mjs +5 -0
  18. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +854 -0
  19. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
  20. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +854 -0
  21. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
  22. package/package.json +20 -7
  23. package/public_api.d.ts +1 -1
  24. package/src/index.d.ts +13 -13
  25. package/src/spreadsheet/cells.directive.d.ts +120 -115
  26. package/src/spreadsheet/chart.directive.d.ts +84 -79
  27. package/src/spreadsheet/columns.directive.d.ts +76 -71
  28. package/src/spreadsheet/conditionalformats.directive.d.ts +60 -55
  29. package/src/spreadsheet/definednames.directive.d.ts +54 -49
  30. package/src/spreadsheet/image.directive.d.ts +53 -48
  31. package/src/spreadsheet/ranges.directive.d.ts +73 -68
  32. package/src/spreadsheet/rows.directive.d.ts +74 -69
  33. package/src/spreadsheet/sheets.directive.d.ts +154 -149
  34. package/src/spreadsheet/spreadsheet-all.module.d.ts +27 -21
  35. package/src/spreadsheet/spreadsheet.component.d.ts +72 -69
  36. package/src/spreadsheet/spreadsheet.module.d.ts +20 -5
  37. package/syncfusion-ej2-angular-spreadsheet.d.ts +5 -0
  38. package/@syncfusion/ej2-angular-spreadsheet.es5.js +0 -962
  39. package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +0 -1
  40. package/@syncfusion/ej2-angular-spreadsheet.js +0 -902
  41. package/@syncfusion/ej2-angular-spreadsheet.js.map +0 -1
  42. package/LICENSE +0 -10
  43. package/dist/ej2-angular-spreadsheet.umd.js +0 -1602
  44. package/dist/ej2-angular-spreadsheet.umd.js.map +0 -1
  45. package/dist/ej2-angular-spreadsheet.umd.min.js +0 -11
  46. package/dist/ej2-angular-spreadsheet.umd.min.js.map +0 -1
  47. package/ej2-angular-spreadsheet.d.ts +0 -5
  48. package/ej2-angular-spreadsheet.metadata.json +0 -1
@@ -1,79 +1,84 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- export declare class ChartDirective extends ComplexBase<ChartDirective> {
4
- private viewContainerRef;
5
- directivePropList: any;
6
- /**
7
- * Specifies the type of a chart.
8
- * @default 'Line'
9
- */
10
- type: any;
11
- /**
12
- * The data label for the series.
13
- * @default {}
14
- */
15
- dataLabelSettings: any;
16
- /**
17
- * Specifies the height of the chart.
18
- * @default 290
19
- */
20
- height: any;
21
- /**
22
- * Specifies chart element id.
23
- * @default ''
24
- */
25
- id: any;
26
- /**
27
- * Specifies to switch the row or a column.
28
- * @default false
29
- */
30
- isSeriesInRows: any;
31
- /**
32
- * Options for customizing the legend of the chart.
33
- * @default {}
34
- */
35
- legendSettings: any;
36
- /**
37
- * Options to configure the marker
38
- * @default {}
39
- */
40
- markerSettings: any;
41
- /**
42
- * Options to configure the horizontal axis.
43
- * @default {}
44
- */
45
- primaryXAxis: any;
46
- /**
47
- * Options to configure the vertical axis.
48
- * @default {}
49
- */
50
- primaryYAxis: any;
51
- /**
52
- * Specifies the selected range or specified range.
53
- * @default ''
54
- */
55
- range: any;
56
- /**
57
- * Specifies the theme of a chart.
58
- * @default 'Material'
59
- */
60
- theme: any;
61
- /**
62
- * Title of the chart
63
- * @default ''
64
- */
65
- title: any;
66
- /**
67
- * Specifies the width of the chart.
68
- * @default 480
69
- */
70
- width: any;
71
- constructor(viewContainerRef: ViewContainerRef);
72
- }
73
- /**
74
- * Chart Array Directive
75
- * @private
76
- */
77
- export declare class ChartsDirective extends ArrayBase<ChartsDirective> {
78
- constructor();
79
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ChartDirective extends ComplexBase<ChartDirective> {
5
+ private viewContainerRef;
6
+ directivePropList: any;
7
+ /**
8
+ * Specifies the type of a chart.
9
+ * @default 'Line'
10
+ */
11
+ type: any;
12
+ /**
13
+ * The data label for the series.
14
+ * @default {}
15
+ */
16
+ dataLabelSettings: any;
17
+ /**
18
+ * Specifies the height of the chart.
19
+ * @default 290
20
+ */
21
+ height: any;
22
+ /**
23
+ * Specifies chart element id.
24
+ * @default ''
25
+ */
26
+ id: any;
27
+ /**
28
+ * Specifies to switch the row or a column.
29
+ * @default false
30
+ */
31
+ isSeriesInRows: any;
32
+ /**
33
+ * Options for customizing the legend of the chart.
34
+ * @default {}
35
+ */
36
+ legendSettings: any;
37
+ /**
38
+ * Options to configure the marker
39
+ * @default {}
40
+ */
41
+ markerSettings: any;
42
+ /**
43
+ * Options to configure the horizontal axis.
44
+ * @default {}
45
+ */
46
+ primaryXAxis: any;
47
+ /**
48
+ * Options to configure the vertical axis.
49
+ * @default {}
50
+ */
51
+ primaryYAxis: any;
52
+ /**
53
+ * Specifies the selected range or specified range.
54
+ * @default ''
55
+ */
56
+ range: any;
57
+ /**
58
+ * Specifies the theme of a chart.
59
+ * @default 'Material'
60
+ */
61
+ theme: any;
62
+ /**
63
+ * Title of the chart
64
+ * @default ''
65
+ */
66
+ title: any;
67
+ /**
68
+ * Specifies the width of the chart.
69
+ * @default 480
70
+ */
71
+ width: any;
72
+ constructor(viewContainerRef: ViewContainerRef);
73
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChartDirective, never>;
74
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ChartDirective, "e-charts>e-chart", never, { "dataLabelSettings": "dataLabelSettings"; "height": "height"; "id": "id"; "isSeriesInRows": "isSeriesInRows"; "legendSettings": "legendSettings"; "markerSettings": "markerSettings"; "primaryXAxis": "primaryXAxis"; "primaryYAxis": "primaryYAxis"; "range": "range"; "theme": "theme"; "title": "title"; "type": "type"; "width": "width"; }, {}, never>;
75
+ }
76
+ /**
77
+ * Chart Array Directive
78
+ * @private
79
+ */
80
+ export declare class ChartsDirective extends ArrayBase<ChartsDirective> {
81
+ constructor();
82
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChartsDirective, never>;
83
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ChartsDirective, "e-cell>e-charts", never, {}, {}, ["children"]>;
84
+ }
@@ -1,71 +1,76 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * `e-column` directive represent a column of the Angular Spreadsheet.
5
- * It must be contained in a `e-sheet` directive.
6
- * ```html
7
- * <ejs-spreadsheet>
8
- * <e-sheets>
9
- * <e-sheet>
10
- * <e-columns>
11
- * <e-column width='100'></e-column>
12
- * </e-columns>
13
- * </e-sheet>
14
- * </e-sheets>
15
- * </ejs-spreadsheet>
16
- * ```
17
- */
18
- export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
19
- private viewContainerRef;
20
- directivePropList: any;
21
- /**
22
- * specifies custom width of the column.
23
- * @default false
24
- */
25
- customWidth: any;
26
- /**
27
- * Specifies format of the column.
28
- * @default {}
29
- */
30
- format: any;
31
- /**
32
- * To hide/show the column in spreadsheet.
33
- * @default false
34
- */
35
- hidden: any;
36
- /**
37
- * Specifies index of the column. Based on the index, column properties are applied.
38
- * @default 0
39
- * @asptype int
40
- */
41
- index: any;
42
- /**
43
- * To lock/unlock the column in the protected sheet.
44
- * @default true
45
- */
46
- isLocked: any;
47
- /**
48
- * Represents whether a column in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.
49
- * @default false
50
- */
51
- isReadOnly: any;
52
- /**
53
- * Specifies the validation of the column.
54
- * @default ''
55
- */
56
- validation: any;
57
- /**
58
- * Specifies width of the column.
59
- * @default 64
60
- * @asptype int
61
- */
62
- width: any;
63
- constructor(viewContainerRef: ViewContainerRef);
64
- }
65
- /**
66
- * Column Array Directive
67
- * @private
68
- */
69
- export declare class ColumnsDirective extends ArrayBase<ColumnsDirective> {
70
- constructor();
71
- }
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-column` directive represent a column of the Angular Spreadsheet.
6
+ * It must be contained in a `e-sheet` directive.
7
+ * ```html
8
+ * <ejs-spreadsheet>
9
+ * <e-sheets>
10
+ * <e-sheet>
11
+ * <e-columns>
12
+ * <e-column width='100'></e-column>
13
+ * </e-columns>
14
+ * </e-sheet>
15
+ * </e-sheets>
16
+ * </ejs-spreadsheet>
17
+ * ```
18
+ */
19
+ export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
20
+ private viewContainerRef;
21
+ directivePropList: any;
22
+ /**
23
+ * specifies custom width of the column.
24
+ * @default false
25
+ */
26
+ customWidth: any;
27
+ /**
28
+ * Specifies format of the column.
29
+ * @default {}
30
+ */
31
+ format: any;
32
+ /**
33
+ * To hide/show the column in spreadsheet.
34
+ * @default false
35
+ */
36
+ hidden: any;
37
+ /**
38
+ * Specifies index of the column. Based on the index, column properties are applied.
39
+ * @default 0
40
+ * @asptype int
41
+ */
42
+ index: any;
43
+ /**
44
+ * To lock/unlock the column in the protected sheet.
45
+ * @default true
46
+ */
47
+ isLocked: any;
48
+ /**
49
+ * Represents whether a column in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.
50
+ * @default false
51
+ */
52
+ isReadOnly: any;
53
+ /**
54
+ * Specifies the validation of the column.
55
+ * @default ''
56
+ */
57
+ validation: any;
58
+ /**
59
+ * Specifies width of the column.
60
+ * @default 64
61
+ * @asptype int
62
+ */
63
+ width: any;
64
+ constructor(viewContainerRef: ViewContainerRef);
65
+ static ɵfac: i0.ɵɵFactoryDeclaration<ColumnDirective, never>;
66
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnDirective, "e-columns>e-column", never, { "customWidth": "customWidth"; "format": "format"; "hidden": "hidden"; "index": "index"; "isLocked": "isLocked"; "isReadOnly": "isReadOnly"; "validation": "validation"; "width": "width"; }, {}, never>;
67
+ }
68
+ /**
69
+ * Column Array Directive
70
+ * @private
71
+ */
72
+ export declare class ColumnsDirective extends ArrayBase<ColumnsDirective> {
73
+ constructor();
74
+ static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsDirective, never>;
75
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnsDirective, "e-sheet>e-columns", never, {}, {}, ["children"]>;
76
+ }
@@ -1,55 +1,60 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * `e-conditionalformat` directive represent a conditionalformat of the Angular Spreadsheet.
5
- * It must be contained in a `e-sheet` directive.
6
- * ```html
7
- * <ejs-spreadsheet>
8
- * <e-sheets>
9
- * <e-sheet>
10
- * <e-conditionalformats>
11
- * <e-conditionalformat></e-conditionalformat>
12
- * </e-conditionalformats>
13
- * </e-sheet>
14
- * </e-sheets>
15
- * </ejs-spreadsheet>
16
- * ```
17
- */
18
- export declare class ConditionalFormatDirective extends ComplexBase<ConditionalFormatDirective> {
19
- private viewContainerRef;
20
- directivePropList: any;
21
- /**
22
- * Specifies Conditional formatting Type.
23
- * @default 'GreaterThan'
24
- * @aspignore
25
- */
26
- type: any;
27
- /**
28
- * Specifies Conditional formatting Highlight Color.
29
- * @default 'RedFT'
30
- */
31
- cFColor: any;
32
- /**
33
- * Specifies format.
34
- * @default {}
35
- */
36
- format: any;
37
- /**
38
- * Specifies Conditional formatting range.
39
- * @default ''
40
- */
41
- range: any;
42
- /**
43
- * Specifies Conditional formatting Value.
44
- * @default ''
45
- */
46
- value: any;
47
- constructor(viewContainerRef: ViewContainerRef);
48
- }
49
- /**
50
- * ConditionalFormat Array Directive
51
- * @private
52
- */
53
- export declare class ConditionalFormatsDirective extends ArrayBase<ConditionalFormatsDirective> {
54
- constructor();
55
- }
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-conditionalformat` directive represent a conditionalformat of the Angular Spreadsheet.
6
+ * It must be contained in a `e-sheet` directive.
7
+ * ```html
8
+ * <ejs-spreadsheet>
9
+ * <e-sheets>
10
+ * <e-sheet>
11
+ * <e-conditionalformats>
12
+ * <e-conditionalformat></e-conditionalformat>
13
+ * </e-conditionalformats>
14
+ * </e-sheet>
15
+ * </e-sheets>
16
+ * </ejs-spreadsheet>
17
+ * ```
18
+ */
19
+ export declare class ConditionalFormatDirective extends ComplexBase<ConditionalFormatDirective> {
20
+ private viewContainerRef;
21
+ directivePropList: any;
22
+ /**
23
+ * Specifies Conditional formatting Type.
24
+ * @default 'GreaterThan'
25
+ * @aspignore
26
+ */
27
+ type: any;
28
+ /**
29
+ * Specifies Conditional formatting Highlight Color.
30
+ * @default 'RedFT'
31
+ */
32
+ cFColor: any;
33
+ /**
34
+ * Specifies format.
35
+ * @default {}
36
+ */
37
+ format: any;
38
+ /**
39
+ * Specifies Conditional formatting range.
40
+ * @default ''
41
+ */
42
+ range: any;
43
+ /**
44
+ * Specifies Conditional formatting Value.
45
+ * @default ''
46
+ */
47
+ value: any;
48
+ constructor(viewContainerRef: ViewContainerRef);
49
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConditionalFormatDirective, never>;
50
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ConditionalFormatDirective, "e-conditionalformats>e-conditionalformat", never, { "cFColor": "cFColor"; "format": "format"; "range": "range"; "type": "type"; "value": "value"; }, {}, never>;
51
+ }
52
+ /**
53
+ * ConditionalFormat Array Directive
54
+ * @private
55
+ */
56
+ export declare class ConditionalFormatsDirective extends ArrayBase<ConditionalFormatsDirective> {
57
+ constructor();
58
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConditionalFormatsDirective, never>;
59
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ConditionalFormatsDirective, "e-sheet>e-conditionalformats", never, {}, {}, ["children"]>;
60
+ }
@@ -1,49 +1,54 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * `e-definedname` directive represent a defined name of the Angular Spreadsheet.
5
- * It must be contained in a Spreadsheet component(`ejs-spreadsheet`).
6
- * ```html
7
- * <ejs-spreadsheet>
8
- * <e-definednames>
9
- * <e-definedname></e-definedname>
10
- * <e-definedname></e-definedname>
11
- * </e-definednames>
12
- * </ejs-spreadsheet>
13
- * ```
14
- */
15
- export declare class DefinedNameDirective extends ComplexBase<DefinedNameDirective> {
16
- private viewContainerRef;
17
- directivePropList: any;
18
- /**
19
- * Provides a comment or description for the defined name.
20
- * @default ''
21
- */
22
- comment: any;
23
- /**
24
- * Specifies a unique name for the defined name, which can be used in formulas.
25
- * @default ''
26
- */
27
- name: any;
28
- /**
29
- * Specifies the cell or range reference associated with the defined name.
30
- * The reference can be provided with or without the `=` prefix.
31
- * @default ''
32
- */
33
- refersTo: any;
34
- /**
35
- * Defines the scope of the name.
36
- * If not specified, the name is scoped to the entire workbook.
37
- * If a sheet name is provided, the name will be available only within that specific sheet.
38
- * @default ''
39
- */
40
- scope: any;
41
- constructor(viewContainerRef: ViewContainerRef);
42
- }
43
- /**
44
- * DefinedName Array Directive
45
- * @private
46
- */
47
- export declare class DefinedNamesDirective extends ArrayBase<DefinedNamesDirective> {
48
- constructor();
49
- }
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-definedname` directive represent a defined name of the Angular Spreadsheet.
6
+ * It must be contained in a Spreadsheet component(`ejs-spreadsheet`).
7
+ * ```html
8
+ * <ejs-spreadsheet>
9
+ * <e-definednames>
10
+ * <e-definedname></e-definedname>
11
+ * <e-definedname></e-definedname>
12
+ * </e-definednames>
13
+ * </ejs-spreadsheet>
14
+ * ```
15
+ */
16
+ export declare class DefinedNameDirective extends ComplexBase<DefinedNameDirective> {
17
+ private viewContainerRef;
18
+ directivePropList: any;
19
+ /**
20
+ * Provides a comment or description for the defined name.
21
+ * @default ''
22
+ */
23
+ comment: any;
24
+ /**
25
+ * Specifies a unique name for the defined name, which can be used in formulas.
26
+ * @default ''
27
+ */
28
+ name: any;
29
+ /**
30
+ * Specifies the cell or range reference associated with the defined name.
31
+ * The reference can be provided with or without the `=` prefix.
32
+ * @default ''
33
+ */
34
+ refersTo: any;
35
+ /**
36
+ * Defines the scope of the name.
37
+ * If not specified, the name is scoped to the entire workbook.
38
+ * If a sheet name is provided, the name will be available only within that specific sheet.
39
+ * @default ''
40
+ */
41
+ scope: any;
42
+ constructor(viewContainerRef: ViewContainerRef);
43
+ static ɵfac: i0.ɵɵFactoryDeclaration<DefinedNameDirective, never>;
44
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DefinedNameDirective, "e-definednames>e-definedname", never, { "comment": "comment"; "name": "name"; "refersTo": "refersTo"; "scope": "scope"; }, {}, never>;
45
+ }
46
+ /**
47
+ * DefinedName Array Directive
48
+ * @private
49
+ */
50
+ export declare class DefinedNamesDirective extends ArrayBase<DefinedNamesDirective> {
51
+ constructor();
52
+ static ɵfac: i0.ɵɵFactoryDeclaration<DefinedNamesDirective, never>;
53
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DefinedNamesDirective, "ejs-spreadsheet>e-definednames", never, {}, {}, ["children"]>;
54
+ }
@@ -1,48 +1,53 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- export declare class ImageDirective extends ComplexBase<ImageDirective> {
4
- private viewContainerRef;
5
- directivePropList: any;
6
- /**
7
- * Specifies the height of the image.
8
- * @default 300
9
- * @asptype double
10
- */
11
- height: any;
12
- /**
13
- * Specifies image element id.
14
- * @default ''
15
- */
16
- id: any;
17
- /**
18
- * Specifies the width of the image.
19
- * @default 0
20
- * @asptype double
21
- */
22
- left: any;
23
- /**
24
- * Specifies the image source.
25
- * @default ''
26
- */
27
- src: any;
28
- /**
29
- * Specifies the height of the image.
30
- * @default 0
31
- * @asptype double
32
- */
33
- top: any;
34
- /**
35
- * Specifies the width of the image.
36
- * @default 400
37
- * @asptype double
38
- */
39
- width: any;
40
- constructor(viewContainerRef: ViewContainerRef);
41
- }
42
- /**
43
- * Image Array Directive
44
- * @private
45
- */
46
- export declare class ImagesDirective extends ArrayBase<ImagesDirective> {
47
- constructor();
48
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ImageDirective extends ComplexBase<ImageDirective> {
5
+ private viewContainerRef;
6
+ directivePropList: any;
7
+ /**
8
+ * Specifies the height of the image.
9
+ * @default 300
10
+ * @asptype double
11
+ */
12
+ height: any;
13
+ /**
14
+ * Specifies image element id.
15
+ * @default ''
16
+ */
17
+ id: any;
18
+ /**
19
+ * Specifies the width of the image.
20
+ * @default 0
21
+ * @asptype double
22
+ */
23
+ left: any;
24
+ /**
25
+ * Specifies the image source.
26
+ * @default ''
27
+ */
28
+ src: any;
29
+ /**
30
+ * Specifies the height of the image.
31
+ * @default 0
32
+ * @asptype double
33
+ */
34
+ top: any;
35
+ /**
36
+ * Specifies the width of the image.
37
+ * @default 400
38
+ * @asptype double
39
+ */
40
+ width: any;
41
+ constructor(viewContainerRef: ViewContainerRef);
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImageDirective, never>;
43
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ImageDirective, "e-images>e-image", never, { "height": "height"; "id": "id"; "left": "left"; "src": "src"; "top": "top"; "width": "width"; }, {}, never>;
44
+ }
45
+ /**
46
+ * Image Array Directive
47
+ * @private
48
+ */
49
+ export declare class ImagesDirective extends ArrayBase<ImagesDirective> {
50
+ constructor();
51
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImagesDirective, never>;
52
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ImagesDirective, "e-cell>e-images", never, {}, {}, ["children"]>;
53
+ }