@carbon/charts 0.33.0 → 0.33.1
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 +11 -0
- package/build/demo/data/bar.d.ts +12 -48
- package/build/src/services/scales-cartesian.d.ts +1 -1
- package/bundle.js +1 -1
- package/components/essentials/tooltip-bar.js +2 -1
- package/components/essentials/tooltip-bar.js.map +1 -1
- package/demo/data/bar.d.ts +12 -48
- package/demo/data/bar.js +19 -55
- package/demo/data/bar.js.map +1 -1
- package/demo/data/bundle.js +1 -1
- package/demo/tsconfig.tsbuildinfo +2 -2
- package/package.json +1 -1
- package/services/scales-cartesian.d.ts +1 -1
- package/services/scales-cartesian.js +1 -1
- package/services/scales-cartesian.js.map +1 -1
- package/tsconfig.tsbuildinfo +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.33.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.33.0...v0.33.1) (2020-07-08)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* fix bar chart tooltip data ([#692](https://github.com/carbon-design-system/carbon-charts/issues/692)) ([05e4bb3](https://github.com/carbon-design-system/carbon-charts/commit/05e4bb364ac96697aefa4c2096b391fc248e2369))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [0.33.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.12...v0.33.0) (2020-07-07)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @carbon/charts
|
package/build/demo/data/bar.d.ts
CHANGED
|
@@ -257,12 +257,9 @@ export declare const simpleBarEmptyStateData: any[];
|
|
|
257
257
|
export declare const simpleBarEmptyStateOptions: {
|
|
258
258
|
title: string;
|
|
259
259
|
axes: {
|
|
260
|
-
left: {
|
|
261
|
-
primary: boolean;
|
|
262
|
-
};
|
|
260
|
+
left: {};
|
|
263
261
|
bottom: {
|
|
264
262
|
scaleType: string;
|
|
265
|
-
secondary: boolean;
|
|
266
263
|
};
|
|
267
264
|
};
|
|
268
265
|
};
|
|
@@ -270,12 +267,9 @@ export declare const simpleBarSkeletonData: any[];
|
|
|
270
267
|
export declare const simpleBarSkeletonOptions: {
|
|
271
268
|
title: string;
|
|
272
269
|
axes: {
|
|
273
|
-
left: {
|
|
274
|
-
primary: boolean;
|
|
275
|
-
};
|
|
270
|
+
left: {};
|
|
276
271
|
bottom: {
|
|
277
272
|
scaleType: string;
|
|
278
|
-
secondary: boolean;
|
|
279
273
|
};
|
|
280
274
|
};
|
|
281
275
|
data: {
|
|
@@ -286,12 +280,9 @@ export declare const groupedBarEmptyStateData: any[];
|
|
|
286
280
|
export declare const groupedBarEmptyStateOptions: {
|
|
287
281
|
title: string;
|
|
288
282
|
axes: {
|
|
289
|
-
left: {
|
|
290
|
-
primary: boolean;
|
|
291
|
-
};
|
|
283
|
+
left: {};
|
|
292
284
|
bottom: {
|
|
293
285
|
scaleType: string;
|
|
294
|
-
secondary: boolean;
|
|
295
286
|
};
|
|
296
287
|
};
|
|
297
288
|
};
|
|
@@ -299,12 +290,9 @@ export declare const groupedBarSkeletonData: any[];
|
|
|
299
290
|
export declare const groupedBarSkeletonOptions: {
|
|
300
291
|
title: string;
|
|
301
292
|
axes: {
|
|
302
|
-
left: {
|
|
303
|
-
primary: boolean;
|
|
304
|
-
};
|
|
293
|
+
left: {};
|
|
305
294
|
bottom: {
|
|
306
295
|
scaleType: string;
|
|
307
|
-
secondary: boolean;
|
|
308
296
|
};
|
|
309
297
|
};
|
|
310
298
|
data: {
|
|
@@ -315,12 +303,9 @@ export declare const stackedBarEmptyStateData: any[];
|
|
|
315
303
|
export declare const stackedBarEmptyStateOptions: {
|
|
316
304
|
title: string;
|
|
317
305
|
axes: {
|
|
318
|
-
left: {
|
|
319
|
-
primary: boolean;
|
|
320
|
-
};
|
|
306
|
+
left: {};
|
|
321
307
|
bottom: {
|
|
322
308
|
scaleType: string;
|
|
323
|
-
secondary: boolean;
|
|
324
309
|
};
|
|
325
310
|
};
|
|
326
311
|
};
|
|
@@ -328,12 +313,9 @@ export declare const stackedBarSkeletonData: any[];
|
|
|
328
313
|
export declare const stackedBarSkeletonOptions: {
|
|
329
314
|
title: string;
|
|
330
315
|
axes: {
|
|
331
|
-
left: {
|
|
332
|
-
primary: boolean;
|
|
333
|
-
};
|
|
316
|
+
left: {};
|
|
334
317
|
bottom: {
|
|
335
318
|
scaleType: string;
|
|
336
|
-
secondary: boolean;
|
|
337
319
|
};
|
|
338
320
|
};
|
|
339
321
|
data: {
|
|
@@ -345,12 +327,9 @@ export declare const simpleHorizontalBarEmptyStateOptions: {
|
|
|
345
327
|
title: string;
|
|
346
328
|
axes: {
|
|
347
329
|
left: {
|
|
348
|
-
primary: boolean;
|
|
349
330
|
scaleType: string;
|
|
350
331
|
};
|
|
351
|
-
bottom: {
|
|
352
|
-
secondary: boolean;
|
|
353
|
-
};
|
|
332
|
+
bottom: {};
|
|
354
333
|
};
|
|
355
334
|
};
|
|
356
335
|
export declare const simpleHorizontalBarSkeletonData: any[];
|
|
@@ -358,12 +337,9 @@ export declare const simpleHorizontalBarSkeletonOptions: {
|
|
|
358
337
|
title: string;
|
|
359
338
|
axes: {
|
|
360
339
|
left: {
|
|
361
|
-
primary: boolean;
|
|
362
340
|
scaleType: string;
|
|
363
341
|
};
|
|
364
|
-
bottom: {
|
|
365
|
-
secondary: boolean;
|
|
366
|
-
};
|
|
342
|
+
bottom: {};
|
|
367
343
|
};
|
|
368
344
|
data: {
|
|
369
345
|
loading: boolean;
|
|
@@ -374,12 +350,9 @@ export declare const groupedHorizontalBarEmptyStateOptions: {
|
|
|
374
350
|
title: string;
|
|
375
351
|
axes: {
|
|
376
352
|
left: {
|
|
377
|
-
primary: boolean;
|
|
378
353
|
scaleType: string;
|
|
379
354
|
};
|
|
380
|
-
bottom: {
|
|
381
|
-
secondary: boolean;
|
|
382
|
-
};
|
|
355
|
+
bottom: {};
|
|
383
356
|
};
|
|
384
357
|
};
|
|
385
358
|
export declare const groupedHorizontalBarSkeletonData: any[];
|
|
@@ -387,12 +360,9 @@ export declare const groupedHorizontalBarSkeletonOptions: {
|
|
|
387
360
|
title: string;
|
|
388
361
|
axes: {
|
|
389
362
|
left: {
|
|
390
|
-
primary: boolean;
|
|
391
363
|
scaleType: string;
|
|
392
364
|
};
|
|
393
|
-
bottom: {
|
|
394
|
-
secondary: boolean;
|
|
395
|
-
};
|
|
365
|
+
bottom: {};
|
|
396
366
|
};
|
|
397
367
|
data: {
|
|
398
368
|
loading: boolean;
|
|
@@ -403,12 +373,9 @@ export declare const stackedHorizontalBarEmptyStateOptions: {
|
|
|
403
373
|
title: string;
|
|
404
374
|
axes: {
|
|
405
375
|
left: {
|
|
406
|
-
primary: boolean;
|
|
407
376
|
scaleType: string;
|
|
408
377
|
};
|
|
409
|
-
bottom: {
|
|
410
|
-
secondary: boolean;
|
|
411
|
-
};
|
|
378
|
+
bottom: {};
|
|
412
379
|
};
|
|
413
380
|
};
|
|
414
381
|
export declare const stackedHorizontalBarSkeletonData: any[];
|
|
@@ -416,12 +383,9 @@ export declare const stackedHorizontalBarSkeletonOptions: {
|
|
|
416
383
|
title: string;
|
|
417
384
|
axes: {
|
|
418
385
|
left: {
|
|
419
|
-
primary: boolean;
|
|
420
386
|
scaleType: string;
|
|
421
387
|
};
|
|
422
|
-
bottom: {
|
|
423
|
-
secondary: boolean;
|
|
424
|
-
};
|
|
388
|
+
bottom: {};
|
|
425
389
|
};
|
|
426
390
|
data: {
|
|
427
391
|
loading: boolean;
|
|
@@ -35,7 +35,7 @@ export declare class CartesianScales extends Service {
|
|
|
35
35
|
getRangeValue(d: any, i: any): any;
|
|
36
36
|
getDomainIdentifier(): any;
|
|
37
37
|
getRangeIdentifier(): any;
|
|
38
|
-
/** Uses the
|
|
38
|
+
/** Uses the Y Axis to get data items associated with that value. */
|
|
39
39
|
getDataFromDomain(domainValue: any): any;
|
|
40
40
|
extendsDomain(axisPosition: AxisPositions, domain: any): number[] | Date[];
|
|
41
41
|
protected findMainVerticalAxisPosition(): AxisPositions.LEFT | AxisPositions.RIGHT;
|