mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-30 06:31:04 -05:00
Update flowchart js (#674)
This commit is contained in:
parent
0d2c2fe0ee
commit
d5ee2f6d54
3 changed files with 18 additions and 5 deletions
|
@ -51,7 +51,7 @@
|
||||||
"eslint-plugin-promise": "4.2.1",
|
"eslint-plugin-promise": "4.2.1",
|
||||||
"eslint-plugin-standard": "4.0.1",
|
"eslint-plugin-standard": "4.0.1",
|
||||||
"fast-deep-equal": "3.1.3",
|
"fast-deep-equal": "3.1.3",
|
||||||
"flowchart.js": "1.14.2",
|
"flowchart.js": "1.14.3",
|
||||||
"fork-awesome": "1.1.7",
|
"fork-awesome": "1.1.7",
|
||||||
"highlight.js": "10.2.1",
|
"highlight.js": "10.2.1",
|
||||||
"i18next": "19.8.2",
|
"i18next": "19.8.2",
|
||||||
|
|
13
src/external-types/flowchart.js/index.d.ts
vendored
Normal file
13
src/external-types/flowchart.js/index.d.ts
vendored
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
declare module 'flowchart.js' {
|
||||||
|
export interface Options {
|
||||||
|
'line-width': number,
|
||||||
|
'fill': string,
|
||||||
|
'font-size': string,
|
||||||
|
'font-family': string
|
||||||
|
}
|
||||||
|
export interface ParseOutput {
|
||||||
|
clean: () => void,
|
||||||
|
drawSVG: (container: HTMLElement, options: Options) => void,
|
||||||
|
}
|
||||||
|
export function parse(code: string): ParseOutput
|
||||||
|
}
|
|
@ -6739,10 +6739,10 @@ flatten@^1.0.2:
|
||||||
resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.3.tgz#c1283ac9f27b368abc1e36d1ff7b04501a30356b"
|
resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.3.tgz#c1283ac9f27b368abc1e36d1ff7b04501a30356b"
|
||||||
integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==
|
integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==
|
||||||
|
|
||||||
flowchart.js@1.14.2:
|
flowchart.js@1.14.3:
|
||||||
version "1.14.2"
|
version "1.14.3"
|
||||||
resolved "https://registry.yarnpkg.com/flowchart.js/-/flowchart.js-1.14.2.tgz#d9d25cd0c1acf393897e4a8ca36262368fc4d479"
|
resolved "https://registry.yarnpkg.com/flowchart.js/-/flowchart.js-1.14.3.tgz#b203df7621871eed11d0caffce931d1b6b01b300"
|
||||||
integrity sha512-kKQjuXjfAOdK0IGq1Q8czgQlQtEHaafSdP3gNMRRbvm9ziiC/KCLnt61HoT2e73rqPRVhfFRzB/8CR6UNM1bZw==
|
integrity sha512-PluLllc7xeMoowH0xOFXpfehEpJeToSb1iMZZ8vUu5vgMC5+Ft3K6NRPZ+4Wp1pa8aJy38aiDRAHdMOqW6HG/g==
|
||||||
dependencies:
|
dependencies:
|
||||||
raphael "2.3.0"
|
raphael "2.3.0"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue