@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.
@@ -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 并复制关联交叉区行。
@@ -1,2 +1,3 @@
1
1
  export { profile as checkTableProfile } from './profile';
2
+ export * from './runtime';
2
3
  export * from './profile';
@@ -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,3 @@
1
+ /** 检验项 type_ → 提交用 typed value 字段 */
2
+ export declare const CHECK_TABLE_TYPE_TO_VALUE_FIELD: Record<string, string>;
3
+ export declare function shouldSyncCheckTableLabel(type_: string): boolean;
@@ -0,0 +1,2 @@
1
+ export * from './check-table-value-fields';
2
+ export * from './check-table-label-enricher';
@@ -0,0 +1,5 @@
1
+ import { Doc } from '../../../../../../core';
2
+ import { IActionButtonItem } from '../../../../../../types/main.type';
3
+ export declare const beforeBtnClick: (params: {
4
+ btn: IActionButtonItem;
5
+ }, doc: Doc) => Promise<void>;