Skip to content

Commit

Permalink
fix: rc35
Browse files Browse the repository at this point in the history
  • Loading branch information
bokuweb committed Jan 29, 2025
1 parent 5741806 commit 2a75d34
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docx-wasm/js/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion docx-wasm/package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
Expand Down

0 comments on commit 2a75d34

Please sign in to comment.