@progress/kendo-angular-chart-wizard 16.6.1-develop.2 → 16.6.1-develop.4
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 +1 -1
- package/chart-wizard.component.d.ts +8 -4
- package/common/get-wizard-data-from-data-rows.d.ts +7 -1
- package/esm2020/chart-wizard.component.mjs +6 -4
- package/esm2020/grid-integration/grid-chart-wizard.directive.mjs +1 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-chart-wizard.mjs +9 -7
- package/fesm2020/progress-kendo-angular-chart-wizard.mjs +9 -7
- package/grid-integration/grid-chart-wizard.directive.d.ts +1 -1
- package/index.d.ts +1 -0
- package/package.json +16 -16
package/chart-wizard-state.d.ts
CHANGED
@@ -17,7 +17,7 @@ export interface ChartWizardDataCell {
|
|
17
17
|
value: any;
|
18
18
|
}
|
19
19
|
/**
|
20
|
-
* Describes a data row for the Chart Wizard.
|
20
|
+
* Describes a data row for the Chart Wizard. The data row must be an array of [`ChartWizardDataCell`](slug:api_chart-wizard_chartwizarddatacell).
|
21
21
|
*/
|
22
22
|
export declare type ChartWizardDataRow = ChartWizardDataCell[];
|
23
23
|
export interface SeriesItem extends Series {
|
@@ -12,7 +12,11 @@ import { ExportEvent } from './events';
|
|
12
12
|
import { ExportOptions } from './common/models';
|
13
13
|
import * as i0 from "@angular/core";
|
14
14
|
/**
|
15
|
-
*
|
15
|
+
* Represents the Kendo UI for Angular Chart Wizard component.
|
16
|
+
*
|
17
|
+
* @example
|
18
|
+
* ```html
|
19
|
+
* <kendo-chartwizard [data]="data"></kendo-chartwizard>
|
16
20
|
* ```
|
17
21
|
*/
|
18
22
|
export declare class ChartWizardComponent implements OnChanges, OnDestroy {
|
@@ -23,11 +27,11 @@ export declare class ChartWizardComponent implements OnChanges, OnDestroy {
|
|
23
27
|
*/
|
24
28
|
data: ChartWizardDataRow[];
|
25
29
|
/**
|
26
|
-
* Sets the default state of the Chart Wizard
|
30
|
+
* Sets the default state of the Chart Wizard.
|
27
31
|
*/
|
28
32
|
defaultState: ChartWizardInitialState;
|
29
33
|
/**
|
30
|
-
* The Chart Wizard export options
|
34
|
+
* The Chart Wizard export options.
|
31
35
|
*/
|
32
36
|
exportOptions: ExportOptions;
|
33
37
|
/**
|
@@ -50,7 +54,7 @@ export declare class ChartWizardComponent implements OnChanges, OnDestroy {
|
|
50
54
|
*/
|
51
55
|
close: EventEmitter<any>;
|
52
56
|
/**
|
53
|
-
* Fires when the Chart is about to be exported.
|
57
|
+
* Fires when the Chart is about to be exported. The event is preventable.
|
54
58
|
*/
|
55
59
|
export: EventEmitter<ExportEvent>;
|
56
60
|
get dir(): string;
|
@@ -5,6 +5,9 @@
|
|
5
5
|
/**
|
6
6
|
* Describes a single data cell for the Chart Wizard.
|
7
7
|
*/
|
8
|
+
/**
|
9
|
+
* @hidden
|
10
|
+
*/
|
8
11
|
export interface ChartWizardDataCell {
|
9
12
|
/**
|
10
13
|
* The field name of the data cell.
|
@@ -16,7 +19,10 @@ export interface ChartWizardDataCell {
|
|
16
19
|
value: any;
|
17
20
|
}
|
18
21
|
/**
|
19
|
-
* Describes a data row for the Chart Wizard.
|
22
|
+
* Describes a data row for the Chart Wizard. The data row must be an array of [`ChartWizardDataCell`](slug:api_chart-wizard_chartwizarddatacell).
|
23
|
+
*/
|
24
|
+
/**
|
25
|
+
* @hidden
|
20
26
|
*/
|
21
27
|
export declare type ChartWizardDataRow = ChartWizardDataCell[];
|
22
28
|
/**
|
@@ -40,7 +40,11 @@ import * as i0 from "@angular/core";
|
|
40
40
|
import * as i1 from "@progress/kendo-angular-l10n";
|
41
41
|
import * as i2 from "./state.service";
|
42
42
|
/**
|
43
|
-
*
|
43
|
+
* Represents the Kendo UI for Angular Chart Wizard component.
|
44
|
+
*
|
45
|
+
* @example
|
46
|
+
* ```html
|
47
|
+
* <kendo-chartwizard [data]="data"></kendo-chartwizard>
|
44
48
|
* ```
|
45
49
|
*/
|
46
50
|
export class ChartWizardComponent {
|
@@ -77,7 +81,7 @@ export class ChartWizardComponent {
|
|
77
81
|
*/
|
78
82
|
this.close = new EventEmitter();
|
79
83
|
/**
|
80
|
-
* Fires when the Chart is about to be exported.
|
84
|
+
* Fires when the Chart is about to be exported. The event is preventable.
|
81
85
|
*/
|
82
86
|
this.export = new EventEmitter();
|
83
87
|
this.subscription = new Subscription();
|
@@ -173,7 +177,6 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
173
177
|
[height]="stateService.windowSize.height"
|
174
178
|
[resizable]="true"
|
175
179
|
(close)="close.emit()"
|
176
|
-
autoFocusedElement=".k-chart-wizard.k-window"
|
177
180
|
>
|
178
181
|
<kendo-splitter class="k-chart-wizard-splitter">
|
179
182
|
<kendo-splitter-pane class="k-chart-wizard-preview-pane">
|
@@ -350,7 +353,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
350
353
|
[height]="stateService.windowSize.height"
|
351
354
|
[resizable]="true"
|
352
355
|
(close)="close.emit()"
|
353
|
-
autoFocusedElement=".k-chart-wizard.k-window"
|
354
356
|
>
|
355
357
|
<kendo-splitter class="k-chart-wizard-splitter">
|
356
358
|
<kendo-splitter-pane class="k-chart-wizard-preview-pane">
|
@@ -9,7 +9,7 @@ import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "@progress/kendo-angular-grid";
|
10
10
|
/**
|
11
11
|
* A directive which binds the Chart Wizard from the selection state of the Grid
|
12
|
-
* ([see example](slug:
|
12
|
+
* ([see example](slug:grid_integration_with_chart).
|
13
13
|
*/
|
14
14
|
export class ChartWizardGridBindingDirective {
|
15
15
|
constructor(grid) {
|
@@ -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.1-develop.
|
12
|
+
publishDate: 1722958061,
|
13
|
+
version: '16.6.1-develop.4',
|
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
|
};
|
@@ -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.1-develop.
|
37
|
+
publishDate: 1722958061,
|
38
|
+
version: '16.6.1-develop.4',
|
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
|
|
@@ -2287,7 +2287,11 @@ class ExportEvent extends PreventableEvent {
|
|
2287
2287
|
}
|
2288
2288
|
|
2289
2289
|
/**
|
2290
|
-
*
|
2290
|
+
* Represents the Kendo UI for Angular Chart Wizard component.
|
2291
|
+
*
|
2292
|
+
* @example
|
2293
|
+
* ```html
|
2294
|
+
* <kendo-chartwizard [data]="data"></kendo-chartwizard>
|
2291
2295
|
* ```
|
2292
2296
|
*/
|
2293
2297
|
class ChartWizardComponent {
|
@@ -2324,7 +2328,7 @@ class ChartWizardComponent {
|
|
2324
2328
|
*/
|
2325
2329
|
this.close = new EventEmitter();
|
2326
2330
|
/**
|
2327
|
-
* Fires when the Chart is about to be exported.
|
2331
|
+
* Fires when the Chart is about to be exported. The event is preventable.
|
2328
2332
|
*/
|
2329
2333
|
this.export = new EventEmitter();
|
2330
2334
|
this.subscription = new Subscription();
|
@@ -2425,7 +2429,6 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
2425
2429
|
[height]="stateService.windowSize.height"
|
2426
2430
|
[resizable]="true"
|
2427
2431
|
(close)="close.emit()"
|
2428
|
-
autoFocusedElement=".k-chart-wizard.k-window"
|
2429
2432
|
>
|
2430
2433
|
<kendo-splitter class="k-chart-wizard-splitter">
|
2431
2434
|
<kendo-splitter-pane class="k-chart-wizard-preview-pane">
|
@@ -2602,7 +2605,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
2602
2605
|
[height]="stateService.windowSize.height"
|
2603
2606
|
[resizable]="true"
|
2604
2607
|
(close)="close.emit()"
|
2605
|
-
autoFocusedElement=".k-chart-wizard.k-window"
|
2606
2608
|
>
|
2607
2609
|
<kendo-splitter class="k-chart-wizard-splitter">
|
2608
2610
|
<kendo-splitter-pane class="k-chart-wizard-preview-pane">
|
@@ -2881,7 +2883,7 @@ const getWizardDataFromGridSelection = (args) => getWizardDataFromDataRows(getGr
|
|
2881
2883
|
|
2882
2884
|
/**
|
2883
2885
|
* A directive which binds the Chart Wizard from the selection state of the Grid
|
2884
|
-
* ([see example](slug:
|
2886
|
+
* ([see example](slug:grid_integration_with_chart).
|
2885
2887
|
*/
|
2886
2888
|
class ChartWizardGridBindingDirective {
|
2887
2889
|
constructor(grid) {
|
@@ -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.1-develop.
|
37
|
+
publishDate: 1722958061,
|
38
|
+
version: '16.6.1-develop.4',
|
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
|
|
@@ -2288,7 +2288,11 @@ class ExportEvent extends PreventableEvent {
|
|
2288
2288
|
}
|
2289
2289
|
|
2290
2290
|
/**
|
2291
|
-
*
|
2291
|
+
* Represents the Kendo UI for Angular Chart Wizard component.
|
2292
|
+
*
|
2293
|
+
* @example
|
2294
|
+
* ```html
|
2295
|
+
* <kendo-chartwizard [data]="data"></kendo-chartwizard>
|
2292
2296
|
* ```
|
2293
2297
|
*/
|
2294
2298
|
class ChartWizardComponent {
|
@@ -2325,7 +2329,7 @@ class ChartWizardComponent {
|
|
2325
2329
|
*/
|
2326
2330
|
this.close = new EventEmitter();
|
2327
2331
|
/**
|
2328
|
-
* Fires when the Chart is about to be exported.
|
2332
|
+
* Fires when the Chart is about to be exported. The event is preventable.
|
2329
2333
|
*/
|
2330
2334
|
this.export = new EventEmitter();
|
2331
2335
|
this.subscription = new Subscription();
|
@@ -2421,7 +2425,6 @@ ChartWizardComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", v
|
|
2421
2425
|
[height]="stateService.windowSize.height"
|
2422
2426
|
[resizable]="true"
|
2423
2427
|
(close)="close.emit()"
|
2424
|
-
autoFocusedElement=".k-chart-wizard.k-window"
|
2425
2428
|
>
|
2426
2429
|
<kendo-splitter class="k-chart-wizard-splitter">
|
2427
2430
|
<kendo-splitter-pane class="k-chart-wizard-preview-pane">
|
@@ -2598,7 +2601,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
2598
2601
|
[height]="stateService.windowSize.height"
|
2599
2602
|
[resizable]="true"
|
2600
2603
|
(close)="close.emit()"
|
2601
|
-
autoFocusedElement=".k-chart-wizard.k-window"
|
2602
2604
|
>
|
2603
2605
|
<kendo-splitter class="k-chart-wizard-splitter">
|
2604
2606
|
<kendo-splitter-pane class="k-chart-wizard-preview-pane">
|
@@ -2877,7 +2879,7 @@ const getWizardDataFromGridSelection = (args) => getWizardDataFromDataRows(getGr
|
|
2877
2879
|
|
2878
2880
|
/**
|
2879
2881
|
* A directive which binds the Chart Wizard from the selection state of the Grid
|
2880
|
-
* ([see example](slug:
|
2882
|
+
* ([see example](slug:grid_integration_with_chart).
|
2881
2883
|
*/
|
2882
2884
|
class ChartWizardGridBindingDirective {
|
2883
2885
|
constructor(grid) {
|
@@ -8,7 +8,7 @@ import { ChartWizardDataRow } from "../chart-wizard-state";
|
|
8
8
|
import * as i0 from "@angular/core";
|
9
9
|
/**
|
10
10
|
* A directive which binds the Chart Wizard from the selection state of the Grid
|
11
|
-
* ([see example](slug:
|
11
|
+
* ([see example](slug:grid_integration_with_chart).
|
12
12
|
*/
|
13
13
|
export declare class ChartWizardGridBindingDirective implements OnInit {
|
14
14
|
protected grid: GridComponent;
|
package/index.d.ts
CHANGED
@@ -7,6 +7,7 @@ export * from './chart-wizard.module';
|
|
7
7
|
export * from './grid-integration';
|
8
8
|
export * from './common';
|
9
9
|
export * from './events';
|
10
|
+
export { ExportOptions } from './common/models';
|
10
11
|
export { ChartWizardInitialState } from './chart-wizard-state';
|
11
12
|
export { ChartWizardModule } from './chart-wizard.module';
|
12
13
|
export { KENDO_CHARTWIZARD } from './directives';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@progress/kendo-angular-chart-wizard",
|
3
|
-
"version": "16.6.1-develop.
|
3
|
+
"version": "16.6.1-develop.4",
|
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.1-develop.
|
27
|
-
"@progress/kendo-angular-dialog": "16.6.1-develop.
|
28
|
-
"@progress/kendo-angular-buttons": "16.6.1-develop.
|
29
|
-
"@progress/kendo-angular-grid": "16.6.1-develop.
|
30
|
-
"@progress/kendo-angular-charts": "16.6.1-develop.
|
31
|
-
"@progress/kendo-angular-dropdowns": "16.6.1-develop.
|
32
|
-
"@progress/kendo-angular-layout": "16.6.1-develop.
|
33
|
-
"@progress/kendo-angular-icons": "16.6.1-develop.
|
34
|
-
"@progress/kendo-angular-inputs": "16.6.1-develop.
|
35
|
-
"@progress/kendo-angular-label": "16.6.1-develop.
|
36
|
-
"@progress/kendo-angular-intl": "16.6.1-develop.
|
37
|
-
"@progress/kendo-angular-l10n": "16.6.1-develop.
|
38
|
-
"@progress/kendo-angular-navigation": "16.6.1-develop.
|
39
|
-
"@progress/kendo-angular-popup": "16.6.1-develop.
|
26
|
+
"@progress/kendo-angular-common": "16.6.1-develop.4",
|
27
|
+
"@progress/kendo-angular-dialog": "16.6.1-develop.4",
|
28
|
+
"@progress/kendo-angular-buttons": "16.6.1-develop.4",
|
29
|
+
"@progress/kendo-angular-grid": "16.6.1-develop.4",
|
30
|
+
"@progress/kendo-angular-charts": "16.6.1-develop.4",
|
31
|
+
"@progress/kendo-angular-dropdowns": "16.6.1-develop.4",
|
32
|
+
"@progress/kendo-angular-layout": "16.6.1-develop.4",
|
33
|
+
"@progress/kendo-angular-icons": "16.6.1-develop.4",
|
34
|
+
"@progress/kendo-angular-inputs": "16.6.1-develop.4",
|
35
|
+
"@progress/kendo-angular-label": "16.6.1-develop.4",
|
36
|
+
"@progress/kendo-angular-intl": "16.6.1-develop.4",
|
37
|
+
"@progress/kendo-angular-l10n": "16.6.1-develop.4",
|
38
|
+
"@progress/kendo-angular-navigation": "16.6.1-develop.4",
|
39
|
+
"@progress/kendo-angular-popup": "16.6.1-develop.4",
|
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.1-develop.
|
48
|
+
"@progress/kendo-angular-schematics": "16.6.1-develop.4",
|
49
49
|
"@progress/kendo-common": "^0.2.2"
|
50
50
|
},
|
51
51
|
"schematics": "./schematics/collection.json",
|