@syncfusion/ej2-angular-spreadsheet 31.2.10 → 31.2.12-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-spreadsheet.es5.js +962 -0
  2. package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-spreadsheet.js +902 -0
  4. package/@syncfusion/ej2-angular-spreadsheet.js.map +1 -0
  5. package/LICENSE +10 -0
  6. package/README.md +2 -9
  7. package/dist/ej2-angular-spreadsheet.umd.js +1602 -0
  8. package/dist/ej2-angular-spreadsheet.umd.js.map +1 -0
  9. package/dist/ej2-angular-spreadsheet.umd.min.js +11 -0
  10. package/dist/ej2-angular-spreadsheet.umd.min.js.map +1 -0
  11. package/ej2-angular-spreadsheet.d.ts +5 -0
  12. package/ej2-angular-spreadsheet.metadata.json +1 -0
  13. package/package.json +10 -23
  14. package/public_api.d.ts +1 -1
  15. package/schematics/utils/lib-details.js +2 -2
  16. package/schematics/utils/lib-details.ts +2 -2
  17. package/src/index.d.ts +13 -13
  18. package/src/spreadsheet/cells.directive.d.ts +115 -120
  19. package/src/spreadsheet/chart.directive.d.ts +79 -84
  20. package/src/spreadsheet/columns.directive.d.ts +71 -76
  21. package/src/spreadsheet/conditionalformats.directive.d.ts +55 -60
  22. package/src/spreadsheet/definednames.directive.d.ts +49 -54
  23. package/src/spreadsheet/image.directive.d.ts +48 -53
  24. package/src/spreadsheet/ranges.directive.d.ts +68 -73
  25. package/src/spreadsheet/rows.directive.d.ts +69 -74
  26. package/src/spreadsheet/sheets.directive.d.ts +149 -154
  27. package/src/spreadsheet/spreadsheet-all.module.d.ts +21 -27
  28. package/src/spreadsheet/spreadsheet.component.d.ts +69 -72
  29. package/src/spreadsheet/spreadsheet.module.d.ts +5 -20
  30. package/CHANGELOG.md +0 -1580
  31. package/esm2020/public_api.mjs +0 -2
  32. package/esm2020/src/index.mjs +0 -14
  33. package/esm2020/src/spreadsheet/cells.directive.mjs +0 -71
  34. package/esm2020/src/spreadsheet/chart.directive.mjs +0 -46
  35. package/esm2020/src/spreadsheet/columns.directive.mjs +0 -61
  36. package/esm2020/src/spreadsheet/conditionalformats.directive.mjs +0 -61
  37. package/esm2020/src/spreadsheet/definednames.directive.mjs +0 -58
  38. package/esm2020/src/spreadsheet/image.directive.mjs +0 -46
  39. package/esm2020/src/spreadsheet/ranges.directive.mjs +0 -69
  40. package/esm2020/src/spreadsheet/rows.directive.mjs +0 -65
  41. package/esm2020/src/spreadsheet/sheets.directive.mjs +0 -68
  42. package/esm2020/src/spreadsheet/spreadsheet-all.module.mjs +0 -71
  43. package/esm2020/src/spreadsheet/spreadsheet.component.mjs +0 -181
  44. package/esm2020/src/spreadsheet/spreadsheet.module.mjs +0 -106
  45. package/esm2020/syncfusion-ej2-angular-spreadsheet.mjs +0 -5
  46. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +0 -854
  47. package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +0 -1
  48. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +0 -854
  49. package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs.map +0 -1
  50. package/syncfusion-ej2-angular-spreadsheet.d.ts +0 -5
@@ -1,76 +1,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
+ 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,60 +1,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
+ 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,54 +1,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
+ 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,53 +1,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
- }
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,73 +1,68 @@
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-range` directive represent a range 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-ranges>
12
- * <e-range [dataSource]='data'></e-range>
13
- * </e-ranges>
14
- * </e-sheet>
15
- * </e-sheets>
16
- * </ejs-spreadsheet>
17
- * ```
18
- */
19
- export declare class RangeDirective extends ComplexBase<RangeDirective> {
20
- private viewContainerRef;
21
- directivePropList: any;
22
- /**
23
- * Specifies the address for updating the dataSource or template.
24
- * @default 'A1'
25
- */
26
- address: any;
27
- /**
28
- * Specifies the data as JSON / Data manager to the sheet.
29
- * @default null
30
- */
31
- dataSource: any;
32
- /**
33
- * By default, when a sheet is bound to a data source, columns are assigned to data source fields sequentially.
34
- * This means that the first data field is assigned to Column A, the second to Column B, and so on.
35
- * You can customize these assignments by specifying the field names in the desired column order using the 'fieldsOrder' property.
36
- * @default null
37
- */
38
- fieldsOrder: any;
39
- /**
40
- * Defines the external [`Query`](https://ej2.syncfusion.com/documentation/data/api-query.html)
41
- * that will be executed along with data processing.
42
- * @default null
43
- */
44
- query: any;
45
- /**
46
- * Show/Hide the field of the datasource as header.
47
- * @default true
48
- */
49
- showFieldAsHeader: any;
50
- /**
51
- * Specifies the start cell from which the datasource will be populated.
52
- * @default 'A1'
53
- */
54
- startCell: any;
55
- /**
56
- * Template helps to compiles the given HTML String (or HTML Element ID) into HtML Element and append to the Cell.
57
- * @default ''
58
- * @asptype string
59
- */
60
- template: any;
61
- constructor(viewContainerRef: ViewContainerRef);
62
- static ɵfac: i0.ɵɵFactoryDeclaration<RangeDirective, never>;
63
- static ɵdir: i0.ɵɵDirectiveDeclaration<RangeDirective, "e-ranges>e-range", never, { "address": "address"; "dataSource": "dataSource"; "fieldsOrder": "fieldsOrder"; "query": "query"; "showFieldAsHeader": "showFieldAsHeader"; "startCell": "startCell"; "template": "template"; }, {}, ["template"]>;
64
- }
65
- /**
66
- * Range Array Directive
67
- * @private
68
- */
69
- export declare class RangesDirective extends ArrayBase<RangesDirective> {
70
- constructor();
71
- static ɵfac: i0.ɵɵFactoryDeclaration<RangesDirective, never>;
72
- static ɵdir: i0.ɵɵDirectiveDeclaration<RangesDirective, "e-sheet>e-ranges", never, {}, {}, ["children"]>;
73
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * `e-range` directive represent a range 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-ranges>
11
+ * <e-range [dataSource]='data'></e-range>
12
+ * </e-ranges>
13
+ * </e-sheet>
14
+ * </e-sheets>
15
+ * </ejs-spreadsheet>
16
+ * ```
17
+ */
18
+ export declare class RangeDirective extends ComplexBase<RangeDirective> {
19
+ private viewContainerRef;
20
+ directivePropList: any;
21
+ /**
22
+ * Specifies the address for updating the dataSource or template.
23
+ * @default 'A1'
24
+ */
25
+ address: any;
26
+ /**
27
+ * Specifies the data as JSON / Data manager to the sheet.
28
+ * @default null
29
+ */
30
+ dataSource: any;
31
+ /**
32
+ * By default, when a sheet is bound to a data source, columns are assigned to data source fields sequentially.
33
+ * This means that the first data field is assigned to Column A, the second to Column B, and so on.
34
+ * You can customize these assignments by specifying the field names in the desired column order using the 'fieldsOrder' property.
35
+ * @default null
36
+ */
37
+ fieldsOrder: any;
38
+ /**
39
+ * Defines the external [`Query`](https://ej2.syncfusion.com/documentation/data/api-query.html)
40
+ * that will be executed along with data processing.
41
+ * @default null
42
+ */
43
+ query: any;
44
+ /**
45
+ * Show/Hide the field of the datasource as header.
46
+ * @default true
47
+ */
48
+ showFieldAsHeader: any;
49
+ /**
50
+ * Specifies the start cell from which the datasource will be populated.
51
+ * @default 'A1'
52
+ */
53
+ startCell: any;
54
+ /**
55
+ * Template helps to compiles the given HTML String (or HTML Element ID) into HtML Element and append to the Cell.
56
+ * @default ''
57
+ * @asptype string
58
+ */
59
+ template: any;
60
+ constructor(viewContainerRef: ViewContainerRef);
61
+ }
62
+ /**
63
+ * Range Array Directive
64
+ * @private
65
+ */
66
+ export declare class RangesDirective extends ArrayBase<RangesDirective> {
67
+ constructor();
68
+ }