doc-model.js 2.4.8 → 2.5.1
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/a1.cjs +66 -0
- package/dist/a1.d.cts +19 -0
- package/dist/a1.d.ts +19 -0
- package/dist/a1.js +60 -0
- package/dist/font-port.d.cts +6 -1
- package/dist/font-port.d.ts +6 -1
- package/dist/index.cjs +7 -0
- package/dist/index.d.cts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +2 -1
- package/dist/schema-io.cjs +1 -1
- package/dist/schema-io.js +1 -1
- package/package.json +17 -8
- package/schemas/content-document.schema.json +3 -3
- package/schemas/document-package.schema.json +3 -3
- package/schemas/layout-document.schema.json +1 -1
package/dist/a1.cjs
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
//#region src/a1.ts
|
|
3
|
+
const CELL_REFERENCE_RE = /^([A-Za-z]+)(\d+)$/;
|
|
4
|
+
const ALPHABET_SIZE = 26;
|
|
5
|
+
const ALPHABET_START_CODE = 65;
|
|
6
|
+
function columnLettersToIndex(letters) {
|
|
7
|
+
if (letters.length === 0) return;
|
|
8
|
+
let index = 0;
|
|
9
|
+
for (const ch of letters.toUpperCase()) {
|
|
10
|
+
const code = ch.charCodeAt(0);
|
|
11
|
+
if (code < ALPHABET_START_CODE || code >= 91) return;
|
|
12
|
+
index = index * ALPHABET_SIZE + (code - ALPHABET_START_CODE + 1);
|
|
13
|
+
}
|
|
14
|
+
return index - 1;
|
|
15
|
+
}
|
|
16
|
+
function columnIndexToLetters(index) {
|
|
17
|
+
let remaining = index + 1;
|
|
18
|
+
let letters = "";
|
|
19
|
+
while (remaining > 0) {
|
|
20
|
+
const digit = (remaining - 1) % ALPHABET_SIZE;
|
|
21
|
+
letters = String.fromCharCode(ALPHABET_START_CODE + digit) + letters;
|
|
22
|
+
remaining = Math.trunc((remaining - 1) / ALPHABET_SIZE);
|
|
23
|
+
}
|
|
24
|
+
return letters;
|
|
25
|
+
}
|
|
26
|
+
function parseCellReference(ref) {
|
|
27
|
+
const match = CELL_REFERENCE_RE.exec(ref);
|
|
28
|
+
if (match === null) return;
|
|
29
|
+
const letters = match[1];
|
|
30
|
+
const digits = match[2];
|
|
31
|
+
if (letters === void 0 || digits === void 0) return;
|
|
32
|
+
const column = columnLettersToIndex(letters);
|
|
33
|
+
const rowNumber = Number.parseInt(digits, 10);
|
|
34
|
+
if (column === void 0 || !Number.isInteger(rowNumber) || rowNumber < 1) return;
|
|
35
|
+
return {
|
|
36
|
+
row: rowNumber - 1,
|
|
37
|
+
column
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
function cellReference(row, column) {
|
|
41
|
+
return `${columnIndexToLetters(column)}${row + 1}`;
|
|
42
|
+
}
|
|
43
|
+
function parseRangeReference(ref) {
|
|
44
|
+
const separatorIndex = ref.indexOf(":");
|
|
45
|
+
const startRaw = separatorIndex === -1 ? ref : ref.slice(0, separatorIndex);
|
|
46
|
+
const endRaw = separatorIndex === -1 ? ref : ref.slice(separatorIndex + 1);
|
|
47
|
+
const start = parseCellReference(startRaw);
|
|
48
|
+
const end = parseCellReference(endRaw);
|
|
49
|
+
if (start === void 0 || end === void 0) return;
|
|
50
|
+
return {
|
|
51
|
+
startRow: Math.min(start.row, end.row),
|
|
52
|
+
startColumn: Math.min(start.column, end.column),
|
|
53
|
+
endRow: Math.max(start.row, end.row),
|
|
54
|
+
endColumn: Math.max(start.column, end.column)
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
function rangeReference(range) {
|
|
58
|
+
return `${cellReference(range.startRow, range.startColumn)}:${cellReference(range.endRow, range.endColumn)}`;
|
|
59
|
+
}
|
|
60
|
+
//#endregion
|
|
61
|
+
exports.cellReference = cellReference;
|
|
62
|
+
exports.columnIndexToLetters = columnIndexToLetters;
|
|
63
|
+
exports.columnLettersToIndex = columnLettersToIndex;
|
|
64
|
+
exports.parseCellReference = parseCellReference;
|
|
65
|
+
exports.parseRangeReference = parseRangeReference;
|
|
66
|
+
exports.rangeReference = rangeReference;
|
package/dist/a1.d.cts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
//#region src/a1.d.ts
|
|
2
|
+
declare function columnLettersToIndex(letters: string): number | undefined;
|
|
3
|
+
declare function columnIndexToLetters(index: number): string;
|
|
4
|
+
interface CellPosition {
|
|
5
|
+
row: number;
|
|
6
|
+
column: number;
|
|
7
|
+
}
|
|
8
|
+
declare function parseCellReference(ref: string): CellPosition | undefined;
|
|
9
|
+
declare function cellReference(row: number, column: number): string;
|
|
10
|
+
interface CellRange {
|
|
11
|
+
startRow: number;
|
|
12
|
+
startColumn: number;
|
|
13
|
+
endRow: number;
|
|
14
|
+
endColumn: number;
|
|
15
|
+
}
|
|
16
|
+
declare function parseRangeReference(ref: string): CellRange | undefined;
|
|
17
|
+
declare function rangeReference(range: CellRange): string;
|
|
18
|
+
//#endregion
|
|
19
|
+
export { CellPosition, CellRange, cellReference, columnIndexToLetters, columnLettersToIndex, parseCellReference, parseRangeReference, rangeReference };
|
package/dist/a1.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
//#region src/a1.d.ts
|
|
2
|
+
declare function columnLettersToIndex(letters: string): number | undefined;
|
|
3
|
+
declare function columnIndexToLetters(index: number): string;
|
|
4
|
+
interface CellPosition {
|
|
5
|
+
row: number;
|
|
6
|
+
column: number;
|
|
7
|
+
}
|
|
8
|
+
declare function parseCellReference(ref: string): CellPosition | undefined;
|
|
9
|
+
declare function cellReference(row: number, column: number): string;
|
|
10
|
+
interface CellRange {
|
|
11
|
+
startRow: number;
|
|
12
|
+
startColumn: number;
|
|
13
|
+
endRow: number;
|
|
14
|
+
endColumn: number;
|
|
15
|
+
}
|
|
16
|
+
declare function parseRangeReference(ref: string): CellRange | undefined;
|
|
17
|
+
declare function rangeReference(range: CellRange): string;
|
|
18
|
+
//#endregion
|
|
19
|
+
export { CellPosition, CellRange, cellReference, columnIndexToLetters, columnLettersToIndex, parseCellReference, parseRangeReference, rangeReference };
|
package/dist/a1.js
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
//#region src/a1.ts
|
|
2
|
+
const CELL_REFERENCE_RE = /^([A-Za-z]+)(\d+)$/;
|
|
3
|
+
const ALPHABET_SIZE = 26;
|
|
4
|
+
const ALPHABET_START_CODE = 65;
|
|
5
|
+
function columnLettersToIndex(letters) {
|
|
6
|
+
if (letters.length === 0) return;
|
|
7
|
+
let index = 0;
|
|
8
|
+
for (const ch of letters.toUpperCase()) {
|
|
9
|
+
const code = ch.charCodeAt(0);
|
|
10
|
+
if (code < ALPHABET_START_CODE || code >= 91) return;
|
|
11
|
+
index = index * ALPHABET_SIZE + (code - ALPHABET_START_CODE + 1);
|
|
12
|
+
}
|
|
13
|
+
return index - 1;
|
|
14
|
+
}
|
|
15
|
+
function columnIndexToLetters(index) {
|
|
16
|
+
let remaining = index + 1;
|
|
17
|
+
let letters = "";
|
|
18
|
+
while (remaining > 0) {
|
|
19
|
+
const digit = (remaining - 1) % ALPHABET_SIZE;
|
|
20
|
+
letters = String.fromCharCode(ALPHABET_START_CODE + digit) + letters;
|
|
21
|
+
remaining = Math.trunc((remaining - 1) / ALPHABET_SIZE);
|
|
22
|
+
}
|
|
23
|
+
return letters;
|
|
24
|
+
}
|
|
25
|
+
function parseCellReference(ref) {
|
|
26
|
+
const match = CELL_REFERENCE_RE.exec(ref);
|
|
27
|
+
if (match === null) return;
|
|
28
|
+
const letters = match[1];
|
|
29
|
+
const digits = match[2];
|
|
30
|
+
if (letters === void 0 || digits === void 0) return;
|
|
31
|
+
const column = columnLettersToIndex(letters);
|
|
32
|
+
const rowNumber = Number.parseInt(digits, 10);
|
|
33
|
+
if (column === void 0 || !Number.isInteger(rowNumber) || rowNumber < 1) return;
|
|
34
|
+
return {
|
|
35
|
+
row: rowNumber - 1,
|
|
36
|
+
column
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function cellReference(row, column) {
|
|
40
|
+
return `${columnIndexToLetters(column)}${row + 1}`;
|
|
41
|
+
}
|
|
42
|
+
function parseRangeReference(ref) {
|
|
43
|
+
const separatorIndex = ref.indexOf(":");
|
|
44
|
+
const startRaw = separatorIndex === -1 ? ref : ref.slice(0, separatorIndex);
|
|
45
|
+
const endRaw = separatorIndex === -1 ? ref : ref.slice(separatorIndex + 1);
|
|
46
|
+
const start = parseCellReference(startRaw);
|
|
47
|
+
const end = parseCellReference(endRaw);
|
|
48
|
+
if (start === void 0 || end === void 0) return;
|
|
49
|
+
return {
|
|
50
|
+
startRow: Math.min(start.row, end.row),
|
|
51
|
+
startColumn: Math.min(start.column, end.column),
|
|
52
|
+
endRow: Math.max(start.row, end.row),
|
|
53
|
+
endColumn: Math.max(start.column, end.column)
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
function rangeReference(range) {
|
|
57
|
+
return `${cellReference(range.startRow, range.startColumn)}:${cellReference(range.endRow, range.endColumn)}`;
|
|
58
|
+
}
|
|
59
|
+
//#endregion
|
|
60
|
+
export { cellReference, columnIndexToLetters, columnLettersToIndex, parseCellReference, parseRangeReference, rangeReference };
|
package/dist/font-port.d.cts
CHANGED
|
@@ -5,6 +5,11 @@ interface ProvidedFont {
|
|
|
5
5
|
readonly italic: boolean;
|
|
6
6
|
readonly bytes: Uint8Array<ArrayBuffer>;
|
|
7
7
|
}
|
|
8
|
+
interface FontFace {
|
|
9
|
+
readonly family: string;
|
|
10
|
+
readonly bold: boolean;
|
|
11
|
+
readonly italic: boolean;
|
|
12
|
+
}
|
|
8
13
|
interface FontSubstitution {
|
|
9
14
|
readonly requestedFamily: string;
|
|
10
15
|
readonly requestedBold: boolean;
|
|
@@ -19,4 +24,4 @@ interface FontRegistryOptions {
|
|
|
19
24
|
readonly onSubstitution?: (substitution: FontSubstitution) => void;
|
|
20
25
|
}
|
|
21
26
|
//#endregion
|
|
22
|
-
export { FontRegistryOptions, FontSubstitution, ProvidedFont };
|
|
27
|
+
export { FontFace, FontRegistryOptions, FontSubstitution, ProvidedFont };
|
package/dist/font-port.d.ts
CHANGED
|
@@ -5,6 +5,11 @@ interface ProvidedFont {
|
|
|
5
5
|
readonly italic: boolean;
|
|
6
6
|
readonly bytes: Uint8Array<ArrayBuffer>;
|
|
7
7
|
}
|
|
8
|
+
interface FontFace {
|
|
9
|
+
readonly family: string;
|
|
10
|
+
readonly bold: boolean;
|
|
11
|
+
readonly italic: boolean;
|
|
12
|
+
}
|
|
8
13
|
interface FontSubstitution {
|
|
9
14
|
readonly requestedFamily: string;
|
|
10
15
|
readonly requestedBold: boolean;
|
|
@@ -19,4 +24,4 @@ interface FontRegistryOptions {
|
|
|
19
24
|
readonly onSubstitution?: (substitution: FontSubstitution) => void;
|
|
20
25
|
}
|
|
21
26
|
//#endregion
|
|
22
|
-
export { FontRegistryOptions, FontSubstitution, ProvidedFont };
|
|
27
|
+
export { FontFace, FontRegistryOptions, FontSubstitution, ProvidedFont };
|
package/dist/index.cjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_a1 = require("./a1.cjs");
|
|
2
3
|
require("./codec.cjs");
|
|
3
4
|
const require_color = require("./color.cjs");
|
|
4
5
|
const require_geometry = require("./geometry.cjs");
|
|
@@ -92,7 +93,10 @@ exports.SCHEMA_FILE_NAMES = require_schema_io.SCHEMA_FILE_NAMES;
|
|
|
92
93
|
exports.SLIDE_SIZE_STANDARD = require_geometry.SLIDE_SIZE_STANDARD;
|
|
93
94
|
exports.SLIDE_SIZE_WIDESCREEN = require_geometry.SLIDE_SIZE_WIDESCREEN;
|
|
94
95
|
exports.UnrecognizedDocumentSchemaError = require_schema_io.UnrecognizedDocumentSchemaError;
|
|
96
|
+
exports.cellReference = require_a1.cellReference;
|
|
95
97
|
exports.colorToRgbHex = require_color.colorToRgbHex;
|
|
98
|
+
exports.columnIndexToLetters = require_a1.columnIndexToLetters;
|
|
99
|
+
exports.columnLettersToIndex = require_a1.columnLettersToIndex;
|
|
96
100
|
exports.contentDocumentWithSchema = require_schema_io.contentDocumentWithSchema;
|
|
97
101
|
exports.documentFromJson = require_schema_io.documentFromJson;
|
|
98
102
|
exports.documentPackageWithSchema = require_schema_io.documentPackageWithSchema;
|
|
@@ -100,5 +104,8 @@ exports.documentSchemaKindOf = require_schema_io.documentSchemaKindOf;
|
|
|
100
104
|
exports.isContentBlock = require_content.isContentBlock;
|
|
101
105
|
exports.isMathMlNode = require_mathml.isMathMlNode;
|
|
102
106
|
exports.layoutDocumentWithSchema = require_schema_io.layoutDocumentWithSchema;
|
|
107
|
+
exports.parseCellReference = require_a1.parseCellReference;
|
|
108
|
+
exports.parseRangeReference = require_a1.parseRangeReference;
|
|
109
|
+
exports.rangeReference = require_a1.rangeReference;
|
|
103
110
|
exports.rgbHexToColor = require_color.rgbHexToColor;
|
|
104
111
|
exports.schemaUriFor = require_schema_io.schemaUriFor;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { CellPosition, CellRange, cellReference, columnIndexToLetters, columnLettersToIndex, parseCellReference, parseRangeReference, rangeReference } from "./a1.cjs";
|
|
1
2
|
import { _ as isMathMlNode, a as MathMlComment, c as MathMlDeclarationSchema, d as MathMlNode, f as MathMlNodeSchema, g as MathMlTextSchema, h as MathMlText, i as MathMlCdataSchema, l as MathMlElement, m as MathMlPiSchema, n as MathMlAttributeSchema, o as MathMlCommentSchema, p as MathMlPi, r as MathMlCdata, s as MathMlDeclaration, t as MathMlAttribute, u as MathMlElementSchema } from "./mathml-B1oTCtzc.cjs";
|
|
2
3
|
import { a as rgbHexToColor, i as colorToRgbHex, n as Color, r as ColorSchema, t as COLOR_BLACK } from "./color-AELCDH_b.cjs";
|
|
3
4
|
import { a as PAGE_SIZE_A4, c as PageSizeSchema, d as SLIDE_SIZE_WIDESCREEN, i as MarginsSchema, l as Point, n as BoxSchema, o as PAGE_SIZE_LETTER, r as Margins, s as PageSize, t as Box, u as SLIDE_SIZE_STANDARD } from "./geometry-rj_ACBLD.cjs";
|
|
@@ -5,11 +6,11 @@ import { CONTENT_FORMAT_VERSION, ContentBlock, ContentBlockSchema, ContentBorder
|
|
|
5
6
|
import { LAYOUT_FORMAT_VERSION, LayoutDocument, LayoutDocumentSchema, LayoutEllipse, LayoutEllipseSchema, LayoutImage, LayoutImageAsset, LayoutImageAssetSchema, LayoutImageSchema, LayoutItem, LayoutItemSchema, LayoutLine, LayoutLineSchema, LayoutLink, LayoutLinkSchema, LayoutPage, LayoutPageSchema, LayoutPath, LayoutPathSchema, LayoutPathSegment, LayoutPathSegmentSchema, LayoutRect, LayoutRectSchema, LayoutSubpath, LayoutSubpathSchema, LayoutText, LayoutTextSchema } from "./layout.cjs";
|
|
6
7
|
import { ContentCodec, LayoutCodec } from "./codec.cjs";
|
|
7
8
|
import { CONTENT_DEFS, CONTENT_DOCUMENT_URI, EMBEDDED_OBJECT_KINDS, MAX_SAFE_INTEGER } from "./content-json-schema-defs.cjs";
|
|
8
|
-
import { FontRegistryOptions, FontSubstitution, ProvidedFont } from "./font-port.cjs";
|
|
9
|
+
import { FontFace, FontRegistryOptions, FontSubstitution, ProvidedFont } from "./font-port.cjs";
|
|
9
10
|
import { Alignment, AlignmentSchema, DEFAULT_LAYOUT_FONT, LayoutFont, LayoutFontSchema } from "./style.cjs";
|
|
10
11
|
import { LayoutMetadata, LayoutMetadataSchema } from "./metadata.cjs";
|
|
11
12
|
import { DOCUMENT_PACKAGE_FORMAT_VERSION, DocumentPackage, DocumentPackageSchema } from "./package.cjs";
|
|
12
13
|
import { ContentDocumentJson, DocumentJsonResult, DocumentPackageJson, DocumentSchemaKind, LayoutDocumentJson, SCHEMA_FILE_NAMES, UnrecognizedDocumentSchemaError, contentDocumentWithSchema, documentFromJson, documentPackageWithSchema, documentSchemaKindOf, layoutDocumentWithSchema, schemaUriFor } from "./schema-io.cjs";
|
|
13
14
|
import { StyledFragment, StyledRun, TextMeasurer, UnderlineMetrics, WrapOptions, WrappedLine } from "./text-layout.cjs";
|
|
14
15
|
import { MathAssembledGlyphs, MathBox, MathColor, MathFontMetrics, MathGlyphMetrics, MathGlyphPlacement, MathGlyphRun, MathLayoutItem, MathRule, MathStretchAxis, MathStretchGlyph, MathStretchResult, MathStroke, PositionedFormula } from "./math-layout.cjs";
|
|
15
|
-
export { Alignment, AlignmentSchema, Box, BoxSchema, COLOR_BLACK, CONTENT_DEFS, CONTENT_DOCUMENT_URI, CONTENT_FORMAT_VERSION, Color, ColorSchema, ContentBlock, ContentBlockSchema, ContentBorder, ContentBorderSchema, ContentCellBorders, ContentCellBordersSchema, ContentCellValue, ContentCellValueSchema, ContentCodec, ContentDocument, ContentDocumentJson, ContentDocumentSchema, ContentDrawPage, ContentDrawPageSchema, ContentEmbeddedObject, ContentEmbeddedObjectBlock, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectKind, ContentEmbeddedObjectSchema, ContentFormula, ContentFormulaSchema, ContentImageBlock, ContentImageBlockSchema, ContentListMembership, ContentListMembershipSchema, ContentPageBreak, ContentPageBreakSchema, ContentParagraph, ContentParagraphSchema, ContentPathPoint, ContentPathPointSchema, ContentPathSegment, ContentPathSegmentSchema, ContentRun, ContentRunSchema, ContentSection, ContentSectionSchema, ContentShape, ContentShapeSchema, ContentSheet, ContentSheetCell, ContentSheetCellSchema, ContentSheetColumn, ContentSheetColumnSchema, ContentSheetImage, ContentSheetImageSchema, ContentSheetPrintRange, ContentSheetPrintRangeSchema, ContentSheetPrintSettings, ContentSheetPrintSettingsSchema, ContentSheetRepeatRange, ContentSheetRepeatRangeSchema, ContentSheetRow, ContentSheetRowSchema, ContentSheetSchema, ContentSlide, ContentSlideSchema, ContentStroke, ContentStrokeSchema, ContentStrokeStyle, ContentStrokeStyleSchema, ContentSubpath, ContentSubpathSchema, ContentTable, ContentTableCell, ContentTableCellSchema, ContentTableRow, ContentTableRowSchema, ContentTableSchema, ContentVector, ContentVectorSchema, DEFAULT_LAYOUT_FONT, DOCUMENT_PACKAGE_FORMAT_VERSION, DecimalString, DecimalStringSchema, DocumentJsonResult, DocumentPackage, DocumentPackageJson, DocumentPackageSchema, DocumentSchemaKind, EMBEDDED_OBJECT_KINDS, FontRegistryOptions, FontSubstitution, LAYOUT_FORMAT_VERSION, LayoutCodec, LayoutDocument, LayoutDocumentJson, LayoutDocumentSchema, LayoutEllipse, LayoutEllipseSchema, LayoutFont, LayoutFontSchema, LayoutImage, LayoutImageAsset, LayoutImageAssetSchema, LayoutImageSchema, LayoutItem, LayoutItemSchema, LayoutLine, LayoutLineSchema, LayoutLink, LayoutLinkSchema, LayoutMetadata, LayoutMetadataSchema, LayoutPage, LayoutPageSchema, LayoutPath, LayoutPathSchema, LayoutPathSegment, LayoutPathSegmentSchema, LayoutRect, LayoutRectSchema, LayoutSubpath, LayoutSubpathSchema, LayoutText, LayoutTextSchema, MAX_SAFE_INTEGER, Margins, MarginsSchema, MathAssembledGlyphs, MathBox, MathColor, MathFontMetrics, MathGlyphMetrics, MathGlyphPlacement, MathGlyphRun, MathLayoutItem, MathMlAttribute, MathMlAttributeSchema, MathMlCdata, MathMlCdataSchema, MathMlComment, MathMlCommentSchema, MathMlDeclaration, MathMlDeclarationSchema, MathMlElement, MathMlElementSchema, MathMlNode, MathMlNodeSchema, MathMlPi, MathMlPiSchema, MathMlText, MathMlTextSchema, MathRule, MathStretchAxis, MathStretchGlyph, MathStretchResult, MathStroke, PAGE_SIZE_A4, PAGE_SIZE_LETTER, PageSize, PageSizeSchema, Point, PositionedFormula, ProvidedFont, SCHEMA_FILE_NAMES, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN, StyledFragment, StyledRun, TextMeasurer, UnderlineMetrics, UnrecognizedDocumentSchemaError, WrapOptions, WrappedLine, colorToRgbHex, contentDocumentWithSchema, documentFromJson, documentPackageWithSchema, documentSchemaKindOf, isContentBlock, isMathMlNode, layoutDocumentWithSchema, rgbHexToColor, schemaUriFor };
|
|
16
|
+
export { Alignment, AlignmentSchema, Box, BoxSchema, COLOR_BLACK, CONTENT_DEFS, CONTENT_DOCUMENT_URI, CONTENT_FORMAT_VERSION, CellPosition, CellRange, Color, ColorSchema, ContentBlock, ContentBlockSchema, ContentBorder, ContentBorderSchema, ContentCellBorders, ContentCellBordersSchema, ContentCellValue, ContentCellValueSchema, ContentCodec, ContentDocument, ContentDocumentJson, ContentDocumentSchema, ContentDrawPage, ContentDrawPageSchema, ContentEmbeddedObject, ContentEmbeddedObjectBlock, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectKind, ContentEmbeddedObjectSchema, ContentFormula, ContentFormulaSchema, ContentImageBlock, ContentImageBlockSchema, ContentListMembership, ContentListMembershipSchema, ContentPageBreak, ContentPageBreakSchema, ContentParagraph, ContentParagraphSchema, ContentPathPoint, ContentPathPointSchema, ContentPathSegment, ContentPathSegmentSchema, ContentRun, ContentRunSchema, ContentSection, ContentSectionSchema, ContentShape, ContentShapeSchema, ContentSheet, ContentSheetCell, ContentSheetCellSchema, ContentSheetColumn, ContentSheetColumnSchema, ContentSheetImage, ContentSheetImageSchema, ContentSheetPrintRange, ContentSheetPrintRangeSchema, ContentSheetPrintSettings, ContentSheetPrintSettingsSchema, ContentSheetRepeatRange, ContentSheetRepeatRangeSchema, ContentSheetRow, ContentSheetRowSchema, ContentSheetSchema, ContentSlide, ContentSlideSchema, ContentStroke, ContentStrokeSchema, ContentStrokeStyle, ContentStrokeStyleSchema, ContentSubpath, ContentSubpathSchema, ContentTable, ContentTableCell, ContentTableCellSchema, ContentTableRow, ContentTableRowSchema, ContentTableSchema, ContentVector, ContentVectorSchema, DEFAULT_LAYOUT_FONT, DOCUMENT_PACKAGE_FORMAT_VERSION, DecimalString, DecimalStringSchema, DocumentJsonResult, DocumentPackage, DocumentPackageJson, DocumentPackageSchema, DocumentSchemaKind, EMBEDDED_OBJECT_KINDS, FontFace, FontRegistryOptions, FontSubstitution, LAYOUT_FORMAT_VERSION, LayoutCodec, LayoutDocument, LayoutDocumentJson, LayoutDocumentSchema, LayoutEllipse, LayoutEllipseSchema, LayoutFont, LayoutFontSchema, LayoutImage, LayoutImageAsset, LayoutImageAssetSchema, LayoutImageSchema, LayoutItem, LayoutItemSchema, LayoutLine, LayoutLineSchema, LayoutLink, LayoutLinkSchema, LayoutMetadata, LayoutMetadataSchema, LayoutPage, LayoutPageSchema, LayoutPath, LayoutPathSchema, LayoutPathSegment, LayoutPathSegmentSchema, LayoutRect, LayoutRectSchema, LayoutSubpath, LayoutSubpathSchema, LayoutText, LayoutTextSchema, MAX_SAFE_INTEGER, Margins, MarginsSchema, MathAssembledGlyphs, MathBox, MathColor, MathFontMetrics, MathGlyphMetrics, MathGlyphPlacement, MathGlyphRun, MathLayoutItem, MathMlAttribute, MathMlAttributeSchema, MathMlCdata, MathMlCdataSchema, MathMlComment, MathMlCommentSchema, MathMlDeclaration, MathMlDeclarationSchema, MathMlElement, MathMlElementSchema, MathMlNode, MathMlNodeSchema, MathMlPi, MathMlPiSchema, MathMlText, MathMlTextSchema, MathRule, MathStretchAxis, MathStretchGlyph, MathStretchResult, MathStroke, PAGE_SIZE_A4, PAGE_SIZE_LETTER, PageSize, PageSizeSchema, Point, PositionedFormula, ProvidedFont, SCHEMA_FILE_NAMES, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN, StyledFragment, StyledRun, TextMeasurer, UnderlineMetrics, UnrecognizedDocumentSchemaError, WrapOptions, WrappedLine, cellReference, colorToRgbHex, columnIndexToLetters, columnLettersToIndex, contentDocumentWithSchema, documentFromJson, documentPackageWithSchema, documentSchemaKindOf, isContentBlock, isMathMlNode, layoutDocumentWithSchema, parseCellReference, parseRangeReference, rangeReference, rgbHexToColor, schemaUriFor };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { CellPosition, CellRange, cellReference, columnIndexToLetters, columnLettersToIndex, parseCellReference, parseRangeReference, rangeReference } from "./a1.js";
|
|
1
2
|
import { _ as isMathMlNode, a as MathMlComment, c as MathMlDeclarationSchema, d as MathMlNode, f as MathMlNodeSchema, g as MathMlTextSchema, h as MathMlText, i as MathMlCdataSchema, l as MathMlElement, m as MathMlPiSchema, n as MathMlAttributeSchema, o as MathMlCommentSchema, p as MathMlPi, r as MathMlCdata, s as MathMlDeclaration, t as MathMlAttribute, u as MathMlElementSchema } from "./mathml-B1oTCtzc.js";
|
|
2
3
|
import { a as rgbHexToColor, i as colorToRgbHex, n as Color, r as ColorSchema, t as COLOR_BLACK } from "./color-AELCDH_b.js";
|
|
3
4
|
import { a as PAGE_SIZE_A4, c as PageSizeSchema, d as SLIDE_SIZE_WIDESCREEN, i as MarginsSchema, l as Point, n as BoxSchema, o as PAGE_SIZE_LETTER, r as Margins, s as PageSize, t as Box, u as SLIDE_SIZE_STANDARD } from "./geometry-rj_ACBLD.js";
|
|
@@ -5,11 +6,11 @@ import { CONTENT_FORMAT_VERSION, ContentBlock, ContentBlockSchema, ContentBorder
|
|
|
5
6
|
import { LAYOUT_FORMAT_VERSION, LayoutDocument, LayoutDocumentSchema, LayoutEllipse, LayoutEllipseSchema, LayoutImage, LayoutImageAsset, LayoutImageAssetSchema, LayoutImageSchema, LayoutItem, LayoutItemSchema, LayoutLine, LayoutLineSchema, LayoutLink, LayoutLinkSchema, LayoutPage, LayoutPageSchema, LayoutPath, LayoutPathSchema, LayoutPathSegment, LayoutPathSegmentSchema, LayoutRect, LayoutRectSchema, LayoutSubpath, LayoutSubpathSchema, LayoutText, LayoutTextSchema } from "./layout.js";
|
|
6
7
|
import { ContentCodec, LayoutCodec } from "./codec.js";
|
|
7
8
|
import { CONTENT_DEFS, CONTENT_DOCUMENT_URI, EMBEDDED_OBJECT_KINDS, MAX_SAFE_INTEGER } from "./content-json-schema-defs.js";
|
|
8
|
-
import { FontRegistryOptions, FontSubstitution, ProvidedFont } from "./font-port.js";
|
|
9
|
+
import { FontFace, FontRegistryOptions, FontSubstitution, ProvidedFont } from "./font-port.js";
|
|
9
10
|
import { Alignment, AlignmentSchema, DEFAULT_LAYOUT_FONT, LayoutFont, LayoutFontSchema } from "./style.js";
|
|
10
11
|
import { LayoutMetadata, LayoutMetadataSchema } from "./metadata.js";
|
|
11
12
|
import { DOCUMENT_PACKAGE_FORMAT_VERSION, DocumentPackage, DocumentPackageSchema } from "./package.js";
|
|
12
13
|
import { ContentDocumentJson, DocumentJsonResult, DocumentPackageJson, DocumentSchemaKind, LayoutDocumentJson, SCHEMA_FILE_NAMES, UnrecognizedDocumentSchemaError, contentDocumentWithSchema, documentFromJson, documentPackageWithSchema, documentSchemaKindOf, layoutDocumentWithSchema, schemaUriFor } from "./schema-io.js";
|
|
13
14
|
import { StyledFragment, StyledRun, TextMeasurer, UnderlineMetrics, WrapOptions, WrappedLine } from "./text-layout.js";
|
|
14
15
|
import { MathAssembledGlyphs, MathBox, MathColor, MathFontMetrics, MathGlyphMetrics, MathGlyphPlacement, MathGlyphRun, MathLayoutItem, MathRule, MathStretchAxis, MathStretchGlyph, MathStretchResult, MathStroke, PositionedFormula } from "./math-layout.js";
|
|
15
|
-
export { Alignment, AlignmentSchema, Box, BoxSchema, COLOR_BLACK, CONTENT_DEFS, CONTENT_DOCUMENT_URI, CONTENT_FORMAT_VERSION, Color, ColorSchema, ContentBlock, ContentBlockSchema, ContentBorder, ContentBorderSchema, ContentCellBorders, ContentCellBordersSchema, ContentCellValue, ContentCellValueSchema, ContentCodec, ContentDocument, ContentDocumentJson, ContentDocumentSchema, ContentDrawPage, ContentDrawPageSchema, ContentEmbeddedObject, ContentEmbeddedObjectBlock, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectKind, ContentEmbeddedObjectSchema, ContentFormula, ContentFormulaSchema, ContentImageBlock, ContentImageBlockSchema, ContentListMembership, ContentListMembershipSchema, ContentPageBreak, ContentPageBreakSchema, ContentParagraph, ContentParagraphSchema, ContentPathPoint, ContentPathPointSchema, ContentPathSegment, ContentPathSegmentSchema, ContentRun, ContentRunSchema, ContentSection, ContentSectionSchema, ContentShape, ContentShapeSchema, ContentSheet, ContentSheetCell, ContentSheetCellSchema, ContentSheetColumn, ContentSheetColumnSchema, ContentSheetImage, ContentSheetImageSchema, ContentSheetPrintRange, ContentSheetPrintRangeSchema, ContentSheetPrintSettings, ContentSheetPrintSettingsSchema, ContentSheetRepeatRange, ContentSheetRepeatRangeSchema, ContentSheetRow, ContentSheetRowSchema, ContentSheetSchema, ContentSlide, ContentSlideSchema, ContentStroke, ContentStrokeSchema, ContentStrokeStyle, ContentStrokeStyleSchema, ContentSubpath, ContentSubpathSchema, ContentTable, ContentTableCell, ContentTableCellSchema, ContentTableRow, ContentTableRowSchema, ContentTableSchema, ContentVector, ContentVectorSchema, DEFAULT_LAYOUT_FONT, DOCUMENT_PACKAGE_FORMAT_VERSION, DecimalString, DecimalStringSchema, DocumentJsonResult, DocumentPackage, DocumentPackageJson, DocumentPackageSchema, DocumentSchemaKind, EMBEDDED_OBJECT_KINDS, FontRegistryOptions, FontSubstitution, LAYOUT_FORMAT_VERSION, LayoutCodec, LayoutDocument, LayoutDocumentJson, LayoutDocumentSchema, LayoutEllipse, LayoutEllipseSchema, LayoutFont, LayoutFontSchema, LayoutImage, LayoutImageAsset, LayoutImageAssetSchema, LayoutImageSchema, LayoutItem, LayoutItemSchema, LayoutLine, LayoutLineSchema, LayoutLink, LayoutLinkSchema, LayoutMetadata, LayoutMetadataSchema, LayoutPage, LayoutPageSchema, LayoutPath, LayoutPathSchema, LayoutPathSegment, LayoutPathSegmentSchema, LayoutRect, LayoutRectSchema, LayoutSubpath, LayoutSubpathSchema, LayoutText, LayoutTextSchema, MAX_SAFE_INTEGER, Margins, MarginsSchema, MathAssembledGlyphs, MathBox, MathColor, MathFontMetrics, MathGlyphMetrics, MathGlyphPlacement, MathGlyphRun, MathLayoutItem, MathMlAttribute, MathMlAttributeSchema, MathMlCdata, MathMlCdataSchema, MathMlComment, MathMlCommentSchema, MathMlDeclaration, MathMlDeclarationSchema, MathMlElement, MathMlElementSchema, MathMlNode, MathMlNodeSchema, MathMlPi, MathMlPiSchema, MathMlText, MathMlTextSchema, MathRule, MathStretchAxis, MathStretchGlyph, MathStretchResult, MathStroke, PAGE_SIZE_A4, PAGE_SIZE_LETTER, PageSize, PageSizeSchema, Point, PositionedFormula, ProvidedFont, SCHEMA_FILE_NAMES, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN, StyledFragment, StyledRun, TextMeasurer, UnderlineMetrics, UnrecognizedDocumentSchemaError, WrapOptions, WrappedLine, colorToRgbHex, contentDocumentWithSchema, documentFromJson, documentPackageWithSchema, documentSchemaKindOf, isContentBlock, isMathMlNode, layoutDocumentWithSchema, rgbHexToColor, schemaUriFor };
|
|
16
|
+
export { Alignment, AlignmentSchema, Box, BoxSchema, COLOR_BLACK, CONTENT_DEFS, CONTENT_DOCUMENT_URI, CONTENT_FORMAT_VERSION, CellPosition, CellRange, Color, ColorSchema, ContentBlock, ContentBlockSchema, ContentBorder, ContentBorderSchema, ContentCellBorders, ContentCellBordersSchema, ContentCellValue, ContentCellValueSchema, ContentCodec, ContentDocument, ContentDocumentJson, ContentDocumentSchema, ContentDrawPage, ContentDrawPageSchema, ContentEmbeddedObject, ContentEmbeddedObjectBlock, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectKind, ContentEmbeddedObjectSchema, ContentFormula, ContentFormulaSchema, ContentImageBlock, ContentImageBlockSchema, ContentListMembership, ContentListMembershipSchema, ContentPageBreak, ContentPageBreakSchema, ContentParagraph, ContentParagraphSchema, ContentPathPoint, ContentPathPointSchema, ContentPathSegment, ContentPathSegmentSchema, ContentRun, ContentRunSchema, ContentSection, ContentSectionSchema, ContentShape, ContentShapeSchema, ContentSheet, ContentSheetCell, ContentSheetCellSchema, ContentSheetColumn, ContentSheetColumnSchema, ContentSheetImage, ContentSheetImageSchema, ContentSheetPrintRange, ContentSheetPrintRangeSchema, ContentSheetPrintSettings, ContentSheetPrintSettingsSchema, ContentSheetRepeatRange, ContentSheetRepeatRangeSchema, ContentSheetRow, ContentSheetRowSchema, ContentSheetSchema, ContentSlide, ContentSlideSchema, ContentStroke, ContentStrokeSchema, ContentStrokeStyle, ContentStrokeStyleSchema, ContentSubpath, ContentSubpathSchema, ContentTable, ContentTableCell, ContentTableCellSchema, ContentTableRow, ContentTableRowSchema, ContentTableSchema, ContentVector, ContentVectorSchema, DEFAULT_LAYOUT_FONT, DOCUMENT_PACKAGE_FORMAT_VERSION, DecimalString, DecimalStringSchema, DocumentJsonResult, DocumentPackage, DocumentPackageJson, DocumentPackageSchema, DocumentSchemaKind, EMBEDDED_OBJECT_KINDS, FontFace, FontRegistryOptions, FontSubstitution, LAYOUT_FORMAT_VERSION, LayoutCodec, LayoutDocument, LayoutDocumentJson, LayoutDocumentSchema, LayoutEllipse, LayoutEllipseSchema, LayoutFont, LayoutFontSchema, LayoutImage, LayoutImageAsset, LayoutImageAssetSchema, LayoutImageSchema, LayoutItem, LayoutItemSchema, LayoutLine, LayoutLineSchema, LayoutLink, LayoutLinkSchema, LayoutMetadata, LayoutMetadataSchema, LayoutPage, LayoutPageSchema, LayoutPath, LayoutPathSchema, LayoutPathSegment, LayoutPathSegmentSchema, LayoutRect, LayoutRectSchema, LayoutSubpath, LayoutSubpathSchema, LayoutText, LayoutTextSchema, MAX_SAFE_INTEGER, Margins, MarginsSchema, MathAssembledGlyphs, MathBox, MathColor, MathFontMetrics, MathGlyphMetrics, MathGlyphPlacement, MathGlyphRun, MathLayoutItem, MathMlAttribute, MathMlAttributeSchema, MathMlCdata, MathMlCdataSchema, MathMlComment, MathMlCommentSchema, MathMlDeclaration, MathMlDeclarationSchema, MathMlElement, MathMlElementSchema, MathMlNode, MathMlNodeSchema, MathMlPi, MathMlPiSchema, MathMlText, MathMlTextSchema, MathRule, MathStretchAxis, MathStretchGlyph, MathStretchResult, MathStroke, PAGE_SIZE_A4, PAGE_SIZE_LETTER, PageSize, PageSizeSchema, Point, PositionedFormula, ProvidedFont, SCHEMA_FILE_NAMES, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN, StyledFragment, StyledRun, TextMeasurer, UnderlineMetrics, UnrecognizedDocumentSchemaError, WrapOptions, WrappedLine, cellReference, colorToRgbHex, columnIndexToLetters, columnLettersToIndex, contentDocumentWithSchema, documentFromJson, documentPackageWithSchema, documentSchemaKindOf, isContentBlock, isMathMlNode, layoutDocumentWithSchema, parseCellReference, parseRangeReference, rangeReference, rgbHexToColor, schemaUriFor };
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { cellReference, columnIndexToLetters, columnLettersToIndex, parseCellReference, parseRangeReference, rangeReference } from "./a1.js";
|
|
1
2
|
import "./codec.js";
|
|
2
3
|
import { COLOR_BLACK, ColorSchema, colorToRgbHex, rgbHexToColor } from "./color.js";
|
|
3
4
|
import { BoxSchema, MarginsSchema, PAGE_SIZE_A4, PAGE_SIZE_LETTER, PageSizeSchema, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN } from "./geometry.js";
|
|
@@ -12,4 +13,4 @@ import { CONTENT_DEFS, CONTENT_DOCUMENT_URI, EMBEDDED_OBJECT_KINDS, MAX_SAFE_INT
|
|
|
12
13
|
import "./font-port.js";
|
|
13
14
|
import "./text-layout.js";
|
|
14
15
|
import "./math-layout.js";
|
|
15
|
-
export { AlignmentSchema, BoxSchema, COLOR_BLACK, CONTENT_DEFS, CONTENT_DOCUMENT_URI, CONTENT_FORMAT_VERSION, ColorSchema, ContentBlockSchema, ContentBorderSchema, ContentCellBordersSchema, ContentCellValueSchema, ContentDocumentSchema, ContentDrawPageSchema, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectSchema, ContentFormulaSchema, ContentImageBlockSchema, ContentListMembershipSchema, ContentPageBreakSchema, ContentParagraphSchema, ContentPathPointSchema, ContentPathSegmentSchema, ContentRunSchema, ContentSectionSchema, ContentShapeSchema, ContentSheetCellSchema, ContentSheetColumnSchema, ContentSheetImageSchema, ContentSheetPrintRangeSchema, ContentSheetPrintSettingsSchema, ContentSheetRepeatRangeSchema, ContentSheetRowSchema, ContentSheetSchema, ContentSlideSchema, ContentStrokeSchema, ContentStrokeStyleSchema, ContentSubpathSchema, ContentTableCellSchema, ContentTableRowSchema, ContentTableSchema, ContentVectorSchema, DEFAULT_LAYOUT_FONT, DOCUMENT_PACKAGE_FORMAT_VERSION, DecimalStringSchema, DocumentPackageSchema, EMBEDDED_OBJECT_KINDS, LAYOUT_FORMAT_VERSION, LayoutDocumentSchema, LayoutEllipseSchema, LayoutFontSchema, LayoutImageAssetSchema, LayoutImageSchema, LayoutItemSchema, LayoutLineSchema, LayoutLinkSchema, LayoutMetadataSchema, LayoutPageSchema, LayoutPathSchema, LayoutPathSegmentSchema, LayoutRectSchema, LayoutSubpathSchema, LayoutTextSchema, MAX_SAFE_INTEGER, MarginsSchema, MathMlAttributeSchema, MathMlCdataSchema, MathMlCommentSchema, MathMlDeclarationSchema, MathMlElementSchema, MathMlNodeSchema, MathMlPiSchema, MathMlTextSchema, PAGE_SIZE_A4, PAGE_SIZE_LETTER, PageSizeSchema, SCHEMA_FILE_NAMES, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN, UnrecognizedDocumentSchemaError, colorToRgbHex, contentDocumentWithSchema, documentFromJson, documentPackageWithSchema, documentSchemaKindOf, isContentBlock, isMathMlNode, layoutDocumentWithSchema, rgbHexToColor, schemaUriFor };
|
|
16
|
+
export { AlignmentSchema, BoxSchema, COLOR_BLACK, CONTENT_DEFS, CONTENT_DOCUMENT_URI, CONTENT_FORMAT_VERSION, ColorSchema, ContentBlockSchema, ContentBorderSchema, ContentCellBordersSchema, ContentCellValueSchema, ContentDocumentSchema, ContentDrawPageSchema, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectSchema, ContentFormulaSchema, ContentImageBlockSchema, ContentListMembershipSchema, ContentPageBreakSchema, ContentParagraphSchema, ContentPathPointSchema, ContentPathSegmentSchema, ContentRunSchema, ContentSectionSchema, ContentShapeSchema, ContentSheetCellSchema, ContentSheetColumnSchema, ContentSheetImageSchema, ContentSheetPrintRangeSchema, ContentSheetPrintSettingsSchema, ContentSheetRepeatRangeSchema, ContentSheetRowSchema, ContentSheetSchema, ContentSlideSchema, ContentStrokeSchema, ContentStrokeStyleSchema, ContentSubpathSchema, ContentTableCellSchema, ContentTableRowSchema, ContentTableSchema, ContentVectorSchema, DEFAULT_LAYOUT_FONT, DOCUMENT_PACKAGE_FORMAT_VERSION, DecimalStringSchema, DocumentPackageSchema, EMBEDDED_OBJECT_KINDS, LAYOUT_FORMAT_VERSION, LayoutDocumentSchema, LayoutEllipseSchema, LayoutFontSchema, LayoutImageAssetSchema, LayoutImageSchema, LayoutItemSchema, LayoutLineSchema, LayoutLinkSchema, LayoutMetadataSchema, LayoutPageSchema, LayoutPathSchema, LayoutPathSegmentSchema, LayoutRectSchema, LayoutSubpathSchema, LayoutTextSchema, MAX_SAFE_INTEGER, MarginsSchema, MathMlAttributeSchema, MathMlCdataSchema, MathMlCommentSchema, MathMlDeclarationSchema, MathMlElementSchema, MathMlNodeSchema, MathMlPiSchema, MathMlTextSchema, PAGE_SIZE_A4, PAGE_SIZE_LETTER, PageSizeSchema, SCHEMA_FILE_NAMES, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN, UnrecognizedDocumentSchemaError, cellReference, colorToRgbHex, columnIndexToLetters, columnLettersToIndex, contentDocumentWithSchema, documentFromJson, documentPackageWithSchema, documentSchemaKindOf, isContentBlock, isMathMlNode, layoutDocumentWithSchema, parseCellReference, parseRangeReference, rangeReference, rgbHexToColor, schemaUriFor };
|
package/dist/schema-io.cjs
CHANGED
|
@@ -9,7 +9,7 @@ const SCHEMA_FILE_NAMES = {
|
|
|
9
9
|
LayoutDocument: "layout-document.schema.json"
|
|
10
10
|
};
|
|
11
11
|
function schemaUriFor(kind) {
|
|
12
|
-
return `https://cdn.jsdelivr.net/npm/document-schema.js@2.
|
|
12
|
+
return `https://cdn.jsdelivr.net/npm/document-schema.js@2.5.1/schemas/${SCHEMA_FILE_NAMES[kind]}`;
|
|
13
13
|
}
|
|
14
14
|
const SCHEMA_URI_PATTERN = /^https:\/\/cdn\.jsdelivr\.net\/npm\/document-schema\.js@[^/]+\/schemas\/(document-package|content-document|layout-document)\.schema\.json$/;
|
|
15
15
|
function kindForFileStem(stem) {
|
package/dist/schema-io.js
CHANGED
|
@@ -8,7 +8,7 @@ const SCHEMA_FILE_NAMES = {
|
|
|
8
8
|
LayoutDocument: "layout-document.schema.json"
|
|
9
9
|
};
|
|
10
10
|
function schemaUriFor(kind) {
|
|
11
|
-
return `https://cdn.jsdelivr.net/npm/document-schema.js@2.
|
|
11
|
+
return `https://cdn.jsdelivr.net/npm/document-schema.js@2.5.1/schemas/${SCHEMA_FILE_NAMES[kind]}`;
|
|
12
12
|
}
|
|
13
13
|
const SCHEMA_URI_PATTERN = /^https:\/\/cdn\.jsdelivr\.net\/npm\/document-schema\.js@[^/]+\/schemas\/(document-package|content-document|layout-document)\.schema\.json$/;
|
|
14
14
|
function kindForFileStem(stem) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "doc-model.js",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.1",
|
|
4
4
|
"description": "The canonical, format-agnostic content and layout schemas shared by ooxml.js, odf.js, and documents.js -- pure Zod schemas, no behaviour.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -79,19 +79,28 @@
|
|
|
79
79
|
"publint": "^0.3.21",
|
|
80
80
|
"semantic-release": "^25.0.8",
|
|
81
81
|
"tsdown": "^0.22.13",
|
|
82
|
+
"turbo": "^2.10.8",
|
|
82
83
|
"typescript": "^6.0.3",
|
|
83
84
|
"typescript-eslint": "^8.65.0",
|
|
84
85
|
"vitest": "^4.1.10"
|
|
85
86
|
},
|
|
86
87
|
"scripts": {
|
|
87
|
-
"build": "
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
88
|
+
"build": "turbo run _build",
|
|
89
|
+
"_build": "tsdown && node scripts/generate-json-schemas.mjs",
|
|
90
|
+
"lint": "turbo run _lint",
|
|
91
|
+
"_lint": "eslint . --fix --cache --max-warnings 0",
|
|
92
|
+
"typecheck": "turbo run _typecheck _typecheck:node",
|
|
93
|
+
"_typecheck": "tsc -p tsconfig.json",
|
|
94
|
+
"_typecheck:node": "tsc -p tsconfig.node.json",
|
|
95
|
+
"test": "turbo run _test",
|
|
96
|
+
"_test": "vitest run --project unit",
|
|
97
|
+
"test:workers": "turbo run _test:workers",
|
|
98
|
+
"_test:workers": "vitest run --config vitest.workers.config.ts",
|
|
92
99
|
"test:watch": "vitest --project unit",
|
|
93
|
-
"test:coverage": "
|
|
94
|
-
"
|
|
100
|
+
"test:coverage": "turbo run _test:coverage",
|
|
101
|
+
"_test:coverage": "vitest run --project unit --coverage",
|
|
102
|
+
"test:smoke": "turbo run _test:smoke",
|
|
103
|
+
"_test:smoke": "pnpm run build && vitest run --project smoke",
|
|
95
104
|
"release": "semantic-release"
|
|
96
105
|
}
|
|
97
106
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://cdn.jsdelivr.net/npm/document-schema.js@2.
|
|
3
|
+
"$id": "https://cdn.jsdelivr.net/npm/document-schema.js@2.5.1/schemas/content-document.schema.json",
|
|
4
4
|
"oneOf": [
|
|
5
5
|
{
|
|
6
6
|
"type": "object",
|
|
@@ -1208,7 +1208,7 @@
|
|
|
1208
1208
|
]
|
|
1209
1209
|
},
|
|
1210
1210
|
"document": {
|
|
1211
|
-
"$ref": "https://cdn.jsdelivr.net/npm/document-schema.js@2.
|
|
1211
|
+
"$ref": "https://cdn.jsdelivr.net/npm/document-schema.js@2.5.1/schemas/content-document.schema.json"
|
|
1212
1212
|
},
|
|
1213
1213
|
"frame": {
|
|
1214
1214
|
"$ref": "#/$defs/Box"
|
|
@@ -2499,7 +2499,7 @@
|
|
|
2499
2499
|
]
|
|
2500
2500
|
},
|
|
2501
2501
|
"document": {
|
|
2502
|
-
"$ref": "https://cdn.jsdelivr.net/npm/document-schema.js@2.
|
|
2502
|
+
"$ref": "https://cdn.jsdelivr.net/npm/document-schema.js@2.5.1/schemas/content-document.schema.json"
|
|
2503
2503
|
},
|
|
2504
2504
|
"frame": {
|
|
2505
2505
|
"$ref": "#/$defs/Box"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://cdn.jsdelivr.net/npm/document-schema.js@2.
|
|
3
|
+
"$id": "https://cdn.jsdelivr.net/npm/document-schema.js@2.5.1/schemas/document-package.schema.json",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"properties": {
|
|
6
6
|
"formatVersion": {
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
"const": 1
|
|
9
9
|
},
|
|
10
10
|
"content": {
|
|
11
|
-
"$ref": "https://cdn.jsdelivr.net/npm/document-schema.js@2.
|
|
11
|
+
"$ref": "https://cdn.jsdelivr.net/npm/document-schema.js@2.5.1/schemas/content-document.schema.json"
|
|
12
12
|
},
|
|
13
13
|
"layout": {
|
|
14
|
-
"$ref": "https://cdn.jsdelivr.net/npm/document-schema.js@2.
|
|
14
|
+
"$ref": "https://cdn.jsdelivr.net/npm/document-schema.js@2.5.1/schemas/layout-document.schema.json"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
"required": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://cdn.jsdelivr.net/npm/document-schema.js@2.
|
|
3
|
+
"$id": "https://cdn.jsdelivr.net/npm/document-schema.js@2.5.1/schemas/layout-document.schema.json",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"properties": {
|
|
6
6
|
"formatVersion": {
|