@progress/kendo-angular-charts 18.1.0-develop.3 → 18.1.0-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/legend.component.d.ts +3 -2
- package/chart/series-defaults.component.d.ts +3 -2
- package/common/property-types.d.ts +1 -1
- package/esm2022/chart/legend.component.mjs +4 -1
- package/esm2022/chart/series-defaults.component.mjs +4 -1
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/sankey/links.component.mjs +4 -1
- package/esm2022/sankey/nodes.component.mjs +4 -1
- package/fesm2022/progress-kendo-angular-charts.mjs +18 -6
- package/option-types/legend.interface.d.ts +5 -1
- package/option-types/series-defaults.interface.d.ts +5 -1
- package/package.json +9 -9
- package/sankey/api-types/index.d.ts +1 -1
- package/sankey/links.component.d.ts +3 -1
- package/sankey/nodes.component.d.ts +3 -1
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { ConfigurationService } from '../common/configuration.service';
|
|
6
6
|
import { SettingsComponent } from '../common/settings.component';
|
|
7
|
-
import { Border, LegendLabels, Margin, Padding, LegendMarkers, LegendInactiveItems, LegendItem, Legend, LegendTitle } from '../common/property-types';
|
|
7
|
+
import { Border, LegendLabels, Margin, Padding, LegendMarkers, LegendInactiveItems, LegendItem, Legend, LegendTitle, FocusHighlight } from '../common/property-types';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
/**
|
|
10
10
|
* The configuration options of the Chart legend
|
|
@@ -77,7 +77,8 @@ export declare class LegendComponent extends SettingsComponent implements Legend
|
|
|
77
77
|
inactiveItems: LegendInactiveItems;
|
|
78
78
|
item: LegendItem;
|
|
79
79
|
title: LegendTitle;
|
|
80
|
+
focusHighlight?: FocusHighlight;
|
|
80
81
|
constructor(configurationService: ConfigurationService);
|
|
81
82
|
static ɵfac: i0.ɵɵFactoryDeclaration<LegendComponent, never>;
|
|
82
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LegendComponent, "kendo-chart-legend", never, { "align": { "alias": "align"; "required": false; }; "background": { "alias": "background"; "required": false; }; "border": { "alias": "border"; "required": false; }; "height": { "alias": "height"; "required": false; }; "labels": { "alias": "labels"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "offsetX": { "alias": "offsetX"; "required": false; }; "offsetY": { "alias": "offsetY"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "position": { "alias": "position"; "required": false; }; "reverse": { "alias": "reverse"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "width": { "alias": "width"; "required": false; }; "markers": { "alias": "markers"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; "inactiveItems": { "alias": "inactiveItems"; "required": false; }; "item": { "alias": "item"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, never, true, never>;
|
|
83
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LegendComponent, "kendo-chart-legend", never, { "align": { "alias": "align"; "required": false; }; "background": { "alias": "background"; "required": false; }; "border": { "alias": "border"; "required": false; }; "height": { "alias": "height"; "required": false; }; "labels": { "alias": "labels"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "offsetX": { "alias": "offsetX"; "required": false; }; "offsetY": { "alias": "offsetY"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "position": { "alias": "position"; "required": false; }; "reverse": { "alias": "reverse"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "width": { "alias": "width"; "required": false; }; "markers": { "alias": "markers"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; "inactiveItems": { "alias": "inactiveItems"; "required": false; }; "item": { "alias": "item"; "required": false; }; "title": { "alias": "title"; "required": false; }; "focusHighlight": { "alias": "focusHighlight"; "required": false; }; }, {}, never, never, true, never>;
|
|
83
84
|
}
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { ConfigurationService } from '../common/configuration.service';
|
|
6
6
|
import { drawing } from '@progress/kendo-drawing';
|
|
7
7
|
import { SettingsComponent } from '../common/settings.component';
|
|
8
|
-
import { Border, Overlay, SeriesHighlight, SeriesStack, SeriesType, SeriesVisualArgs } from '../common/property-types';
|
|
8
|
+
import { Border, FocusHighlight, Overlay, SeriesHighlight, SeriesStack, SeriesType, SeriesVisualArgs } from '../common/property-types';
|
|
9
9
|
import { SeriesDefaultsLabels, SeriesDefaultsNotes, SeriesDefaultsTooltip, SeriesDefaults } from '../common/property-types';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
/**
|
|
@@ -41,7 +41,8 @@ export declare class SeriesDefaultsComponent extends SettingsComponent implement
|
|
|
41
41
|
labels: SeriesDefaultsLabels;
|
|
42
42
|
notes: SeriesDefaultsNotes;
|
|
43
43
|
tooltip: SeriesDefaultsTooltip;
|
|
44
|
+
focusHighlight?: FocusHighlight;
|
|
44
45
|
constructor(configurationService: ConfigurationService);
|
|
45
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<SeriesDefaultsComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SeriesDefaultsComponent, "kendo-chart-series-defaults", never, { "border": { "alias": "border"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "highlight": { "alias": "highlight"; "required": false; }; "overlay": { "alias": "overlay"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; "stack": { "alias": "stack"; "required": false; }; "type": { "alias": "type"; "required": false; }; "visual": { "alias": "visual"; "required": false; }; "labels": { "alias": "labels"; "required": false; }; "notes": { "alias": "notes"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, {}, never, never, true, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SeriesDefaultsComponent, "kendo-chart-series-defaults", never, { "border": { "alias": "border"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "highlight": { "alias": "highlight"; "required": false; }; "overlay": { "alias": "overlay"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; "stack": { "alias": "stack"; "required": false; }; "type": { "alias": "type"; "required": false; }; "visual": { "alias": "visual"; "required": false; }; "labels": { "alias": "labels"; "required": false; }; "notes": { "alias": "notes"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "focusHighlight": { "alias": "focusHighlight"; "required": false; }; }, {}, never, never, true, never>;
|
|
47
48
|
}
|
|
@@ -141,4 +141,4 @@ export { YAxisNotesLabel } from '../option-types/y-axis-item/notes.label.interfa
|
|
|
141
141
|
export { YAxisTitle } from '../option-types/y-axis-item/title.interface';
|
|
142
142
|
export { YAxis } from '../option-types/y-axis-item.interface';
|
|
143
143
|
export { Zoomable } from '../option-types/zoomable.interface';
|
|
144
|
-
export { type SeriesPattern, type VerticalStripesPattern, type CrosshatchPattern, type DiagonalStripesPattern, type GridPattern, type DotsPattern } from '@progress/kendo-charts';
|
|
144
|
+
export { type SeriesPattern, type VerticalStripesPattern, type CrosshatchPattern, type DiagonalStripesPattern, type GridPattern, type DotsPattern, type FocusHighlight, type FocusHighlightBorder } from '@progress/kendo-charts';
|
|
@@ -79,13 +79,14 @@ export class LegendComponent extends SettingsComponent {
|
|
|
79
79
|
inactiveItems;
|
|
80
80
|
item;
|
|
81
81
|
title;
|
|
82
|
+
focusHighlight;
|
|
82
83
|
constructor(configurationService) {
|
|
83
84
|
super('legend', configurationService);
|
|
84
85
|
this.configurationService = configurationService;
|
|
85
86
|
this.markAsVisible();
|
|
86
87
|
}
|
|
87
88
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LegendComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
88
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LegendComponent, isStandalone: true, selector: "kendo-chart-legend", inputs: { align: "align", background: "background", border: "border", height: "height", labels: "labels", margin: "margin", offsetX: "offsetX", offsetY: "offsetY", orientation: "orientation", padding: "padding", position: "position", reverse: "reverse", visible: "visible", width: "width", markers: "markers", spacing: "spacing", inactiveItems: "inactiveItems", item: "item", title: "title" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
89
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LegendComponent, isStandalone: true, selector: "kendo-chart-legend", inputs: { align: "align", background: "background", border: "border", height: "height", labels: "labels", margin: "margin", offsetX: "offsetX", offsetY: "offsetY", orientation: "orientation", padding: "padding", position: "position", reverse: "reverse", visible: "visible", width: "width", markers: "markers", spacing: "spacing", inactiveItems: "inactiveItems", item: "item", title: "title", focusHighlight: "focusHighlight" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
89
90
|
}
|
|
90
91
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LegendComponent, decorators: [{
|
|
91
92
|
type: Component,
|
|
@@ -133,4 +134,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
133
134
|
type: Input
|
|
134
135
|
}], title: [{
|
|
135
136
|
type: Input
|
|
137
|
+
}], focusHighlight: [{
|
|
138
|
+
type: Input
|
|
136
139
|
}] } });
|
|
@@ -41,12 +41,13 @@ export class SeriesDefaultsComponent extends SettingsComponent {
|
|
|
41
41
|
labels;
|
|
42
42
|
notes;
|
|
43
43
|
tooltip;
|
|
44
|
+
focusHighlight;
|
|
44
45
|
constructor(configurationService) {
|
|
45
46
|
super('seriesDefaults', configurationService);
|
|
46
47
|
this.configurationService = configurationService;
|
|
47
48
|
}
|
|
48
49
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SeriesDefaultsComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
49
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SeriesDefaultsComponent, isStandalone: true, selector: "kendo-chart-series-defaults", inputs: { border: "border", gap: "gap", highlight: "highlight", overlay: "overlay", spacing: "spacing", stack: "stack", type: "type", visual: "visual", labels: "labels", notes: "notes", tooltip: "tooltip" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
50
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SeriesDefaultsComponent, isStandalone: true, selector: "kendo-chart-series-defaults", inputs: { border: "border", gap: "gap", highlight: "highlight", overlay: "overlay", spacing: "spacing", stack: "stack", type: "type", visual: "visual", labels: "labels", notes: "notes", tooltip: "tooltip", focusHighlight: "focusHighlight" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
50
51
|
}
|
|
51
52
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SeriesDefaultsComponent, decorators: [{
|
|
52
53
|
type: Component,
|
|
@@ -78,4 +79,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
78
79
|
type: Input
|
|
79
80
|
}], tooltip: [{
|
|
80
81
|
type: Input
|
|
82
|
+
}], focusHighlight: [{
|
|
83
|
+
type: Input
|
|
81
84
|
}] } });
|
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '18.1.0-develop.
|
|
13
|
+
publishDate: 1738318448,
|
|
14
|
+
version: '18.1.0-develop.4',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -17,12 +17,13 @@ export class SankeyLinksComponent extends SettingsComponent {
|
|
|
17
17
|
color;
|
|
18
18
|
opacity;
|
|
19
19
|
highlight;
|
|
20
|
+
focusHighlight;
|
|
20
21
|
constructor(configurationService) {
|
|
21
22
|
super('links', configurationService);
|
|
22
23
|
this.configurationService = configurationService;
|
|
23
24
|
}
|
|
24
25
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SankeyLinksComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
25
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SankeyLinksComponent, isStandalone: true, selector: "kendo-sankey-links", inputs: { colorType: "colorType", color: "color", opacity: "opacity", highlight: "highlight" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
26
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SankeyLinksComponent, isStandalone: true, selector: "kendo-sankey-links", inputs: { colorType: "colorType", color: "color", opacity: "opacity", highlight: "highlight", focusHighlight: "focusHighlight" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
26
27
|
}
|
|
27
28
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SankeyLinksComponent, decorators: [{
|
|
28
29
|
type: Component,
|
|
@@ -40,4 +41,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
40
41
|
type: Input
|
|
41
42
|
}], highlight: [{
|
|
42
43
|
type: Input
|
|
44
|
+
}], focusHighlight: [{
|
|
45
|
+
type: Input
|
|
43
46
|
}] } });
|
|
@@ -29,12 +29,13 @@ export class SankeyNodesComponent extends SettingsComponent {
|
|
|
29
29
|
padding;
|
|
30
30
|
width;
|
|
31
31
|
align;
|
|
32
|
+
focusHighlight;
|
|
32
33
|
constructor(configurationService) {
|
|
33
34
|
super('nodes', configurationService);
|
|
34
35
|
this.configurationService = configurationService;
|
|
35
36
|
}
|
|
36
37
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SankeyNodesComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
37
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SankeyNodesComponent, isStandalone: true, selector: "kendo-sankey-nodes", inputs: { colorType: "colorType", color: "color", opacity: "opacity", offset: "offset", padding: "padding", width: "width", align: "align" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
38
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SankeyNodesComponent, isStandalone: true, selector: "kendo-sankey-nodes", inputs: { colorType: "colorType", color: "color", opacity: "opacity", offset: "offset", padding: "padding", width: "width", align: "align", focusHighlight: "focusHighlight" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
38
39
|
}
|
|
39
40
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SankeyNodesComponent, decorators: [{
|
|
40
41
|
type: Component,
|
|
@@ -58,4 +59,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
58
59
|
type: Input
|
|
59
60
|
}], align: [{
|
|
60
61
|
type: Input
|
|
62
|
+
}], focusHighlight: [{
|
|
63
|
+
type: Input
|
|
61
64
|
}] } });
|
|
@@ -2909,8 +2909,8 @@ const packageMetadata = {
|
|
|
2909
2909
|
productName: 'Kendo UI for Angular',
|
|
2910
2910
|
productCode: 'KENDOUIANGULAR',
|
|
2911
2911
|
productCodes: ['KENDOUIANGULAR'],
|
|
2912
|
-
publishDate:
|
|
2913
|
-
version: '18.1.0-develop.
|
|
2912
|
+
publishDate: 1738318448,
|
|
2913
|
+
version: '18.1.0-develop.4',
|
|
2914
2914
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
2915
2915
|
};
|
|
2916
2916
|
|
|
@@ -8745,13 +8745,14 @@ class LegendComponent extends SettingsComponent {
|
|
|
8745
8745
|
inactiveItems;
|
|
8746
8746
|
item;
|
|
8747
8747
|
title;
|
|
8748
|
+
focusHighlight;
|
|
8748
8749
|
constructor(configurationService) {
|
|
8749
8750
|
super('legend', configurationService);
|
|
8750
8751
|
this.configurationService = configurationService;
|
|
8751
8752
|
this.markAsVisible();
|
|
8752
8753
|
}
|
|
8753
8754
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LegendComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
8754
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LegendComponent, isStandalone: true, selector: "kendo-chart-legend", inputs: { align: "align", background: "background", border: "border", height: "height", labels: "labels", margin: "margin", offsetX: "offsetX", offsetY: "offsetY", orientation: "orientation", padding: "padding", position: "position", reverse: "reverse", visible: "visible", width: "width", markers: "markers", spacing: "spacing", inactiveItems: "inactiveItems", item: "item", title: "title" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
8755
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: LegendComponent, isStandalone: true, selector: "kendo-chart-legend", inputs: { align: "align", background: "background", border: "border", height: "height", labels: "labels", margin: "margin", offsetX: "offsetX", offsetY: "offsetY", orientation: "orientation", padding: "padding", position: "position", reverse: "reverse", visible: "visible", width: "width", markers: "markers", spacing: "spacing", inactiveItems: "inactiveItems", item: "item", title: "title", focusHighlight: "focusHighlight" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
8755
8756
|
}
|
|
8756
8757
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: LegendComponent, decorators: [{
|
|
8757
8758
|
type: Component,
|
|
@@ -8799,6 +8800,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
8799
8800
|
type: Input
|
|
8800
8801
|
}], title: [{
|
|
8801
8802
|
type: Input
|
|
8803
|
+
}], focusHighlight: [{
|
|
8804
|
+
type: Input
|
|
8802
8805
|
}] } });
|
|
8803
8806
|
|
|
8804
8807
|
/**
|
|
@@ -9136,12 +9139,13 @@ class SeriesDefaultsComponent extends SettingsComponent {
|
|
|
9136
9139
|
labels;
|
|
9137
9140
|
notes;
|
|
9138
9141
|
tooltip;
|
|
9142
|
+
focusHighlight;
|
|
9139
9143
|
constructor(configurationService) {
|
|
9140
9144
|
super('seriesDefaults', configurationService);
|
|
9141
9145
|
this.configurationService = configurationService;
|
|
9142
9146
|
}
|
|
9143
9147
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SeriesDefaultsComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
9144
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SeriesDefaultsComponent, isStandalone: true, selector: "kendo-chart-series-defaults", inputs: { border: "border", gap: "gap", highlight: "highlight", overlay: "overlay", spacing: "spacing", stack: "stack", type: "type", visual: "visual", labels: "labels", notes: "notes", tooltip: "tooltip" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
9148
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SeriesDefaultsComponent, isStandalone: true, selector: "kendo-chart-series-defaults", inputs: { border: "border", gap: "gap", highlight: "highlight", overlay: "overlay", spacing: "spacing", stack: "stack", type: "type", visual: "visual", labels: "labels", notes: "notes", tooltip: "tooltip", focusHighlight: "focusHighlight" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
9145
9149
|
}
|
|
9146
9150
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SeriesDefaultsComponent, decorators: [{
|
|
9147
9151
|
type: Component,
|
|
@@ -9173,6 +9177,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
9173
9177
|
type: Input
|
|
9174
9178
|
}], tooltip: [{
|
|
9175
9179
|
type: Input
|
|
9180
|
+
}], focusHighlight: [{
|
|
9181
|
+
type: Input
|
|
9176
9182
|
}] } });
|
|
9177
9183
|
|
|
9178
9184
|
/**
|
|
@@ -11960,12 +11966,13 @@ class SankeyLinksComponent extends SettingsComponent {
|
|
|
11960
11966
|
color;
|
|
11961
11967
|
opacity;
|
|
11962
11968
|
highlight;
|
|
11969
|
+
focusHighlight;
|
|
11963
11970
|
constructor(configurationService) {
|
|
11964
11971
|
super('links', configurationService);
|
|
11965
11972
|
this.configurationService = configurationService;
|
|
11966
11973
|
}
|
|
11967
11974
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SankeyLinksComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
11968
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SankeyLinksComponent, isStandalone: true, selector: "kendo-sankey-links", inputs: { colorType: "colorType", color: "color", opacity: "opacity", highlight: "highlight" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
11975
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SankeyLinksComponent, isStandalone: true, selector: "kendo-sankey-links", inputs: { colorType: "colorType", color: "color", opacity: "opacity", highlight: "highlight", focusHighlight: "focusHighlight" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
11969
11976
|
}
|
|
11970
11977
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SankeyLinksComponent, decorators: [{
|
|
11971
11978
|
type: Component,
|
|
@@ -11983,6 +11990,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
11983
11990
|
type: Input
|
|
11984
11991
|
}], highlight: [{
|
|
11985
11992
|
type: Input
|
|
11993
|
+
}], focusHighlight: [{
|
|
11994
|
+
type: Input
|
|
11986
11995
|
}] } });
|
|
11987
11996
|
|
|
11988
11997
|
/**
|
|
@@ -12048,12 +12057,13 @@ class SankeyNodesComponent extends SettingsComponent {
|
|
|
12048
12057
|
padding;
|
|
12049
12058
|
width;
|
|
12050
12059
|
align;
|
|
12060
|
+
focusHighlight;
|
|
12051
12061
|
constructor(configurationService) {
|
|
12052
12062
|
super('nodes', configurationService);
|
|
12053
12063
|
this.configurationService = configurationService;
|
|
12054
12064
|
}
|
|
12055
12065
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SankeyNodesComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
12056
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SankeyNodesComponent, isStandalone: true, selector: "kendo-sankey-nodes", inputs: { colorType: "colorType", color: "color", opacity: "opacity", offset: "offset", padding: "padding", width: "width", align: "align" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
12066
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SankeyNodesComponent, isStandalone: true, selector: "kendo-sankey-nodes", inputs: { colorType: "colorType", color: "color", opacity: "opacity", offset: "offset", padding: "padding", width: "width", align: "align", focusHighlight: "focusHighlight" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
12057
12067
|
}
|
|
12058
12068
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SankeyNodesComponent, decorators: [{
|
|
12059
12069
|
type: Component,
|
|
@@ -12077,6 +12087,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
12077
12087
|
type: Input
|
|
12078
12088
|
}], align: [{
|
|
12079
12089
|
type: Input
|
|
12090
|
+
}], focusHighlight: [{
|
|
12091
|
+
type: Input
|
|
12080
12092
|
}] } });
|
|
12081
12093
|
|
|
12082
12094
|
/**
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright © 2025 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 { Border, LegendLabels, Margin, Padding, LegendTitle } from '../common/property-types';
|
|
5
|
+
import { Border, LegendLabels, Margin, Padding, LegendTitle, FocusHighlight } from '../common/property-types';
|
|
6
6
|
import { LegendInactiveItems } from './legend/inactive-items.interface';
|
|
7
7
|
import { LegendItem } from './legend/item.interface';
|
|
8
8
|
import { LegendMarkers } from './legend/markers.interface';
|
|
@@ -93,4 +93,8 @@ export interface Legend {
|
|
|
93
93
|
* By default, the Chart will not render a legend title.
|
|
94
94
|
*/
|
|
95
95
|
title?: LegendTitle;
|
|
96
|
+
/**
|
|
97
|
+
* The focus highlight configuration options of the Chart legend.
|
|
98
|
+
*/
|
|
99
|
+
focusHighlight?: FocusHighlight;
|
|
96
100
|
}
|
|
@@ -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 { drawing } from '@progress/kendo-drawing';
|
|
6
|
-
import { Border, Overlay, SeriesHighlight, SeriesStack, SeriesType, SeriesVisualArgs } from '../common/property-types';
|
|
6
|
+
import { Border, FocusHighlight, Overlay, SeriesHighlight, SeriesStack, SeriesType, SeriesVisualArgs } from '../common/property-types';
|
|
7
7
|
import { Series } from '../option-types/series-item.interface';
|
|
8
8
|
import { SeriesDefaultsLabels } from './series-defaults/labels.interface';
|
|
9
9
|
import { SeriesDefaultsNotes } from './series-defaults/notes.interface';
|
|
@@ -174,4 +174,8 @@ export interface SeriesDefaults {
|
|
|
174
174
|
* The configuration options of the Chart series tooltip.
|
|
175
175
|
*/
|
|
176
176
|
tooltip?: SeriesDefaultsTooltip;
|
|
177
|
+
/**
|
|
178
|
+
* The focus highlight configuration options.
|
|
179
|
+
*/
|
|
180
|
+
focusHighlight?: FocusHighlight;
|
|
177
181
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-charts",
|
|
3
|
-
"version": "18.1.0-develop.
|
|
3
|
+
"version": "18.1.0-develop.4",
|
|
4
4
|
"description": "Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"package": {
|
|
43
43
|
"productName": "Kendo UI for Angular",
|
|
44
44
|
"productCode": "KENDOUIANGULAR",
|
|
45
|
-
"publishDate":
|
|
45
|
+
"publishDate": 1738318448,
|
|
46
46
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
47
47
|
}
|
|
48
48
|
},
|
|
@@ -53,17 +53,17 @@
|
|
|
53
53
|
"@angular/platform-browser": "16 - 19",
|
|
54
54
|
"@progress/kendo-drawing": "^1.21.0",
|
|
55
55
|
"@progress/kendo-licensing": "^1.0.2",
|
|
56
|
-
"@progress/kendo-angular-common": "18.1.0-develop.
|
|
57
|
-
"@progress/kendo-angular-intl": "18.1.0-develop.
|
|
58
|
-
"@progress/kendo-angular-icons": "18.1.0-develop.
|
|
59
|
-
"@progress/kendo-angular-l10n": "18.1.0-develop.
|
|
60
|
-
"@progress/kendo-angular-popup": "18.1.0-develop.
|
|
61
|
-
"@progress/kendo-angular-navigation": "18.1.0-develop.
|
|
56
|
+
"@progress/kendo-angular-common": "18.1.0-develop.4",
|
|
57
|
+
"@progress/kendo-angular-intl": "18.1.0-develop.4",
|
|
58
|
+
"@progress/kendo-angular-icons": "18.1.0-develop.4",
|
|
59
|
+
"@progress/kendo-angular-l10n": "18.1.0-develop.4",
|
|
60
|
+
"@progress/kendo-angular-popup": "18.1.0-develop.4",
|
|
61
|
+
"@progress/kendo-angular-navigation": "18.1.0-develop.4",
|
|
62
62
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"tslib": "^2.3.1",
|
|
66
|
-
"@progress/kendo-angular-schematics": "18.1.0-develop.
|
|
66
|
+
"@progress/kendo-angular-schematics": "18.1.0-develop.4",
|
|
67
67
|
"@progress/kendo-charts": "2.7.0",
|
|
68
68
|
"@progress/kendo-svg-icons": "^4.0.0"
|
|
69
69
|
},
|
|
@@ -13,7 +13,7 @@ export interface SankeyTitle extends Title {
|
|
|
13
13
|
/**
|
|
14
14
|
* Represents the Sankey legend options.
|
|
15
15
|
*/
|
|
16
|
-
export interface SankeyLegend extends Omit<Legend, 'inactiveItems' | 'item'> {
|
|
16
|
+
export interface SankeyLegend extends Omit<Legend, 'inactiveItems' | 'item' | 'focusHighlight'> {
|
|
17
17
|
/**
|
|
18
18
|
* The configuration of the legend items.
|
|
19
19
|
*/
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import { ConfigurationService } from '../common/configuration.service';
|
|
6
6
|
import { SettingsComponent } from '../common/settings.component';
|
|
7
7
|
import { SankeyLinkDefaults, SankeyLinkHighlight } from './api-types';
|
|
8
|
+
import { FocusHighlight } from '@progress/kendo-charts';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
/**
|
|
10
11
|
* The configuration options of the Sankey links
|
|
@@ -16,7 +17,8 @@ export declare class SankeyLinksComponent extends SettingsComponent implements S
|
|
|
16
17
|
color?: string;
|
|
17
18
|
opacity?: number;
|
|
18
19
|
highlight?: SankeyLinkHighlight;
|
|
20
|
+
focusHighlight?: FocusHighlight;
|
|
19
21
|
constructor(configurationService: ConfigurationService);
|
|
20
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<SankeyLinksComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SankeyLinksComponent, "kendo-sankey-links", never, { "colorType": { "alias": "colorType"; "required": false; }; "color": { "alias": "color"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "highlight": { "alias": "highlight"; "required": false; }; }, {}, never, never, true, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SankeyLinksComponent, "kendo-sankey-links", never, { "colorType": { "alias": "colorType"; "required": false; }; "color": { "alias": "color"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "highlight": { "alias": "highlight"; "required": false; }; "focusHighlight": { "alias": "focusHighlight"; "required": false; }; }, {}, never, never, true, never>;
|
|
22
24
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import { ConfigurationService } from '../common/configuration.service';
|
|
6
6
|
import { SettingsComponent } from '../common/settings.component';
|
|
7
7
|
import { SankeyNodeDefaults, SankeyOffset } from './api-types';
|
|
8
|
+
import { FocusHighlight } from '@progress/kendo-charts';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
/**
|
|
10
11
|
* The configuration options of the Sankey nodes
|
|
@@ -28,7 +29,8 @@ export declare class SankeyNodesComponent extends SettingsComponent implements S
|
|
|
28
29
|
padding?: number;
|
|
29
30
|
width?: number;
|
|
30
31
|
align?: 'stretch' | 'left' | 'right';
|
|
32
|
+
focusHighlight?: FocusHighlight;
|
|
31
33
|
constructor(configurationService: ConfigurationService);
|
|
32
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<SankeyNodesComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SankeyNodesComponent, "kendo-sankey-nodes", never, { "colorType": { "alias": "colorType"; "required": false; }; "color": { "alias": "color"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "width": { "alias": "width"; "required": false; }; "align": { "alias": "align"; "required": false; }; }, {}, never, never, true, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SankeyNodesComponent, "kendo-sankey-nodes", never, { "colorType": { "alias": "colorType"; "required": false; }; "color": { "alias": "color"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "width": { "alias": "width"; "required": false; }; "align": { "alias": "align"; "required": false; }; "focusHighlight": { "alias": "focusHighlight"; "required": false; }; }, {}, never, never, true, never>;
|
|
34
36
|
}
|