@progress/kendo-angular-charts 16.6.0-develop.1 → 16.6.0-develop.11
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/NOTICE.txt +12 -19
- package/chart.directives.d.ts +3 -65
- package/chart.module.d.ts +90 -90
- package/charts.module.d.ts +90 -90
- package/common.directives.d.ts +78 -0
- package/directives.d.ts +4 -73
- package/esm2020/chart.directives.mjs +1 -139
- package/esm2020/chart.module.mjs +91 -91
- package/esm2020/charts.module.mjs +91 -91
- package/esm2020/common/theme.service.mjs +5 -2
- package/esm2020/common.directives.mjs +149 -0
- package/esm2020/directives.mjs +7 -151
- package/esm2020/index.mjs +2 -0
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/sankey.directives.mjs +1 -7
- package/fesm2015/progress-kendo-angular-charts.mjs +3967 -4040
- package/fesm2020/progress-kendo-angular-charts.mjs +3959 -4032
- package/index.d.ts +2 -0
- package/package.json +8 -8
- package/sankey.directives.d.ts +1 -5
- package/sparkline.directives.d.ts +1 -1
- package/stock-chart.directives.d.ts +29 -1
package/esm2020/directives.mjs
CHANGED
|
@@ -2,172 +2,27 @@
|
|
|
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 { SeriesTooltipTemplateDirective } from './chart/tooltip/series-tooltip-template.directive';
|
|
6
|
-
import { SharedTooltipTemplateDirective } from './chart/tooltip/shared-tooltip-template.directive';
|
|
7
|
-
import { CrosshairTooltipComponent } from './chart/tooltip/crosshair-tooltip.component';
|
|
8
|
-
import { CrosshairTooltipsContainerComponent } from './chart/tooltip/crosshair-tooltips-container.component';
|
|
9
|
-
import { TooltipPopupComponent } from './chart/tooltip/tooltip-popup.component';
|
|
10
|
-
import { AxisDefaultsComponent } from './chart/axis-defaults.component';
|
|
11
|
-
import { AxisDefaultsCrosshairComponent } from './chart/axis-defaults/crosshair.component';
|
|
12
|
-
import { AxisDefaultsCrosshairTooltipComponent } from './chart/axis-defaults/crosshair.tooltip.component';
|
|
13
|
-
import { AxisDefaultsLabelsComponent } from './chart/axis-defaults/labels.component';
|
|
14
|
-
import { AxisDefaultsTitleComponent } from './chart/axis-defaults/title.component';
|
|
15
|
-
import { CategoryAxisComponent } from './chart/category-axis.component';
|
|
16
|
-
import { CategoryAxisCrosshairComponent } from './chart/category-axis-item/crosshair.component';
|
|
17
|
-
import { CategoryAxisCrosshairTooltipComponent } from './chart/category-axis-item/crosshair.tooltip.component';
|
|
18
|
-
import { CategoryAxisItemComponent } from './chart/category-axis-item.component';
|
|
19
|
-
import { CategoryAxisLabelsComponent } from './chart/category-axis-item/labels.component';
|
|
20
|
-
import { CategoryAxisRangeLabelsComponent } from './chart/category-axis-item/range-labels.component';
|
|
21
|
-
import { CategoryAxisNotesComponent } from './chart/category-axis-item/notes.component';
|
|
22
|
-
import { CategoryAxisNotesIconComponent } from './chart/category-axis-item/notes.icon.component';
|
|
23
|
-
import { CategoryAxisNotesLabelComponent } from './chart/category-axis-item/notes.label.component';
|
|
24
|
-
import { CategoryAxisSelectComponent } from './chart/category-axis-item/select.component';
|
|
25
|
-
import { CategoryAxisTitleComponent } from './chart/category-axis-item/title.component';
|
|
26
|
-
import { ChartAreaComponent } from './chart/chart-area.component';
|
|
27
|
-
import { LegendComponent } from './chart/legend.component';
|
|
28
|
-
import { LegendInactiveItemsComponent } from './chart/legend/inactive-items.component';
|
|
29
|
-
import { LegendItemComponent } from './chart/legend/item.component';
|
|
30
|
-
import { PaneComponent } from './chart/pane.component';
|
|
31
|
-
import { PaneDefaultsComponent } from './chart/pane-defaults.component';
|
|
32
|
-
import { PaneDefaultsTitleComponent } from './chart/pane-defaults/title.component';
|
|
33
|
-
import { PanesComponent } from './chart/panes.component';
|
|
34
|
-
import { PanesTitleComponent } from './chart/pane/title.component';
|
|
35
|
-
import { PlotAreaComponent } from './chart/plot-area.component';
|
|
36
|
-
import { SeriesComponent } from './chart/series.component';
|
|
37
|
-
import { SeriesDefaultsComponent } from './chart/series-defaults.component';
|
|
38
|
-
import { SeriesDefaultsLabelsComponent } from './chart/series-defaults/labels.component';
|
|
39
|
-
import { SeriesDefaultsLabelsFromComponent } from './chart/series-defaults/labels.from.component';
|
|
40
|
-
import { SeriesDefaultsLabelsToComponent } from './chart/series-defaults/labels.to.component';
|
|
41
|
-
import { SeriesDefaultsNotesComponent } from './chart/series-defaults/notes.component';
|
|
42
|
-
import { SeriesDefaultsNotesIconComponent } from './chart/series-defaults/notes.icon.component';
|
|
43
|
-
import { SeriesDefaultsNotesLabelComponent } from './chart/series-defaults/notes.label.component';
|
|
44
|
-
import { SeriesDefaultsTooltipComponent } from './chart/series-defaults/tooltip.component';
|
|
45
|
-
import { SeriesErrorBarsComponent } from './chart/series-item/error-bars.component';
|
|
46
|
-
import { SeriesExtremesComponent } from './chart/series-item/extremes.component';
|
|
47
|
-
import { SeriesHighlightComponent } from './chart/series-item/highlight.component';
|
|
48
|
-
import { SeriesItemComponent } from './chart/series-item.component';
|
|
49
|
-
import { SeriesLabelsComponent } from './chart/series-item/labels.component';
|
|
50
|
-
import { SeriesLabelsFromComponent } from './chart/series-item/labels.from.component';
|
|
51
|
-
import { SeriesLabelsToComponent } from './chart/series-item/labels.to.component';
|
|
52
|
-
import { SeriesMarkersComponent } from './chart/series-item/markers.component';
|
|
53
|
-
import { SeriesNotesComponent } from './chart/series-item/notes.component';
|
|
54
|
-
import { SeriesNotesIconComponent } from './chart/series-item/notes.icon.component';
|
|
55
|
-
import { SeriesNotesLabelComponent } from './chart/series-item/notes.label.component';
|
|
56
|
-
import { SeriesOutliersComponent } from './chart/series-item/outliers.component';
|
|
57
|
-
import { SeriesTooltipComponent } from './chart/series-item/tooltip.component';
|
|
58
|
-
import { SeriesTrendlineComponent } from './chart/series-item/trendline.component';
|
|
59
|
-
import { SeriesTrendlineForecastComponent } from './chart/series-item/trendline.forecast.component';
|
|
60
|
-
import { SubtitleComponent } from './chart/subtitle.component';
|
|
61
|
-
import { TitleComponent } from './chart/title.component';
|
|
62
|
-
import { TooltipComponent } from './chart/tooltip.component';
|
|
63
|
-
import { ValueAxisComponent } from './chart/value-axis.component';
|
|
64
|
-
import { ValueAxisCrosshairComponent } from './chart/value-axis-item/crosshair.component';
|
|
65
|
-
import { ValueAxisCrosshairTooltipComponent } from './chart/value-axis-item/crosshair.tooltip.component';
|
|
66
|
-
import { ValueAxisItemComponent } from './chart/value-axis-item.component';
|
|
67
|
-
import { ValueAxisLabelsComponent } from './chart/value-axis-item/labels.component';
|
|
68
|
-
import { ValueAxisNotesComponent } from './chart/value-axis-item/notes.component';
|
|
69
|
-
import { ValueAxisNotesIconComponent } from './chart/value-axis-item/notes.icon.component';
|
|
70
|
-
import { ValueAxisNotesLabelComponent } from './chart/value-axis-item/notes.label.component';
|
|
71
|
-
import { ValueAxisTitleComponent } from './chart/value-axis-item/title.component';
|
|
72
|
-
import { SeriesDrilldownTemplateDirective } from './chart/series-drilldown-template.directive';
|
|
73
|
-
import { ChartBreadcrumbComponent } from './chart-breadcrumb.component';
|
|
74
5
|
import { SparklineComponent } from './sparkline.component';
|
|
75
6
|
import { STOCK_CHART_DIRECTIVES } from './stock-chart.directives';
|
|
76
7
|
import { CHART_DIRECTIVES } from './chart.directives';
|
|
77
8
|
import { SANKEY_DIRECTIVES } from './sankey.directives';
|
|
9
|
+
import { KENDO_CHARTSCOMMON } from './common.directives';
|
|
78
10
|
/**
|
|
79
11
|
* Utility array that contains all `Chart` related components and directives
|
|
80
12
|
*/
|
|
81
|
-
export const KENDO_CHART = [
|
|
82
|
-
...CHART_DIRECTIVES
|
|
83
|
-
];
|
|
13
|
+
export const KENDO_CHART = [...CHART_DIRECTIVES, ...KENDO_CHARTSCOMMON];
|
|
84
14
|
/**
|
|
85
15
|
* Utility array that contains all `SparkLine` related components and directives
|
|
86
16
|
*/
|
|
87
|
-
export const KENDO_SPARKLINE = [
|
|
88
|
-
SparklineComponent
|
|
89
|
-
];
|
|
17
|
+
export const KENDO_SPARKLINE = [SparklineComponent];
|
|
90
18
|
/**
|
|
91
19
|
* Utility array that contains all `StockChart` related components and directives
|
|
92
20
|
*/
|
|
93
|
-
export const KENDO_STOCKCHART = [
|
|
94
|
-
...STOCK_CHART_DIRECTIVES,
|
|
95
|
-
TooltipPopupComponent,
|
|
96
|
-
SeriesTooltipTemplateDirective,
|
|
97
|
-
SharedTooltipTemplateDirective,
|
|
98
|
-
CrosshairTooltipsContainerComponent,
|
|
99
|
-
CrosshairTooltipComponent,
|
|
100
|
-
AxisDefaultsComponent,
|
|
101
|
-
AxisDefaultsCrosshairComponent,
|
|
102
|
-
AxisDefaultsCrosshairTooltipComponent,
|
|
103
|
-
AxisDefaultsLabelsComponent,
|
|
104
|
-
AxisDefaultsTitleComponent,
|
|
105
|
-
CategoryAxisComponent,
|
|
106
|
-
CategoryAxisCrosshairComponent,
|
|
107
|
-
CategoryAxisCrosshairTooltipComponent,
|
|
108
|
-
CategoryAxisItemComponent,
|
|
109
|
-
CategoryAxisLabelsComponent,
|
|
110
|
-
CategoryAxisRangeLabelsComponent,
|
|
111
|
-
CategoryAxisNotesComponent,
|
|
112
|
-
CategoryAxisNotesIconComponent,
|
|
113
|
-
CategoryAxisNotesLabelComponent,
|
|
114
|
-
CategoryAxisSelectComponent,
|
|
115
|
-
CategoryAxisTitleComponent,
|
|
116
|
-
ChartAreaComponent,
|
|
117
|
-
ChartBreadcrumbComponent,
|
|
118
|
-
LegendComponent,
|
|
119
|
-
LegendInactiveItemsComponent,
|
|
120
|
-
LegendItemComponent,
|
|
121
|
-
PaneComponent,
|
|
122
|
-
PaneDefaultsComponent,
|
|
123
|
-
PaneDefaultsTitleComponent,
|
|
124
|
-
PanesComponent,
|
|
125
|
-
PanesTitleComponent,
|
|
126
|
-
PlotAreaComponent,
|
|
127
|
-
SeriesComponent,
|
|
128
|
-
SeriesDefaultsComponent,
|
|
129
|
-
SeriesDefaultsLabelsComponent,
|
|
130
|
-
SeriesDefaultsLabelsFromComponent,
|
|
131
|
-
SeriesDefaultsLabelsToComponent,
|
|
132
|
-
SeriesDefaultsNotesComponent,
|
|
133
|
-
SeriesDefaultsNotesIconComponent,
|
|
134
|
-
SeriesDefaultsNotesLabelComponent,
|
|
135
|
-
SeriesDefaultsTooltipComponent,
|
|
136
|
-
SeriesDrilldownTemplateDirective,
|
|
137
|
-
SeriesErrorBarsComponent,
|
|
138
|
-
SeriesExtremesComponent,
|
|
139
|
-
SeriesHighlightComponent,
|
|
140
|
-
SeriesItemComponent,
|
|
141
|
-
SeriesLabelsComponent,
|
|
142
|
-
SeriesLabelsFromComponent,
|
|
143
|
-
SeriesLabelsToComponent,
|
|
144
|
-
SeriesMarkersComponent,
|
|
145
|
-
SeriesNotesComponent,
|
|
146
|
-
SeriesNotesIconComponent,
|
|
147
|
-
SeriesNotesLabelComponent,
|
|
148
|
-
SeriesOutliersComponent,
|
|
149
|
-
SeriesTooltipComponent,
|
|
150
|
-
SeriesTrendlineComponent,
|
|
151
|
-
SeriesTrendlineForecastComponent,
|
|
152
|
-
SubtitleComponent,
|
|
153
|
-
TitleComponent,
|
|
154
|
-
TooltipComponent,
|
|
155
|
-
ValueAxisComponent,
|
|
156
|
-
ValueAxisCrosshairComponent,
|
|
157
|
-
ValueAxisCrosshairTooltipComponent,
|
|
158
|
-
ValueAxisItemComponent,
|
|
159
|
-
ValueAxisLabelsComponent,
|
|
160
|
-
ValueAxisNotesComponent,
|
|
161
|
-
ValueAxisNotesIconComponent,
|
|
162
|
-
ValueAxisNotesLabelComponent,
|
|
163
|
-
ValueAxisTitleComponent
|
|
164
|
-
];
|
|
21
|
+
export const KENDO_STOCKCHART = [...STOCK_CHART_DIRECTIVES, ...KENDO_CHARTSCOMMON];
|
|
165
22
|
/**
|
|
166
23
|
* Utility array that contains all `Sankey` related components and directives
|
|
167
24
|
*/
|
|
168
|
-
export const KENDO_SANKEY = [
|
|
169
|
-
...SANKEY_DIRECTIVES
|
|
170
|
-
];
|
|
25
|
+
export const KENDO_SANKEY = [...SANKEY_DIRECTIVES];
|
|
171
26
|
/**
|
|
172
27
|
* Utility array that contains all `@progress/kendo-angular-charts` related components and directives
|
|
173
28
|
*/
|
|
@@ -175,5 +30,6 @@ export const KENDO_CHARTS = [
|
|
|
175
30
|
...KENDO_CHART,
|
|
176
31
|
...KENDO_SPARKLINE,
|
|
177
32
|
...KENDO_STOCKCHART,
|
|
178
|
-
...KENDO_SANKEY
|
|
33
|
+
...KENDO_SANKEY,
|
|
34
|
+
...KENDO_CHARTSCOMMON
|
|
179
35
|
];
|
package/esm2020/index.mjs
CHANGED
|
@@ -57,4 +57,6 @@ export { NavigatorSeriesNotesLabelComponent } from './stock-chart/navigator/seri
|
|
|
57
57
|
export { NavigatorSeriesOutliersComponent } from './stock-chart/navigator/series-item/outliers.component';
|
|
58
58
|
export { NavigatorSeriesTooltipComponent } from './stock-chart/navigator/series-item/tooltip.component';
|
|
59
59
|
export { SeriesDrilldownTemplateDirective } from './chart/series-drilldown-template.directive';
|
|
60
|
+
export { ThemeService } from './common/theme.service';
|
|
61
|
+
export * from './common.directives';
|
|
60
62
|
export * from './directives';
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-charts',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.6.0-develop.
|
|
12
|
+
publishDate: 1722608550,
|
|
13
|
+
version: '16.6.0-develop.11',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -21,7 +21,7 @@ export { SankeyComponent, SankeyTooltipPopupComponent, SankeyLinkTooltipTemplate
|
|
|
21
21
|
/**
|
|
22
22
|
* @hidden
|
|
23
23
|
*/
|
|
24
|
-
export const
|
|
24
|
+
export const SANKEY_DIRECTIVES = [
|
|
25
25
|
SankeyComponent,
|
|
26
26
|
SankeyTooltipPopupComponent,
|
|
27
27
|
SankeyLinkTooltipTemplateDirective,
|
|
@@ -36,9 +36,3 @@ export const SANKEY_EXPORTS = [
|
|
|
36
36
|
SankeyLabelsComponent,
|
|
37
37
|
SankeyFlatBindingDirective
|
|
38
38
|
];
|
|
39
|
-
/**
|
|
40
|
-
* @hidden
|
|
41
|
-
*/
|
|
42
|
-
export const SANKEY_DIRECTIVES = [
|
|
43
|
-
...SANKEY_EXPORTS
|
|
44
|
-
];
|