@syncfusion/ej2-angular-spreadsheet 31.2.18-ngcc → 32.1.19-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 +961 -961
- package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-spreadsheet.js +869 -869
- package/@syncfusion/ej2-angular-spreadsheet.js.map +1 -1
- package/dist/ej2-angular-spreadsheet.umd.js +952 -960
- package/dist/ej2-angular-spreadsheet.umd.js.map +1 -1
- package/dist/ej2-angular-spreadsheet.umd.min.js +1 -10
- package/dist/ej2-angular-spreadsheet.umd.min.js.map +1 -1
- package/ej2-angular-spreadsheet.d.ts +5 -5
- package/{LICENSE → license} +10 -10
- package/package.json +46 -15
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +4 -4
- package/src/index.d.ts +13 -13
- package/src/spreadsheet/cells.directive.d.ts +115 -115
- package/src/spreadsheet/chart.directive.d.ts +79 -79
- package/src/spreadsheet/columns.directive.d.ts +71 -71
- package/src/spreadsheet/conditionalformats.directive.d.ts +55 -55
- package/src/spreadsheet/definednames.directive.d.ts +46 -49
- package/src/spreadsheet/image.directive.d.ts +48 -48
- package/src/spreadsheet/ranges.directive.d.ts +68 -68
- package/src/spreadsheet/rows.directive.d.ts +69 -69
- package/src/spreadsheet/sheets.directive.d.ts +149 -149
- package/src/spreadsheet/spreadsheet-all.module.d.ts +21 -21
- package/src/spreadsheet/spreadsheet.component.d.ts +69 -69
- package/src/spreadsheet/spreadsheet.module.d.ts +5 -5
|
@@ -1,49 +1,46 @@
|
|
|
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
|
-
*
|
|
20
|
-
* @default ''
|
|
21
|
-
*/
|
|
22
|
-
comment: any;
|
|
23
|
-
/**
|
|
24
|
-
* Specifies
|
|
25
|
-
* @default ''
|
|
26
|
-
*/
|
|
27
|
-
name: any;
|
|
28
|
-
/**
|
|
29
|
-
* Specifies
|
|
30
|
-
*
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
*
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
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
|
+
/**
|
|
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
|
+
* Specifies comment for the defined name.
|
|
20
|
+
* @default ''
|
|
21
|
+
*/
|
|
22
|
+
comment: any;
|
|
23
|
+
/**
|
|
24
|
+
* Specifies name for the defined name, which can be used in formula.
|
|
25
|
+
* @default ''
|
|
26
|
+
*/
|
|
27
|
+
name: any;
|
|
28
|
+
/**
|
|
29
|
+
* Specifies reference for the defined name.
|
|
30
|
+
* @default ''
|
|
31
|
+
*/
|
|
32
|
+
refersTo: any;
|
|
33
|
+
/**
|
|
34
|
+
* Specifies scope for the defined name.
|
|
35
|
+
* @default ''
|
|
36
|
+
*/
|
|
37
|
+
scope: any;
|
|
38
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* DefinedName Array Directive
|
|
42
|
+
* @private
|
|
43
|
+
*/
|
|
44
|
+
export declare class DefinedNamesDirective extends ArrayBase<DefinedNamesDirective> {
|
|
45
|
+
constructor();
|
|
46
|
+
}
|
|
@@ -1,48 +1,48 @@
|
|
|
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
|
+
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,68 +1,68 @@
|
|
|
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
|
-
}
|
|
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
|
+
}
|
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
/**
|
|
4
|
-
* `e-row` directive represent a row 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-rows>
|
|
11
|
-
* <e-row></e-row>
|
|
12
|
-
* </e-rows>
|
|
13
|
-
* </e-sheet>
|
|
14
|
-
* </e-sheets>
|
|
15
|
-
* </ejs-spreadsheet>
|
|
16
|
-
* ```
|
|
17
|
-
*/
|
|
18
|
-
export declare class RowDirective extends ComplexBase<RowDirective> {
|
|
19
|
-
private viewContainerRef;
|
|
20
|
-
directivePropList: any;
|
|
21
|
-
childCells: any;
|
|
22
|
-
tags: string[];
|
|
23
|
-
/**
|
|
24
|
-
* Specifies cell and its properties for the row.
|
|
25
|
-
* @default []
|
|
26
|
-
*/
|
|
27
|
-
cells: any;
|
|
28
|
-
/**
|
|
29
|
-
* specifies custom height of the row.
|
|
30
|
-
* @default false
|
|
31
|
-
*/
|
|
32
|
-
customHeight: any;
|
|
33
|
-
/**
|
|
34
|
-
* Specifies format of the row.
|
|
35
|
-
* @default {}
|
|
36
|
-
*/
|
|
37
|
-
format: any;
|
|
38
|
-
/**
|
|
39
|
-
* Specifies height of the row.
|
|
40
|
-
* @default 20
|
|
41
|
-
* @asptype double
|
|
42
|
-
* @aspdefaultvalue 20.0
|
|
43
|
-
*/
|
|
44
|
-
height: any;
|
|
45
|
-
/**
|
|
46
|
-
* To hide/show the row in spreadsheet.
|
|
47
|
-
* @default false
|
|
48
|
-
*/
|
|
49
|
-
hidden: any;
|
|
50
|
-
/**
|
|
51
|
-
* Specifies the index to the row. Based on the index, row properties are applied.
|
|
52
|
-
* @default 0
|
|
53
|
-
* @asptype int
|
|
54
|
-
*/
|
|
55
|
-
index: any;
|
|
56
|
-
/**
|
|
57
|
-
* Represents whether a row in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.
|
|
58
|
-
* @default false
|
|
59
|
-
*/
|
|
60
|
-
isReadOnly: any;
|
|
61
|
-
constructor(viewContainerRef: ViewContainerRef);
|
|
62
|
-
}
|
|
63
|
-
/**
|
|
64
|
-
* Row Array Directive
|
|
65
|
-
* @private
|
|
66
|
-
*/
|
|
67
|
-
export declare class RowsDirective extends ArrayBase<RowsDirective> {
|
|
68
|
-
constructor();
|
|
69
|
-
}
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
/**
|
|
4
|
+
* `e-row` directive represent a row 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-rows>
|
|
11
|
+
* <e-row></e-row>
|
|
12
|
+
* </e-rows>
|
|
13
|
+
* </e-sheet>
|
|
14
|
+
* </e-sheets>
|
|
15
|
+
* </ejs-spreadsheet>
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export declare class RowDirective extends ComplexBase<RowDirective> {
|
|
19
|
+
private viewContainerRef;
|
|
20
|
+
directivePropList: any;
|
|
21
|
+
childCells: any;
|
|
22
|
+
tags: string[];
|
|
23
|
+
/**
|
|
24
|
+
* Specifies cell and its properties for the row.
|
|
25
|
+
* @default []
|
|
26
|
+
*/
|
|
27
|
+
cells: any;
|
|
28
|
+
/**
|
|
29
|
+
* specifies custom height of the row.
|
|
30
|
+
* @default false
|
|
31
|
+
*/
|
|
32
|
+
customHeight: any;
|
|
33
|
+
/**
|
|
34
|
+
* Specifies format of the row.
|
|
35
|
+
* @default {}
|
|
36
|
+
*/
|
|
37
|
+
format: any;
|
|
38
|
+
/**
|
|
39
|
+
* Specifies height of the row.
|
|
40
|
+
* @default 20
|
|
41
|
+
* @asptype double
|
|
42
|
+
* @aspdefaultvalue 20.0
|
|
43
|
+
*/
|
|
44
|
+
height: any;
|
|
45
|
+
/**
|
|
46
|
+
* To hide/show the row in spreadsheet.
|
|
47
|
+
* @default false
|
|
48
|
+
*/
|
|
49
|
+
hidden: any;
|
|
50
|
+
/**
|
|
51
|
+
* Specifies the index to the row. Based on the index, row properties are applied.
|
|
52
|
+
* @default 0
|
|
53
|
+
* @asptype int
|
|
54
|
+
*/
|
|
55
|
+
index: any;
|
|
56
|
+
/**
|
|
57
|
+
* Represents whether a row in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.
|
|
58
|
+
* @default false
|
|
59
|
+
*/
|
|
60
|
+
isReadOnly: any;
|
|
61
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Row Array Directive
|
|
65
|
+
* @private
|
|
66
|
+
*/
|
|
67
|
+
export declare class RowsDirective extends ArrayBase<RowsDirective> {
|
|
68
|
+
constructor();
|
|
69
|
+
}
|