@carbon/charts-angular 1.16.11 → 1.17.0
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 +13 -0
- package/README.md +6 -25
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
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.17.0 (2024-06-26)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **docs:** Creation of new documentation website (PLEASE SQUASH COMMITS)
|
|
11
|
+
([#1798](https://github.com/carbon-design-system/carbon-charts/issues/1798))
|
|
12
|
+
([9df518a](https://github.com/carbon-design-system/carbon-charts/commit/9df518a43fd55f69f7d135bd5a28f083277fd287))
|
|
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
|
+
|
|
6
19
|
## 1.16.11 (2024-06-18)
|
|
7
20
|
|
|
8
21
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -7,12 +7,7 @@ If you need support for older versions of Angular (or encounter problems with th
|
|
|
7
7
|
revert to `@carbon/charts-angular@latest`. Distribution tags have been added for specific Angular
|
|
8
8
|
versions such as: `@carbon/charts-angular@angular15`, `@carbon/charts-angular@angular16`, etc.
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
documentation is provided in the Storybook demos.
|
|
12
|
-
|
|
13
|
-
**[Storybook demos](https://charts.carbondesignsystem.com/angular)**
|
|
14
|
-
|
|
15
|
-
**[Storybook demo sources](https://github.com/carbon-design-system/carbon-charts/tree/master/packages/core/demo/data)**
|
|
10
|
+
## [Documentation with StackBlitz examples](https://charts.carbondesignsystem.com/)
|
|
16
11
|
|
|
17
12
|
## Getting started
|
|
18
13
|
|
|
@@ -22,34 +17,20 @@ Run the following command using [npm](https://www.npmjs.com/):
|
|
|
22
17
|
npm install -S @carbon/charts-angular@next
|
|
23
18
|
```
|
|
24
19
|
|
|
25
|
-
If you prefer [Yarn](https://yarnpkg.com/en/), use the following command instead:
|
|
20
|
+
If you prefer [Yarn](https://yarnpkg.com/en/), use the following command instead: If you prefer
|
|
21
|
+
[Yarn](https://yarnpkg.com/en/), use the following command instead:
|
|
26
22
|
|
|
27
23
|
```bash
|
|
28
24
|
yarn add @carbon/charts-angular@next
|
|
29
25
|
```
|
|
30
26
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
Read
|
|
34
|
-
[Getting Started](https://charts.carbondesignsystem.com/?path=/docs/docs-getting-started-angular--docs)
|
|
35
|
-
|
|
36
|
-
## Charting data & options
|
|
37
|
-
|
|
38
|
-
Although new charts will be introduced in the future (such as a choropleth), data and options follow
|
|
39
|
-
the same model for all charts with minor exceptions. For example, in the case of a donut chart,
|
|
40
|
-
you're able to pass in an additional field called `center` in your options to configure the donut
|
|
41
|
-
center.
|
|
42
|
-
|
|
43
|
-
For instructions on using the **tabular data format**, see
|
|
44
|
-
[here](https://charts.carbondesignsystem.com/angular/?path=/docs/docs-tutorials-tabular-data-format--docs)
|
|
45
|
-
|
|
46
|
-
Customizable options (specific to chart type) can be found
|
|
47
|
-
[here](https://charts.carbondesignsystem.com/documentation/modules/interfaces.html)
|
|
27
|
+
The required styles should be imported from `@carbon/charts-angular/dist/styles.css`.
|
|
48
28
|
|
|
49
29
|
## <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
|
|
50
30
|
|
|
51
|
-
This package uses IBM Telemetry to collect metrics data. By installing this package as a dependency
|
|
31
|
+
This package uses IBM Telemetry to collect metrics data. By installing this package as a dependency,
|
|
52
32
|
you are agreeing to telemetry collection. To opt out, see
|
|
53
33
|
[Opting out of IBM Telemetry data collection](https://github.com/ibm-telemetry/telemetry-js/tree/main#opting-out-of-ibm-telemetry-data-collection).
|
|
34
|
+
|
|
54
35
|
For more information on the data being collected, please see the
|
|
55
36
|
[IBM Telemetry documentation](https://github.com/ibm-telemetry/telemetry-js/tree/main#ibm-telemetry-collection-basics).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/charts-angular",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.0",
|
|
4
4
|
"description": "Carbon Charts component library for Angular",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./styles.min.css": "./styles.min.css",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@angular/core": "^16.0.0 || ^17.0.0 || ^18.0.0"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@carbon/charts": "1.
|
|
25
|
+
"@carbon/charts": "1.17.0",
|
|
26
26
|
"@ibm/telemetry-js": "^1.5.2",
|
|
27
27
|
"tslib": "^2.6.3"
|
|
28
28
|
},
|