parent
34e35d9b8f
commit
c4fd424d98
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -5,6 +5,15 @@ 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).
|
||||||
|
|
||||||
|
## @0.4.13 (29. Mar, 2024)
|
||||||
|
|
||||||
|
- Support `tblppr`
|
||||||
|
- Support `tcMar`
|
||||||
|
- Support `textAlignment`
|
||||||
|
- Support `adjustRightInd`
|
||||||
|
- Support `framePr`
|
||||||
|
- Support `pageNumType`
|
||||||
|
|
||||||
## @0.4.11 (1. Mar, 2024)
|
## @0.4.11 (1. Mar, 2024)
|
||||||
|
|
||||||
- Fixed a `title_pg` condition when read.
|
- Fixed a `title_pg` condition when read.
|
||||||
|
@ -73,7 +82,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- fixed a bug, `adjustLineHeightInTable` is not affected in js interface.
|
- fixed a bug, `adjustLineHeightInTable` is not affected in js interface.
|
||||||
- fix lineRule ts type
|
- fix lineRule ts type
|
||||||
|
|
||||||
|
|
||||||
## docx-wasm@0.0.278-rc8 (23. Jun, 2023)
|
## docx-wasm@0.0.278-rc8 (23. Jun, 2023)
|
||||||
|
|
||||||
- Support character space control
|
- Support character space control
|
||||||
|
@ -119,6 +127,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
## docx-wasm@0.0.276-rc38 (7. Dec, 2022)
|
## docx-wasm@0.0.276-rc38 (7. Dec, 2022)
|
||||||
|
|
||||||
- fix #584 Remove `%` from width.
|
- fix #584 Remove `%` from width.
|
||||||
|
|
||||||
## docx-wasm@0.0.276-rc37 (28. Nov, 2022)
|
## docx-wasm@0.0.276-rc37 (28. Nov, 2022)
|
||||||
|
|
||||||
- fixed a bug, `adjustLineHeightInTable` is not affected in js interface.
|
- fixed a bug, `adjustLineHeightInTable` is not affected in js interface.
|
||||||
|
@ -296,6 +305,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
## docx-wasm@0.0.231 (19. January, 2022)
|
## docx-wasm@0.0.231 (19. January, 2022)
|
||||||
|
|
||||||
- Fixed a pPr reader.
|
- Fixed a pPr reader.
|
||||||
|
|
||||||
## docx-wasm@0.0.229 (19. January, 2022)
|
## docx-wasm@0.0.229 (19. January, 2022)
|
||||||
|
|
||||||
- Fixed a del/ins type in runProperty
|
- Fixed a del/ins type in runProperty
|
||||||
|
|
|
@ -11,7 +11,7 @@ export type TableAlignmentType = "center" | "left" | "right";
|
||||||
export type TableLayoutType = "fixed" | "autofit";
|
export type TableLayoutType = "fixed" | "autofit";
|
||||||
|
|
||||||
export class TablePosition {
|
export class TablePosition {
|
||||||
property: TablePositionProperty;
|
property: TablePositionProperty = {};
|
||||||
|
|
||||||
leftFromText(n: number) {
|
leftFromText(n: number) {
|
||||||
this.property.leftFromText = n;
|
this.property.leftFromText = n;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "docx-wasm",
|
"name": "docx-wasm",
|
||||||
"version": "0.4.12-beta19",
|
"version": "0.4.13",
|
||||||
"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