@carbon/charts-svelte 1.19.1 → 1.19.3
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 +22 -0
- package/README.md +18 -4
- package/dist/BaseChart.svelte.d.ts +2 -2
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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.19.3 (2024-08-19)
|
|
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
|
+
|
|
15
|
+
## 1.19.2 (2024-07-15)
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- **docs:** media breakpoints for PageHeaderTitle
|
|
20
|
+
([#1869](https://github.com/carbon-design-system/carbon-charts/issues/1869))
|
|
21
|
+
([6cdb564](https://github.com/carbon-design-system/carbon-charts/commit/6cdb564f4cdd605cc69f728d86921977b584ebd7))
|
|
22
|
+
|
|
23
|
+
# Change Log
|
|
24
|
+
|
|
25
|
+
All notable changes to this project will be documented in this file. See
|
|
26
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
27
|
+
|
|
6
28
|
## 1.19.1 (2024-07-15)
|
|
7
29
|
|
|
8
30
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -1,7 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Carbon Charts
|
|
4
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://charts.carbondesignsystem.com/">
|
|
3
|
+
<img src="../../assets/dashboard.png" alt="Carbon Charts" />
|
|
4
|
+
</a>
|
|
5
|
+
<h3 align="center">Carbon Charts Svelte</h3>
|
|
6
|
+
<p align="center">
|
|
7
|
+
A component library of 26 charts for Svelte and SvelteKit.
|
|
8
|
+
<br /><br />
|
|
9
|
+
<a href="https://www.npmjs.com/package/@carbon/charts">
|
|
10
|
+
<img src="https://img.shields.io/npm/v/@carbon/charts.svg" />
|
|
11
|
+
</a>
|
|
12
|
+
<img alt="semantic-versioning" src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--ver-e10079.svg" />
|
|
13
|
+
<img alt="semantic-versioning" src="https://img.shields.io/badge/downloads-+60k%2Fweek-green" />
|
|
14
|
+
<a href="https://discord.gg/J7JEUEkTRX">
|
|
15
|
+
<img src="https://img.shields.io/discord/689212587170201628?color=5865F2" alt="Chat with us on Discord">
|
|
16
|
+
</a>
|
|
17
|
+
</p>
|
|
18
|
+
</p>
|
|
5
19
|
|
|
6
20
|
## [Documentation with StackBlitz examples](https://charts.carbondesignsystem.com/)
|
|
7
21
|
|
|
@@ -3,12 +3,12 @@ import type { Charts, ChartConfig, BaseChartOptions, ChartTabularData } from '@c
|
|
|
3
3
|
declare class __sveltets_Render<T extends BaseChartOptions> {
|
|
4
4
|
props(): {
|
|
5
5
|
[x: string]: any;
|
|
6
|
-
data?: ChartTabularData;
|
|
6
|
+
data?: ChartTabularData | undefined;
|
|
7
7
|
options?: T | undefined;
|
|
8
8
|
Chart: new (holder: HTMLDivElement, chartConfigs: ChartConfig<T>) => Charts;
|
|
9
9
|
chart: Charts | undefined;
|
|
10
10
|
ref: HTMLDivElement;
|
|
11
|
-
id?: string;
|
|
11
|
+
id?: string | undefined;
|
|
12
12
|
};
|
|
13
13
|
events(): {
|
|
14
14
|
load: CustomEvent<null>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/charts-svelte",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.3",
|
|
4
4
|
"description": "Carbon Charts component library for Svelte",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"postinstall": "ibmtelemetry --config=telemetry.yml",
|
|
@@ -36,36 +36,36 @@
|
|
|
36
36
|
"svelte": "^4.0.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@carbon/charts": "1.19.
|
|
40
|
-
"@ibm/telemetry-js": "^1.6.
|
|
39
|
+
"@carbon/charts": "1.19.3",
|
|
40
|
+
"@ibm/telemetry-js": "^1.6.1"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@playwright/test": "^1.
|
|
44
|
-
"@sveltejs/adapter-static": "^3.0.
|
|
45
|
-
"@sveltejs/kit": "^2.5.
|
|
46
|
-
"@sveltejs/package": "^2.3.
|
|
43
|
+
"@playwright/test": "^1.46.1",
|
|
44
|
+
"@sveltejs/adapter-static": "^3.0.4",
|
|
45
|
+
"@sveltejs/kit": "^2.5.22",
|
|
46
|
+
"@sveltejs/package": "^2.3.4",
|
|
47
47
|
"@sveltejs/vite-plugin-svelte": "^3.1.1",
|
|
48
|
-
"eslint": "^9.
|
|
49
|
-
"prettier": "^3.3.
|
|
50
|
-
"publint": "^0.2.
|
|
48
|
+
"eslint": "^9.9.0",
|
|
49
|
+
"prettier": "^3.3.3",
|
|
50
|
+
"publint": "^0.2.10",
|
|
51
51
|
"svelte": "^4.2.18",
|
|
52
|
-
"svelte-check": "^3.8.
|
|
52
|
+
"svelte-check": "^3.8.5",
|
|
53
53
|
"tslib": "^2.6.3",
|
|
54
|
-
"typescript": "^5.5.
|
|
55
|
-
"vite": "^5.
|
|
54
|
+
"typescript": "^5.5.4",
|
|
55
|
+
"vite": "^5.4.1"
|
|
56
56
|
},
|
|
57
57
|
"publishConfig": {
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
|
+
"homepage": "https://github.com/carbon-design-system/carbon-charts#readme",
|
|
60
61
|
"repository": {
|
|
61
62
|
"type": "git",
|
|
62
|
-
"url": "git
|
|
63
|
-
"
|
|
63
|
+
"url": "git+https://github.com/carbon-design-system/carbon-charts.git",
|
|
64
|
+
"directory": "packages/svelte"
|
|
64
65
|
},
|
|
65
66
|
"bugs": {
|
|
66
67
|
"url": "https://github.com/carbon-design-system/carbon-charts/issues"
|
|
67
68
|
},
|
|
68
|
-
"homepage": "https://github.com/carbon-design-system/carbon-charts#readme",
|
|
69
69
|
"maintainers": [
|
|
70
70
|
{
|
|
71
71
|
"name": "Eric Liu",
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
"data",
|
|
110
110
|
"typescript"
|
|
111
111
|
],
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "79d3988772ed3e9955d21e37af8caf4657781c6b"
|
|
113
113
|
}
|