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/),
|
||||
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 />`
|
||||
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
import { DrawingJSON } from "./drawing";
|
||||
import { ShapeJSON } from "./shape";
|
||||
import { CommentRangeStartJSON, CommentRangeEndJSON, InsertJSONData, DeleteJSONData } from "..";
|
||||
import {
|
||||
CommentRangeStartJSON,
|
||||
CommentRangeEndJSON,
|
||||
InsertJSONData,
|
||||
DeleteJSONData,
|
||||
} from "..";
|
||||
import { BorderType } from "../border";
|
||||
import { VertAlignType } from "../run";
|
||||
import { FieldChar } from "./bindings/FieldChar";
|
||||
|
@ -50,6 +55,7 @@ export type RunPropertyJSON = {
|
|||
|
||||
export type RunChildJSON =
|
||||
| TextJSON
|
||||
| SymJSON
|
||||
| DeleteTextJSON
|
||||
| TabJSON
|
||||
| BreakJSON
|
||||
|
@ -68,6 +74,14 @@ export type TextJSON = {
|
|||
};
|
||||
};
|
||||
|
||||
export type SymJSON = {
|
||||
type: "sym";
|
||||
data: {
|
||||
font: string;
|
||||
char: string;
|
||||
};
|
||||
};
|
||||
|
||||
export type DeleteTextJSON = {
|
||||
type: "deleteText";
|
||||
data: {
|
||||
|
|
Loading…
Reference in New Issue