parent
e4b5e13cee
commit
dbb9b9ded8
|
@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## docx-wasm@0.0.278-rc2 (19. May, 2023)
|
## docx-wasm@0.0.278-rc3 (19. May, 2023)
|
||||||
|
|
||||||
- Support `<sym />`
|
- Support `<sym />`
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
import { DrawingJSON } from "./drawing";
|
import { DrawingJSON } from "./drawing";
|
||||||
import { ShapeJSON } from "./shape";
|
import { ShapeJSON } from "./shape";
|
||||||
import { CommentRangeStartJSON, CommentRangeEndJSON, InsertJSONData, DeleteJSONData } from "..";
|
import {
|
||||||
|
CommentRangeStartJSON,
|
||||||
|
CommentRangeEndJSON,
|
||||||
|
InsertJSONData,
|
||||||
|
DeleteJSONData,
|
||||||
|
} from "..";
|
||||||
import { BorderType } from "../border";
|
import { BorderType } from "../border";
|
||||||
import { VertAlignType } from "../run";
|
import { VertAlignType } from "../run";
|
||||||
import { FieldChar } from "./bindings/FieldChar";
|
import { FieldChar } from "./bindings/FieldChar";
|
||||||
|
@ -50,6 +55,7 @@ export type RunPropertyJSON = {
|
||||||
|
|
||||||
export type RunChildJSON =
|
export type RunChildJSON =
|
||||||
| TextJSON
|
| TextJSON
|
||||||
|
| SymJSON
|
||||||
| DeleteTextJSON
|
| DeleteTextJSON
|
||||||
| TabJSON
|
| TabJSON
|
||||||
| BreakJSON
|
| BreakJSON
|
||||||
|
@ -68,6 +74,14 @@ export type TextJSON = {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type SymJSON = {
|
||||||
|
type: "sym";
|
||||||
|
data: {
|
||||||
|
font: string;
|
||||||
|
char: string;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
export type DeleteTextJSON = {
|
export type DeleteTextJSON = {
|
||||||
type: "deleteText";
|
type: "deleteText";
|
||||||
data: {
|
data: {
|
||||||
|
@ -103,14 +117,14 @@ export type FieldCharJSON = {
|
||||||
export type InstrTextJSON = {
|
export type InstrTextJSON = {
|
||||||
type: "instrText";
|
type: "instrText";
|
||||||
data:
|
data:
|
||||||
| {
|
| {
|
||||||
type: "hyperlink";
|
type: "hyperlink";
|
||||||
data: InstrHyperlink;
|
data: InstrHyperlink;
|
||||||
}
|
}
|
||||||
| {
|
| {
|
||||||
type: "toc";
|
type: "toc";
|
||||||
data: InstrToC;
|
data: InstrToC;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export type InstrTextStringJSON = {
|
export type InstrTextStringJSON = {
|
||||||
|
|
Loading…
Reference in New Issue