@syncfusion/ej2-angular-spreadsheet 30.1.37-ngcc → 30.1.38-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 +955 -954
- package/dist/ej2-angular-spreadsheet.umd.js.map +1 -1
- package/dist/ej2-angular-spreadsheet.umd.min.js +2 -2
- package/ej2-angular-spreadsheet.d.ts +5 -5
- package/{LICENSE → license} +10 -10
- package/package.json +45 -14
- 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 -46
- 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,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
|
+
}
|
|
@@ -1,46 +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
|
-
* 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
|
+
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
|
+
}
|