@vaadin/charts 24.9.0-alpha1 → 24.9.0-beta1
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 +8 -8
- package/src/vaadin-chart-mixin.d.ts +2 -2
- package/src/vaadin-chart-mixin.js +2 -2
- package/src/vaadin-chart.d.ts +2 -2
- package/src/vaadin-chart.js +2 -2
- package/web-types.json +3 -3
- package/web-types.lit.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/charts",
|
|
3
|
-
"version": "24.9.0-
|
|
3
|
+
"version": "24.9.0-beta1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -37,16 +37,16 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
39
39
|
"@polymer/polymer": "^3.0.0",
|
|
40
|
-
"@vaadin/component-base": "24.9.0-
|
|
41
|
-
"@vaadin/vaadin-lumo-styles": "24.9.0-
|
|
42
|
-
"@vaadin/vaadin-material-styles": "24.9.0-
|
|
43
|
-
"@vaadin/vaadin-themable-mixin": "24.9.0-
|
|
40
|
+
"@vaadin/component-base": "24.9.0-beta1",
|
|
41
|
+
"@vaadin/vaadin-lumo-styles": "24.9.0-beta1",
|
|
42
|
+
"@vaadin/vaadin-material-styles": "24.9.0-beta1",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "24.9.0-beta1",
|
|
44
44
|
"highcharts": "9.2.2",
|
|
45
45
|
"lit": "^3.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@vaadin/chai-plugins": "24.9.0-
|
|
49
|
-
"@vaadin/test-runner-commands": "24.9.0-
|
|
48
|
+
"@vaadin/chai-plugins": "24.9.0-beta1",
|
|
49
|
+
"@vaadin/test-runner-commands": "24.9.0-beta1",
|
|
50
50
|
"@vaadin/testing-helpers": "^1.1.0",
|
|
51
51
|
"sinon": "^18.0.0"
|
|
52
52
|
},
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"web-types.json",
|
|
56
56
|
"web-types.lit.json"
|
|
57
57
|
],
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "5f6e6e33217fef06e5d5cc52baa4d760969ef1e4"
|
|
59
59
|
}
|
|
@@ -181,7 +181,7 @@ export type ChartPointDropEvent = CustomEvent<{ point: Point; originalEvent: Cha
|
|
|
181
181
|
export type ChartPointDragEvent = CustomEvent<{ point: Point; originalEvent: ChartPointEvent }>;
|
|
182
182
|
|
|
183
183
|
/**
|
|
184
|
-
* Fired when
|
|
184
|
+
* Fired when the minimum and maximum is set for the X axis.
|
|
185
185
|
*/
|
|
186
186
|
export type ChartXaxesExtremesSetEvent = CustomEvent<{
|
|
187
187
|
axis: Axis;
|
|
@@ -192,7 +192,7 @@ export type ChartXaxesExtremesSetEvent = CustomEvent<{
|
|
|
192
192
|
}>;
|
|
193
193
|
|
|
194
194
|
/**
|
|
195
|
-
* Fired when
|
|
195
|
+
* Fired when the minimum and maximum is set for the Y axis.
|
|
196
196
|
*/
|
|
197
197
|
export type ChartYaxesExtremesSetEvent = CustomEvent<{
|
|
198
198
|
axis: Axis;
|
|
@@ -726,7 +726,7 @@ export const ChartMixin = (superClass) =>
|
|
|
726
726
|
get __xAxesEventNames() {
|
|
727
727
|
return {
|
|
728
728
|
/**
|
|
729
|
-
* Fired when
|
|
729
|
+
* Fired when the minimum and maximum is set for the x axis.
|
|
730
730
|
* @event xaxes-extremes-set
|
|
731
731
|
* @param {Object} detail.originalEvent object with details about the event sent
|
|
732
732
|
* @param {Object} axis Point object where the event was sent from
|
|
@@ -739,7 +739,7 @@ export const ChartMixin = (superClass) =>
|
|
|
739
739
|
get __yAxesEventNames() {
|
|
740
740
|
return {
|
|
741
741
|
/**
|
|
742
|
-
* Fired when
|
|
742
|
+
* Fired when the minimum and maximum is set for the y axis.
|
|
743
743
|
* @event yaxes-extremes-set
|
|
744
744
|
* @param {Object} detail.originalEvent object with details about the event sent
|
|
745
745
|
* @param {Object} axis Point object where the event was sent from
|
package/src/vaadin-chart.d.ts
CHANGED
|
@@ -168,8 +168,8 @@ export * from './vaadin-chart-mixin.js';
|
|
|
168
168
|
* @fires {CustomEvent} point-drag-start - Fired when starting to drag a point.
|
|
169
169
|
* @fires {CustomEvent} point-drop - Fired when the point is dropped.
|
|
170
170
|
* @fires {CustomEvent} point-drag - Fired while dragging a point.
|
|
171
|
-
* @fires {CustomEvent} xaxes-extremes-set - Fired when
|
|
172
|
-
* @fires {CustomEvent} yaxes-extremes-set - Fired when
|
|
171
|
+
* @fires {CustomEvent} xaxes-extremes-set - Fired when the minimum and maximum is set for the X axis.
|
|
172
|
+
* @fires {CustomEvent} yaxes-extremes-set - Fired when the minimum and maximum is set for the Y axis.
|
|
173
173
|
*/
|
|
174
174
|
declare class Chart extends ChartMixin(ThemableMixin(ElementMixin(HTMLElement))) {
|
|
175
175
|
addEventListener<K extends keyof ChartEventMap>(
|
package/src/vaadin-chart.js
CHANGED
|
@@ -170,8 +170,8 @@ import { ChartMixin } from './vaadin-chart-mixin.js';
|
|
|
170
170
|
* @fires {CustomEvent} point-drag-start - Fired when starting to drag a point.
|
|
171
171
|
* @fires {CustomEvent} point-drop - Fired when the point is dropped.
|
|
172
172
|
* @fires {CustomEvent} point-drag - Fired while dragging a point.
|
|
173
|
-
* @fires {CustomEvent} xaxes-extremes-set - Fired when
|
|
174
|
-
* @fires {CustomEvent} yaxes-extremes-set - Fired when
|
|
173
|
+
* @fires {CustomEvent} xaxes-extremes-set - Fired when the minimum and maximum is set for the X axis.
|
|
174
|
+
* @fires {CustomEvent} yaxes-extremes-set - Fired when the minimum and maximum is set for the Y axis.
|
|
175
175
|
*
|
|
176
176
|
* @customElement
|
|
177
177
|
* @extends HTMLElement
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/charts",
|
|
4
|
-
"version": "24.9.0-
|
|
4
|
+
"version": "24.9.0-beta1",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -681,11 +681,11 @@
|
|
|
681
681
|
},
|
|
682
682
|
{
|
|
683
683
|
"name": "xaxes-extremes-set",
|
|
684
|
-
"description": "Fired when
|
|
684
|
+
"description": "Fired when the minimum and maximum is set for the x axis."
|
|
685
685
|
},
|
|
686
686
|
{
|
|
687
687
|
"name": "yaxes-extremes-set",
|
|
688
|
-
"description": "Fired when
|
|
688
|
+
"description": "Fired when the minimum and maximum is set for the y axis."
|
|
689
689
|
}
|
|
690
690
|
]
|
|
691
691
|
}
|
package/web-types.lit.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/charts",
|
|
4
|
-
"version": "24.9.0-
|
|
4
|
+
"version": "24.9.0-beta1",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -434,14 +434,14 @@
|
|
|
434
434
|
},
|
|
435
435
|
{
|
|
436
436
|
"name": "@xaxes-extremes-set",
|
|
437
|
-
"description": "Fired when
|
|
437
|
+
"description": "Fired when the minimum and maximum is set for the x axis.",
|
|
438
438
|
"value": {
|
|
439
439
|
"kind": "expression"
|
|
440
440
|
}
|
|
441
441
|
},
|
|
442
442
|
{
|
|
443
443
|
"name": "@yaxes-extremes-set",
|
|
444
|
-
"description": "Fired when
|
|
444
|
+
"description": "Fired when the minimum and maximum is set for the y axis.",
|
|
445
445
|
"value": {
|
|
446
446
|
"kind": "expression"
|
|
447
447
|
}
|