Merge branch 'develop' into release/10.9.0

* develop:
  Update docs
  Lychee ignore chrome webstore
  Update link
  chore(deps): update all patch dependencies
  build(docs): vendor CSS dependencies
  chore(deps): update all minor dependencies
  Ran lint:fix
  Fix chrome webstore url causing 404
  Resolves E2E testing issues and issue #5343
This commit is contained in:
Sidharth Vinod
2024-03-05 22:25:06 +05:30
8 changed files with 2316 additions and 2582 deletions

View File

@@ -1,2 +1,2 @@
FROM node:20.11.0-alpine3.19 AS base FROM node:20.11.1-alpine3.19 AS base
RUN wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.shrc" SHELL="$(which sh)" sh - RUN wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.shrc" SHELL="$(which sh)" sh -

View File

@@ -946,11 +946,11 @@ gitGraph TB:
it('46: should render GitGraph with merge back and merge forward', () => { it('46: should render GitGraph with merge back and merge forward', () => {
imgSnapshotTest( imgSnapshotTest(
`gitGraph LR: `gitGraph LR:
commit commit id:"1-abcdefg"
branch branch-A branch branch-A
branch branch-B branch branch-B
commit commit id:"2-abcdefg"
checkout branch-A checkout branch-A
merge branch-B merge branch-B
@@ -964,11 +964,11 @@ gitGraph TB:
it('47: should render GitGraph with merge back and merge forward | Vertical Branch', () => { it('47: should render GitGraph with merge back and merge forward | Vertical Branch', () => {
imgSnapshotTest( imgSnapshotTest(
`gitGraph TB: `gitGraph TB:
commit commit id:"1-abcdefg"
branch branch-A branch branch-A
branch branch-B branch branch-B
commit commit id:"2-abcdefg"
checkout branch-A checkout branch-A
merge branch-B merge branch-B
@@ -982,10 +982,10 @@ gitGraph TB:
it('48: should render GitGraph with merge on a new branch | Vertical Branch', () => { it('48: should render GitGraph with merge on a new branch | Vertical Branch', () => {
imgSnapshotTest( imgSnapshotTest(
`gitGraph LR: `gitGraph LR:
commit commit id:"1-abcdefg"
branch branch-B order: 2 branch branch-B order: 2
commit commit id:"2-abcdefg"
branch branch-A branch branch-A
merge main merge main
@@ -999,10 +999,10 @@ gitGraph TB:
it('49: should render GitGraph with merge on a new branch | Vertical Branch', () => { it('49: should render GitGraph with merge on a new branch | Vertical Branch', () => {
imgSnapshotTest( imgSnapshotTest(
`gitGraph TB: `gitGraph TB:
commit commit id:"1-abcdefg"
branch branch-B order: 2 branch branch-B order: 2
commit commit id:"2-abcdefg"
branch branch-A branch branch-A
merge main merge main

View File

@@ -14,10 +14,6 @@
`Optional` **bindFunctions**: (`element`: `Element`) => `void` `Optional` **bindFunctions**: (`element`: `Element`) => `void`
#### Type declaration
▸ (`element`): `void`
Bind function to be called after the svg has been inserted into the DOM. Bind function to be called after the svg has been inserted into the DOM.
This is necessary for adding event listeners to the elements in the svg. This is necessary for adding event listeners to the elements in the svg.
@@ -27,6 +23,10 @@ div.innerHTML = svg;
bindFunctions?.(div); // To call bindFunctions only if it's present. bindFunctions?.(div); // To call bindFunctions only if it's present.
``` ```
#### Type declaration
▸ (`element`): `void`
##### Parameters ##### Parameters
| Name | Type | | Name | Type |

View File

@@ -4,7 +4,7 @@
"version": "10.2.4", "version": "10.2.4",
"description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.", "description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
"type": "module", "type": "module",
"packageManager": "pnpm@8.15.1", "packageManager": "pnpm@8.15.4",
"keywords": [ "keywords": [
"diagram", "diagram",
"markdown", "markdown",

View File

@@ -4,7 +4,7 @@
> >
<p class="flex-grow text-center tracking-wide text-text"> <p class="flex-grow text-center tracking-wide text-text">
<a <a
href="https://www.mermaidchart.com/app/user/billing/checkout" href="https://www.mermaidchart.com/app/landing"
target="_blank" target="_blank"
class="unstyled flex-grow tracking-wide plausible-event-name=bannerClick" class="unstyled flex-grow tracking-wide plausible-event-name=bannerClick"
> >

View File

@@ -1,5 +1,5 @@
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'); @import 'font-awesome/css/font-awesome.min.css';
@import url('https://cdn.jsdelivr.net/npm/@mdi/font@6.9.96/css/materialdesignicons.min.css'); @import '@mdi/font/css/materialdesignicons.min.css';
:root { :root {
--vp-c-brand: #ff3670; --vp-c-brand: #ff3670;

View File

@@ -15,7 +15,9 @@
"fetch-contributors": "tsx .vitepress/scripts/fetch-contributors.ts" "fetch-contributors": "tsx .vitepress/scripts/fetch-contributors.ts"
}, },
"dependencies": { "dependencies": {
"@mdi/font": "^6.9.96",
"@vueuse/core": "^10.1.0", "@vueuse/core": "^10.1.0",
"font-awesome": "^4.7.0",
"jiti": "^1.18.2", "jiti": "^1.18.2",
"vue": "^3.3", "vue": "^3.3",
"mermaid": "workspace:^" "mermaid": "workspace:^"
@@ -32,7 +34,7 @@
"unplugin-vue-components": "^0.26.0", "unplugin-vue-components": "^0.26.0",
"vite": "^4.5.2", "vite": "^4.5.2",
"vite-plugin-pwa": "^0.19.0", "vite-plugin-pwa": "^0.19.0",
"vitepress": "1.0.0-rc.42", "vitepress": "1.0.0-rc.44",
"workbox-window": "^7.0.0" "workbox-window": "^7.0.0"
} }
} }

4860
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff