@gct-paas/word 0.1.52-beta.8 → 0.1.53

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.
Files changed (25) hide show
  1. package/dist/core/data/DataManager.d.ts +2 -0
  2. package/dist/core/layout/handlers/FieldHandler.d.ts +1 -1
  3. package/dist/core/layout/handlers/fields/FieldBaseHandler.d.ts +7 -0
  4. package/dist/domain/field/field-binding.d.ts +4 -0
  5. package/dist/domain/table/business/check/check-table/index.d.ts +1 -0
  6. package/dist/domain/table/business/check/check-table/runtime/check-table-label-enricher.d.ts +4 -0
  7. package/dist/domain/table/business/check/check-table/runtime/check-table-value-fields.d.ts +3 -0
  8. package/dist/domain/table/business/check/check-table/runtime/index.d.ts +2 -0
  9. package/dist/domain/table/business/check/check-table/runtime/register-handlers.d.ts +1 -0
  10. package/dist/domain/table/business/warehouse/warehouse-allocate/profile/field-keys.d.ts +2 -1
  11. package/dist/domain/table/business/warehouse/warehouse-allocate/runtime/before-btn-click.d.ts +5 -0
  12. package/dist/domain/table/business/warehouse/warehouse-inventory/runtime/stocktake-calc.d.ts +2 -0
  13. package/dist/index.es.js +1453 -1209
  14. package/dist/runtime/_register_/runtime/SuiteRuntime.d.ts +2 -0
  15. package/dist/runtime/canvas/table/render/material-consume/material-consume-table-controller.d.ts +6 -4
  16. package/dist/runtime/canvas/table/render/material-consume/sync-material-info.d.ts +2 -0
  17. package/dist/sdk/doc-runtime/composables/useDocOperations.d.ts +5 -0
  18. package/dist/sdk/doc-runtime/factories/document-initializer.d.ts +2 -0
  19. package/dist/sdk/types/field-model-query.d.ts +3 -0
  20. package/dist/sdk/types/index.d.ts +5 -0
  21. package/dist/suites/edhr/check-table/check-table-dyn-value.d.ts +17 -1
  22. package/dist/types/main.type.d.ts +43 -0
  23. package/dist/utils/TriggerUtil.d.ts +1 -1
  24. package/dist/word.css +69 -69
  25. package/package.json +1 -1
@@ -1,4 +1,5 @@
1
1
  import { FieldScope, FieldService, ModelService, FieldMeta, ModelMeta } from '../../../capabilities/model-field-runtime';
2
+ import { FIELD_TYPE } from '../../../domain/field/field-type';
2
3
  import { ComponentService } from '../../../capabilities/component-registry';
3
4
  import { PanelRouterService } from '../../../capabilities/panel/router/service';
4
5
  import { PanelSchemaService } from '../../../capabilities/panel/schema/service';
@@ -33,6 +34,7 @@ export declare class SuiteRuntime implements FieldModelQuery {
33
34
  */
34
35
  ensureModelFieldsReady(modelKey: ModelKey): Promise<void>;
35
36
  getMasterSlaveFieldList(modelKey: ModelKey): FieldMeta[];
37
+ getFieldManifest(type: FIELD_TYPE): import('../../../capabilities/field-manifest').FieldManifest | undefined;
36
38
  reloadFields(modelKey: ModelKey): Promise<import('../../../capabilities/model-field-runtime').FieldListResult>;
37
39
  reloadModel(modelKey: ModelKey): Promise<[ModelMeta | undefined, import('../../../capabilities/model-field-runtime').FieldListResult]>;
38
40
  dispose(): void;
@@ -163,9 +163,10 @@ export declare class MaterialConsumeTableController {
163
163
  * @param str
164
164
  */
165
165
  protected parseScanStr(str: string, option: {
166
- dataManager: DataManager;
166
+ doc: Doc;
167
+ subModelKey: string;
167
168
  subFieldKey: string;
168
- }, subModelKey: string): Promise<void>;
169
+ }): Promise<void>;
169
170
  /** 扫描是否已经打开 */
170
171
  isScanOpen: boolean;
171
172
  /**
@@ -173,9 +174,10 @@ export declare class MaterialConsumeTableController {
173
174
  * @param opts
174
175
  */
175
176
  openScanModal(title: string, option: {
176
- dataManager: DataManager;
177
+ doc: Doc;
178
+ subModelKey: string;
177
179
  subFieldKey: string;
178
- }, subModelKey: string): Promise<void>;
180
+ }): Promise<void>;
179
181
  /**
180
182
  * 打开 BOM 弹窗
181
183
  */
@@ -0,0 +1,2 @@
1
+ import { DocModel } from '../../../../../core/model';
2
+ export declare const syncMaterialConsumeTableBomInfo: (templateId: string, docModel: DocModel) => Promise<void>;
@@ -3,6 +3,7 @@ import { Doc } from '../../../core';
3
3
  import { FieldChangeItem, WidgetFieldMetaMap } from '../../../runtime/interface/change-diff';
4
4
  import { DesignerValidationResult } from '../../types/designer-validation';
5
5
  import { SubTableInfo } from '../../types';
6
+ import { IActionButtonItem } from '../../../types/main.type';
6
7
  /** 数据变更基线上下文 */
7
8
  export interface DocBaselineContext {
8
9
  baselineSnapshot: Record<string, any> | undefined;
@@ -40,6 +41,10 @@ export interface DocOperations {
40
41
  getUnsavedChanges(options?: DocGetUnsavedChangesOptions): DocUnsavedChanges;
41
42
  /** 标记当前文档为已保存 */
42
43
  markAsSaved(): void;
44
+ /** 主工程底部按钮点击前事件 */
45
+ beforeBtnClick(params: {
46
+ btn: IActionButtonItem;
47
+ }): Promise<void>;
43
48
  }
44
49
  /**
45
50
  * 文档操作组合式函数
@@ -22,6 +22,7 @@ export interface PrepareFieldContextOptions {
22
22
  }
23
23
  export interface DocumentFieldContext {
24
24
  mainModelKey: string;
25
+ fieldList: FieldMeta[];
25
26
  masterSlaveList: FieldMeta[];
26
27
  }
27
28
  export declare function prepareDocumentFieldContext(options: PrepareFieldContextOptions): Promise<DocumentFieldContext>;
@@ -32,6 +33,7 @@ export interface PrepareRenderDataOptions {
32
33
  query: Record<string, any>;
33
34
  instances: any[];
34
35
  subTableInfoList: any[];
36
+ fieldList: FieldMeta[];
35
37
  masterSlaveList: FieldMeta[];
36
38
  }
37
39
  export declare function prepareDocumentRenderData(options: PrepareRenderDataOptions): Promise<any>;
@@ -1,4 +1,6 @@
1
1
  import { FieldListResult, FieldMeta, FieldScope, ModelMeta } from '../../capabilities/model-field-runtime';
2
+ import { FieldManifest } from '../../capabilities/field-manifest';
3
+ import { FIELD_TYPE } from '../../domain/field/field-type';
2
4
  /**
3
5
  * 字段/模型查询能力(不依赖 Vue provide/inject)。
4
6
  * 由 {@link SuiteRuntime} 实现。
@@ -18,4 +20,5 @@ export interface FieldModelQuery {
18
20
  ensureModelFieldsReady(modelKey: ModelKey): Promise<void>;
19
21
  reloadFields(modelKey: ModelKey): Promise<FieldListResult>;
20
22
  reloadModel(modelKey: ModelKey): Promise<[ModelMeta | undefined, FieldListResult]>;
23
+ getFieldManifest(type: FIELD_TYPE): FieldManifest | undefined;
21
24
  }
@@ -7,6 +7,7 @@ import { OnlineFormInstanceResponse, OnlineFormTmplResponse } from '@gct-paas/ap
7
7
  import { FieldChangeItem } from '../../runtime/interface/change-diff';
8
8
  import { IFormTmplConfigController } from './form-tmpl-config.types';
9
9
  import { DesignerValidationResult } from './designer-validation';
10
+ import { IActionButtonItem } from '../../types/main.type';
10
11
  export type { DocUnsavedChanges, DocGetUnsavedChangesOptions, } from '../doc-runtime/composables/useDocOperations';
11
12
  export type { DesignerValidationError, DesignerValidationResult, DesignerValidationSource, } from './designer-validation';
12
13
  export type { FieldModelQuery } from './field-model-query';
@@ -109,6 +110,10 @@ export interface DocControllerMethods extends DocOperations {
109
110
  getUnsavedChanges(options?: DocGetUnsavedChangesOptions): DocUnsavedChanges;
110
111
  /** 标记当前文档为已保存 */
111
112
  markAsSaved(): void;
113
+ /** 主工程底部按钮点击前事件 */
114
+ beforeBtnClick(params: {
115
+ btn: IActionButtonItem;
116
+ }): Promise<void>;
112
117
  /** 向指定字段/组件设置批注信息 */
113
118
  setAnnotation(ids: string[], list: any[]): void;
114
119
  }
@@ -1,4 +1,20 @@
1
+ import { Doc } from '../../../core/view/Doc';
1
2
  import { HandlerContext } from '../../../core/layout/types';
3
+ import { FIELD_TYPE } from '../../../domain/field/field-type';
4
+ type DynAttrsTransformRow = {
5
+ from: string;
6
+ to: string;
7
+ transform?: (value: unknown, fieldType: FIELD_TYPE, row: Record<string, unknown>, baseProps?: Record<string, unknown>) => unknown;
8
+ };
9
+ type DynCompConfig = {
10
+ fieldType: FIELD_TYPE;
11
+ attrsTransform: DynAttrsTransformRow[];
12
+ };
13
+ export declare function getDynConfig(type_?: string): DynCompConfig;
14
+ export declare function buildPropsFromRow(row: Record<string, unknown>, config: DynCompConfig, baseProps?: Record<string, unknown>): Record<string, unknown>;
15
+ export declare function isCheckTableCrossValuePath(path: string): boolean;
16
+ export declare function readCheckTableRowMetaByValuePath(doc: Doc, valuePath: string): Record<string, unknown>;
2
17
  export declare function isCheckTableCrossValueLayout(ctx: HandlerContext): boolean;
3
18
  /** layout:克隆 wr 并写入动态 widgetMeta,valuePath 保持 value_ */
4
- export declare function prepareDynLayoutWr(ctx: HandlerContext): HandlerContext;
19
+ export declare function prepareDynLayoutWr(ctx: HandlerContext, isLinkNotSet?: boolean): HandlerContext;
20
+ export {};
@@ -0,0 +1,43 @@
1
+ /**
2
+ * 主工程:表单单个的按钮配置
3
+ * @export
4
+ * @interface IActionButtonItem
5
+ */
6
+ export interface IActionButtonItem {
7
+ /** 是否启用 */
8
+ enable: 0 | 1;
9
+ /** 按钮类型 */
10
+ type: string;
11
+ /** 按钮别名 */
12
+ alias?: string;
13
+ /** 签名方式 */
14
+ signatureType?: string;
15
+ /** 退回 */
16
+ dismissTo?: string;
17
+ /**退回规则 */
18
+ dismissRule?: string;
19
+ /** 是否是自定义按钮 */
20
+ isCustom: boolean;
21
+ /** 自定义按钮的流转动作 */
22
+ flowAction?: string;
23
+ /** 按钮样式 */
24
+ style?: any;
25
+ /** 是否开启审批意见 */
26
+ opinionMode?: string;
27
+ /** 是否需要卡控配置 */
28
+ noControl?: boolean;
29
+ /** 是否开启备注(基础表单按钮用) */
30
+ enableMemo?: boolean;
31
+ /** 内置还是自定义 */
32
+ buttonType: 'builtin' | 'custom';
33
+ /** 事件 */
34
+ events?: any[];
35
+ /** 自定义按钮标题 */
36
+ customTitle?: string;
37
+ /** 不需要刷新表单 */
38
+ notNeedRefreshForm?: boolean;
39
+ /** 来自于表单变更审核 */
40
+ belongFormChangeApproval?: boolean;
41
+ /** 回调接口api */
42
+ api?: Function;
43
+ }
@@ -1,4 +1,4 @@
1
- export type TriggerName = 'OPEN_DATA_INIT_DATASOURCE_FORM_MODEL_MODAL' | 'OPEN_DATA_INIT_DATASOURCE_INPUT_PARAMS_MODAL' | 'OPEN_DATA_INIT_DATASOURCE_OUTPUT_PARAMS_MODAL' | 'OPEN_DATA_INIT_OBJ_INIT_EDIT_MODEL' | 'OPEN_FIELD_HYPERLINK_MODAL' | 'OPEN_CHECK_TABLE_DS_MODAL' | 'OPEN_MATERIAL_CONSUME_TABLE_PARSE_RULE_MODAL' | 'OPEN_MATERIAL_CONSUME_TABLE_ADD_MATERIAL_MODAL' | 'OPEN_MATERIAL_CONSUME_TABLE_SCAN_MODAL' | 'OPEN_MATERIAL_CONSUME_TABLE_BOM_MODAL' | 'OPEN_WAREHOUSE_INVENTORY_TABLE_SCAN_MODAL' | 'OPEN_WAREHOUSE_INVENTORY_TABLE_PARSE_RULE_MODAL' | 'OPEN_WAREHOUSE_ALLOCATE_TABLE_SCAN_MODAL' | 'OPEN_WAREHOUSE_ALLOCATE_TABLE_PARSE_RULE_MODAL' | 'OPEN_FORMULA_EDITOR_MODAL';
1
+ export type TriggerName = 'OPEN_COMMON_CONFIRM_MODAL' | 'OPEN_DATA_INIT_DATASOURCE_FORM_MODEL_MODAL' | 'OPEN_DATA_INIT_DATASOURCE_INPUT_PARAMS_MODAL' | 'OPEN_DATA_INIT_DATASOURCE_OUTPUT_PARAMS_MODAL' | 'OPEN_DATA_INIT_OBJ_INIT_EDIT_MODEL' | 'OPEN_FIELD_HYPERLINK_MODAL' | 'OPEN_CHECK_TABLE_DS_MODAL' | 'OPEN_MATERIAL_CONSUME_TABLE_PARSE_RULE_MODAL' | 'OPEN_MATERIAL_CONSUME_TABLE_ADD_MATERIAL_MODAL' | 'OPEN_MATERIAL_CONSUME_TABLE_SCAN_MODAL' | 'OPEN_MATERIAL_CONSUME_TABLE_BOM_MODAL' | 'OPEN_WAREHOUSE_INVENTORY_TABLE_SCAN_MODAL' | 'OPEN_WAREHOUSE_INVENTORY_TABLE_PARSE_RULE_MODAL' | 'OPEN_WAREHOUSE_ALLOCATE_TABLE_SCAN_MODAL' | 'OPEN_WAREHOUSE_ALLOCATE_TABLE_PARSE_RULE_MODAL' | 'OPEN_FORMULA_EDITOR_MODAL';
2
2
  export type TriggerHandler = (name: TriggerName, options?: any) => Promise<any>;
3
3
  interface TriggerUtilHandlers {
4
4
  handle?: TriggerHandler;
package/dist/word.css CHANGED
@@ -7283,7 +7283,7 @@ textarea[data-v-e709484b]::placeholder {
7283
7283
  * 字段交互态配色。
7284
7284
  * TS 侧见 field-state.ts,修改时请同步两处。
7285
7285
  */
7286
- .gct-basic-popper-wrap[data-v-6ecd8ef9] {
7286
+ .gct-basic-popper-wrap[data-v-4756c59a] {
7287
7287
  position: relative;
7288
7288
  height: 100%;
7289
7289
  width: 100%;
@@ -7291,21 +7291,21 @@ textarea[data-v-e709484b]::placeholder {
7291
7291
  min-width: 136px;
7292
7292
  width: var(--dropdown-popper-width, 136px);
7293
7293
  }
7294
- .gct-basic-popper-wrap .popper-scrollbar[data-v-6ecd8ef9] {
7294
+ .gct-basic-popper-wrap .popper-scrollbar[data-v-4756c59a] {
7295
7295
  position: relative;
7296
7296
  padding: 4px;
7297
7297
  }
7298
- .gct-basic-popper-wrap .popper-scrollbar .popper-container[data-v-6ecd8ef9] {
7298
+ .gct-basic-popper-wrap .popper-scrollbar .popper-container[data-v-4756c59a] {
7299
7299
  position: relative;
7300
7300
  width: 100%;
7301
7301
  max-height: 300px;
7302
7302
  }
7303
- .gct-basic-popper-wrap .popper-scrollbar .select-group .group-name[data-v-6ecd8ef9] {
7303
+ .gct-basic-popper-wrap .popper-scrollbar .select-group .group-name[data-v-4756c59a] {
7304
7304
  padding: 8px 8px 4px 8px;
7305
7305
  font-size: 12px;
7306
7306
  color: #999;
7307
7307
  }
7308
- .gct-basic-popper-wrap .popper-scrollbar .option-item[data-v-6ecd8ef9] {
7308
+ .gct-basic-popper-wrap .popper-scrollbar .option-item[data-v-4756c59a] {
7309
7309
  position: relative;
7310
7310
  display: flex;
7311
7311
  align-items: center;
@@ -7317,31 +7317,31 @@ textarea[data-v-e709484b]::placeholder {
7317
7317
  padding: 5px 8px;
7318
7318
  transition: all 0.3s ease;
7319
7319
  }
7320
- .gct-basic-popper-wrap .popper-scrollbar .option-item[data-v-6ecd8ef9]:not(.selected, .disabled):hover {
7320
+ .gct-basic-popper-wrap .popper-scrollbar .option-item[data-v-4756c59a]:not(.selected, .disabled):hover {
7321
7321
  background: rgba(13, 13, 13, 0.06);
7322
7322
  }
7323
- .gct-basic-popper-wrap .popper-scrollbar .option-item:not(.selected, .disabled):hover .edit-icon[data-v-6ecd8ef9] {
7323
+ .gct-basic-popper-wrap .popper-scrollbar .option-item:not(.selected, .disabled):hover .edit-icon[data-v-4756c59a] {
7324
7324
  display: inline-flex;
7325
7325
  }
7326
- .gct-basic-popper-wrap .popper-scrollbar .option-item + .option-item[data-v-6ecd8ef9] {
7326
+ .gct-basic-popper-wrap .popper-scrollbar .option-item + .option-item[data-v-4756c59a] {
7327
7327
  margin-top: 4px;
7328
7328
  }
7329
- .gct-basic-popper-wrap .popper-scrollbar .option-item.disabled[data-v-6ecd8ef9] {
7329
+ .gct-basic-popper-wrap .popper-scrollbar .option-item.disabled[data-v-4756c59a] {
7330
7330
  opacity: 0.3;
7331
7331
  pointer-events: none;
7332
7332
  user-select: none;
7333
7333
  }
7334
- .gct-basic-popper-wrap .popper-scrollbar .option-item.selected[data-v-6ecd8ef9] {
7334
+ .gct-basic-popper-wrap .popper-scrollbar .option-item.selected[data-v-4756c59a] {
7335
7335
  background: #e3eafc;
7336
7336
  }
7337
- .gct-basic-popper-wrap .popper-scrollbar .option-item .o-icon[data-v-6ecd8ef9] {
7337
+ .gct-basic-popper-wrap .popper-scrollbar .option-item .o-icon[data-v-4756c59a] {
7338
7338
  display: inline-flex;
7339
7339
  width: 16px;
7340
7340
  height: 16px;
7341
7341
  margin-right: 8px;
7342
7342
  flex-shrink: 0;
7343
7343
  }
7344
- .gct-basic-popper-wrap .popper-scrollbar .option-item .v-popper.option-label-tooltip[data-v-6ecd8ef9] {
7344
+ .gct-basic-popper-wrap .popper-scrollbar .option-item .v-popper.option-label-tooltip[data-v-4756c59a] {
7345
7345
  display: inline-flex;
7346
7346
  color: #212528;
7347
7347
  flex: 1;
@@ -7350,7 +7350,7 @@ textarea[data-v-e709484b]::placeholder {
7350
7350
  white-space: nowrap;
7351
7351
  pointer-events: all;
7352
7352
  }
7353
- .gct-basic-popper-wrap .popper-scrollbar .option-item .option-label[data-v-6ecd8ef9] {
7353
+ .gct-basic-popper-wrap .popper-scrollbar .option-item .option-label[data-v-4756c59a] {
7354
7354
  display: inline-block;
7355
7355
  width: 100%;
7356
7356
  line-height: 24px;
@@ -7360,7 +7360,7 @@ textarea[data-v-e709484b]::placeholder {
7360
7360
  word-wrap: normal;
7361
7361
  cursor: default;
7362
7362
  }
7363
- .gct-basic-popper-wrap .popper-scrollbar .empty[data-v-6ecd8ef9] {
7363
+ .gct-basic-popper-wrap .popper-scrollbar .empty[data-v-4756c59a] {
7364
7364
  width: 100%;
7365
7365
  height: 90px;
7366
7366
  display: flex;
@@ -7369,13 +7369,13 @@ textarea[data-v-e709484b]::placeholder {
7369
7369
  color: #c3c3c3;
7370
7370
  font-size: 13px;
7371
7371
  }
7372
- .gct-basic-select[data-v-6ecd8ef9] {
7372
+ .gct-basic-select[data-v-4756c59a] {
7373
7373
  display: inline-block;
7374
7374
  vertical-align: middle;
7375
7375
  line-height: 1;
7376
7376
  width: 100%;
7377
7377
  }
7378
- .gct-basic-select .gct-basic-select-container[data-v-6ecd8ef9] {
7378
+ .gct-basic-select .gct-basic-select-container[data-v-4756c59a] {
7379
7379
  position: relative;
7380
7380
  display: flex;
7381
7381
  align-items: center;
@@ -7391,56 +7391,56 @@ textarea[data-v-e709484b]::placeholder {
7391
7391
  border: 1px solid #d9d9d9;
7392
7392
  transition: all 0.3s ease;
7393
7393
  }
7394
- .gct-basic-select .gct-basic-select-container[data-v-6ecd8ef9]:not(.multiple) {
7394
+ .gct-basic-select .gct-basic-select-container[data-v-4756c59a]:not(.multiple) {
7395
7395
  white-space: nowrap;
7396
7396
  }
7397
- .gct-basic-select .gct-basic-select-container.multiple[data-v-6ecd8ef9] {
7397
+ .gct-basic-select .gct-basic-select-container.multiple[data-v-4756c59a] {
7398
7398
  flex-wrap: wrap;
7399
7399
  align-content: flex-start;
7400
7400
  padding-top: 3px;
7401
7401
  padding-bottom: 3px;
7402
7402
  gap: 3px;
7403
7403
  }
7404
- .gct-basic-select .gct-basic-select-container.disabled[data-v-6ecd8ef9] {
7404
+ .gct-basic-select .gct-basic-select-container.disabled[data-v-4756c59a] {
7405
7405
  cursor: not-allowed;
7406
7406
  background: #f5f5f5;
7407
7407
  border-color: #d9d9d9;
7408
7408
  color: rgba(0, 0, 0, 0.25);
7409
7409
  }
7410
- .gct-basic-select .gct-basic-select-container.disabled[data-v-6ecd8ef9]:hover {
7410
+ .gct-basic-select .gct-basic-select-container.disabled[data-v-4756c59a]:hover {
7411
7411
  border-color: #d9d9d9;
7412
7412
  }
7413
- .gct-basic-select .gct-basic-select-container.disabled .select-selection-item[data-v-6ecd8ef9],
7414
- .gct-basic-select .gct-basic-select-container.disabled .placeholder[data-v-6ecd8ef9],
7415
- .gct-basic-select .gct-basic-select-container.disabled .selection-tag-content[data-v-6ecd8ef9] {
7413
+ .gct-basic-select .gct-basic-select-container.disabled .select-selection-item[data-v-4756c59a],
7414
+ .gct-basic-select .gct-basic-select-container.disabled .placeholder[data-v-4756c59a],
7415
+ .gct-basic-select .gct-basic-select-container.disabled .selection-tag-content[data-v-4756c59a] {
7416
7416
  color: rgba(0, 0, 0, 0.25);
7417
7417
  }
7418
- .gct-basic-select .gct-basic-select-container.disabled .change-icon[data-v-6ecd8ef9],
7419
- .gct-basic-select .gct-basic-select-container.disabled .close-all-icon[data-v-6ecd8ef9],
7420
- .gct-basic-select .gct-basic-select-container.disabled .selection-tag-remove[data-v-6ecd8ef9] {
7418
+ .gct-basic-select .gct-basic-select-container.disabled .change-icon[data-v-4756c59a],
7419
+ .gct-basic-select .gct-basic-select-container.disabled .close-all-icon[data-v-4756c59a],
7420
+ .gct-basic-select .gct-basic-select-container.disabled .selection-tag-remove[data-v-4756c59a] {
7421
7421
  cursor: not-allowed;
7422
7422
  opacity: 0.5;
7423
7423
  }
7424
- .gct-basic-select .gct-basic-select-container.readonly[data-v-6ecd8ef9] {
7424
+ .gct-basic-select .gct-basic-select-container.readonly[data-v-4756c59a] {
7425
7425
  cursor: default;
7426
7426
  background: #f5f6f8;
7427
7427
  border-color: #d9d9d9;
7428
7428
  }
7429
- .gct-basic-select .gct-basic-select-container.readonly[data-v-6ecd8ef9]:hover {
7429
+ .gct-basic-select .gct-basic-select-container.readonly[data-v-4756c59a]:hover {
7430
7430
  border-color: #d9d9d9;
7431
7431
  }
7432
- .gct-basic-select .gct-basic-select-container.readonly .select-selection-item[data-v-6ecd8ef9],
7433
- .gct-basic-select .gct-basic-select-container.readonly .placeholder[data-v-6ecd8ef9],
7434
- .gct-basic-select .gct-basic-select-container.readonly .selection-tag-content[data-v-6ecd8ef9] {
7432
+ .gct-basic-select .gct-basic-select-container.readonly .select-selection-item[data-v-4756c59a],
7433
+ .gct-basic-select .gct-basic-select-container.readonly .placeholder[data-v-4756c59a],
7434
+ .gct-basic-select .gct-basic-select-container.readonly .selection-tag-content[data-v-4756c59a] {
7435
7435
  color: rgba(0, 0, 0, 0.65);
7436
7436
  }
7437
- .gct-basic-select .gct-basic-select-container.readonly .change-icon[data-v-6ecd8ef9],
7438
- .gct-basic-select .gct-basic-select-container.readonly .close-all-icon[data-v-6ecd8ef9],
7439
- .gct-basic-select .gct-basic-select-container.readonly .selection-tag-remove[data-v-6ecd8ef9] {
7437
+ .gct-basic-select .gct-basic-select-container.readonly .change-icon[data-v-4756c59a],
7438
+ .gct-basic-select .gct-basic-select-container.readonly .close-all-icon[data-v-4756c59a],
7439
+ .gct-basic-select .gct-basic-select-container.readonly .selection-tag-remove[data-v-4756c59a] {
7440
7440
  cursor: default;
7441
7441
  opacity: 0.5;
7442
7442
  }
7443
- .gct-basic-select .gct-basic-select-container .select-selection-item[data-v-6ecd8ef9] {
7443
+ .gct-basic-select .gct-basic-select-container .select-selection-item[data-v-4756c59a] {
7444
7444
  font-size: 13px;
7445
7445
  max-width: 100%;
7446
7446
  line-height: 22px;
@@ -7450,7 +7450,7 @@ textarea[data-v-e709484b]::placeholder {
7450
7450
  word-wrap: normal;
7451
7451
  color: #0d0d0d;
7452
7452
  }
7453
- .gct-basic-select .gct-basic-select-container .select-selection-tag[data-v-6ecd8ef9] {
7453
+ .gct-basic-select .gct-basic-select-container .select-selection-tag[data-v-4756c59a] {
7454
7454
  position: relative;
7455
7455
  display: flex;
7456
7456
  flex: none;
@@ -7469,13 +7469,13 @@ textarea[data-v-e709484b]::placeholder {
7469
7469
  padding-inline-start: 4px;
7470
7470
  padding-inline-end: 4px;
7471
7471
  }
7472
- .gct-basic-select .gct-basic-select-container .select-selection-tag .selection-tag-content[data-v-6ecd8ef9] {
7472
+ .gct-basic-select .gct-basic-select-container .select-selection-tag .selection-tag-content[data-v-4756c59a] {
7473
7473
  display: inline-block;
7474
7474
  overflow: hidden;
7475
7475
  white-space: pre;
7476
7476
  text-overflow: ellipsis;
7477
7477
  }
7478
- .gct-basic-select .gct-basic-select-container .select-selection-tag .selection-tag-remove[data-v-6ecd8ef9] {
7478
+ .gct-basic-select .gct-basic-select-container .select-selection-tag .selection-tag-remove[data-v-4756c59a] {
7479
7479
  display: inline-block;
7480
7480
  align-items: center;
7481
7481
  font-style: normal;
@@ -7490,33 +7490,33 @@ textarea[data-v-e709484b]::placeholder {
7490
7490
  margin-inline-start: 4px;
7491
7491
  margin-top: -1px;
7492
7492
  }
7493
- .gct-basic-select .gct-basic-select-container .placeholder[data-v-6ecd8ef9] {
7494
- font-size: 13px;
7493
+ .gct-basic-select .gct-basic-select-container .placeholder[data-v-4756c59a] {
7494
+ font-size: 14px;
7495
7495
  max-width: 100%;
7496
- line-height: 22px;
7496
+ line-height: 1.5715;
7497
7497
  overflow: hidden;
7498
7498
  text-overflow: ellipsis;
7499
7499
  white-space: nowrap;
7500
7500
  word-wrap: normal;
7501
- color: rgba(0, 0, 0, 0.45);
7501
+ color: rgba(0, 0, 0, 0.25);
7502
7502
  }
7503
- .gct-basic-select .gct-basic-select-container .change-icon[data-v-6ecd8ef9] {
7503
+ .gct-basic-select .gct-basic-select-container .change-icon[data-v-4756c59a] {
7504
7504
  position: absolute;
7505
7505
  right: 4px;
7506
7506
  transition: all 0.3s ease;
7507
7507
  }
7508
- .gct-basic-select .gct-basic-select-container .close-all-icon[data-v-6ecd8ef9] {
7508
+ .gct-basic-select .gct-basic-select-container .close-all-icon[data-v-4756c59a] {
7509
7509
  position: absolute;
7510
7510
  right: 4px;
7511
7511
  transition: all 0.3s ease;
7512
7512
  }
7513
- .gct-basic-select .gct-basic-select-container .close-all-icon[data-v-6ecd8ef9]:hover {
7513
+ .gct-basic-select .gct-basic-select-container .close-all-icon[data-v-4756c59a]:hover {
7514
7514
  color: rgba(0, 0, 0, 0.45) !important;
7515
7515
  }
7516
- .gct-basic-select .gct-basic-select-container[data-v-6ecd8ef9]:hover {
7516
+ .gct-basic-select .gct-basic-select-container[data-v-4756c59a]:hover {
7517
7517
  border-color: #026ac8;
7518
7518
  }
7519
- .gct-basic-select .gct-basic-select-container.active .change-icon[data-v-6ecd8ef9] {
7519
+ .gct-basic-select .gct-basic-select-container.active .change-icon[data-v-4756c59a] {
7520
7520
  transform: rotate(-180deg);
7521
7521
  }
7522
7522
  /**
@@ -8762,20 +8762,20 @@ textarea[data-v-e709484b]::placeholder {
8762
8762
  .table-action .row-headers .row-header:last-child .row-add-btn[data-v-c40eef9f] .gct-icon.bottom {
8763
8763
  transform: translateY(-100%);
8764
8764
  }
8765
- .sub-table-action-container[data-v-a4364e55] {
8765
+ .sub-table-action-container[data-v-2b5fa953] {
8766
8766
  position: absolute;
8767
8767
  z-index: 999;
8768
8768
  }
8769
- .sub-table-action-bar[data-v-a4364e55],
8770
- .sub-table-action-popper[data-v-a4364e55] {
8769
+ .sub-table-action-bar[data-v-2b5fa953],
8770
+ .sub-table-action-popper[data-v-2b5fa953] {
8771
8771
  pointer-events: auto;
8772
8772
  user-select: none;
8773
8773
  }
8774
- .sub-table-action-bar[data-v-a4364e55] {
8774
+ .sub-table-action-bar[data-v-2b5fa953] {
8775
8775
  display: flex;
8776
8776
  }
8777
- .sub-table-action-bar .more-btn[data-v-a4364e55],
8778
- .sub-table-action-bar .confirm-btn[data-v-a4364e55] {
8777
+ .sub-table-action-bar .more-btn[data-v-2b5fa953],
8778
+ .sub-table-action-bar .confirm-btn[data-v-2b5fa953] {
8779
8779
  display: flex;
8780
8780
  justify-content: center;
8781
8781
  align-items: center;
@@ -8784,44 +8784,44 @@ textarea[data-v-e709484b]::placeholder {
8784
8784
  cursor: pointer;
8785
8785
  box-sizing: border-box;
8786
8786
  }
8787
- .sub-table-action-bar .more-btn[data-v-a4364e55] {
8787
+ .sub-table-action-bar .more-btn[data-v-2b5fa953] {
8788
8788
  width: 10px;
8789
8789
  background: #026ac8;
8790
8790
  border-radius: 0 4px 4px 0;
8791
8791
  }
8792
- .sub-table-action-bar .confirm-btn[data-v-a4364e55] {
8792
+ .sub-table-action-bar .confirm-btn[data-v-2b5fa953] {
8793
8793
  margin-left: 4px;
8794
8794
  border-radius: 4px;
8795
8795
  border: 1px solid #4ec262;
8796
8796
  }
8797
- .sub-table-action-popper[data-v-a4364e55] {
8797
+ .sub-table-action-popper[data-v-2b5fa953] {
8798
8798
  padding: 2px 8px;
8799
8799
  }
8800
- .sub-table-action-popper .action-menu[data-v-a4364e55] {
8800
+ .sub-table-action-popper .action-menu[data-v-2b5fa953] {
8801
8801
  padding: 4px 0;
8802
8802
  width: 220px;
8803
8803
  user-select: none;
8804
8804
  }
8805
- .sub-table-action-popper .action-menu + .action-menu[data-v-a4364e55] {
8805
+ .sub-table-action-popper .action-menu + .action-menu[data-v-2b5fa953] {
8806
8806
  margin-top: 4px;
8807
8807
  padding-top: 4px;
8808
8808
  border-top: 1px solid #efefef;
8809
8809
  }
8810
- .sub-table-action-popper .action-menu .menu-title[data-v-a4364e55] {
8810
+ .sub-table-action-popper .action-menu .menu-title[data-v-2b5fa953] {
8811
8811
  color: #bcbcbc;
8812
8812
  margin: 4px 0;
8813
8813
  }
8814
- .sub-table-action-popper .action-menu .menu-item[data-v-a4364e55] {
8814
+ .sub-table-action-popper .action-menu .menu-item[data-v-2b5fa953] {
8815
8815
  display: flex;
8816
8816
  align-items: center;
8817
8817
  padding: 8px 10px;
8818
8818
  border-radius: 4px;
8819
8819
  }
8820
- .sub-table-action-popper .action-menu .menu-item[data-v-a4364e55]:hover {
8820
+ .sub-table-action-popper .action-menu .menu-item[data-v-2b5fa953]:hover {
8821
8821
  cursor: pointer;
8822
8822
  background-color: #f2f5f8;
8823
8823
  }
8824
- .sub-table-action-popper .action-menu .menu-item .item-icon[data-v-a4364e55] {
8824
+ .sub-table-action-popper .action-menu .menu-item .item-icon[data-v-2b5fa953] {
8825
8825
  display: flex;
8826
8826
  align-items: center;
8827
8827
  justify-content: start;
@@ -8829,14 +8829,14 @@ textarea[data-v-e709484b]::placeholder {
8829
8829
  width: 20px;
8830
8830
  height: 20px;
8831
8831
  }
8832
- .sub-table-action-popper .action-menu .menu-item .item-icon.scale-large[data-v-a4364e55] {
8832
+ .sub-table-action-popper .action-menu .menu-item .item-icon.scale-large[data-v-2b5fa953] {
8833
8833
  transform: scale(1.5);
8834
8834
  }
8835
- .sub-table-action-popper .action-menu .menu-item .item-label[data-v-a4364e55] {
8835
+ .sub-table-action-popper .action-menu .menu-item .item-label[data-v-2b5fa953] {
8836
8836
  flex-grow: 1;
8837
8837
  margin-left: 8px;
8838
8838
  }
8839
- .sub-table-action-popper .action-menu .menu-item .item-label.flex-between-center[data-v-a4364e55] {
8839
+ .sub-table-action-popper .action-menu .menu-item .item-label.flex-between-center[data-v-2b5fa953] {
8840
8840
  display: flex;
8841
8841
  justify-content: space-between;
8842
8842
  align-items: center;
@@ -9407,12 +9407,12 @@ textarea[data-v-e709484b]::placeholder {
9407
9407
  color: #c3c3c3;
9408
9408
  font-size: 12px;
9409
9409
  }
9410
- .field-palette-container[data-v-811ea2df] {
9410
+ .field-palette-container[data-v-a7322f3e] {
9411
9411
  display: flex;
9412
9412
  align-items: start;
9413
9413
  flex-direction: row-reverse;
9414
9414
  }
9415
- .field-palette-container .field-pallette[data-v-811ea2df]:not(:nth-child(1)) {
9415
+ .field-palette-container .field-pallette[data-v-a7322f3e]:not(:nth-child(1)) {
9416
9416
  border-right: 1px solid #eaeaea;
9417
9417
  }
9418
9418
  .toolkit-content-widgets[data-v-393cb2aa] {
@@ -11478,13 +11478,13 @@ svg.portrait-icon[data-v-8bdb451e] {
11478
11478
  color: #ff7875;
11479
11479
  }
11480
11480
 
11481
- .fill-fields-area[data-v-abcd1f7d] {
11481
+ .fill-fields-area[data-v-fc484054] {
11482
11482
  padding: 4px;
11483
11483
  background: #f0f0f0;
11484
11484
  border-radius: 4px;
11485
11485
  margin-top: 6px;
11486
11486
  }
11487
- .attach-fields-editor[data-v-abcd1f7d] {
11487
+ .attach-fields-editor[data-v-fc484054] {
11488
11488
  padding: 4px;
11489
11489
  border-color: transparent;
11490
11490
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gct-paas/word",
3
- "version": "0.1.52-beta.8",
3
+ "version": "0.1.53",
4
4
  "description": "GCT 在线 word",
5
5
  "keywords": [
6
6
  "vue",