Compare commits
2 commits
591bb55af1
...
c25419b274
Author | SHA1 | Date | |
---|---|---|---|
c25419b274 | |||
5b8b11b0e8 |
3 changed files with 6 additions and 6 deletions
|
@ -8,7 +8,7 @@
|
||||||
"build": "vite build",
|
"build": "vite build",
|
||||||
"preview": "vite preview",
|
"preview": "vite preview",
|
||||||
"check": "svelte-check --tsconfig ./tsconfig.json",
|
"check": "svelte-check --tsconfig ./tsconfig.json",
|
||||||
"upload": "scp -rP993 dist/* root@nulo.in:/var/www/beta.schreiben.nulo.ar/"
|
"upload": "scp -CrP993 dist/* root@nulo.in:/var/www/beta.schreiben.nulo.ar/"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@poppanator/sveltekit-svg": "^2.1.2",
|
"@poppanator/sveltekit-svg": "^2.1.2",
|
||||||
|
|
|
@ -135,7 +135,7 @@ transform: scale(${1 / viewport.scale});
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
<div class="floating" style={barStyle}>
|
<div class="floating" style={barStyle}>
|
||||||
<Linking {state} {view} />
|
<Linking {state} />
|
||||||
<div class="bubble" hidden={state.selection.empty}>
|
<div class="bubble" hidden={state.selection.empty}>
|
||||||
{#if changingProp === false}
|
{#if changingProp === false}
|
||||||
<SimpleMarkItem {view} {state} type={view.state.schema.marks.strong}
|
<SimpleMarkItem {view} {state} type={view.state.schema.marks.strong}
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
// Inspirado en https://collectednotes.com/blog/zettelkasten
|
// Inspirado en https://collectednotes.com/blog/zettelkasten
|
||||||
|
|
||||||
import { schema } from "../schema";
|
import { schema } from "../schema";
|
||||||
import LinkIcon from "bootstrap-icons/icons/box-arrow-up-right.svg";
|
import LinkIcon from "eva-icons/outline/svg/external-link-outline.svg";
|
||||||
import InternalLinkIcon from "bootstrap-icons/icons/folder-symlink.svg";
|
import InternalLinkIcon from "eva-icons/outline/svg/menu-arrow-outline.svg";
|
||||||
|
|
||||||
const svgStyle = "width: 1em; height: 1em";
|
const svgStyle = "width: 1em; height: 1em";
|
||||||
|
|
||||||
/** @type {import("prosemirror-view").EditorView} */
|
// /** @type {import("prosemirror-view").EditorView} */
|
||||||
export let view;
|
// export let view;
|
||||||
/** @type {import("prosemirror-state").EditorState} */
|
/** @type {import("prosemirror-state").EditorState} */
|
||||||
export let state;
|
export let state;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue