@fileverse-dev/ddoc 4.1.11 → 4.1.12

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/dist/index.d.ts CHANGED
@@ -5,6 +5,8 @@ export { DdocExportModal } from './package/components/export-modal';
5
5
  export { useHeadlessEditor } from './package/hooks/use-headless-editor';
6
6
  export { useExportHeadlessEditorContent } from './package/hooks/use-export-headless-editor-content';
7
7
  export { mergeTabAwareYjsUpdates } from './package/components/tabs/utils/tab-utils';
8
+ export { validateCustomCss, sanitizeCustomCss, } from './package/utils/sanitize-css';
9
+ export type { CssDiagnostic, CssValidationResult, } from './package/utils/sanitize-css';
8
10
  export { buildVersionDiffSnapshot } from './package/components/tabs/utils/version-diff-snapshot';
9
11
  export type { DdocExportModalProps, ExportFormatOption, ExportTabOption, } from './package/components/export-modal';
10
12
  export type { VersionTabSnapshot } from './package/components/tabs/utils/version-diff-snapshot';
package/dist/index.es.js CHANGED
@@ -1,12 +1,14 @@
1
- import { D as e, a as o, E as d, P as t, d as r, h as i, m as n, c as E, u as l } from "./index-BhAjJb8w.mjs";
1
+ import { D as e, a as o, E as t, P as d, e as r, h as i, m as n, d as E, c as l, u, v as C } from "./index-wRSSphoI.mjs";
2
2
  export {
3
3
  e as DdocEditor,
4
4
  o as DdocExportModal,
5
- d as Editor,
6
- t as PreviewDdocEditor,
5
+ t as Editor,
6
+ d as PreviewDdocEditor,
7
7
  r as buildVersionDiffSnapshot,
8
8
  i as handleContentPrint,
9
9
  n as mergeTabAwareYjsUpdates,
10
- E as useExportHeadlessEditorContent,
11
- l as useHeadlessEditor
10
+ E as sanitizeCustomCss,
11
+ l as useExportHeadlessEditorContent,
12
+ u as useHeadlessEditor,
13
+ C as validateCustomCss
12
14
  };
@@ -1,9 +1,9 @@
1
1
  var Vr = Object.defineProperty;
2
2
  var Wr = (t, e, O) => e in t ? Vr(t, e, { enumerable: !0, configurable: !0, writable: !0, value: O }) : t[e] = O;
3
3
  var gt = (t, e, O) => Wr(t, typeof e != "symbol" ? e + "" : e, O);
4
- import { j as Cr } from "./index-BhAjJb8w.mjs";
4
+ import { j as Cr } from "./index-wRSSphoI.mjs";
5
5
  import { useRef as pe, useEffect as St } from "react";
6
- import { s as y, A as pO, T as dO, a as Gr, S as et, b as Lr, P as fO, E as j, i as QO, c as _, D as le, k as tt, F as Ar, M as Pt, W as Er, R as Ur, d as mO, N as oe, e as V, f as Mr, g as Ot, h as ce, p as $O, j as Y, t as h, l as Ir, I as rt, L as at, m as ye, n as ue, o as Qe, q as gO, r as te, u as SO, v as Br, w as Nr, x as PO, y as kO, z as Dr, B as Fr, C as Kr, G as Oe, H as ZO, J as Jr, K as kt, O as Hr, Q as ea, U as ta, V as Oa, X as ra, Y as aa, Z as ia, _ as sa, $ as na, a0 as la, a1 as oa, a2 as ca } from "./index-rpz9D-nF.mjs";
6
+ import { s as y, A as pO, T as dO, a as Gr, S as et, b as Lr, P as fO, E as j, i as QO, c as _, D as le, k as tt, F as Ar, M as Pt, W as Er, R as Ur, d as mO, N as oe, e as V, f as Mr, g as Ot, h as ce, p as $O, j as Y, t as h, l as Ir, I as rt, L as at, m as ye, n as ue, o as Qe, q as gO, r as te, u as SO, v as Br, w as Nr, x as PO, y as kO, z as Dr, B as Fr, C as Kr, G as Oe, H as ZO, J as Jr, K as kt, O as Hr, Q as ea, U as ta, V as Oa, X as ra, Y as aa, Z as ia, _ as sa, $ as na, a0 as la, a1 as oa, a2 as ca } from "./index-C4IzZi0k.mjs";
7
7
  class ua {
8
8
  /**
9
9
  Create a new completion context. (Mostly useful for testing
@@ -0,0 +1,13 @@
1
+ interface SplitViewCssAccordionProps {
2
+ /** The document's custom CSS (raw author selectors). */
3
+ customCSS?: string;
4
+ }
5
+ /**
6
+ * Split View LEFT pane: a collapsible, READ-ONLY view of the document's custom
7
+ * CSS, shown above the markdown source. Custom CSS is edited in the styling
8
+ * palette (the single source of truth), not in the markdown pane — this is a
9
+ * transparency affordance so the author can see what CSS is applied while in
10
+ * markdown mode. Renders nothing when there is no custom CSS.
11
+ */
12
+ export declare const SplitViewCssAccordion: ({ customCSS, }: SplitViewCssAccordionProps) => import("react/jsx-runtime").JSX.Element | null;
13
+ export {};
@@ -6,6 +6,8 @@ interface SplitViewMarkdownPaneProps {
6
6
  /** Same uploader the editor uses — for the markdown toolbar's Image button. */
7
7
  ipfsImageUploadFn?: (file: File) => Promise<IpfsImageUploadResponse>;
8
8
  onError?: (error: string) => void;
9
+ /** Document custom CSS — shown read-only in a collapsible accordion. */
10
+ customCSS?: string;
9
11
  /** Sizing for the resizable split (flex-grow set by the draggable splitter). */
10
12
  style?: React.CSSProperties;
11
13
  }
@@ -15,5 +17,5 @@ interface SplitViewMarkdownPaneProps {
15
17
  * real ddoc editor itself — see ddoc-editor.tsx, which keeps that editor mounted
16
18
  * in place (never a second <EditorContent>) so its React node views survive.
17
19
  */
18
- export declare const SplitViewMarkdownPane: ({ markdown, onMarkdownChange, ipfsImageUploadFn, onError, style, }: SplitViewMarkdownPaneProps) => import("react/jsx-runtime").JSX.Element;
20
+ export declare const SplitViewMarkdownPane: ({ markdown, onMarkdownChange, ipfsImageUploadFn, onError, customCSS, style, }: SplitViewMarkdownPaneProps) => import("react/jsx-runtime").JSX.Element;
19
21
  export {};
@@ -7,6 +7,11 @@ export declare const turndownService: TurndownService;
7
7
  export declare const setMarkdownInlineStyles: (enabled: boolean) => void;
8
8
  export declare const setResolveColorVars: (enabled: boolean) => void;
9
9
  declare module '@tiptap/core' {
10
+ interface Storage {
11
+ markdownPasteHandler: {
12
+ customCSS: string;
13
+ };
14
+ }
10
15
  interface Commands {
11
16
  uploadMarkdownFile: {
12
17
  uploadMarkdownFile: (ipfsImageUploadFn?: (file: File) => Promise<IpfsImageUploadResponse>, onError?: (error: string) => void) => any;
@@ -103,6 +103,17 @@ export interface DocumentStyling {
103
103
  * @example "portrait" | "landscape"
104
104
  */
105
105
  orientation?: 'portrait' | 'landscape';
106
+ /**
107
+ * Custom CSS
108
+ * @description The author's escape hatch for styling the document beyond the
109
+ * structured options above. Write BARE selectors (`h1 { … }`, `p { … }`,
110
+ * `blockquote { … }`) — they are auto-scoped to the document content, so rules
111
+ * can't leak into the toolbar or the host app. Bare top-level declarations
112
+ * (e.g. `background`, `font-family`) style the document surface itself.
113
+ * Applies live in the editor, in preview, and in exports (Markdown/HTML).
114
+ * @example "h1 { letter-spacing: -0.02em } p { line-height: 1.8 }"
115
+ */
116
+ customCSS?: string;
106
117
  }
107
118
  export interface DdocProps extends CommentAccountProps {
108
119
  /**
@@ -0,0 +1,45 @@
1
+ /**
2
+ * Sanitize + scope + validate author-supplied custom CSS before it is injected
3
+ * into the document.
4
+ *
5
+ * Authors write **normal, full-page CSS** — `body { … }`, `html body h1 { … }`,
6
+ * `h1 { … }`, `* { … }` — the way they'd style any web page. We transparently
7
+ * scope every rule to the document so it can't leak into the app, AND we map the
8
+ * page-root selectors (`html`, `body`, `:root`) onto the document root so that
9
+ * `body { background: … }` styles the doc surface and `html body h1 { … }`
10
+ * styles the doc's headings. No `.ProseMirror` prefix, no learning curve.
11
+ *
12
+ * Because the raw string reaches VIEWERS of a published doc, it is untrusted.
13
+ * Every selector is force-scoped (so a `}` breakout is neutralised — the escaped
14
+ * rule is simply scoped too), and dangerous declarations are stripped:
15
+ * - external resource loads / exfiltration: `url(…)`, `@import`;
16
+ * - clickjacking / UI redressing: `position: fixed | sticky`;
17
+ * - legacy script vectors: `expression()`, `-moz-binding`, `behavior:`.
18
+ *
19
+ * We parse with the browser's own CSS engine (no dependency), rewrite each
20
+ * selector, strip dangerous declarations at every nesting level, and let the
21
+ * engine re-serialise — so the output is always a valid, balanced stylesheet.
22
+ *
23
+ * The sanitizer knows exactly what it removed, so it returns non-blocking
24
+ * `diagnostics`; the editing UI surfaces them (CSS is forgiving — we warn,
25
+ * never block).
26
+ */
27
+ export interface CssDiagnostic {
28
+ level: 'warning' | 'error';
29
+ message: string;
30
+ }
31
+ export interface CssValidationResult {
32
+ /** Sanitized, scoped CSS, safe to inject. '' when nothing survives. */
33
+ css: string;
34
+ /** What was stripped/ignored, deduped. Empty when the CSS was fully clean. */
35
+ diagnostics: CssDiagnostic[];
36
+ }
37
+ /**
38
+ * Sanitize + scope AND report. Use this from the editing UI for diagnostics.
39
+ */
40
+ export declare const validateCustomCss: (raw: string | undefined | null, scope?: string) => CssValidationResult;
41
+ /**
42
+ * Sanitized + scoped CSS only — used at injection/export sinks that just need
43
+ * the safe string. Diagnostics are surfaced separately via validateCustomCss.
44
+ */
45
+ export declare const sanitizeCustomCss: (raw: string | undefined | null, scope?: string) => string;
@@ -1,7 +1,7 @@
1
- import { j as d } from "./index-BhAjJb8w.mjs";
1
+ import { j as d } from "./index-wRSSphoI.mjs";
2
2
  import { useRef as I, useState as N, useEffect as D } from "react";
3
3
  import { DynamicDropdown as E, Tooltip as R, IconButton as O } from "@fileverse/ui";
4
- import { a3 as A, a4 as P, c as y } from "./index-rpz9D-nF.mjs";
4
+ import { a3 as A, a4 as P, c as y } from "./index-C4IzZi0k.mjs";
5
5
  const p = (e, t, o = t) => {
6
6
  const { state: s } = e, l = s.changeByRange((n) => {
7
7
  const u = s.sliceDoc(n.from, n.to), r = s.sliceDoc(