fix: rc35 (#800)

main
bokuweb 2025-02-05 19:28:33 +09:00 committed by GitHub
parent 5741806734
commit 5dce6b0015
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -326,6 +326,10 @@ export class Docx {
level = level.size(l.runProperty._size);
}
if (l.runProperty._color) {
level = level.color(l.runProperty._color);
}
if (l.runProperty._fonts) {
let f = wasm.createRunFonts();
if (l.runProperty._fonts._ascii) {

View File

@ -1,6 +1,6 @@
{
"name": "docx-wasm",
"version": "0.4.18-rc34",
"version": "0.4.18-rc35",
"main": "dist/node/index.js",
"browser": "dist/web/index.js",
"author": "bokuweb <bokuweb12@gmail.com>",