@carbon/charts 1.13.27 → 1.13.29

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 CHANGED
@@ -3,6 +3,32 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 1.13.29 (2024-02-04)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **stackblitz/vue:** remove export ambiguity
11
+ ([#1741](https://github.com/carbon-design-system/carbon-charts/issues/1741))
12
+ ([19b8492](https://github.com/carbon-design-system/carbon-charts/commit/19b849287bee73ce910545a6c25f80382567de40))
13
+
14
+ # Change Log
15
+
16
+ All notable changes to this project will be documented in this file. See
17
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
18
+
19
+ ## 1.13.28 (2024-02-03)
20
+
21
+ ### Bug Fixes
22
+
23
+ - **stackblitz:** env changes for angular examples to match latest StackBlitz Angular TypeScript
24
+ template ([#1738](https://github.com/carbon-design-system/carbon-charts/issues/1738))
25
+ ([2b62be8](https://github.com/carbon-design-system/carbon-charts/commit/2b62be8d329f52ae7a0ae525d54c81622fb71d22))
26
+
27
+ # Change Log
28
+
29
+ All notable changes to this project will be documented in this file. See
30
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
31
+
6
32
  ## 1.13.27 (2024-02-02)
7
33
 
8
34
  **Note:** Version bump only for package @carbon/charts
@@ -1,3 +1,4 @@
1
+ import { Alignments } from '../../interfaces';
1
2
  export declare const alluvialSimpleData: {
2
3
  source: string;
3
4
  target: string;
@@ -88,7 +89,7 @@ export declare const alluvialNodeAlignmentOptions: {
88
89
  name: string;
89
90
  category: string;
90
91
  }[];
91
- nodeAlignment: string;
92
+ nodeAlignment: Alignments;
92
93
  };
93
94
  };
94
95
  export declare const alluvialMonochromeData: {
@@ -1,3 +1,4 @@
1
+ import { ScaleTypes } from '../../interfaces';
1
2
  export declare const areaTimeSeriesData: {
2
3
  group: string;
3
4
  date: Date;
@@ -9,12 +10,12 @@ export declare const areaTimeSeriesOptions: {
9
10
  bottom: {
10
11
  title: string;
11
12
  mapsTo: string;
12
- scaleType: string;
13
+ scaleType: ScaleTypes;
13
14
  };
14
15
  left: {
15
16
  mapsTo: string;
16
17
  title: string;
17
- scaleType: string;
18
+ scaleType: ScaleTypes;
18
19
  };
19
20
  };
20
21
  };
@@ -29,12 +30,12 @@ export declare const areaDiscreteDomainOptions: {
29
30
  bottom: {
30
31
  title: string;
31
32
  mapsTo: string;
32
- scaleType: string;
33
+ scaleType: ScaleTypes;
33
34
  };
34
35
  left: {
35
36
  mapsTo: string;
36
37
  title: string;
37
- scaleType: string;
38
+ scaleType: ScaleTypes;
38
39
  };
39
40
  };
40
41
  };
@@ -54,11 +55,11 @@ export declare const areaTimeSeriesCurvedOptions: {
54
55
  bottom: {
55
56
  title: string;
56
57
  mapsTo: string;
57
- scaleType: string;
58
+ scaleType: ScaleTypes;
58
59
  };
59
60
  left: {
60
61
  mapsTo: string;
61
- scaleType: string;
62
+ scaleType: ScaleTypes;
62
63
  };
63
64
  };
64
65
  curve: string;
@@ -79,12 +80,12 @@ export declare const sparklineOptions: {
79
80
  visible: boolean;
80
81
  title: string;
81
82
  mapsTo: string;
82
- scaleType: string;
83
+ scaleType: ScaleTypes;
83
84
  };
84
85
  left: {
85
86
  visible: boolean;
86
87
  mapsTo: string;
87
- scaleType: string;
88
+ scaleType: ScaleTypes;
88
89
  };
89
90
  };
90
91
  color: {
@@ -109,11 +110,11 @@ export declare const stackedAreaTimeSeriesOptions: {
109
110
  axes: {
110
111
  left: {
111
112
  stacked: boolean;
112
- scaleType: string;
113
+ scaleType: ScaleTypes;
113
114
  mapsTo: string;
114
115
  };
115
116
  bottom: {
116
- scaleType: string;
117
+ scaleType: ScaleTypes;
117
118
  mapsTo: string;
118
119
  };
119
120
  };
@@ -131,7 +132,7 @@ export declare const stackedAreaTimeSeriesUnevenDataOptions: {
131
132
  stacked: boolean;
132
133
  };
133
134
  bottom: {
134
- scaleType: string;
135
+ scaleType: ScaleTypes;
135
136
  mapsTo: string;
136
137
  };
137
138
  };
@@ -148,7 +149,7 @@ export declare const stackedAreaPercentageTimeSeriesOptions: {
148
149
  };
149
150
  };
150
151
  bottom: {
151
- scaleType: string;
152
+ scaleType: ScaleTypes;
152
153
  mapsTo: string;
153
154
  };
154
155
  };
@@ -174,11 +175,11 @@ export declare const boundedAreaTimeSeriesOptions: {
174
175
  bottom: {
175
176
  title: string;
176
177
  mapsTo: string;
177
- scaleType: string;
178
+ scaleType: ScaleTypes;
178
179
  };
179
180
  left: {
180
181
  mapsTo: string;
181
- scaleType: string;
182
+ scaleType: ScaleTypes;
182
183
  };
183
184
  };
184
185
  curve: string;
@@ -189,7 +190,7 @@ export declare const areaEmptyOptions: {
189
190
  axes: {
190
191
  left: {};
191
192
  bottom: {
192
- scaleType: string;
193
+ scaleType: ScaleTypes;
193
194
  };
194
195
  };
195
196
  };
@@ -210,11 +211,11 @@ export declare const areaSkeletonOptions: {
210
211
  bottom: {
211
212
  title: string;
212
213
  mapsTo: string;
213
- scaleType: string;
214
+ scaleType: ScaleTypes;
214
215
  };
215
216
  left: {
216
217
  mapsTo: string;
217
- scaleType: string;
218
+ scaleType: ScaleTypes;
218
219
  };
219
220
  };
220
221
  curve: string;
@@ -1,3 +1,4 @@
1
+ import { Alignments, ScaleTypes } from '../../interfaces';
1
2
  export declare const groupedBarData: {
2
3
  group: string;
3
4
  key: string;
@@ -20,7 +21,7 @@ export declare const groupedBarOptions: {
20
21
  mapsTo: string;
21
22
  };
22
23
  bottom: {
23
- scaleType: string;
24
+ scaleType: ScaleTypes;
24
25
  mapsTo: string;
25
26
  };
26
27
  };
@@ -40,7 +41,7 @@ export declare const groupedBarSelectedGroupsOptions: {
40
41
  mapsTo: string;
41
42
  };
42
43
  bottom: {
43
- scaleType: string;
44
+ scaleType: ScaleTypes;
44
45
  mapsTo: string;
45
46
  };
46
47
  };
@@ -54,7 +55,7 @@ export declare const groupedHorizontalBarOptions: {
54
55
  title: string;
55
56
  axes: {
56
57
  left: {
57
- scaleType: string;
58
+ scaleType: ScaleTypes;
58
59
  mapsTo: string;
59
60
  };
60
61
  bottom: {
@@ -70,7 +71,7 @@ export declare const groupedBarTimeSeriesOptions: {
70
71
  };
71
72
  bottom: {
72
73
  mapsTo: string;
73
- scaleType: string;
74
+ scaleType: ScaleTypes;
74
75
  };
75
76
  };
76
77
  };
@@ -79,7 +80,7 @@ export declare const groupedBarHorizontalTimeSeriesOptions: {
79
80
  axes: {
80
81
  left: {
81
82
  mapsTo: string;
82
- scaleType: string;
83
+ scaleType: ScaleTypes;
83
84
  };
84
85
  bottom: {
85
86
  mapsTo: string;
@@ -94,7 +95,7 @@ export declare const groupedBarTimeSeriesDenseOptions: {
94
95
  };
95
96
  bottom: {
96
97
  mapsTo: string;
97
- scaleType: string;
98
+ scaleType: ScaleTypes;
98
99
  };
99
100
  };
100
101
  };
@@ -110,7 +111,7 @@ export declare const simpleBarOptions: {
110
111
  };
111
112
  bottom: {
112
113
  mapsTo: string;
113
- scaleType: string;
114
+ scaleType: ScaleTypes;
114
115
  };
115
116
  };
116
117
  };
@@ -121,7 +122,7 @@ export declare const simpleBarColorOverrideOptions: {
121
122
  mapsTo: string;
122
123
  };
123
124
  bottom: {
124
- scaleType: string;
125
+ scaleType: ScaleTypes;
125
126
  mapsTo: string;
126
127
  };
127
128
  };
@@ -143,7 +144,7 @@ export declare const simpleBarCustomLegendOrderOptions: {
143
144
  };
144
145
  bottom: {
145
146
  mapsTo: string;
146
- scaleType: string;
147
+ scaleType: ScaleTypes;
147
148
  };
148
149
  };
149
150
  legend: {
@@ -158,7 +159,7 @@ export declare const simpleBarAdditionalLegendItemsOptions: {
158
159
  };
159
160
  bottom: {
160
161
  mapsTo: string;
161
- scaleType: string;
162
+ scaleType: ScaleTypes;
162
163
  };
163
164
  };
164
165
  legend: {
@@ -183,7 +184,7 @@ export declare const simpleBarOptionsCustomTicks: {
183
184
  };
184
185
  bottom: {
185
186
  mapsTo: string;
186
- scaleType: string;
187
+ scaleType: ScaleTypes;
187
188
  };
188
189
  };
189
190
  };
@@ -199,11 +200,11 @@ export declare const simpleBarCenteredLegendOptions: {
199
200
  };
200
201
  bottom: {
201
202
  mapsTo: string;
202
- scaleType: string;
203
+ scaleType: ScaleTypes;
203
204
  };
204
205
  };
205
206
  legend: {
206
- alignment: string;
207
+ alignment: Alignments;
207
208
  };
208
209
  };
209
210
  export declare const simpleBarFixedDomainOptions: {
@@ -214,7 +215,7 @@ export declare const simpleBarFixedDomainOptions: {
214
215
  domain: number[];
215
216
  };
216
217
  bottom: {
217
- scaleType: string;
218
+ scaleType: ScaleTypes;
218
219
  mapsTo: string;
219
220
  };
220
221
  };
@@ -232,7 +233,7 @@ export declare const simpleHorizontalBarOptions: {
232
233
  axes: {
233
234
  left: {
234
235
  mapsTo: string;
235
- scaleType: string;
236
+ scaleType: ScaleTypes;
236
237
  };
237
238
  bottom: {
238
239
  mapsTo: string;
@@ -248,14 +249,14 @@ export declare const simpleHorizontalBarCenteredLegendOptions: {
248
249
  axes: {
249
250
  left: {
250
251
  mapsTo: string;
251
- scaleType: string;
252
+ scaleType: ScaleTypes;
252
253
  };
253
254
  bottom: {
254
255
  mapsTo: string;
255
256
  };
256
257
  };
257
258
  legend: {
258
- alignment: string;
259
+ alignment: Alignments;
259
260
  };
260
261
  };
261
262
  export declare const simpleHorizontalBarLongLabelOptions: {
@@ -263,7 +264,7 @@ export declare const simpleHorizontalBarLongLabelOptions: {
263
264
  axes: {
264
265
  left: {
265
266
  mapsTo: string;
266
- scaleType: string;
267
+ scaleType: ScaleTypes;
267
268
  truncation: {
268
269
  type: string;
269
270
  threshold: number;
@@ -300,7 +301,7 @@ export declare const simpleBarTimeSeriesOptions: {
300
301
  };
301
302
  bottom: {
302
303
  mapsTo: string;
303
- scaleType: string;
304
+ scaleType: ScaleTypes;
304
305
  };
305
306
  };
306
307
  };
@@ -320,7 +321,7 @@ export declare const simpleBarTurkishLocaleOptions: {
320
321
  };
321
322
  bottom: {
322
323
  mapsTo: string;
323
- scaleType: string;
324
+ scaleType: ScaleTypes;
324
325
  ticks: {
325
326
  formatter: (ticks: any) => any;
326
327
  };
@@ -335,7 +336,7 @@ export declare const simpleHorizontalBarTimeSeriesOptions: {
335
336
  axes: {
336
337
  left: {
337
338
  mapsTo: string;
338
- scaleType: string;
339
+ scaleType: ScaleTypes;
339
340
  };
340
341
  bottom: {
341
342
  mapsTo: string;
@@ -353,7 +354,7 @@ export declare const simpleBarTimeSeriesDenseOptions: {
353
354
  };
354
355
  bottom: {
355
356
  mapsTo: string;
356
- scaleType: string;
357
+ scaleType: ScaleTypes;
357
358
  ticks: {
358
359
  formatter: (ticks: Date) => string;
359
360
  };
@@ -385,7 +386,7 @@ export declare const floatingHorizontalBarTimeSeriesOptions: {
385
386
  axes: {
386
387
  left: {
387
388
  mapsTo: string;
388
- scaleType: string;
389
+ scaleType: ScaleTypes;
389
390
  };
390
391
  bottom: {
391
392
  mapsTo: string;
@@ -406,7 +407,7 @@ export declare const stackedBarOptions: {
406
407
  };
407
408
  bottom: {
408
409
  mapsTo: string;
409
- scaleType: string;
410
+ scaleType: ScaleTypes;
410
411
  };
411
412
  };
412
413
  };
@@ -424,7 +425,7 @@ export declare const stackedBarNegativeOptions: {
424
425
  };
425
426
  bottom: {
426
427
  mapsTo: string;
427
- scaleType: string;
428
+ scaleType: ScaleTypes;
428
429
  };
429
430
  };
430
431
  } & {
@@ -439,7 +440,7 @@ export declare const stackedHorizontalBarOptions: {
439
440
  title: string;
440
441
  axes: {
441
442
  left: {
442
- scaleType: string;
443
+ scaleType: ScaleTypes;
443
444
  };
444
445
  bottom: {
445
446
  stacked: boolean;
@@ -460,7 +461,7 @@ export declare const stackedBarTimeSeriesOptions: {
460
461
  };
461
462
  bottom: {
462
463
  mapsTo: string;
463
- scaleType: string;
464
+ scaleType: ScaleTypes;
464
465
  };
465
466
  };
466
467
  };
@@ -478,7 +479,7 @@ export declare const stackedBarShortIntervalTimeSeriesOptions: {
478
479
  };
479
480
  bottom: {
480
481
  mapsTo: string;
481
- scaleType: string;
482
+ scaleType: ScaleTypes;
482
483
  };
483
484
  };
484
485
  };
@@ -496,7 +497,7 @@ export declare const stackedBarTimeSeriesOptionsCustomTicks: {
496
497
  };
497
498
  bottom: {
498
499
  mapsTo: string;
499
- scaleType: string;
500
+ scaleType: ScaleTypes;
500
501
  ticks: {
501
502
  values: Date[];
502
503
  };
@@ -507,7 +508,7 @@ export declare const stackedHorizontalBarTimeSeriesOptions: {
507
508
  title: string;
508
509
  axes: {
509
510
  left: {
510
- scaleType: string;
511
+ scaleType: ScaleTypes;
511
512
  };
512
513
  bottom: {
513
514
  stacked: boolean;
@@ -525,7 +526,7 @@ export declare const simpleBarEmptyStateOptions: {
525
526
  axes: {
526
527
  left: {};
527
528
  bottom: {
528
- scaleType: string;
529
+ scaleType: ScaleTypes;
529
530
  };
530
531
  };
531
532
  };
@@ -535,7 +536,7 @@ export declare const simpleBarSkeletonOptions: {
535
536
  axes: {
536
537
  left: {};
537
538
  bottom: {
538
- scaleType: string;
539
+ scaleType: ScaleTypes;
539
540
  };
540
541
  };
541
542
  data: {
@@ -548,7 +549,7 @@ export declare const groupedBarEmptyStateOptions: {
548
549
  axes: {
549
550
  left: {};
550
551
  bottom: {
551
- scaleType: string;
552
+ scaleType: ScaleTypes;
552
553
  };
553
554
  };
554
555
  };
@@ -558,7 +559,7 @@ export declare const groupedBarSkeletonOptions: {
558
559
  axes: {
559
560
  left: {};
560
561
  bottom: {
561
- scaleType: string;
562
+ scaleType: ScaleTypes;
562
563
  };
563
564
  };
564
565
  data: {
@@ -571,7 +572,7 @@ export declare const stackedBarEmptyStateOptions: {
571
572
  axes: {
572
573
  left: {};
573
574
  bottom: {
574
- scaleType: string;
575
+ scaleType: ScaleTypes;
575
576
  };
576
577
  };
577
578
  };
@@ -581,7 +582,7 @@ export declare const stackedBarSkeletonOptions: {
581
582
  axes: {
582
583
  left: {};
583
584
  bottom: {
584
- scaleType: string;
585
+ scaleType: ScaleTypes;
585
586
  };
586
587
  };
587
588
  data: {
@@ -593,7 +594,7 @@ export declare const simpleHorizontalBarEmptyStateOptions: {
593
594
  title: string;
594
595
  axes: {
595
596
  left: {
596
- scaleType: string;
597
+ scaleType: ScaleTypes;
597
598
  };
598
599
  bottom: {};
599
600
  };
@@ -603,7 +604,7 @@ export declare const simpleHorizontalBarSkeletonOptions: {
603
604
  title: string;
604
605
  axes: {
605
606
  left: {
606
- scaleType: string;
607
+ scaleType: ScaleTypes;
607
608
  };
608
609
  bottom: {};
609
610
  };
@@ -616,7 +617,7 @@ export declare const groupedHorizontalBarEmptyStateOptions: {
616
617
  title: string;
617
618
  axes: {
618
619
  left: {
619
- scaleType: string;
620
+ scaleType: ScaleTypes;
620
621
  };
621
622
  bottom: {};
622
623
  };
@@ -626,7 +627,7 @@ export declare const groupedHorizontalBarSkeletonOptions: {
626
627
  title: string;
627
628
  axes: {
628
629
  left: {
629
- scaleType: string;
630
+ scaleType: ScaleTypes;
630
631
  };
631
632
  bottom: {};
632
633
  };
@@ -639,7 +640,7 @@ export declare const stackedHorizontalBarEmptyStateOptions: {
639
640
  title: string;
640
641
  axes: {
641
642
  left: {
642
- scaleType: string;
643
+ scaleType: ScaleTypes;
643
644
  };
644
645
  bottom: {};
645
646
  };
@@ -649,7 +650,7 @@ export declare const stackedHorizontalBarSkeletonOptions: {
649
650
  title: string;
650
651
  axes: {
651
652
  left: {
652
- scaleType: string;
653
+ scaleType: ScaleTypes;
653
654
  };
654
655
  bottom: {};
655
656
  };
@@ -670,7 +671,7 @@ export declare const floatingBarOptions: {
670
671
  };
671
672
  bottom: {
672
673
  mapsTo: string;
673
- scaleType: string;
674
+ scaleType: ScaleTypes;
674
675
  };
675
676
  };
676
677
  };
@@ -683,7 +684,7 @@ export declare const floatingHorizontalBarOptions: {
683
684
  axes: {
684
685
  left: {
685
686
  mapsTo: string;
686
- scaleType: string;
687
+ scaleType: ScaleTypes;
687
688
  };
688
689
  bottom: {
689
690
  mapsTo: string;
@@ -1,3 +1,4 @@
1
+ import { ScaleTypes } from '../../interfaces';
1
2
  export declare const simpleBoxplotData: {
2
3
  group: string;
3
4
  key: string;
@@ -10,7 +11,7 @@ export declare const simpleBoxplotOptions: {
10
11
  mapsTo: string;
11
12
  };
12
13
  left: {
13
- scaleType: string;
14
+ scaleType: ScaleTypes;
14
15
  mapsTo: string;
15
16
  };
16
17
  };
@@ -27,7 +28,7 @@ export declare const simpleVerticalBoxplotOptions: {
27
28
  mapsTo: string;
28
29
  };
29
30
  bottom: {
30
- scaleType: string;
31
+ scaleType: ScaleTypes;
31
32
  mapsTo: string;
32
33
  };
33
34
  };
@@ -1,3 +1,4 @@
1
+ import { ScaleTypes } from '../../interfaces';
1
2
  export declare const bubbleDoubleLinearData: {
2
3
  group: string;
3
4
  sales: number;
@@ -40,7 +41,7 @@ export declare const bubbleDiscreteOptions: {
40
41
  axes: {
41
42
  bottom: {
42
43
  title: string;
43
- scaleType: string;
44
+ scaleType: ScaleTypes;
44
45
  mapsTo: string;
45
46
  };
46
47
  left: {
@@ -63,7 +64,7 @@ export declare const bubbleTimeSeriesOptions: {
63
64
  axes: {
64
65
  bottom: {
65
66
  title: string;
66
- scaleType: string;
67
+ scaleType: ScaleTypes;
67
68
  mapsTo: string;
68
69
  };
69
70
  left: {
@@ -126,11 +127,11 @@ export declare const bubbleDualDiscreteOptions: {
126
127
  axes: {
127
128
  bottom: {
128
129
  title: string;
129
- scaleType: string;
130
+ scaleType: ScaleTypes;
130
131
  mapsTo: string;
131
132
  };
132
133
  left: {
133
- scaleType: string;
134
+ scaleType: ScaleTypes;
134
135
  mapsTo: string;
135
136
  title: string;
136
137
  };
@@ -1,3 +1,4 @@
1
+ import { ScaleTypes } from '../../interfaces';
1
2
  export declare const basicBulletData: {
2
3
  title: string;
3
4
  group: string;
@@ -13,11 +14,11 @@ export declare const basicBulletOptions: {
13
14
  extendLinearDomainBy: string;
14
15
  };
15
16
  left: {
16
- scaleType: string;
17
+ scaleType: ScaleTypes;
17
18
  mapsTo: string;
18
19
  };
19
20
  right: {
20
- scaleType: string;
21
+ scaleType: ScaleTypes;
21
22
  mapsTo: string;
22
23
  };
23
24
  };