cnhis-design-vue 3.1.40-beta.6 → 3.1.40-beta.8
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/es/components/form-config/index.d.ts +38 -142
- package/es/components/form-config/src/FormConfig.vue.d.ts +38 -142
- package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +19 -71
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +19 -71
- package/es/components/form-render/index.d.ts +19 -71
- package/es/components/form-render/src/FormRender.vue.d.ts +19 -71
- package/es/components/form-render/src/FormRender.vue.js +31 -22
- package/es/components/form-render/src/FormRenderWrapper.vue.d.ts +19 -71
- package/es/components/form-render/src/components/renderer/searchCascade.js +1 -0
- package/es/components/form-render/src/components/renderer/select.js +1 -0
- package/es/components/form-render/src/hooks/useAnchor.d.ts +6 -3
- package/es/components/form-render/src/hooks/useAnchor.js +26 -26
- package/es/components/form-render/src/hooks/useBusinessBinding.d.ts +7 -10
- package/es/components/form-render/src/hooks/useBusinessBinding.js +38 -36
- package/es/components/form-render/src/hooks/useFieldListAdaptor.js +2 -6
- package/es/components/form-render/src/hooks/useFormContext.d.ts +1 -2
- package/es/components/form-render/src/hooks/useFormContext.js +2 -2
- package/es/components/keyboard/index.d.ts +20 -2
- package/es/components/keyboard/src/Keyboard.vue.d.ts +20 -2
- package/es/components/keyboard/src/components/InputNumber.vue.d.ts +19 -2
- package/es/components/keyboard/src/components/InputNumber.vue.js +15 -5
- package/es/components/keyboard/src/components/NumberPanel.vue.d.ts +20 -2
- package/es/components/keyboard/src/components/NumberPanel.vue.js +14 -10
- package/es/components/shortcut-setter/index.d.ts +19 -71
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +19 -71
- package/package.json +2 -2
|
@@ -44,6 +44,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
44
44
|
const inputValueStatus = ref("success");
|
|
45
45
|
const numeratorValueStatus = ref("success");
|
|
46
46
|
const denominatorValueStatus = ref("success");
|
|
47
|
+
const inputSelect = ref(false);
|
|
47
48
|
const keyboardRef = ref(null);
|
|
48
49
|
const style = init();
|
|
49
50
|
function init() {
|
|
@@ -87,12 +88,13 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
87
88
|
arr.splice(-1, 1, key);
|
|
88
89
|
inputValue.value = arr.join("");
|
|
89
90
|
} else {
|
|
90
|
-
inputValue.value = (((_b = (_a = inputValue.value) == null ? void 0 : _a.toString) == null ? void 0 : _b.call(_a)) || "") + key;
|
|
91
|
+
inputValue.value = inputSelect.value ? key.toString() : (((_b = (_a = inputValue.value) == null ? void 0 : _a.toString) == null ? void 0 : _b.call(_a)) || "") + key;
|
|
91
92
|
}
|
|
92
93
|
}
|
|
93
94
|
setInputValueStatus();
|
|
94
95
|
break;
|
|
95
96
|
}
|
|
97
|
+
inputSelect.value = false;
|
|
96
98
|
}
|
|
97
99
|
function validator() {
|
|
98
100
|
if (!inputValue.value)
|
|
@@ -175,8 +177,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
175
177
|
modelValue: inputValue.value,
|
|
176
178
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => inputValue.value = $event),
|
|
177
179
|
status: inputValueStatus.value,
|
|
178
|
-
"onUpdate:status": _cache[1] || (_cache[1] = ($event) => inputValueStatus.value = $event)
|
|
179
|
-
|
|
180
|
+
"onUpdate:status": _cache[1] || (_cache[1] = ($event) => inputValueStatus.value = $event),
|
|
181
|
+
select: inputSelect.value,
|
|
182
|
+
"onUpdate:select": _cache[2] || (_cache[2] = ($event) => inputSelect.value = $event)
|
|
183
|
+
}, null, 8, ["modelValue", "status", "select"]),
|
|
180
184
|
createElementVNode("div", _hoisted_1, [
|
|
181
185
|
createVNode(unref(NSpace), {
|
|
182
186
|
class: "margin-offset",
|
|
@@ -200,13 +204,13 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
200
204
|
default: withCtx(() => [
|
|
201
205
|
createElementVNode("span", {
|
|
202
206
|
class: "opt",
|
|
203
|
-
onClick: _cache[
|
|
207
|
+
onClick: _cache[3] || (_cache[3] = ($event) => keydown("Undo"))
|
|
204
208
|
}, [
|
|
205
209
|
createVNode(unref(NIcon), { component: unref(ArrowUndoSharp) }, null, 8, ["component"])
|
|
206
210
|
]),
|
|
207
211
|
createElementVNode("span", {
|
|
208
212
|
class: "opt",
|
|
209
|
-
onClick: _cache[
|
|
213
|
+
onClick: _cache[4] || (_cache[4] = ($event) => keydown("Enter"))
|
|
210
214
|
}, "\u786E\u5B9A")
|
|
211
215
|
]),
|
|
212
216
|
_: 1
|
|
@@ -256,23 +260,23 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
256
260
|
createVNode(InputNumber, {
|
|
257
261
|
integer: "",
|
|
258
262
|
modelValue: integerValue.value,
|
|
259
|
-
"onUpdate:modelValue": _cache[
|
|
263
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => integerValue.value = $event)
|
|
260
264
|
}, null, 8, ["modelValue"]),
|
|
261
265
|
createElementVNode("div", _hoisted_7, [
|
|
262
266
|
createVNode(InputNumber, {
|
|
263
267
|
integer: "",
|
|
264
268
|
modelValue: numeratorValue.value,
|
|
265
|
-
"onUpdate:modelValue": _cache[
|
|
269
|
+
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => numeratorValue.value = $event),
|
|
266
270
|
status: numeratorValueStatus.value,
|
|
267
|
-
"onUpdate:status": _cache[
|
|
271
|
+
"onUpdate:status": _cache[7] || (_cache[7] = ($event) => numeratorValueStatus.value = $event)
|
|
268
272
|
}, null, 8, ["modelValue", "status"]),
|
|
269
273
|
_hoisted_8,
|
|
270
274
|
createVNode(InputNumber, {
|
|
271
275
|
integer: "",
|
|
272
276
|
modelValue: denominatorValue.value,
|
|
273
|
-
"onUpdate:modelValue": _cache[
|
|
277
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => denominatorValue.value = $event),
|
|
274
278
|
status: denominatorValueStatus.value,
|
|
275
|
-
"onUpdate:status": _cache[
|
|
279
|
+
"onUpdate:status": _cache[9] || (_cache[9] = ($event) => denominatorValueStatus.value = $event)
|
|
276
280
|
}, null, 8, ["modelValue", "status"])
|
|
277
281
|
])
|
|
278
282
|
]),
|
|
@@ -1984,18 +1984,30 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1984
1984
|
}>>;
|
|
1985
1985
|
emit: (event: "scroll" | "formChange" | "annotationChange", ...args: any[]) => void;
|
|
1986
1986
|
nuiThemeOverrides: import("naive-ui").GlobalThemeOverrides;
|
|
1987
|
+
formRenderRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1988
|
+
formHeight: import("vue").ComputedRef<string>;
|
|
1989
|
+
SchemaField: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
1990
|
+
businessCollector: import("..").BusinessCollector;
|
|
1991
|
+
formItemDepsCollector: import("..").FormItemDepsCollector;
|
|
1992
|
+
changeContextCollector: import("..").ContextCollector;
|
|
1993
|
+
formUUID: string;
|
|
1994
|
+
anchorBarRef: import("vue").Ref<{
|
|
1995
|
+
syncBarPosition: import("../../../es/shared/types").Func<any[], any>;
|
|
1996
|
+
} | undefined>;
|
|
1997
|
+
currentAnchor: import("vue").WritableComputedRef<string>;
|
|
1998
|
+
generateAnchorList: (formModel: import("@formily/core").Form<any>) => Promise<void>;
|
|
1999
|
+
updateAnchorList: (field: import("@formily/core").GeneralField) => void;
|
|
2000
|
+
anchorIdList: import("vue").Ref<{
|
|
2001
|
+
name: string;
|
|
2002
|
+
title: string;
|
|
2003
|
+
}[]>;
|
|
2004
|
+
onScroll: (scrollEvent: Event) => void;
|
|
1987
2005
|
triggerAutoHidden: (field: import("@formily/core").GeneralField) => Promise<void>;
|
|
1988
2006
|
formModel: import("@formily/core").Form<{
|
|
1989
2007
|
[x: string]: any;
|
|
1990
2008
|
}>;
|
|
1991
2009
|
lowCodeReactionsHandler: (field: string, value: unknown) => void;
|
|
1992
2010
|
triggerAllReactionsHandler: () => void;
|
|
1993
|
-
SchemaField: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
1994
|
-
businessCollector: import("..").BusinessCollector;
|
|
1995
|
-
formItemDepsCollector: import("..").FormItemDepsCollector;
|
|
1996
|
-
changeContextCollector: import("..").ContextCollector;
|
|
1997
|
-
formUUID: string;
|
|
1998
|
-
formRenderRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1999
2011
|
schemaAdaptor: (fieldList: import("..").FieldItem[]) => Record<string, import("@formily/json-schema").Stringify<{
|
|
2000
2012
|
[key: symbol]: any;
|
|
2001
2013
|
[key: `x-${string}`]: any;
|
|
@@ -2111,70 +2123,6 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2111
2123
|
"x-read-pretty"?: boolean | undefined;
|
|
2112
2124
|
"x-compile-omitted"?: string[] | undefined;
|
|
2113
2125
|
}>>;
|
|
2114
|
-
currentAnchor: import("vue").WritableComputedRef<string>;
|
|
2115
|
-
generateAnchorList: (schema: import("@formily/json-schema").Stringify<{
|
|
2116
|
-
[key: symbol]: any;
|
|
2117
|
-
[key: `x-${string}`]: any;
|
|
2118
|
-
[key: `x-${number}`]: any;
|
|
2119
|
-
version?: string | undefined;
|
|
2120
|
-
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
2121
|
-
title?: any;
|
|
2122
|
-
description?: any;
|
|
2123
|
-
default?: any;
|
|
2124
|
-
readOnly?: boolean | undefined;
|
|
2125
|
-
writeOnly?: boolean | undefined;
|
|
2126
|
-
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
2127
|
-
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
2128
|
-
const?: any;
|
|
2129
|
-
multipleOf?: number | undefined;
|
|
2130
|
-
maximum?: number | undefined;
|
|
2131
|
-
exclusiveMaximum?: number | undefined;
|
|
2132
|
-
minimum?: number | undefined;
|
|
2133
|
-
exclusiveMinimum?: number | undefined;
|
|
2134
|
-
maxLength?: number | undefined;
|
|
2135
|
-
minLength?: number | undefined;
|
|
2136
|
-
pattern?: string | RegExp | undefined;
|
|
2137
|
-
maxItems?: number | undefined;
|
|
2138
|
-
minItems?: number | undefined;
|
|
2139
|
-
uniqueItems?: boolean | undefined;
|
|
2140
|
-
maxProperties?: number | undefined;
|
|
2141
|
-
minProperties?: number | undefined;
|
|
2142
|
-
required?: string | boolean | string[] | undefined;
|
|
2143
|
-
format?: string | undefined;
|
|
2144
|
-
$ref?: string | undefined;
|
|
2145
|
-
$namespace?: string | undefined;
|
|
2146
|
-
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2147
|
-
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2148
|
-
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
2149
|
-
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
2150
|
-
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2151
|
-
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
2152
|
-
"x-value"?: any;
|
|
2153
|
-
"x-index"?: number | undefined;
|
|
2154
|
-
"x-pattern"?: any;
|
|
2155
|
-
"x-display"?: any;
|
|
2156
|
-
"x-validator"?: any;
|
|
2157
|
-
"x-decorator"?: any;
|
|
2158
|
-
"x-decorator-props"?: any;
|
|
2159
|
-
"x-component"?: any;
|
|
2160
|
-
"x-component-props"?: any;
|
|
2161
|
-
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
2162
|
-
"x-content"?: any;
|
|
2163
|
-
"x-data"?: any;
|
|
2164
|
-
"x-visible"?: boolean | undefined;
|
|
2165
|
-
"x-hidden"?: boolean | undefined;
|
|
2166
|
-
"x-disabled"?: boolean | undefined;
|
|
2167
|
-
"x-editable"?: boolean | undefined;
|
|
2168
|
-
"x-read-only"?: boolean | undefined;
|
|
2169
|
-
"x-read-pretty"?: boolean | undefined;
|
|
2170
|
-
"x-compile-omitted"?: string[] | undefined;
|
|
2171
|
-
}>) => void;
|
|
2172
|
-
anchorIdList: import("vue").Ref<{
|
|
2173
|
-
name: string;
|
|
2174
|
-
title: string;
|
|
2175
|
-
}[]>;
|
|
2176
|
-
formHeight: import("vue").ComputedRef<string | undefined>;
|
|
2177
|
-
onScroll: (scrollEvent: Event) => void;
|
|
2178
2126
|
onKeydown: (event: KeyboardEvent) => void;
|
|
2179
2127
|
clearSpan: (uuid: string) => void;
|
|
2180
2128
|
exposeEvent: {
|
|
@@ -2214,6 +2162,7 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2214
2162
|
editable: boolean;
|
|
2215
2163
|
component: import("@formily/core").FieldComponent<any, any>;
|
|
2216
2164
|
decorator: import("@formily/core").FieldDecorator<any, any>;
|
|
2165
|
+
readPretty: boolean;
|
|
2217
2166
|
validating: boolean;
|
|
2218
2167
|
submitting: boolean;
|
|
2219
2168
|
visited: boolean;
|
|
@@ -2257,7 +2206,6 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2257
2206
|
designable: boolean;
|
|
2258
2207
|
locate: (address: import("@formily/path").Pattern) => void;
|
|
2259
2208
|
readonly parent: import("@formily/core").GeneralField;
|
|
2260
|
-
readPretty: boolean;
|
|
2261
2209
|
setTitle: (title?: string | undefined) => void;
|
|
2262
2210
|
setDescription: (description?: string | undefined) => void;
|
|
2263
2211
|
setDisplay: (type?: import("@formily/core").FieldDisplayTypes | undefined) => void;
|
|
@@ -1986,18 +1986,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1986
1986
|
}>>;
|
|
1987
1987
|
emit: (event: "scroll" | "formChange" | "annotationChange", ...args: any[]) => void;
|
|
1988
1988
|
nuiThemeOverrides: import("naive-ui").GlobalThemeOverrides;
|
|
1989
|
+
formRenderRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1990
|
+
formHeight: import("vue").ComputedRef<string>;
|
|
1991
|
+
SchemaField: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
1992
|
+
businessCollector: import("../../../../es/components/form-render").BusinessCollector;
|
|
1993
|
+
formItemDepsCollector: import("../../../../es/components/form-render").FormItemDepsCollector;
|
|
1994
|
+
changeContextCollector: import("../../../../es/components/form-render").ContextCollector;
|
|
1995
|
+
formUUID: string;
|
|
1996
|
+
anchorBarRef: import("vue").Ref<{
|
|
1997
|
+
syncBarPosition: Func<any[], any>;
|
|
1998
|
+
} | undefined>;
|
|
1999
|
+
currentAnchor: import("vue").WritableComputedRef<string>;
|
|
2000
|
+
generateAnchorList: (formModel: import("../../../../es/components/form-render").Form<any>) => Promise<void>;
|
|
2001
|
+
updateAnchorList: (field: import("../../../../es/components/form-render").GeneralField) => void;
|
|
2002
|
+
anchorIdList: import("vue").Ref<{
|
|
2003
|
+
name: string;
|
|
2004
|
+
title: string;
|
|
2005
|
+
}[]>;
|
|
2006
|
+
onScroll: (scrollEvent: Event) => void;
|
|
1989
2007
|
triggerAutoHidden: (field: import("../../../../es/components/form-render").GeneralField) => Promise<void>;
|
|
1990
2008
|
formModel: import("../../../../es/components/form-render").Form<{
|
|
1991
2009
|
[x: string]: any;
|
|
1992
2010
|
}>;
|
|
1993
2011
|
lowCodeReactionsHandler: (field: string, value: unknown) => void;
|
|
1994
2012
|
triggerAllReactionsHandler: () => void;
|
|
1995
|
-
SchemaField: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
1996
|
-
businessCollector: import("../../../../es/components/form-render").BusinessCollector;
|
|
1997
|
-
formItemDepsCollector: import("../../../../es/components/form-render").FormItemDepsCollector;
|
|
1998
|
-
changeContextCollector: import("../../../../es/components/form-render").ContextCollector;
|
|
1999
|
-
formUUID: string;
|
|
2000
|
-
formRenderRef: import("vue").Ref<HTMLElement | undefined>;
|
|
2001
2013
|
schemaAdaptor: (fieldList: FieldItem[]) => Record<string, import("@formily/json-schema").Stringify<{
|
|
2002
2014
|
[key: symbol]: any;
|
|
2003
2015
|
[key: `x-${string}`]: any;
|
|
@@ -2113,70 +2125,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2113
2125
|
"x-read-pretty"?: boolean | undefined;
|
|
2114
2126
|
"x-compile-omitted"?: string[] | undefined;
|
|
2115
2127
|
}>>;
|
|
2116
|
-
currentAnchor: import("vue").WritableComputedRef<string>;
|
|
2117
|
-
generateAnchorList: (schema: import("@formily/json-schema").Stringify<{
|
|
2118
|
-
[key: symbol]: any;
|
|
2119
|
-
[key: `x-${string}`]: any;
|
|
2120
|
-
[key: `x-${number}`]: any;
|
|
2121
|
-
version?: string | undefined;
|
|
2122
|
-
name?: import("@formily/json-schema").SchemaKey | undefined;
|
|
2123
|
-
title?: any;
|
|
2124
|
-
description?: any;
|
|
2125
|
-
default?: any;
|
|
2126
|
-
readOnly?: boolean | undefined;
|
|
2127
|
-
writeOnly?: boolean | undefined;
|
|
2128
|
-
type?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
2129
|
-
enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
|
|
2130
|
-
const?: any;
|
|
2131
|
-
multipleOf?: number | undefined;
|
|
2132
|
-
maximum?: number | undefined;
|
|
2133
|
-
exclusiveMaximum?: number | undefined;
|
|
2134
|
-
minimum?: number | undefined;
|
|
2135
|
-
exclusiveMinimum?: number | undefined;
|
|
2136
|
-
maxLength?: number | undefined;
|
|
2137
|
-
minLength?: number | undefined;
|
|
2138
|
-
pattern?: string | RegExp | undefined;
|
|
2139
|
-
maxItems?: number | undefined;
|
|
2140
|
-
minItems?: number | undefined;
|
|
2141
|
-
uniqueItems?: boolean | undefined;
|
|
2142
|
-
maxProperties?: number | undefined;
|
|
2143
|
-
minProperties?: number | undefined;
|
|
2144
|
-
required?: string | boolean | string[] | undefined;
|
|
2145
|
-
format?: string | undefined;
|
|
2146
|
-
$ref?: string | undefined;
|
|
2147
|
-
$namespace?: string | undefined;
|
|
2148
|
-
definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2149
|
-
properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2150
|
-
items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
|
|
2151
|
-
additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
2152
|
-
patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
|
|
2153
|
-
additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
|
|
2154
|
-
"x-value"?: any;
|
|
2155
|
-
"x-index"?: number | undefined;
|
|
2156
|
-
"x-pattern"?: any;
|
|
2157
|
-
"x-display"?: any;
|
|
2158
|
-
"x-validator"?: any;
|
|
2159
|
-
"x-decorator"?: any;
|
|
2160
|
-
"x-decorator-props"?: any;
|
|
2161
|
-
"x-component"?: any;
|
|
2162
|
-
"x-component-props"?: any;
|
|
2163
|
-
"x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
|
|
2164
|
-
"x-content"?: any;
|
|
2165
|
-
"x-data"?: any;
|
|
2166
|
-
"x-visible"?: boolean | undefined;
|
|
2167
|
-
"x-hidden"?: boolean | undefined;
|
|
2168
|
-
"x-disabled"?: boolean | undefined;
|
|
2169
|
-
"x-editable"?: boolean | undefined;
|
|
2170
|
-
"x-read-only"?: boolean | undefined;
|
|
2171
|
-
"x-read-pretty"?: boolean | undefined;
|
|
2172
|
-
"x-compile-omitted"?: string[] | undefined;
|
|
2173
|
-
}>) => void;
|
|
2174
|
-
anchorIdList: import("vue").Ref<{
|
|
2175
|
-
name: string;
|
|
2176
|
-
title: string;
|
|
2177
|
-
}[]>;
|
|
2178
|
-
formHeight: import("vue").ComputedRef<string | undefined>;
|
|
2179
|
-
onScroll: (scrollEvent: Event) => void;
|
|
2180
2128
|
onKeydown: (event: KeyboardEvent) => void;
|
|
2181
2129
|
clearSpan: (uuid: string) => void;
|
|
2182
2130
|
exposeEvent: {
|
|
@@ -2216,6 +2164,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2216
2164
|
editable: boolean;
|
|
2217
2165
|
component: import("../../../../es/components/form-render").FieldComponent<any, any>;
|
|
2218
2166
|
decorator: import("../../../../es/components/form-render").FieldDecorator<any, any>;
|
|
2167
|
+
readPretty: boolean;
|
|
2219
2168
|
validating: boolean;
|
|
2220
2169
|
submitting: boolean;
|
|
2221
2170
|
visited: boolean;
|
|
@@ -2259,7 +2208,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2259
2208
|
designable: boolean;
|
|
2260
2209
|
locate: (address: import("@formily/path").Pattern) => void;
|
|
2261
2210
|
readonly parent: import("../../../../es/components/form-render").GeneralField;
|
|
2262
|
-
readPretty: boolean;
|
|
2263
2211
|
setTitle: (title?: string | undefined) => void;
|
|
2264
2212
|
setDescription: (description?: string | undefined) => void;
|
|
2265
2213
|
setDisplay: (type?: import("../../../../es/components/form-render").FieldDisplayTypes | undefined) => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cnhis-design-vue",
|
|
3
|
-
"version": "3.1.40-beta.
|
|
3
|
+
"version": "3.1.40-beta.8",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"module": "./es/components/index.js",
|
|
6
6
|
"main": "./es/components/index.js",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"iOS 7",
|
|
63
63
|
"last 3 iOS versions"
|
|
64
64
|
],
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "30816ca253d43776cd516d3c54d183691a64060a"
|
|
66
66
|
}
|