@syncfusion/ej2-angular-spreadsheet 31.2.16-ngcc → 31.2.16
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/CHANGELOG.md +1598 -0
- package/README.md +9 -2
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/index.mjs +14 -0
- package/esm2020/src/spreadsheet/cells.directive.mjs +71 -0
- package/esm2020/src/spreadsheet/chart.directive.mjs +46 -0
- package/esm2020/src/spreadsheet/columns.directive.mjs +61 -0
- package/esm2020/src/spreadsheet/conditionalformats.directive.mjs +61 -0
- package/esm2020/src/spreadsheet/definednames.directive.mjs +58 -0
- package/esm2020/src/spreadsheet/image.directive.mjs +46 -0
- package/esm2020/src/spreadsheet/ranges.directive.mjs +69 -0
- package/esm2020/src/spreadsheet/rows.directive.mjs +65 -0
- package/esm2020/src/spreadsheet/sheets.directive.mjs +68 -0
- package/esm2020/src/spreadsheet/spreadsheet-all.module.mjs +71 -0
- package/esm2020/src/spreadsheet/spreadsheet.component.mjs +181 -0
- package/esm2020/src/spreadsheet/spreadsheet.module.mjs +106 -0
- package/esm2020/syncfusion-ej2-angular-spreadsheet.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs +854 -0
- package/fesm2015/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs +854 -0
- package/fesm2020/syncfusion-ej2-angular-spreadsheet.mjs.map +1 -0
- package/package.json +20 -7
- package/public_api.d.ts +1 -1
- package/src/index.d.ts +13 -13
- package/src/spreadsheet/cells.directive.d.ts +120 -115
- package/src/spreadsheet/chart.directive.d.ts +84 -79
- package/src/spreadsheet/columns.directive.d.ts +76 -71
- package/src/spreadsheet/conditionalformats.directive.d.ts +60 -55
- package/src/spreadsheet/definednames.directive.d.ts +54 -49
- package/src/spreadsheet/image.directive.d.ts +53 -48
- package/src/spreadsheet/ranges.directive.d.ts +73 -68
- package/src/spreadsheet/rows.directive.d.ts +74 -69
- package/src/spreadsheet/sheets.directive.d.ts +154 -149
- package/src/spreadsheet/spreadsheet-all.module.d.ts +27 -21
- package/src/spreadsheet/spreadsheet.component.d.ts +72 -69
- package/src/spreadsheet/spreadsheet.module.d.ts +20 -5
- package/syncfusion-ej2-angular-spreadsheet.d.ts +5 -0
- package/@syncfusion/ej2-angular-spreadsheet.es5.js +0 -962
- package/@syncfusion/ej2-angular-spreadsheet.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-spreadsheet.js +0 -902
- package/@syncfusion/ej2-angular-spreadsheet.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-spreadsheet.umd.js +0 -1602
- package/dist/ej2-angular-spreadsheet.umd.js.map +0 -1
- package/dist/ej2-angular-spreadsheet.umd.min.js +0 -11
- package/dist/ej2-angular-spreadsheet.umd.min.js.map +0 -1
- package/ej2-angular-spreadsheet.d.ts +0 -5
- package/ej2-angular-spreadsheet.metadata.json +0 -1
|
@@ -1,69 +1,72 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { Spreadsheet } from '@syncfusion/ej2-spreadsheet';
|
|
4
|
-
import { SheetsDirective } from './sheets.directive';
|
|
5
|
-
import { DefinedNamesDirective } from './definednames.directive';
|
|
6
|
-
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
private
|
|
18
|
-
private
|
|
19
|
-
private
|
|
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
|
-
|
|
1
|
+
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { Spreadsheet } from '@syncfusion/ej2-spreadsheet';
|
|
4
|
+
import { SheetsDirective } from './sheets.directive';
|
|
5
|
+
import { DefinedNamesDirective } from './definednames.directive';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare const inputs: string[];
|
|
8
|
+
export declare const outputs: string[];
|
|
9
|
+
export declare const twoWays: string[];
|
|
10
|
+
/**
|
|
11
|
+
* `ejs-spreadsheet` represents the Angular Spreadsheet Component.
|
|
12
|
+
* ```html
|
|
13
|
+
* <ejs-spreadsheet></ejs-spreadsheet>
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare class SpreadsheetComponent extends Spreadsheet implements IComponentBase {
|
|
17
|
+
private ngEle;
|
|
18
|
+
private srenderer;
|
|
19
|
+
private viewContainerRef;
|
|
20
|
+
private injector;
|
|
21
|
+
context: any;
|
|
22
|
+
tagObjects: any;
|
|
23
|
+
actionBegin: any;
|
|
24
|
+
actionComplete: any;
|
|
25
|
+
afterHyperlinkClick: any;
|
|
26
|
+
afterHyperlinkCreate: any;
|
|
27
|
+
beforeCellFormat: any;
|
|
28
|
+
beforeCellRender: any;
|
|
29
|
+
beforeCellSave: any;
|
|
30
|
+
beforeCellUpdate: any;
|
|
31
|
+
beforeConditionalFormat: any;
|
|
32
|
+
beforeDataBound: any;
|
|
33
|
+
beforeHyperlinkClick: any;
|
|
34
|
+
beforeHyperlinkCreate: any;
|
|
35
|
+
beforeOpen: any;
|
|
36
|
+
beforeSave: any;
|
|
37
|
+
beforeSelect: any;
|
|
38
|
+
beforeSort: any;
|
|
39
|
+
cellEdit: any;
|
|
40
|
+
cellEdited: any;
|
|
41
|
+
cellEditing: any;
|
|
42
|
+
cellSave: any;
|
|
43
|
+
contextMenuBeforeClose: any;
|
|
44
|
+
contextMenuBeforeOpen: any;
|
|
45
|
+
contextMenuItemSelect: any;
|
|
46
|
+
created: any;
|
|
47
|
+
dataBound: any;
|
|
48
|
+
dataSourceChanged: any;
|
|
49
|
+
dialogBeforeOpen: any;
|
|
50
|
+
fileMenuBeforeClose: any;
|
|
51
|
+
fileMenuBeforeOpen: any;
|
|
52
|
+
fileMenuItemSelect: any;
|
|
53
|
+
openComplete: any;
|
|
54
|
+
openFailure: any;
|
|
55
|
+
queryCellInfo: any;
|
|
56
|
+
saveComplete: any;
|
|
57
|
+
select: any;
|
|
58
|
+
sortComplete: any;
|
|
59
|
+
childSheets: QueryList<SheetsDirective>;
|
|
60
|
+
childDefinedNames: QueryList<DefinedNamesDirective>;
|
|
61
|
+
tags: string[];
|
|
62
|
+
template: any;
|
|
63
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
64
|
+
ngOnInit(): void;
|
|
65
|
+
ngAfterViewInit(): void;
|
|
66
|
+
ngOnDestroy(): void;
|
|
67
|
+
ngAfterContentChecked(): void;
|
|
68
|
+
registerEvents: (eventList: string[]) => void;
|
|
69
|
+
addTwoWay: (propList: string[]) => void;
|
|
70
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SpreadsheetComponent, never>;
|
|
71
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SpreadsheetComponent, "ejs-spreadsheet", never, { "activeSheetIndex": "activeSheetIndex"; "allowAutoFill": "allowAutoFill"; "allowCellFormatting": "allowCellFormatting"; "allowChart": "allowChart"; "allowConditionalFormat": "allowConditionalFormat"; "allowDataValidation": "allowDataValidation"; "allowDelete": "allowDelete"; "allowEditing": "allowEditing"; "allowFiltering": "allowFiltering"; "allowFindAndReplace": "allowFindAndReplace"; "allowFreezePane": "allowFreezePane"; "allowHyperlink": "allowHyperlink"; "allowImage": "allowImage"; "allowInsert": "allowInsert"; "allowMerge": "allowMerge"; "allowNumberFormatting": "allowNumberFormatting"; "allowOpen": "allowOpen"; "allowPrint": "allowPrint"; "allowResizing": "allowResizing"; "allowSave": "allowSave"; "allowScrolling": "allowScrolling"; "allowSorting": "allowSorting"; "allowUndoRedo": "allowUndoRedo"; "allowWrap": "allowWrap"; "autoFillSettings": "autoFillSettings"; "calculationMode": "calculationMode"; "cellStyle": "cellStyle"; "cssClass": "cssClass"; "currencyCode": "currencyCode"; "definedNames": "definedNames"; "enableClipboard": "enableClipboard"; "enableContextMenu": "enableContextMenu"; "enableKeyboardNavigation": "enableKeyboardNavigation"; "enableKeyboardShortcut": "enableKeyboardShortcut"; "enableNotes": "enableNotes"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "height": "height"; "isProtected": "isProtected"; "listSeparator": "listSeparator"; "locale": "locale"; "openSettings": "openSettings"; "openUrl": "openUrl"; "password": "password"; "saveUrl": "saveUrl"; "scrollSettings": "scrollSettings"; "selectionSettings": "selectionSettings"; "sheets": "sheets"; "showAggregate": "showAggregate"; "showFormulaBar": "showFormulaBar"; "showRibbon": "showRibbon"; "showSheetTabs": "showSheetTabs"; "width": "width"; }, { "actionBegin": "actionBegin"; "actionComplete": "actionComplete"; "afterHyperlinkClick": "afterHyperlinkClick"; "afterHyperlinkCreate": "afterHyperlinkCreate"; "beforeCellFormat": "beforeCellFormat"; "beforeCellRender": "beforeCellRender"; "beforeCellSave": "beforeCellSave"; "beforeCellUpdate": "beforeCellUpdate"; "beforeConditionalFormat": "beforeConditionalFormat"; "beforeDataBound": "beforeDataBound"; "beforeHyperlinkClick": "beforeHyperlinkClick"; "beforeHyperlinkCreate": "beforeHyperlinkCreate"; "beforeOpen": "beforeOpen"; "beforeSave": "beforeSave"; "beforeSelect": "beforeSelect"; "beforeSort": "beforeSort"; "cellEdit": "cellEdit"; "cellEdited": "cellEdited"; "cellEditing": "cellEditing"; "cellSave": "cellSave"; "contextMenuBeforeClose": "contextMenuBeforeClose"; "contextMenuBeforeOpen": "contextMenuBeforeOpen"; "contextMenuItemSelect": "contextMenuItemSelect"; "created": "created"; "dataBound": "dataBound"; "dataSourceChanged": "dataSourceChanged"; "dialogBeforeOpen": "dialogBeforeOpen"; "fileMenuBeforeClose": "fileMenuBeforeClose"; "fileMenuBeforeOpen": "fileMenuBeforeOpen"; "fileMenuItemSelect": "fileMenuItemSelect"; "openComplete": "openComplete"; "openFailure": "openFailure"; "queryCellInfo": "queryCellInfo"; "saveComplete": "saveComplete"; "select": "select"; "sortComplete": "sortComplete"; }, ["template", "childSheets", "childDefinedNames"], never>;
|
|
72
|
+
}
|
|
@@ -1,5 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./spreadsheet.component";
|
|
3
|
+
import * as i2 from "./image.directive";
|
|
4
|
+
import * as i3 from "./chart.directive";
|
|
5
|
+
import * as i4 from "./cells.directive";
|
|
6
|
+
import * as i5 from "./rows.directive";
|
|
7
|
+
import * as i6 from "./columns.directive";
|
|
8
|
+
import * as i7 from "./ranges.directive";
|
|
9
|
+
import * as i8 from "./conditionalformats.directive";
|
|
10
|
+
import * as i9 from "./sheets.directive";
|
|
11
|
+
import * as i10 from "./definednames.directive";
|
|
12
|
+
import * as i11 from "@angular/common";
|
|
13
|
+
/**
|
|
14
|
+
* NgModule definition for the Spreadsheet component.
|
|
15
|
+
*/
|
|
16
|
+
export declare class SpreadsheetModule {
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SpreadsheetModule, never>;
|
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SpreadsheetModule, [typeof i1.SpreadsheetComponent, typeof i2.ImageDirective, typeof i2.ImagesDirective, typeof i3.ChartDirective, typeof i3.ChartsDirective, typeof i4.CellDirective, typeof i4.CellsDirective, typeof i5.RowDirective, typeof i5.RowsDirective, typeof i6.ColumnDirective, typeof i6.ColumnsDirective, typeof i7.RangeDirective, typeof i7.RangesDirective, typeof i8.ConditionalFormatDirective, typeof i8.ConditionalFormatsDirective, typeof i9.SheetDirective, typeof i9.SheetsDirective, typeof i10.DefinedNameDirective, typeof i10.DefinedNamesDirective], [typeof i11.CommonModule], [typeof i1.SpreadsheetComponent, typeof i2.ImageDirective, typeof i2.ImagesDirective, typeof i3.ChartDirective, typeof i3.ChartsDirective, typeof i4.CellDirective, typeof i4.CellsDirective, typeof i5.RowDirective, typeof i5.RowsDirective, typeof i6.ColumnDirective, typeof i6.ColumnsDirective, typeof i7.RangeDirective, typeof i7.RangesDirective, typeof i8.ConditionalFormatDirective, typeof i8.ConditionalFormatsDirective, typeof i9.SheetDirective, typeof i9.SheetsDirective, typeof i10.DefinedNameDirective, typeof i10.DefinedNamesDirective]>;
|
|
19
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SpreadsheetModule>;
|
|
20
|
+
}
|