@progress/kendo-angular-pivotgrid 16.5.0 → 16.6.0-develop.2
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/chip-kb-nav.directive.d.ts +1 -1
- package/configurator/chip-menu/chip-menu-container.component.d.ts +1 -1
- package/configurator/chip-menu/chip-menu-filter.component.d.ts +1 -1
- package/configurator/chip-menu/chip-menu-item-content-template.directive.d.ts +1 -1
- package/configurator/chip-menu/chip-menu-item.component.d.ts +1 -1
- package/configurator/chip-menu/chip-menu-item.directive.d.ts +1 -1
- package/configurator/chip-menu/chip-menu-reorder.component.d.ts +1 -1
- package/configurator/chip-menu/chip-menu-sort.component.d.ts +1 -1
- package/configurator/chip-menu/chip-menu.component.d.ts +1 -1
- package/configurator/chip-menu/filtering/filter-menu-container.component.d.ts +1 -1
- package/configurator/chip-menu/filtering/filter-menu-dropdownlist.directive.d.ts +1 -1
- package/configurator/chip-menu/filtering/string-filter-menu.component.d.ts +1 -1
- package/configurator/configurator.component.d.ts +1 -1
- package/configurator/draggable.directive.d.ts +1 -1
- package/configurator/drop-target.directive.d.ts +1 -1
- package/data-binding/local-binding.directive.d.ts +1 -1
- package/data-binding/olap-binding.directive.d.ts +1 -1
- package/directives.d.ts +42 -0
- package/esm2020/configurator/chip-kb-nav.directive.mjs +5 -2
- package/esm2020/configurator/chip-menu/chip-menu-container.component.mjs +3 -2
- package/esm2020/configurator/chip-menu/chip-menu-filter.component.mjs +8 -6
- package/esm2020/configurator/chip-menu/chip-menu-item-content-template.directive.mjs +3 -2
- package/esm2020/configurator/chip-menu/chip-menu-item.component.mjs +7 -5
- package/esm2020/configurator/chip-menu/chip-menu-item.directive.mjs +5 -2
- package/esm2020/configurator/chip-menu/chip-menu-reorder.component.mjs +7 -5
- package/esm2020/configurator/chip-menu/chip-menu-sort.component.mjs +6 -4
- package/esm2020/configurator/chip-menu/chip-menu.component.mjs +12 -10
- package/esm2020/configurator/chip-menu/filtering/filter-menu-container.component.mjs +10 -7
- package/esm2020/configurator/chip-menu/filtering/filter-menu-dropdownlist.directive.mjs +5 -2
- package/esm2020/configurator/chip-menu/filtering/string-filter-menu.component.mjs +9 -7
- package/esm2020/configurator/configurator.component.mjs +18 -14
- package/esm2020/configurator/draggable.directive.mjs +3 -2
- package/esm2020/configurator/drop-target.directive.mjs +3 -2
- package/esm2020/data-binding/local-binding.directive.mjs +3 -2
- package/esm2020/data-binding/olap-binding.directive.mjs +3 -2
- package/esm2020/directives.mjs +81 -0
- package/esm2020/index.mjs +1 -0
- package/esm2020/localization/custom-messages.component.mjs +3 -2
- package/esm2020/localization/localized-messages.directive.mjs +3 -2
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/pivotgrid.component.mjs +11 -9
- package/esm2020/pivotgrid.module.mjs +83 -94
- package/esm2020/rendering/pivotgrid-cell.directive.mjs +78 -77
- package/esm2020/rendering/pivotgrid-table.component.mjs +7 -5
- package/esm2020/rendering/templates/pivotgrid-cell-template.directive.mjs +3 -2
- package/esm2020/rendering/templates/pivotgrid-column-header-cell-template.directive.mjs +3 -2
- package/esm2020/rendering/templates/pivotgrid-row-header-cell-template.directive.mjs +3 -2
- package/esm2020/rendering/templates/pivotgrid-value-cell-template.directive.mjs +3 -2
- package/fesm2015/progress-kendo-angular-pivotgrid.mjs +2703 -2732
- package/fesm2020/progress-kendo-angular-pivotgrid.mjs +3129 -3158
- package/index.d.ts +1 -0
- package/localization/custom-messages.component.d.ts +1 -1
- package/localization/localized-messages.directive.d.ts +1 -1
- package/package.json +12 -12
- package/pivotgrid.component.d.ts +1 -1
- package/pivotgrid.module.d.ts +57 -23
- package/rendering/pivotgrid-cell.directive.d.ts +1 -1
- package/rendering/pivotgrid-table.component.d.ts +1 -1
- package/rendering/templates/pivotgrid-cell-template.directive.d.ts +1 -1
- package/rendering/templates/pivotgrid-column-header-cell-template.directive.d.ts +1 -1
- package/rendering/templates/pivotgrid-row-header-cell-template.directive.d.ts +1 -1
- package/rendering/templates/pivotgrid-value-cell-template.directive.d.ts +1 -1
- package/schematics/ngAdd/index.js +2 -2
- package/configurator/chip-menu/chip-menu.module.d.ts +0 -27
- package/esm2020/configurator/chip-menu/chip-menu.module.mjs +0 -86
- package/esm2020/shared.module.mjs +0 -45
- package/shared.module.d.ts +0 -18
package/index.d.ts
CHANGED
@@ -2,6 +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
|
+
export * from './directives';
|
5
6
|
export { PivotGridComponent } from './pivotgrid.component';
|
6
7
|
export { PivotGridModule } from './pivotgrid.module';
|
7
8
|
export { PivotGridCellDirective } from './rendering/pivotgrid-cell.directive';
|
@@ -14,5 +14,5 @@ export declare class CustomMessagesComponent extends PivotGridMessages {
|
|
14
14
|
constructor(service: LocalizationService);
|
15
15
|
protected get override(): boolean;
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomMessagesComponent, never>;
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CustomMessagesComponent, "kendo-pivotgrid-messages", never, {}, {}, never, never,
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomMessagesComponent, "kendo-pivotgrid-messages", never, {}, {}, never, never, true, never>;
|
18
18
|
}
|
@@ -12,5 +12,5 @@ export declare class LocalizedMessagesDirective extends PivotGridMessages {
|
|
12
12
|
protected service: LocalizationService;
|
13
13
|
constructor(service: LocalizationService);
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedMessagesDirective, never>;
|
15
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LocalizedMessagesDirective, "[kendoPivotGridLocalizedMessages]", never, {}, {}, never, never,
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LocalizedMessagesDirective, "[kendoPivotGridLocalizedMessages]", never, {}, {}, never, never, true, never>;
|
16
16
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-pivotgrid",
|
3
|
-
"version": "16.
|
3
|
+
"version": "16.6.0-develop.2",
|
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.19.0",
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
28
|
-
"@progress/kendo-angular-buttons": "16.
|
29
|
-
"@progress/kendo-angular-common": "16.
|
30
|
-
"@progress/kendo-angular-dropdowns": "16.
|
31
|
-
"@progress/kendo-angular-indicators": "16.
|
32
|
-
"@progress/kendo-angular-inputs": "16.
|
33
|
-
"@progress/kendo-angular-intl": "16.
|
34
|
-
"@progress/kendo-angular-l10n": "16.
|
35
|
-
"@progress/kendo-angular-popup": "16.
|
36
|
-
"@progress/kendo-angular-icons": "16.
|
37
|
-
"@progress/kendo-angular-treeview": "16.
|
28
|
+
"@progress/kendo-angular-buttons": "16.6.0-develop.2",
|
29
|
+
"@progress/kendo-angular-common": "16.6.0-develop.2",
|
30
|
+
"@progress/kendo-angular-dropdowns": "16.6.0-develop.2",
|
31
|
+
"@progress/kendo-angular-indicators": "16.6.0-develop.2",
|
32
|
+
"@progress/kendo-angular-inputs": "16.6.0-develop.2",
|
33
|
+
"@progress/kendo-angular-intl": "16.6.0-develop.2",
|
34
|
+
"@progress/kendo-angular-l10n": "16.6.0-develop.2",
|
35
|
+
"@progress/kendo-angular-popup": "16.6.0-develop.2",
|
36
|
+
"@progress/kendo-angular-icons": "16.6.0-develop.2",
|
37
|
+
"@progress/kendo-angular-treeview": "16.6.0-develop.2",
|
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": "16.
|
42
|
+
"@progress/kendo-angular-schematics": "16.6.0-develop.2",
|
43
43
|
"@progress/kendo-pivotgrid-common": "0.6.0"
|
44
44
|
},
|
45
45
|
"schematics": "./schematics/collection.json",
|
package/pivotgrid.component.d.ts
CHANGED
@@ -109,5 +109,5 @@ export declare class PivotGridComponent implements AfterViewInit, AfterContentIn
|
|
109
109
|
private initConfiguratorNavigation;
|
110
110
|
private stopConfiguratorNavigation;
|
111
111
|
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridComponent, never>;
|
112
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridComponent, "kendo-pivotgrid", never, { "loaderSettings": "loaderSettings"; "configurator": "configurator"; "columnHeadersWidth": "columnHeadersWidth"; "navigable": "navigable"; }, {}, ["customCellTemplate", "valueCellTemplate", "rowHeaderCellTemplate", "columnHeaderCellTemplate"], never,
|
112
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridComponent, "kendo-pivotgrid", never, { "loaderSettings": "loaderSettings"; "configurator": "configurator"; "columnHeadersWidth": "columnHeadersWidth"; "navigable": "navigable"; }, {}, ["customCellTemplate", "valueCellTemplate", "rowHeaderCellTemplate", "columnHeaderCellTemplate"], never, true, never>;
|
113
113
|
}
|
package/pivotgrid.module.d.ts
CHANGED
@@ -3,32 +3,66 @@
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
5
|
import * as i0 from "@angular/core";
|
6
|
-
import * as i1 from "./
|
7
|
-
import * as i2 from "./
|
8
|
-
import * as i3 from "./configurator/
|
9
|
-
import * as i4 from "./
|
10
|
-
import * as i5 from "./
|
11
|
-
import * as i6 from "./
|
12
|
-
import * as i7 from "./configurator/
|
13
|
-
import * as i8 from "./configurator/
|
14
|
-
import * as i9 from "./
|
15
|
-
import * as i10 from "./
|
16
|
-
import * as i11 from "./configurator/chip-
|
17
|
-
import * as i12 from "./
|
18
|
-
import * as i13 from "./rendering/
|
19
|
-
import * as i14 from "./
|
20
|
-
import * as i15 from "./rendering/
|
21
|
-
import * as i16 from "
|
22
|
-
import * as i17 from "
|
23
|
-
import * as i18 from "
|
24
|
-
import * as i19 from "./configurator/
|
25
|
-
import * as i20 from "./
|
26
|
-
import * as i21 from "
|
6
|
+
import * as i1 from "./configurator/chip-menu/chip-menu-item.component";
|
7
|
+
import * as i2 from "./configurator/chip-menu/chip-menu-sort.component";
|
8
|
+
import * as i3 from "./configurator/chip-menu/chip-menu.component";
|
9
|
+
import * as i4 from "./configurator/chip-menu/chip-menu-filter.component";
|
10
|
+
import * as i5 from "./configurator/chip-menu/chip-menu-item-content-template.directive";
|
11
|
+
import * as i6 from "./configurator/chip-menu/filtering/filter-menu-container.component";
|
12
|
+
import * as i7 from "./configurator/chip-menu/filtering/string-filter-menu.component";
|
13
|
+
import * as i8 from "./configurator/chip-menu/filtering/filter-menu-dropdownlist.directive";
|
14
|
+
import * as i9 from "./configurator/chip-menu/chip-menu-container.component";
|
15
|
+
import * as i10 from "./configurator/chip-menu/chip-menu-item.directive";
|
16
|
+
import * as i11 from "./configurator/chip-menu/chip-menu-reorder.component";
|
17
|
+
import * as i12 from "./pivotgrid.component";
|
18
|
+
import * as i13 from "./rendering/pivotgrid-table.component";
|
19
|
+
import * as i14 from "./configurator/configurator.component";
|
20
|
+
import * as i15 from "./rendering/pivotgrid-cell.directive";
|
21
|
+
import * as i16 from "./data-binding/local-binding.directive";
|
22
|
+
import * as i17 from "./data-binding/olap-binding.directive";
|
23
|
+
import * as i18 from "./configurator/draggable.directive";
|
24
|
+
import * as i19 from "./configurator/drop-target.directive";
|
25
|
+
import * as i20 from "./localization/localized-messages.directive";
|
26
|
+
import * as i21 from "./localization/custom-messages.component";
|
27
|
+
import * as i22 from "./configurator/chip-kb-nav.directive";
|
28
|
+
import * as i23 from "./rendering/templates/pivotgrid-cell-template.directive";
|
29
|
+
import * as i24 from "./rendering/templates/pivotgrid-value-cell-template.directive";
|
30
|
+
import * as i25 from "./rendering/templates/pivotgrid-row-header-cell-template.directive";
|
31
|
+
import * as i26 from "./rendering/templates/pivotgrid-column-header-cell-template.directive";
|
32
|
+
import * as i27 from "@angular/forms";
|
27
33
|
/**
|
28
|
-
*
|
34
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
35
|
+
* definition for the PivotGrid component.
|
36
|
+
*
|
37
|
+
* @example
|
38
|
+
*
|
39
|
+
* ```ts-no-run
|
40
|
+
* // Import the PivotGrid module
|
41
|
+
* import { PivotGrid } from '@progress/kendo-angular-pivotgrid';
|
42
|
+
*
|
43
|
+
* // The browser platform with a compiler
|
44
|
+
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
45
|
+
*
|
46
|
+
* import { NgModule } from '@angular/core';
|
47
|
+
*
|
48
|
+
* // Import the app component
|
49
|
+
* import { AppComponent } from './app.component';
|
50
|
+
*
|
51
|
+
* // Define the app module
|
52
|
+
* _@NgModule({
|
53
|
+
* declarations: [AppComponent], // declare app component
|
54
|
+
* imports: [BrowserModule, PivotGridModule], // import PivotGrid module
|
55
|
+
* bootstrap: [AppComponent]
|
56
|
+
* })
|
57
|
+
* export class AppModule {}
|
58
|
+
*
|
59
|
+
* // Compile and launch the module
|
60
|
+
* platformBrowserDynamic().bootstrapModule(AppModule);
|
61
|
+
*
|
62
|
+
* ```
|
29
63
|
*/
|
30
64
|
export declare class PivotGridModule {
|
31
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridModule, never>;
|
32
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PivotGridModule, [typeof i1.
|
66
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PivotGridModule, never, [typeof i1.ChipMenuItemComponent, typeof i2.ChipMenuSortComponent, typeof i3.ChipMenuComponent, typeof i4.ChipMenuFilterComponent, typeof i5.ChipMenuItemContentTemplateDirective, typeof i6.FilterMenuContainerComponent, typeof i7.StringFilterMenuComponent, typeof i8.FilterMenuDropDownListDirective, typeof i9.ChipMenuContainerComponent, typeof i10.ChipMenuItemDirective, typeof i11.ChipMenuReorderComponent, typeof i12.PivotGridComponent, typeof i13.PivotGridTableComponent, typeof i14.PivotGridConfiguratorComponent, typeof i15.PivotGridCellDirective, typeof i16.PivotLocalBindingDirective, typeof i17.PivotOLAPBindingDirective, typeof i18.DraggableChipDirective, typeof i19.DropTargetDirective, typeof i20.LocalizedMessagesDirective, typeof i21.CustomMessagesComponent, typeof i22.ChipKeyboardNavigationDirective, typeof i23.CellTemplateDirective, typeof i24.ValueCellTemplateDirective, typeof i25.RowHeaderCellTemplateDirective, typeof i26.ColumnHeaderCellTemplateDirective, typeof i27.FormsModule, typeof i27.ReactiveFormsModule], [typeof i12.PivotGridComponent, typeof i13.PivotGridTableComponent, typeof i15.PivotGridCellDirective, typeof i16.PivotLocalBindingDirective, typeof i17.PivotOLAPBindingDirective, typeof i21.CustomMessagesComponent, typeof i23.CellTemplateDirective, typeof i24.ValueCellTemplateDirective, typeof i25.RowHeaderCellTemplateDirective, typeof i26.ColumnHeaderCellTemplateDirective]>;
|
33
67
|
static ɵinj: i0.ɵɵInjectorDeclaration<PivotGridModule>;
|
34
68
|
}
|
@@ -34,5 +34,5 @@ export declare class PivotGridCellDirective {
|
|
34
34
|
ngOnInit(): void;
|
35
35
|
handleClick: () => void;
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridCellDirective, never>;
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridCellDirective, "[kendoPivotGridCell]", never, { "kendoPivotGridCell": "kendoPivotGridCell"; "tableType": "tableType"; "rowIndex": "rowIndex"; "colIndex": "colIndex"; "customCellTemplate": "customCellTemplate"; "valueCellTemplate": "valueCellTemplate"; "rowHeaderCellTemplate": "rowHeaderCellTemplate"; "columnHeaderCellTemplate": "columnHeaderCellTemplate"; }, {}, never, never,
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridCellDirective, "[kendoPivotGridCell]", never, { "kendoPivotGridCell": "kendoPivotGridCell"; "tableType": "tableType"; "rowIndex": "rowIndex"; "colIndex": "colIndex"; "customCellTemplate": "customCellTemplate"; "valueCellTemplate": "valueCellTemplate"; "rowHeaderCellTemplate": "rowHeaderCellTemplate"; "columnHeaderCellTemplate": "columnHeaderCellTemplate"; }, {}, never, never, true, never>;
|
38
38
|
}
|
@@ -28,5 +28,5 @@ export declare class PivotGridTableComponent implements OnInit, OnDestroy {
|
|
28
28
|
ngOnInit(): void;
|
29
29
|
ngOnDestroy(): void;
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<PivotGridTableComponent, never>;
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridTableComponent, "kendo-pivotgrid-table", never, { "tableType": "tableType"; "colWidth": "colWidth"; "customCellTemplate": "customCellTemplate"; "valueCellTemplate": "valueCellTemplate"; "rowHeaderCellTemplate": "rowHeaderCellTemplate"; "columnHeaderCellTemplate": "columnHeaderCellTemplate"; }, {}, never, never,
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PivotGridTableComponent, "kendo-pivotgrid-table", never, { "tableType": "tableType"; "colWidth": "colWidth"; "customCellTemplate": "customCellTemplate"; "valueCellTemplate": "valueCellTemplate"; "rowHeaderCellTemplate": "rowHeaderCellTemplate"; "columnHeaderCellTemplate": "columnHeaderCellTemplate"; }, {}, never, never, true, never>;
|
32
32
|
}
|
@@ -30,5 +30,5 @@ export declare class CellTemplateDirective {
|
|
30
30
|
templateRef: TemplateRef<any>;
|
31
31
|
constructor(templateRef: TemplateRef<any>);
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<CellTemplateDirective, never>;
|
33
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CellTemplateDirective, "[kendoPivotGridCellTemplate]", never, {}, {}, never, never,
|
33
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CellTemplateDirective, "[kendoPivotGridCellTemplate]", never, {}, {}, never, never, true, never>;
|
34
34
|
}
|
@@ -30,5 +30,5 @@ export declare class ColumnHeaderCellTemplateDirective {
|
|
30
30
|
templateRef: TemplateRef<any>;
|
31
31
|
constructor(templateRef: TemplateRef<any>);
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnHeaderCellTemplateDirective, never>;
|
33
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnHeaderCellTemplateDirective, "[kendoPivotGridColumnHeaderCellTemplate]", never, {}, {}, never, never,
|
33
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnHeaderCellTemplateDirective, "[kendoPivotGridColumnHeaderCellTemplate]", never, {}, {}, never, never, true, never>;
|
34
34
|
}
|
@@ -30,5 +30,5 @@ export declare class RowHeaderCellTemplateDirective {
|
|
30
30
|
templateRef: TemplateRef<any>;
|
31
31
|
constructor(templateRef: TemplateRef<any>);
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<RowHeaderCellTemplateDirective, never>;
|
33
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<RowHeaderCellTemplateDirective, "[kendoPivotGridRowHeaderCellTemplate]", never, {}, {}, never, never,
|
33
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<RowHeaderCellTemplateDirective, "[kendoPivotGridRowHeaderCellTemplate]", never, {}, {}, never, never, true, never>;
|
34
34
|
}
|
@@ -29,5 +29,5 @@ export declare class ValueCellTemplateDirective {
|
|
29
29
|
templateRef: TemplateRef<any>;
|
30
30
|
constructor(templateRef: TemplateRef<any>);
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<ValueCellTemplateDirective, never>;
|
32
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ValueCellTemplateDirective, "[kendoPivotGridValueCellTemplate]", never, {}, {}, never, never,
|
32
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ValueCellTemplateDirective, "[kendoPivotGridValueCellTemplate]", never, {}, {}, never, never, true, never>;
|
33
33
|
}
|
@@ -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': '16.
|
9
|
+
'@progress/kendo-angular-dialog': '16.6.0-develop.2',
|
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': '16.
|
13
|
+
'@progress/kendo-angular-navigation': '16.6.0-develop.2'
|
14
14
|
} });
|
15
15
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
16
16
|
}
|
@@ -1,27 +0,0 @@
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
5
|
-
import * as i0 from "@angular/core";
|
6
|
-
import * as i1 from "./chip-menu-item.component";
|
7
|
-
import * as i2 from "./chip-menu-sort.component";
|
8
|
-
import * as i3 from "./chip-menu.component";
|
9
|
-
import * as i4 from "./chip-menu-filter.component";
|
10
|
-
import * as i5 from "./chip-menu-item-content-template.directive";
|
11
|
-
import * as i6 from "./filtering/filter-menu-container.component";
|
12
|
-
import * as i7 from "./filtering/string-filter-menu.component";
|
13
|
-
import * as i8 from "./filtering/filter-menu-dropdownlist.directive";
|
14
|
-
import * as i9 from "./chip-menu-container.component";
|
15
|
-
import * as i10 from "./chip-menu-item.directive";
|
16
|
-
import * as i11 from "./chip-menu-reorder.component";
|
17
|
-
import * as i12 from "../../shared.module";
|
18
|
-
import * as i13 from "@angular/forms";
|
19
|
-
/**
|
20
|
-
* @hidden
|
21
|
-
*/
|
22
|
-
export declare class ChipMenuModule {
|
23
|
-
static exports(): any[];
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ChipMenuModule, never>;
|
25
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ChipMenuModule, [typeof i1.ChipMenuItemComponent, typeof i2.ChipMenuSortComponent, typeof i3.ChipMenuComponent, typeof i4.ChipMenuFilterComponent, typeof i5.ChipMenuItemContentTemplateDirective, typeof i6.FilterMenuContainerComponent, typeof i7.StringFilterMenuComponent, typeof i8.FilterMenuDropDownListDirective, typeof i9.ChipMenuContainerComponent, typeof i10.ChipMenuItemDirective, typeof i11.ChipMenuReorderComponent], [typeof i12.SharedModule, typeof i13.ReactiveFormsModule, typeof i13.FormsModule], [typeof i1.ChipMenuItemComponent, typeof i2.ChipMenuSortComponent, typeof i3.ChipMenuComponent, typeof i4.ChipMenuFilterComponent, typeof i5.ChipMenuItemContentTemplateDirective, typeof i6.FilterMenuContainerComponent, typeof i7.StringFilterMenuComponent, typeof i8.FilterMenuDropDownListDirective, typeof i9.ChipMenuContainerComponent, typeof i10.ChipMenuItemDirective, typeof i11.ChipMenuReorderComponent]>;
|
26
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ChipMenuModule>;
|
27
|
-
}
|
@@ -1,86 +0,0 @@
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
5
|
-
import { NgModule } from '@angular/core';
|
6
|
-
import { ChipMenuItemComponent } from './chip-menu-item.component';
|
7
|
-
import { ChipMenuSortComponent } from './chip-menu-sort.component';
|
8
|
-
import { ChipMenuComponent } from './chip-menu.component';
|
9
|
-
import { ChipMenuContainerComponent } from './chip-menu-container.component';
|
10
|
-
import { ChipMenuItemDirective } from './chip-menu-item.directive';
|
11
|
-
import { ChipMenuFilterComponent } from './chip-menu-filter.component';
|
12
|
-
import { ChipMenuItemContentTemplateDirective } from './chip-menu-item-content-template.directive';
|
13
|
-
import { FilterMenuContainerComponent } from './filtering/filter-menu-container.component';
|
14
|
-
import { StringFilterMenuComponent } from './filtering/string-filter-menu.component';
|
15
|
-
import { FilterMenuDropDownListDirective } from './filtering/filter-menu-dropdownlist.directive';
|
16
|
-
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
17
|
-
import { SharedModule } from '../../shared.module';
|
18
|
-
import { ChipMenuReorderComponent } from './chip-menu-reorder.component';
|
19
|
-
import * as i0 from "@angular/core";
|
20
|
-
const COMPONENTS = [
|
21
|
-
ChipMenuItemComponent,
|
22
|
-
ChipMenuSortComponent,
|
23
|
-
ChipMenuComponent,
|
24
|
-
ChipMenuFilterComponent,
|
25
|
-
ChipMenuItemContentTemplateDirective,
|
26
|
-
FilterMenuContainerComponent,
|
27
|
-
StringFilterMenuComponent,
|
28
|
-
FilterMenuDropDownListDirective,
|
29
|
-
ChipMenuContainerComponent,
|
30
|
-
ChipMenuItemDirective,
|
31
|
-
ChipMenuReorderComponent
|
32
|
-
];
|
33
|
-
/**
|
34
|
-
* @hidden
|
35
|
-
*/
|
36
|
-
export class ChipMenuModule {
|
37
|
-
static exports() {
|
38
|
-
return [
|
39
|
-
ChipMenuItemComponent,
|
40
|
-
ChipMenuSortComponent,
|
41
|
-
ChipMenuReorderComponent,
|
42
|
-
ChipMenuContainerComponent,
|
43
|
-
ChipMenuItemDirective,
|
44
|
-
ChipMenuComponent
|
45
|
-
];
|
46
|
-
}
|
47
|
-
}
|
48
|
-
ChipMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChipMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
49
|
-
ChipMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: ChipMenuModule, declarations: [ChipMenuItemComponent,
|
50
|
-
ChipMenuSortComponent,
|
51
|
-
ChipMenuComponent,
|
52
|
-
ChipMenuFilterComponent,
|
53
|
-
ChipMenuItemContentTemplateDirective,
|
54
|
-
FilterMenuContainerComponent,
|
55
|
-
StringFilterMenuComponent,
|
56
|
-
FilterMenuDropDownListDirective,
|
57
|
-
ChipMenuContainerComponent,
|
58
|
-
ChipMenuItemDirective,
|
59
|
-
ChipMenuReorderComponent], imports: [SharedModule,
|
60
|
-
ReactiveFormsModule,
|
61
|
-
FormsModule], exports: [ChipMenuItemComponent,
|
62
|
-
ChipMenuSortComponent,
|
63
|
-
ChipMenuComponent,
|
64
|
-
ChipMenuFilterComponent,
|
65
|
-
ChipMenuItemContentTemplateDirective,
|
66
|
-
FilterMenuContainerComponent,
|
67
|
-
StringFilterMenuComponent,
|
68
|
-
FilterMenuDropDownListDirective,
|
69
|
-
ChipMenuContainerComponent,
|
70
|
-
ChipMenuItemDirective,
|
71
|
-
ChipMenuReorderComponent] });
|
72
|
-
ChipMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChipMenuModule, imports: [SharedModule,
|
73
|
-
ReactiveFormsModule,
|
74
|
-
FormsModule] });
|
75
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChipMenuModule, decorators: [{
|
76
|
-
type: NgModule,
|
77
|
-
args: [{
|
78
|
-
declarations: [COMPONENTS],
|
79
|
-
imports: [
|
80
|
-
SharedModule,
|
81
|
-
ReactiveFormsModule,
|
82
|
-
FormsModule
|
83
|
-
],
|
84
|
-
exports: [COMPONENTS]
|
85
|
-
}]
|
86
|
-
}] });
|
@@ -1,45 +0,0 @@
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
5
|
-
import { NgModule } from '@angular/core';
|
6
|
-
import { CommonModule } from '@angular/common';
|
7
|
-
import { DropDownsModule } from '@progress/kendo-angular-dropdowns';
|
8
|
-
import { InputsModule } from '@progress/kendo-angular-inputs';
|
9
|
-
import { ButtonsModule } from '@progress/kendo-angular-buttons';
|
10
|
-
import { IconsModule } from '@progress/kendo-angular-icons';
|
11
|
-
import * as i0 from "@angular/core";
|
12
|
-
const MODULES = [
|
13
|
-
CommonModule,
|
14
|
-
DropDownsModule,
|
15
|
-
InputsModule,
|
16
|
-
IconsModule,
|
17
|
-
ButtonsModule
|
18
|
-
];
|
19
|
-
/**
|
20
|
-
* @hidden
|
21
|
-
*/
|
22
|
-
export class SharedModule {
|
23
|
-
}
|
24
|
-
SharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
25
|
-
SharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, imports: [CommonModule,
|
26
|
-
DropDownsModule,
|
27
|
-
InputsModule,
|
28
|
-
IconsModule,
|
29
|
-
ButtonsModule], exports: [CommonModule,
|
30
|
-
DropDownsModule,
|
31
|
-
InputsModule,
|
32
|
-
IconsModule,
|
33
|
-
ButtonsModule] });
|
34
|
-
SharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, imports: [MODULES, CommonModule,
|
35
|
-
DropDownsModule,
|
36
|
-
InputsModule,
|
37
|
-
IconsModule,
|
38
|
-
ButtonsModule] });
|
39
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: SharedModule, decorators: [{
|
40
|
-
type: NgModule,
|
41
|
-
args: [{
|
42
|
-
imports: [MODULES],
|
43
|
-
exports: [MODULES]
|
44
|
-
}]
|
45
|
-
}] });
|
package/shared.module.d.ts
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
5
|
-
import * as i0 from "@angular/core";
|
6
|
-
import * as i1 from "@angular/common";
|
7
|
-
import * as i2 from "@progress/kendo-angular-dropdowns";
|
8
|
-
import * as i3 from "@progress/kendo-angular-inputs";
|
9
|
-
import * as i4 from "@progress/kendo-angular-icons";
|
10
|
-
import * as i5 from "@progress/kendo-angular-buttons";
|
11
|
-
/**
|
12
|
-
* @hidden
|
13
|
-
*/
|
14
|
-
export declare class SharedModule {
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, never, [typeof i1.CommonModule, typeof i2.DropDownsModule, typeof i3.InputsModule, typeof i4.IconsModule, typeof i5.ButtonsModule], [typeof i1.CommonModule, typeof i2.DropDownsModule, typeof i3.InputsModule, typeof i4.IconsModule, typeof i5.ButtonsModule]>;
|
17
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
18
|
-
}
|