document-content-model 7.14.1 → 7.15.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.d.cts +1 -1
- package/dist/a1.d.ts +1 -1
- package/dist/codec.d.cts +1 -1
- package/dist/codec.d.ts +1 -1
- package/dist/{color-AELCDH_b.d.cts → color-CS3HtBwD.d.cts} +1 -1
- package/dist/{color-AELCDH_b.d.ts → color-CS3HtBwD.d.ts} +1 -1
- package/dist/color.d.cts +1 -1
- package/dist/color.d.ts +1 -1
- package/dist/{content-Cj_IC0ge.d.ts → content-BMrK9SrW.d.ts} +139 -128
- package/dist/{content-DZDor2Ct.d.cts → content-Dg9cb8mF.d.cts} +139 -128
- package/dist/content-json-schema-defs.cjs +15 -6
- package/dist/content-json-schema-defs.js +15 -6
- package/dist/content.cjs +10 -2
- package/dist/content.d.cts +2 -2
- package/dist/content.d.ts +2 -2
- package/dist/content.js +10 -3
- package/dist/decompose.cjs +13 -7
- package/dist/decompose.d.cts +2 -2
- package/dist/decompose.d.ts +2 -2
- package/dist/decompose.js +13 -7
- package/dist/definitions.d.cts +4 -4
- package/dist/definitions.d.ts +4 -4
- package/dist/factor-styles.d.cts +1 -1
- package/dist/factor-styles.d.ts +1 -1
- package/dist/flatten.d.cts +1 -1
- package/dist/flatten.d.ts +1 -1
- package/dist/index.cjs +1 -0
- package/dist/index.d.cts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +2 -2
- package/dist/math-layout.d.cts +1 -1
- package/dist/math-layout.d.ts +1 -1
- package/dist/{package-node-SBZNVEGu.d.ts → package-node-gA3Kpgl2.d.ts} +39 -39
- package/dist/{package-node-DBtKtaqn.d.cts → package-node-wxNXHAov.d.cts} +39 -39
- package/dist/package-node.d.cts +1 -1
- package/dist/package-node.d.ts +1 -1
- package/dist/package.d.cts +7 -7
- package/dist/package.d.ts +7 -7
- package/dist/schema-io.cjs +2 -2
- package/dist/schema-io.d.cts +1 -1
- package/dist/schema-io.d.ts +1 -1
- package/dist/schema-io.js +2 -2
- package/dist/{style-D06NwxAJ.d.cts → style-BGMcYrD2.d.cts} +1 -1
- package/dist/{style-D06NwxAJ.d.ts → style-BGMcYrD2.d.ts} +1 -1
- package/dist/style.d.cts +1 -1
- package/dist/style.d.ts +1 -1
- package/dist/table-grid.cjs +3 -3
- package/dist/table-grid.d.cts +4 -4
- package/dist/table-grid.d.ts +4 -4
- package/dist/table-grid.js +3 -3
- package/dist/text-layout.d.cts +8 -8
- package/dist/text-layout.d.ts +8 -8
- package/package.json +1 -1
- package/schemas/content-document.schema.json +35 -20
- package/schemas/document-tree.schema.json +22 -7
package/dist/a1.d.cts
CHANGED
|
@@ -14,6 +14,6 @@ interface CellRange {
|
|
|
14
14
|
endColumn: number;
|
|
15
15
|
}
|
|
16
16
|
declare function parseRangeReference(ref: string): CellRange | undefined;
|
|
17
|
-
declare function rangeReference(range: CellRange): string;
|
|
17
|
+
declare function rangeReference(range: Readonly<CellRange>): string;
|
|
18
18
|
//#endregion
|
|
19
19
|
export { CellPosition, CellRange, cellReference, columnIndexToLetters, columnLettersToIndex, parseCellReference, parseRangeReference, rangeReference };
|
package/dist/a1.d.ts
CHANGED
|
@@ -14,6 +14,6 @@ interface CellRange {
|
|
|
14
14
|
endColumn: number;
|
|
15
15
|
}
|
|
16
16
|
declare function parseRangeReference(ref: string): CellRange | undefined;
|
|
17
|
-
declare function rangeReference(range: CellRange): string;
|
|
17
|
+
declare function rangeReference(range: Readonly<CellRange>): string;
|
|
18
18
|
//#endregion
|
|
19
19
|
export { CellPosition, CellRange, cellReference, columnIndexToLetters, columnLettersToIndex, parseCellReference, parseRangeReference, rangeReference };
|
package/dist/codec.d.cts
CHANGED
package/dist/codec.d.ts
CHANGED
|
@@ -8,6 +8,6 @@ declare const ColorSchema: z.ZodObject<{
|
|
|
8
8
|
type Color = z.infer<typeof ColorSchema>;
|
|
9
9
|
declare const COLOR_BLACK: Color;
|
|
10
10
|
declare function rgbHexToColor(hex: string): Color;
|
|
11
|
-
declare function colorToRgbHex(color: Color): string;
|
|
11
|
+
declare function colorToRgbHex(color: Readonly<Color>): string;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { rgbHexToColor as a, colorToRgbHex as i, Color as n, ColorSchema as r, COLOR_BLACK as t };
|
|
@@ -8,6 +8,6 @@ declare const ColorSchema: z.ZodObject<{
|
|
|
8
8
|
type Color = z.infer<typeof ColorSchema>;
|
|
9
9
|
declare const COLOR_BLACK: Color;
|
|
10
10
|
declare function rgbHexToColor(hex: string): Color;
|
|
11
|
-
declare function colorToRgbHex(color: Color): string;
|
|
11
|
+
declare function colorToRgbHex(color: Readonly<Color>): string;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { rgbHexToColor as a, colorToRgbHex as i, Color as n, ColorSchema as r, COLOR_BLACK as t };
|
package/dist/color.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as rgbHexToColor, i as colorToRgbHex, n as Color, r as ColorSchema, t as COLOR_BLACK } from "./color-
|
|
1
|
+
import { a as rgbHexToColor, i as colorToRgbHex, n as Color, r as ColorSchema, t as COLOR_BLACK } from "./color-CS3HtBwD.cjs";
|
|
2
2
|
export { COLOR_BLACK, Color, ColorSchema, colorToRgbHex, rgbHexToColor };
|
package/dist/color.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as rgbHexToColor, i as colorToRgbHex, n as Color, r as ColorSchema, t as COLOR_BLACK } from "./color-
|
|
1
|
+
import { a as rgbHexToColor, i as colorToRgbHex, n as Color, r as ColorSchema, t as COLOR_BLACK } from "./color-CS3HtBwD.js";
|
|
2
2
|
export { COLOR_BLACK, Color, ColorSchema, colorToRgbHex, rgbHexToColor };
|