@progress/kendo-angular-pivotgrid 17.0.0-develop.11 → 17.0.0-develop.13
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/configurator/draggable.directive.d.ts +3 -4
- package/esm2020/configurator/configurator.component.mjs +6 -0
- package/esm2020/configurator/draggable.directive.mjs +4 -5
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-pivotgrid.mjs +11 -6
- package/fesm2020/progress-kendo-angular-pivotgrid.mjs +11 -6
- package/package.json +12 -12
- package/schematics/ngAdd/index.js +2 -2
@@ -2,7 +2,7 @@
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
|
-
import { ElementRef, OnInit, NgZone, OnDestroy, Renderer2
|
5
|
+
import { ElementRef, OnInit, NgZone, OnDestroy, Renderer2 } from '@angular/core';
|
6
6
|
import { DraggableDirective } from '@progress/kendo-angular-common';
|
7
7
|
import { PivotGridAxis } from '@progress/kendo-pivotgrid-common';
|
8
8
|
import { ConfiguratorService } from './configurator.service';
|
@@ -18,7 +18,6 @@ export declare class DraggableChipDirective implements OnInit, OnDestroy {
|
|
18
18
|
private service;
|
19
19
|
private cue;
|
20
20
|
private renderer;
|
21
|
-
private cdr;
|
22
21
|
get pointerEvents(): any;
|
23
22
|
touchActions: string;
|
24
23
|
item: PivotGridAxis;
|
@@ -27,9 +26,9 @@ export declare class DraggableChipDirective implements OnInit, OnDestroy {
|
|
27
26
|
private drag;
|
28
27
|
private invalidTarget;
|
29
28
|
private subs;
|
30
|
-
constructor(draggable: DraggableDirective, element: ElementRef, zone: NgZone, service: ConfiguratorService, cue: DropCueService, renderer: Renderer2
|
29
|
+
constructor(draggable: DraggableDirective, element: ElementRef, zone: NgZone, service: ConfiguratorService, cue: DropCueService, renderer: Renderer2);
|
31
30
|
ngOnInit(): void;
|
32
31
|
ngOnDestroy(): void;
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DraggableChipDirective, [{ optional: true; }, null, null, null, null, null
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DraggableChipDirective, [{ optional: true; }, null, null, null, null, null]>;
|
34
33
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DraggableChipDirective, "[kendoChipDraggable]", never, { "item": "item"; }, {}, never, never, true, never>;
|
35
34
|
}
|
@@ -360,6 +360,7 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
360
360
|
|
361
361
|
<kendo-chiplist
|
362
362
|
*ngIf="state.columnAxes && state.columnAxes.length; else noColumnAxes"
|
363
|
+
[navigable]="false"
|
363
364
|
#columnsChiplist
|
364
365
|
kendoDropTarget
|
365
366
|
class="k-column-fields"
|
@@ -403,6 +404,7 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
403
404
|
|
404
405
|
<kendo-chiplist
|
405
406
|
*ngIf="state.rowAxes && state.rowAxes.length; else noRowAxes"
|
407
|
+
[navigable]="false"
|
406
408
|
#rowsChiplist
|
407
409
|
kendoDropTarget
|
408
410
|
class="k-row-fields"
|
@@ -452,6 +454,7 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
452
454
|
|
453
455
|
<kendo-chiplist
|
454
456
|
*ngIf="state.measureAxes && state.measureAxes.length; else noMeasureAxes"
|
457
|
+
[navigable]="false"
|
455
458
|
kendoDropTarget
|
456
459
|
class="k-filter-fields"
|
457
460
|
axes="measureAxes"
|
@@ -559,6 +562,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
559
562
|
|
560
563
|
<kendo-chiplist
|
561
564
|
*ngIf="state.columnAxes && state.columnAxes.length; else noColumnAxes"
|
565
|
+
[navigable]="false"
|
562
566
|
#columnsChiplist
|
563
567
|
kendoDropTarget
|
564
568
|
class="k-column-fields"
|
@@ -602,6 +606,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
602
606
|
|
603
607
|
<kendo-chiplist
|
604
608
|
*ngIf="state.rowAxes && state.rowAxes.length; else noRowAxes"
|
609
|
+
[navigable]="false"
|
605
610
|
#rowsChiplist
|
606
611
|
kendoDropTarget
|
607
612
|
class="k-row-fields"
|
@@ -651,6 +656,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
651
656
|
|
652
657
|
<kendo-chiplist
|
653
658
|
*ngIf="state.measureAxes && state.measureAxes.length; else noMeasureAxes"
|
659
|
+
[navigable]="false"
|
654
660
|
kendoDropTarget
|
655
661
|
class="k-filter-fields"
|
656
662
|
axes="measureAxes"
|
@@ -2,7 +2,7 @@
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
|
-
import { Directive, Input, ElementRef, NgZone, Optional, HostBinding, Renderer2
|
5
|
+
import { Directive, Input, ElementRef, NgZone, Optional, HostBinding, Renderer2 } from '@angular/core';
|
6
6
|
import { DraggableDirective, isDocumentAvailable } from '@progress/kendo-angular-common';
|
7
7
|
import { PIVOT_CONFIGURATOR_ACTION } from '@progress/kendo-pivotgrid-common';
|
8
8
|
import { ConfiguratorService } from './configurator.service';
|
@@ -17,14 +17,13 @@ import * as i3 from "./drop-cue.service";
|
|
17
17
|
* @hidden
|
18
18
|
*/
|
19
19
|
export class DraggableChipDirective {
|
20
|
-
constructor(draggable, element, zone, service, cue, renderer
|
20
|
+
constructor(draggable, element, zone, service, cue, renderer) {
|
21
21
|
this.draggable = draggable;
|
22
22
|
this.element = element;
|
23
23
|
this.zone = zone;
|
24
24
|
this.service = service;
|
25
25
|
this.cue = cue;
|
26
26
|
this.renderer = renderer;
|
27
|
-
this.cdr = cdr;
|
28
27
|
this.touchActions = 'none';
|
29
28
|
this.initialX = {};
|
30
29
|
this.initialY = {};
|
@@ -103,7 +102,7 @@ export class DraggableChipDirective {
|
|
103
102
|
this.subs.unsubscribe();
|
104
103
|
}
|
105
104
|
}
|
106
|
-
DraggableChipDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DraggableChipDirective, deps: [{ token: i1.DraggableDirective, optional: true }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i2.ConfiguratorService }, { token: i3.DropCueService }, { token: i0.Renderer2 }
|
105
|
+
DraggableChipDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DraggableChipDirective, deps: [{ token: i1.DraggableDirective, optional: true }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i2.ConfiguratorService }, { token: i3.DropCueService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
107
106
|
DraggableChipDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DraggableChipDirective, isStandalone: true, selector: "[kendoChipDraggable]", inputs: { item: "item" }, host: { properties: { "style.pointerEvents": "this.pointerEvents", "style.touch-action": "this.touchActions" } }, ngImport: i0 });
|
108
107
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DraggableChipDirective, decorators: [{
|
109
108
|
type: Directive,
|
@@ -113,7 +112,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
113
112
|
}]
|
114
113
|
}], ctorParameters: function () { return [{ type: i1.DraggableDirective, decorators: [{
|
115
114
|
type: Optional
|
116
|
-
}] }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i2.ConfiguratorService }, { type: i3.DropCueService }, { type: i0.Renderer2 }
|
115
|
+
}] }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i2.ConfiguratorService }, { type: i3.DropCueService }, { type: i0.Renderer2 }]; }, propDecorators: { pointerEvents: [{
|
117
116
|
type: HostBinding,
|
118
117
|
args: ['style.pointerEvents']
|
119
118
|
}], touchActions: [{
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
9
9
|
name: '@progress/kendo-angular-pivotgrid',
|
10
10
|
productName: 'Kendo UI for Angular',
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
12
|
-
publishDate:
|
13
|
-
version: '17.0.0-develop.
|
12
|
+
publishDate: 1729258239,
|
13
|
+
version: '17.0.0-develop.13',
|
14
14
|
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'
|
15
15
|
};
|
@@ -1827,14 +1827,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1827
1827
|
* @hidden
|
1828
1828
|
*/
|
1829
1829
|
class DraggableChipDirective {
|
1830
|
-
constructor(draggable, element, zone, service, cue, renderer
|
1830
|
+
constructor(draggable, element, zone, service, cue, renderer) {
|
1831
1831
|
this.draggable = draggable;
|
1832
1832
|
this.element = element;
|
1833
1833
|
this.zone = zone;
|
1834
1834
|
this.service = service;
|
1835
1835
|
this.cue = cue;
|
1836
1836
|
this.renderer = renderer;
|
1837
|
-
this.cdr = cdr;
|
1838
1837
|
this.touchActions = 'none';
|
1839
1838
|
this.initialX = {};
|
1840
1839
|
this.initialY = {};
|
@@ -1914,7 +1913,7 @@ class DraggableChipDirective {
|
|
1914
1913
|
this.subs.unsubscribe();
|
1915
1914
|
}
|
1916
1915
|
}
|
1917
|
-
DraggableChipDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DraggableChipDirective, deps: [{ token: i1$4.DraggableDirective, optional: true }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: ConfiguratorService }, { token: DropCueService }, { token: i0.Renderer2 }
|
1916
|
+
DraggableChipDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DraggableChipDirective, deps: [{ token: i1$4.DraggableDirective, optional: true }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: ConfiguratorService }, { token: DropCueService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
1918
1917
|
DraggableChipDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DraggableChipDirective, isStandalone: true, selector: "[kendoChipDraggable]", inputs: { item: "item" }, host: { properties: { "style.pointerEvents": "this.pointerEvents", "style.touch-action": "this.touchActions" } }, ngImport: i0 });
|
1919
1918
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DraggableChipDirective, decorators: [{
|
1920
1919
|
type: Directive,
|
@@ -1925,7 +1924,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1925
1924
|
}], ctorParameters: function () {
|
1926
1925
|
return [{ type: i1$4.DraggableDirective, decorators: [{
|
1927
1926
|
type: Optional
|
1928
|
-
}] }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: ConfiguratorService }, { type: DropCueService }, { type: i0.Renderer2 }
|
1927
|
+
}] }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: ConfiguratorService }, { type: DropCueService }, { type: i0.Renderer2 }];
|
1929
1928
|
}, propDecorators: { pointerEvents: [{
|
1930
1929
|
type: HostBinding,
|
1931
1930
|
args: ['style.pointerEvents']
|
@@ -2443,6 +2442,7 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
2443
2442
|
|
2444
2443
|
<kendo-chiplist
|
2445
2444
|
*ngIf="state.columnAxes && state.columnAxes.length; else noColumnAxes"
|
2445
|
+
[navigable]="false"
|
2446
2446
|
#columnsChiplist
|
2447
2447
|
kendoDropTarget
|
2448
2448
|
class="k-column-fields"
|
@@ -2486,6 +2486,7 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
2486
2486
|
|
2487
2487
|
<kendo-chiplist
|
2488
2488
|
*ngIf="state.rowAxes && state.rowAxes.length; else noRowAxes"
|
2489
|
+
[navigable]="false"
|
2489
2490
|
#rowsChiplist
|
2490
2491
|
kendoDropTarget
|
2491
2492
|
class="k-row-fields"
|
@@ -2535,6 +2536,7 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
2535
2536
|
|
2536
2537
|
<kendo-chiplist
|
2537
2538
|
*ngIf="state.measureAxes && state.measureAxes.length; else noMeasureAxes"
|
2539
|
+
[navigable]="false"
|
2538
2540
|
kendoDropTarget
|
2539
2541
|
class="k-filter-fields"
|
2540
2542
|
axes="measureAxes"
|
@@ -2642,6 +2644,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
2642
2644
|
|
2643
2645
|
<kendo-chiplist
|
2644
2646
|
*ngIf="state.columnAxes && state.columnAxes.length; else noColumnAxes"
|
2647
|
+
[navigable]="false"
|
2645
2648
|
#columnsChiplist
|
2646
2649
|
kendoDropTarget
|
2647
2650
|
class="k-column-fields"
|
@@ -2685,6 +2688,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
2685
2688
|
|
2686
2689
|
<kendo-chiplist
|
2687
2690
|
*ngIf="state.rowAxes && state.rowAxes.length; else noRowAxes"
|
2691
|
+
[navigable]="false"
|
2688
2692
|
#rowsChiplist
|
2689
2693
|
kendoDropTarget
|
2690
2694
|
class="k-row-fields"
|
@@ -2734,6 +2738,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
2734
2738
|
|
2735
2739
|
<kendo-chiplist
|
2736
2740
|
*ngIf="state.measureAxes && state.measureAxes.length; else noMeasureAxes"
|
2741
|
+
[navigable]="false"
|
2737
2742
|
kendoDropTarget
|
2738
2743
|
class="k-filter-fields"
|
2739
2744
|
axes="measureAxes"
|
@@ -3372,8 +3377,8 @@ const packageMetadata = {
|
|
3372
3377
|
name: '@progress/kendo-angular-pivotgrid',
|
3373
3378
|
productName: 'Kendo UI for Angular',
|
3374
3379
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
3375
|
-
publishDate:
|
3376
|
-
version: '17.0.0-develop.
|
3380
|
+
publishDate: 1729258239,
|
3381
|
+
version: '17.0.0-develop.13',
|
3377
3382
|
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'
|
3378
3383
|
};
|
3379
3384
|
|
@@ -1822,14 +1822,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1822
1822
|
* @hidden
|
1823
1823
|
*/
|
1824
1824
|
class DraggableChipDirective {
|
1825
|
-
constructor(draggable, element, zone, service, cue, renderer
|
1825
|
+
constructor(draggable, element, zone, service, cue, renderer) {
|
1826
1826
|
this.draggable = draggable;
|
1827
1827
|
this.element = element;
|
1828
1828
|
this.zone = zone;
|
1829
1829
|
this.service = service;
|
1830
1830
|
this.cue = cue;
|
1831
1831
|
this.renderer = renderer;
|
1832
|
-
this.cdr = cdr;
|
1833
1832
|
this.touchActions = 'none';
|
1834
1833
|
this.initialX = {};
|
1835
1834
|
this.initialY = {};
|
@@ -1908,7 +1907,7 @@ class DraggableChipDirective {
|
|
1908
1907
|
this.subs.unsubscribe();
|
1909
1908
|
}
|
1910
1909
|
}
|
1911
|
-
DraggableChipDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DraggableChipDirective, deps: [{ token: i1$4.DraggableDirective, optional: true }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: ConfiguratorService }, { token: DropCueService }, { token: i0.Renderer2 }
|
1910
|
+
DraggableChipDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DraggableChipDirective, deps: [{ token: i1$4.DraggableDirective, optional: true }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: ConfiguratorService }, { token: DropCueService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
1912
1911
|
DraggableChipDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: DraggableChipDirective, isStandalone: true, selector: "[kendoChipDraggable]", inputs: { item: "item" }, host: { properties: { "style.pointerEvents": "this.pointerEvents", "style.touch-action": "this.touchActions" } }, ngImport: i0 });
|
1913
1912
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DraggableChipDirective, decorators: [{
|
1914
1913
|
type: Directive,
|
@@ -1918,7 +1917,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
1918
1917
|
}]
|
1919
1918
|
}], ctorParameters: function () { return [{ type: i1$4.DraggableDirective, decorators: [{
|
1920
1919
|
type: Optional
|
1921
|
-
}] }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: ConfiguratorService }, { type: DropCueService }, { type: i0.Renderer2 }
|
1920
|
+
}] }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: ConfiguratorService }, { type: DropCueService }, { type: i0.Renderer2 }]; }, propDecorators: { pointerEvents: [{
|
1922
1921
|
type: HostBinding,
|
1923
1922
|
args: ['style.pointerEvents']
|
1924
1923
|
}], touchActions: [{
|
@@ -2430,6 +2429,7 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
2430
2429
|
|
2431
2430
|
<kendo-chiplist
|
2432
2431
|
*ngIf="state.columnAxes && state.columnAxes.length; else noColumnAxes"
|
2432
|
+
[navigable]="false"
|
2433
2433
|
#columnsChiplist
|
2434
2434
|
kendoDropTarget
|
2435
2435
|
class="k-column-fields"
|
@@ -2473,6 +2473,7 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
2473
2473
|
|
2474
2474
|
<kendo-chiplist
|
2475
2475
|
*ngIf="state.rowAxes && state.rowAxes.length; else noRowAxes"
|
2476
|
+
[navigable]="false"
|
2476
2477
|
#rowsChiplist
|
2477
2478
|
kendoDropTarget
|
2478
2479
|
class="k-row-fields"
|
@@ -2522,6 +2523,7 @@ PivotGridConfiguratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
2522
2523
|
|
2523
2524
|
<kendo-chiplist
|
2524
2525
|
*ngIf="state.measureAxes && state.measureAxes.length; else noMeasureAxes"
|
2526
|
+
[navigable]="false"
|
2525
2527
|
kendoDropTarget
|
2526
2528
|
class="k-filter-fields"
|
2527
2529
|
axes="measureAxes"
|
@@ -2629,6 +2631,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
2629
2631
|
|
2630
2632
|
<kendo-chiplist
|
2631
2633
|
*ngIf="state.columnAxes && state.columnAxes.length; else noColumnAxes"
|
2634
|
+
[navigable]="false"
|
2632
2635
|
#columnsChiplist
|
2633
2636
|
kendoDropTarget
|
2634
2637
|
class="k-column-fields"
|
@@ -2672,6 +2675,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
2672
2675
|
|
2673
2676
|
<kendo-chiplist
|
2674
2677
|
*ngIf="state.rowAxes && state.rowAxes.length; else noRowAxes"
|
2678
|
+
[navigable]="false"
|
2675
2679
|
#rowsChiplist
|
2676
2680
|
kendoDropTarget
|
2677
2681
|
class="k-row-fields"
|
@@ -2721,6 +2725,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
2721
2725
|
|
2722
2726
|
<kendo-chiplist
|
2723
2727
|
*ngIf="state.measureAxes && state.measureAxes.length; else noMeasureAxes"
|
2728
|
+
[navigable]="false"
|
2724
2729
|
kendoDropTarget
|
2725
2730
|
class="k-filter-fields"
|
2726
2731
|
axes="measureAxes"
|
@@ -3353,8 +3358,8 @@ const packageMetadata = {
|
|
3353
3358
|
name: '@progress/kendo-angular-pivotgrid',
|
3354
3359
|
productName: 'Kendo UI for Angular',
|
3355
3360
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
3356
|
-
publishDate:
|
3357
|
-
version: '17.0.0-develop.
|
3361
|
+
publishDate: 1729258239,
|
3362
|
+
version: '17.0.0-develop.13',
|
3358
3363
|
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'
|
3359
3364
|
};
|
3360
3365
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-pivotgrid",
|
3
|
-
"version": "17.0.0-develop.
|
3
|
+
"version": "17.0.0-develop.13",
|
4
4
|
"description": "PivotGrid package for Angular",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -25,21 +25,21 @@
|
|
25
25
|
"@progress/kendo-data-query": "^1.5.5",
|
26
26
|
"@progress/kendo-drawing": "^1.20.4",
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
28
|
-
"@progress/kendo-angular-buttons": "17.0.0-develop.
|
29
|
-
"@progress/kendo-angular-common": "17.0.0-develop.
|
30
|
-
"@progress/kendo-angular-dropdowns": "17.0.0-develop.
|
31
|
-
"@progress/kendo-angular-indicators": "17.0.0-develop.
|
32
|
-
"@progress/kendo-angular-inputs": "17.0.0-develop.
|
33
|
-
"@progress/kendo-angular-intl": "17.0.0-develop.
|
34
|
-
"@progress/kendo-angular-l10n": "17.0.0-develop.
|
35
|
-
"@progress/kendo-angular-popup": "17.0.0-develop.
|
36
|
-
"@progress/kendo-angular-icons": "17.0.0-develop.
|
37
|
-
"@progress/kendo-angular-treeview": "17.0.0-develop.
|
28
|
+
"@progress/kendo-angular-buttons": "17.0.0-develop.13",
|
29
|
+
"@progress/kendo-angular-common": "17.0.0-develop.13",
|
30
|
+
"@progress/kendo-angular-dropdowns": "17.0.0-develop.13",
|
31
|
+
"@progress/kendo-angular-indicators": "17.0.0-develop.13",
|
32
|
+
"@progress/kendo-angular-inputs": "17.0.0-develop.13",
|
33
|
+
"@progress/kendo-angular-intl": "17.0.0-develop.13",
|
34
|
+
"@progress/kendo-angular-l10n": "17.0.0-develop.13",
|
35
|
+
"@progress/kendo-angular-popup": "17.0.0-develop.13",
|
36
|
+
"@progress/kendo-angular-icons": "17.0.0-develop.13",
|
37
|
+
"@progress/kendo-angular-treeview": "17.0.0-develop.13",
|
38
38
|
"rxjs": "^6.5.3 || ^7.0.0"
|
39
39
|
},
|
40
40
|
"dependencies": {
|
41
41
|
"tslib": "^2.3.1",
|
42
|
-
"@progress/kendo-angular-schematics": "17.0.0-develop.
|
42
|
+
"@progress/kendo-angular-schematics": "17.0.0-develop.13",
|
43
43
|
"@progress/kendo-pivotgrid-common": "0.6.1"
|
44
44
|
},
|
45
45
|
"schematics": "./schematics/collection.json",
|
@@ -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': '17.0.0-develop.
|
9
|
+
'@progress/kendo-angular-dialog': '17.0.0-develop.13',
|
10
10
|
// peer dep of the icons
|
11
11
|
'@progress/kendo-svg-icons': '^3.0.0',
|
12
12
|
// peer dep of the dropdowns
|
13
|
-
'@progress/kendo-angular-navigation': '17.0.0-develop.
|
13
|
+
'@progress/kendo-angular-navigation': '17.0.0-develop.13'
|
14
14
|
} });
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
16
16
|
}
|