@gct-paas/word 0.1.29 → 0.1.30
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/base/input/src/input-number.vue.d.ts +1 -1
- package/dist/base/input/src/input.vue.d.ts +6 -6
- package/dist/base/input/src/text-area.vue.d.ts +4 -4
- package/dist/base/segment-slider/src/segment-slider.vue.d.ts +2 -0
- package/dist/core/command/commands/InsertField.d.ts +1 -3
- package/dist/core/cursor/render/cursor-renderer.vue.d.ts +2 -2
- package/dist/core/layout/providers/TableInfoProvider.d.ts +3 -1
- package/dist/core/utils/adaptive-image-cell.d.ts +47 -0
- package/dist/core/view/TableCell.d.ts +3 -2
- package/dist/core/view/runs/ImageRun.d.ts +2 -0
- package/dist/index.es.js +4145 -3688
- package/dist/runtime/canvas/table/utils/index.d.ts +1 -1
- package/dist/runtime/renderer/dropdowns/components/tables/rdo-table-dropdown.vue.d.ts +14 -14
- package/dist/runtime/renderer/dropdowns/components/tables/table-dropdown.vue.d.ts +14 -14
- package/dist/sdk/doc-runtime/composables/useDocLooperAutoSaveNotify.d.ts +6 -0
- package/dist/sdk/doc-runtime/factories/useDocumentFactory.d.ts +11 -1
- package/dist/sdk/types/index.d.ts +5 -0
- package/dist/suites/edhr/panel-schema/data-load/common/form-field-select.vue.d.ts +1 -1
- package/dist/suites/edhr/paper-widget-manifest/_common_/basic.d.ts +10 -0
- package/dist/word.css +47 -32
- package/package.json +1 -1
|
@@ -84,7 +84,7 @@ export declare function mapCellsToOutlineCells(cells: any[]): {
|
|
|
84
84
|
}[];
|
|
85
85
|
export declare function groupBy<T>(list: T[], getKey: (item: T) => string): Record<string, T[]>;
|
|
86
86
|
export declare function buildPosMap<T>(layers: Record<string, T>, getRect: (layer: T) => any | null, toDom: (rect: any) => any): Record<string, any>;
|
|
87
|
-
export declare function getDataIndexLayersMap({ type, cells, isEdit, convertExtraProps }: {
|
|
87
|
+
export declare function getDataIndexLayersMap({ type, cells, isEdit, convertExtraProps, }: {
|
|
88
88
|
type: 'fixed-table' | 'check-table' | 'dynamic-table' | '2d-table';
|
|
89
89
|
cells: any[];
|
|
90
90
|
isEdit: boolean;
|
|
@@ -55,8 +55,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
55
55
|
readonly onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
56
56
|
readonly onKeypress?: ((event: KeyboardEvent) => any) | undefined;
|
|
57
57
|
readonly onKeyup?: ((event: KeyboardEvent) => any) | undefined;
|
|
58
|
-
readonly onClear?: (() => any) | undefined;
|
|
59
58
|
readonly "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
59
|
+
readonly onClear?: (() => any) | undefined;
|
|
60
60
|
readonly onPressEnter?: ((event: KeyboardEvent) => any) | undefined;
|
|
61
61
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
62
62
|
$attrs: {
|
|
@@ -73,7 +73,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
73
73
|
$root: import('vue').ComponentPublicInstance | null;
|
|
74
74
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
75
75
|
$host: Element | null;
|
|
76
|
-
$emit: ((event: "input", value: string | number, event: Event) => void) & ((event: "search", value: string | number) => void) & ((event: "blur", event: FocusEvent) => void) & ((event: "change", value: string | number, event: Event) => void) & ((event: "focus", event: FocusEvent) => void) & ((event: "keydown", event: KeyboardEvent) => void) & ((event: "keypress", event: KeyboardEvent) => void) & ((event: "keyup", event: KeyboardEvent) => void) & ((event: "
|
|
76
|
+
$emit: ((event: "input", value: string | number, event: Event) => void) & ((event: "search", value: string | number) => void) & ((event: "blur", event: FocusEvent) => void) & ((event: "change", value: string | number, event: Event) => void) & ((event: "focus", event: FocusEvent) => void) & ((event: "keydown", event: KeyboardEvent) => void) & ((event: "keypress", event: KeyboardEvent) => void) & ((event: "keyup", event: KeyboardEvent) => void) & ((event: "update:modelValue", value: string | number) => void) & ((event: "clear") => void) & ((event: "pressEnter", event: KeyboardEvent) => void);
|
|
77
77
|
$el: HTMLDivElement;
|
|
78
78
|
$options: import('vue').ComponentOptionsBase<Readonly<import('../../../../../base/input/src/types').GctInputProps> & Readonly<{
|
|
79
79
|
onInput?: ((value: string | number, event: Event) => any) | undefined;
|
|
@@ -84,14 +84,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
84
84
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
85
85
|
onKeypress?: ((event: KeyboardEvent) => any) | undefined;
|
|
86
86
|
onKeyup?: ((event: KeyboardEvent) => any) | undefined;
|
|
87
|
-
onClear?: (() => any) | undefined;
|
|
88
87
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
88
|
+
onClear?: (() => any) | undefined;
|
|
89
89
|
onPressEnter?: ((event: KeyboardEvent) => any) | undefined;
|
|
90
90
|
}>, {
|
|
91
91
|
focus: () => void;
|
|
92
92
|
blur: () => void;
|
|
93
93
|
select: () => void;
|
|
94
|
-
inputRef: import('vue').Ref<
|
|
94
|
+
inputRef: import('vue').Ref<HTMLInputElement | HTMLTextAreaElement | null, HTMLInputElement | HTMLTextAreaElement | null>;
|
|
95
95
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
96
96
|
input: (value: string | number, event: Event) => any;
|
|
97
97
|
search: (value: string | number) => any;
|
|
@@ -101,8 +101,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
101
101
|
keydown: (event: KeyboardEvent) => any;
|
|
102
102
|
keypress: (event: KeyboardEvent) => any;
|
|
103
103
|
keyup: (event: KeyboardEvent) => any;
|
|
104
|
-
clear: () => any;
|
|
105
104
|
"update:modelValue": (value: string | number) => any;
|
|
105
|
+
clear: () => any;
|
|
106
106
|
pressEnter: (event: KeyboardEvent) => any;
|
|
107
107
|
}, string, {
|
|
108
108
|
name: string;
|
|
@@ -113,10 +113,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
113
113
|
disabled: boolean;
|
|
114
114
|
size: import('../../../../../base/input/src/types').InputSize;
|
|
115
115
|
placeholder: string;
|
|
116
|
-
autocomplete: string;
|
|
117
|
-
spellcheck: boolean;
|
|
118
|
-
prefix: string;
|
|
119
116
|
modelValue: string | number;
|
|
117
|
+
prefix: string;
|
|
120
118
|
suffix: string;
|
|
121
119
|
addonBefore: string;
|
|
122
120
|
addonAfter: string;
|
|
@@ -125,8 +123,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
125
123
|
showPasswordToggle: boolean;
|
|
126
124
|
maxLength: number;
|
|
127
125
|
autofocus: boolean;
|
|
126
|
+
autocomplete: string;
|
|
128
127
|
bordered: boolean;
|
|
129
128
|
showSearchButton: boolean;
|
|
129
|
+
spellcheck: boolean;
|
|
130
130
|
customStyle: Record<string, string | number>;
|
|
131
131
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
132
132
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -157,10 +157,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
157
157
|
disabled: boolean;
|
|
158
158
|
size: import('../../../../../base/input/src/types').InputSize;
|
|
159
159
|
placeholder: string;
|
|
160
|
-
autocomplete: string;
|
|
161
|
-
spellcheck: boolean;
|
|
162
|
-
prefix: string;
|
|
163
160
|
modelValue: string | number;
|
|
161
|
+
prefix: string;
|
|
164
162
|
suffix: string;
|
|
165
163
|
addonBefore: string;
|
|
166
164
|
addonAfter: string;
|
|
@@ -169,8 +167,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
169
167
|
showPasswordToggle: boolean;
|
|
170
168
|
maxLength: number;
|
|
171
169
|
autofocus: boolean;
|
|
170
|
+
autocomplete: string;
|
|
172
171
|
bordered: boolean;
|
|
173
172
|
showSearchButton: boolean;
|
|
173
|
+
spellcheck: boolean;
|
|
174
174
|
customStyle: Record<string, string | number>;
|
|
175
175
|
}> & Omit<Readonly<import('../../../../../base/input/src/types').GctInputProps> & Readonly<{
|
|
176
176
|
onInput?: ((value: string | number, event: Event) => any) | undefined;
|
|
@@ -181,14 +181,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
181
181
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
182
182
|
onKeypress?: ((event: KeyboardEvent) => any) | undefined;
|
|
183
183
|
onKeyup?: ((event: KeyboardEvent) => any) | undefined;
|
|
184
|
-
onClear?: (() => any) | undefined;
|
|
185
184
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
185
|
+
onClear?: (() => any) | undefined;
|
|
186
186
|
onPressEnter?: ((event: KeyboardEvent) => any) | undefined;
|
|
187
|
-
}>, "select" | "blur" | "focus" | "inputRef" | ("name" | "type" | "id" | "rows" | "readonly" | "disabled" | "size" | "placeholder" | "
|
|
187
|
+
}>, "select" | "blur" | "focus" | "inputRef" | ("name" | "type" | "id" | "rows" | "readonly" | "disabled" | "size" | "placeholder" | "modelValue" | "prefix" | "suffix" | "addonBefore" | "addonAfter" | "allowClear" | "showCount" | "showPasswordToggle" | "maxLength" | "autofocus" | "autocomplete" | "bordered" | "showSearchButton" | "spellcheck" | "customStyle")> & import('vue').ShallowUnwrapRef<{
|
|
188
188
|
focus: () => void;
|
|
189
189
|
blur: () => void;
|
|
190
190
|
select: () => void;
|
|
191
|
-
inputRef: import('vue').Ref<
|
|
191
|
+
inputRef: import('vue').Ref<HTMLInputElement | HTMLTextAreaElement | null, HTMLInputElement | HTMLTextAreaElement | null>;
|
|
192
192
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
193
193
|
$slots: {
|
|
194
194
|
prependIcon?(_: {}): any;
|
|
@@ -50,8 +50,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
50
50
|
readonly onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
51
51
|
readonly onKeypress?: ((event: KeyboardEvent) => any) | undefined;
|
|
52
52
|
readonly onKeyup?: ((event: KeyboardEvent) => any) | undefined;
|
|
53
|
-
readonly onClear?: (() => any) | undefined;
|
|
54
53
|
readonly "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
54
|
+
readonly onClear?: (() => any) | undefined;
|
|
55
55
|
readonly onPressEnter?: ((event: KeyboardEvent) => any) | undefined;
|
|
56
56
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
57
57
|
$attrs: {
|
|
@@ -68,7 +68,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
68
68
|
$root: import('vue').ComponentPublicInstance | null;
|
|
69
69
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
70
70
|
$host: Element | null;
|
|
71
|
-
$emit: ((event: "input", value: string | number, event: Event) => void) & ((event: "search", value: string | number) => void) & ((event: "blur", event: FocusEvent) => void) & ((event: "change", value: string | number, event: Event) => void) & ((event: "focus", event: FocusEvent) => void) & ((event: "keydown", event: KeyboardEvent) => void) & ((event: "keypress", event: KeyboardEvent) => void) & ((event: "keyup", event: KeyboardEvent) => void) & ((event: "
|
|
71
|
+
$emit: ((event: "input", value: string | number, event: Event) => void) & ((event: "search", value: string | number) => void) & ((event: "blur", event: FocusEvent) => void) & ((event: "change", value: string | number, event: Event) => void) & ((event: "focus", event: FocusEvent) => void) & ((event: "keydown", event: KeyboardEvent) => void) & ((event: "keypress", event: KeyboardEvent) => void) & ((event: "keyup", event: KeyboardEvent) => void) & ((event: "update:modelValue", value: string | number) => void) & ((event: "clear") => void) & ((event: "pressEnter", event: KeyboardEvent) => void);
|
|
72
72
|
$el: HTMLDivElement;
|
|
73
73
|
$options: import('vue').ComponentOptionsBase<Readonly<import('../../../../../base/input/src/types').GctInputProps> & Readonly<{
|
|
74
74
|
onInput?: ((value: string | number, event: Event) => any) | undefined;
|
|
@@ -79,14 +79,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
79
79
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
80
80
|
onKeypress?: ((event: KeyboardEvent) => any) | undefined;
|
|
81
81
|
onKeyup?: ((event: KeyboardEvent) => any) | undefined;
|
|
82
|
-
onClear?: (() => any) | undefined;
|
|
83
82
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
83
|
+
onClear?: (() => any) | undefined;
|
|
84
84
|
onPressEnter?: ((event: KeyboardEvent) => any) | undefined;
|
|
85
85
|
}>, {
|
|
86
86
|
focus: () => void;
|
|
87
87
|
blur: () => void;
|
|
88
88
|
select: () => void;
|
|
89
|
-
inputRef: import('vue').Ref<
|
|
89
|
+
inputRef: import('vue').Ref<HTMLInputElement | HTMLTextAreaElement | null, HTMLInputElement | HTMLTextAreaElement | null>;
|
|
90
90
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
91
91
|
input: (value: string | number, event: Event) => any;
|
|
92
92
|
search: (value: string | number) => any;
|
|
@@ -96,8 +96,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
96
96
|
keydown: (event: KeyboardEvent) => any;
|
|
97
97
|
keypress: (event: KeyboardEvent) => any;
|
|
98
98
|
keyup: (event: KeyboardEvent) => any;
|
|
99
|
-
clear: () => any;
|
|
100
99
|
"update:modelValue": (value: string | number) => any;
|
|
100
|
+
clear: () => any;
|
|
101
101
|
pressEnter: (event: KeyboardEvent) => any;
|
|
102
102
|
}, string, {
|
|
103
103
|
name: string;
|
|
@@ -108,10 +108,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
108
108
|
disabled: boolean;
|
|
109
109
|
size: import('../../../../../base/input/src/types').InputSize;
|
|
110
110
|
placeholder: string;
|
|
111
|
-
autocomplete: string;
|
|
112
|
-
spellcheck: boolean;
|
|
113
|
-
prefix: string;
|
|
114
111
|
modelValue: string | number;
|
|
112
|
+
prefix: string;
|
|
115
113
|
suffix: string;
|
|
116
114
|
addonBefore: string;
|
|
117
115
|
addonAfter: string;
|
|
@@ -120,8 +118,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
120
118
|
showPasswordToggle: boolean;
|
|
121
119
|
maxLength: number;
|
|
122
120
|
autofocus: boolean;
|
|
121
|
+
autocomplete: string;
|
|
123
122
|
bordered: boolean;
|
|
124
123
|
showSearchButton: boolean;
|
|
124
|
+
spellcheck: boolean;
|
|
125
125
|
customStyle: Record<string, string | number>;
|
|
126
126
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
127
127
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -152,10 +152,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
152
152
|
disabled: boolean;
|
|
153
153
|
size: import('../../../../../base/input/src/types').InputSize;
|
|
154
154
|
placeholder: string;
|
|
155
|
-
autocomplete: string;
|
|
156
|
-
spellcheck: boolean;
|
|
157
|
-
prefix: string;
|
|
158
155
|
modelValue: string | number;
|
|
156
|
+
prefix: string;
|
|
159
157
|
suffix: string;
|
|
160
158
|
addonBefore: string;
|
|
161
159
|
addonAfter: string;
|
|
@@ -164,8 +162,10 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
164
162
|
showPasswordToggle: boolean;
|
|
165
163
|
maxLength: number;
|
|
166
164
|
autofocus: boolean;
|
|
165
|
+
autocomplete: string;
|
|
167
166
|
bordered: boolean;
|
|
168
167
|
showSearchButton: boolean;
|
|
168
|
+
spellcheck: boolean;
|
|
169
169
|
customStyle: Record<string, string | number>;
|
|
170
170
|
}> & Omit<Readonly<import('../../../../../base/input/src/types').GctInputProps> & Readonly<{
|
|
171
171
|
onInput?: ((value: string | number, event: Event) => any) | undefined;
|
|
@@ -176,14 +176,14 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
176
176
|
onKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
177
177
|
onKeypress?: ((event: KeyboardEvent) => any) | undefined;
|
|
178
178
|
onKeyup?: ((event: KeyboardEvent) => any) | undefined;
|
|
179
|
-
onClear?: (() => any) | undefined;
|
|
180
179
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
180
|
+
onClear?: (() => any) | undefined;
|
|
181
181
|
onPressEnter?: ((event: KeyboardEvent) => any) | undefined;
|
|
182
|
-
}>, "select" | "blur" | "focus" | "inputRef" | ("name" | "type" | "id" | "rows" | "readonly" | "disabled" | "size" | "placeholder" | "
|
|
182
|
+
}>, "select" | "blur" | "focus" | "inputRef" | ("name" | "type" | "id" | "rows" | "readonly" | "disabled" | "size" | "placeholder" | "modelValue" | "prefix" | "suffix" | "addonBefore" | "addonAfter" | "allowClear" | "showCount" | "showPasswordToggle" | "maxLength" | "autofocus" | "autocomplete" | "bordered" | "showSearchButton" | "spellcheck" | "customStyle")> & import('vue').ShallowUnwrapRef<{
|
|
183
183
|
focus: () => void;
|
|
184
184
|
blur: () => void;
|
|
185
185
|
select: () => void;
|
|
186
|
-
inputRef: import('vue').Ref<
|
|
186
|
+
inputRef: import('vue').Ref<HTMLInputElement | HTMLTextAreaElement | null, HTMLInputElement | HTMLTextAreaElement | null>;
|
|
187
187
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
188
188
|
$slots: {
|
|
189
189
|
prependIcon?(_: {}): any;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ShallowRef } from 'vue';
|
|
1
2
|
import { DocumentFactory } from '../factories/useDocumentFactory';
|
|
2
3
|
import { DocOperations } from './useDocOperations';
|
|
3
4
|
/** 与外部 nocode EmitterEnum.__on_looper_auto_save 对齐的事件名 */
|
|
@@ -7,6 +8,11 @@ export interface DocLooperAutoSavePayload {
|
|
|
7
8
|
}
|
|
8
9
|
export interface UseDocLooperAutoSaveNotifyOptions {
|
|
9
10
|
onLooperAutoSave?: (payload?: DocLooperAutoSavePayload) => void;
|
|
11
|
+
/**
|
|
12
|
+
* 当值为 true 时,取消挂起的防抖并跳过所有通知。
|
|
13
|
+
* 由 factory.isRefreshingData 驱动,防止 refreshData() 触发循环。
|
|
14
|
+
*/
|
|
15
|
+
suppressSignal?: ShallowRef<boolean>;
|
|
10
16
|
}
|
|
11
17
|
/**
|
|
12
18
|
* 监听文档数据/模型变更,在用户停止输入后(防抖 300ms)检测 dirty 状态,
|
|
@@ -61,8 +61,18 @@ export interface DocumentFactory {
|
|
|
61
61
|
hasData: ComputedRef<boolean>;
|
|
62
62
|
/** 是否正在加载 */
|
|
63
63
|
loading: ComputedRef<boolean>;
|
|
64
|
-
/**
|
|
64
|
+
/**
|
|
65
|
+
* refreshData() 执行期间为 true。
|
|
66
|
+
* 供 useDocLooperAutoSaveNotify 读取以抑制通知,防止循环触发。
|
|
67
|
+
*/
|
|
68
|
+
isRefreshingData: ShallowRef<boolean>;
|
|
69
|
+
/** 手动触发文档重新加载(重新请求接口 + 重建引擎) */
|
|
65
70
|
reload(): void;
|
|
71
|
+
/**
|
|
72
|
+
* 仅重新拉取填报数据并更新 dataManager,不重建引擎。
|
|
73
|
+
* 适用于填报模式保存后需要同步服务端最新数据的场景。
|
|
74
|
+
*/
|
|
75
|
+
refreshData(): Promise<void>;
|
|
66
76
|
}
|
|
67
77
|
export interface Execute {
|
|
68
78
|
/** 文档实例id或者文档模板id */
|
|
@@ -74,6 +74,11 @@ export interface DocControllerMethods extends DocOperations {
|
|
|
74
74
|
}>;
|
|
75
75
|
/** 手动触发文档重新加载 */
|
|
76
76
|
reload(): void;
|
|
77
|
+
/**
|
|
78
|
+
* 仅重新拉取填报数据并更新 dataManager,不重建引擎。
|
|
79
|
+
* 适用于填报模式保存后需要同步服务端最新数据的场景。
|
|
80
|
+
*/
|
|
81
|
+
refreshData(): Promise<void>;
|
|
77
82
|
/** 校验全量字段,返回错误映射;通过时返回 null */
|
|
78
83
|
validate(): Promise<Record<string, string[]> | null>;
|
|
79
84
|
/** 导出当前文档模型 XmlJson(常用于保存) */
|
|
@@ -12,8 +12,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
12
12
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
13
13
|
}>, {
|
|
14
14
|
readonly: boolean;
|
|
15
|
-
subModelKey: string;
|
|
16
15
|
modelValue: string;
|
|
16
|
+
subModelKey: string;
|
|
17
17
|
onlySubFields: boolean;
|
|
18
18
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
19
19
|
export default _default;
|
package/dist/word.css
CHANGED
|
@@ -6926,7 +6926,7 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
6926
6926
|
transition: opacity 340ms ease-out;
|
|
6927
6927
|
opacity: 1;
|
|
6928
6928
|
}
|
|
6929
|
-
.segment-slider[data-v-
|
|
6929
|
+
.segment-slider[data-v-6bbbbb59] {
|
|
6930
6930
|
position: relative;
|
|
6931
6931
|
display: inline-flex;
|
|
6932
6932
|
align-items: center;
|
|
@@ -6939,11 +6939,11 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
6939
6939
|
gap: 4px;
|
|
6940
6940
|
box-sizing: border-box;
|
|
6941
6941
|
}
|
|
6942
|
-
.segment-slider.is-disabled[data-v-
|
|
6942
|
+
.segment-slider.is-disabled[data-v-6bbbbb59] {
|
|
6943
6943
|
opacity: 0.5;
|
|
6944
6944
|
pointer-events: none;
|
|
6945
6945
|
}
|
|
6946
|
-
.segment-slider__thumb[data-v-
|
|
6946
|
+
.segment-slider__thumb[data-v-6bbbbb59] {
|
|
6947
6947
|
top: 2px;
|
|
6948
6948
|
left: 0;
|
|
6949
6949
|
right: 0;
|
|
@@ -6954,7 +6954,7 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
6954
6954
|
box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12);
|
|
6955
6955
|
position: absolute;
|
|
6956
6956
|
}
|
|
6957
|
-
.segment-slider__item[data-v-
|
|
6957
|
+
.segment-slider__item[data-v-6bbbbb59] {
|
|
6958
6958
|
position: relative;
|
|
6959
6959
|
z-index: 1;
|
|
6960
6960
|
flex-grow: 1;
|
|
@@ -6969,17 +6969,22 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
6969
6969
|
padding: 0 8px;
|
|
6970
6970
|
transition: color 0.2s;
|
|
6971
6971
|
}
|
|
6972
|
-
.segment-slider__item.is-active[data-v-
|
|
6972
|
+
.segment-slider__item.is-active[data-v-6bbbbb59] {
|
|
6973
6973
|
color: rgba(0, 0, 0, 0.8);
|
|
6974
6974
|
}
|
|
6975
|
-
.segment-slider__item.is-active .icon[data-v-
|
|
6975
|
+
.segment-slider__item.is-active .icon[data-v-6bbbbb59] {
|
|
6976
6976
|
color: rgba(0, 0, 0, 0.88);
|
|
6977
6977
|
}
|
|
6978
|
-
.segment-slider__item.disabled[data-v-
|
|
6978
|
+
.segment-slider__item.disabled[data-v-6bbbbb59] {
|
|
6979
6979
|
opacity: 0.3;
|
|
6980
6980
|
cursor: no-drop;
|
|
6981
6981
|
}
|
|
6982
|
-
.segment-slider
|
|
6982
|
+
.segment-slider.is-multiple .segment-slider__item.is-active[data-v-6bbbbb59] {
|
|
6983
|
+
border-radius: 4px;
|
|
6984
|
+
background: #fff;
|
|
6985
|
+
box-shadow: 0 0 2px rgba(0, 0, 0, 0.12);
|
|
6986
|
+
}
|
|
6987
|
+
.segment-slider .v-popper.segment-slider__label-tooltip[data-v-6bbbbb59] {
|
|
6983
6988
|
display: inline-flex;
|
|
6984
6989
|
flex: 1;
|
|
6985
6990
|
overflow: hidden;
|
|
@@ -6989,7 +6994,7 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
6989
6994
|
justify-content: center;
|
|
6990
6995
|
align-items: center;
|
|
6991
6996
|
}
|
|
6992
|
-
.segment-slider__label[data-v-
|
|
6997
|
+
.segment-slider__label[data-v-6bbbbb59] {
|
|
6993
6998
|
display: inline-block;
|
|
6994
6999
|
line-height: 24px;
|
|
6995
7000
|
overflow: hidden;
|
|
@@ -6997,13 +7002,13 @@ textarea[data-v-57fe54a3]::placeholder {
|
|
|
6997
7002
|
white-space: nowrap;
|
|
6998
7003
|
word-wrap: normal;
|
|
6999
7004
|
}
|
|
7000
|
-
.segment-slider__label.has-icon[data-v-
|
|
7005
|
+
.segment-slider__label.has-icon[data-v-6bbbbb59] {
|
|
7001
7006
|
margin-left: 6px;
|
|
7002
7007
|
}
|
|
7003
|
-
.segment-icon .segment-slider__label[data-v-
|
|
7008
|
+
.segment-icon .segment-slider__label[data-v-6bbbbb59] {
|
|
7004
7009
|
display: none;
|
|
7005
7010
|
}
|
|
7006
|
-
.segment-icon .icon[data-v-
|
|
7011
|
+
.segment-icon .icon[data-v-6bbbbb59] {
|
|
7007
7012
|
width: 100%;
|
|
7008
7013
|
line-height: 24px;
|
|
7009
7014
|
text-align: center;
|
|
@@ -10791,32 +10796,32 @@ svg.portrait-icon[data-v-8bdb451e] {
|
|
|
10791
10796
|
border-radius: 4px;
|
|
10792
10797
|
margin-top: 4px;
|
|
10793
10798
|
}
|
|
10794
|
-
.panel-field[data-v-
|
|
10799
|
+
.panel-field[data-v-6f46abac] {
|
|
10795
10800
|
position: relative;
|
|
10796
10801
|
}
|
|
10797
|
-
.panel-field .container[data-v-
|
|
10802
|
+
.panel-field .container[data-v-6f46abac] {
|
|
10798
10803
|
padding: 16px;
|
|
10799
10804
|
}
|
|
10800
|
-
.panel-field .value[data-v-
|
|
10805
|
+
.panel-field .value[data-v-6f46abac] {
|
|
10801
10806
|
color: #212528;
|
|
10802
10807
|
font-size: 12px;
|
|
10803
10808
|
}
|
|
10804
|
-
.panel-field .field-icon[data-v-
|
|
10809
|
+
.panel-field .field-icon[data-v-6f46abac] {
|
|
10805
10810
|
display: flex;
|
|
10806
10811
|
align-items: center;
|
|
10807
10812
|
}
|
|
10808
|
-
.panel-field .field-icon .icon[data-v-
|
|
10813
|
+
.panel-field .field-icon .icon[data-v-6f46abac] {
|
|
10809
10814
|
margin-right: 8px;
|
|
10810
10815
|
}
|
|
10811
|
-
.panel-field .content[data-v-
|
|
10816
|
+
.panel-field .content[data-v-6f46abac] {
|
|
10812
10817
|
display: flex;
|
|
10813
10818
|
align-items: center;
|
|
10814
10819
|
justify-content: flex-end;
|
|
10815
10820
|
}
|
|
10816
|
-
.panel-field[data-v-
|
|
10821
|
+
.panel-field[data-v-6f46abac] .widget-breadcrumb-link.gct-breadcrumb .gct-breadcrumb-link {
|
|
10817
10822
|
color: rgba(0, 0, 0, 0.45);
|
|
10818
10823
|
}
|
|
10819
|
-
.panel-field[data-v-
|
|
10824
|
+
.panel-field[data-v-6f46abac] .widget-breadcrumb-link.gct-breadcrumb .gct-breadcrumb-item:last-child .gct-breadcrumb-link {
|
|
10820
10825
|
color: rgba(0, 0, 0, 0.85);
|
|
10821
10826
|
}
|
|
10822
10827
|
.panel-widget[data-v-9d2da5ed] {
|
|
@@ -11162,15 +11167,15 @@ svg.portrait-icon[data-v-8bdb451e] {
|
|
|
11162
11167
|
color: #666;
|
|
11163
11168
|
line-height: 1.5;
|
|
11164
11169
|
}
|
|
11165
|
-
.panel-field-file-config[data-v-
|
|
11170
|
+
.panel-field-file-config[data-v-0f9339bf] {
|
|
11166
11171
|
padding: 16px;
|
|
11167
11172
|
}
|
|
11168
|
-
.image-display-mode-label[data-v-
|
|
11173
|
+
.image-display-mode-label[data-v-0f9339bf] {
|
|
11169
11174
|
display: inline-flex;
|
|
11170
11175
|
align-items: center;
|
|
11171
11176
|
gap: 6px;
|
|
11172
11177
|
}
|
|
11173
|
-
.v-popper.image-display-mode-label-tooltip[data-v-
|
|
11178
|
+
.v-popper.image-display-mode-label-tooltip[data-v-0f9339bf] {
|
|
11174
11179
|
display: inline-flex;
|
|
11175
11180
|
overflow: hidden;
|
|
11176
11181
|
text-overflow: ellipsis;
|
|
@@ -11179,23 +11184,23 @@ svg.portrait-icon[data-v-8bdb451e] {
|
|
|
11179
11184
|
align-items: center;
|
|
11180
11185
|
pointer-events: all;
|
|
11181
11186
|
}
|
|
11182
|
-
.tip[data-v-
|
|
11187
|
+
.tip[data-v-0f9339bf] {
|
|
11183
11188
|
cursor: pointer;
|
|
11184
11189
|
}
|
|
11185
|
-
.adaptive-warning[data-v-
|
|
11190
|
+
.adaptive-warning[data-v-0f9339bf] {
|
|
11186
11191
|
padding: 8px;
|
|
11187
11192
|
}
|
|
11188
|
-
.warning-title[data-v-
|
|
11193
|
+
.warning-title[data-v-0f9339bf] {
|
|
11189
11194
|
margin: 0 0 8px;
|
|
11190
11195
|
font-size: 12px;
|
|
11191
11196
|
color: #666;
|
|
11192
11197
|
}
|
|
11193
|
-
.warning-list[data-v-
|
|
11198
|
+
.warning-list[data-v-0f9339bf] {
|
|
11194
11199
|
margin: 0;
|
|
11195
11200
|
padding-left: 20px;
|
|
11196
11201
|
list-style-type: decimal;
|
|
11197
11202
|
}
|
|
11198
|
-
.warning-list li[data-v-
|
|
11203
|
+
.warning-list li[data-v-0f9339bf] {
|
|
11199
11204
|
margin-bottom: 6px;
|
|
11200
11205
|
font-size: 12px;
|
|
11201
11206
|
color: #666;
|
|
@@ -11461,6 +11466,16 @@ svg.portrait-icon[data-v-8bdb451e] {
|
|
|
11461
11466
|
align-items: center;
|
|
11462
11467
|
justify-content: flex-end;
|
|
11463
11468
|
}
|
|
11469
|
+
.content[data-v-c40cbf53] {
|
|
11470
|
+
display: flex;
|
|
11471
|
+
flex-direction: column;
|
|
11472
|
+
gap: 8px;
|
|
11473
|
+
}
|
|
11474
|
+
.content .value[data-v-c40cbf53] {
|
|
11475
|
+
display: flex;
|
|
11476
|
+
gap: 8px;
|
|
11477
|
+
align-items: center;
|
|
11478
|
+
}
|
|
11464
11479
|
.diagonal-name-editor__extra[data-v-343635ad] {
|
|
11465
11480
|
display: inline-flex;
|
|
11466
11481
|
align-items: center;
|
|
@@ -11473,18 +11488,18 @@ svg.portrait-icon[data-v-8bdb451e] {
|
|
|
11473
11488
|
flex-direction: column;
|
|
11474
11489
|
gap: 8px;
|
|
11475
11490
|
}
|
|
11476
|
-
.panel-widget-diagonal-config[data-v-
|
|
11491
|
+
.panel-widget-diagonal-config[data-v-d4d5b6ac] {
|
|
11477
11492
|
padding: 16px;
|
|
11478
11493
|
}
|
|
11479
|
-
.size-mode-group[data-v-
|
|
11494
|
+
.size-mode-group[data-v-d4d5b6ac] {
|
|
11480
11495
|
margin-top: 12px;
|
|
11481
11496
|
margin-bottom: 12px;
|
|
11482
11497
|
line-height: 1;
|
|
11483
11498
|
}
|
|
11484
|
-
.size-mode-group .size-mode-radio-group[data-v-
|
|
11499
|
+
.size-mode-group .size-mode-radio-group[data-v-d4d5b6ac] {
|
|
11485
11500
|
gap: 16px;
|
|
11486
11501
|
}
|
|
11487
|
-
.size-number[data-v-
|
|
11502
|
+
.size-number[data-v-d4d5b6ac] {
|
|
11488
11503
|
gap: 12px;
|
|
11489
11504
|
}
|
|
11490
11505
|
.panel-widget-image-config[data-v-36c19c7b] {
|