@progress/kendo-angular-spreadsheet 19.1.2-develop.3 → 19.1.2-develop.5
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/directives.d.ts +18 -1
- package/esm2022/directives.mjs +18 -1
- package/esm2022/localization/custom-messages.component.mjs +10 -1
- package/esm2022/localization/messages.mjs +111 -111
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/spreadsheet.component.mjs +12 -4
- package/esm2022/spreadsheet.module.mjs +11 -2
- package/esm2022/tools/colorpicker/spreadsheet-backcolor.component.mjs +4 -1
- package/esm2022/tools/colorpicker/spreadsheet-forecolor.component.mjs +4 -1
- package/esm2022/tools/font-family/spreadsheet-fontfamily-tool.component.mjs +2 -3
- package/esm2022/tools/font-size/spreadsheet-fontsize-tool.component.mjs +2 -3
- package/esm2022/utils.mjs +1 -1
- package/fesm2022/progress-kendo-angular-spreadsheet.mjs +177 -130
- package/localization/custom-messages.component.d.ts +10 -1
- package/localization/messages.d.ts +111 -111
- package/models/events.d.ts +14 -14
- package/models/main-menu-item.d.ts +5 -4
- package/package.json +17 -17
- package/schematics/ngAdd/index.js +2 -2
- package/spreadsheet.component.d.ts +12 -4
- package/spreadsheet.module.d.ts +11 -2
- package/tools/colorpicker/spreadsheet-backcolor.component.d.ts +4 -1
- package/tools/colorpicker/spreadsheet-forecolor.component.d.ts +4 -1
- package/tools/font-family/spreadsheet-fontfamily-tool.component.d.ts +2 -3
- package/tools/font-size/spreadsheet-fontsize-tool.component.d.ts +2 -3
@@ -4,16 +4,17 @@
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
/**
|
6
6
|
* The configuration object for customizing the built-in menu items.
|
7
|
-
*
|
7
|
+
* Lets you render a specific set of menu items in the desired order and choose the initially active one.
|
8
8
|
*/
|
9
9
|
export interface SpreadsheetMainMenuItem {
|
10
10
|
/**
|
11
|
-
*
|
11
|
+
* Specifies the built-in menu item identifier.
|
12
12
|
*/
|
13
13
|
id: 'file' | 'home' | 'insert' | 'format' | 'view' | 'data';
|
14
14
|
/**
|
15
|
-
* Determines
|
16
|
-
* If
|
15
|
+
* Determines if the menu item is initially active.
|
16
|
+
* If no item is set as active, the first one is active by default.
|
17
|
+
* If more than one item is set as active, the first of them is active.
|
17
18
|
*/
|
18
19
|
active?: boolean;
|
19
20
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-spreadsheet",
|
3
|
-
"version": "19.1.2-develop.
|
3
|
+
"version": "19.1.2-develop.5",
|
4
4
|
"description": "A Spreadsheet Component for Angular",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -19,7 +19,7 @@
|
|
19
19
|
"package": {
|
20
20
|
"productName": "Kendo UI for Angular",
|
21
21
|
"productCode": "KENDOUIANGULAR",
|
22
|
-
"publishDate":
|
22
|
+
"publishDate": 1750430963,
|
23
23
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"
|
24
24
|
}
|
25
25
|
},
|
@@ -29,25 +29,25 @@
|
|
29
29
|
"@angular/core": "16 - 20",
|
30
30
|
"@angular/platform-browser": "16 - 20",
|
31
31
|
"@progress/kendo-licensing": "^1.5.0",
|
32
|
-
"@progress/kendo-angular-buttons": "19.1.2-develop.
|
33
|
-
"@progress/kendo-angular-common": "19.1.2-develop.
|
34
|
-
"@progress/kendo-angular-dialog": "19.1.2-develop.
|
35
|
-
"@progress/kendo-angular-dropdowns": "19.1.2-develop.
|
36
|
-
"@progress/kendo-angular-icons": "19.1.2-develop.
|
37
|
-
"@progress/kendo-angular-inputs": "19.1.2-develop.
|
38
|
-
"@progress/kendo-angular-dateinputs": "19.1.2-develop.
|
39
|
-
"@progress/kendo-angular-intl": "19.1.2-develop.
|
40
|
-
"@progress/kendo-angular-l10n": "19.1.2-develop.
|
41
|
-
"@progress/kendo-angular-label": "19.1.2-develop.
|
42
|
-
"@progress/kendo-angular-layout": "19.1.2-develop.
|
43
|
-
"@progress/kendo-angular-menu": "19.1.2-develop.
|
44
|
-
"@progress/kendo-angular-popup": "19.1.2-develop.
|
45
|
-
"@progress/kendo-angular-toolbar": "19.1.2-develop.
|
32
|
+
"@progress/kendo-angular-buttons": "19.1.2-develop.5",
|
33
|
+
"@progress/kendo-angular-common": "19.1.2-develop.5",
|
34
|
+
"@progress/kendo-angular-dialog": "19.1.2-develop.5",
|
35
|
+
"@progress/kendo-angular-dropdowns": "19.1.2-develop.5",
|
36
|
+
"@progress/kendo-angular-icons": "19.1.2-develop.5",
|
37
|
+
"@progress/kendo-angular-inputs": "19.1.2-develop.5",
|
38
|
+
"@progress/kendo-angular-dateinputs": "19.1.2-develop.5",
|
39
|
+
"@progress/kendo-angular-intl": "19.1.2-develop.5",
|
40
|
+
"@progress/kendo-angular-l10n": "19.1.2-develop.5",
|
41
|
+
"@progress/kendo-angular-label": "19.1.2-develop.5",
|
42
|
+
"@progress/kendo-angular-layout": "19.1.2-develop.5",
|
43
|
+
"@progress/kendo-angular-menu": "19.1.2-develop.5",
|
44
|
+
"@progress/kendo-angular-popup": "19.1.2-develop.5",
|
45
|
+
"@progress/kendo-angular-toolbar": "19.1.2-develop.5",
|
46
46
|
"rxjs": "^6.5.3 || ^7.0.0"
|
47
47
|
},
|
48
48
|
"dependencies": {
|
49
49
|
"tslib": "^2.3.1",
|
50
|
-
"@progress/kendo-angular-schematics": "19.1.2-develop.
|
50
|
+
"@progress/kendo-angular-schematics": "19.1.2-develop.5",
|
51
51
|
"@progress/jszip-esm": "^1.0.3",
|
52
52
|
"@progress/kendo-common": "^1.0.1",
|
53
53
|
"@progress/kendo-date-math": "^1.5.10",
|
@@ -6,8 +6,8 @@ function default_1(options) {
|
|
6
6
|
// Peer dependency of icons
|
7
7
|
'@progress/kendo-svg-icons': '^4.0.0',
|
8
8
|
// peer deps of the dropdowns
|
9
|
-
'@progress/kendo-angular-navigation': '19.1.2-develop.
|
10
|
-
'@progress/kendo-angular-treeview': '19.1.2-develop.
|
9
|
+
'@progress/kendo-angular-navigation': '19.1.2-develop.5',
|
10
|
+
'@progress/kendo-angular-treeview': '19.1.2-develop.5'
|
11
11
|
} });
|
12
12
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
13
13
|
}
|
@@ -17,6 +17,14 @@ import { ErrorHandlingService } from './common/error-handling.service';
|
|
17
17
|
import * as i0 from "@angular/core";
|
18
18
|
/**
|
19
19
|
* Represents the [Kendo UI Spreadsheet component for Angular]({% slug overview_spreadsheet %}).
|
20
|
+
*
|
21
|
+
* @example
|
22
|
+
* ```html
|
23
|
+
* <kendo-spreadsheet [sheets]="sheets"></kendo-spreadsheet>
|
24
|
+
* ```
|
25
|
+
*
|
26
|
+
* @remarks
|
27
|
+
* Supported children components are: {@link CustomMessagesComponent}
|
20
28
|
*/
|
21
29
|
export declare class SpreadsheetComponent implements AfterViewInit, OnChanges {
|
22
30
|
private ngZone;
|
@@ -59,7 +67,7 @@ export declare class SpreadsheetComponent implements AfterViewInit, OnChanges {
|
|
59
67
|
set activeSheet(value: string);
|
60
68
|
get activeSheet(): string;
|
61
69
|
/**
|
62
|
-
* An array
|
70
|
+
* An array of `SheetDescriptor` objects that describe the sheets in the Spreadsheet.
|
63
71
|
*/
|
64
72
|
set sheets(value: SheetDescriptor[]);
|
65
73
|
get sheetsInfo(): SheetInfo[];
|
@@ -130,18 +138,18 @@ export declare class SpreadsheetComponent implements AfterViewInit, OnChanges {
|
|
130
138
|
/**
|
131
139
|
* Fired when the end user clicks the Export to Excel toolbar button.
|
132
140
|
* The event is preventable and exposes the `Workbook` object, a `preventDefault` method
|
133
|
-
* (if invoked, the generated file will not be saved), and the SpreadsheetWidget instance.
|
141
|
+
* (if invoked, the generated file will not be saved), and the `SpreadsheetWidget` instance.
|
134
142
|
*/
|
135
143
|
excelExport: EventEmitter<SpreadsheetExcelExportEvent>;
|
136
144
|
/**
|
137
145
|
* Fired when the end user clicks the Open toolbar button.
|
138
146
|
* The event is preventable and exposes the selected `File` or `Blob`, a `preventDefault` method
|
139
|
-
* (if invoked, the selected file will not be loaded), and the SpreadsheetWidget instance.
|
147
|
+
* (if invoked, the selected file will not be loaded), and the `SpreadsheetWidget` instance.
|
140
148
|
*/
|
141
149
|
excelImport: EventEmitter<SpreadsheetExcelImportEvent>;
|
142
150
|
/**
|
143
151
|
* Fired when the active sheet is about to change.
|
144
|
-
* The event exposes the new active `Sheet` and the SpreadsheetWidget instance.
|
152
|
+
* The event exposes the new active `Sheet` and the `SpreadsheetWidget` instance.
|
145
153
|
*/
|
146
154
|
activeSheetChange: EventEmitter<SpreadsheetActiveSheetChangeEvent>;
|
147
155
|
formulaFxIcon: SVGIcon;
|
package/spreadsheet.module.d.ts
CHANGED
@@ -36,8 +36,17 @@ import * as i30 from "./tools/decrease-decimal-tool.directive";
|
|
36
36
|
import * as i31 from "./tools/align/horizontal-align-tool.directive";
|
37
37
|
import * as i32 from "./tools/align/vertical-align-tool.directive";
|
38
38
|
/**
|
39
|
-
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
40
|
-
*
|
39
|
+
* Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi']) definition for the Spreadsheet component.
|
40
|
+
*
|
41
|
+
* @example
|
42
|
+
* ```typescript
|
43
|
+
* import { SpreadsheetModule } from '@progress/kendo-angular-spreadsheet';
|
44
|
+
*
|
45
|
+
* @NgModule({
|
46
|
+
* imports: [SpreadsheetModule]
|
47
|
+
* })
|
48
|
+
* export class AppModule {}
|
49
|
+
* ```
|
41
50
|
*/
|
42
51
|
export declare class SpreadsheetModule {
|
43
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpreadsheetModule, never>;
|
@@ -10,7 +10,10 @@ import { SpreadsheetDropDownToolBase } from '../shared/spreadsheet-dropdown-tool
|
|
10
10
|
import { DialogService } from '@progress/kendo-angular-dialog';
|
11
11
|
import * as i0 from "@angular/core";
|
12
12
|
/**
|
13
|
-
* A component which
|
13
|
+
* A component which configures an existing `ColorPickerComponent` as a Spreadsheet tool to change the background color.
|
14
|
+
*
|
15
|
+
* The component associates a `kendo-colorpicker` with a Spreadsheet command that changes the background color of a content block and
|
16
|
+
* automatically defines the options of the color picker and sets its values. [See example](slug:toolbar_tools_spreadsheet#home-menu-item-tools).
|
14
17
|
* @hidden
|
15
18
|
*/
|
16
19
|
export declare class SpreadsheetBackColorComponent extends SpreadsheetDropDownToolBase {
|
@@ -10,7 +10,10 @@ import { SpreadsheetToolsService } from '../tools.service';
|
|
10
10
|
import { SpreadsheetDropDownToolBase } from '../shared/spreadsheet-dropdown-tools-base';
|
11
11
|
import * as i0 from "@angular/core";
|
12
12
|
/**
|
13
|
-
* A component which
|
13
|
+
* A component which configures an existing `ColorPickerComponent` as a Spreadsheet tool to change the text color.
|
14
|
+
*
|
15
|
+
* The component associates a `kendo-colorpicker` with a Spreadsheet command that changes the foreground color of a content block and
|
16
|
+
* automatically defines the options of the color picker and sets its values. [See example](slug:toolbar_tools_spreadsheet#home-menu-item-tools).
|
14
17
|
* @hidden
|
15
18
|
*/
|
16
19
|
export declare class SpreadsheetForeColorComponent extends SpreadsheetDropDownToolBase {
|
@@ -10,10 +10,9 @@ import { SpreadsheetToolsService } from '../tools.service';
|
|
10
10
|
import { SpreadsheetDropDownToolBase } from '../shared/spreadsheet-dropdown-tools-base';
|
11
11
|
import * as i0 from "@angular/core";
|
12
12
|
/**
|
13
|
-
* A component which configures an existing `DropDownListComponent` as a Spreadsheet tool
|
14
|
-
* ([see example](ToDo).
|
13
|
+
* A component which configures an existing `DropDownListComponent` as a Spreadsheet tool.
|
15
14
|
* The component associates a `kendo-toolbar-dropdownlist` with a Spreadsheet command that changes the font family of a content block and
|
16
|
-
* automatically defines the options of the drop-down list and sets its values
|
15
|
+
* automatically defines the options of the drop-down list and sets its values. [See example](slug:toolbar_tools_spreadsheet#home-menu-item-tools).
|
17
16
|
*
|
18
17
|
* @hidden
|
19
18
|
*/
|
@@ -10,10 +10,9 @@ import { SpreadsheetToolsService } from '../tools.service';
|
|
10
10
|
import { SpreadsheetDropDownToolBase } from '../shared/spreadsheet-dropdown-tools-base';
|
11
11
|
import * as i0 from "@angular/core";
|
12
12
|
/**
|
13
|
-
* A component which configures an existing `DropDownListComponent` as a Spreadsheet tool
|
14
|
-
* ([see example](ToDo).
|
13
|
+
* A component which configures an existing `DropDownListComponent` as a Spreadsheet tool.
|
15
14
|
* The component associates a `kendo-toolbar-dropdownlist` with a Spreadsheet command that changes the font size of a content block and
|
16
|
-
* automatically defines the options of the drop-down list and sets its values
|
15
|
+
* automatically defines the options of the drop-down list and sets its values. [See example](slug:toolbar_tools_spreadsheet#home-menu-item-tools).
|
17
16
|
*
|
18
17
|
* @hidden
|
19
18
|
*/
|