@progress/kendo-angular-pivotgrid 19.1.2-develop.4 → 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/data-binding/base-binding-directive.d.ts +13 -10
- package/data-binding/local-binding.directive.d.ts +19 -4
- package/data-binding/olap-binding.directive.d.ts +20 -4
- package/directives.d.ts +17 -1
- package/esm2022/data-binding/base-binding-directive.mjs +13 -10
- package/esm2022/data-binding/local-binding.directive.mjs +19 -4
- package/esm2022/data-binding/olap-binding.directive.mjs +20 -4
- package/esm2022/directives.mjs +17 -1
- package/esm2022/localization/custom-messages.component.mjs +14 -1
- package/esm2022/localization/messages.mjs +48 -84
- package/esm2022/models/configuration-change-event.mjs +6 -6
- package/esm2022/models/expanded-change-event.mjs +4 -4
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/pivotgrid.component.mjs +27 -13
- package/esm2022/pivotgrid.module.mjs +7 -18
- package/esm2022/rendering/templates/pivotgrid-cell-template.directive.mjs +11 -10
- package/esm2022/rendering/templates/pivotgrid-column-header-cell-template.directive.mjs +11 -10
- package/esm2022/rendering/templates/pivotgrid-row-header-cell-template.directive.mjs +11 -10
- package/esm2022/rendering/templates/pivotgrid-value-cell-template.directive.mjs +10 -9
- package/esm2022/util.mjs +1 -1
- package/fesm2022/progress-kendo-angular-pivotgrid.mjs +221 -187
- package/localization/custom-messages.component.d.ts +14 -1
- package/localization/messages.d.ts +48 -84
- package/models/configuration-change-event.d.ts +6 -6
- package/models/configurator-position.d.ts +1 -1
- package/models/configurator-settings.d.ts +4 -4
- package/models/data-row-item.d.ts +3 -3
- package/models/expanded-change-event.d.ts +4 -4
- package/models/loader-settings.d.ts +19 -7
- package/models/virtualization-settings.d.ts +14 -5
- package/package.json +13 -13
- package/pivotgrid.component.d.ts +27 -13
- package/pivotgrid.module.d.ts +7 -18
- package/rendering/templates/pivotgrid-cell-template.directive.d.ts +11 -10
- package/rendering/templates/pivotgrid-column-header-cell-template.directive.d.ts +11 -10
- package/rendering/templates/pivotgrid-row-header-cell-template.directive.d.ts +11 -10
- package/rendering/templates/pivotgrid-value-cell-template.directive.d.ts +10 -9
- package/schematics/ngAdd/index.js +2 -2
package/pivotgrid.module.d.ts
CHANGED
@@ -35,29 +35,18 @@ import * as i26 from "./rendering/templates/pivotgrid-column-header-cell-templat
|
|
35
35
|
*
|
36
36
|
* @example
|
37
37
|
*
|
38
|
-
* ```
|
39
|
-
*
|
40
|
-
* import { PivotGrid } from '@progress/kendo-angular-pivotgrid';
|
41
|
-
*
|
42
|
-
* // The browser platform with a compiler
|
43
|
-
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
44
|
-
*
|
38
|
+
* ```typescript
|
39
|
+
* import { BrowserModule } from '@angular/platform-browser';
|
45
40
|
* import { NgModule } from '@angular/core';
|
46
|
-
*
|
47
|
-
* // Import the app component
|
48
41
|
* import { AppComponent } from './app.component';
|
42
|
+
* import { PivotGridModule } from '@progress/kendo-angular-pivotgrid';
|
49
43
|
*
|
50
|
-
*
|
51
|
-
*
|
52
|
-
*
|
53
|
-
*
|
54
|
-
* bootstrap: [AppComponent]
|
44
|
+
* @NgModule({
|
45
|
+
* declarations: [AppComponent],
|
46
|
+
* imports: [BrowserModule, PivotGridModule],
|
47
|
+
* bootstrap: [AppComponent]
|
55
48
|
* })
|
56
49
|
* export class AppModule {}
|
57
|
-
*
|
58
|
-
* // Compile and launch the module
|
59
|
-
* platformBrowserDynamic().bootstrapModule(AppModule);
|
60
|
-
*
|
61
50
|
* ```
|
62
51
|
*/
|
63
52
|
export declare class PivotGridModule {
|
@@ -5,17 +5,18 @@
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
6
6
|
import * as i0 from "@angular/core";
|
7
7
|
/**
|
8
|
-
* Represents the cell template of the PivotGrid.
|
9
|
-
* Helps to customize the content of the cells. To define the cell template, nest an `<ng-template>` tag with the
|
10
|
-
* `kendoPivotGridCellTemplate` directive inside a `<kendo-pivot-grid>` tag [see example](slug:templates_pivotgrid#toc-cell-template).
|
8
|
+
* Represents the cell template of the PivotGrid. Allows customizing the content of the cells.
|
11
9
|
*
|
12
|
-
*
|
13
|
-
*
|
14
|
-
*
|
15
|
-
*
|
16
|
-
* - `
|
17
|
-
* - `
|
18
|
-
* - `
|
10
|
+
* To define the cell template, nest an `<ng-template>` tag with the
|
11
|
+
* `kendoPivotGridCellTemplate` directive inside a `<kendo-pivot-grid>` tag ([see example](slug:templates_pivotgrid#toc-cell-template)).
|
12
|
+
*
|
13
|
+
* The template context provides the current cell item and the following additional fields:
|
14
|
+
* - `cellItem`—The current cell item. This is the default template context that you can access with any `let-x` syntax—for example, `let-cellItem`.
|
15
|
+
* - `columnIndex`—The current column index. Use `let-columnIndex="columnIndex"` to access this variable in your template.
|
16
|
+
* - `rowIndex`—The current row index. Use `let-rowIndex="rowIndex"` to access this variable in your template.
|
17
|
+
* - `expanded`—The expanded state of the cell. Use `let-expanded="expanded"` to access this boolean variable in your template.
|
18
|
+
* - `tableType`—The table type identifier. Use `let-tableType="tableType"` to access this variable in your template.
|
19
|
+
* - `text`—The default cell text. Use `let-text="text"` to access this variable in your template.
|
19
20
|
*
|
20
21
|
* @example
|
21
22
|
* ```html
|
@@ -5,17 +5,18 @@
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
6
6
|
import * as i0 from "@angular/core";
|
7
7
|
/**
|
8
|
-
* Represents the column header cell template of the PivotGrid.
|
9
|
-
* Helps to customize the content of the column header cells. To define the column header cell template, nest an `<ng-template>` tag with the
|
10
|
-
* `kendoPivotGridColumnHeaderCellTemplate` directive inside a `<kendo-pivot-grid>` tag [see example](slug:templates_pivotgrid#toc-column-header-cell-template).
|
8
|
+
* Represents the column header cell template of the PivotGrid. Allows customizing the content of the column header cells.
|
11
9
|
*
|
12
|
-
*
|
13
|
-
*
|
14
|
-
*
|
15
|
-
*
|
16
|
-
* - `
|
17
|
-
* - `
|
18
|
-
* - `
|
10
|
+
* To define the column header cell template, nest an `<ng-template>` tag with the
|
11
|
+
* `kendoPivotGridColumnHeaderCellTemplate` directive inside a `<kendo-pivot-grid>` tag ([see example](slug:templates_pivotgrid#toc-column-header-cell-template)).
|
12
|
+
*
|
13
|
+
* The template context provides the current cell item and the following additional fields:
|
14
|
+
* - `cellItem`—The current cell item. This is the default template context that you can access with any `let-x` syntax—for example, `let-cellItem`.
|
15
|
+
* - `columnIndex`—The current column index. Use `let-columnIndex="columnIndex"` to access this variable in your template.
|
16
|
+
* - `rowIndex`—The current row index. Use `let-rowIndex="rowIndex"` to access this variable in your template.
|
17
|
+
* - `expanded`—The expanded state of the cell. Use `let-expanded="expanded"` to access this boolean variable in your template.
|
18
|
+
* - `tableType`—The table type identifier. Use `let-tableType="tableType"` to access this variable in your template.
|
19
|
+
* - `text`—The default cell text. Use `let-text="text"` to access this variable in your template.
|
19
20
|
*
|
20
21
|
* @example
|
21
22
|
* ```html
|
@@ -5,17 +5,18 @@
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
6
6
|
import * as i0 from "@angular/core";
|
7
7
|
/**
|
8
|
-
* Represents the row header cell template of the PivotGrid.
|
9
|
-
* Helps to customize the content of the row header cells. To define the row header cell template, nest an `<ng-template>` tag with the
|
10
|
-
* `kendoPivotGridRowHeaderCellTemplate` directive inside a `<kendo-pivot-grid>` tag [see example](slug:templates_pivotgrid#toc-row-header-cell-template).
|
8
|
+
* Represents the row header cell template of the PivotGrid. Allows customizing the content of the row header cells.
|
11
9
|
*
|
12
|
-
*
|
13
|
-
*
|
14
|
-
*
|
15
|
-
*
|
16
|
-
* - `
|
17
|
-
* - `
|
18
|
-
* - `
|
10
|
+
* To define the row header cell template, nest an `<ng-template>` tag with the
|
11
|
+
* `kendoPivotGridRowHeaderCellTemplate` directive inside a `<kendo-pivot-grid>` tag ([see example](slug:templates_pivotgrid#toc-row-header-cell-template)).
|
12
|
+
*
|
13
|
+
* The template context provides the current cell item and the following additional fields:
|
14
|
+
* - `cellItem`—The current cell item. This is the default template context that you can access with any `let-x` syntax—for example, `let-cellItem`.
|
15
|
+
* - `columnIndex`—The current column index. Use `let-columnIndex="columnIndex"` to access this variable in your template.
|
16
|
+
* - `rowIndex`—The current row index. Use `let-rowIndex="rowIndex"` to access this variable in your template.
|
17
|
+
* - `expanded`—The expanded state of the cell. Use `let-expanded="expanded"` to access this boolean variable in your template.
|
18
|
+
* - `tableType`—The table type identifier. Use `let-tableType="tableType"` to access this variable in your template.
|
19
|
+
* - `text`—The default cell text. Use `let-text="text"` to access this variable in your template.
|
19
20
|
*
|
20
21
|
* @example
|
21
22
|
* ```html
|
@@ -5,16 +5,17 @@
|
|
5
5
|
import { TemplateRef } from '@angular/core';
|
6
6
|
import * as i0 from "@angular/core";
|
7
7
|
/**
|
8
|
-
* Represents the value cell template of the PivotGrid.
|
9
|
-
* Helps to customize the content of the value cells. To define the value cell template, nest an `<ng-template>` tag with the
|
10
|
-
* `kendoPivotGridValueCellTemplate` directive inside a `<kendo-pivot-grid>` tag [see example](slug:templates_pivotgrid#toc-value-cell-template).
|
8
|
+
* Represents the value cell template of the PivotGrid. Allows customizing the content of the value cells.
|
11
9
|
*
|
12
|
-
*
|
13
|
-
*
|
14
|
-
*
|
15
|
-
*
|
16
|
-
* - `
|
17
|
-
* - `
|
10
|
+
* To define the value cell template, nest an `<ng-template>` tag with the
|
11
|
+
* `kendoPivotGridValueCellTemplate` directive inside a `<kendo-pivot-grid>` tag ([see example](slug:templates_pivotgrid#toc-value-cell-template)).
|
12
|
+
*
|
13
|
+
* The template context provides the current cell item and the following additional fields:
|
14
|
+
* - `cellItem`—The current cell item. This is the default template context that you can access with any `let-x` syntax—for example, `let-cellItem`.
|
15
|
+
* - `columnIndex`—The current column index. Use `let-columnIndex="columnIndex"` to access this variable in your template.
|
16
|
+
* - `rowIndex`—The current row index. Use `let-rowIndex="rowIndex"` to access this variable in your template.
|
17
|
+
* - `tableType`—The table type identifier. Use `let-tableType="tableType"` to access this variable in your template.
|
18
|
+
* - `value`—The default cell value. Use `let-value="value"` to access this variable in your template.
|
18
19
|
*
|
19
20
|
* @example
|
20
21
|
* ```html
|
@@ -6,11 +6,11 @@ function default_1(options) {
|
|
6
6
|
// Additional dependencies to install.
|
7
7
|
// See https://github.com/telerik/kendo-schematics/issues/28
|
8
8
|
peerDependencies: {
|
9
|
-
'@progress/kendo-angular-dialog': '19.1.2-develop.
|
9
|
+
'@progress/kendo-angular-dialog': '19.1.2-develop.5',
|
10
10
|
// peer dep of the icons
|
11
11
|
'@progress/kendo-svg-icons': '^4.0.0',
|
12
12
|
// peer dep of the dropdowns
|
13
|
-
'@progress/kendo-angular-navigation': '19.1.2-develop.
|
13
|
+
'@progress/kendo-angular-navigation': '19.1.2-develop.5'
|
14
14
|
} });
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
16
16
|
}
|