@scrider/formatter 1.10.1 → 1.10.4
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.cjs +142 -76
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +142 -80
- package/dist/index.d.ts +142 -80
- package/dist/index.js +138 -76
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,13 +2,55 @@ import { AttributeMap, Op, Delta, InsertOp } from '@scrider/delta';
|
|
|
2
2
|
export * from '@scrider/delta';
|
|
3
3
|
export { InsertOp as ContentOp } from '@scrider/delta';
|
|
4
4
|
|
|
5
|
+
/**
|
|
6
|
+
* Simple Table HTML presentation options for deltaToHtml (clipboard, export).
|
|
7
|
+
* Structural data stays in Delta (table-row, table-col-align); this only affects inline styles.
|
|
8
|
+
*/
|
|
9
|
+
/** Column/cell horizontal alignment (GFM subset). */
|
|
10
|
+
type TableCellAlign = 'left' | 'center' | 'right';
|
|
11
|
+
/** Optional styling when serializing Simple Tables to HTML. */
|
|
12
|
+
interface TablePresentation {
|
|
13
|
+
/** Full 1px border on all cell sides. When true, `line` is ignored. */
|
|
14
|
+
grid?: boolean;
|
|
15
|
+
/** Bottom border only (DeepSeek / ChatGPT). Used when `grid` is not true. */
|
|
16
|
+
line?: boolean;
|
|
17
|
+
/** Border color as explicit hex (e.g. `#e7e7e7`). */
|
|
18
|
+
borderColor?: string;
|
|
19
|
+
/** Background on header cells (`th`). */
|
|
20
|
+
headerShade?: boolean;
|
|
21
|
+
/** Background on even table rows in the body (see `isZebraBodyRow`). */
|
|
22
|
+
zebraRows?: boolean;
|
|
23
|
+
/** `font-weight: bold` on `th`. */
|
|
24
|
+
headerBold?: boolean;
|
|
25
|
+
/** `text-align: center` on `th` (GitHub-style header). */
|
|
26
|
+
headerCenter?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Alignment for cells without `table-col-align` in Delta. Never overrides GFM column align.
|
|
29
|
+
* @default 'left'
|
|
30
|
+
*/
|
|
31
|
+
defaultCellAlign?: TableCellAlign;
|
|
32
|
+
}
|
|
33
|
+
interface ResolvedTablePresentation {
|
|
34
|
+
grid: boolean;
|
|
35
|
+
line: boolean;
|
|
36
|
+
borderColor: string;
|
|
37
|
+
headerShade: boolean;
|
|
38
|
+
zebraRows: boolean;
|
|
39
|
+
headerBold: boolean;
|
|
40
|
+
headerCenter: boolean;
|
|
41
|
+
defaultCellAlign: TableCellAlign;
|
|
42
|
+
}
|
|
43
|
+
declare function resolveTablePresentation(presentation?: TablePresentation): ResolvedTablePresentation;
|
|
44
|
+
/** Match CSS `tr:nth-child(even) td` when header rows precede body in `<table>`. */
|
|
45
|
+
declare function isZebraBodyRow(headerRowCount: number, bodyRowIndex: number): boolean;
|
|
46
|
+
|
|
5
47
|
/**
|
|
6
48
|
* Document-level metadata (Scrider format extension).
|
|
7
49
|
*
|
|
8
50
|
* Concrete schema for the opaque `scrider-metadata` sibling field defined in
|
|
9
51
|
* `@scrider/delta` (`ScriderDocument`). It carries document-wide defaults ONCE
|
|
10
|
-
* (line spacing, paragraph spacing, indent, heading policy, fonts
|
|
11
|
-
* duplicating them as block attributes on every `\n`.
|
|
52
|
+
* (line spacing, paragraph spacing, indent, heading policy, fonts, table
|
|
53
|
+
* presentation) instead of duplicating them as block attributes on every `\n`.
|
|
12
54
|
*
|
|
13
55
|
* Layering:
|
|
14
56
|
* - `@scrider/delta` treats the value as opaque `Record<string, unknown>` — it
|
|
@@ -18,11 +60,15 @@ export { InsertOp as ContentOp } from '@scrider/delta';
|
|
|
18
60
|
* export projection).
|
|
19
61
|
*
|
|
20
62
|
* All fields are optional and additive: extending the interface never changes the
|
|
21
|
-
* op-stream and is backward compatible.
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
63
|
+
* op-stream and is backward compatible.
|
|
64
|
+
*
|
|
65
|
+
* Projection:
|
|
66
|
+
* - Spacing / indent → {@link documentMetadataToPresentation} (paragraph CSS).
|
|
67
|
+
* - Heading policy → {@link resolveHeadingPolicy} / heading block styles on `h1`–`h6`.
|
|
68
|
+
* - `tablePresentation` → same shape as `DeltaToHtmlOptions.tablePresentation`
|
|
69
|
+
* (used when the explicit option is omitted).
|
|
25
70
|
*/
|
|
71
|
+
|
|
26
72
|
interface ScriderDocumentMetadata {
|
|
27
73
|
/** Line spacing multiplier, e.g. `1.5`. */
|
|
28
74
|
lineSpacing?: number;
|
|
@@ -34,16 +80,35 @@ interface ScriderDocumentMetadata {
|
|
|
34
80
|
textIndentCm?: number;
|
|
35
81
|
/** Extra left indent in cm on top-level `<ul>`/`<ol>` (shifts marker + text). */
|
|
36
82
|
listBlockIndentCm?: number;
|
|
37
|
-
/** Document heading horizontal alignment policy. */
|
|
83
|
+
/** Document heading horizontal alignment policy. Presence = policy on. */
|
|
38
84
|
headingAlign?: 'left' | 'center' | 'right';
|
|
39
|
-
/** Document heading bold policy. */
|
|
85
|
+
/** Document heading bold policy. `true` = force bold on `h1`–`h6`. */
|
|
40
86
|
headingBold?: boolean;
|
|
41
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* Named heading size-grid preset id (`scrider` | `google` | `word` | `browser` | `githubEm`).
|
|
89
|
+
* Ignored when {@link headingAuto} is true.
|
|
90
|
+
*/
|
|
42
91
|
headingSizeGridPreset?: string;
|
|
92
|
+
/**
|
|
93
|
+
* When true, headings use browser/CSS natural size (no size-grid projection).
|
|
94
|
+
* Mutually exclusive with {@link headingSizeGridPreset} in Settings UI.
|
|
95
|
+
*/
|
|
96
|
+
headingAuto?: boolean;
|
|
97
|
+
/**
|
|
98
|
+
* Heading decoration preset (`none` | `scrider` | `github`).
|
|
99
|
+
* Editor: `data-scrider-heading-decoration`. Export: PDF/HTML vertical rhythm + rules.
|
|
100
|
+
*/
|
|
101
|
+
headingDecoration?: 'none' | 'scrider' | 'github';
|
|
43
102
|
/** Default document font family (bare family name, e.g. `Georgia`). */
|
|
44
103
|
defaultFont?: string;
|
|
45
104
|
/** Default document font size as a CSS length, e.g. `12pt`. */
|
|
46
105
|
defaultFontSize?: string;
|
|
106
|
+
/**
|
|
107
|
+
* Simple / view table chrome (borders, header shade, zebra). Same shape as
|
|
108
|
+
* `DeltaToHtmlOptions.tablePresentation`. Persisted with the document so export
|
|
109
|
+
* matches Settings without a separate channel.
|
|
110
|
+
*/
|
|
111
|
+
tablePresentation?: TablePresentation;
|
|
47
112
|
}
|
|
48
113
|
|
|
49
114
|
/**
|
|
@@ -201,11 +266,21 @@ interface EmbedIsolationOptions {
|
|
|
201
266
|
/** Add `allow="…; cross-origin-isolated"` on codeWidget iframes. @default false */
|
|
202
267
|
crossOriginIsolated?: boolean;
|
|
203
268
|
}
|
|
269
|
+
/**
|
|
270
|
+
* Host-provided share→embed URL transform for `{ codeWidget }` (arch-set1 D2).
|
|
271
|
+
* When omitted, the stored URL is used as-is (passthrough).
|
|
272
|
+
*/
|
|
273
|
+
type CodeWidgetEmbedUrlFn = (url: string) => string;
|
|
204
274
|
/**
|
|
205
275
|
* Optional context passed to Format.render() during conversion.
|
|
206
276
|
*/
|
|
207
277
|
interface FormatRenderContext {
|
|
208
278
|
embed?: EmbedIsolationOptions;
|
|
279
|
+
/**
|
|
280
|
+
* Optional share→embed URL transform for codeWidget iframes.
|
|
281
|
+
* Integration policy lives in the host (editor/demo), not the formatter.
|
|
282
|
+
*/
|
|
283
|
+
codeWidgetEmbedUrl?: CodeWidgetEmbedUrlFn;
|
|
209
284
|
}
|
|
210
285
|
/**
|
|
211
286
|
* Result returned by Format.match() when an HTML element is recognized.
|
|
@@ -1122,9 +1197,9 @@ declare const blockFormat: Format<Record<string, unknown>>;
|
|
|
1122
1197
|
* embeds can boot SharedArrayBuffer when the host is cross-origin-isolated.
|
|
1123
1198
|
* `credentialless` keeps the frame loadable under COEP on such a host.
|
|
1124
1199
|
*
|
|
1125
|
-
*
|
|
1126
|
-
*
|
|
1127
|
-
*
|
|
1200
|
+
* Share→embed URL rules are **not** in the formatter (arch-set1 D2). Inject
|
|
1201
|
+
* `deltaToHtml({ codeWidgetEmbedUrl })` / `FormatRenderContext.codeWidgetEmbedUrl`
|
|
1202
|
+
* from the host; default is passthrough of the stored URL.
|
|
1128
1203
|
*/
|
|
1129
1204
|
declare const codeWidgetFormat: Format<string>;
|
|
1130
1205
|
|
|
@@ -1504,13 +1579,12 @@ interface ResolvedDocumentPresentation {
|
|
|
1504
1579
|
declare function resolveDocumentPresentation(presentation?: DocumentPresentation): ResolvedDocumentPresentation | undefined;
|
|
1505
1580
|
/**
|
|
1506
1581
|
* Project {@link ScriderDocumentMetadata} onto an HTML {@link DocumentPresentation}
|
|
1507
|
-
* (export / clipboard inline CSS).
|
|
1582
|
+
* (export / clipboard inline CSS for paragraphs/lists).
|
|
1508
1583
|
*
|
|
1509
|
-
*
|
|
1510
|
-
*
|
|
1511
|
-
*
|
|
1512
|
-
*
|
|
1513
|
-
* can fall back cleanly.
|
|
1584
|
+
* Maps line/paragraph spacing and indent only. Heading policy is projected
|
|
1585
|
+
* separately via {@link resolveHeadingPolicy} / {@link headingPolicyStyleParts}
|
|
1586
|
+
* onto `h1`–`h6`. `tablePresentation` is read from metadata in `deltaToHtml`
|
|
1587
|
+
* when the explicit option is omitted. Returns `undefined` when nothing maps.
|
|
1514
1588
|
*/
|
|
1515
1589
|
declare function documentMetadataToPresentation(metadata: ScriderDocumentMetadata | undefined): DocumentPresentation | undefined;
|
|
1516
1590
|
/**
|
|
@@ -1532,46 +1606,32 @@ declare function documentPresentationStyleParts(tag: string, resolved: ResolvedD
|
|
|
1532
1606
|
declare function blockPresentationStyleParts(tag: string, blockAttributes: AttributeMap | undefined, resolved: ResolvedDocumentPresentation | undefined): string[];
|
|
1533
1607
|
|
|
1534
1608
|
/**
|
|
1535
|
-
*
|
|
1536
|
-
*
|
|
1609
|
+
* Document-level heading policy projected to export HTML (`h1`–`h6` inline CSS).
|
|
1610
|
+
*
|
|
1611
|
+
* Editor applies the same policy via CSS vars (`--scrider-heading-*`, `--scrider-hN-size`).
|
|
1612
|
+
* Size maps mirror `editor-core` `HEADER_SIZE_PRESETS` — keep in sync.
|
|
1537
1613
|
*/
|
|
1538
|
-
|
|
1539
|
-
type
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
/** Background on even table rows in the body (see `isZebraBodyRow`). */
|
|
1551
|
-
zebraRows?: boolean;
|
|
1552
|
-
/** `font-weight: bold` on `th`. */
|
|
1553
|
-
headerBold?: boolean;
|
|
1554
|
-
/** `text-align: center` on `th` (GitHub-style header). */
|
|
1555
|
-
headerCenter?: boolean;
|
|
1556
|
-
/**
|
|
1557
|
-
* Alignment for cells without `table-col-align` in Delta. Never overrides GFM column align.
|
|
1558
|
-
* @default 'left'
|
|
1559
|
-
*/
|
|
1560
|
-
defaultCellAlign?: TableCellAlign;
|
|
1561
|
-
}
|
|
1562
|
-
interface ResolvedTablePresentation {
|
|
1563
|
-
grid: boolean;
|
|
1564
|
-
line: boolean;
|
|
1565
|
-
borderColor: string;
|
|
1566
|
-
headerShade: boolean;
|
|
1567
|
-
zebraRows: boolean;
|
|
1568
|
-
headerBold: boolean;
|
|
1569
|
-
headerCenter: boolean;
|
|
1570
|
-
defaultCellAlign: TableCellAlign;
|
|
1614
|
+
|
|
1615
|
+
type HeaderLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
1616
|
+
type HeaderSizeMap = Readonly<Record<HeaderLevel, string>>;
|
|
1617
|
+
type HeaderSizePresetName = 'scrider' | 'google' | 'word' | 'browser' | 'githubEm';
|
|
1618
|
+
/** Keep in sync with `@scrider/editor-core` `HEADER_SIZE_PRESETS`. */
|
|
1619
|
+
declare const HEADER_SIZE_PRESETS: Readonly<Record<HeaderSizePresetName, HeaderSizeMap>>;
|
|
1620
|
+
interface ResolvedHeadingPolicy {
|
|
1621
|
+
align: 'left' | 'center' | 'right' | undefined;
|
|
1622
|
+
bold: boolean;
|
|
1623
|
+
/** When set and `auto` is false, emit font-size on `hN` when Delta has no inline size. */
|
|
1624
|
+
sizePreset: HeaderSizePresetName | undefined;
|
|
1625
|
+
auto: boolean;
|
|
1571
1626
|
}
|
|
1572
|
-
declare function
|
|
1573
|
-
/**
|
|
1574
|
-
|
|
1627
|
+
declare function resolveHeadingPolicy(metadata: ScriderDocumentMetadata | undefined): ResolvedHeadingPolicy | undefined;
|
|
1628
|
+
/**
|
|
1629
|
+
* Inline styles for a heading block from document metadata.
|
|
1630
|
+
* Baked Delta attrs win: `align` on `\n` skips metadata align; presence of any
|
|
1631
|
+
* text with explicit `size` is not detectable at block level — size from preset
|
|
1632
|
+
* is always emitted when policy is on (matches editor CSS vars on `hN`).
|
|
1633
|
+
*/
|
|
1634
|
+
declare function headingPolicyStyleParts(tag: string, blockAttributes: AttributeMap | undefined, policy: ResolvedHeadingPolicy | undefined): string[];
|
|
1575
1635
|
|
|
1576
1636
|
/**
|
|
1577
1637
|
* Delta → HTML Conversion
|
|
@@ -1645,10 +1705,12 @@ interface DeltaToHtmlOptions {
|
|
|
1645
1705
|
/**
|
|
1646
1706
|
* Document-level metadata (Scrider format extension, `scrider-metadata`).
|
|
1647
1707
|
*
|
|
1648
|
-
* When {@link documentPresentation} is not provided,
|
|
1649
|
-
*
|
|
1650
|
-
* `
|
|
1651
|
-
*
|
|
1708
|
+
* When {@link documentPresentation} is not provided, spacing/indent fields are
|
|
1709
|
+
* projected via `documentMetadataToPresentation`. Heading policy
|
|
1710
|
+
* (`headingAlign` / `headingBold` / `headingSizeGridPreset` / `headingAuto`)
|
|
1711
|
+
* is projected onto `h1`–`h6`. When {@link tablePresentation} is omitted,
|
|
1712
|
+
* `metadata.tablePresentation` is used. An explicit `documentPresentation` /
|
|
1713
|
+
* `tablePresentation` always takes precedence. Does not change Delta.
|
|
1652
1714
|
*/
|
|
1653
1715
|
documentMetadata?: ScriderDocumentMetadata;
|
|
1654
1716
|
/**
|
|
@@ -1657,6 +1719,12 @@ interface DeltaToHtmlOptions {
|
|
|
1657
1719
|
* Enable when the host page is cross-origin-isolated (COOP + COEP).
|
|
1658
1720
|
*/
|
|
1659
1721
|
embed?: EmbedIsolationOptions;
|
|
1722
|
+
/**
|
|
1723
|
+
* Share→embed URL transform for `{ codeWidget }` iframes (arch-set1 D2).
|
|
1724
|
+
* Default: passthrough (stored URL unchanged). Provider rules belong in the
|
|
1725
|
+
* host — inject e.g. `@scrider/editor-react`'s `toCodeWidgetEmbedUrl`.
|
|
1726
|
+
*/
|
|
1727
|
+
codeWidgetEmbedUrl?: CodeWidgetEmbedUrlFn;
|
|
1660
1728
|
}
|
|
1661
1729
|
/**
|
|
1662
1730
|
* Convert a Delta to an HTML string
|
|
@@ -1795,25 +1863,14 @@ declare function escapeHtml(text: string): string;
|
|
|
1795
1863
|
*/
|
|
1796
1864
|
declare function unescapeHtml(text: string): string;
|
|
1797
1865
|
/**
|
|
1798
|
-
*
|
|
1799
|
-
*
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
*
|
|
1804
|
-
*
|
|
1805
|
-
*
|
|
1806
|
-
* | stackblitz.com/github/{u}/{r} | …?embed=1
|
|
1807
|
-
* CodeSandbox | codesandbox.io/s/{id} | codesandbox.io/embed/{id}
|
|
1808
|
-
* Replit | replit.com/@{u}/{repl} | …?embed=true
|
|
1809
|
-
* CodePen | codepen.io/{u}/pen/{id} | codepen.io/{u}/embed/{id}
|
|
1810
|
-
* JSFiddle | jsfiddle.net/{u}/{id}/ | jsfiddle.net/{u}/{id}/embedded/
|
|
1811
|
-
* Trinket | trinket.io/{lang}/{id} | trinket.io/embed/{lang}/{id}
|
|
1812
|
-
* OneCompiler | onecompiler.com/{lang}/{id} | onecompiler.com/embed/{lang}/{id}
|
|
1813
|
-
*
|
|
1814
|
-
* Unknown hosts are returned unchanged (the marker `data-code-widget` still
|
|
1815
|
-
* makes them render as an iframe; auto-detection of bare URLs lives in the
|
|
1816
|
-
* editor layer).
|
|
1866
|
+
* Resolve codeWidget iframe `src` (arch-set1 D2).
|
|
1867
|
+
* Uses the host-injected transform when present; otherwise passthrough.
|
|
1868
|
+
*/
|
|
1869
|
+
declare function resolveCodeWidgetEmbedSrc(url: string, context?: FormatRenderContext): string;
|
|
1870
|
+
/**
|
|
1871
|
+
* @deprecated Since 1.10.4 — identity/passthrough only. Provider share→embed
|
|
1872
|
+
* rules live in the host (`deltaToHtml({ codeWidgetEmbedUrl })` / editor-react
|
|
1873
|
+
* `toCodeWidgetEmbedUrl`). Kept as a stable export name for old imports.
|
|
1817
1874
|
*/
|
|
1818
1875
|
declare function toCodeWidgetEmbedUrl(url: string): string;
|
|
1819
1876
|
|
|
@@ -1942,6 +1999,11 @@ interface DeltaToMarkdownOptions {
|
|
|
1942
1999
|
* `render()` is used as HTML fallback in Markdown.
|
|
1943
2000
|
*/
|
|
1944
2001
|
registry?: Registry;
|
|
2002
|
+
/**
|
|
2003
|
+
* Share→embed URL transform for attributed `{ codeWidget }` HTML fallback
|
|
2004
|
+
* (arch-set1 D2). Default: passthrough.
|
|
2005
|
+
*/
|
|
2006
|
+
codeWidgetEmbedUrl?: CodeWidgetEmbedUrlFn;
|
|
1945
2007
|
/**
|
|
1946
2008
|
* Rendering style for `{ softBreak: true }` embeds (Phase 7 Part 0).
|
|
1947
2009
|
*
|
|
@@ -2204,4 +2266,4 @@ declare function collectAdjacentTableLines<T extends {
|
|
|
2204
2266
|
*/
|
|
2205
2267
|
declare function extractTableRegion(ops: readonly Op[], hintOpIdx: number): TableRegion | null;
|
|
2206
2268
|
|
|
2207
|
-
export { ALERT_TYPES, type AlertBlockData, type AlertType, type AlignType, BOX_FLOAT_VALUES, BOX_OVERFLOW_VALUES, type BlockContext, type BlockHandler, BlockHandlerRegistry, type BlockRenderOptions, type BoxBlockData, type BoxFloat, type BoxOpAttributes, type BoxOverflow, BrowserDOMAdapter, type CellAlign, type CellData, type CellHorizontalAlign, type CellVerticalAlign, type ColumnsBlockData, type DOMAdapter, type DOMDocument, type DOMDocumentFragment, type DOMElement, type DOMNode, type DOMNodeList, type DeltaToHtmlOptions, type DeltaToMarkdownOptions, type DocumentPresentation, type EmbedIsolationOptions, type FootnotesBlockData, type Format, type FormatDefinition, type FormatMatchResult, type FormatRenderContext, type FormatScope, type HtmlToDeltaOptions, LINE_HEIGHT_BLOCK_TAGS, type ListType, type MarkdownToDeltaOptions, NODE_TYPE, NodeDOMAdapter, PARAGRAPH_SPACING_BLOCK_TAGS, Registry, type RenderProfile, type ResolvedDocumentPresentation, type ResolvedTablePresentation, SCRIDER_LINE_HEIGHT_KEY, SCRIDER_MARGIN_AFTER_KEY, SCRIDER_MARGIN_BEFORE_KEY, SCRIDER_TEXT_INDENT_KEY, type SanitizeOptions, type ScriderDocumentMetadata, TEXT_INDENT_BLOCK_TAGS, type TableBlockData, type TableBlockFloat, type TableCellAlign, type TableCellCoords, type TableColAlignType, type TablePresentation, type TableRegion, alertBlockHandler, alignFormat, backgroundFormat, blockFormat, blockLineHeightStyleParts, blockMarginAfterStyleParts, blockMarginBeforeStyleParts, blockParagraphMarginStyleParts, blockPresentationStyleParts, blockTextIndentStyleParts, blockquoteFormat, boldFormat, boxBlockHandler, browserAdapter, cloneDelta, codeBlockFormat, codeFormat, codeWidgetFormat, collectAdjacentTableLines, colorFormat, columnsBlockHandler, createDefaultBlockHandlers, createDefaultRegistry, defaultBlockFormats, defaultEmbedFormats, defaultFormats, defaultInlineFormats, deltaToDom, deltaToHtml, deltaToMarkdown, dividerFormat, documentMetadataToPresentation, documentPresentationStyleParts, escapeHtml, extractBoxOpAttributes, extractTableRegion, fontFormat, footnoteRefFormat, footnotesBlockHandler, formulaFormat, getAdapter, getNamedColors, headerFormat, headerIdFormat, htmlToDelta, imageFormat, indentFormat, isAdapterAvailable, isAdjacentSimpleTableGridBoundary, isElement, isRemarkAvailable, isTableNewlineOp, isTextNode, isValidColor, isValidHexColor, isZebraBodyRow, italicFormat, kbdFormat, linkFormat, listFormat, markFormat, markdownToDelta, markdownToDeltaSync, nodeAdapter, normalizeDelta, parseScriderLineHeightMultiplier, parseScriderMarginAfterEm, parseScriderMarginBeforeEm, parseScriderMarginEm, preloadRemark, renderDelta, resolveDocumentPresentation, resolveTablePresentation, sanitizeDelta, sizeFormat, slugify, slugifyWithDedup, softBreakFormat, strikeFormat, subscriptFormat, superscriptFormat, tableBlockHandler, tableCellCoordsFromAttributes, tableCellCoordsFromOp, tableColAlignFormat, tableColFormat, tableHeaderFormat, tableRowFormat, toCodeWidgetEmbedUrl, toHexColor, underlineFormat, unescapeHtml, validateDelta, videoFormat };
|
|
2269
|
+
export { ALERT_TYPES, type AlertBlockData, type AlertType, type AlignType, BOX_FLOAT_VALUES, BOX_OVERFLOW_VALUES, type BlockContext, type BlockHandler, BlockHandlerRegistry, type BlockRenderOptions, type BoxBlockData, type BoxFloat, type BoxOpAttributes, type BoxOverflow, BrowserDOMAdapter, type CellAlign, type CellData, type CellHorizontalAlign, type CellVerticalAlign, type CodeWidgetEmbedUrlFn, type ColumnsBlockData, type DOMAdapter, type DOMDocument, type DOMDocumentFragment, type DOMElement, type DOMNode, type DOMNodeList, type DeltaToHtmlOptions, type DeltaToMarkdownOptions, type DocumentPresentation, type EmbedIsolationOptions, type FootnotesBlockData, type Format, type FormatDefinition, type FormatMatchResult, type FormatRenderContext, type FormatScope, HEADER_SIZE_PRESETS, type HtmlToDeltaOptions, LINE_HEIGHT_BLOCK_TAGS, type ListType, type MarkdownToDeltaOptions, NODE_TYPE, NodeDOMAdapter, PARAGRAPH_SPACING_BLOCK_TAGS, Registry, type RenderProfile, type ResolvedDocumentPresentation, type ResolvedTablePresentation, SCRIDER_LINE_HEIGHT_KEY, SCRIDER_MARGIN_AFTER_KEY, SCRIDER_MARGIN_BEFORE_KEY, SCRIDER_TEXT_INDENT_KEY, type SanitizeOptions, type ScriderDocumentMetadata, TEXT_INDENT_BLOCK_TAGS, type TableBlockData, type TableBlockFloat, type TableCellAlign, type TableCellCoords, type TableColAlignType, type TablePresentation, type TableRegion, alertBlockHandler, alignFormat, backgroundFormat, blockFormat, blockLineHeightStyleParts, blockMarginAfterStyleParts, blockMarginBeforeStyleParts, blockParagraphMarginStyleParts, blockPresentationStyleParts, blockTextIndentStyleParts, blockquoteFormat, boldFormat, boxBlockHandler, browserAdapter, cloneDelta, codeBlockFormat, codeFormat, codeWidgetFormat, collectAdjacentTableLines, colorFormat, columnsBlockHandler, createDefaultBlockHandlers, createDefaultRegistry, defaultBlockFormats, defaultEmbedFormats, defaultFormats, defaultInlineFormats, deltaToDom, deltaToHtml, deltaToMarkdown, dividerFormat, documentMetadataToPresentation, documentPresentationStyleParts, escapeHtml, extractBoxOpAttributes, extractTableRegion, fontFormat, footnoteRefFormat, footnotesBlockHandler, formulaFormat, getAdapter, getNamedColors, headerFormat, headerIdFormat, headingPolicyStyleParts, htmlToDelta, imageFormat, indentFormat, isAdapterAvailable, isAdjacentSimpleTableGridBoundary, isElement, isRemarkAvailable, isTableNewlineOp, isTextNode, isValidColor, isValidHexColor, isZebraBodyRow, italicFormat, kbdFormat, linkFormat, listFormat, markFormat, markdownToDelta, markdownToDeltaSync, nodeAdapter, normalizeDelta, parseScriderLineHeightMultiplier, parseScriderMarginAfterEm, parseScriderMarginBeforeEm, parseScriderMarginEm, preloadRemark, renderDelta, resolveCodeWidgetEmbedSrc, resolveDocumentPresentation, resolveHeadingPolicy, resolveTablePresentation, sanitizeDelta, sizeFormat, slugify, slugifyWithDedup, softBreakFormat, strikeFormat, subscriptFormat, superscriptFormat, tableBlockHandler, tableCellCoordsFromAttributes, tableCellCoordsFromOp, tableColAlignFormat, tableColFormat, tableHeaderFormat, tableRowFormat, toCodeWidgetEmbedUrl, toHexColor, underlineFormat, unescapeHtml, validateDelta, videoFormat };
|