@carbon/charts-vue 1.22.0 → 1.22.4
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 +44 -0
- package/README.md +3 -2
- package/dist/index.mjs +4189 -4165
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +294 -288
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +1 -1
- package/dist/styles.min.css.map +1 -1
- package/package.json +12 -12
- package/telemetry.yml +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,50 @@
|
|
|
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.22.4 (2024-11-21)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts-vue
|
|
9
|
+
|
|
10
|
+
# Change Log
|
|
11
|
+
|
|
12
|
+
All notable changes to this project will be documented in this file. See
|
|
13
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
14
|
+
|
|
15
|
+
## 1.22.3 (2024-11-18)
|
|
16
|
+
|
|
17
|
+
**Note:** Version bump only for package @carbon/charts-vue
|
|
18
|
+
|
|
19
|
+
# Change Log
|
|
20
|
+
|
|
21
|
+
All notable changes to this project will be documented in this file. See
|
|
22
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
23
|
+
|
|
24
|
+
## 1.22.2 (2024-11-07)
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
- **yarn:** bundle because CI lacks corepack
|
|
29
|
+
([#1911](https://github.com/carbon-design-system/carbon-charts/issues/1911))
|
|
30
|
+
([513e779](https://github.com/carbon-design-system/carbon-charts/commit/513e7798007f807d1463a25efe7d140d5b038b8e))
|
|
31
|
+
|
|
32
|
+
# Change Log
|
|
33
|
+
|
|
34
|
+
All notable changes to this project will be documented in this file. See
|
|
35
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
36
|
+
|
|
37
|
+
## 1.22.1 (2024-09-27)
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
- **docs:** switch fonts to s81c cdn
|
|
42
|
+
([#1898](https://github.com/carbon-design-system/carbon-charts/issues/1898))
|
|
43
|
+
([cdfc980](https://github.com/carbon-design-system/carbon-charts/commit/cdfc980596365c90f08e35e91e49cbc2f491fd09))
|
|
44
|
+
|
|
45
|
+
# Change Log
|
|
46
|
+
|
|
47
|
+
All notable changes to this project will be documented in this file. See
|
|
48
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
49
|
+
|
|
6
50
|
# 1.22.0 (2024-09-16)
|
|
7
51
|
|
|
8
52
|
### Features
|
package/README.md
CHANGED
|
@@ -43,8 +43,9 @@ The required styles should be imported from `@carbon/charts-vue/styles.css`.
|
|
|
43
43
|
|
|
44
44
|
## <picture><source height="20" width="20" media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/ibm-telemetry/telemetry-js/main/docs/images/ibm-telemetry-dark.svg"><source height="20" width="20" media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/ibm-telemetry/telemetry-js/main/docs/images/ibm-telemetry-light.svg"><img height="20" width="20" alt="IBM Telemetry" src="https://raw.githubusercontent.com/ibm-telemetry/telemetry-js/main/docs/images/ibm-telemetry-light.svg"></picture> IBM Telemetry
|
|
45
45
|
|
|
46
|
-
This package uses IBM Telemetry to collect
|
|
47
|
-
you are agreeing to telemetry
|
|
46
|
+
This package uses IBM Telemetry to collect de-identified and anonymized metrics
|
|
47
|
+
data. By installing this package as a dependency you are agreeing to telemetry
|
|
48
|
+
collection. To opt out, see
|
|
48
49
|
[Opting out of IBM Telemetry data collection](https://github.com/ibm-telemetry/telemetry-js/tree/main#opting-out-of-ibm-telemetry-data-collection).
|
|
49
50
|
For more information on the data being collected, please see the
|
|
50
51
|
[IBM Telemetry documentation](https://github.com/ibm-telemetry/telemetry-js/tree/main#ibm-telemetry-collection-basics).
|