@progress/kendo-angular-chart-wizard 16.6.2 → 16.6.3-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/chart-wizard-state.d.ts +9 -2
- package/common/models.d.ts +6 -0
- package/esm2020/chart-wizard-state.mjs +27 -11
- package/esm2020/chart-wizard.component.mjs +10 -12
- package/esm2020/common/models.mjs +4 -1
- package/esm2020/grid-integration/grid-chart-wizard.directive.mjs +3 -6
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/property-pane/data-tab.component.mjs +7 -5
- package/esm2020/property-pane/form-field.component.mjs +6 -1
- package/esm2020/property-pane/format-tab.component.mjs +52 -19
- package/esm2020/series-type-button.component.mjs +2 -2
- package/esm2020/state.service.mjs +2 -1
- package/fesm2015/progress-kendo-angular-chart-wizard.mjs +115 -62
- package/fesm2020/progress-kendo-angular-chart-wizard.mjs +113 -59
- package/package.json +16 -16
- package/property-pane/form-field.component.d.ts +2 -1
- package/property-pane/format-tab.component.d.ts +10 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-chart-wizard",
|
3
|
-
"version": "16.6.2",
|
3
|
+
"version": "16.6.3-develop.2",
|
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.2",
|
27
|
-
"@progress/kendo-angular-dialog": "16.6.2",
|
28
|
-
"@progress/kendo-angular-buttons": "16.6.2",
|
29
|
-
"@progress/kendo-angular-grid": "16.6.2",
|
30
|
-
"@progress/kendo-angular-charts": "16.6.2",
|
31
|
-
"@progress/kendo-angular-dropdowns": "16.6.2",
|
32
|
-
"@progress/kendo-angular-layout": "16.6.2",
|
33
|
-
"@progress/kendo-angular-icons": "16.6.2",
|
34
|
-
"@progress/kendo-angular-inputs": "16.6.2",
|
35
|
-
"@progress/kendo-angular-label": "16.6.2",
|
36
|
-
"@progress/kendo-angular-intl": "16.6.2",
|
37
|
-
"@progress/kendo-angular-l10n": "16.6.2",
|
38
|
-
"@progress/kendo-angular-navigation": "16.6.2",
|
39
|
-
"@progress/kendo-angular-popup": "16.6.2",
|
26
|
+
"@progress/kendo-angular-common": "16.6.3-develop.2",
|
27
|
+
"@progress/kendo-angular-dialog": "16.6.3-develop.2",
|
28
|
+
"@progress/kendo-angular-buttons": "16.6.3-develop.2",
|
29
|
+
"@progress/kendo-angular-grid": "16.6.3-develop.2",
|
30
|
+
"@progress/kendo-angular-charts": "16.6.3-develop.2",
|
31
|
+
"@progress/kendo-angular-dropdowns": "16.6.3-develop.2",
|
32
|
+
"@progress/kendo-angular-layout": "16.6.3-develop.2",
|
33
|
+
"@progress/kendo-angular-icons": "16.6.3-develop.2",
|
34
|
+
"@progress/kendo-angular-inputs": "16.6.3-develop.2",
|
35
|
+
"@progress/kendo-angular-label": "16.6.3-develop.2",
|
36
|
+
"@progress/kendo-angular-intl": "16.6.3-develop.2",
|
37
|
+
"@progress/kendo-angular-l10n": "16.6.3-develop.2",
|
38
|
+
"@progress/kendo-angular-navigation": "16.6.3-develop.2",
|
39
|
+
"@progress/kendo-angular-popup": "16.6.3-develop.2",
|
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.2",
|
48
|
+
"@progress/kendo-angular-schematics": "16.6.3-develop.2",
|
49
49
|
"@progress/kendo-common": "^0.2.2"
|
50
50
|
},
|
51
51
|
"schematics": "./schematics/collection.json",
|
@@ -26,6 +26,7 @@ export declare class ChartWizardPropertyPaneFormFieldComponent implements AfterV
|
|
26
26
|
hasLabel: boolean;
|
27
27
|
isLabelInsideFormFieldWrap: boolean;
|
28
28
|
value: any;
|
29
|
+
disabled: boolean;
|
29
30
|
valueChange: EventEmitter<any>;
|
30
31
|
formField: boolean;
|
31
32
|
get isColSpan2(): boolean;
|
@@ -41,5 +42,5 @@ export declare class ChartWizardPropertyPaneFormFieldComponent implements AfterV
|
|
41
42
|
ngOnDestroy(): void;
|
42
43
|
ngAfterViewInit(): void;
|
43
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChartWizardPropertyPaneFormFieldComponent, never>;
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChartWizardPropertyPaneFormFieldComponent, "kendo-chartwizard-property-pane-form-field", never, { "currentState": "currentState"; "action": "action"; "class": "class"; "inputType": "inputType"; "text": "text"; "data": "data"; "placeholder": "placeholder"; "colSpan": "colSpan"; "hasLabel": "hasLabel"; "isLabelInsideFormFieldWrap": "isLabelInsideFormFieldWrap"; "value": "value"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChartWizardPropertyPaneFormFieldComponent, "kendo-chartwizard-property-pane-form-field", never, { "currentState": "currentState"; "action": "action"; "class": "class"; "inputType": "inputType"; "text": "text"; "data": "data"; "placeholder": "placeholder"; "colSpan": "colSpan"; "hasLabel": "hasLabel"; "isLabelInsideFormFieldWrap": "isLabelInsideFormFieldWrap"; "value": "value"; "disabled": "disabled"; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
45
46
|
}
|
@@ -60,6 +60,9 @@ export declare class ChartWizardPropertyPaneDataTabComponent implements AfterVie
|
|
60
60
|
size: string;
|
61
61
|
name: string;
|
62
62
|
};
|
63
|
+
defaultAllSeriesItem: {
|
64
|
+
name: string;
|
65
|
+
};
|
63
66
|
fontNames: {
|
64
67
|
text: string;
|
65
68
|
value: string;
|
@@ -75,10 +78,13 @@ export declare class ChartWizardPropertyPaneDataTabComponent implements AfterVie
|
|
75
78
|
text: string;
|
76
79
|
value: string;
|
77
80
|
}[];
|
78
|
-
labelsRotation: {
|
81
|
+
labelsRotation: ({
|
82
|
+
text: string;
|
83
|
+
value: string;
|
84
|
+
} | {
|
79
85
|
text: string;
|
80
86
|
value: number;
|
81
|
-
}[];
|
87
|
+
})[];
|
82
88
|
get chartTitleTypeText(): string;
|
83
89
|
get chartTitleTypeFont(): string;
|
84
90
|
get chartTitleTypeFontSize(): string;
|
@@ -87,6 +93,8 @@ export declare class ChartWizardPropertyPaneDataTabComponent implements AfterVie
|
|
87
93
|
get chartTitleTypeFontAction(): ActionTypes;
|
88
94
|
get chartTitleTypeColorAction(): ActionTypes;
|
89
95
|
get chartTitleTypeFontSizeAction(): ActionTypes;
|
96
|
+
get seriesData(): any[];
|
97
|
+
get showLabels(): boolean;
|
90
98
|
constructor(stateService: StateService, localization: LocalizationService, cdr: ChangeDetectorRef);
|
91
99
|
ngAfterViewChecked(): void;
|
92
100
|
ngOnDestroy(): void;
|