@syncfusion/ej2-angular-spreadsheet 31.2.16 → 31.2.18-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.
- package/@syncfusion/ej2-angular-spreadsheet.es5.js +962 -0
- package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-spreadsheet.js +902 -0
- package/@syncfusion/ej2-angular-spreadsheet.js.map +1 -0
- package/LICENSE +10 -0
- package/README.md +2 -9
- package/dist/ej2-angular-spreadsheet.umd.js +1602 -0
- package/dist/ej2-angular-spreadsheet.umd.js.map +1 -0
- package/dist/ej2-angular-spreadsheet.umd.min.js +11 -0
- package/dist/ej2-angular-spreadsheet.umd.min.js.map +1 -0
- package/ej2-angular-spreadsheet.d.ts +5 -0
- package/ej2-angular-spreadsheet.metadata.json +1 -0
- package/package.json +9 -22
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/index.d.ts +13 -13
- package/src/spreadsheet/cells.directive.d.ts +115 -120
- package/src/spreadsheet/chart.directive.d.ts +79 -84
- package/src/spreadsheet/columns.directive.d.ts +71 -76
- package/src/spreadsheet/conditionalformats.directive.d.ts +55 -60
- package/src/spreadsheet/definednames.directive.d.ts +49 -54
- package/src/spreadsheet/image.directive.d.ts +48 -53
- package/src/spreadsheet/ranges.directive.d.ts +68 -73
- package/src/spreadsheet/rows.directive.d.ts +69 -74
- package/src/spreadsheet/sheets.directive.d.ts +149 -154
- package/src/spreadsheet/spreadsheet-all.module.d.ts +21 -27
- package/src/spreadsheet/spreadsheet.component.d.ts +69 -72
- package/src/spreadsheet/spreadsheet.module.d.ts +5 -20
- package/CHANGELOG.md +0 -1598
- package/esm2020/public_api.mjs +0 -2
- package/esm2020/src/index.mjs +0 -14
- package/esm2020/src/spreadsheet/cells.directive.mjs +0 -71
- package/esm2020/src/spreadsheet/chart.directive.mjs +0 -46
- package/esm2020/src/spreadsheet/columns.directive.mjs +0 -61
- package/esm2020/src/spreadsheet/conditionalformats.directive.mjs +0 -61
- package/esm2020/src/spreadsheet/definednames.directive.mjs +0 -58
- package/esm2020/src/spreadsheet/image.directive.mjs +0 -46
- package/esm2020/src/spreadsheet/ranges.directive.mjs +0 -69
- package/esm2020/src/spreadsheet/rows.directive.mjs +0 -65
- package/esm2020/src/spreadsheet/sheets.directive.mjs +0 -68
- package/esm2020/src/spreadsheet/spreadsheet-all.module.mjs +0 -71
- package/esm2020/src/spreadsheet/spreadsheet.component.mjs +0 -181
- package/esm2020/src/spreadsheet/spreadsheet.module.mjs +0 -106
- package/esm2020/syncfusion-ej2-angular-spreadsheet.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +0 -854
- package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +0 -854
- package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs.map +0 -1
- 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
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* <e-
|
|
11
|
-
* <e-
|
|
12
|
-
*
|
|
13
|
-
* </e-
|
|
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
|
-
|
|
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
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
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
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* <e-
|
|
11
|
-
* <e-
|
|
12
|
-
*
|
|
13
|
-
* </e-
|
|
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
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
*
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
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
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* <e-definedname></e-definedname>
|
|
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
|
-
* If
|
|
38
|
-
*
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
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
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
*
|
|
9
|
-
* @
|
|
10
|
-
|
|
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
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
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
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* <e-
|
|
11
|
-
* <e-
|
|
12
|
-
*
|
|
13
|
-
* </e-
|
|
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
|
-
*
|
|
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
|
-
|
|
67
|
-
|
|
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
|
+
}
|