@progress/kendo-angular-pivotgrid 19.1.2-develop.4 → 19.1.2-develop.6

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.
Files changed (38) hide show
  1. package/data-binding/base-binding-directive.d.ts +13 -10
  2. package/data-binding/local-binding.directive.d.ts +19 -4
  3. package/data-binding/olap-binding.directive.d.ts +20 -4
  4. package/directives.d.ts +17 -1
  5. package/esm2022/data-binding/base-binding-directive.mjs +13 -10
  6. package/esm2022/data-binding/local-binding.directive.mjs +19 -4
  7. package/esm2022/data-binding/olap-binding.directive.mjs +20 -4
  8. package/esm2022/directives.mjs +17 -1
  9. package/esm2022/localization/custom-messages.component.mjs +14 -1
  10. package/esm2022/localization/messages.mjs +48 -84
  11. package/esm2022/models/configuration-change-event.mjs +6 -6
  12. package/esm2022/models/expanded-change-event.mjs +4 -4
  13. package/esm2022/package-metadata.mjs +2 -2
  14. package/esm2022/pivotgrid.component.mjs +27 -13
  15. package/esm2022/pivotgrid.module.mjs +7 -18
  16. package/esm2022/rendering/templates/pivotgrid-cell-template.directive.mjs +11 -10
  17. package/esm2022/rendering/templates/pivotgrid-column-header-cell-template.directive.mjs +11 -10
  18. package/esm2022/rendering/templates/pivotgrid-row-header-cell-template.directive.mjs +11 -10
  19. package/esm2022/rendering/templates/pivotgrid-value-cell-template.directive.mjs +10 -9
  20. package/esm2022/util.mjs +1 -1
  21. package/fesm2022/progress-kendo-angular-pivotgrid.mjs +221 -187
  22. package/localization/custom-messages.component.d.ts +14 -1
  23. package/localization/messages.d.ts +48 -84
  24. package/models/configuration-change-event.d.ts +6 -6
  25. package/models/configurator-position.d.ts +1 -1
  26. package/models/configurator-settings.d.ts +4 -4
  27. package/models/data-row-item.d.ts +3 -3
  28. package/models/expanded-change-event.d.ts +4 -4
  29. package/models/loader-settings.d.ts +19 -7
  30. package/models/virtualization-settings.d.ts +14 -5
  31. package/package.json +13 -13
  32. package/pivotgrid.component.d.ts +27 -13
  33. package/pivotgrid.module.d.ts +7 -18
  34. package/rendering/templates/pivotgrid-cell-template.directive.d.ts +11 -10
  35. package/rendering/templates/pivotgrid-column-header-cell-template.directive.d.ts +11 -10
  36. package/rendering/templates/pivotgrid-row-header-cell-template.directive.d.ts +11 -10
  37. package/rendering/templates/pivotgrid-value-cell-template.directive.d.ts +10 -9
  38. package/schematics/ngAdd/index.js +2 -2
@@ -35,29 +35,18 @@ import * as i26 from "./rendering/templates/pivotgrid-column-header-cell-templat
35
35
  *
36
36
  * @example
37
37
  *
38
- * ```ts-no-run
39
- * // Import the PivotGrid module
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
- * // Define the app module
51
- * _@NgModule({
52
- * declarations: [AppComponent], // declare app component
53
- * imports: [BrowserModule, PivotGridModule], // import PivotGrid module
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
- * The template context is set to the current cell item and the following additional fields are passed:
13
- * - `cellItem`&mdash;The current cell item. Represents the default context that will be assigned to any template variable which utilizes the `let-x` syntax&mdash;for example, `let-cellItem`.
14
- * - `columnIndex`&mdash;The current column index. Use it as an alias for a template variable by utilizing the `let-columnIndex="columnIndex"` syntax.
15
- * - `rowIndex`&mdash;The current data row index. Use it as an alias for a template variable by utilizing the `let-rowIndex="rowIndex"` syntax.
16
- * - `expanded`&mdash;The expanded state of the cell. Use it as an alias for a template variable by utilizing the `let-expanded="expanded"` syntax.
17
- * - `tableType`&mdash;The table type. Use it as an alias for a template variable by utilizing the `let-tableType="tableType"` syntax.
18
- * - `text`&mdash;The default cell text. Use it as an alias for a template variable by utilizing the `let-text="text"` syntax.
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`&mdash;The current cell item. This is the default template context that you can access with any `let-x` syntax&mdash;for example, `let-cellItem`.
15
+ * - `columnIndex`&mdash;The current column index. Use `let-columnIndex="columnIndex"` to access this variable in your template.
16
+ * - `rowIndex`&mdash;The current row index. Use `let-rowIndex="rowIndex"` to access this variable in your template.
17
+ * - `expanded`&mdash;The expanded state of the cell. Use `let-expanded="expanded"` to access this boolean variable in your template.
18
+ * - `tableType`&mdash;The table type identifier. Use `let-tableType="tableType"` to access this variable in your template.
19
+ * - `text`&mdash;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
- * The template context is set to the current cell item and the following additional fields are passed:
13
- * - `cellItem`&mdash;The current cell item. Represents the default context that will be assigned to any template variable which utilizes the `let-x` syntax&mdash;for example, `let-cellItem`.
14
- * - `columnIndex`&mdash;The current column index. Use it as an alias for a template variable by utilizing the `let-columnIndex="columnIndex"` syntax.
15
- * - `rowIndex`&mdash;The current data row index. Use it as an alias for a template variable by utilizing the `let-rowIndex="rowIndex"` syntax.
16
- * - `expanded`&mdash;The expanded state of the cell. Use it as an alias for a template variable by utilizing the `let-expanded="expanded"` syntax.
17
- * - `tableType`&mdash;The table type. Use it as an alias for a template variable by utilizing the `let-tableType="tableType"` syntax.
18
- * - `text`&mdash;The default cell text. Use it as an alias for a template variable by utilizing the `let-text="text"` syntax.
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`&mdash;The current cell item. This is the default template context that you can access with any `let-x` syntax&mdash;for example, `let-cellItem`.
15
+ * - `columnIndex`&mdash;The current column index. Use `let-columnIndex="columnIndex"` to access this variable in your template.
16
+ * - `rowIndex`&mdash;The current row index. Use `let-rowIndex="rowIndex"` to access this variable in your template.
17
+ * - `expanded`&mdash;The expanded state of the cell. Use `let-expanded="expanded"` to access this boolean variable in your template.
18
+ * - `tableType`&mdash;The table type identifier. Use `let-tableType="tableType"` to access this variable in your template.
19
+ * - `text`&mdash;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
- * The template context is set to the current cell item and the following additional fields are passed:
13
- * - `cellItem`&mdash;The current cell item. Represents the default context that will be assigned to any template variable which utilizes the `let-x` syntax&mdash;for example, `let-cellItem`.
14
- * - `columnIndex`&mdash;The current column index. Use it as an alias for a template variable by utilizing the `let-columnIndex="columnIndex"` syntax.
15
- * - `rowIndex`&mdash;The current data row index. Use it as an alias for a template variable by utilizing the `let-rowIndex="rowIndex"` syntax.
16
- * - `expanded`&mdash;The expanded state of the cell. Use it as an alias for a template variable by utilizing the `let-expanded="expanded"` syntax.
17
- * - `tableType`&mdash;The table type. Use it as an alias for a template variable by utilizing the `let-tableType="tableType"` syntax.
18
- * - `text`&mdash;The default cell text. Use it as an alias for a template variable by utilizing the `let-text="text"` syntax.
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`&mdash;The current cell item. This is the default template context that you can access with any `let-x` syntax&mdash;for example, `let-cellItem`.
15
+ * - `columnIndex`&mdash;The current column index. Use `let-columnIndex="columnIndex"` to access this variable in your template.
16
+ * - `rowIndex`&mdash;The current row index. Use `let-rowIndex="rowIndex"` to access this variable in your template.
17
+ * - `expanded`&mdash;The expanded state of the cell. Use `let-expanded="expanded"` to access this boolean variable in your template.
18
+ * - `tableType`&mdash;The table type identifier. Use `let-tableType="tableType"` to access this variable in your template.
19
+ * - `text`&mdash;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
- * The template context is set to the current cell item and the following additional fields are passed:
13
- * - `cellItem`&mdash;The current cell item. Represents the default context that will be assigned to any template variable which utilizes the `let-x` syntax&mdash;for example, `let-cellItem`.
14
- * - `columnIndex`&mdash;The current column index. Use it as an alias for a template variable by utilizing the `let-columnIndex="columnIndex"` syntax.
15
- * - `rowIndex`&mdash;The current data row index. Use it as an alias for a template variable by utilizing the `let-rowIndex="rowIndex"` syntax.
16
- * - `tableType`&mdash;The table type. Use it as an alias for a template variable by utilizing the `let-tableType="tableType"` syntax.
17
- * - `value`&mdash;The default cell value. Use it as an alias for a template variable by utilizing the `let-value="value"` syntax.
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`&mdash;The current cell item. This is the default template context that you can access with any `let-x` syntax&mdash;for example, `let-cellItem`.
15
+ * - `columnIndex`&mdash;The current column index. Use `let-columnIndex="columnIndex"` to access this variable in your template.
16
+ * - `rowIndex`&mdash;The current row index. Use `let-rowIndex="rowIndex"` to access this variable in your template.
17
+ * - `tableType`&mdash;The table type identifier. Use `let-tableType="tableType"` to access this variable in your template.
18
+ * - `value`&mdash;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.4',
9
+ '@progress/kendo-angular-dialog': '19.1.2-develop.6',
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.4'
13
+ '@progress/kendo-angular-navigation': '19.1.2-develop.6'
14
14
  } });
15
15
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
16
16
  }