Sadsadsad (#631)

* fix: changelog

* fix
main
bokuweb 2023-06-16 12:32:08 +09:00 committed by GitHub
parent e4b5e13cee
commit dbb9b9ded8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 10 deletions

View File

@ -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 />`

View File

@ -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: {