Skip to content

Commit

Permalink
chore(deps-dev): bump typedoc from 0.25.13 to 0.26.2 (#286)
Browse files Browse the repository at this point in the history
Bumps [typedoc](https://github.com/TypeStrong/TypeDoc) from 0.25.13 to 0.26.2.
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.25.13...v0.26.2)

---
updated-dependencies:
- dependency-name: typedoc
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Julien Déramond <julien.deramond@orange.com>
  • Loading branch information
dependabot[bot] and julien-deramond committed Jun 25, 2024
1 parent 3404802 commit 9890548
Show file tree
Hide file tree
Showing 3 changed files with 103 additions and 63 deletions.
17 changes: 6 additions & 11 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,22 @@ The {@link ODSChartsTheme} is used to build the ODS theme and the charts options

## Examples

```
```html
<html lang="en">
<head>
<script type="text/javascript" src="<...>ods-charts.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/echarts@latest/dist/echarts.min.js "></script>
</head>
<body>
<div id="chart1" style="width: 800px; height: 400px"></div>
<div id="chart1_legends" ></div>
<div id="chart1_legends"></div>
<script>
var lineChartODSTheme = ODSCharts.getThemeManager();
echarts.registerTheme(lineChartODSTheme.name, lineChartODSTheme.theme);
const chart1 = echarts.init(
document.getElementById('chart1'),
lineChartODSTheme.name,
{
renderer: 'svg',
}
);
const chart1 = echarts.init(document.getElementById('chart1'), lineChartODSTheme.name, {
renderer: 'svg',
});
chart1.setOption(
lineChartODSTheme
.setDataOptions({
Expand All @@ -65,10 +61,9 @@ The {@link ODSChartsTheme} is used to build the ODS theme and the charts options
</script>
</body>
</html>
```

<a href="../examples/">See more online dynamic examples</a>
<a href="/examples/">See more online dynamic examples</a>

## Copyright and license

Expand Down
147 changes: 96 additions & 51 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"prettier": "^3.3.2",
"serve": "^14.2.3",
"ts-loader": "^9.5.1",
"typedoc": "^0.25.13",
"typedoc": "^0.26.2",
"typescript": "^5.4.5",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4"
Expand Down

0 comments on commit 9890548

Please sign in to comment.