@grandaniel/vue-markdown-editor 1.2.0 → 1.3.0-dev.e600a13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +226 -141
- package/dist/components/MarkdownEditor/Factory/MarkdownNodeFactory.d.ts +7 -0
- package/dist/components/MarkdownEditor/MarkdownComponentRegistry.d.ts +5 -1
- package/dist/components/MarkdownEditor/MarkdownEditorModule.vue.d.ts +2 -2
- package/dist/components/MarkdownEditor/Modules/MarkdownModuleBlockquote.vue.d.ts +20 -0
- package/dist/components/MarkdownEditor/Modules/MarkdownModuleCodeBlock.vue.d.ts +66 -0
- package/dist/components/MarkdownEditor/Modules/MarkdownModuleCodeBlockState.d.ts +5 -0
- package/dist/components/MarkdownEditor/Modules/MarkdownModuleFile.vue.d.ts +2 -2
- package/dist/components/MarkdownEditor/Modules/MarkdownModuleHeadline1.vue.d.ts +2 -2
- package/dist/components/MarkdownEditor/Modules/MarkdownModuleHeadline2.vue.d.ts +2 -2
- package/dist/components/MarkdownEditor/Modules/MarkdownModuleHeadline3.vue.d.ts +2 -2
- package/dist/components/MarkdownEditor/Modules/MarkdownModuleHr.vue.d.ts +14 -0
- package/dist/components/MarkdownEditor/Modules/MarkdownModuleHrState.d.ts +3 -0
- package/dist/components/MarkdownEditor/Modules/MarkdownModuleOrderedList.vue.d.ts +14 -0
- package/dist/components/MarkdownEditor/Modules/MarkdownModuleParagraph.vue.d.ts +2 -2
- package/dist/components/MarkdownEditor/Modules/MarkdownModuleTable.vue.d.ts +14 -0
- package/dist/components/MarkdownEditor/Modules/MarkdownModuleTableState.d.ts +5 -0
- package/dist/components/MarkdownEditor/Types/MarkdownAstNode.d.ts +4 -0
- package/dist/components/MarkdownEditor/Types/MarkdownAstNodeType.d.ts +7 -2
- package/dist/components/MarkdownEditor/index.d.ts +7 -1
- package/dist/components/MarkdownRenderer/Composable/useMarkdownRenderer.d.ts +822 -0
- package/dist/components/MarkdownRenderer/MarkdownRenderer.vue.d.ts +869 -54
- package/dist/components/MarkdownRenderer/RenderModules/MarkdownModuleBlockquoteRender.vue.d.ts +7 -0
- package/dist/components/MarkdownRenderer/RenderModules/MarkdownModuleCodeBlockRender.vue.d.ts +7 -0
- package/dist/components/MarkdownRenderer/RenderModules/MarkdownModuleHrRender.vue.d.ts +6 -0
- package/dist/components/MarkdownRenderer/RenderModules/MarkdownModuleOrderedListRender.vue.d.ts +7 -0
- package/dist/components/MarkdownRenderer/RenderModules/MarkdownModuleTableRender.vue.d.ts +7 -0
- package/dist/index.d.ts +1 -0
- package/dist/markdown.d.ts +20 -0
- package/dist/vue-markdown-editor.css +1 -1
- package/dist/vue-markdown-editor.mjs +11369 -7964
- package/package.json +5 -6
package/dist/components/MarkdownRenderer/RenderModules/MarkdownModuleBlockquoteRender.vue.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type MarkdownModuleTextState from "../../MarkdownEditor/Modules/MarkdownModuleTextState";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
state: MarkdownModuleTextState;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type MarkdownModuleCodeBlockState from "../../MarkdownEditor/Modules/MarkdownModuleCodeBlockState";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
state: MarkdownModuleCodeBlockState;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
state: object;
|
|
3
|
+
};
|
|
4
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
declare const _default: typeof __VLS_export;
|
|
6
|
+
export default _default;
|
package/dist/components/MarkdownRenderer/RenderModules/MarkdownModuleOrderedListRender.vue.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type MarkdownModuleListState from "../../MarkdownEditor/Modules/MarkdownModuleListState";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
state: MarkdownModuleListState;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type MarkdownModuleTableState from "../../MarkdownEditor/Modules/MarkdownModuleTableState";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
state: MarkdownModuleTableState;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Converts a single line / inline markdown fragment to HTML. Used by the render
|
|
3
|
+
* components to turn the inline text state (bold, italic, links, code) into HTML.
|
|
4
|
+
*/
|
|
5
|
+
export declare function markdownToHtml(markdown: string): string;
|
|
6
|
+
/**
|
|
7
|
+
* Builds a stable anchor id from a heading title, matching the ids generated by
|
|
8
|
+
* the heading render components so table-of-contents links resolve correctly.
|
|
9
|
+
*/
|
|
10
|
+
export declare function createMarkdownHeadingId(title: string): string;
|
|
11
|
+
export interface MarkdownHeading {
|
|
12
|
+
id: string;
|
|
13
|
+
title: string;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Parses a markdown string and returns the plain-text + anchor id of every heading
|
|
17
|
+
* at the given depth. The ids use the same slugify as the heading render components,
|
|
18
|
+
* so table-of-contents links resolve to the rendered anchors.
|
|
19
|
+
*/
|
|
20
|
+
export declare function extractMarkdownHeadings(markdown: string, depth?: number): MarkdownHeading[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
.markdown-editor-context-menu[data-v-6e2e4100]{z-index:1000;background:#fff;border:1px solid #e5e7eb;border-radius:.5rem;gap:.25rem;padding:.25rem;display:flex;position:fixed;box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f}.markdown-editor-context-menu-inline-item[data-v-7dc94914]{cursor:pointer;color:#374151;background:0 0;border:none;border-radius:.375rem;justify-content:center;align-items:center;min-width:2rem;min-height:2rem;padding:.5rem;font-size:.875rem;font-weight:500;transition:all .15s;display:flex}.markdown-editor-context-menu-inline-item[data-v-7dc94914]:hover{background:#f3f4f6}.markdown-editor-context-menu-inline-item.is-active[data-v-7dc94914]{color:#1e40af;background:#dbeafe}.markdown-editor-context-menu-inline-item[data-v-7dc94914]:active{transform:scale(.95)}.markdown-editor-focus-controls[data-v-ce3a9e83]{flex-direction:row;align-items:center;height:100%;display:flex}.markdown-editor-focus-controls .drag-handle[data-v-ce3a9e83]{cursor:grab;-webkit-user-select:none;user-select:none;opacity:.4;padding:0 .2rem;font-size:1rem;line-height:1}.markdown-editor-focus-controls .drag-handle[data-v-ce3a9e83]:active{cursor:grabbing}.markdown-editor-focus-controls .focus-control-btn[data-v-ce3a9e83]{cursor:pointer;opacity:.6;background:0 0;border:none;border-radius:3px;justify-content:center;align-items:center;width:1.4rem;height:1.4rem;padding:0;font-size:.75rem;line-height:1;transition:opacity .1s,background .1s;display:inline-flex}.markdown-editor-focus-controls .focus-control-btn[data-v-ce3a9e83]:hover{opacity:1;background:#00000012}.markdown-editor-context-menu-block-item[data-v-770b13bc]{cursor:pointer;color:#374151;text-align:left;white-space:nowrap;background:0 0;border:none;border-radius:.375rem;align-items:center;gap:.5rem;width:100%;padding:.625rem .875rem;font-size:.875rem;font-weight:500;transition:all .15s;display:flex}.markdown-editor-context-menu-block-item[data-v-770b13bc]:hover{background:#f3f4f6}.markdown-editor-context-menu-block-item[data-v-770b13bc]:active{transform:scale(.98)}.markdown-editor-file-context-menu-content[data-v-601706ab]{flex-direction:column;gap:.125rem;min-width:10rem;display:flex}.markdown-editor-modal-overlay[data-v-3e773d7f]{z-index:9999;background:#00000080;justify-content:center;align-items:center;padding:1rem;display:flex;position:fixed;inset:0}.markdown-editor-modal[data-v-3e773d7f]{background:#fff;border-radius:.75rem;flex-direction:column;width:100%;max-width:32rem;max-height:90vh;display:flex;box-shadow:0 20px 25px -5px #0000001a,0 10px 10px -5px #0000000a}.markdown-editor-modal-header[data-v-3e773d7f]{border-bottom:1px solid #e5e7eb;justify-content:space-between;align-items:center;padding:1.25rem 1.5rem;display:flex}.markdown-editor-modal-title[data-v-3e773d7f]{color:#111827;margin:0;font-size:1.125rem;font-weight:600}.markdown-editor-modal-close[data-v-3e773d7f]{color:#6b7280;cursor:pointer;background:0 0;border:none;border-radius:.375rem;justify-content:center;align-items:center;width:2rem;height:2rem;padding:0;font-size:1.75rem;line-height:1;transition:all .15s;display:flex}.markdown-editor-modal-close[data-v-3e773d7f]:hover{color:#111827;background:#f3f4f6}.markdown-editor-modal-body[data-v-3e773d7f]{flex:1;padding:1.5rem;overflow-y:auto}.markdown-editor-modal-footer[data-v-3e773d7f]{border-top:1px solid #e5e7eb;justify-content:flex-end;gap:.75rem;padding:1.25rem 1.5rem;display:flex}.markdown-editor-modal-button[data-v-3e773d7f]{cursor:pointer;border:none;border-radius:.5rem;padding:.625rem 1.25rem;font-size:.875rem;font-weight:500;transition:all .15s}.markdown-editor-modal-button[data-v-3e773d7f]:active{transform:scale(.98)}.markdown-editor-modal-button-secondary[data-v-3e773d7f]{color:#374151;background:#f3f4f6}.markdown-editor-modal-button-secondary[data-v-3e773d7f]:hover{background:#e5e7eb}.markdown-editor-modal-button-primary[data-v-3e773d7f]{color:#fff;background:#3b82f6}.markdown-editor-modal-button-primary[data-v-3e773d7f]:hover{background:#2563eb}.markdown-module-file[data-v-e00fd9f4]{cursor:pointer;position:relative}.markdown-module-file[data-v-e00fd9f4]:focus{outline:none}.markdown-module-file-card[data-v-e00fd9f4]{background:#f9fafb;border:1px solid #e5e7eb;border-radius:.5rem;align-items:center;gap:.75rem;padding:.75rem 1rem;transition:border-color .15s;display:flex}.markdown-module-file-card[data-v-e00fd9f4]:hover{border-color:#3b82f6}.markdown-module-file-card--error[data-v-e00fd9f4]{background:#fef2f2;border-color:#fecaca}.markdown-module-file-card--loading[data-v-e00fd9f4]{cursor:default;background:#f9fafb;border-color:#e5e7eb}.markdown-module-file-icon[data-v-e00fd9f4]{flex-shrink:0;font-size:1.5rem;line-height:1}.markdown-module-file-info[data-v-e00fd9f4]{flex-direction:column;gap:.125rem;min-width:0;display:flex}.markdown-module-file-name[data-v-e00fd9f4]{color:#111827;text-overflow:ellipsis;white-space:nowrap;font-size:.875rem;font-weight:500;text-decoration:none;overflow:hidden}.markdown-module-file-name[data-v-e00fd9f4]:hover{color:#3b82f6;text-decoration:underline}.markdown-module-file-size[data-v-e00fd9f4]{color:#6b7280;font-size:.75rem}.markdown-module-file-error-text[data-v-e00fd9f4]{color:#dc2626;font-size:.75rem}.markdown-module-file-loading-text[data-v-e00fd9f4]{color:#6b7280;font-size:.875rem}.markdown-module-file-retry-btn[data-v-e00fd9f4]{color:#dc2626;cursor:pointer;background:0 0;border:1px solid #fca5a5;border-radius:.375rem;width:fit-content;margin-top:.25rem;padding:.25rem .75rem;font-size:.75rem;font-weight:500;transition:all .15s}.markdown-module-file-retry-btn[data-v-e00fd9f4]:hover{background:#fef2f2;border-color:#f87171}.markdown-module-file-spinner[data-v-e00fd9f4]{border:2px solid #e5e7eb;border-top-color:#3b82f6;border-radius:50%;flex-shrink:0;width:1.25rem;height:1.25rem;animation:.6s linear infinite markdown-module-file-spin-e00fd9f4}@keyframes markdown-module-file-spin-e00fd9f4{to{transform:rotate(360deg)}}.markdown-module-file-form[data-v-e00fd9f4]{flex-direction:column;gap:1.25rem;display:flex}.markdown-module-file-form-field[data-v-e00fd9f4]{flex-direction:column;gap:.5rem;display:flex}.markdown-module-file-form-field label[data-v-e00fd9f4]{color:#374151;font-size:.875rem;font-weight:500}.markdown-module-file-form-field input[data-v-e00fd9f4]{color:#111827;background:#fff;border:1px solid #d1d5db;border-radius:.5rem;padding:.625rem .875rem;font-size:.875rem;transition:all .15s}.markdown-module-file-form-field input[data-v-e00fd9f4]:focus{border-color:#3b82f6;outline:none;box-shadow:0 0 0 3px #3b82f61a}.markdown-module-file-form-field input[data-v-e00fd9f4]::placeholder{color:#9ca3af}[data-v-e00fd9f4],[data-v-cf2b20ee],[data-v-6cb21ae4]{background:0 0;border:none;outline:none}.markdown-editor-image-context-menu-content[data-v-01e43c72]{flex-direction:column;gap:.125rem;min-width:10rem;display:flex}.markdown-module-image[data-v-9489f41b]{cursor:pointer;text-align:center;position:relative}.markdown-module-image img[data-v-9489f41b]{max-width:100%;height:auto}.markdown-module-image span[data-v-9489f41b]{color:#6b7280;margin-top:.25rem;font-size:.875rem;display:block}.markdown-module-image-form[data-v-9489f41b]{flex-direction:column;gap:1.25rem;display:flex}.markdown-module-image-form-field[data-v-9489f41b]{flex-direction:column;gap:.5rem;display:flex}.markdown-module-image-form-field label[data-v-9489f41b]{color:#374151;font-size:.875rem;font-weight:500}.markdown-module-image-form-field input[data-v-9489f41b]{color:#111827;background:#fff;border:1px solid #d1d5db;border-radius:.5rem;padding:.625rem .875rem;font-size:.875rem;transition:all .15s}.markdown-module-image-form-field input[data-v-9489f41b]:focus{border-color:#3b82f6;outline:none;box-shadow:0 0 0 3px #3b82f61a}.markdown-module-image-form-field input[data-v-9489f41b]::placeholder{color:#9ca3af}[data-v-9489f41b]{background:0 0;border:none;outline:none}[data-v-2f49655e] .tiptap ul{margin:0;padding-left:1.5rem}.markdown-editor-module[data-v-965b9a8c]{flex-direction:row;display:flex}.markdown-editor-module[data-v-965b9a8c] .tiptap{outline:none}.markdown-editor-module .markdown-editor-module-content[data-v-965b9a8c]{outline:none;width:100%}.markdown-editor-module .markdown-editor-module-controls[data-v-965b9a8c]{visibility:hidden;min-width:5rem;max-width:5rem}.markdown-editor-module[data-v-965b9a8c]:hover{background:#9e95950d}.markdown-editor-module:hover .markdown-editor-module-controls[data-v-965b9a8c],.markdown-editor-module.is-focused .markdown-editor-module-controls[data-v-965b9a8c]{visibility:visible}.markdown-editor-module .markdown-editor-module-content-focused[data-v-965b9a8c]{background-color:#9e95950d}.markdown-editor[data-v-e7071c84]{padding-left:6rem}.markdown-editor[data-v-e7071c84] p{margin:.5rem 0}.markdown-editor[data-v-e7071c84] strong,.markdown-editor[data-v-e7071c84] b{font-weight:700}.markdown-editor[data-v-e7071c84] em,.markdown-editor[data-v-e7071c84] i{font-style:italic}.markdown-editor[data-v-e7071c84] code{color:green;background:#7f7f7f26;border-radius:3px;padding:.1em .3em;font-family:monospace;font-size:.9em}.markdown-editor[data-v-e7071c84] h1{margin:0;font-size:2em}.markdown-editor[data-v-e7071c84] h2{margin:0;font-size:1.5em}.markdown-editor[data-v-e7071c84] h3{margin:0;font-size:1.17em}.markdown-module-file-render[data-v-c47f1152]{background:#f9fafb;border:1px solid #e5e7eb;border-radius:.5rem;align-items:center;gap:.75rem;padding:.75rem 1rem;display:flex}.markdown-module-file-render-icon[data-v-c47f1152]{flex-shrink:0;font-size:1.5rem;line-height:1}.markdown-module-file-render-info[data-v-c47f1152]{flex-direction:column;gap:.125rem;min-width:0;display:flex}.markdown-module-file-render-name[data-v-c47f1152]{color:#111827;text-overflow:ellipsis;white-space:nowrap;font-size:.875rem;font-weight:500;text-decoration:none;overflow:hidden}.markdown-module-file-render-name[data-v-c47f1152]:hover{color:#3b82f6;text-decoration:underline}.markdown-module-file-render-size[data-v-c47f1152]{color:#6b7280;font-size:.75rem}
|
|
1
|
+
.markdown-editor-context-menu[data-v-6e2e4100]{z-index:1000;background:#fff;border:1px solid #e5e7eb;border-radius:.5rem;gap:.25rem;padding:.25rem;display:flex;position:fixed;box-shadow:0 4px 6px -1px #0000001a,0 2px 4px -1px #0000000f}.markdown-editor-context-menu-inline-item[data-v-7dc94914]{cursor:pointer;color:#374151;background:0 0;border:none;border-radius:.375rem;justify-content:center;align-items:center;min-width:2rem;min-height:2rem;padding:.5rem;font-size:.875rem;font-weight:500;transition:all .15s;display:flex}.markdown-editor-context-menu-inline-item[data-v-7dc94914]:hover{background:#f3f4f6}.markdown-editor-context-menu-inline-item.is-active[data-v-7dc94914]{color:#1e40af;background:#dbeafe}.markdown-editor-context-menu-inline-item[data-v-7dc94914]:active{transform:scale(.95)}.markdown-editor-focus-controls[data-v-ce3a9e83]{flex-direction:row;align-items:center;height:100%;display:flex}.markdown-editor-focus-controls .drag-handle[data-v-ce3a9e83]{cursor:grab;-webkit-user-select:none;user-select:none;opacity:.4;padding:0 .2rem;font-size:1rem;line-height:1}.markdown-editor-focus-controls .drag-handle[data-v-ce3a9e83]:active{cursor:grabbing}.markdown-editor-focus-controls .focus-control-btn[data-v-ce3a9e83]{cursor:pointer;opacity:.6;background:0 0;border:none;border-radius:3px;justify-content:center;align-items:center;width:1.4rem;height:1.4rem;padding:0;font-size:.75rem;line-height:1;transition:opacity .1s,background .1s;display:inline-flex}.markdown-editor-focus-controls .focus-control-btn[data-v-ce3a9e83]:hover{opacity:1;background:#00000012}[data-v-22f417da] .markdown-module-blockquote{border-left:3px solid #6b7280;margin:0;padding-left:1rem;font-style:italic}[data-v-174d8464] .tiptap pre{color:#f9fafb;background:#1f2937;border-radius:.25rem;padding:.75rem 1rem;overflow-x:auto}[data-v-174d8464] .tiptap pre code{color:inherit;background:0 0;padding:0}.markdown-editor-context-menu-block-item[data-v-770b13bc]{cursor:pointer;color:#374151;text-align:left;white-space:nowrap;background:0 0;border:none;border-radius:.375rem;align-items:center;gap:.5rem;width:100%;padding:.625rem .875rem;font-size:.875rem;font-weight:500;transition:all .15s;display:flex}.markdown-editor-context-menu-block-item[data-v-770b13bc]:hover{background:#f3f4f6}.markdown-editor-context-menu-block-item[data-v-770b13bc]:active{transform:scale(.98)}.markdown-editor-file-context-menu-content[data-v-601706ab]{flex-direction:column;gap:.125rem;min-width:10rem;display:flex}.markdown-editor-modal-overlay[data-v-3e773d7f]{z-index:9999;background:#00000080;justify-content:center;align-items:center;padding:1rem;display:flex;position:fixed;inset:0}.markdown-editor-modal[data-v-3e773d7f]{background:#fff;border-radius:.75rem;flex-direction:column;width:100%;max-width:32rem;max-height:90vh;display:flex;box-shadow:0 20px 25px -5px #0000001a,0 10px 10px -5px #0000000a}.markdown-editor-modal-header[data-v-3e773d7f]{border-bottom:1px solid #e5e7eb;justify-content:space-between;align-items:center;padding:1.25rem 1.5rem;display:flex}.markdown-editor-modal-title[data-v-3e773d7f]{color:#111827;margin:0;font-size:1.125rem;font-weight:600}.markdown-editor-modal-close[data-v-3e773d7f]{color:#6b7280;cursor:pointer;background:0 0;border:none;border-radius:.375rem;justify-content:center;align-items:center;width:2rem;height:2rem;padding:0;font-size:1.75rem;line-height:1;transition:all .15s;display:flex}.markdown-editor-modal-close[data-v-3e773d7f]:hover{color:#111827;background:#f3f4f6}.markdown-editor-modal-body[data-v-3e773d7f]{flex:1;padding:1.5rem;overflow-y:auto}.markdown-editor-modal-footer[data-v-3e773d7f]{border-top:1px solid #e5e7eb;justify-content:flex-end;gap:.75rem;padding:1.25rem 1.5rem;display:flex}.markdown-editor-modal-button[data-v-3e773d7f]{cursor:pointer;border:none;border-radius:.5rem;padding:.625rem 1.25rem;font-size:.875rem;font-weight:500;transition:all .15s}.markdown-editor-modal-button[data-v-3e773d7f]:active{transform:scale(.98)}.markdown-editor-modal-button-secondary[data-v-3e773d7f]{color:#374151;background:#f3f4f6}.markdown-editor-modal-button-secondary[data-v-3e773d7f]:hover{background:#e5e7eb}.markdown-editor-modal-button-primary[data-v-3e773d7f]{color:#fff;background:#3b82f6}.markdown-editor-modal-button-primary[data-v-3e773d7f]:hover{background:#2563eb}.markdown-module-file[data-v-e00fd9f4]{cursor:pointer;position:relative}.markdown-module-file[data-v-e00fd9f4]:focus{outline:none}.markdown-module-file-card[data-v-e00fd9f4]{background:#f9fafb;border:1px solid #e5e7eb;border-radius:.5rem;align-items:center;gap:.75rem;padding:.75rem 1rem;transition:border-color .15s;display:flex}.markdown-module-file-card[data-v-e00fd9f4]:hover{border-color:#3b82f6}.markdown-module-file-card--error[data-v-e00fd9f4]{background:#fef2f2;border-color:#fecaca}.markdown-module-file-card--loading[data-v-e00fd9f4]{cursor:default;background:#f9fafb;border-color:#e5e7eb}.markdown-module-file-icon[data-v-e00fd9f4]{flex-shrink:0;font-size:1.5rem;line-height:1}.markdown-module-file-info[data-v-e00fd9f4]{flex-direction:column;gap:.125rem;min-width:0;display:flex}.markdown-module-file-name[data-v-e00fd9f4]{color:#111827;text-overflow:ellipsis;white-space:nowrap;font-size:.875rem;font-weight:500;text-decoration:none;overflow:hidden}.markdown-module-file-name[data-v-e00fd9f4]:hover{color:#3b82f6;text-decoration:underline}.markdown-module-file-size[data-v-e00fd9f4]{color:#6b7280;font-size:.75rem}.markdown-module-file-error-text[data-v-e00fd9f4]{color:#dc2626;font-size:.75rem}.markdown-module-file-loading-text[data-v-e00fd9f4]{color:#6b7280;font-size:.875rem}.markdown-module-file-retry-btn[data-v-e00fd9f4]{color:#dc2626;cursor:pointer;background:0 0;border:1px solid #fca5a5;border-radius:.375rem;width:fit-content;margin-top:.25rem;padding:.25rem .75rem;font-size:.75rem;font-weight:500;transition:all .15s}.markdown-module-file-retry-btn[data-v-e00fd9f4]:hover{background:#fef2f2;border-color:#f87171}.markdown-module-file-spinner[data-v-e00fd9f4]{border:2px solid #e5e7eb;border-top-color:#3b82f6;border-radius:50%;flex-shrink:0;width:1.25rem;height:1.25rem;animation:.6s linear infinite markdown-module-file-spin-e00fd9f4}@keyframes markdown-module-file-spin-e00fd9f4{to{transform:rotate(360deg)}}.markdown-module-file-form[data-v-e00fd9f4]{flex-direction:column;gap:1.25rem;display:flex}.markdown-module-file-form-field[data-v-e00fd9f4]{flex-direction:column;gap:.5rem;display:flex}.markdown-module-file-form-field label[data-v-e00fd9f4]{color:#374151;font-size:.875rem;font-weight:500}.markdown-module-file-form-field input[data-v-e00fd9f4]{color:#111827;background:#fff;border:1px solid #d1d5db;border-radius:.5rem;padding:.625rem .875rem;font-size:.875rem;transition:all .15s}.markdown-module-file-form-field input[data-v-e00fd9f4]:focus{border-color:#3b82f6;outline:none;box-shadow:0 0 0 3px #3b82f61a}.markdown-module-file-form-field input[data-v-e00fd9f4]::placeholder{color:#9ca3af}[data-v-e00fd9f4],[data-v-cf2b20ee],[data-v-6cb21ae4]{background:0 0;border:none;outline:none}.markdown-module-hr[data-v-3990593e]{outline:none;padding:.5rem 0}.markdown-module-hr hr[data-v-3990593e]{border:none;border-top:1px solid #d1d5db;margin:0}.markdown-editor-image-context-menu-content[data-v-01e43c72]{flex-direction:column;gap:.125rem;min-width:10rem;display:flex}.markdown-module-image[data-v-9489f41b]{cursor:pointer;text-align:center;position:relative}.markdown-module-image img[data-v-9489f41b]{max-width:100%;height:auto}.markdown-module-image span[data-v-9489f41b]{color:#6b7280;margin-top:.25rem;font-size:.875rem;display:block}.markdown-module-image-form[data-v-9489f41b]{flex-direction:column;gap:1.25rem;display:flex}.markdown-module-image-form-field[data-v-9489f41b]{flex-direction:column;gap:.5rem;display:flex}.markdown-module-image-form-field label[data-v-9489f41b]{color:#374151;font-size:.875rem;font-weight:500}.markdown-module-image-form-field input[data-v-9489f41b]{color:#111827;background:#fff;border:1px solid #d1d5db;border-radius:.5rem;padding:.625rem .875rem;font-size:.875rem;transition:all .15s}.markdown-module-image-form-field input[data-v-9489f41b]:focus{border-color:#3b82f6;outline:none;box-shadow:0 0 0 3px #3b82f61a}.markdown-module-image-form-field input[data-v-9489f41b]::placeholder{color:#9ca3af}[data-v-9489f41b]{background:0 0;border:none;outline:none}[data-v-2f49655e] .tiptap ul,[data-v-021b091e] .tiptap ol{margin:0;padding-left:1.5rem}.markdown-module-table[data-v-fdc337bd]{outline:none;overflow-x:auto}.markdown-module-table table[data-v-fdc337bd]{border-collapse:collapse;width:100%}.markdown-module-table th[data-v-fdc337bd],.markdown-module-table td[data-v-fdc337bd]{border:1px solid #d1d5db;padding:.25rem}.markdown-module-table input[data-v-fdc337bd]{box-sizing:border-box;background:0 0;border:none;width:100%;padding:.25rem .5rem}.markdown-module-table input[data-v-fdc337bd]:focus{outline:1px solid #3b82f6}.markdown-editor-module[data-v-965b9a8c]{flex-direction:row;display:flex}.markdown-editor-module[data-v-965b9a8c] .tiptap{outline:none}.markdown-editor-module .markdown-editor-module-content[data-v-965b9a8c]{outline:none;width:100%}.markdown-editor-module .markdown-editor-module-controls[data-v-965b9a8c]{visibility:hidden;min-width:5rem;max-width:5rem}.markdown-editor-module[data-v-965b9a8c]:hover{background:#9e95950d}.markdown-editor-module:hover .markdown-editor-module-controls[data-v-965b9a8c],.markdown-editor-module.is-focused .markdown-editor-module-controls[data-v-965b9a8c]{visibility:visible}.markdown-editor-module .markdown-editor-module-content-focused[data-v-965b9a8c]{background-color:#9e95950d}.markdown-editor[data-v-0698dd4a] p{margin:.5rem 0}.markdown-editor[data-v-0698dd4a] strong,.markdown-editor[data-v-0698dd4a] b{font-weight:700}.markdown-editor[data-v-0698dd4a] em,.markdown-editor[data-v-0698dd4a] i{font-style:italic}.markdown-editor[data-v-0698dd4a] code{color:green;background:#7f7f7f26;border-radius:3px;padding:.1em .3em;font-family:monospace;font-size:.9em}.markdown-editor[data-v-0698dd4a] h1{margin:0;font-size:2em}.markdown-editor[data-v-0698dd4a] h2{margin:0;font-size:1.5em}.markdown-editor[data-v-0698dd4a] h3{margin:0;font-size:1.17em}.markdown-module-file-render[data-v-c47f1152]{background:#f9fafb;border:1px solid #e5e7eb;border-radius:.5rem;align-items:center;gap:.75rem;padding:.75rem 1rem;display:flex}.markdown-module-file-render-icon[data-v-c47f1152]{flex-shrink:0;font-size:1.5rem;line-height:1}.markdown-module-file-render-info[data-v-c47f1152]{flex-direction:column;gap:.125rem;min-width:0;display:flex}.markdown-module-file-render-name[data-v-c47f1152]{color:#111827;text-overflow:ellipsis;white-space:nowrap;font-size:.875rem;font-weight:500;text-decoration:none;overflow:hidden}.markdown-module-file-render-name[data-v-c47f1152]:hover{color:#3b82f6;text-decoration:underline}.markdown-module-file-render-size[data-v-c47f1152]{color:#6b7280;font-size:.75rem}
|
|
2
2
|
/*$vite$:1*/
|