@progress/kendo-angular-chart-wizard 16.9.0-develop.8 → 16.9.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-chart-wizard",
3
- "version": "16.9.0-develop.8",
3
+ "version": "16.9.0",
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.9.0-develop.8",
27
- "@progress/kendo-angular-dialog": "16.9.0-develop.8",
28
- "@progress/kendo-angular-buttons": "16.9.0-develop.8",
29
- "@progress/kendo-angular-grid": "16.9.0-develop.8",
30
- "@progress/kendo-angular-charts": "16.9.0-develop.8",
31
- "@progress/kendo-angular-dropdowns": "16.9.0-develop.8",
32
- "@progress/kendo-angular-layout": "16.9.0-develop.8",
33
- "@progress/kendo-angular-icons": "16.9.0-develop.8",
34
- "@progress/kendo-angular-inputs": "16.9.0-develop.8",
35
- "@progress/kendo-angular-label": "16.9.0-develop.8",
36
- "@progress/kendo-angular-intl": "16.9.0-develop.8",
37
- "@progress/kendo-angular-l10n": "16.9.0-develop.8",
38
- "@progress/kendo-angular-navigation": "16.9.0-develop.8",
39
- "@progress/kendo-angular-popup": "16.9.0-develop.8",
26
+ "@progress/kendo-angular-common": "16.9.0",
27
+ "@progress/kendo-angular-dialog": "16.9.0",
28
+ "@progress/kendo-angular-buttons": "16.9.0",
29
+ "@progress/kendo-angular-grid": "16.9.0",
30
+ "@progress/kendo-angular-charts": "16.9.0",
31
+ "@progress/kendo-angular-dropdowns": "16.9.0",
32
+ "@progress/kendo-angular-layout": "16.9.0",
33
+ "@progress/kendo-angular-icons": "16.9.0",
34
+ "@progress/kendo-angular-inputs": "16.9.0",
35
+ "@progress/kendo-angular-label": "16.9.0",
36
+ "@progress/kendo-angular-intl": "16.9.0",
37
+ "@progress/kendo-angular-l10n": "16.9.0",
38
+ "@progress/kendo-angular-navigation": "16.9.0",
39
+ "@progress/kendo-angular-popup": "16.9.0",
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",
@@ -44,8 +44,8 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "tslib": "^2.3.1",
47
- "@progress/kendo-charts": "2.4.2",
48
- "@progress/kendo-angular-schematics": "16.9.0-develop.8",
47
+ "@progress/kendo-charts": "2.5.0",
48
+ "@progress/kendo-angular-schematics": "16.9.0",
49
49
  "@progress/kendo-common": "^0.2.2"
50
50
  },
51
51
  "schematics": "./schematics/collection.json",
@@ -2,8 +2,8 @@
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 { AfterViewInit, ChangeDetectorRef, Renderer2 } from '@angular/core';
5
6
  import { StateService } from '../state.service';
6
- import { ActionTypes } from '../chart-wizard-state';
7
7
  import { FormBuilder, FormGroup } from '@angular/forms';
8
8
  import { CreateFormGroupArgs, GridComponent, RemoveEvent } from '@progress/kendo-angular-grid';
9
9
  import { SVGIcon } from '@progress/kendo-svg-icons';
@@ -11,23 +11,27 @@ import * as i0 from "@angular/core";
11
11
  /**
12
12
  * @hidden
13
13
  */
14
- export declare class ChartWizardPropertyPaneFormatTabComponent {
14
+ export declare class ChartWizardPropertyPaneDataTabComponent implements AfterViewInit {
15
15
  stateService: StateService;
16
16
  private formBuilder;
17
- categoryAxisX: ActionTypes;
18
- valueAxisY: ActionTypes;
19
- seriesChange: ActionTypes;
17
+ private cdr;
18
+ renderer: Renderer2;
19
+ categoryAxisX: import("@progress/kendo-charts").ActionTypes;
20
+ valueAxisY: import("@progress/kendo-charts").ActionTypes;
20
21
  trashIcon: SVGIcon;
21
22
  plusIcon: SVGIcon;
22
- isCategorical: (type?: import("@progress/kendo-angular-charts").SeriesType) => boolean;
23
- constructor(stateService: StateService, formBuilder: FormBuilder);
24
- updateState(action: ActionTypes, value: any): void;
23
+ isCategorical: (seriesType?: import("@progress/kendo-charts/dist/npm/chart-wizard").ChartWizardSeriesType) => boolean;
24
+ grid: GridComponent;
25
+ constructor(stateService: StateService, formBuilder: FormBuilder, cdr: ChangeDetectorRef, renderer: Renderer2);
26
+ ngAfterViewInit(): void;
27
+ updateState(action: any, value: any): void;
25
28
  formGroup: FormGroup;
26
29
  createFormGroup(args: CreateFormGroupArgs): FormGroup;
27
30
  addData(): void;
28
31
  removeData(event: RemoveEvent): void;
29
32
  onRowReorder(grid: GridComponent): void;
30
33
  isDisabled(grid: GridComponent): boolean;
31
- static ɵfac: i0.ɵɵFactoryDeclaration<ChartWizardPropertyPaneFormatTabComponent, never>;
32
- static ɵcmp: i0.ɵɵComponentDeclaration<ChartWizardPropertyPaneFormatTabComponent, "kendo-chartwizard-property-pane-data-tab", never, {}, {}, never, never, true, never>;
34
+ detectChanges(): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChartWizardPropertyPaneDataTabComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChartWizardPropertyPaneDataTabComponent, "kendo-chartwizard-property-pane-data-tab", never, {}, {}, never, never, true, never>;
33
37
  }
@@ -6,7 +6,7 @@ import { EventEmitter, AfterViewInit, ChangeDetectorRef, AfterViewChecked, OnDes
6
6
  import { ComboBoxComponent, DropDownListComponent } from '@progress/kendo-angular-dropdowns';
7
7
  import { CheckBoxComponent, ColorPickerComponent, NumericTextBoxComponent, TextBoxComponent } from '@progress/kendo-angular-inputs';
8
8
  import { LabelComponent } from '@progress/kendo-angular-label';
9
- import { ActionTypes, ChartWizardState } from '../chart-wizard-state';
9
+ import { ChartWizardState } from '@progress/kendo-charts';
10
10
  import { LocalizationService } from '@progress/kendo-angular-l10n';
11
11
  import * as i0 from "@angular/core";
12
12
  /**
@@ -16,7 +16,7 @@ export declare class ChartWizardPropertyPaneFormFieldComponent implements AfterV
16
16
  private localization;
17
17
  private cdr;
18
18
  currentState: ChartWizardState;
19
- action: ActionTypes;
19
+ action: any;
20
20
  class: string;
21
21
  inputType: string;
22
22
  text: string;
@@ -3,14 +3,14 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { AfterViewChecked, ChangeDetectorRef, OnDestroy } from '@angular/core';
6
- import { ActionTypes, SeriesItem } from '../chart-wizard-state';
7
6
  import { StateService } from '../state.service';
8
7
  import { LocalizationService } from '@progress/kendo-angular-l10n';
8
+ import { ActionTypes as ActionTypesType, ChartWizardSeriesItem } from '@progress/kendo-charts';
9
9
  import * as i0 from "@angular/core";
10
10
  /**
11
11
  * @hidden
12
12
  */
13
- export declare class ChartWizardPropertyPaneDataTabComponent implements AfterViewChecked, OnDestroy {
13
+ export declare class ChartWizardPropertyPaneFormatTabComponent implements AfterViewChecked, OnDestroy {
14
14
  stateService: StateService;
15
15
  private localization;
16
16
  private cdr;
@@ -18,47 +18,37 @@ export declare class ChartWizardPropertyPaneDataTabComponent implements AfterVie
18
18
  text: string;
19
19
  value: string;
20
20
  }[];
21
- titleText: ActionTypes;
22
- titleFontName: ActionTypes;
23
- titleFontSize: ActionTypes;
24
- titleColor: ActionTypes;
25
- subtitleText: ActionTypes;
26
- subtitleFontName: ActionTypes;
27
- subtitleFontSize: ActionTypes;
28
- subtitleColor: ActionTypes;
29
- areaMarginLeft: ActionTypes;
30
- areaMarginRight: ActionTypes;
31
- areaMarginTop: ActionTypes;
32
- areaMarginBottom: ActionTypes;
33
- areaBackground: ActionTypes;
34
- legendVisible: ActionTypes;
35
- legendFontName: ActionTypes;
36
- legendFontSize: ActionTypes;
37
- legendColor: ActionTypes;
38
- legendPosition: ActionTypes;
39
- seriesColor: ActionTypes;
40
- seriesLabel: ActionTypes;
41
- categoryAxisTitleText: ActionTypes;
42
- categoryAxisTitleFontName: ActionTypes;
43
- categoryAxisTitleFontSize: ActionTypes;
44
- categoryAxisTitleColor: ActionTypes;
45
- categoryAxisLabelsFontName: ActionTypes;
46
- categoryAxisLabelsFontSize: ActionTypes;
47
- categoryAxisLabelsColor: ActionTypes;
48
- categoryAxisLabelsRotation: ActionTypes;
49
- categoryAxisReverseOrder: ActionTypes;
50
- valueAxisTitleText: ActionTypes;
51
- valueAxisTitleFontName: ActionTypes;
52
- valueAxisTitleFontSize: ActionTypes;
53
- valueAxisTitleColor: ActionTypes;
54
- valueAxisLabelsFontName: ActionTypes;
55
- valueAxisLabelsFormat: ActionTypes;
56
- valueAxisLabelsFontSize: ActionTypes;
57
- valueAxisLabelsColor: ActionTypes;
58
- valueAxisLabelsRotation: ActionTypes;
21
+ areaMarginLeft: ActionTypesType;
22
+ areaMarginRight: ActionTypesType;
23
+ areaMarginTop: ActionTypesType;
24
+ areaMarginBottom: ActionTypesType;
25
+ areaBackground: ActionTypesType;
26
+ legendVisible: ActionTypesType;
27
+ legendFontName: ActionTypesType;
28
+ legendFontSize: ActionTypesType;
29
+ legendColor: ActionTypesType;
30
+ legendPosition: ActionTypesType;
31
+ categoryAxisTitleText: ActionTypesType;
32
+ categoryAxisTitleFontName: ActionTypesType;
33
+ categoryAxisTitleFontSize: ActionTypesType;
34
+ categoryAxisTitleColor: ActionTypesType;
35
+ categoryAxisLabelsFontName: ActionTypesType;
36
+ categoryAxisLabelsFontSize: ActionTypesType;
37
+ categoryAxisLabelsColor: ActionTypesType;
38
+ categoryAxisLabelsRotation: ActionTypesType;
39
+ categoryAxisReverseOrder: ActionTypesType;
40
+ valueAxisTitleText: ActionTypesType;
41
+ valueAxisTitleFontName: ActionTypesType;
42
+ valueAxisTitleFontSize: ActionTypesType;
43
+ valueAxisTitleColor: ActionTypesType;
44
+ valueAxisLabelsFontName: ActionTypesType;
45
+ valueAxisLabelsFormat: ActionTypesType;
46
+ valueAxisLabelsFontSize: ActionTypesType;
47
+ valueAxisLabelsColor: ActionTypesType;
48
+ valueAxisLabelsRotation: ActionTypesType;
59
49
  parseFont: (font?: string) => {
60
- size: string;
61
50
  name: string;
51
+ size: string;
62
52
  };
63
53
  labelFormats: {
64
54
  value: string;
@@ -93,21 +83,21 @@ export declare class ChartWizardPropertyPaneDataTabComponent implements AfterVie
93
83
  get chartTitleTypeFont(): string;
94
84
  get chartTitleTypeFontSize(): string;
95
85
  get chartTitleTypeColor(): string;
96
- get chartTitleTypeAction(): ActionTypes;
97
- get chartTitleTypeFontAction(): ActionTypes;
98
- get chartTitleTypeColorAction(): ActionTypes;
99
- get chartTitleTypeFontSizeAction(): ActionTypes;
86
+ get chartTitleTypeAction(): ActionTypesType;
87
+ get chartTitleTypeFontAction(): ActionTypesType;
88
+ get chartTitleTypeColorAction(): ActionTypesType;
89
+ get chartTitleTypeFontSizeAction(): ActionTypesType;
100
90
  get seriesData(): any[];
101
91
  get showLabels(): boolean;
102
92
  get labelFormatValue(): any;
103
93
  constructor(stateService: StateService, localization: LocalizationService, cdr: ChangeDetectorRef);
104
94
  ngAfterViewChecked(): void;
105
95
  ngOnDestroy(): void;
106
- updateState(action: ActionTypes, value: any): void;
96
+ updateState(action: any, value: any): void;
107
97
  changeCurrentTitle(value: 'Chart Title' | 'Chart Subtitle'): void;
108
98
  toggleSeriesLabels(value: boolean): void;
109
- updateCurrentSeries(value: SeriesItem): void;
99
+ updateCurrentSeries(value: ChartWizardSeriesItem): void;
110
100
  updateSeriesColor(value: string): void;
111
- static ɵfac: i0.ɵɵFactoryDeclaration<ChartWizardPropertyPaneDataTabComponent, never>;
112
- static ɵcmp: i0.ɵɵComponentDeclaration<ChartWizardPropertyPaneDataTabComponent, "kendo-chartwizard-property-pane-format-tab", never, {}, {}, never, never, true, never>;
101
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChartWizardPropertyPaneFormatTabComponent, never>;
102
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChartWizardPropertyPaneFormatTabComponent, "kendo-chartwizard-property-pane-format-tab", never, {}, {}, never, never, true, never>;
113
103
  }
@@ -5,7 +5,7 @@
5
5
  import { SVGIcon } from "@progress/kendo-svg-icons";
6
6
  import { StateService } from "./state.service";
7
7
  import { SeriesStack } from "@progress/kendo-angular-charts";
8
- import { SeriesType } from "@progress/kendo-angular-charts";
8
+ import { ChartWizardSeriesType } from "@progress/kendo-charts";
9
9
  import * as i0 from "@angular/core";
10
10
  /**
11
11
  * @hidden
@@ -15,7 +15,7 @@ export declare class ChartWizardSeriesTypeButtonComponent {
15
15
  title: string;
16
16
  chartTypeIcon: SVGIcon;
17
17
  stack: string | boolean | SeriesStack;
18
- seriesType: SeriesType;
18
+ seriesType: ChartWizardSeriesType;
19
19
  constructor(stateService: StateService);
20
20
  onSelect(): void;
21
21
  isSelected(): boolean;
@@ -2,15 +2,14 @@
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 { SeriesType } from "@progress/kendo-angular-charts";
6
- import { ChartWizardState } from "./chart-wizard-state";
5
+ import { ChartWizardState, ChartWizardSeriesType } from "@progress/kendo-charts";
7
6
  import * as i0 from "@angular/core";
8
7
  /**
9
8
  * @hidden
10
9
  */
11
10
  export declare class StateService {
12
11
  state: ChartWizardState;
13
- seriesType: SeriesType;
12
+ seriesType: ChartWizardSeriesType;
14
13
  currentTitle: 'Chart Title' | 'Chart Subtitle';
15
14
  currentSeries: any;
16
15
  data: any[];
@@ -21,6 +20,7 @@ export declare class StateService {
21
20
  height: number;
22
21
  };
23
22
  splitterPaneSize: string;
23
+ dataTab: any;
24
24
  static ɵfac: i0.ɵɵFactoryDeclaration<StateService, never>;
25
25
  static ɵprov: i0.ɵɵInjectableDeclaration<StateService>;
26
26
  }