@carbon/charts-vue 1.13.29 → 1.13.31
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 +26 -0
- package/dist/styles.css +3 -3
- package/dist/styles.min.css +1 -1
- package/dist/styles.min.css.map +1 -1
- package/package.json +3 -3
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.31 (2024-02-07)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **modal:** styles of export to csv button
|
|
11
|
+
([#1745](https://github.com/carbon-design-system/carbon-charts/issues/1745))
|
|
12
|
+
([75c8281](https://github.com/carbon-design-system/carbon-charts/commit/75c82810b2ce081a81ddf8815b2a6abaac19ede2))
|
|
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.30 (2024-02-05)
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- **stackblitz/vue:** workaround for stackblitz bug
|
|
24
|
+
([#1742](https://github.com/carbon-design-system/carbon-charts/issues/1742))
|
|
25
|
+
([def9bc5](https://github.com/carbon-design-system/carbon-charts/commit/def9bc52c785c0fc9e7cf8a82204f6f288c15c25))
|
|
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.29 (2024-02-04)
|
|
7
33
|
|
|
8
34
|
### Bug Fixes
|
package/dist/styles.css
CHANGED
|
@@ -4668,18 +4668,18 @@ div.cds--cc--legend.clickable div.legend-item:not(.additional):hover div.checkbo
|
|
|
4668
4668
|
transition: background 70ms cubic-bezier(0, 0, 0.38, 0.9), box-shadow 70ms cubic-bezier(0, 0, 0.38, 0.9), border-color 70ms cubic-bezier(0, 0, 0.38, 0.9), outline 70ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
4669
4669
|
vertical-align: top;
|
|
4670
4670
|
}
|
|
4671
|
-
.cds--chart-holder .cds--modal .cds--modal-container .cds--modal-footer .cds--btn
|
|
4671
|
+
.cds--chart-holder .cds--modal .cds--modal-container .cds--modal-footer .cds--btn--primary {
|
|
4672
4672
|
border-width: 1px;
|
|
4673
4673
|
border-style: solid;
|
|
4674
4674
|
border-color: transparent;
|
|
4675
4675
|
background-color: var(--cds-button-primary, #0f62fe);
|
|
4676
4676
|
color: var(--cds-text-on-color, #ffffff);
|
|
4677
4677
|
}
|
|
4678
|
-
.cds--chart-holder .cds--modal .cds--modal-container .cds--modal-footer .cds--btn
|
|
4678
|
+
.cds--chart-holder .cds--modal .cds--modal-container .cds--modal-footer .cds--btn--primary:hover {
|
|
4679
4679
|
color: var(--cds-text-on-color, #ffffff);
|
|
4680
4680
|
background-color: var(--cds-button-primary-hover, #0050e6);
|
|
4681
4681
|
}
|
|
4682
|
-
.cds--chart-holder .cds--modal .cds--modal-container .cds--modal-footer .cds--btn
|
|
4682
|
+
.cds--chart-holder .cds--modal .cds--modal-container .cds--modal-footer .cds--btn--primary:focus {
|
|
4683
4683
|
border-color: var(--cds-button-focus-color, var(--cds-focus, #0f62fe));
|
|
4684
4684
|
box-shadow: inset 0 0 0 1px var(--cds-button-focus-color, var(--cds-focus, #0f62fe)), inset 0 0 0 2px var(--cds-background, #ffffff);
|
|
4685
4685
|
}
|