@progress/kendo-angular-chart-wizard 16.6.2-develop.2 → 16.6.3-develop.1
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/esm2020/grid-integration/grid-chart-wizard.directive.mjs +3 -6
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/series-type-button.component.mjs +2 -2
- package/fesm2015/progress-kendo-angular-chart-wizard.mjs +8 -13
- package/fesm2020/progress-kendo-angular-chart-wizard.mjs +7 -10
- package/package.json +16 -16
@@ -2,7 +2,7 @@
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
5
|
-
import { Directive, EventEmitter, HostListener,
|
5
|
+
import { Directive, EventEmitter, HostListener, Input, Output } from "@angular/core";
|
6
6
|
import { GridComponent } from "@progress/kendo-angular-grid";
|
7
7
|
import { getWizardDataFromGridSelection } from "./get-wizard-data-from-grid-selection";
|
8
8
|
import * as i0 from "@angular/core";
|
@@ -44,7 +44,7 @@ export class ChartWizardGridBindingDirective {
|
|
44
44
|
this.chartWizardDataChange.emit(this.chartWizardData);
|
45
45
|
}
|
46
46
|
}
|
47
|
-
ChartWizardGridBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardGridBindingDirective, deps: [{ token: GridComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
47
|
+
ChartWizardGridBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardGridBindingDirective, deps: [{ token: i1.GridComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
48
48
|
ChartWizardGridBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ChartWizardGridBindingDirective, isStandalone: true, selector: "[kendoChartWizardGridBinding]", inputs: { chartWizardData: "chartWizardData", data: ["kendoGridBinding", "data"], selectionKey: ["kendoGridSelectBy", "selectionKey"], columnKey: "columnKey" }, outputs: { chartWizardDataChange: "chartWizardDataChange" }, host: { listeners: { "selectedKeysChange": "onSelectionChange($event)" } }, exportAs: ["kendoChartWizardGridBinding"], ngImport: i0 });
|
49
49
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardGridBindingDirective, decorators: [{
|
50
50
|
type: Directive,
|
@@ -53,10 +53,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
53
53
|
exportAs: 'kendoChartWizardGridBinding',
|
54
54
|
standalone: true
|
55
55
|
}]
|
56
|
-
}], ctorParameters: function () { return [{ type: i1.GridComponent,
|
57
|
-
type: Inject,
|
58
|
-
args: [GridComponent]
|
59
|
-
}] }]; }, propDecorators: { chartWizardData: [{
|
56
|
+
}], ctorParameters: function () { return [{ type: i1.GridComponent }]; }, propDecorators: { chartWizardData: [{
|
60
57
|
type: Input
|
61
58
|
}], chartWizardDataChange: [{
|
62
59
|
type: Output
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
9
9
|
name: '@progress/kendo-angular-chart-wizard',
|
10
10
|
productName: 'Kendo UI for Angular',
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
12
|
-
publishDate:
|
13
|
-
version: '16.6.
|
12
|
+
publishDate: 1723027361,
|
13
|
+
version: '16.6.3-develop.1',
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning',
|
15
15
|
};
|
@@ -26,10 +26,10 @@ export class ChartWizardSeriesTypeButtonComponent {
|
|
26
26
|
}
|
27
27
|
isSelected() {
|
28
28
|
if (this.stack?.type === '100%') {
|
29
|
-
return this.stack?.type === this.stateService.state.series[0]
|
29
|
+
return this.stack?.type === this.stateService.state.series[0]?.stack?.type;
|
30
30
|
}
|
31
31
|
return (this.stateService.state.seriesType === this.seriesType &&
|
32
|
-
this.stateService.state.series[0]
|
32
|
+
this.stateService.state.series[0]?.stack === this.stack);
|
33
33
|
}
|
34
34
|
}
|
35
35
|
ChartWizardSeriesTypeButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardSeriesTypeButtonComponent, deps: [{ token: i1.StateService }], target: i0.ɵɵFactoryTarget.Component });
|
@@ -3,7 +3,7 @@
|
|
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 { Injectable, EventEmitter, Component, ChangeDetectionStrategy, Input, Output, HostBinding, ViewChild, Directive,
|
6
|
+
import { Injectable, EventEmitter, Component, ChangeDetectionStrategy, Input, Output, HostBinding, ViewChild, Directive, HostListener, NgModule } from '@angular/core';
|
7
7
|
import { shouldShowValidationUI, WatermarkOverlayComponent, isPresent, ResizeBatchService } from '@progress/kendo-angular-common';
|
8
8
|
import * as i2 from '@progress/kendo-angular-l10n';
|
9
9
|
import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
@@ -34,8 +34,8 @@ const packageMetadata = {
|
|
34
34
|
name: '@progress/kendo-angular-chart-wizard',
|
35
35
|
productName: 'Kendo UI for Angular',
|
36
36
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
37
|
-
publishDate:
|
38
|
-
version: '16.6.
|
37
|
+
publishDate: 1723027361,
|
38
|
+
version: '16.6.3-develop.1',
|
39
39
|
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',
|
40
40
|
};
|
41
41
|
|
@@ -1968,12 +1968,12 @@ class ChartWizardSeriesTypeButtonComponent {
|
|
1968
1968
|
}
|
1969
1969
|
}
|
1970
1970
|
isSelected() {
|
1971
|
-
var _a, _b, _c;
|
1971
|
+
var _a, _b, _c, _d, _e;
|
1972
1972
|
if (((_a = this.stack) === null || _a === void 0 ? void 0 : _a.type) === '100%') {
|
1973
|
-
return ((_b = this.stack) === null || _b === void 0 ? void 0 : _b.type) === ((_c = this.stateService.state.series[0]
|
1973
|
+
return ((_b = this.stack) === null || _b === void 0 ? void 0 : _b.type) === ((_d = (_c = this.stateService.state.series[0]) === null || _c === void 0 ? void 0 : _c.stack) === null || _d === void 0 ? void 0 : _d.type);
|
1974
1974
|
}
|
1975
1975
|
return (this.stateService.state.seriesType === this.seriesType &&
|
1976
|
-
this.stateService.state.series[0].stack === this.stack);
|
1976
|
+
((_e = this.stateService.state.series[0]) === null || _e === void 0 ? void 0 : _e.stack) === this.stack);
|
1977
1977
|
}
|
1978
1978
|
}
|
1979
1979
|
ChartWizardSeriesTypeButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardSeriesTypeButtonComponent, deps: [{ token: StateService }], target: i0.ɵɵFactoryTarget.Component });
|
@@ -2928,7 +2928,7 @@ class ChartWizardGridBindingDirective {
|
|
2928
2928
|
this.chartWizardDataChange.emit(this.chartWizardData);
|
2929
2929
|
}
|
2930
2930
|
}
|
2931
|
-
ChartWizardGridBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardGridBindingDirective, deps: [{ token: GridComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
2931
|
+
ChartWizardGridBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardGridBindingDirective, deps: [{ token: i1.GridComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
2932
2932
|
ChartWizardGridBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ChartWizardGridBindingDirective, isStandalone: true, selector: "[kendoChartWizardGridBinding]", inputs: { chartWizardData: "chartWizardData", data: ["kendoGridBinding", "data"], selectionKey: ["kendoGridSelectBy", "selectionKey"], columnKey: "columnKey" }, outputs: { chartWizardDataChange: "chartWizardDataChange" }, host: { listeners: { "selectedKeysChange": "onSelectionChange($event)" } }, exportAs: ["kendoChartWizardGridBinding"], ngImport: i0 });
|
2933
2933
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardGridBindingDirective, decorators: [{
|
2934
2934
|
type: Directive,
|
@@ -2937,12 +2937,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
2937
2937
|
exportAs: 'kendoChartWizardGridBinding',
|
2938
2938
|
standalone: true
|
2939
2939
|
}]
|
2940
|
-
}], ctorParameters: function () {
|
2941
|
-
return [{ type: i1.GridComponent, decorators: [{
|
2942
|
-
type: Inject,
|
2943
|
-
args: [GridComponent]
|
2944
|
-
}] }];
|
2945
|
-
}, propDecorators: { chartWizardData: [{
|
2940
|
+
}], ctorParameters: function () { return [{ type: i1.GridComponent }]; }, propDecorators: { chartWizardData: [{
|
2946
2941
|
type: Input
|
2947
2942
|
}], chartWizardDataChange: [{
|
2948
2943
|
type: Output
|
@@ -3,7 +3,7 @@
|
|
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 { Injectable, EventEmitter, Component, ChangeDetectionStrategy, Input, Output, HostBinding, ViewChild, Directive,
|
6
|
+
import { Injectable, EventEmitter, Component, ChangeDetectionStrategy, Input, Output, HostBinding, ViewChild, Directive, HostListener, NgModule } from '@angular/core';
|
7
7
|
import { shouldShowValidationUI, WatermarkOverlayComponent, isPresent, ResizeBatchService } from '@progress/kendo-angular-common';
|
8
8
|
import * as i2 from '@progress/kendo-angular-l10n';
|
9
9
|
import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
@@ -34,8 +34,8 @@ const packageMetadata = {
|
|
34
34
|
name: '@progress/kendo-angular-chart-wizard',
|
35
35
|
productName: 'Kendo UI for Angular',
|
36
36
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
37
|
-
publishDate:
|
38
|
-
version: '16.6.
|
37
|
+
publishDate: 1723027361,
|
38
|
+
version: '16.6.3-develop.1',
|
39
39
|
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',
|
40
40
|
};
|
41
41
|
|
@@ -1971,10 +1971,10 @@ class ChartWizardSeriesTypeButtonComponent {
|
|
1971
1971
|
}
|
1972
1972
|
isSelected() {
|
1973
1973
|
if (this.stack?.type === '100%') {
|
1974
|
-
return this.stack?.type === this.stateService.state.series[0]
|
1974
|
+
return this.stack?.type === this.stateService.state.series[0]?.stack?.type;
|
1975
1975
|
}
|
1976
1976
|
return (this.stateService.state.seriesType === this.seriesType &&
|
1977
|
-
this.stateService.state.series[0]
|
1977
|
+
this.stateService.state.series[0]?.stack === this.stack);
|
1978
1978
|
}
|
1979
1979
|
}
|
1980
1980
|
ChartWizardSeriesTypeButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardSeriesTypeButtonComponent, deps: [{ token: StateService }], target: i0.ɵɵFactoryTarget.Component });
|
@@ -2924,7 +2924,7 @@ class ChartWizardGridBindingDirective {
|
|
2924
2924
|
this.chartWizardDataChange.emit(this.chartWizardData);
|
2925
2925
|
}
|
2926
2926
|
}
|
2927
|
-
ChartWizardGridBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardGridBindingDirective, deps: [{ token: GridComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
2927
|
+
ChartWizardGridBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardGridBindingDirective, deps: [{ token: i1.GridComponent }], target: i0.ɵɵFactoryTarget.Directive });
|
2928
2928
|
ChartWizardGridBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: ChartWizardGridBindingDirective, isStandalone: true, selector: "[kendoChartWizardGridBinding]", inputs: { chartWizardData: "chartWizardData", data: ["kendoGridBinding", "data"], selectionKey: ["kendoGridSelectBy", "selectionKey"], columnKey: "columnKey" }, outputs: { chartWizardDataChange: "chartWizardDataChange" }, host: { listeners: { "selectedKeysChange": "onSelectionChange($event)" } }, exportAs: ["kendoChartWizardGridBinding"], ngImport: i0 });
|
2929
2929
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: ChartWizardGridBindingDirective, decorators: [{
|
2930
2930
|
type: Directive,
|
@@ -2933,10 +2933,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
2933
2933
|
exportAs: 'kendoChartWizardGridBinding',
|
2934
2934
|
standalone: true
|
2935
2935
|
}]
|
2936
|
-
}], ctorParameters: function () { return [{ type: i1.GridComponent,
|
2937
|
-
type: Inject,
|
2938
|
-
args: [GridComponent]
|
2939
|
-
}] }]; }, propDecorators: { chartWizardData: [{
|
2936
|
+
}], ctorParameters: function () { return [{ type: i1.GridComponent }]; }, propDecorators: { chartWizardData: [{
|
2940
2937
|
type: Input
|
2941
2938
|
}], chartWizardDataChange: [{
|
2942
2939
|
type: Output
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-chart-wizard",
|
3
|
-
"version": "16.6.
|
3
|
+
"version": "16.6.3-develop.1",
|
4
4
|
"description": "Kendo UI Angular Chart Wizard component",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "Progress",
|
@@ -23,20 +23,20 @@
|
|
23
23
|
"@angular/common": "15 - 18",
|
24
24
|
"@angular/core": "15 - 18",
|
25
25
|
"@angular/platform-browser": "15 - 18",
|
26
|
-
"@progress/kendo-angular-common": "16.6.
|
27
|
-
"@progress/kendo-angular-dialog": "16.6.
|
28
|
-
"@progress/kendo-angular-buttons": "16.6.
|
29
|
-
"@progress/kendo-angular-grid": "16.6.
|
30
|
-
"@progress/kendo-angular-charts": "16.6.
|
31
|
-
"@progress/kendo-angular-dropdowns": "16.6.
|
32
|
-
"@progress/kendo-angular-layout": "16.6.
|
33
|
-
"@progress/kendo-angular-icons": "16.6.
|
34
|
-
"@progress/kendo-angular-inputs": "16.6.
|
35
|
-
"@progress/kendo-angular-label": "16.6.
|
36
|
-
"@progress/kendo-angular-intl": "16.6.
|
37
|
-
"@progress/kendo-angular-l10n": "16.6.
|
38
|
-
"@progress/kendo-angular-navigation": "16.6.
|
39
|
-
"@progress/kendo-angular-popup": "16.6.
|
26
|
+
"@progress/kendo-angular-common": "16.6.3-develop.1",
|
27
|
+
"@progress/kendo-angular-dialog": "16.6.3-develop.1",
|
28
|
+
"@progress/kendo-angular-buttons": "16.6.3-develop.1",
|
29
|
+
"@progress/kendo-angular-grid": "16.6.3-develop.1",
|
30
|
+
"@progress/kendo-angular-charts": "16.6.3-develop.1",
|
31
|
+
"@progress/kendo-angular-dropdowns": "16.6.3-develop.1",
|
32
|
+
"@progress/kendo-angular-layout": "16.6.3-develop.1",
|
33
|
+
"@progress/kendo-angular-icons": "16.6.3-develop.1",
|
34
|
+
"@progress/kendo-angular-inputs": "16.6.3-develop.1",
|
35
|
+
"@progress/kendo-angular-label": "16.6.3-develop.1",
|
36
|
+
"@progress/kendo-angular-intl": "16.6.3-develop.1",
|
37
|
+
"@progress/kendo-angular-l10n": "16.6.3-develop.1",
|
38
|
+
"@progress/kendo-angular-navigation": "16.6.3-develop.1",
|
39
|
+
"@progress/kendo-angular-popup": "16.6.3-develop.1",
|
40
40
|
"@progress/kendo-drawing": "^1.19.0",
|
41
41
|
"@progress/kendo-file-saver": "^1.1.1",
|
42
42
|
"@progress/kendo-licensing": "^1.0.2",
|
@@ -45,7 +45,7 @@
|
|
45
45
|
"dependencies": {
|
46
46
|
"tslib": "^2.3.1",
|
47
47
|
"@progress/kendo-charts": "2.4.1",
|
48
|
-
"@progress/kendo-angular-schematics": "16.6.
|
48
|
+
"@progress/kendo-angular-schematics": "16.6.3-develop.1",
|
49
49
|
"@progress/kendo-common": "^0.2.2"
|
50
50
|
},
|
51
51
|
"schematics": "./schematics/collection.json",
|