@gct-paas/word 0.1.39 → 0.1.42
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/dist/core/data/DataManager.d.ts +4 -2
- package/dist/index.es.js +1983 -179
- package/dist/runtime/_register_/runtime/SuiteRuntime.d.ts +4 -0
- package/dist/runtime/factories/useWidgetInitializer.d.ts +3 -1
- package/dist/runtime/interface/change-diff.d.ts +2 -0
- package/dist/sdk/doc-runtime/composables/useDocOperations.d.ts +2 -0
- package/dist/sdk/engine/index.d.ts +0 -1
- package/dist/sdk/types/field-model-query.d.ts +2 -0
- package/dist/sdk/types/index.d.ts +16 -7
- package/dist/utils/func/render.d.ts +11 -3
- package/package.json +5 -4
|
@@ -175,8 +175,10 @@ export declare class DataManager {
|
|
|
175
175
|
*/
|
|
176
176
|
applyInitData(initDataMap: Record<string, any>): void;
|
|
177
177
|
/**
|
|
178
|
-
*
|
|
179
|
-
*
|
|
178
|
+
* 按版面铺砖槽位补齐子表行数:
|
|
179
|
+
* - 固定表:按槽位补齐自身子表行
|
|
180
|
+
* - 二维/检验表:仅补齐关联轴(如 f_ewblink / f_jianyan2)
|
|
181
|
+
* 不处理主体轴(如 f_ewb / f_jianyan1),避免覆盖接口行或误扩纵向轴。
|
|
180
182
|
*/
|
|
181
183
|
private syncSubTableRowsToLayout;
|
|
182
184
|
/** 子表在 rawData 中的行数(支持尚未转成数组的 { data: [] } 接口形态,此时返回 0 且不在此阶段强转) */
|