Merge branch 'master' of github.com:sidharthv96/mermaid-live-editor

* 'master' of github.com:sidharthv96/mermaid-live-editor:
  Release  2.0.63
  Release  2.0.62
  Fix SVG Export
  Test hook
This commit is contained in:
Sidharth Vinod
2021-06-03 00:36:48 +05:30
12 changed files with 31 additions and 4893 deletions
+11 -9
View File
@@ -4,15 +4,15 @@ about: Create a report to help us improve
title: ''
labels: bug
assignees: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Link to Live Editor:
Link to Live Editor:
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
@@ -25,15 +25,17 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
**Additional context**
Add any other context about the problem here.
@@ -4,7 +4,6 @@ about: Suggest an idea for this project
title: ''
labels: enhancement
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
+1
View File
@@ -24,6 +24,7 @@
// -- This will overwrite an existing command --
// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
import { register } from '@cypress/snapshot';
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
register();
declare global {
// eslint-disable-next-line @typescript-eslint/no-namespace
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -59,7 +59,7 @@
<link rel="modulepreload" href="/mermaid-live-editor/_app/start-8d744e7a.js">
<link rel="modulepreload" href="/mermaid-live-editor/_app/start-81c55f65.js">
<link rel="modulepreload" href="/mermaid-live-editor/_app/chunks/vendor-de807e42.js">
<link rel="modulepreload" href="/mermaid-live-editor/_app/chunks/preload-helper-9f12a5fd.js">
<link rel="modulepreload" href="/mermaid-live-editor/_app/chunks/singletons-bb9012b7.js">
@@ -67,7 +67,7 @@
<link rel="stylesheet" href="/mermaid-live-editor/_app/assets/start-0826e215.css">
<script type="module">
import { start } from "/mermaid-live-editor/_app/start-8d744e7a.js";
import { start } from "/mermaid-live-editor/_app/start-81c55f65.js";
start({
target: document.querySelector("#svelte"),
paths: {"base":"/mermaid-live-editor","assets":"/mermaid-live-editor"},
+2 -2
View File
@@ -59,7 +59,7 @@
<link rel="modulepreload" href="/mermaid-live-editor/_app/start-8d744e7a.js">
<link rel="modulepreload" href="/mermaid-live-editor/_app/start-81c55f65.js">
<link rel="modulepreload" href="/mermaid-live-editor/_app/chunks/vendor-de807e42.js">
<link rel="modulepreload" href="/mermaid-live-editor/_app/chunks/preload-helper-9f12a5fd.js">
<link rel="modulepreload" href="/mermaid-live-editor/_app/chunks/singletons-bb9012b7.js">
@@ -67,7 +67,7 @@
<link rel="stylesheet" href="/mermaid-live-editor/_app/assets/start-0826e215.css">
<script type="module">
import { start } from "/mermaid-live-editor/_app/start-8d744e7a.js";
import { start } from "/mermaid-live-editor/_app/start-81c55f65.js";
start({
target: document.querySelector("#svelte"),
paths: {"base":"/mermaid-live-editor","assets":"/mermaid-live-editor"},
+2 -2
View File
@@ -59,7 +59,7 @@
<link rel="modulepreload" href="/mermaid-live-editor/_app/start-8d744e7a.js">
<link rel="modulepreload" href="/mermaid-live-editor/_app/start-81c55f65.js">
<link rel="modulepreload" href="/mermaid-live-editor/_app/chunks/vendor-de807e42.js">
<link rel="modulepreload" href="/mermaid-live-editor/_app/chunks/preload-helper-9f12a5fd.js">
<link rel="modulepreload" href="/mermaid-live-editor/_app/chunks/singletons-bb9012b7.js">
@@ -67,7 +67,7 @@
<link rel="stylesheet" href="/mermaid-live-editor/_app/assets/start-0826e215.css">
<script type="module">
import { start } from "/mermaid-live-editor/_app/start-8d744e7a.js";
import { start } from "/mermaid-live-editor/_app/start-81c55f65.js";
start({
target: document.querySelector("#svelte"),
paths: {"base":"/mermaid-live-editor","assets":"/mermaid-live-editor"},
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "mermaid-live-editor",
"version": "2.0.62",
"version": "2.0.63",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
-4871
View File
File diff suppressed because it is too large Load Diff
+7 -3
View File
@@ -6,9 +6,12 @@
type Exporter = (context: CanvasRenderingContext2D, image: HTMLImageElement) => () => void;
const getBase64SVG = (svg: HTMLElement, width: number, height: number): string => {
svg.setAttribute('height', `${height}px`);
svg.setAttribute('width', `${width}px`); // Workaround https://stackoverflow.com/questions/28690643/firefox-error-rendering-an-svg-image-to-html5-canvas-with-drawimage
const getBase64SVG = (svg?: HTMLElement, width?: number, height?: number): string => {
svg?.setAttribute('height', `${height}px`);
svg?.setAttribute('width', `${width}px`); // Workaround https://stackoverflow.com/questions/28690643/firefox-error-rendering-an-svg-image-to-html5-canvas-with-drawimage
if (!svg) {
svg = document.querySelector('#container svg');
}
const svgString = svg.outerHTML.replaceAll('<br>', '<br/>');
return toBase64(svgString);
};
@@ -28,6 +31,7 @@
canvas.width = userimagesize * ratio;
canvas.height = userimagesize;
}
const context = canvas.getContext('2d');
context.fillStyle = 'white';
context.fillRect(0, 0, canvas.width, canvas.height);
+3
View File
@@ -1,3 +1,6 @@
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
/* eslint-disable @typescript-eslint/no-unsafe-call */
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
export const initEditor = (monacoEditor): void => {
monacoEditor.languages.register({ id: 'mermaid' });