-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from sgratzl/release/v4.2.1
Release v4.2.1
- Loading branch information
Showing
50 changed files
with
3,550 additions
and
2,295 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Deploy Website | ||
on: | ||
workflow_dispatch: {} | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pages: write | ||
id-token: write | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
cache: npm | ||
- run: npm i -g yarn | ||
- run: yarn config set checksumBehavior ignore | ||
- name: Cache Node.js modules | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
./.yarn/cache | ||
./.yarn/unplugged | ||
key: ${{ runner.os }}-yarn2-v5-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-yarn2-v5 | ||
- run: yarn install | ||
- run: yarn docs:build | ||
- uses: actions/configure-pages@v2 | ||
- uses: actions/upload-pages-artifact@v1 | ||
with: | ||
path: docs/.vitepress/dist | ||
- name: Deploy | ||
id: deployment | ||
uses: actions/deploy-pages@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
559 changes: 280 additions & 279 deletions
559
.yarn/releases/yarn-3.5.0.cjs → .yarn/releases/yarn-3.6.1.cjs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
import { defineConfig } from 'vitepress'; | ||
import { name, description, repository, license, author } from '../../package.json'; | ||
import typedocSidebar from '../api/typedoc-sidebar.json'; | ||
|
||
const cleanName = name.replace('@sgratzl/', ''); | ||
|
||
// https://vitepress.dev/reference/site-config | ||
export default defineConfig({ | ||
title: cleanName, | ||
description, | ||
base: `/${cleanName}/`, | ||
useWebFonts: false, | ||
themeConfig: { | ||
// https://vitepress.dev/reference/default-theme-config | ||
nav: [ | ||
{ text: 'Home', link: '/' }, | ||
{ text: 'Getting Started', link: '/getting-started' }, | ||
{ text: 'Examples', link: '/examples/' }, | ||
{ text: 'API', link: '/api/' }, | ||
{ text: 'Related Plugins', link: '/related' }, | ||
], | ||
|
||
sidebar: [ | ||
{ | ||
text: 'Examples', | ||
items: [ | ||
{ text: 'Basic', link: '/examples/' }, | ||
{ text: 'Dendrogram', link: '/examples/dendrogram' }, | ||
{ text: 'Tree', link: '/examples/tree' }, | ||
{ text: 'Force Directed Graph', link: '/examples/force' }, | ||
{ text: 'Tree with Labels', link: '/examples/label' }, | ||
{ text: 'Directed Tree', link: '/examples/directed' }, | ||
{ text: 'Tree Orientations', link: '/examples/orientation' }, | ||
], | ||
}, | ||
{ | ||
text: 'API', | ||
collapsed: true, | ||
items: typedocSidebar, | ||
}, | ||
], | ||
|
||
socialLinks: [{ icon: 'github', link: repository.url.replace('.git', '') }], | ||
|
||
footer: { | ||
message: `Released under the <a href="${repository.url.replace( | ||
'.git', | ||
'' | ||
)}/tree/main/LICENSE">${license} license</a>.`, | ||
copyright: `Copyright © 2019-present <a href="${author.url}">${author.name}</a>`, | ||
}, | ||
|
||
editLink: { | ||
pattern: `${repository.url.replace('.git', '')}/edit/main/docs/:path`, | ||
}, | ||
|
||
search: { | ||
provider: 'local', | ||
}, | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import Theme from 'vitepress/theme'; | ||
import { createTypedChart } from 'vue-chartjs'; | ||
import { Tooltip, LineElement, PointElement, LinearScale } from 'chart.js'; | ||
import { DendrogramController, ForceDirectedGraphController, EdgeLine, TreeController } from '../../../src'; | ||
import ChartPluginDataLabel from 'chartjs-plugin-datalabels'; | ||
|
||
export default { | ||
...Theme, | ||
enhanceApp({ app }) { | ||
const deps = [ | ||
Tooltip, | ||
LineElement, | ||
PointElement, | ||
DendrogramController, | ||
ForceDirectedGraphController, | ||
EdgeLine, | ||
TreeController, | ||
LinearScale, | ||
ChartPluginDataLabel, | ||
]; | ||
app.component('DendrogramChart', createTypedChart('dendrogram', deps)); | ||
app.component('TreeChart', createTypedChart('tree', deps)); | ||
app.component('ForceDirectedGraphChart', createTypedChart('forceDirectedGraph', deps)); | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
title: Dendrogram | ||
--- | ||
|
||
# Dendrogram | ||
|
||
<script setup> | ||
import {config} from './dendrogram'; | ||
</script> | ||
|
||
<DendrogramChart | ||
:options="config.options" | ||
:data="config.data" | ||
/> | ||
|
||
### Code | ||
|
||
:::code-group | ||
|
||
<<< ./dendrogram.ts#config [config] | ||
|
||
<<< ./dendrogram.ts#data [data] | ||
|
||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import type { ChartConfiguration } from 'chart.js'; | ||
import type {} from '../../src'; | ||
import 'chartjs-plugin-datalabels'; | ||
|
||
// #region data | ||
import nodes from './tree.json'; | ||
|
||
export const data: ChartConfiguration<'dendrogram'>['data'] = { | ||
labels: nodes.map((d) => d.name), | ||
datasets: [ | ||
{ | ||
pointBackgroundColor: 'steelblue', | ||
pointRadius: 5, | ||
data: nodes.map((d) => Object.assign({}, d)), | ||
}, | ||
], | ||
}; | ||
// #endregion data | ||
// #region config | ||
export const config: ChartConfiguration<'dendrogram'> = { | ||
type: 'dendrogram', | ||
data, | ||
options: { | ||
plugins: { | ||
datalabels: { | ||
display: false, | ||
}, | ||
}, | ||
}, | ||
}; | ||
// #endregion config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
title: Directed Tree | ||
--- | ||
|
||
# Directed Tree | ||
|
||
<script setup> | ||
import {config} from './directed'; | ||
</script> | ||
|
||
<TreeChart | ||
:options="config.options" | ||
:data="config.data" | ||
/> | ||
|
||
### Code | ||
|
||
:::code-group | ||
|
||
<<< ./directed.ts#config [config] | ||
|
||
<<< ./directed.ts#data [data] | ||
|
||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import type { ChartConfiguration } from 'chart.js'; | ||
import type {} from '../../src'; | ||
import 'chartjs-plugin-datalabels'; | ||
|
||
// #region data | ||
import nodes from './tree.json'; | ||
|
||
export const data: ChartConfiguration<'tree'>['data'] = { | ||
labels: nodes.map((d) => d.name), | ||
datasets: [ | ||
{ | ||
pointBackgroundColor: 'steelblue', | ||
pointRadius: 5, | ||
directed: true, | ||
data: nodes.map((d) => Object.assign({}, d)), | ||
}, | ||
], | ||
}; | ||
// #endregion data | ||
// #region config | ||
export const config: ChartConfiguration<'tree'> = { | ||
type: 'tree', | ||
data, | ||
options: { | ||
plugins: { | ||
datalabels: { | ||
display: false, | ||
}, | ||
}, | ||
}, | ||
}; | ||
// #endregion config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
title: Force Directed Graph | ||
--- | ||
|
||
# Force Directed Graph | ||
|
||
<script setup> | ||
import {config} from './force'; | ||
</script> | ||
|
||
<ForceDirectedGraphChart | ||
:options="config.options" | ||
:data="config.data" | ||
/> | ||
|
||
### Code | ||
|
||
:::code-group | ||
|
||
<<< ./force.ts#config [config] | ||
|
||
<<< ./force.ts#data [data] | ||
|
||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import type { ChartConfiguration } from 'chart.js'; | ||
import type {} from '../../src'; | ||
import 'chartjs-plugin-datalabels'; | ||
|
||
// #region data | ||
import miserables from './miserables.json'; | ||
export const data: ChartConfiguration<'forceDirectedGraph'>['data'] = { | ||
labels: miserables.nodes.map((d) => d.id), | ||
datasets: [ | ||
{ | ||
pointBackgroundColor: 'steelblue', | ||
pointRadius: 5, | ||
data: miserables.nodes, | ||
edges: miserables.links, | ||
}, | ||
], | ||
}; | ||
// #endregion data | ||
// #region config | ||
export const config: ChartConfiguration<'forceDirectedGraph'> = { | ||
type: 'forceDirectedGraph', | ||
data, | ||
options: { | ||
plugins: { | ||
datalabels: { | ||
display: false, | ||
}, | ||
}, | ||
}, | ||
}; | ||
// #endregion config |
Oops, something went wrong.