@carbon/charts-svelte 1.13.24 → 1.13.25
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 +9 -0
- package/README.md +9 -0
- package/package.json +7 -6
- package/telemetry.yml +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
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.25 (2024-01-29)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts-svelte
|
|
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
|
+
|
|
6
15
|
## 1.13.24 (2024-01-26)
|
|
7
16
|
|
|
8
17
|
**Note:** Version bump only for package @carbon/charts-svelte
|
package/README.md
CHANGED
|
@@ -268,3 +268,12 @@ type ChartProps = ComponentProps<BarChartSimple>
|
|
|
268
268
|
// Indexed access type to access the type of the `chart` property
|
|
269
269
|
let chart: ChartProps['chart'] = null
|
|
270
270
|
```
|
|
271
|
+
|
|
272
|
+
## <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
|
|
273
|
+
|
|
274
|
+
This package uses IBM Telemetry to collect metrics data. By installing this
|
|
275
|
+
package as a dependency you are agreeing to telemetry collection. To opt out,
|
|
276
|
+
see
|
|
277
|
+
[Opting out of IBM Telemetry data collection](https://github.com/ibm-telemetry/telemetry-js/tree/main#opting-out-of-ibm-telemetry-data-collection).
|
|
278
|
+
For more information on the data being collected, please see the
|
|
279
|
+
[IBM Telemetry documentation](https://github.com/ibm-telemetry/telemetry-js/tree/main#ibm-telemetry-collection-basics).
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/charts-svelte",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.25",
|
|
4
4
|
"description": "Carbon Charts component library for Svelte",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"postinstall": "
|
|
6
|
+
"postinstall": "ibmtelemetry --config=telemetry.yml",
|
|
7
7
|
"file:styles": "cp ../core/dist/styles.* dist",
|
|
8
8
|
"build:package": "svelte-kit sync && svelte-package && yarn file:styles",
|
|
9
9
|
"demo:mdx:svelte": "cp ../core/src/stories/getting-started/svelte.stories.mdx src/stories",
|
|
@@ -36,14 +36,15 @@
|
|
|
36
36
|
},
|
|
37
37
|
"files": [
|
|
38
38
|
"dist",
|
|
39
|
-
"CHANGELOG.md"
|
|
39
|
+
"CHANGELOG.md",
|
|
40
|
+
"telemetry.yml"
|
|
40
41
|
],
|
|
41
42
|
"peerDependencies": {
|
|
42
43
|
"svelte": "^3.31.0 || ^4.0.0"
|
|
43
44
|
},
|
|
44
45
|
"dependencies": {
|
|
45
|
-
"@carbon/charts": "1.13.
|
|
46
|
-
"@
|
|
46
|
+
"@carbon/charts": "1.13.25",
|
|
47
|
+
"@ibm/telemetry-js": "1.2.0"
|
|
47
48
|
},
|
|
48
49
|
"devDependencies": {
|
|
49
50
|
"@stackblitz/sdk": "^1.9.0",
|
|
@@ -119,5 +120,5 @@
|
|
|
119
120
|
"data",
|
|
120
121
|
"typescript"
|
|
121
122
|
],
|
|
122
|
-
"gitHead": "
|
|
123
|
+
"gitHead": "dc50014f2bdab08fd56f4014d7f194b9a2123843"
|
|
123
124
|
}
|
package/telemetry.yml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# yaml-language-server: $schema=https://unpkg.com/@ibm/telemetry-config-schema@v1/dist/config.schema.json
|
|
2
|
+
version: 1
|
|
3
|
+
projectId: f4284ccd-bed3-420a-ab93-829c790246e7
|
|
4
|
+
endpoint: "https://collector-prod.1am6wm210aow.us-south.codeengine.appdomain.cloud/v1/metrics"
|
|
5
|
+
collect:
|
|
6
|
+
npm:
|
|
7
|
+
dependencies: null
|