@operato/chart 7.0.16 → 7.0.18
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/CHANGELOG.md +18 -0
- package/dist/src/editors/input-chart-abstract.d.ts +2 -2
- package/dist/src/editors/input-chart-abstract.js +270 -260
- package/dist/src/editors/input-chart-abstract.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/editors/input-chart-abstract.ts +331 -314
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
### [7.0.18](https://github.com/hatiolab/operato/compare/v7.0.17...v7.0.18) (2024-07-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### :bug: Bug Fix
|
|
10
|
+
|
|
11
|
+
* chart modeling input ([3f58e6c](https://github.com/hatiolab/operato/commit/3f58e6c3afcac1939661dfe7eb8cc465e1327301))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### [7.0.17](https://github.com/hatiolab/operato/compare/v7.0.16...v7.0.17) (2024-07-14)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### :bug: Bug Fix
|
|
19
|
+
|
|
20
|
+
* apply keyed directive for chart modeling input ([21caa4d](https://github.com/hatiolab/operato/commit/21caa4d1886b084cc89ac7bbe398555c3044d338))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
### [7.0.16](https://github.com/hatiolab/operato/compare/v7.0.15...v7.0.16) (2024-07-14)
|
|
7
25
|
|
|
8
26
|
|
|
@@ -38,8 +38,8 @@ export declare class InputChartAbstract extends OxFormField {
|
|
|
38
38
|
lastSeriesColor: TinyColor;
|
|
39
39
|
}): any;
|
|
40
40
|
_getElementValue(element: HTMLElement): any;
|
|
41
|
-
annotationsTabTemplate(): import("lit-html").
|
|
42
|
-
multiSeriesTabTemplate(): import("lit-html").
|
|
41
|
+
annotationsTabTemplate(): import("lit-html/directive").DirectiveResult<typeof import("lit-html/directives/keyed").Keyed>;
|
|
42
|
+
multiSeriesTabTemplate(): import("lit-html/directive").DirectiveResult<typeof import("lit-html/directives/keyed").Keyed>;
|
|
43
43
|
_onTabScroll(e: Event, type: 'series' | 'annotations'): void;
|
|
44
44
|
_onTabScrollNavLeft(e: Event, type: 'series' | 'annotations'): void;
|
|
45
45
|
_onTabScrollNavRight(e: Event, type: 'series' | 'annotations'): void;
|