@zyui/components 1.0.50 → 1.0.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/index.js +62 -62
- package/es/index.mjs +13411 -13393
- package/es/index.umd.js +64 -64
- package/es/src/components/ProEditor/plugins/helper.d.ts +2 -0
- package/lib/src/components/ProEditor/plugins/helper.d.ts +2 -0
- package/package.json +1 -1
|
@@ -34,6 +34,8 @@ export declare const processTableWidth: (doc: Document) => void;
|
|
|
34
34
|
export declare const processTableLayout: (doc: Document) => void;
|
|
35
35
|
/**
|
|
36
36
|
* td的宽度按照table的宽度tr的宽度设置为百分比
|
|
37
|
+
* 核心:优先查找没有合并单元格(colspan/rowspan)的行,且该行每个单元格都有 width 定义
|
|
38
|
+
* 以此作为列宽基准,精确处理 Word 导出表格第一行为标题合并单元格的场景
|
|
37
39
|
* @param doc
|
|
38
40
|
*/
|
|
39
41
|
export declare const processTdWidth: (doc: Document) => void;
|
|
@@ -34,6 +34,8 @@ export declare const processTableWidth: (doc: Document) => void;
|
|
|
34
34
|
export declare const processTableLayout: (doc: Document) => void;
|
|
35
35
|
/**
|
|
36
36
|
* td的宽度按照table的宽度tr的宽度设置为百分比
|
|
37
|
+
* 核心:优先查找没有合并单元格(colspan/rowspan)的行,且该行每个单元格都有 width 定义
|
|
38
|
+
* 以此作为列宽基准,精确处理 Word 导出表格第一行为标题合并单元格的场景
|
|
37
39
|
* @param doc
|
|
38
40
|
*/
|
|
39
41
|
export declare const processTdWidth: (doc: Document) => void;
|