parent
447fcae3de
commit
fb99bd8f57
|
@ -5,6 +5,10 @@ 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.229 (19. January, 2022)
|
||||||
|
|
||||||
|
- Fixed a del/ins type in runProperty
|
||||||
|
|
||||||
## docx-wasm@0.0.228 (18. January, 2022)
|
## docx-wasm@0.0.228 (18. January, 2022)
|
||||||
|
|
||||||
- Fixed a bug, numPr reader panic when id is none.
|
- Fixed a bug, numPr reader panic when id is none.
|
||||||
|
|
|
@ -4,7 +4,7 @@ use std::fs::File;
|
||||||
use std::io::{Read, Write};
|
use std::io::{Read, Write};
|
||||||
|
|
||||||
pub fn main() {
|
pub fn main() {
|
||||||
let mut file = File::open("./table-indent.docx").unwrap();
|
let mut file = File::open("./center.docx").unwrap();
|
||||||
let mut buf = vec![];
|
let mut buf = vec![];
|
||||||
file.read_to_end(&mut buf).unwrap();
|
file.read_to_end(&mut buf).unwrap();
|
||||||
|
|
||||||
|
|
|
@ -37,8 +37,8 @@ export type RunPropertyJSON = {
|
||||||
vanish?: boolean | null;
|
vanish?: boolean | null;
|
||||||
spacing?: number | null;
|
spacing?: number | null;
|
||||||
textBorder?: TextBorderJSON | null;
|
textBorder?: TextBorderJSON | null;
|
||||||
ins?: InsertJSON | null;
|
ins?: InsertJSON['data'] | null;
|
||||||
del?: DeleteJSON | null;
|
del?: DeleteJSON['data'] | null;
|
||||||
strike?: boolean;
|
strike?: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "docx-wasm",
|
"name": "docx-wasm",
|
||||||
"version": "0.0.228",
|
"version": "0.0.229",
|
||||||
"main": "dist/node/index.js",
|
"main": "dist/node/index.js",
|
||||||
"browser": "dist/web/index.js",
|
"browser": "dist/web/index.js",
|
||||||
"author": "bokuweb <bokuweb12@gmail.com>",
|
"author": "bokuweb <bokuweb12@gmail.com>",
|
||||||
|
|
Loading…
Reference in New Issue