@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,115 +1,115 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
/**
|
|
4
|
-
* `e-cell` directive represent a cell of the Angular Spreadsheet.
|
|
5
|
-
* It must be contained in a `e-row` directive.
|
|
6
|
-
* ```html
|
|
7
|
-
* <ejs-spreadsheet>
|
|
8
|
-
* <e-sheets>
|
|
9
|
-
* <e-sheet>
|
|
10
|
-
* <e-rows>
|
|
11
|
-
* <e-row>
|
|
12
|
-
* <e-cells>
|
|
13
|
-
* <e-cell value='A1'></e-cell>
|
|
14
|
-
* </e-cells>
|
|
15
|
-
* </e-row>
|
|
16
|
-
* </e-rows>
|
|
17
|
-
* </e-sheet>
|
|
18
|
-
* </e-sheets>
|
|
19
|
-
* </ejs-spreadsheet>
|
|
20
|
-
* ```
|
|
21
|
-
*/
|
|
22
|
-
export declare class CellDirective extends ComplexBase<CellDirective> {
|
|
23
|
-
private viewContainerRef;
|
|
24
|
-
directivePropList: any;
|
|
25
|
-
childImage: any;
|
|
26
|
-
childChart: any;
|
|
27
|
-
tags: string[];
|
|
28
|
-
/**
|
|
29
|
-
* Specifies the chart of the cell.
|
|
30
|
-
* @default []
|
|
31
|
-
*/
|
|
32
|
-
chart: any;
|
|
33
|
-
/**
|
|
34
|
-
* Specifies the column-wise cell merge count.
|
|
35
|
-
* @default 1
|
|
36
|
-
* @asptype int
|
|
37
|
-
*/
|
|
38
|
-
colSpan: any;
|
|
39
|
-
/**
|
|
40
|
-
* Specifies the number format code to display value in specified number format.
|
|
41
|
-
* @default 'General'
|
|
42
|
-
*/
|
|
43
|
-
format: any;
|
|
44
|
-
/**
|
|
45
|
-
* Defines the formula or expression of the cell.
|
|
46
|
-
* @default ''
|
|
47
|
-
*/
|
|
48
|
-
formula: any;
|
|
49
|
-
/**
|
|
50
|
-
* Specifies the hyperlink of the cell.
|
|
51
|
-
* @default ''
|
|
52
|
-
*/
|
|
53
|
-
hyperlink: any;
|
|
54
|
-
/**
|
|
55
|
-
* Specifies the image of the cell.
|
|
56
|
-
* @default []
|
|
57
|
-
*/
|
|
58
|
-
image: any;
|
|
59
|
-
/**
|
|
60
|
-
* Specifies the index of the cell.
|
|
61
|
-
* @default 0
|
|
62
|
-
* @asptype int
|
|
63
|
-
*/
|
|
64
|
-
index: any;
|
|
65
|
-
/**
|
|
66
|
-
* Specifies the cell is locked or not, for allow edit range in spreadsheet protect option.
|
|
67
|
-
* @default true
|
|
68
|
-
*/
|
|
69
|
-
isLocked: any;
|
|
70
|
-
/**
|
|
71
|
-
* Represents whether a cell in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.
|
|
72
|
-
* @default false
|
|
73
|
-
*/
|
|
74
|
-
isReadOnly: any;
|
|
75
|
-
/**
|
|
76
|
-
* Specifies the note of the cell.
|
|
77
|
-
* @default ''
|
|
78
|
-
*/
|
|
79
|
-
notes: any;
|
|
80
|
-
/**
|
|
81
|
-
* Specifies the row-wise cell merge count.
|
|
82
|
-
* @default 1
|
|
83
|
-
* @asptype int
|
|
84
|
-
*/
|
|
85
|
-
rowSpan: any;
|
|
86
|
-
/**
|
|
87
|
-
* Specifies the cell style options.
|
|
88
|
-
*
|
|
89
|
-
* @default {}
|
|
90
|
-
*/
|
|
91
|
-
style: any;
|
|
92
|
-
/**
|
|
93
|
-
* Specifies the validation of the cell.
|
|
94
|
-
* @default ''
|
|
95
|
-
*/
|
|
96
|
-
validation: any;
|
|
97
|
-
/**
|
|
98
|
-
* Defines the value of the cell which can be text or number.
|
|
99
|
-
* @default ''
|
|
100
|
-
*/
|
|
101
|
-
value: any;
|
|
102
|
-
/**
|
|
103
|
-
* Wraps the cell text to the next line, if the text width exceeds the column width.
|
|
104
|
-
* @default false
|
|
105
|
-
*/
|
|
106
|
-
wrap: any;
|
|
107
|
-
constructor(viewContainerRef: ViewContainerRef);
|
|
108
|
-
}
|
|
109
|
-
/**
|
|
110
|
-
* Cell Array Directive
|
|
111
|
-
* @private
|
|
112
|
-
*/
|
|
113
|
-
export declare class CellsDirective extends ArrayBase<CellsDirective> {
|
|
114
|
-
constructor();
|
|
115
|
-
}
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
/**
|
|
4
|
+
* `e-cell` directive represent a cell of the Angular Spreadsheet.
|
|
5
|
+
* It must be contained in a `e-row` directive.
|
|
6
|
+
* ```html
|
|
7
|
+
* <ejs-spreadsheet>
|
|
8
|
+
* <e-sheets>
|
|
9
|
+
* <e-sheet>
|
|
10
|
+
* <e-rows>
|
|
11
|
+
* <e-row>
|
|
12
|
+
* <e-cells>
|
|
13
|
+
* <e-cell value='A1'></e-cell>
|
|
14
|
+
* </e-cells>
|
|
15
|
+
* </e-row>
|
|
16
|
+
* </e-rows>
|
|
17
|
+
* </e-sheet>
|
|
18
|
+
* </e-sheets>
|
|
19
|
+
* </ejs-spreadsheet>
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
export declare class CellDirective extends ComplexBase<CellDirective> {
|
|
23
|
+
private viewContainerRef;
|
|
24
|
+
directivePropList: any;
|
|
25
|
+
childImage: any;
|
|
26
|
+
childChart: any;
|
|
27
|
+
tags: string[];
|
|
28
|
+
/**
|
|
29
|
+
* Specifies the chart of the cell.
|
|
30
|
+
* @default []
|
|
31
|
+
*/
|
|
32
|
+
chart: any;
|
|
33
|
+
/**
|
|
34
|
+
* Specifies the column-wise cell merge count.
|
|
35
|
+
* @default 1
|
|
36
|
+
* @asptype int
|
|
37
|
+
*/
|
|
38
|
+
colSpan: any;
|
|
39
|
+
/**
|
|
40
|
+
* Specifies the number format code to display value in specified number format.
|
|
41
|
+
* @default 'General'
|
|
42
|
+
*/
|
|
43
|
+
format: any;
|
|
44
|
+
/**
|
|
45
|
+
* Defines the formula or expression of the cell.
|
|
46
|
+
* @default ''
|
|
47
|
+
*/
|
|
48
|
+
formula: any;
|
|
49
|
+
/**
|
|
50
|
+
* Specifies the hyperlink of the cell.
|
|
51
|
+
* @default ''
|
|
52
|
+
*/
|
|
53
|
+
hyperlink: any;
|
|
54
|
+
/**
|
|
55
|
+
* Specifies the image of the cell.
|
|
56
|
+
* @default []
|
|
57
|
+
*/
|
|
58
|
+
image: any;
|
|
59
|
+
/**
|
|
60
|
+
* Specifies the index of the cell.
|
|
61
|
+
* @default 0
|
|
62
|
+
* @asptype int
|
|
63
|
+
*/
|
|
64
|
+
index: any;
|
|
65
|
+
/**
|
|
66
|
+
* Specifies the cell is locked or not, for allow edit range in spreadsheet protect option.
|
|
67
|
+
* @default true
|
|
68
|
+
*/
|
|
69
|
+
isLocked: any;
|
|
70
|
+
/**
|
|
71
|
+
* Represents whether a cell in the sheet is read-only or not. If set to true, it prevents editing the specified cell in the sheet.
|
|
72
|
+
* @default false
|
|
73
|
+
*/
|
|
74
|
+
isReadOnly: any;
|
|
75
|
+
/**
|
|
76
|
+
* Specifies the note of the cell.
|
|
77
|
+
* @default ''
|
|
78
|
+
*/
|
|
79
|
+
notes: any;
|
|
80
|
+
/**
|
|
81
|
+
* Specifies the row-wise cell merge count.
|
|
82
|
+
* @default 1
|
|
83
|
+
* @asptype int
|
|
84
|
+
*/
|
|
85
|
+
rowSpan: any;
|
|
86
|
+
/**
|
|
87
|
+
* Specifies the cell style options.
|
|
88
|
+
*
|
|
89
|
+
* @default {}
|
|
90
|
+
*/
|
|
91
|
+
style: any;
|
|
92
|
+
/**
|
|
93
|
+
* Specifies the validation of the cell.
|
|
94
|
+
* @default ''
|
|
95
|
+
*/
|
|
96
|
+
validation: any;
|
|
97
|
+
/**
|
|
98
|
+
* Defines the value of the cell which can be text or number.
|
|
99
|
+
* @default ''
|
|
100
|
+
*/
|
|
101
|
+
value: any;
|
|
102
|
+
/**
|
|
103
|
+
* Wraps the cell text to the next line, if the text width exceeds the column width.
|
|
104
|
+
* @default false
|
|
105
|
+
*/
|
|
106
|
+
wrap: any;
|
|
107
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* Cell Array Directive
|
|
111
|
+
* @private
|
|
112
|
+
*/
|
|
113
|
+
export declare class CellsDirective extends ArrayBase<CellsDirective> {
|
|
114
|
+
constructor();
|
|
115
|
+
}
|
|
@@ -1,79 +1,79 @@
|
|
|
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
|
+
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,71 +1,71 @@
|
|
|
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
|
+
/**
|
|
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,55 +1,55 @@
|
|
|
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
|
+
/**
|
|
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
|
+
}
|