Skip to content

Commit

Permalink
chore(release): publish 1.22.3
Browse files Browse the repository at this point in the history
  • Loading branch information
carbon-bot committed Nov 18, 2024
1 parent 851b061 commit fa5f072
Show file tree
Hide file tree
Showing 15 changed files with 71 additions and 8 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.22.3 (2024-11-18)

**Note:** Version bump only for package @carbon/charts-monorepo

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.22.2 (2024-11-07)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "1.22.2",
"version": "1.22.3",
"npmClient": "yarn",
"command": {
"publish": {
Expand Down
9 changes: 9 additions & 0 deletions packages/angular/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.22.3 (2024-11-18)

**Note:** Version bump only for package @carbon/charts-angular

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.22.2 (2024-11-07)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@carbon/charts-angular",
"version": "1.22.2",
"version": "1.22.3",
"description": "Carbon Charts component library for Angular",
"exports": {
"./styles.min.css": "./styles.min.css",
Expand Down
9 changes: 9 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.22.3 (2024-11-18)

**Note:** Version bump only for package @carbon/charts

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.22.2 (2024-11-07)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@carbon/charts",
"version": "1.22.2",
"version": "1.22.3",
"description": "Carbon Charts component library",
"type": "module",
"module": "./dist/index.mjs",
Expand Down
9 changes: 9 additions & 0 deletions packages/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.22.3 (2024-11-18)

**Note:** Version bump only for package @carbon/charts-docs

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.22.2 (2024-11-07)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@carbon/charts-docs",
"private": true,
"version": "1.22.2",
"version": "1.22.3",
"description": "Carbon Charts Documentation",
"type": "module",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/src/searchIndex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default [
{
path: 'installation',
title: 'Installation & setup',
text: "Details for each file in the example above: The HTML example above loads the UMD bundle and styles in the head of the document from https://unpkg.com (cdnjs is also available). The fonts are loaded from Google's CDN. JavaScript executes once the DOM has loaded. It gets the HTML id of the div that will contain the chart. It then passes the data and options to it. Example using SvelteKit The embedded example above uses a WebContainer optimized for Chromium-based browsers. To view it in your browser, click the Fork on StackBlitz button on the bottom left. Carbon Charts Svelte is unique among the component libraries because it is provided in source / unbundled form. This means when you build your Svelte app using it, you are compiling the source of Carbon Charts Svelte and its dependency, Carbon Charts. Carbon Charts expects to run in a browser environment. This will cause an error when using server-side rendering (SSR). To avoid this, configure Vite to prevent @carbon/charts from being externalized for SSR. vite.config.mjs Example using React Click Preview or Both on the lower left of the example to see the chart. The top-left icon (Project) allows you to browse all the files in the project. Example using Vue.js The embedded example uses a WebContainer optimized for Chromium-based browsers. To view it in your browser, click the Fork on StackBlitz button on the bottom left. For Vue.js 3+, use @carbon/charts-vue@next. For 2.7, use @carbon/charts-vue@latest. Example using Angular Click Preview or Both on the lower left of the example to see the chart. The top-left icon (Project) allows you to browse all the files in the project. For Angular 16+, use @carbon/charts-angular@next. For 6 to 15, use @carbon/charts-angular@latest. By default, Carbon Charts uses IBM Plex Sans and IBM Plex Sans Condensed which can be loaded in your HTML template from Google's Content Distribution Network (CDN): {``} To use different fonts, override two custom CSS properties for the CSS class that is automatically associated with the chart container like this... {`.cds--cc--chart-wrapper { --cds-charts-font-family: Roboto; --cds-charts-font-family-condensed: 'Roboto Condensed'; }`}",
text: "Details for each file in the example above: The HTML example above loads the UMD bundle and styles in the head of the document from https://unpkg.com (cdnjs is also available). JavaScript executes once the DOM has loaded. It gets the HTML id of the div that will contain the chart. It then passes the data and options to it. Example using SvelteKit The embedded example above uses a WebContainer optimized for Chromium-based browsers. To view it in your browser, click the Fork on StackBlitz button on the bottom left. Carbon Charts Svelte is unique among the component libraries because it is provided in source / unbundled form. This means when you build your Svelte app using it, you are compiling the source of Carbon Charts Svelte and its dependency, Carbon Charts. Carbon Charts expects to run in a browser environment. This will cause an error when using server-side rendering (SSR). To avoid this, configure Vite to prevent @carbon/charts from being externalized for SSR. vite.config.mjs Example using React Click Preview or Both on the lower left of the example to see the chart. The top-left icon (Project) allows you to browse all the files in the project. Example using Vue.js The embedded example uses a WebContainer optimized for Chromium-based browsers. To view it in your browser, click the Fork on StackBlitz button on the bottom left. For Vue.js 3+, use @carbon/charts-vue@next. For 2.7, use @carbon/charts-vue@latest. Example using Angular Click Preview or Both on the lower left of the example to see the chart. The top-left icon (Project) allows you to browse all the files in the project. For Angular 16+, use @carbon/charts-angular@next. For 6 to 15, use @carbon/charts-angular@latest. By default, Carbon Charts use IBM Plex Sans and IBM Plex Sans Condensed : {` `} To use different fonts, override two custom CSS properties for the CSS class that is automatically associated with the chart container like this... {`.cds--cc--chart-wrapper { --cds-charts-font-family: Roboto; --cds-charts-font-family-condensed: 'Roboto Condensed'; }`}",
charts: []
},
{
Expand Down
9 changes: 9 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.22.3 (2024-11-18)

**Note:** Version bump only for package @carbon/charts-react

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.22.2 (2024-11-07)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@carbon/charts-react",
"version": "1.22.2",
"version": "1.22.3",
"description": "Carbon Charts component library for React",
"type": "module",
"module": "./dist/index.mjs",
Expand Down
9 changes: 9 additions & 0 deletions packages/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.22.3 (2024-11-18)

**Note:** Version bump only for package @carbon/charts-svelte

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.22.2 (2024-11-07)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@carbon/charts-svelte",
"version": "1.22.2",
"version": "1.22.3",
"description": "Carbon Charts component library for Svelte",
"scripts": {
"postinstall": "ibmtelemetry --config=telemetry.yml",
Expand Down
9 changes: 9 additions & 0 deletions packages/vue/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.22.3 (2024-11-18)

**Note:** Version bump only for package @carbon/charts-vue

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.22.2 (2024-11-07)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@carbon/charts-vue",
"version": "1.22.2",
"version": "1.22.3",
"description": "Carbon Charts component library for Vue",
"type": "module",
"module": "./dist/index.mjs",
Expand Down

0 comments on commit fa5f072

Please sign in to comment.