@progress/kendo-angular-charts 18.1.0-develop.3 → 18.1.0-develop.31
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/category-axis-item.component.d.ts +5 -1
- package/chart/legend.component.d.ts +3 -2
- package/chart/series-defaults.component.d.ts +3 -2
- package/chart/x-axis-item.component.d.ts +4 -1
- package/common/property-types.d.ts +1 -1
- package/common/theme.service.d.ts +2 -13
- package/esm2022/chart/category-axis-item.component.mjs +13 -1
- package/esm2022/chart/legend.component.mjs +4 -1
- package/esm2022/chart/series-defaults.component.mjs +4 -1
- package/esm2022/chart/x-axis-item.component.mjs +11 -1
- package/esm2022/common/theme.service.mjs +15 -198
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/sankey/links.component.mjs +4 -1
- package/esm2022/sankey/nodes.component.mjs +4 -1
- package/esm2022/sankey/theme.service.mjs +25 -0
- package/esm2022/sankey.component.mjs +5 -11
- package/fesm2022/progress-kendo-angular-charts.mjs +77 -214
- package/option-types/legend.interface.d.ts +5 -1
- package/option-types/series-defaults.interface.d.ts +5 -1
- package/package.json +11 -11
- 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
- package/sankey/theme.service.d.ts +14 -0
- package/sankey.component.d.ts +3 -4
|
@@ -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
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { ThemeService } from '../common/theme.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* @hidden
|
|
9
|
+
*/
|
|
10
|
+
export declare class SankeyThemeService extends ThemeService {
|
|
11
|
+
protected readTheme(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SankeyThemeService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SankeyThemeService>;
|
|
14
|
+
}
|
package/sankey.component.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
|
7
7
|
import { Group, ImageExportOptions, SVGExportOptions } from '@progress/kendo-drawing';
|
|
8
8
|
import { Subscription } from 'rxjs';
|
|
9
9
|
import { ConfigurationService } from './common/configuration.service';
|
|
10
|
-
import {
|
|
10
|
+
import { SankeyThemeService } from './sankey/theme.service';
|
|
11
11
|
import { InstanceEventService, SankeyLinkEvent, SankeyNodeEvent } from './sankey/events';
|
|
12
12
|
import { Sankey, SankeyEvent, SankeyTooltipEvent } from '@progress/kendo-charts';
|
|
13
13
|
import { SankeyExportVisualOptions, SankeyLabelDefaults, SankeyLinkDefaults, SankeyNodeDefaults, SankeyTooltip } from './sankey/api-types';
|
|
@@ -50,7 +50,7 @@ import * as i0 from "@angular/core";
|
|
|
50
50
|
export declare class SankeyComponent implements AfterViewInit, OnChanges, OnDestroy {
|
|
51
51
|
protected element: ElementRef;
|
|
52
52
|
configurationService: ConfigurationService;
|
|
53
|
-
themeService:
|
|
53
|
+
themeService: SankeyThemeService;
|
|
54
54
|
protected localizationService: LocalizationService;
|
|
55
55
|
protected instanceEventService: InstanceEventService;
|
|
56
56
|
protected ngZone: NgZone;
|
|
@@ -141,7 +141,7 @@ export declare class SankeyComponent implements AfterViewInit, OnChanges, OnDest
|
|
|
141
141
|
protected destroyed: boolean;
|
|
142
142
|
protected subscriptions: Subscription;
|
|
143
143
|
protected rtl: boolean;
|
|
144
|
-
constructor(element: ElementRef, configurationService: ConfigurationService, themeService:
|
|
144
|
+
constructor(element: ElementRef, configurationService: ConfigurationService, themeService: SankeyThemeService, localizationService: LocalizationService, instanceEventService: InstanceEventService, ngZone: NgZone, changeDetector: ChangeDetectorRef, renderer: Renderer2, intlService: IntlService);
|
|
145
145
|
ngAfterViewInit(): void;
|
|
146
146
|
ngOnChanges(changes: {
|
|
147
147
|
[propertyName: string]: SimpleChange;
|
|
@@ -203,7 +203,6 @@ export declare class SankeyComponent implements AfterViewInit, OnChanges, OnDest
|
|
|
203
203
|
protected get instanceOptions(): any;
|
|
204
204
|
protected activeEmitter(name: string): any;
|
|
205
205
|
protected refreshWait(): void;
|
|
206
|
-
protected loadTheme(chartTheme: any): any;
|
|
207
206
|
protected run(callback: any, inZone?: boolean, detectChanges?: boolean): void;
|
|
208
207
|
protected detectChanges(): void;
|
|
209
208
|
protected intlChange(): void;
|