@gct-paas/word 0.1.52-beta.8 → 0.1.52-beta.9
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 +2 -0
- package/dist/domain/table/business/check/check-table/index.d.ts +1 -0
- package/dist/domain/table/business/check/check-table/runtime/check-table-label-enricher.d.ts +4 -0
- package/dist/domain/table/business/check/check-table/runtime/check-table-value-fields.d.ts +3 -0
- package/dist/domain/table/business/check/check-table/runtime/index.d.ts +2 -0
- package/dist/domain/table/business/check/check-table/runtime/register-handlers.d.ts +1 -0
- package/dist/domain/table/business/warehouse/warehouse-allocate/runtime/before-btn-click.d.ts +5 -0
- package/dist/index.es.js +2108 -1993
- package/dist/sdk/doc-runtime/composables/useDocOperations.d.ts +5 -0
- package/dist/sdk/types/index.d.ts +5 -0
- package/dist/suites/edhr/check-table/check-table-dyn-value.d.ts +16 -0
- package/dist/types/main.type.d.ts +43 -0
- package/dist/utils/TriggerUtil.d.ts +1 -1
- package/package.json +1 -1
|
@@ -162,6 +162,8 @@ export declare class DataManager {
|
|
|
162
162
|
*/
|
|
163
163
|
private get2DByCoords;
|
|
164
164
|
private set2DByCoords;
|
|
165
|
+
/** 二维/检验表写字段后,额外 emit 带下标的字段路径,供 label enricher 等按字段匹配 */
|
|
166
|
+
private emit2DFieldPath;
|
|
165
167
|
private cleanupCrossByAxisUid;
|
|
166
168
|
/**
|
|
167
169
|
* 复制轴行插入时:若 uid 与已有行重复,换新 uid 并复制关联交叉区行。
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Doc } from '../../../../../../core';
|
|
2
|
+
import { DataEnricherRegistration } from '../../../../../../core/data/enricher-types';
|
|
3
|
+
/** 检验表交叉区 value_:按同行 type_ 补全 value_lb_ */
|
|
4
|
+
export declare function createCheckTableValueLabelEnricher(doc: Doc): DataEnricherRegistration;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|