@carbon/charts 0.38.7 → 0.38.8
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 +8 -0
- package/build/demo/data/zoom-bar.d.ts +11 -0
- package/bundle.js +1 -1
- package/components/axes/zoom-bar.js +7 -0
- package/components/axes/zoom-bar.js.map +1 -1
- package/components/graphs/scatter.js +4 -2
- package/components/graphs/scatter.js.map +1 -1
- package/demo/data/bundle.js +1 -1
- package/demo/data/index.js +6 -0
- package/demo/data/index.js.map +1 -1
- package/demo/data/zoom-bar.d.ts +11 -0
- package/demo/data/zoom-bar.js +81 -0
- package/demo/data/zoom-bar.js.map +1 -1
- package/demo/tsconfig.tsbuildinfo +3 -3
- package/model.js +24 -5
- package/model.js.map +1 -1
- package/package.json +1 -1
- package/services/zoom.js +2 -2
- package/services/zoom.js.map +1 -1
- package/tsconfig.tsbuildinfo +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
## [0.38.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.38.7...v0.38.8) (2020-09-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.38.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.38.6...v0.38.7) (2020-09-23)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @carbon/charts
|
|
@@ -70,5 +70,16 @@ export declare const zoomBarLineTimeSeriesInitDomainData: {
|
|
|
70
70
|
}[];
|
|
71
71
|
};
|
|
72
72
|
export declare const zoomBarLineTimeSeriesInitDomainOptions: any;
|
|
73
|
+
export declare const zoomBarStringDateData: {
|
|
74
|
+
labels: string[];
|
|
75
|
+
datasets: {
|
|
76
|
+
label: string;
|
|
77
|
+
data: {
|
|
78
|
+
date: string;
|
|
79
|
+
value: number;
|
|
80
|
+
}[];
|
|
81
|
+
}[];
|
|
82
|
+
};
|
|
83
|
+
export declare const zoomBarStringDateOptions: any;
|
|
73
84
|
export declare const zoomBarSkeletonData: any[];
|
|
74
85
|
export declare const zoomBarSkeletonOptions: any;
|