@progress/kendo-angular-pivotgrid 20.1.2-develop.2 → 21.0.0-develop.10
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/esm2022/configurator/chip-kb-nav.directive.mjs +4 -4
- package/esm2022/configurator/chip-menu/chip-menu-container.component.mjs +4 -4
- package/esm2022/configurator/chip-menu/chip-menu-filter.component.mjs +4 -4
- package/esm2022/configurator/chip-menu/chip-menu-item-base.mjs +3 -3
- package/esm2022/configurator/chip-menu/chip-menu-item-content-template.directive.mjs +5 -5
- package/esm2022/configurator/chip-menu/chip-menu-item.component.mjs +3 -3
- package/esm2022/configurator/chip-menu/chip-menu-item.directive.mjs +4 -4
- package/esm2022/configurator/chip-menu/chip-menu-reorder.component.mjs +4 -4
- package/esm2022/configurator/chip-menu/chip-menu-sort.component.mjs +4 -4
- package/esm2022/configurator/chip-menu/chip-menu.component.mjs +4 -4
- package/esm2022/configurator/chip-menu/chip-menu.service.mjs +4 -4
- package/esm2022/configurator/chip-menu/filtering/filter-menu-container.component.mjs +4 -4
- package/esm2022/configurator/chip-menu/filtering/filter-menu-dropdownlist.directive.mjs +4 -4
- package/esm2022/configurator/chip-menu/filtering/menu-tabbing.service.mjs +3 -3
- package/esm2022/configurator/chip-menu/filtering/string-filter-menu.component.mjs +4 -4
- package/esm2022/configurator/chip-menu/single-popup.service.mjs +4 -4
- package/esm2022/configurator/configurator.component.mjs +4 -4
- package/esm2022/configurator/configurator.service.mjs +4 -4
- package/esm2022/configurator/draggable.directive.mjs +5 -5
- package/esm2022/configurator/drop-cue.service.mjs +3 -3
- package/esm2022/configurator/drop-target.directive.mjs +4 -4
- package/esm2022/data-binding/base-binding-directive.mjs +4 -4
- package/esm2022/data-binding/local-binding.directive.mjs +5 -5
- package/esm2022/data-binding/olap-binding.directive.mjs +4 -4
- package/esm2022/data-binding/pivotgrid-data.service.mjs +4 -4
- package/esm2022/localization/custom-messages.component.mjs +4 -4
- package/esm2022/localization/localized-messages.directive.mjs +4 -4
- package/esm2022/localization/messages.mjs +3 -3
- package/esm2022/localization/pivot-localization.service.mjs +4 -4
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/pivotgrid.component.mjs +4 -4
- package/esm2022/pivotgrid.module.mjs +4 -4
- package/esm2022/rendering/pivotgrid-cell.directive.mjs +4 -4
- package/esm2022/rendering/pivotgrid-table.component.mjs +4 -4
- package/esm2022/rendering/templates/pivotgrid-cell-template.directive.mjs +4 -4
- package/esm2022/rendering/templates/pivotgrid-column-header-cell-template.directive.mjs +4 -4
- package/esm2022/rendering/templates/pivotgrid-row-header-cell-template.directive.mjs +4 -4
- package/esm2022/rendering/templates/pivotgrid-value-cell-template.directive.mjs +4 -4
- package/esm2022/virtual/scroll.service.mjs +3 -3
- package/fesm2022/progress-kendo-angular-pivotgrid.mjs +151 -151
- package/package.json +18 -18
- package/schematics/ngAdd/index.js +3 -3
- package/util.d.ts +2 -2
|
@@ -77,16 +77,16 @@ class ChipKeyboardNavigationDirective {
|
|
|
77
77
|
ngOnDestroy() {
|
|
78
78
|
this.keydownSub.unsubscribe();
|
|
79
79
|
}
|
|
80
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
81
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
80
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipKeyboardNavigationDirective, deps: [{ token: i1.ChipComponent }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
81
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: ChipKeyboardNavigationDirective, isStandalone: true, selector: "[kendoChipKeyboardNavigation]", outputs: { reorder: "reorder" }, ngImport: i0 });
|
|
82
82
|
}
|
|
83
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
83
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipKeyboardNavigationDirective, decorators: [{
|
|
84
84
|
type: Directive,
|
|
85
85
|
args: [{
|
|
86
86
|
selector: '[kendoChipKeyboardNavigation]',
|
|
87
87
|
standalone: true
|
|
88
88
|
}]
|
|
89
|
-
}], ctorParameters:
|
|
89
|
+
}], ctorParameters: () => [{ type: i1.ChipComponent }, { type: i0.Renderer2 }, { type: i0.NgZone }], propDecorators: { reorder: [{
|
|
90
90
|
type: Output
|
|
91
91
|
}] } });
|
|
92
92
|
|
|
@@ -167,16 +167,16 @@ class ChipMenuItemDirective {
|
|
|
167
167
|
getLastColumnMenuItem() {
|
|
168
168
|
return this.chipMenuItems[this.chipMenuItems.length - 1];
|
|
169
169
|
}
|
|
170
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
171
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
170
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuItemDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
171
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: ChipMenuItemDirective, isStandalone: true, selector: "[kendoPivotChipMenuItem]", inputs: { menuItemComponent: ["kendoPivotChipMenuItem", "menuItemComponent"] }, ngImport: i0 });
|
|
172
172
|
}
|
|
173
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
173
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuItemDirective, decorators: [{
|
|
174
174
|
type: Directive,
|
|
175
175
|
args: [{
|
|
176
176
|
selector: '[kendoPivotChipMenuItem]',
|
|
177
177
|
standalone: true
|
|
178
178
|
}]
|
|
179
|
-
}], ctorParameters:
|
|
179
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }], propDecorators: { menuItemComponent: [{
|
|
180
180
|
type: Input,
|
|
181
181
|
args: ['kendoPivotChipMenuItem']
|
|
182
182
|
}] } });
|
|
@@ -455,12 +455,12 @@ class PivotGridDataService {
|
|
|
455
455
|
});
|
|
456
456
|
}
|
|
457
457
|
}
|
|
458
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
459
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
458
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridDataService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
459
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridDataService });
|
|
460
460
|
}
|
|
461
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
461
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridDataService, decorators: [{
|
|
462
462
|
type: Injectable
|
|
463
|
-
}], ctorParameters:
|
|
463
|
+
}], ctorParameters: () => [{ type: i0.NgZone }], propDecorators: { expandedStateChange: [{
|
|
464
464
|
type: Output
|
|
465
465
|
}], configuratorFieldChange: [{
|
|
466
466
|
type: Output
|
|
@@ -519,12 +519,12 @@ class ConfiguratorService {
|
|
|
519
519
|
this.dataService.state = new PivotGridState(this.state.columnAxes, this.state.rowAxes, this.state.measureAxes, this.state.sort, this.state.filter);
|
|
520
520
|
this.configuratorStateChange.emit(this.state);
|
|
521
521
|
}
|
|
522
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
523
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
522
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ConfiguratorService, deps: [{ token: PivotGridDataService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
523
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ConfiguratorService });
|
|
524
524
|
}
|
|
525
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
525
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ConfiguratorService, decorators: [{
|
|
526
526
|
type: Injectable
|
|
527
|
-
}], ctorParameters:
|
|
527
|
+
}], ctorParameters: () => [{ type: PivotGridDataService }], propDecorators: { configuratorStateChange: [{
|
|
528
528
|
type: Output
|
|
529
529
|
}], closeMenu: [{
|
|
530
530
|
type: Output
|
|
@@ -538,10 +538,10 @@ class MenuTabbingService {
|
|
|
538
538
|
lastFocusable;
|
|
539
539
|
isPopupOpen = false;
|
|
540
540
|
lastMenuItem;
|
|
541
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
542
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
541
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MenuTabbingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
542
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MenuTabbingService });
|
|
543
543
|
}
|
|
544
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
544
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MenuTabbingService, decorators: [{
|
|
545
545
|
type: Injectable
|
|
546
546
|
}] });
|
|
547
547
|
|
|
@@ -568,12 +568,12 @@ class ChipMenuService {
|
|
|
568
568
|
ngOnDestroy() {
|
|
569
569
|
this.sub.unsubscribe();
|
|
570
570
|
}
|
|
571
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
572
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
571
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuService, deps: [{ token: MenuTabbingService }, { token: ConfiguratorService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
572
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuService });
|
|
573
573
|
}
|
|
574
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
574
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuService, decorators: [{
|
|
575
575
|
type: Injectable
|
|
576
|
-
}], ctorParameters:
|
|
576
|
+
}], ctorParameters: () => [{ type: MenuTabbingService }, { type: ConfiguratorService }] });
|
|
577
577
|
|
|
578
578
|
/**
|
|
579
579
|
* @hidden
|
|
@@ -595,12 +595,12 @@ class ChipMenuContainerComponent {
|
|
|
595
595
|
this.chipMenuItems.last.isLast = true;
|
|
596
596
|
this.ngZone.onStable.pipe(take(1)).subscribe(() => this.service.menuTabbingService.firstFocusable.focus());
|
|
597
597
|
}
|
|
598
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
599
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
598
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuContainerComponent, deps: [{ token: ChipMenuService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
599
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: ChipMenuContainerComponent, isStandalone: true, selector: "kendo-pivot-chipmenu-container", host: { properties: { "class.k-grid-columnmenu-popup": "this.hostClass" } }, queries: [{ propertyName: "chipMenuItems", predicate: ChipMenuItemDirective, descendants: true }], ngImport: i0, template: `
|
|
600
600
|
<ng-content></ng-content>
|
|
601
601
|
`, isInline: true });
|
|
602
602
|
}
|
|
603
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
603
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuContainerComponent, decorators: [{
|
|
604
604
|
type: Component,
|
|
605
605
|
args: [{
|
|
606
606
|
selector: 'kendo-pivot-chipmenu-container',
|
|
@@ -609,7 +609,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
609
609
|
`,
|
|
610
610
|
standalone: true
|
|
611
611
|
}]
|
|
612
|
-
}], ctorParameters:
|
|
612
|
+
}], ctorParameters: () => [{ type: ChipMenuService }, { type: i0.NgZone }], propDecorators: { chipMenuItems: [{
|
|
613
613
|
type: ContentChildren,
|
|
614
614
|
args: [ChipMenuItemDirective, { descendants: true }]
|
|
615
615
|
}], hostClass: [{
|
|
@@ -633,12 +633,12 @@ class PivotLocalizationService {
|
|
|
633
633
|
get rtl() {
|
|
634
634
|
return this.localization.rtl;
|
|
635
635
|
}
|
|
636
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
637
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
636
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotLocalizationService, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
637
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotLocalizationService });
|
|
638
638
|
}
|
|
639
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
639
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotLocalizationService, decorators: [{
|
|
640
640
|
type: Injectable
|
|
641
|
-
}], ctorParameters:
|
|
641
|
+
}], ctorParameters: () => [{ type: i1$1.LocalizationService }] });
|
|
642
642
|
|
|
643
643
|
/**
|
|
644
644
|
* @hidden
|
|
@@ -658,10 +658,10 @@ class ChipMenuItemBase {
|
|
|
658
658
|
close() {
|
|
659
659
|
this.service.close();
|
|
660
660
|
}
|
|
661
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
662
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
661
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuItemBase, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
662
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: ChipMenuItemBase, selector: "kendo-pivot-chip-menu-item-base", inputs: { service: "service" }, host: { properties: { "class.k-columnmenu-item-wrapper": "this.hostClass" } }, ngImport: i0, template: ``, isInline: true });
|
|
663
663
|
}
|
|
664
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
664
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuItemBase, decorators: [{
|
|
665
665
|
type: Component,
|
|
666
666
|
args: [{
|
|
667
667
|
selector: 'kendo-pivot-chip-menu-item-base',
|
|
@@ -697,16 +697,16 @@ class FilterMenuDropDownListDirective {
|
|
|
697
697
|
this.host.toggle(false);
|
|
698
698
|
}
|
|
699
699
|
};
|
|
700
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
701
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
700
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FilterMenuDropDownListDirective, deps: [{ token: i1$2.DropDownListComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
|
701
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: FilterMenuDropDownListDirective, isStandalone: true, selector: "[kendoFilterMenuDropDown]", inputs: { filterMenuDropDownLabel: "filterMenuDropDownLabel" }, ngImport: i0 });
|
|
702
702
|
}
|
|
703
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FilterMenuDropDownListDirective, decorators: [{
|
|
704
704
|
type: Directive,
|
|
705
705
|
args: [{
|
|
706
706
|
selector: '[kendoFilterMenuDropDown]',
|
|
707
707
|
standalone: true
|
|
708
708
|
}]
|
|
709
|
-
}], ctorParameters:
|
|
709
|
+
}], ctorParameters: () => [{ type: i1$2.DropDownListComponent }], propDecorators: { filterMenuDropDownLabel: [{
|
|
710
710
|
type: Input
|
|
711
711
|
}] } });
|
|
712
712
|
|
|
@@ -783,8 +783,8 @@ class StringFilterMenuComponent {
|
|
|
783
783
|
ngOnDestroy() {
|
|
784
784
|
this.subscription.unsubscribe();
|
|
785
785
|
}
|
|
786
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
787
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
786
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: StringFilterMenuComponent, deps: [{ token: PivotLocalizationService }, { token: ConfiguratorService }, { token: i3.FormBuilder }], target: i0.ɵɵFactoryTarget.Component });
|
|
787
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: StringFilterMenuComponent, isStandalone: true, selector: "kendo-pivot-string-filter-menu", inputs: { chip: "chip", menuTabbingService: "menuTabbingService" }, providers: [{
|
|
788
788
|
provide: NG_VALUE_ACCESSOR,
|
|
789
789
|
useExisting: forwardRef(() => StringFilterMenuComponent),
|
|
790
790
|
multi: true
|
|
@@ -806,7 +806,7 @@ class StringFilterMenuComponent {
|
|
|
806
806
|
</ng-container>
|
|
807
807
|
`, isInline: true, dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i3.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["customIconClass", "showStickyHeader", "icon", "svgIcon", "loading", "data", "value", "textField", "valueField", "adaptiveMode", "adaptiveTitle", "adaptiveSubtitle", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "leftRightArrowsNavigation", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "directive", type: FilterMenuDropDownListDirective, selector: "[kendoFilterMenuDropDown]", inputs: ["filterMenuDropDownLabel"] }, { kind: "directive", type: TextBoxDirective, selector: "input[kendoTextBox]", inputs: ["value"] }] });
|
|
808
808
|
}
|
|
809
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
809
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: StringFilterMenuComponent, decorators: [{
|
|
810
810
|
type: Component,
|
|
811
811
|
args: [{
|
|
812
812
|
selector: 'kendo-pivot-string-filter-menu',
|
|
@@ -835,7 +835,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
835
835
|
standalone: true,
|
|
836
836
|
imports: [ReactiveFormsModule, DropDownListComponent, FilterMenuDropDownListDirective, TextBoxDirective]
|
|
837
837
|
}]
|
|
838
|
-
}], ctorParameters:
|
|
838
|
+
}], ctorParameters: () => [{ type: PivotLocalizationService }, { type: ConfiguratorService }, { type: i3.FormBuilder }], propDecorators: { chip: [{
|
|
839
839
|
type: Input
|
|
840
840
|
}], menuTabbingService: [{
|
|
841
841
|
type: Input
|
|
@@ -921,8 +921,8 @@ class FilterMenuContainerComponent {
|
|
|
921
921
|
messageFor(localizationToken) {
|
|
922
922
|
return this.localization.get(localizationToken);
|
|
923
923
|
}
|
|
924
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
925
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
924
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FilterMenuContainerComponent, deps: [{ token: PivotLocalizationService }, { token: i0.ChangeDetectorRef }, { token: MenuTabbingService }, { token: ConfiguratorService }], target: i0.ɵɵFactoryTarget.Component });
|
|
925
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: FilterMenuContainerComponent, isStandalone: true, selector: "kendo-pivot-filter-menu-container", inputs: { chip: "chip", isLast: "isLast", isExpanded: "isExpanded", menuTabbingService: "menuTabbingService", actionsClass: "actionsClass" }, outputs: { close: "close" }, providers: [
|
|
926
926
|
MenuTabbingService
|
|
927
927
|
], viewQueries: [{ propertyName: "resetButton", first: true, predicate: ["resetButton"], descendants: true }, { propertyName: "filterButton", first: true, predicate: ["filterButton"], descendants: true }], ngImport: i0, template: `
|
|
928
928
|
<form (submit)="submit()" (reset)="reset()"
|
|
@@ -952,7 +952,7 @@ class FilterMenuContainerComponent {
|
|
|
952
952
|
</form>
|
|
953
953
|
`, isInline: true, dependencies: [{ kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i3.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i3.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: StringFilterMenuComponent, selector: "kendo-pivot-string-filter-menu", inputs: ["chip", "menuTabbingService"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
954
954
|
}
|
|
955
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
955
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: FilterMenuContainerComponent, decorators: [{
|
|
956
956
|
type: Component,
|
|
957
957
|
args: [{
|
|
958
958
|
providers: [
|
|
@@ -989,7 +989,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
989
989
|
standalone: true,
|
|
990
990
|
imports: [ReactiveFormsModule, FormsModule, StringFilterMenuComponent, NgClass, ButtonComponent]
|
|
991
991
|
}]
|
|
992
|
-
}], ctorParameters:
|
|
992
|
+
}], ctorParameters: () => [{ type: PivotLocalizationService }, { type: i0.ChangeDetectorRef }, { type: MenuTabbingService }, { type: ConfiguratorService }], propDecorators: { close: [{
|
|
993
993
|
type: Output
|
|
994
994
|
}], chip: [{
|
|
995
995
|
type: Input
|
|
@@ -1020,18 +1020,18 @@ class ChipMenuItemContentTemplateDirective {
|
|
|
1020
1020
|
constructor(templateRef) {
|
|
1021
1021
|
this.templateRef = templateRef;
|
|
1022
1022
|
}
|
|
1023
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1024
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1023
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuItemContentTemplateDirective, deps: [{ token: i0.TemplateRef, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1024
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: ChipMenuItemContentTemplateDirective, isStandalone: true, selector: "[kendoPivotChipMenuItemContentTemplate]", ngImport: i0 });
|
|
1025
1025
|
}
|
|
1026
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1026
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuItemContentTemplateDirective, decorators: [{
|
|
1027
1027
|
type: Directive,
|
|
1028
1028
|
args: [{
|
|
1029
1029
|
selector: '[kendoPivotChipMenuItemContentTemplate]',
|
|
1030
1030
|
standalone: true
|
|
1031
1031
|
}]
|
|
1032
|
-
}], ctorParameters:
|
|
1032
|
+
}], ctorParameters: () => [{ type: i0.TemplateRef, decorators: [{
|
|
1033
1033
|
type: Optional
|
|
1034
|
-
}] }]
|
|
1034
|
+
}] }] });
|
|
1035
1035
|
|
|
1036
1036
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
1037
1037
|
/**
|
|
@@ -1103,8 +1103,8 @@ class ChipMenuItemComponent {
|
|
|
1103
1103
|
updateContentState() {
|
|
1104
1104
|
this.contentState = this.expanded ? 'expanded' : 'collapsed';
|
|
1105
1105
|
}
|
|
1106
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1107
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1106
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1107
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: ChipMenuItemComponent, isStandalone: true, selector: "kendo-pivot-chipmenu-item", inputs: { icon: "icon", svgIcon: "svgIcon", text: "text", selected: "selected", expanded: "expanded", disabled: "disabled" }, outputs: { itemClick: "itemClick", expand: "expand", collapse: "collapse" }, queries: [{ propertyName: "contentTemplate", first: true, predicate: ChipMenuItemContentTemplateDirective, descendants: true }], usesOnChanges: true, ngImport: i0, template: `
|
|
1108
1108
|
<div
|
|
1109
1109
|
class="k-columnmenu-item"
|
|
1110
1110
|
(click)="onClick($event)"
|
|
@@ -1149,7 +1149,7 @@ class ChipMenuItemComponent {
|
|
|
1149
1149
|
])
|
|
1150
1150
|
] });
|
|
1151
1151
|
}
|
|
1152
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1152
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuItemComponent, decorators: [{
|
|
1153
1153
|
type: Component,
|
|
1154
1154
|
args: [{
|
|
1155
1155
|
animations: [
|
|
@@ -1282,8 +1282,8 @@ class ChipMenuFilterComponent extends ChipMenuItemBase {
|
|
|
1282
1282
|
messageFor(localizationToken) {
|
|
1283
1283
|
return this.localization.get(localizationToken);
|
|
1284
1284
|
}
|
|
1285
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1286
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1285
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuFilterComponent, deps: [{ token: PivotLocalizationService }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1286
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: ChipMenuFilterComponent, isStandalone: true, selector: "kendo-pivot-chipmenu-filter", inputs: { chip: "chip", expanded: "expanded", isLast: "isLast" }, outputs: { expand: "expand", collapse: "collapse" }, usesInheritance: true, ngImport: i0, template: `
|
|
1287
1287
|
<kendo-pivot-chipmenu-item
|
|
1288
1288
|
classs="k-widget k-expander"
|
|
1289
1289
|
[text]="messageFor('fieldMenuFilterItemLabel')"
|
|
@@ -1306,7 +1306,7 @@ class ChipMenuFilterComponent extends ChipMenuItemBase {
|
|
|
1306
1306
|
</kendo-pivot-chipmenu-item>
|
|
1307
1307
|
`, isInline: true, dependencies: [{ kind: "component", type: ChipMenuItemComponent, selector: "kendo-pivot-chipmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "expanded", "disabled"], outputs: ["itemClick", "expand", "collapse"] }, { kind: "directive", type: ChipMenuItemContentTemplateDirective, selector: "[kendoPivotChipMenuItemContentTemplate]" }, { kind: "component", type: FilterMenuContainerComponent, selector: "kendo-pivot-filter-menu-container", inputs: ["chip", "isLast", "isExpanded", "menuTabbingService", "actionsClass"], outputs: ["close"] }] });
|
|
1308
1308
|
}
|
|
1309
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1309
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuFilterComponent, decorators: [{
|
|
1310
1310
|
type: Component,
|
|
1311
1311
|
args: [{
|
|
1312
1312
|
selector: 'kendo-pivot-chipmenu-filter',
|
|
@@ -1335,7 +1335,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1335
1335
|
standalone: true,
|
|
1336
1336
|
imports: [ChipMenuItemComponent, ChipMenuItemContentTemplateDirective, FilterMenuContainerComponent]
|
|
1337
1337
|
}]
|
|
1338
|
-
}], ctorParameters:
|
|
1338
|
+
}], ctorParameters: () => [{ type: PivotLocalizationService }, { type: i0.ElementRef }], propDecorators: { expand: [{
|
|
1339
1339
|
type: Output
|
|
1340
1340
|
}], collapse: [{
|
|
1341
1341
|
type: Output
|
|
@@ -1449,8 +1449,8 @@ class ChipMenuReorderComponent extends ChipMenuItemBase {
|
|
|
1449
1449
|
}
|
|
1450
1450
|
this.close();
|
|
1451
1451
|
}
|
|
1452
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1453
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1452
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuReorderComponent, deps: [{ token: PivotLocalizationService }, { token: i0.Renderer2 }, { token: ConfiguratorService }, { token: PivotGridDataService }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1453
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: ChipMenuReorderComponent, isStandalone: true, selector: "kendo-pivot-chipmenu-reorder", inputs: { chip: "chip" }, usesInheritance: true, ngImport: i0, template: `
|
|
1454
1454
|
<kendo-pivot-chipmenu-item
|
|
1455
1455
|
*ngIf="!isMeasureField"
|
|
1456
1456
|
[disabled]="isColumnsField"
|
|
@@ -1483,7 +1483,7 @@ class ChipMenuReorderComponent extends ChipMenuItemBase {
|
|
|
1483
1483
|
</kendo-pivot-chipmenu-item>
|
|
1484
1484
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ChipMenuItemComponent, selector: "kendo-pivot-chipmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "expanded", "disabled"], outputs: ["itemClick", "expand", "collapse"] }] });
|
|
1485
1485
|
}
|
|
1486
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1486
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuReorderComponent, decorators: [{
|
|
1487
1487
|
type: Component,
|
|
1488
1488
|
args: [{
|
|
1489
1489
|
selector: 'kendo-pivot-chipmenu-reorder',
|
|
@@ -1522,7 +1522,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1522
1522
|
standalone: true,
|
|
1523
1523
|
imports: [NgIf, ChipMenuItemComponent]
|
|
1524
1524
|
}]
|
|
1525
|
-
}], ctorParameters:
|
|
1525
|
+
}], ctorParameters: () => [{ type: PivotLocalizationService }, { type: i0.Renderer2 }, { type: ConfiguratorService }, { type: PivotGridDataService }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }], propDecorators: { chip: [{
|
|
1526
1526
|
type: Input
|
|
1527
1527
|
}] } });
|
|
1528
1528
|
|
|
@@ -1572,8 +1572,8 @@ class ChipMenuSortComponent extends ChipMenuItemBase {
|
|
|
1572
1572
|
get descriptor() {
|
|
1573
1573
|
return [].concat(this.configuratorService.state.sort || []).find(s => s.field === this.chip.name.toString());
|
|
1574
1574
|
}
|
|
1575
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1576
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1575
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuSortComponent, deps: [{ token: PivotLocalizationService }, { token: i0.Renderer2 }, { token: ConfiguratorService }], target: i0.ɵɵFactoryTarget.Component });
|
|
1576
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: ChipMenuSortComponent, isStandalone: true, selector: "kendo-pivot-chipmenu-sort", inputs: { chip: "chip" }, usesInheritance: true, ngImport: i0, template: `
|
|
1577
1577
|
<kendo-pivot-chipmenu-item
|
|
1578
1578
|
[text]="messageFor('fieldMenuSortAscendingItemLabel')"
|
|
1579
1579
|
icon="sort-asc-small"
|
|
@@ -1590,7 +1590,7 @@ class ChipMenuSortComponent extends ChipMenuItemBase {
|
|
|
1590
1590
|
</kendo-pivot-chipmenu-item>
|
|
1591
1591
|
`, isInline: true, dependencies: [{ kind: "component", type: ChipMenuItemComponent, selector: "kendo-pivot-chipmenu-item", inputs: ["icon", "svgIcon", "text", "selected", "expanded", "disabled"], outputs: ["itemClick", "expand", "collapse"] }] });
|
|
1592
1592
|
}
|
|
1593
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1593
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuSortComponent, decorators: [{
|
|
1594
1594
|
type: Component,
|
|
1595
1595
|
args: [{
|
|
1596
1596
|
selector: 'kendo-pivot-chipmenu-sort',
|
|
@@ -1613,7 +1613,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1613
1613
|
standalone: true,
|
|
1614
1614
|
imports: [ChipMenuItemComponent]
|
|
1615
1615
|
}]
|
|
1616
|
-
}], ctorParameters:
|
|
1616
|
+
}], ctorParameters: () => [{ type: PivotLocalizationService }, { type: i0.Renderer2 }, { type: ConfiguratorService }], propDecorators: { chip: [{
|
|
1617
1617
|
type: Input
|
|
1618
1618
|
}] } });
|
|
1619
1619
|
|
|
@@ -1734,12 +1734,12 @@ class SinglePopupService {
|
|
|
1734
1734
|
}));
|
|
1735
1735
|
});
|
|
1736
1736
|
}
|
|
1737
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1738
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1737
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SinglePopupService, deps: [{ token: i1$3.PopupService }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: PivotLocalizationService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1738
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SinglePopupService });
|
|
1739
1739
|
}
|
|
1740
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1740
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: SinglePopupService, decorators: [{
|
|
1741
1741
|
type: Injectable
|
|
1742
|
-
}], ctorParameters:
|
|
1742
|
+
}], ctorParameters: () => [{ type: i1$3.PopupService }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: PivotLocalizationService }] });
|
|
1743
1743
|
|
|
1744
1744
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
1745
1745
|
const POPUP_CLASS = 'k-column-menu';
|
|
@@ -1797,8 +1797,8 @@ class ChipMenuComponent {
|
|
|
1797
1797
|
const chipName = this.chip.name.toString();
|
|
1798
1798
|
return replaceMessagePlaceholder(localizationMsg, 'fieldName', chipName);
|
|
1799
1799
|
}
|
|
1800
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1801
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1800
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuComponent, deps: [{ token: SinglePopupService }, { token: PivotLocalizationService }, { token: ChipMenuService }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component });
|
|
1801
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: ChipMenuComponent, isStandalone: true, selector: "kendo-pivot-chip-menu", inputs: { chip: "chip", tabIndex: "tabIndex", isMeasureField: "isMeasureField", anchor: "anchor" }, providers: [
|
|
1802
1802
|
ChipMenuService,
|
|
1803
1803
|
MenuTabbingService
|
|
1804
1804
|
], viewQueries: [{ propertyName: "template", first: true, predicate: ["template"], descendants: true, static: true }], ngImport: i0, template: `
|
|
@@ -1832,7 +1832,7 @@ class ChipMenuComponent {
|
|
|
1832
1832
|
</ng-template>
|
|
1833
1833
|
`, isInline: true, dependencies: [{ kind: "component", type: ChipMenuContainerComponent, selector: "kendo-pivot-chipmenu-container" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: ChipMenuSortComponent, selector: "kendo-pivot-chipmenu-sort", inputs: ["chip"] }, { kind: "directive", type: ChipMenuItemDirective, selector: "[kendoPivotChipMenuItem]", inputs: ["kendoPivotChipMenuItem"] }, { kind: "component", type: ChipMenuFilterComponent, selector: "kendo-pivot-chipmenu-filter", inputs: ["chip", "expanded", "isLast"], outputs: ["expand", "collapse"] }, { kind: "component", type: ChipMenuReorderComponent, selector: "kendo-pivot-chipmenu-reorder", inputs: ["chip"] }] });
|
|
1834
1834
|
}
|
|
1835
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1835
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ChipMenuComponent, decorators: [{
|
|
1836
1836
|
type: Component,
|
|
1837
1837
|
args: [{
|
|
1838
1838
|
providers: [
|
|
@@ -1873,7 +1873,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1873
1873
|
standalone: true,
|
|
1874
1874
|
imports: [IconWrapperComponent, ChipMenuContainerComponent, NgIf, ChipMenuSortComponent, ChipMenuItemDirective, ChipMenuFilterComponent, ChipMenuReorderComponent]
|
|
1875
1875
|
}]
|
|
1876
|
-
}], ctorParameters:
|
|
1876
|
+
}], ctorParameters: () => [{ type: SinglePopupService }, { type: PivotLocalizationService }, { type: ChipMenuService }, { type: i0.Renderer2 }], propDecorators: { chip: [{
|
|
1877
1877
|
type: Input
|
|
1878
1878
|
}], tabIndex: [{
|
|
1879
1879
|
type: Input
|
|
@@ -1947,10 +1947,10 @@ class DropCueService {
|
|
|
1947
1947
|
}
|
|
1948
1948
|
this.dom.style.display = '';
|
|
1949
1949
|
}
|
|
1950
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1951
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1950
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DropCueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1951
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DropCueService });
|
|
1952
1952
|
}
|
|
1953
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1953
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DropCueService, decorators: [{
|
|
1954
1954
|
type: Injectable
|
|
1955
1955
|
}] });
|
|
1956
1956
|
|
|
@@ -2050,18 +2050,18 @@ class DraggableChipDirective {
|
|
|
2050
2050
|
ngOnDestroy() {
|
|
2051
2051
|
this.subs.unsubscribe();
|
|
2052
2052
|
}
|
|
2053
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2054
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2053
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", 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 });
|
|
2054
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: DraggableChipDirective, isStandalone: true, selector: "[kendoChipDraggable]", inputs: { item: "item" }, host: { properties: { "style.pointerEvents": "this.pointerEvents", "style.touch-action": "this.touchActions" } }, ngImport: i0 });
|
|
2055
2055
|
}
|
|
2056
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2056
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DraggableChipDirective, decorators: [{
|
|
2057
2057
|
type: Directive,
|
|
2058
2058
|
args: [{
|
|
2059
2059
|
selector: '[kendoChipDraggable]',
|
|
2060
2060
|
standalone: true
|
|
2061
2061
|
}]
|
|
2062
|
-
}], ctorParameters:
|
|
2062
|
+
}], ctorParameters: () => [{ type: i1$4.DraggableDirective, decorators: [{
|
|
2063
2063
|
type: Optional
|
|
2064
|
-
}] }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: ConfiguratorService }, { type: DropCueService }, { type: i0.Renderer2 }]
|
|
2064
|
+
}] }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: ConfiguratorService }, { type: DropCueService }, { type: i0.Renderer2 }], propDecorators: { pointerEvents: [{
|
|
2065
2065
|
type: HostBinding,
|
|
2066
2066
|
args: ['style.pointerEvents']
|
|
2067
2067
|
}], touchActions: [{
|
|
@@ -2234,16 +2234,16 @@ class DropTargetDirective {
|
|
|
2234
2234
|
}
|
|
2235
2235
|
}
|
|
2236
2236
|
}
|
|
2237
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2238
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2237
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DropTargetDirective, deps: [{ token: i0.ElementRef }, { token: ConfiguratorService }, { token: DropCueService }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2238
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: DropTargetDirective, isStandalone: true, selector: "[kendoDropTarget]", inputs: { item: "item", axes: "axes" }, ngImport: i0 });
|
|
2239
2239
|
}
|
|
2240
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2240
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DropTargetDirective, decorators: [{
|
|
2241
2241
|
type: Directive,
|
|
2242
2242
|
args: [{
|
|
2243
2243
|
selector: '[kendoDropTarget]',
|
|
2244
2244
|
standalone: true
|
|
2245
2245
|
}]
|
|
2246
|
-
}], ctorParameters:
|
|
2246
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: ConfiguratorService }, { type: DropCueService }, { type: i0.Renderer2 }, { type: i0.NgZone }], propDecorators: { item: [{
|
|
2247
2247
|
type: Input
|
|
2248
2248
|
}], axes: [{
|
|
2249
2249
|
type: Input
|
|
@@ -2536,8 +2536,8 @@ class PivotGridConfiguratorComponent {
|
|
|
2536
2536
|
this.cdr.detectChanges();
|
|
2537
2537
|
this[`${targetCollectionName}sList`]?.chips.last.focus();
|
|
2538
2538
|
}
|
|
2539
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2540
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2539
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridConfiguratorComponent, deps: [{ token: PivotGridDataService }, { token: i1$1.LocalizationService }, { token: ConfiguratorService }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2540
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: PivotGridConfiguratorComponent, isStandalone: true, selector: "kendo-pivotgrid-configurator", inputs: { orientation: "orientation", sort: "sort", filter: "filter", navigation: "navigation" }, outputs: { close: "close" }, host: { properties: { "class.k-pivotgrid-configurator": "this.hostClass", "attr.role": "this.hostAriaRole", "attr.aria-labelledby": "this.headerTextId" } }, providers: [
|
|
2541
2541
|
ConfiguratorService,
|
|
2542
2542
|
DropCueService,
|
|
2543
2543
|
SinglePopupService
|
|
@@ -2735,7 +2735,7 @@ class PivotGridConfiguratorComponent {
|
|
|
2735
2735
|
</div>
|
|
2736
2736
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: TreeViewComponent, selector: "kendo-treeview", inputs: ["filterInputPlaceholder", "expandDisabledNodes", "animate", "nodeTemplate", "loadMoreButtonTemplate", "trackBy", "nodes", "textField", "hasChildren", "isChecked", "isDisabled", "hasCheckbox", "isExpanded", "isSelected", "isVisible", "navigable", "children", "loadOnDemand", "filterable", "filter", "size", "disableParentNodesOnly"], outputs: ["childrenLoaded", "blur", "focus", "expand", "collapse", "nodeDragStart", "nodeDrag", "filterStateChange", "nodeDrop", "nodeDragEnd", "addItem", "removeItem", "checkedChange", "selectionChange", "filterChange", "nodeClick", "nodeDblClick"], exportAs: ["kendoTreeView"] }, { kind: "directive", type: ExpandDirective, selector: "[kendoTreeViewExpandable]", inputs: ["isExpanded", "expandBy", "expandOnFilter", "expandedKeys"], outputs: ["expandedKeysChange"] }, { kind: "directive", type: CheckDirective, selector: "[kendoTreeViewCheckable]", inputs: ["isChecked", "checkBy", "checkedKeys", "kendoTreeViewCheckable"], outputs: ["checkedKeysChange"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: DropTargetDirective, selector: "[kendoDropTarget]", inputs: ["item", "axes"] }, { kind: "component", type: ChipListComponent, selector: "kendo-chiplist, kendo-chip-list", inputs: ["orientation", "selection", "size", "role", "navigable"], outputs: ["selectedChange", "remove"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: ChipComponent, selector: "kendo-chip", inputs: ["label", "icon", "svgIcon", "iconClass", "avatarSettings", "selected", "removable", "removeIcon", "removeSvgIcon", "hasMenu", "menuIcon", "menuSvgIcon", "disabled", "size", "rounded", "fillMode", "themeColor"], outputs: ["remove", "menuToggle", "contentClick"] }, { kind: "directive", type: DraggableChipDirective, selector: "[kendoChipDraggable]", inputs: ["item"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "directive", type: ChipKeyboardNavigationDirective, selector: "[kendoChipKeyboardNavigation]", outputs: ["reorder"] }, { kind: "component", type: ChipMenuComponent, selector: "kendo-pivot-chip-menu", inputs: ["chip", "tabIndex", "isMeasureField", "anchor"] }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
2737
2737
|
}
|
|
2738
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2738
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridConfiguratorComponent, decorators: [{
|
|
2739
2739
|
type: Component,
|
|
2740
2740
|
args: [{
|
|
2741
2741
|
selector: 'kendo-pivotgrid-configurator',
|
|
@@ -2944,7 +2944,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2944
2944
|
DraggableDirective, ChipKeyboardNavigationDirective, ChipMenuComponent, ButtonComponent
|
|
2945
2945
|
]
|
|
2946
2946
|
}]
|
|
2947
|
-
}], ctorParameters:
|
|
2947
|
+
}], ctorParameters: () => [{ type: PivotGridDataService }, { type: i1$1.LocalizationService }, { type: ConfiguratorService }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }], propDecorators: { hostClass: [{
|
|
2948
2948
|
type: HostBinding,
|
|
2949
2949
|
args: ['class.k-pivotgrid-configurator']
|
|
2950
2950
|
}], hostAriaRole: [{
|
|
@@ -3157,15 +3157,15 @@ class PivotBaseBindingDirective {
|
|
|
3157
3157
|
this[axes] = newHeaders;
|
|
3158
3158
|
this.loadData(this.dataService.state);
|
|
3159
3159
|
}
|
|
3160
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3161
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3160
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotBaseBindingDirective, deps: [{ token: PivotGridDataService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3161
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PivotBaseBindingDirective, selector: "kendo-base-binding-directive", inputs: { columnAxes: "columnAxes", rowAxes: "rowAxes", measureAxes: "measureAxes", sort: "sort", filter: "filter" }, outputs: { expandChange: "expandChange", configurationChange: "configurationChange", dataLoaded: "dataLoaded" }, ngImport: i0 });
|
|
3162
3162
|
}
|
|
3163
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3163
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotBaseBindingDirective, decorators: [{
|
|
3164
3164
|
type: Directive,
|
|
3165
3165
|
args: [{
|
|
3166
3166
|
selector: 'kendo-base-binding-directive'
|
|
3167
3167
|
}]
|
|
3168
|
-
}], ctorParameters:
|
|
3168
|
+
}], ctorParameters: () => [{ type: PivotGridDataService }, { type: i0.NgZone }], propDecorators: { columnAxes: [{
|
|
3169
3169
|
type: Input
|
|
3170
3170
|
}], rowAxes: [{
|
|
3171
3171
|
type: Input
|
|
@@ -3252,7 +3252,7 @@ class PivotLocalBindingDirective extends PivotBaseBindingDirective {
|
|
|
3252
3252
|
rowAxes: rowAxes,
|
|
3253
3253
|
columnAxes: columnAxes,
|
|
3254
3254
|
measures: measuresSettings,
|
|
3255
|
-
sort: sort,
|
|
3255
|
+
sort: sort, // not needed for the moment
|
|
3256
3256
|
fields: bindingFields
|
|
3257
3257
|
});
|
|
3258
3258
|
this.updateDataServiceFields();
|
|
@@ -3261,17 +3261,17 @@ class PivotLocalBindingDirective extends PivotBaseBindingDirective {
|
|
|
3261
3261
|
getRootAxes(axes) {
|
|
3262
3262
|
return Array.from(rootFields(axes).keys()).join(stringSeparator);
|
|
3263
3263
|
}
|
|
3264
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3265
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3264
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotLocalBindingDirective, deps: [{ token: PivotGridDataService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3265
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PivotLocalBindingDirective, isStandalone: true, selector: "[kendoPivotLocalBinding]", inputs: { data: ["kendoPivotLocalBinding", "data"], dimensions: "dimensions", measures: "measures" }, exportAs: ["kendoPivotLocalBinding"], usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
3266
3266
|
}
|
|
3267
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3267
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotLocalBindingDirective, decorators: [{
|
|
3268
3268
|
type: Directive,
|
|
3269
3269
|
args: [{
|
|
3270
3270
|
selector: '[kendoPivotLocalBinding]',
|
|
3271
3271
|
exportAs: 'kendoPivotLocalBinding',
|
|
3272
3272
|
standalone: true
|
|
3273
3273
|
}]
|
|
3274
|
-
}], ctorParameters:
|
|
3274
|
+
}], ctorParameters: () => [{ type: PivotGridDataService }, { type: i0.NgZone }], propDecorators: { data: [{
|
|
3275
3275
|
type: Input,
|
|
3276
3276
|
args: ['kendoPivotLocalBinding']
|
|
3277
3277
|
}], dimensions: [{
|
|
@@ -3455,17 +3455,17 @@ class PivotOLAPBindingDirective extends PivotBaseBindingDirective {
|
|
|
3455
3455
|
};
|
|
3456
3456
|
return fetchDiscover({ url: this.url }, options);
|
|
3457
3457
|
}
|
|
3458
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3459
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3458
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotOLAPBindingDirective, deps: [{ token: PivotGridDataService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3459
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PivotOLAPBindingDirective, isStandalone: true, selector: "[kendoPivotOLAPBinding]", inputs: { url: "url", cube: "cube", catalog: "catalog" }, exportAs: ["kendoPivotOLAPBinding"], usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
3460
3460
|
}
|
|
3461
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3461
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotOLAPBindingDirective, decorators: [{
|
|
3462
3462
|
type: Directive,
|
|
3463
3463
|
args: [{
|
|
3464
3464
|
selector: '[kendoPivotOLAPBinding]',
|
|
3465
3465
|
exportAs: 'kendoPivotOLAPBinding',
|
|
3466
3466
|
standalone: true
|
|
3467
3467
|
}]
|
|
3468
|
-
}], ctorParameters:
|
|
3468
|
+
}], ctorParameters: () => [{ type: PivotGridDataService }, { type: i0.NgZone }], propDecorators: { url: [{
|
|
3469
3469
|
type: Input
|
|
3470
3470
|
}], cube: [{
|
|
3471
3471
|
type: Input
|
|
@@ -3638,10 +3638,10 @@ class PivotGridMessages extends ComponentMessages {
|
|
|
3638
3638
|
* with the current chip name. For example, `'chip for {fieldName}'` will become `'chip for Product Field Menu'`.
|
|
3639
3639
|
*/
|
|
3640
3640
|
chipMenuIconTitle;
|
|
3641
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3642
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3641
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridMessages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
3642
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: PivotGridMessages, inputs: { fieldMenuFilterItemLabel: "fieldMenuFilterItemLabel", fieldMenuSortAscendingItemLabel: "fieldMenuSortAscendingItemLabel", fieldMenuSortDescendingItemLabel: "fieldMenuSortDescendingItemLabel", filterInputLabel: "filterInputLabel", filterOperatorsDropDownLabel: "filterOperatorsDropDownLabel", filterEqOperator: "filterEqOperator", filterNotEqOperator: "filterNotEqOperator", filterIsNullOperator: "filterIsNullOperator", filterIsNotNullOperator: "filterIsNotNullOperator", filterIsEmptyOperator: "filterIsEmptyOperator", filterIsNotEmptyOperator: "filterIsNotEmptyOperator", filterStartsWithOperator: "filterStartsWithOperator", filterContainsOperator: "filterContainsOperator", filterNotContainsOperator: "filterNotContainsOperator", filterEndsWithOperator: "filterEndsWithOperator", filterFilterButton: "filterFilterButton", filterClearButton: "filterClearButton", loading: "loading", emptyCellLabel: "emptyCellLabel", configuratorButtonText: "configuratorButtonText", configuratorHeaderText: "configuratorHeaderText", configuratorFieldsText: "configuratorFieldsText", configuratorColumnsText: "configuratorColumnsText", configuratorRowsText: "configuratorRowsText", configuratorValuesText: "configuratorValuesText", configuratorCancelButtonText: "configuratorCancelButtonText", configuratorApplyButtonText: "configuratorApplyButtonText", configuratorEmptyRowsText: "configuratorEmptyRowsText", configuratorEmptyColumnsText: "configuratorEmptyColumnsText", configuratorEmptyMeasuresText: "configuratorEmptyMeasuresText", fieldMenuMoveToColumnsItem: "fieldMenuMoveToColumnsItem", fieldMenuMoveToRowsItem: "fieldMenuMoveToRowsItem", fieldMenuMovePreviousItem: "fieldMenuMovePreviousItem", fieldMenuMoveNextItem: "fieldMenuMoveNextItem", chipMenuIconTitle: "chipMenuIconTitle" }, usesInheritance: true, ngImport: i0 });
|
|
3643
3643
|
}
|
|
3644
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3644
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridMessages, decorators: [{
|
|
3645
3645
|
type: Directive
|
|
3646
3646
|
}], propDecorators: { fieldMenuFilterItemLabel: [{
|
|
3647
3647
|
type: Input
|
|
@@ -3741,15 +3741,15 @@ class CustomMessagesComponent extends PivotGridMessages {
|
|
|
3741
3741
|
get override() {
|
|
3742
3742
|
return true;
|
|
3743
3743
|
}
|
|
3744
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3745
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3744
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3745
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: CustomMessagesComponent, isStandalone: true, selector: "kendo-pivotgrid-messages", providers: [
|
|
3746
3746
|
{
|
|
3747
3747
|
provide: PivotGridMessages,
|
|
3748
3748
|
useExisting: forwardRef(() => CustomMessagesComponent)
|
|
3749
3749
|
}
|
|
3750
3750
|
], usesInheritance: true, ngImport: i0, template: ``, isInline: true });
|
|
3751
3751
|
}
|
|
3752
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3752
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CustomMessagesComponent, decorators: [{
|
|
3753
3753
|
type: Component,
|
|
3754
3754
|
args: [{
|
|
3755
3755
|
providers: [
|
|
@@ -3762,7 +3762,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3762
3762
|
template: ``,
|
|
3763
3763
|
standalone: true
|
|
3764
3764
|
}]
|
|
3765
|
-
}], ctorParameters:
|
|
3765
|
+
}], ctorParameters: () => [{ type: i1$1.LocalizationService }] });
|
|
3766
3766
|
|
|
3767
3767
|
/**
|
|
3768
3768
|
* @hidden
|
|
@@ -3773,15 +3773,15 @@ class LocalizedMessagesDirective extends PivotGridMessages {
|
|
|
3773
3773
|
super();
|
|
3774
3774
|
this.service = service;
|
|
3775
3775
|
}
|
|
3776
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3777
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3776
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3777
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: LocalizedMessagesDirective, isStandalone: true, selector: "[kendoPivotGridLocalizedMessages]", providers: [
|
|
3778
3778
|
{
|
|
3779
3779
|
provide: PivotGridMessages,
|
|
3780
3780
|
useExisting: forwardRef(() => LocalizedMessagesDirective)
|
|
3781
3781
|
}
|
|
3782
3782
|
], usesInheritance: true, ngImport: i0 });
|
|
3783
3783
|
}
|
|
3784
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LocalizedMessagesDirective, decorators: [{
|
|
3785
3785
|
type: Directive,
|
|
3786
3786
|
args: [{
|
|
3787
3787
|
providers: [
|
|
@@ -3793,7 +3793,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3793
3793
|
selector: '[kendoPivotGridLocalizedMessages]',
|
|
3794
3794
|
standalone: true
|
|
3795
3795
|
}]
|
|
3796
|
-
}], ctorParameters:
|
|
3796
|
+
}], ctorParameters: () => [{ type: i1$1.LocalizationService }] });
|
|
3797
3797
|
|
|
3798
3798
|
/**
|
|
3799
3799
|
* @hidden
|
|
@@ -3803,8 +3803,8 @@ const packageMetadata = {
|
|
|
3803
3803
|
productName: 'Kendo UI for Angular',
|
|
3804
3804
|
productCode: 'KENDOUIANGULAR',
|
|
3805
3805
|
productCodes: ['KENDOUIANGULAR'],
|
|
3806
|
-
publishDate:
|
|
3807
|
-
version: '
|
|
3806
|
+
publishDate: 1761913202,
|
|
3807
|
+
version: '21.0.0-develop.10',
|
|
3808
3808
|
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'
|
|
3809
3809
|
};
|
|
3810
3810
|
|
|
@@ -3836,16 +3836,16 @@ class CellTemplateDirective {
|
|
|
3836
3836
|
constructor(templateRef) {
|
|
3837
3837
|
this.templateRef = templateRef;
|
|
3838
3838
|
}
|
|
3839
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3840
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3839
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CellTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3840
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: CellTemplateDirective, isStandalone: true, selector: "[kendoPivotGridCellTemplate]", ngImport: i0 });
|
|
3841
3841
|
}
|
|
3842
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3842
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CellTemplateDirective, decorators: [{
|
|
3843
3843
|
type: Directive,
|
|
3844
3844
|
args: [{
|
|
3845
3845
|
selector: '[kendoPivotGridCellTemplate]',
|
|
3846
3846
|
standalone: true
|
|
3847
3847
|
}]
|
|
3848
|
-
}], ctorParameters:
|
|
3848
|
+
}], ctorParameters: () => [{ type: i0.TemplateRef }] });
|
|
3849
3849
|
|
|
3850
3850
|
/**
|
|
3851
3851
|
* Represents the value cell template of the PivotGrid. Allows customizing the content of the value cells.
|
|
@@ -3874,16 +3874,16 @@ class ValueCellTemplateDirective {
|
|
|
3874
3874
|
constructor(templateRef) {
|
|
3875
3875
|
this.templateRef = templateRef;
|
|
3876
3876
|
}
|
|
3877
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3878
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3877
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ValueCellTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3878
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: ValueCellTemplateDirective, isStandalone: true, selector: "[kendoPivotGridValueCellTemplate]", ngImport: i0 });
|
|
3879
3879
|
}
|
|
3880
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3880
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ValueCellTemplateDirective, decorators: [{
|
|
3881
3881
|
type: Directive,
|
|
3882
3882
|
args: [{
|
|
3883
3883
|
selector: '[kendoPivotGridValueCellTemplate]',
|
|
3884
3884
|
standalone: true
|
|
3885
3885
|
}]
|
|
3886
|
-
}], ctorParameters:
|
|
3886
|
+
}], ctorParameters: () => [{ type: i0.TemplateRef }] });
|
|
3887
3887
|
|
|
3888
3888
|
/**
|
|
3889
3889
|
* Represents the row header cell template of the PivotGrid. Allows customizing the content of the row header cells.
|
|
@@ -3913,16 +3913,16 @@ class RowHeaderCellTemplateDirective {
|
|
|
3913
3913
|
constructor(templateRef) {
|
|
3914
3914
|
this.templateRef = templateRef;
|
|
3915
3915
|
}
|
|
3916
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3917
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3916
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RowHeaderCellTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3917
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: RowHeaderCellTemplateDirective, isStandalone: true, selector: "[kendoPivotGridRowHeaderCellTemplate]", ngImport: i0 });
|
|
3918
3918
|
}
|
|
3919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RowHeaderCellTemplateDirective, decorators: [{
|
|
3920
3920
|
type: Directive,
|
|
3921
3921
|
args: [{
|
|
3922
3922
|
selector: '[kendoPivotGridRowHeaderCellTemplate]',
|
|
3923
3923
|
standalone: true
|
|
3924
3924
|
}]
|
|
3925
|
-
}], ctorParameters:
|
|
3925
|
+
}], ctorParameters: () => [{ type: i0.TemplateRef }] });
|
|
3926
3926
|
|
|
3927
3927
|
/**
|
|
3928
3928
|
* Represents the column header cell template of the PivotGrid. Allows customizing the content of the column header cells.
|
|
@@ -3952,16 +3952,16 @@ class ColumnHeaderCellTemplateDirective {
|
|
|
3952
3952
|
constructor(templateRef) {
|
|
3953
3953
|
this.templateRef = templateRef;
|
|
3954
3954
|
}
|
|
3955
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3956
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
3955
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ColumnHeaderCellTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3956
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: ColumnHeaderCellTemplateDirective, isStandalone: true, selector: "[kendoPivotGridColumnHeaderCellTemplate]", ngImport: i0 });
|
|
3957
3957
|
}
|
|
3958
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3958
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ColumnHeaderCellTemplateDirective, decorators: [{
|
|
3959
3959
|
type: Directive,
|
|
3960
3960
|
args: [{
|
|
3961
3961
|
selector: '[kendoPivotGridColumnHeaderCellTemplate]',
|
|
3962
3962
|
standalone: true
|
|
3963
3963
|
}]
|
|
3964
|
-
}], ctorParameters:
|
|
3964
|
+
}], ctorParameters: () => [{ type: i0.TemplateRef }] });
|
|
3965
3965
|
|
|
3966
3966
|
/**
|
|
3967
3967
|
* @hidden
|
|
@@ -4145,8 +4145,8 @@ class PivotGridCellDirective {
|
|
|
4145
4145
|
tableType: this.tableType
|
|
4146
4146
|
});
|
|
4147
4147
|
};
|
|
4148
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4149
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
4148
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridCellDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: PivotGridDataService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4149
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: PivotGridCellDirective, isStandalone: true, selector: "[kendoPivotGridCell]", inputs: { kendoPivotGridCell: "kendoPivotGridCell", tableType: "tableType", rowIndex: "rowIndex", colIndex: "colIndex", customCellTemplate: "customCellTemplate", valueCellTemplate: "valueCellTemplate", rowHeaderCellTemplate: "rowHeaderCellTemplate", columnHeaderCellTemplate: "columnHeaderCellTemplate" }, host: { properties: { "class.k-pivotgrid-cell": "this.cellClass" } }, ngImport: i0, template: `
|
|
4150
4150
|
<kendo-icon-wrapper
|
|
4151
4151
|
*ngIf="kendoPivotGridCell.hasChildren && !kendoPivotGridCell.total"
|
|
4152
4152
|
aria-hidden="true"
|
|
@@ -4208,7 +4208,7 @@ class PivotGridCellDirective {
|
|
|
4208
4208
|
</span>
|
|
4209
4209
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { kind: "directive", type: TemplateContextDirective, selector: "[templateContext]", inputs: ["templateContext"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
4210
4210
|
}
|
|
4211
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4211
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridCellDirective, decorators: [{
|
|
4212
4212
|
type: Component,
|
|
4213
4213
|
args: [{
|
|
4214
4214
|
// eslint-disable-next-line @angular-eslint/component-selector
|
|
@@ -4277,7 +4277,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
4277
4277
|
standalone: true,
|
|
4278
4278
|
imports: [NgIf, IconWrapperComponent, EventsOutsideAngularDirective, TemplateContextDirective, NgClass]
|
|
4279
4279
|
}]
|
|
4280
|
-
}], ctorParameters:
|
|
4280
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: PivotGridDataService }], propDecorators: { cellClass: [{
|
|
4281
4281
|
type: HostBinding,
|
|
4282
4282
|
args: ['class.k-pivotgrid-cell']
|
|
4283
4283
|
}], kendoPivotGridCell: [{
|
|
@@ -4304,10 +4304,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
4304
4304
|
class PivotGridScrollService {
|
|
4305
4305
|
virtualScrolling = false;
|
|
4306
4306
|
pivotGrid;
|
|
4307
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4308
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
4307
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridScrollService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4308
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridScrollService });
|
|
4309
4309
|
}
|
|
4310
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4310
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridScrollService, decorators: [{
|
|
4311
4311
|
type: Injectable
|
|
4312
4312
|
}] });
|
|
4313
4313
|
|
|
@@ -4492,8 +4492,8 @@ class PivotGridTableComponent {
|
|
|
4492
4492
|
}
|
|
4493
4493
|
}, true);
|
|
4494
4494
|
}
|
|
4495
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4496
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
4495
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridTableComponent, deps: [{ token: i0.ElementRef }, { token: PivotGridDataService }, { token: i1$1.LocalizationService }, { token: i0.NgZone }, { token: PivotGridScrollService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4496
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: PivotGridTableComponent, isStandalone: true, selector: "kendo-pivotgrid-table", inputs: { tableType: "tableType", colWidth: "colWidth", customCellTemplate: "customCellTemplate", valueCellTemplate: "valueCellTemplate", rowHeaderCellTemplate: "rowHeaderCellTemplate", columnHeaderCellTemplate: "columnHeaderCellTemplate", scrollableSettings: "scrollableSettings" }, ngImport: i0, template: `
|
|
4497
4497
|
<table
|
|
4498
4498
|
class="k-pivotgrid-table"
|
|
4499
4499
|
role="presentation"
|
|
@@ -4543,7 +4543,7 @@ class PivotGridTableComponent {
|
|
|
4543
4543
|
</table>
|
|
4544
4544
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: PivotGridCellDirective, selector: "[kendoPivotGridCell]", inputs: ["kendoPivotGridCell", "tableType", "rowIndex", "colIndex", "customCellTemplate", "valueCellTemplate", "rowHeaderCellTemplate", "columnHeaderCellTemplate"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
|
|
4545
4545
|
}
|
|
4546
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4546
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridTableComponent, decorators: [{
|
|
4547
4547
|
type: Component,
|
|
4548
4548
|
args: [{
|
|
4549
4549
|
selector: 'kendo-pivotgrid-table',
|
|
@@ -4599,7 +4599,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
4599
4599
|
standalone: true,
|
|
4600
4600
|
imports: [NgFor, NgIf, PivotGridCellDirective, NgStyle]
|
|
4601
4601
|
}]
|
|
4602
|
-
}], ctorParameters:
|
|
4602
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: PivotGridDataService }, { type: i1$1.LocalizationService }, { type: i0.NgZone }, { type: PivotGridScrollService }], propDecorators: { tableType: [{
|
|
4603
4603
|
type: Input
|
|
4604
4604
|
}], colWidth: [{
|
|
4605
4605
|
type: Input
|
|
@@ -4913,8 +4913,8 @@ class PivotGridComponent {
|
|
|
4913
4913
|
this.configuratorNavigation.stop();
|
|
4914
4914
|
}
|
|
4915
4915
|
}
|
|
4916
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4917
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
4916
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: PivotGridDataService }, { token: i1$1.LocalizationService }, { token: i0.Renderer2 }, { token: i1$4.ScrollbarWidthService }, { token: PivotGridScrollService }], target: i0.ɵɵFactoryTarget.Component });
|
|
4917
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: PivotGridComponent, isStandalone: true, selector: "kendo-pivotgrid", inputs: { loaderSettings: "loaderSettings", configurator: "configurator", virtualScrolling: "virtualScrolling", columnHeadersWidth: "columnHeadersWidth", navigable: "navigable" }, host: { properties: { "class.k-d-flex": "this.hostClass", "class.k-pos-relative": "this.hostClass", "class.k-flex-row": "this.rightPositionClass", "class.k-flex-row-reverse": "this.leftPositionClass", "class.k-flex-column": "this.bottomPositionClass", "class.k-flex-column-reverse": "this.topPositionClass", "attr.dir": "this.dir" } }, providers: [
|
|
4918
4918
|
PivotGridDataService,
|
|
4919
4919
|
LocalizationService,
|
|
4920
4920
|
PivotLocalizationService,
|
|
@@ -5083,7 +5083,7 @@ class PivotGridComponent {
|
|
|
5083
5083
|
</div>
|
|
5084
5084
|
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoPivotGridLocalizedMessages]" }, { kind: "component", type: PivotGridTableComponent, selector: "kendo-pivotgrid-table", inputs: ["tableType", "colWidth", "customCellTemplate", "valueCellTemplate", "rowHeaderCellTemplate", "columnHeaderCellTemplate", "scrollableSettings"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: LoaderComponent, selector: "kendo-loader", inputs: ["type", "themeColor", "size"] }, { kind: "component", type: PivotGridConfiguratorComponent, selector: "kendo-pivotgrid-configurator", inputs: ["orientation", "sort", "filter", "navigation"], outputs: ["close"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }] });
|
|
5085
5085
|
}
|
|
5086
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5086
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridComponent, decorators: [{
|
|
5087
5087
|
type: Component,
|
|
5088
5088
|
args: [{
|
|
5089
5089
|
selector: 'kendo-pivotgrid',
|
|
@@ -5259,7 +5259,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
5259
5259
|
standalone: true,
|
|
5260
5260
|
imports: [LocalizedMessagesDirective, PivotGridTableComponent, NgIf, LoaderComponent, PivotGridConfiguratorComponent, IconWrapperComponent]
|
|
5261
5261
|
}]
|
|
5262
|
-
}], ctorParameters:
|
|
5262
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: PivotGridDataService }, { type: i1$1.LocalizationService }, { type: i0.Renderer2 }, { type: i1$4.ScrollbarWidthService }, { type: PivotGridScrollService }], propDecorators: { hostClass: [{
|
|
5263
5263
|
type: HostBinding,
|
|
5264
5264
|
args: ['class.k-d-flex']
|
|
5265
5265
|
}, {
|
|
@@ -5409,9 +5409,9 @@ const KENDO_PIVOTGRID = [
|
|
|
5409
5409
|
* ```
|
|
5410
5410
|
*/
|
|
5411
5411
|
class PivotGridModule {
|
|
5412
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
5413
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
5414
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
5412
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5413
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: PivotGridModule, imports: [ChipMenuItemComponent, ChipMenuSortComponent, ChipMenuComponent, ChipMenuFilterComponent, ChipMenuItemContentTemplateDirective, FilterMenuContainerComponent, StringFilterMenuComponent, FilterMenuDropDownListDirective, ChipMenuContainerComponent, ChipMenuItemDirective, ChipMenuReorderComponent, PivotGridComponent, PivotGridTableComponent, PivotGridConfiguratorComponent, PivotGridCellDirective, PivotLocalBindingDirective, PivotOLAPBindingDirective, DraggableChipDirective, DropTargetDirective, LocalizedMessagesDirective, CustomMessagesComponent, ChipKeyboardNavigationDirective, CellTemplateDirective, ValueCellTemplateDirective, RowHeaderCellTemplateDirective, ColumnHeaderCellTemplateDirective], exports: [PivotGridComponent, PivotGridTableComponent, PivotGridCellDirective, PivotLocalBindingDirective, PivotOLAPBindingDirective, CustomMessagesComponent, CellTemplateDirective, ValueCellTemplateDirective, RowHeaderCellTemplateDirective, ColumnHeaderCellTemplateDirective] });
|
|
5414
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridModule, providers: [
|
|
5415
5415
|
IconsService,
|
|
5416
5416
|
PopupService,
|
|
5417
5417
|
ResizeBatchService,
|
|
@@ -5421,7 +5421,7 @@ class PivotGridModule {
|
|
|
5421
5421
|
WindowContainerService
|
|
5422
5422
|
], imports: [ChipMenuItemComponent, ChipMenuSortComponent, ChipMenuComponent, ChipMenuFilterComponent, FilterMenuContainerComponent, StringFilterMenuComponent, ChipMenuReorderComponent, PivotGridComponent, PivotGridTableComponent, PivotGridConfiguratorComponent, PivotGridCellDirective] });
|
|
5423
5423
|
}
|
|
5424
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
5424
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: PivotGridModule, decorators: [{
|
|
5425
5425
|
type: NgModule,
|
|
5426
5426
|
args: [{
|
|
5427
5427
|
imports: [...KENDO_PIVOTGRID_CHIPMENU_DECLARATIONS, ...KENDO_PIVOTGRID_DECLARATIONS],
|