cnhis-design-vue 3.3.1-beta.3 → 3.3.1-beta.44
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/ai-chat/index.d.ts +289 -68
- package/es/components/ai-chat/src/Index.vue.d.ts +289 -68
- package/es/components/ai-chat/src/Index.vue2.js +1 -1
- package/es/components/ai-chat/src/api/index.d.ts +5 -3
- package/es/components/ai-chat/src/api/index.js +1 -1
- package/es/components/ai-chat/src/components/ChatAudio.vue.d.ts +9 -15
- package/es/components/ai-chat/src/components/ChatAudio.vue2.js +1 -1
- package/es/components/ai-chat/src/components/ChatBI.vue.d.ts +2 -2
- package/es/components/ai-chat/src/components/ChatBI.vue2.js +1 -1
- package/es/components/ai-chat/src/components/ChatCard.js +1 -1
- package/es/components/ai-chat/src/components/ChatFooter.vue.d.ts +46 -55
- package/es/components/ai-chat/src/components/ChatFooter.vue2.js +1 -1
- package/es/components/ai-chat/src/components/ChatMain.js +1 -1
- package/es/components/ai-chat/src/components/ChatMainDefault.js +1 -0
- package/es/components/ai-chat/src/components/ChatPatient.vue.d.ts +2 -2
- package/es/components/ai-chat/src/components/ChatPatient.vue2.js +1 -1
- package/es/components/ai-chat/src/components/ChatPrompt.vue.d.ts +2 -2
- package/es/components/ai-chat/src/components/ChatPrompt.vue2.js +1 -1
- package/es/components/ai-chat/src/components/ChatRight.vue.d.ts +6 -5
- package/es/components/ai-chat/src/components/ChatRight.vue2.js +1 -1
- package/es/components/ai-chat/src/components/card/JsonCard.js +1 -1
- package/es/components/ai-chat/src/components/{card/SelectIcon.d.ts → message-render/CardRender.d.ts} +9 -7
- package/es/components/ai-chat/src/components/message-render/CardRender.js +1 -0
- package/es/components/ai-chat/src/components/message-render/FormRender.d.ts +16 -0
- package/es/components/ai-chat/src/components/message-render/FormRender.js +1 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatAudio.vue.d.ts +36 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatAudio.vue.js +1 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatAudio.vue2.js +1 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatFooter.vue.d.ts +105 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatFooter.vue.js +1 -0
- package/es/components/ai-chat/src/components/mobile/MobileChatFooter.vue2.js +1 -0
- package/es/components/ai-chat/src/components/svgs/AddIcon.vue.js +1 -0
- package/es/components/ai-chat/src/components/svgs/AudioIcon.vue.js +1 -0
- package/es/components/ai-chat/src/components/svgs/KeyboardIcon.vue.js +1 -0
- package/es/components/ai-chat/src/components/svgs/MicroPhone.vue.js +1 -0
- package/es/components/ai-chat/src/hooks/index.d.ts +2 -0
- package/es/components/ai-chat/src/hooks/index.js +1 -0
- package/es/components/ai-chat/src/hooks/useChartAudioContext.d.ts +18 -0
- package/es/components/ai-chat/src/hooks/useChartAudioContext.js +1 -0
- package/es/components/ai-chat/src/hooks/useData.d.ts +77 -0
- package/es/components/ai-chat/src/hooks/useData.js +1 -0
- package/es/components/ai-chat/src/hooks/useFooterContext.d.ts +38 -0
- package/es/components/ai-chat/src/hooks/useFooterContext.js +1 -0
- package/es/components/ai-chat/src/hooks/useProgram.d.ts +12 -4
- package/es/components/ai-chat/src/hooks/useProgram.js +1 -1
- package/es/components/ai-chat/src/hooks/useSSE.d.ts +9 -0
- package/es/components/ai-chat/src/hooks/useSSE.js +1 -0
- package/es/components/ai-chat/src/hooks/useWebsocket.d.ts +3 -1
- package/es/components/ai-chat/src/hooks/useWebsocket.js +1 -1
- package/es/components/ai-chat/src/types/index.d.ts +1 -3
- package/es/components/ai-chat/src/types/index.js +1 -1
- package/es/components/ai-chat/src/utils/index.d.ts +6 -1
- package/es/components/ai-chat/src/utils/index.js +1 -1
- package/es/components/ai-chat/style/index.css +1 -1
- package/es/components/audio-sdk/index.d.ts +274 -2
- package/es/components/audio-sdk/index.js +1 -1
- package/es/components/audio-sdk/src/Index.vue.d.ts +274 -0
- package/es/components/audio-sdk/src/Index.vue.js +1 -0
- package/es/components/audio-sdk/src/Index.vue2.js +1 -0
- package/es/components/audio-sdk/src/audioSDK.d.ts +59 -26
- package/es/components/audio-sdk/src/audioSDK.js +1 -1
- package/es/components/audio-sdk/src/components/form.vue.d.ts +51 -0
- package/es/components/audio-sdk/src/components/recording-modal.vue.d.ts +100 -0
- package/es/components/audio-sdk/src/components/recording-modal.vue.js +1 -0
- package/es/components/audio-sdk/src/components/recording-modal.vue2.js +1 -0
- package/es/components/audio-sdk/src/components/recording.vue.d.ts +53 -4
- package/es/components/audio-sdk/src/components/recording.vue2.js +1 -1
- package/es/components/audio-sdk/src/utils/index.d.ts +7 -0
- package/es/components/audio-sdk/src/utils/index.js +1 -0
- package/es/components/audio-sdk/src/utils/recordingModal.d.ts +7 -4
- package/es/components/audio-sdk/src/utils/recordingModal.js +1 -1
- package/es/components/audio-sdk/style/index.css +1 -1
- package/es/components/button-print/index.d.ts +30 -0
- package/es/components/button-print/src/ButtonPrint.vue.d.ts +30 -0
- package/es/components/button-print/src/ButtonPrint.vue2.js +1 -1
- package/es/components/button-print/src/components/NewPrintComponent.vue.d.ts +9 -0
- package/es/components/button-print/src/components/NewPrintComponent.vue2.js +1 -1
- package/es/components/button-print/src/components/OldPrintComponent.vue.d.ts +9 -0
- package/es/components/button-print/src/components/OldPrintComponent.vue2.js +1 -1
- package/es/components/button-print/src/utils/print.d.ts +2 -2
- package/es/components/button-print/src/utils/print.js +1 -1
- package/es/components/calendar/index.d.ts +126 -3
- package/es/components/calendar/src/Calendar.vue.d.ts +126 -2
- package/es/components/callback/src/components/render/popupMaps.d.ts +7 -1
- package/es/components/card-reader-sdk/src/cardReaderSDK.d.ts +4 -8
- package/es/components/card-reader-sdk/src/cardReaderSDK.js +1 -1
- package/es/components/card-render/src/components/Button.vue.d.ts +3 -0
- package/es/components/card-render/src/components/Button.vue2.js +1 -1
- package/es/components/card-render/src/components/ScaleView.vue.d.ts +39 -0
- package/es/components/card-render/src/components/ScaleView.vue.js +1 -0
- package/es/components/card-render/src/components/ScaleView.vue2.js +1 -0
- package/es/components/card-render/src/components/Table.vue.d.ts +104 -0
- package/es/components/card-render/src/components/Table.vue.js +1 -0
- package/es/components/card-render/src/components/Table.vue2.js +1 -0
- package/es/components/card-render/src/components/Text.vue.d.ts +1 -0
- package/es/components/card-render/src/components/Text.vue2.js +1 -1
- package/es/components/card-render/src/components/index.d.ts +139 -0
- package/es/components/card-render/src/components/index.js +1 -1
- package/es/components/card-render/src/constants/index.d.ts +4 -1
- package/es/components/card-render/src/constants/index.js +1 -1
- package/es/components/card-render/style/index.css +1 -1
- package/es/components/date-picker/src/DatePicker.vue2.js +1 -1
- package/es/components/fabric-chart/index.d.ts +6 -2
- package/es/components/fabric-chart/src/FabricChart.vue.d.ts +6 -2
- package/es/components/fabric-chart/src/FabricChart.vue2.js +1 -1
- package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useOther.js +1 -1
- package/es/components/fabric-chart/src/hooks/temperature/useTemperatureChart.js +1 -1
- package/es/components/field-editor/index.d.ts +7 -1
- package/es/components/field-editor/src/FieldEditor.vue.d.ts +7 -1
- package/es/components/field-set/src/FieldColor.vue.d.ts +1 -1
- package/es/components/field-set/src/FieldFilter.vue.d.ts +1 -1
- package/es/components/field-set/src/FieldSet.vue.d.ts +1 -1
- package/es/components/field-set/src/components/table-row.vue.d.ts +1 -1
- package/es/components/form-config/index.d.ts +73 -13
- package/es/components/form-config/src/FormConfig.vue.d.ts +73 -13
- package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +7 -1
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +45 -9
- package/es/components/form-config/src/components/FormConfigEventSetting.vue.d.ts +15 -3
- package/es/components/form-render/index.d.ts +7 -1
- package/es/components/form-render/index.js +1 -1
- package/es/components/form-render/src/FormRender.vue.d.ts +7 -1
- package/es/components/form-render/src/FormRender.vue2.js +1 -1
- package/es/components/form-render/src/FormRenderWrapper.vue.d.ts +7 -1
- package/es/components/form-render/src/components/renderer/date.d.ts +4 -2
- package/es/components/form-render/src/components/renderer/date.js +1 -1
- package/es/components/form-render/src/components/renderer/formItem.d.ts +2 -0
- package/es/components/form-render/src/components/renderer/formItem.js +1 -1
- package/es/components/form-render/src/components/renderer/input.d.ts +5 -0
- package/es/components/form-render/src/components/renderer/input.js +1 -1
- package/es/components/form-render/src/components/renderer/levelSearchCascader/index.d.ts +9 -0
- package/es/components/form-render/src/components/renderer/levelSearchCascader/index.js +1 -1
- package/es/components/form-render/src/components/renderer/lineBar/FormCollapse.vue.d.ts +14 -1
- package/es/components/form-render/src/components/renderer/lineBar/index.d.ts +14 -1
- package/es/components/form-render/src/components/renderer/searchCascade.js +1 -1
- package/es/components/form-render/src/components/renderer/select.d.ts +5 -0
- package/es/components/form-render/src/components/renderer/select.js +1 -1
- package/es/components/form-render/src/components/tooltipMessage.vue.d.ts +12 -1
- package/es/components/form-render/src/components/tooltipMessage.vue2.js +1 -1
- package/es/components/form-render/src/hooks/useBusinessBinding.js +1 -1
- package/es/components/form-render/src/hooks/useFieldListAdaptor.js +1 -1
- package/es/components/form-render/src/hooks/useFieldNormalize.d.ts +4 -0
- package/es/components/form-render/src/hooks/useLowCodeReactions.js +1 -1
- package/es/components/form-render/src/types/fieldItem.d.ts +9 -3
- package/es/components/form-render/src/types/index.d.ts +2 -0
- package/es/components/form-render/src/utils/index.d.ts +1 -0
- package/es/components/form-render/src/utils/index.js +1 -1
- package/es/components/form-render/style/index.css +1 -1
- package/es/components/guide/src/renderer.d.ts +2 -2
- package/es/components/iho-chat/index.d.ts +206 -4
- package/es/components/iho-chat/src/Index.vue.d.ts +206 -4
- package/es/components/iho-chat/src/api/index.d.ts +1 -0
- package/es/components/iho-chat/src/api/index.js +1 -1
- package/es/components/iho-chat/src/components/ChatAdd.vue.d.ts +8 -0
- package/es/components/iho-chat/src/components/ChatAdd.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatFile.vue.d.ts +11 -3
- package/es/components/iho-chat/src/components/ChatFile.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatFooter.vue.d.ts +7 -0
- package/es/components/iho-chat/src/components/ChatFooter.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatHeader.vue.d.ts +96 -2
- package/es/components/iho-chat/src/components/ChatMain.vue.d.ts +77 -0
- package/es/components/iho-chat/src/components/ChatMain.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatRecord.vue.d.ts +71 -1
- package/es/components/iho-chat/src/components/ChatRecord.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatSearch.vue.d.ts +8 -2
- package/es/components/iho-chat/src/components/ChatSearch.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatSet.vue.d.ts +10 -0
- package/es/components/iho-chat/src/components/ChatSet.vue2.js +1 -1
- package/es/components/iho-chat/src/components/MessageMergeForward.vue.d.ts +70 -1
- package/es/components/iho-chat/src/components/MessageMergeForward.vue2.js +1 -1
- package/es/components/iho-chat/src/components/MultipleVideo.vue.d.ts +7 -0
- package/es/components/iho-chat/src/components/PersonProfile.vue.d.ts +3 -0
- package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
- package/es/components/iho-chat/src/components/SiderList.vue.d.ts +3 -1
- package/es/components/iho-chat/src/components/SiderList.vue2.js +1 -1
- package/es/components/iho-chat/src/constants/index.d.ts +9 -2
- package/es/components/iho-chat/src/constants/index.js +1 -1
- package/es/components/iho-chat/src/hooks/useSearchPatientList.d.ts +11 -0
- package/es/components/iho-chat/src/hooks/useSearchPatientList.js +1 -0
- package/es/components/iho-chat/src/utils/chatSock.js +1 -1
- package/es/components/iho-chat/src/utils/index.d.ts +6 -0
- package/es/components/iho-chat/src/utils/index.js +1 -1
- package/es/components/iho-chat/style/index.css +1 -1
- package/es/components/iho-table/index.d.ts +3 -0
- package/es/components/iho-table/index.js +1 -1
- package/es/components/iho-table/src/IhoTable.vue2.js +1 -1
- package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +1 -1
- package/es/components/iho-table/src/hooks/tapHooks/index.js +1 -1
- package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.d.ts +3 -3
- package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.js +1 -1
- package/es/components/iho-table/src/hooks/useTablePlugin.js +1 -1
- package/es/components/iho-table/src/plugins/filterRenderPlugin/index.js +1 -1
- package/es/components/iho-table/src/plugins/headerPlugin/index.d.ts +1 -1
- package/es/components/iho-table/src/plugins/headerPlugin/index.js +1 -1
- package/es/components/iho-table/src/plugins/highLightSetPlugin.js +1 -1
- package/es/components/iho-table/src/plugins/index.d.ts +79 -3
- package/es/components/iho-table/src/plugins/index.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/hooks/useSelectOption.d.ts +7 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/hooks/useSelectOption.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/index.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/selectUtils.d.ts +1 -2
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/selectUtils.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.js +1 -1
- package/es/components/iho-table/src/plugins/rendererPlugins/widgets/checkRendererPlugin.js +1 -1
- package/es/components/iho-table/src/plugins/stickyFixedPlugin.js +1 -1
- package/es/components/iho-table/src/plugins/varialbleHeightPlugin.js +1 -1
- package/es/components/iho-table/src/plugins/verticalTablePlugin/src/utils.js +1 -1
- package/es/components/iho-table/src/types/index.d.ts +1 -0
- package/es/components/iho-table/src/types/pluginType.d.ts +2 -2
- package/es/components/iho-table/src/utils/index.js +1 -1
- package/es/components/index.css +1 -1
- package/es/components/index.d.ts +2 -1
- package/es/components/index.js +1 -1
- package/es/components/info-header/index.d.ts +24 -2
- package/es/components/info-header/src/InfoHeader.vue.d.ts +24 -2
- package/es/components/info-header/src/components/infoDescription/DescriptionItem.vue.d.ts +2 -0
- package/es/components/info-header/src/components/infoDescription/DescriptionList.vue.d.ts +2 -0
- package/es/components/info-header/src/components/infoDescription/index.vue.d.ts +9 -1
- package/es/components/info-header/src/components/patientInfo/index.vue.d.ts +7 -1
- package/es/components/scale-view/index.d.ts +17 -3
- package/es/components/scale-view/src/ScaleView.vue.d.ts +17 -3
- package/es/components/scale-view/src/ScaleView.vue2.js +1 -1
- package/es/components/scale-view/src/components/EvaluateCountdown.vue.d.ts +1 -1
- package/es/components/scale-view/src/hooks/scaleview-computed.js +1 -1
- package/es/components/scale-view/src/hooks/scaleview-init.d.ts +3 -1
- package/es/components/scale-view/src/hooks/scaleview-init.js +1 -1
- package/es/components/scale-view/src/hooks/scaleview-props.d.ts +4 -0
- package/es/components/scale-view/src/hooks/scaleview-props.js +1 -1
- package/es/components/scale-view/src/hooks/use-component.d.ts +1 -2189
- package/es/components/shortcut-provider/src/ShortcutProvider.vue2.js +1 -1
- package/es/components/shortcut-setter/index.d.ts +15 -3
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +15 -3
- package/es/components/steps-wheel/index.d.ts +18 -0
- package/es/components/steps-wheel/src/StepsWheel.vue.d.ts +18 -0
- package/es/components/steps-wheel/src/StepsWheel.vue2.js +1 -1
- package/es/shared/assets/img/use.png.js +1 -1
- package/es/shared/components/ArrowIcon/ArrowIcon.vue.js +1 -0
- package/es/shared/components/ArrowIcon/index.d.ts +2 -0
- package/es/shared/components/ArrowIcon/index.js +1 -0
- package/es/shared/components/DateIcon/DateIcon.vue.js +1 -0
- package/es/shared/components/DateIcon/index.d.ts +2 -0
- package/es/shared/components/DateIcon/index.js +1 -0
- package/es/shared/hooks/useLevelSearchCascader.d.ts +1 -0
- package/es/shared/hooks/useLevelSearchCascader.js +1 -1
- package/es/shared/package.json.js +1 -1
- package/package.json +5 -3
- package/es/components/ai-chat/src/components/ChatMainInner.js +0 -1
- package/es/components/ai-chat/src/components/card/SelectIcon.js +0 -1
- /package/es/components/ai-chat/src/components/{ChatMainInner.d.ts → ChatMainDefault.d.ts} +0 -0
@@ -125,6 +125,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
125
125
|
linebarTextDirection: "horizontal" | "vertical";
|
126
126
|
autoWidth: number | boolean;
|
127
127
|
feedbackType: "default" | "tooltip";
|
128
|
+
fixMemoLeak: boolean;
|
129
|
+
lazyRender: boolean;
|
128
130
|
}>>>;
|
129
131
|
};
|
130
132
|
beforeMove: {
|
@@ -253,6 +255,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
253
255
|
linebarTextDirection: "horizontal" | "vertical";
|
254
256
|
autoWidth: number | boolean;
|
255
257
|
feedbackType: "default" | "tooltip";
|
258
|
+
fixMemoLeak: boolean;
|
259
|
+
lazyRender: boolean;
|
256
260
|
}>>>;
|
257
261
|
};
|
258
262
|
beforeMove: {
|
@@ -621,6 +625,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
621
625
|
fixMemoLeak: {
|
622
626
|
type: BooleanConstructor;
|
623
627
|
};
|
628
|
+
lazyRender: BooleanConstructor;
|
624
629
|
}, {
|
625
630
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
626
631
|
fieldList: {
|
@@ -823,6 +828,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
823
828
|
fixMemoLeak: {
|
824
829
|
type: BooleanConstructor;
|
825
830
|
};
|
831
|
+
lazyRender: BooleanConstructor;
|
826
832
|
}>> & {
|
827
833
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
828
834
|
onScroll?: ((...args: any[]) => any) | undefined;
|
@@ -997,6 +1003,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
997
1003
|
linebarTextDirection: "horizontal" | "vertical";
|
998
1004
|
autoWidth: number | boolean;
|
999
1005
|
feedbackType: "default" | "tooltip";
|
1006
|
+
fixMemoLeak: boolean;
|
1007
|
+
lazyRender: boolean;
|
1000
1008
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
1001
1009
|
[key: symbol]: any;
|
1002
1010
|
[key: `x-${string}`]: any;
|
@@ -1383,6 +1391,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1383
1391
|
fixMemoLeak: {
|
1384
1392
|
type: BooleanConstructor;
|
1385
1393
|
};
|
1394
|
+
lazyRender: BooleanConstructor;
|
1386
1395
|
}>> & {
|
1387
1396
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
1388
1397
|
onScroll?: ((...args: any[]) => any) | undefined;
|
@@ -1414,9 +1423,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
1414
1423
|
linebarTextDirection: "horizontal" | "vertical";
|
1415
1424
|
autoWidth: number | boolean;
|
1416
1425
|
feedbackType: "default" | "tooltip";
|
1426
|
+
fixMemoLeak: boolean;
|
1427
|
+
lazyRender: boolean;
|
1417
1428
|
operationalFormInit: boolean;
|
1418
1429
|
incrementalRender: boolean;
|
1419
|
-
fixMemoLeak: boolean;
|
1420
1430
|
}>;
|
1421
1431
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
1422
1432
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
@@ -1645,6 +1655,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
1645
1655
|
linebarTextDirection: "horizontal" | "vertical";
|
1646
1656
|
autoWidth: number | boolean;
|
1647
1657
|
feedbackType: "default" | "tooltip";
|
1658
|
+
fixMemoLeak: boolean;
|
1659
|
+
lazyRender: boolean;
|
1648
1660
|
}>>>;
|
1649
1661
|
};
|
1650
1662
|
}, {
|
@@ -1761,6 +1773,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
1761
1773
|
linebarTextDirection: "horizontal" | "vertical";
|
1762
1774
|
autoWidth: number | boolean;
|
1763
1775
|
feedbackType: "default" | "tooltip";
|
1776
|
+
fixMemoLeak: boolean;
|
1777
|
+
lazyRender: boolean;
|
1764
1778
|
}>>>;
|
1765
1779
|
};
|
1766
1780
|
}>> & {}>>;
|
@@ -1785,7 +1799,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1785
1799
|
placeholder?: string | undefined;
|
1786
1800
|
validate?: {
|
1787
1801
|
[x: string]: any;
|
1788
|
-
obj_type?: ("password" | "sex" | "age" | "email" | "
|
1802
|
+
obj_type?: ("password" | "sex" | "age" | "email" | "mobile" | "birthday" | "id_card" | "age_unit" | "telephone" | "bank_card" | "website" | "gestational_weeks" | "gestational_stage" | "customer_name") | undefined;
|
1789
1803
|
vali_obj?: string | undefined;
|
1790
1804
|
max_value?: string | number | undefined;
|
1791
1805
|
min_value?: string | number | undefined;
|
@@ -1885,6 +1899,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1885
1899
|
extendKey?: string | undefined;
|
1886
1900
|
is_not_fold?: string | undefined;
|
1887
1901
|
remark?: string | undefined;
|
1902
|
+
remarkTo?: string | HTMLElement | undefined;
|
1888
1903
|
free_entry?: import("../../../components/form-render").FormCommonState | undefined;
|
1889
1904
|
save_free_entry?: import("../../../components/form-render").FormCommonState | undefined;
|
1890
1905
|
initialize_high?: number | undefined;
|
@@ -1953,7 +1968,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
1953
1968
|
wrapperStyle?: Record<string, string | number> | undefined;
|
1954
1969
|
childFieldStrategy?: "checked" | "all" | undefined;
|
1955
1970
|
childWidthMode?: "inner" | "outer" | undefined;
|
1956
|
-
validator?: ((value: unknown, fieldItem: import("../../../components/form-render").FieldItem,
|
1971
|
+
validator?: ((value: unknown, fieldItem: import("../../../components/form-render").FieldItem, context: {
|
1972
|
+
field: import("@formily/core").Field<any, any, any, any>;
|
1973
|
+
form: import("@formily/core").Form<any>;
|
1974
|
+
value: unknown;
|
1975
|
+
validator: AnyFn;
|
1976
|
+
}) => string | void) | undefined;
|
1957
1977
|
reactions?: {
|
1958
1978
|
[x: string]: any;
|
1959
1979
|
dependencies?: string[] | undefined;
|
@@ -2037,7 +2057,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2037
2057
|
placeholder?: string | undefined;
|
2038
2058
|
validate?: {
|
2039
2059
|
[x: string]: any;
|
2040
|
-
obj_type?: ("password" | "sex" | "age" | "email" | "
|
2060
|
+
obj_type?: ("password" | "sex" | "age" | "email" | "mobile" | "birthday" | "id_card" | "age_unit" | "telephone" | "bank_card" | "website" | "gestational_weeks" | "gestational_stage" | "customer_name") | undefined;
|
2041
2061
|
vali_obj?: string | undefined;
|
2042
2062
|
max_value?: string | number | undefined;
|
2043
2063
|
min_value?: string | number | undefined;
|
@@ -2137,6 +2157,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2137
2157
|
extendKey?: string | undefined;
|
2138
2158
|
is_not_fold?: string | undefined;
|
2139
2159
|
remark?: string | undefined;
|
2160
|
+
remarkTo?: string | HTMLElement | undefined;
|
2140
2161
|
free_entry?: import("../../../components/form-render").FormCommonState | undefined;
|
2141
2162
|
save_free_entry?: import("../../../components/form-render").FormCommonState | undefined;
|
2142
2163
|
initialize_high?: number | undefined;
|
@@ -2205,7 +2226,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
2205
2226
|
wrapperStyle?: Record<string, string | number> | undefined;
|
2206
2227
|
childFieldStrategy?: "checked" | "all" | undefined;
|
2207
2228
|
childWidthMode?: "inner" | "outer" | undefined;
|
2208
|
-
validator?: ((value: unknown, fieldItem: import("../../../components/form-render").FieldItem,
|
2229
|
+
validator?: ((value: unknown, fieldItem: import("../../../components/form-render").FieldItem, context: {
|
2230
|
+
field: import("@formily/core").Field<any, any, any, any>;
|
2231
|
+
form: import("@formily/core").Form<any>;
|
2232
|
+
value: unknown;
|
2233
|
+
validator: AnyFn;
|
2234
|
+
}) => string | void) | undefined;
|
2209
2235
|
reactions?: {
|
2210
2236
|
[x: string]: any;
|
2211
2237
|
dependencies?: string[] | undefined;
|
@@ -2262,7 +2288,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2262
2288
|
placeholder?: string | undefined;
|
2263
2289
|
validate?: {
|
2264
2290
|
[x: string]: any;
|
2265
|
-
obj_type?: ("password" | "sex" | "age" | "email" | "
|
2291
|
+
obj_type?: ("password" | "sex" | "age" | "email" | "mobile" | "birthday" | "id_card" | "age_unit" | "telephone" | "bank_card" | "website" | "gestational_weeks" | "gestational_stage" | "customer_name") | undefined;
|
2266
2292
|
vali_obj?: string | undefined;
|
2267
2293
|
max_value?: string | number | undefined;
|
2268
2294
|
min_value?: string | number | undefined;
|
@@ -2362,6 +2388,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2362
2388
|
extendKey?: string | undefined;
|
2363
2389
|
is_not_fold?: string | undefined;
|
2364
2390
|
remark?: string | undefined;
|
2391
|
+
remarkTo?: string | HTMLElement | undefined;
|
2365
2392
|
free_entry?: import("../../../components/form-render").FormCommonState | undefined;
|
2366
2393
|
save_free_entry?: import("../../../components/form-render").FormCommonState | undefined;
|
2367
2394
|
initialize_high?: number | undefined;
|
@@ -2430,7 +2457,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
2430
2457
|
wrapperStyle?: Record<string, string | number> | undefined;
|
2431
2458
|
childFieldStrategy?: "checked" | "all" | undefined;
|
2432
2459
|
childWidthMode?: "inner" | "outer" | undefined;
|
2433
|
-
validator?: ((value: unknown, fieldItem: import("../../../components/form-render").FieldItem,
|
2460
|
+
validator?: ((value: unknown, fieldItem: import("../../../components/form-render").FieldItem, context: {
|
2461
|
+
field: import("@formily/core").Field<any, any, any, any>;
|
2462
|
+
form: import("@formily/core").Form<any>;
|
2463
|
+
value: unknown;
|
2464
|
+
validator: AnyFn;
|
2465
|
+
}) => string | void) | undefined;
|
2434
2466
|
reactions?: {
|
2435
2467
|
[x: string]: any;
|
2436
2468
|
dependencies?: string[] | undefined;
|
@@ -2501,7 +2533,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2501
2533
|
placeholder?: string | undefined;
|
2502
2534
|
validate?: {
|
2503
2535
|
[x: string]: any;
|
2504
|
-
obj_type?: ("password" | "sex" | "age" | "email" | "
|
2536
|
+
obj_type?: ("password" | "sex" | "age" | "email" | "mobile" | "birthday" | "id_card" | "age_unit" | "telephone" | "bank_card" | "website" | "gestational_weeks" | "gestational_stage" | "customer_name") | undefined;
|
2505
2537
|
vali_obj?: string | undefined;
|
2506
2538
|
max_value?: string | number | undefined;
|
2507
2539
|
min_value?: string | number | undefined;
|
@@ -2595,6 +2627,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2595
2627
|
extendKey?: string | undefined;
|
2596
2628
|
is_not_fold?: string | undefined;
|
2597
2629
|
remark?: string | undefined;
|
2630
|
+
remarkTo?: string | HTMLElement | undefined;
|
2598
2631
|
free_entry?: import("../../../components/form-render").FormCommonState | undefined;
|
2599
2632
|
save_free_entry?: import("../../../components/form-render").FormCommonState | undefined;
|
2600
2633
|
initialize_high?: number | undefined;
|
@@ -2663,7 +2696,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
2663
2696
|
wrapperStyle?: Record<string, string | number> | undefined;
|
2664
2697
|
childFieldStrategy?: "checked" | "all" | undefined;
|
2665
2698
|
childWidthMode?: "inner" | "outer" | undefined;
|
2666
|
-
validator?: ((value: unknown, fieldItem: import("../../../components/form-render").FieldItem,
|
2699
|
+
validator?: ((value: unknown, fieldItem: import("../../../components/form-render").FieldItem, context: {
|
2700
|
+
field: import("@formily/core").Field<any, any, any, any>;
|
2701
|
+
form: import("@formily/core").Form<any>;
|
2702
|
+
value: unknown;
|
2703
|
+
validator: AnyFn;
|
2704
|
+
}) => string | void) | undefined;
|
2667
2705
|
reactions?: {
|
2668
2706
|
[x: string]: any;
|
2669
2707
|
dependencies?: string[] | undefined;
|
@@ -2907,6 +2945,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2907
2945
|
fixMemoLeak: {
|
2908
2946
|
type: BooleanConstructor;
|
2909
2947
|
};
|
2948
|
+
lazyRender: BooleanConstructor;
|
2910
2949
|
}, {
|
2911
2950
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
2912
2951
|
fieldList: {
|
@@ -3109,6 +3148,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
3109
3148
|
fixMemoLeak: {
|
3110
3149
|
type: BooleanConstructor;
|
3111
3150
|
};
|
3151
|
+
lazyRender: BooleanConstructor;
|
3112
3152
|
}>> & {
|
3113
3153
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
3114
3154
|
onScroll?: ((...args: any[]) => any) | undefined;
|
@@ -3283,6 +3323,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
3283
3323
|
linebarTextDirection: "horizontal" | "vertical";
|
3284
3324
|
autoWidth: number | boolean;
|
3285
3325
|
feedbackType: "default" | "tooltip";
|
3326
|
+
fixMemoLeak: boolean;
|
3327
|
+
lazyRender: boolean;
|
3286
3328
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
3287
3329
|
[key: symbol]: any;
|
3288
3330
|
[key: `x-${string}`]: any;
|
@@ -3669,6 +3711,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
3669
3711
|
fixMemoLeak: {
|
3670
3712
|
type: BooleanConstructor;
|
3671
3713
|
};
|
3714
|
+
lazyRender: BooleanConstructor;
|
3672
3715
|
}>> & {
|
3673
3716
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
3674
3717
|
onScroll?: ((...args: any[]) => any) | undefined;
|
@@ -3700,9 +3743,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
3700
3743
|
linebarTextDirection: "horizontal" | "vertical";
|
3701
3744
|
autoWidth: number | boolean;
|
3702
3745
|
feedbackType: "default" | "tooltip";
|
3746
|
+
fixMemoLeak: boolean;
|
3747
|
+
lazyRender: boolean;
|
3703
3748
|
operationalFormInit: boolean;
|
3704
3749
|
incrementalRender: boolean;
|
3705
|
-
fixMemoLeak: boolean;
|
3706
3750
|
}>;
|
3707
3751
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
3708
3752
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
@@ -3818,6 +3862,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
3818
3862
|
linebarTextDirection: "horizontal" | "vertical";
|
3819
3863
|
autoWidth: number | boolean;
|
3820
3864
|
feedbackType: "default" | "tooltip";
|
3865
|
+
fixMemoLeak: boolean;
|
3866
|
+
lazyRender: boolean;
|
3821
3867
|
}>>>;
|
3822
3868
|
};
|
3823
3869
|
}>>, {}>;
|
@@ -3917,7 +3963,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
3917
3963
|
placeholder?: string | undefined;
|
3918
3964
|
validate?: Partial<{
|
3919
3965
|
[key: string]: any;
|
3920
|
-
obj_type: "password" | "sex" | "age" | "email" | "
|
3966
|
+
obj_type: "password" | "sex" | "age" | "email" | "mobile" | "birthday" | "id_card" | "age_unit" | "telephone" | "bank_card" | "website" | "gestational_weeks" | "gestational_stage" | "customer_name";
|
3921
3967
|
vali_obj: string;
|
3922
3968
|
max_value: string | number;
|
3923
3969
|
min_value: string | number;
|
@@ -3969,6 +4015,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
3969
4015
|
extendKey?: string | undefined;
|
3970
4016
|
is_not_fold?: string | undefined;
|
3971
4017
|
remark?: string | undefined;
|
4018
|
+
remarkTo?: string | HTMLElement | undefined;
|
3972
4019
|
free_entry?: import("../../../components/form-render").FormCommonState | undefined;
|
3973
4020
|
save_free_entry?: import("../../../components/form-render").FormCommonState | undefined;
|
3974
4021
|
initialize_high?: number | undefined;
|
@@ -4009,7 +4056,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
4009
4056
|
wrapperStyle?: Record<string, string | number> | undefined;
|
4010
4057
|
childFieldStrategy?: "checked" | "all" | undefined;
|
4011
4058
|
childWidthMode?: "inner" | "outer" | undefined;
|
4012
|
-
validator?: ((value: unknown, fieldItem: import("../../../components/form-render").FieldItem,
|
4059
|
+
validator?: ((value: unknown, fieldItem: import("../../../components/form-render").FieldItem, context: {
|
4060
|
+
field: import("@formily/core").Field<any, any, any, any>;
|
4061
|
+
form: import("@formily/core").Form<any>;
|
4062
|
+
value: unknown;
|
4063
|
+
validator: AnyFn;
|
4064
|
+
}) => string | void) | undefined;
|
4013
4065
|
reactions?: import("../../../shared/types").ArrayAble<import("../../../components/form-render").ReactionType> | undefined;
|
4014
4066
|
}[];
|
4015
4067
|
removeSetValueField: (item: LowCodeTypes.reactionConfig, index: number) => void;
|
@@ -4247,6 +4299,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4247
4299
|
fixMemoLeak: {
|
4248
4300
|
type: BooleanConstructor;
|
4249
4301
|
};
|
4302
|
+
lazyRender: BooleanConstructor;
|
4250
4303
|
}, {
|
4251
4304
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
4252
4305
|
fieldList: {
|
@@ -4449,6 +4502,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
4449
4502
|
fixMemoLeak: {
|
4450
4503
|
type: BooleanConstructor;
|
4451
4504
|
};
|
4505
|
+
lazyRender: BooleanConstructor;
|
4452
4506
|
}>> & {
|
4453
4507
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
4454
4508
|
onScroll?: ((...args: any[]) => any) | undefined;
|
@@ -4623,6 +4677,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
4623
4677
|
linebarTextDirection: "horizontal" | "vertical";
|
4624
4678
|
autoWidth: number | boolean;
|
4625
4679
|
feedbackType: "default" | "tooltip";
|
4680
|
+
fixMemoLeak: boolean;
|
4681
|
+
lazyRender: boolean;
|
4626
4682
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
4627
4683
|
[key: symbol]: any;
|
4628
4684
|
[key: `x-${string}`]: any;
|
@@ -5009,6 +5065,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
5009
5065
|
fixMemoLeak: {
|
5010
5066
|
type: BooleanConstructor;
|
5011
5067
|
};
|
5068
|
+
lazyRender: BooleanConstructor;
|
5012
5069
|
}>> & {
|
5013
5070
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
5014
5071
|
onScroll?: ((...args: any[]) => any) | undefined;
|
@@ -5040,9 +5097,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
5040
5097
|
linebarTextDirection: "horizontal" | "vertical";
|
5041
5098
|
autoWidth: number | boolean;
|
5042
5099
|
feedbackType: "default" | "tooltip";
|
5100
|
+
fixMemoLeak: boolean;
|
5101
|
+
lazyRender: boolean;
|
5043
5102
|
operationalFormInit: boolean;
|
5044
5103
|
incrementalRender: boolean;
|
5045
|
-
fixMemoLeak: boolean;
|
5046
5104
|
}>;
|
5047
5105
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
5048
5106
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "validateFailure")[], "update:modelValue" | "validateFailure", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
@@ -5214,6 +5272,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
5214
5272
|
linebarTextDirection: "horizontal" | "vertical";
|
5215
5273
|
autoWidth: number | boolean;
|
5216
5274
|
feedbackType: "default" | "tooltip";
|
5275
|
+
fixMemoLeak: boolean;
|
5276
|
+
lazyRender: boolean;
|
5217
5277
|
}>>>;
|
5218
5278
|
};
|
5219
5279
|
beforeMove: {
|
@@ -223,6 +223,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
223
223
|
fixMemoLeak: {
|
224
224
|
type: BooleanConstructor;
|
225
225
|
};
|
226
|
+
lazyRender: BooleanConstructor;
|
226
227
|
}, {
|
227
228
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
228
229
|
fieldList: {
|
@@ -425,6 +426,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
425
426
|
fixMemoLeak: {
|
426
427
|
type: BooleanConstructor;
|
427
428
|
};
|
429
|
+
lazyRender: BooleanConstructor;
|
428
430
|
}>> & {
|
429
431
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
430
432
|
onScroll?: ((...args: any[]) => any) | undefined;
|
@@ -599,6 +601,8 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
599
601
|
linebarTextDirection: "horizontal" | "vertical";
|
600
602
|
autoWidth: number | boolean;
|
601
603
|
feedbackType: "default" | "tooltip";
|
604
|
+
fixMemoLeak: boolean;
|
605
|
+
lazyRender: boolean;
|
602
606
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
603
607
|
[key: symbol]: any;
|
604
608
|
[key: `x-${string}`]: any;
|
@@ -985,6 +989,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
985
989
|
fixMemoLeak: {
|
986
990
|
type: BooleanConstructor;
|
987
991
|
};
|
992
|
+
lazyRender: BooleanConstructor;
|
988
993
|
}>> & {
|
989
994
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
990
995
|
onScroll?: ((...args: any[]) => any) | undefined;
|
@@ -1016,9 +1021,10 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
1016
1021
|
linebarTextDirection: "horizontal" | "vertical";
|
1017
1022
|
autoWidth: number | boolean;
|
1018
1023
|
feedbackType: "default" | "tooltip";
|
1024
|
+
fixMemoLeak: boolean;
|
1025
|
+
lazyRender: boolean;
|
1019
1026
|
operationalFormInit: boolean;
|
1020
1027
|
incrementalRender: boolean;
|
1021
|
-
fixMemoLeak: boolean;
|
1022
1028
|
}>;
|
1023
1029
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
1024
1030
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
@@ -116,6 +116,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
116
116
|
linebarTextDirection: "horizontal" | "vertical";
|
117
117
|
autoWidth: number | boolean;
|
118
118
|
feedbackType: "default" | "tooltip";
|
119
|
+
fixMemoLeak: boolean;
|
120
|
+
lazyRender: boolean;
|
119
121
|
}>>>;
|
120
122
|
};
|
121
123
|
}, {
|
@@ -232,6 +234,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
232
234
|
linebarTextDirection: "horizontal" | "vertical";
|
233
235
|
autoWidth: number | boolean;
|
234
236
|
feedbackType: "default" | "tooltip";
|
237
|
+
fixMemoLeak: boolean;
|
238
|
+
lazyRender: boolean;
|
235
239
|
}>>>;
|
236
240
|
};
|
237
241
|
}>> & {}>>;
|
@@ -256,7 +260,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
256
260
|
placeholder?: string | undefined;
|
257
261
|
validate?: {
|
258
262
|
[x: string]: any;
|
259
|
-
obj_type?: ("password" | "sex" | "age" | "email" | "
|
263
|
+
obj_type?: ("password" | "sex" | "age" | "email" | "mobile" | "birthday" | "id_card" | "age_unit" | "telephone" | "bank_card" | "website" | "gestational_weeks" | "gestational_stage" | "customer_name") | undefined;
|
260
264
|
vali_obj?: string | undefined;
|
261
265
|
max_value?: string | number | undefined;
|
262
266
|
min_value?: string | number | undefined;
|
@@ -356,6 +360,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
356
360
|
extendKey?: string | undefined;
|
357
361
|
is_not_fold?: string | undefined;
|
358
362
|
remark?: string | undefined;
|
363
|
+
remarkTo?: string | HTMLElement | undefined;
|
359
364
|
free_entry?: import("../../../../components/form-render").FormCommonState | undefined;
|
360
365
|
save_free_entry?: import("../../../../components/form-render").FormCommonState | undefined;
|
361
366
|
initialize_high?: number | undefined;
|
@@ -424,7 +429,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
424
429
|
wrapperStyle?: Record<string, string | number> | undefined;
|
425
430
|
childFieldStrategy?: "checked" | "all" | undefined;
|
426
431
|
childWidthMode?: "inner" | "outer" | undefined;
|
427
|
-
validator?: ((value: unknown, fieldItem: FieldItem,
|
432
|
+
validator?: ((value: unknown, fieldItem: FieldItem, context: {
|
433
|
+
field: import("@formily/core").Field<any, any, any, any>;
|
434
|
+
form: import("@formily/core").Form<any>;
|
435
|
+
value: unknown;
|
436
|
+
validator: import("../../../../shared/types").AnyFn;
|
437
|
+
}) => string | void) | undefined;
|
428
438
|
reactions?: {
|
429
439
|
[x: string]: any;
|
430
440
|
dependencies?: string[] | undefined;
|
@@ -508,7 +518,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
508
518
|
placeholder?: string | undefined;
|
509
519
|
validate?: {
|
510
520
|
[x: string]: any;
|
511
|
-
obj_type?: ("password" | "sex" | "age" | "email" | "
|
521
|
+
obj_type?: ("password" | "sex" | "age" | "email" | "mobile" | "birthday" | "id_card" | "age_unit" | "telephone" | "bank_card" | "website" | "gestational_weeks" | "gestational_stage" | "customer_name") | undefined;
|
512
522
|
vali_obj?: string | undefined;
|
513
523
|
max_value?: string | number | undefined;
|
514
524
|
min_value?: string | number | undefined;
|
@@ -608,6 +618,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
608
618
|
extendKey?: string | undefined;
|
609
619
|
is_not_fold?: string | undefined;
|
610
620
|
remark?: string | undefined;
|
621
|
+
remarkTo?: string | HTMLElement | undefined;
|
611
622
|
free_entry?: import("../../../../components/form-render").FormCommonState | undefined;
|
612
623
|
save_free_entry?: import("../../../../components/form-render").FormCommonState | undefined;
|
613
624
|
initialize_high?: number | undefined;
|
@@ -676,7 +687,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
676
687
|
wrapperStyle?: Record<string, string | number> | undefined;
|
677
688
|
childFieldStrategy?: "checked" | "all" | undefined;
|
678
689
|
childWidthMode?: "inner" | "outer" | undefined;
|
679
|
-
validator?: ((value: unknown, fieldItem: FieldItem,
|
690
|
+
validator?: ((value: unknown, fieldItem: FieldItem, context: {
|
691
|
+
field: import("@formily/core").Field<any, any, any, any>;
|
692
|
+
form: import("@formily/core").Form<any>;
|
693
|
+
value: unknown;
|
694
|
+
validator: import("../../../../shared/types").AnyFn;
|
695
|
+
}) => string | void) | undefined;
|
680
696
|
reactions?: {
|
681
697
|
[x: string]: any;
|
682
698
|
dependencies?: string[] | undefined;
|
@@ -733,7 +749,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
733
749
|
placeholder?: string | undefined;
|
734
750
|
validate?: {
|
735
751
|
[x: string]: any;
|
736
|
-
obj_type?: ("password" | "sex" | "age" | "email" | "
|
752
|
+
obj_type?: ("password" | "sex" | "age" | "email" | "mobile" | "birthday" | "id_card" | "age_unit" | "telephone" | "bank_card" | "website" | "gestational_weeks" | "gestational_stage" | "customer_name") | undefined;
|
737
753
|
vali_obj?: string | undefined;
|
738
754
|
max_value?: string | number | undefined;
|
739
755
|
min_value?: string | number | undefined;
|
@@ -833,6 +849,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
833
849
|
extendKey?: string | undefined;
|
834
850
|
is_not_fold?: string | undefined;
|
835
851
|
remark?: string | undefined;
|
852
|
+
remarkTo?: string | HTMLElement | undefined;
|
836
853
|
free_entry?: import("../../../../components/form-render").FormCommonState | undefined;
|
837
854
|
save_free_entry?: import("../../../../components/form-render").FormCommonState | undefined;
|
838
855
|
initialize_high?: number | undefined;
|
@@ -901,7 +918,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
901
918
|
wrapperStyle?: Record<string, string | number> | undefined;
|
902
919
|
childFieldStrategy?: "checked" | "all" | undefined;
|
903
920
|
childWidthMode?: "inner" | "outer" | undefined;
|
904
|
-
validator?: ((value: unknown, fieldItem: FieldItem,
|
921
|
+
validator?: ((value: unknown, fieldItem: FieldItem, context: {
|
922
|
+
field: import("@formily/core").Field<any, any, any, any>;
|
923
|
+
form: import("@formily/core").Form<any>;
|
924
|
+
value: unknown;
|
925
|
+
validator: import("../../../../shared/types").AnyFn;
|
926
|
+
}) => string | void) | undefined;
|
905
927
|
reactions?: {
|
906
928
|
[x: string]: any;
|
907
929
|
dependencies?: string[] | undefined;
|
@@ -972,7 +994,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
972
994
|
placeholder?: string | undefined;
|
973
995
|
validate?: {
|
974
996
|
[x: string]: any;
|
975
|
-
obj_type?: ("password" | "sex" | "age" | "email" | "
|
997
|
+
obj_type?: ("password" | "sex" | "age" | "email" | "mobile" | "birthday" | "id_card" | "age_unit" | "telephone" | "bank_card" | "website" | "gestational_weeks" | "gestational_stage" | "customer_name") | undefined;
|
976
998
|
vali_obj?: string | undefined;
|
977
999
|
max_value?: string | number | undefined;
|
978
1000
|
min_value?: string | number | undefined;
|
@@ -1066,6 +1088,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1066
1088
|
extendKey?: string | undefined;
|
1067
1089
|
is_not_fold?: string | undefined;
|
1068
1090
|
remark?: string | undefined;
|
1091
|
+
remarkTo?: string | HTMLElement | undefined;
|
1069
1092
|
free_entry?: import("../../../../components/form-render").FormCommonState | undefined;
|
1070
1093
|
save_free_entry?: import("../../../../components/form-render").FormCommonState | undefined;
|
1071
1094
|
initialize_high?: number | undefined;
|
@@ -1134,7 +1157,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
1134
1157
|
wrapperStyle?: Record<string, string | number> | undefined;
|
1135
1158
|
childFieldStrategy?: "checked" | "all" | undefined;
|
1136
1159
|
childWidthMode?: "inner" | "outer" | undefined;
|
1137
|
-
validator?: ((value: unknown, fieldItem: FieldItem,
|
1160
|
+
validator?: ((value: unknown, fieldItem: FieldItem, context: {
|
1161
|
+
field: import("@formily/core").Field<any, any, any, any>;
|
1162
|
+
form: import("@formily/core").Form<any>;
|
1163
|
+
value: unknown;
|
1164
|
+
validator: import("../../../../shared/types").AnyFn;
|
1165
|
+
}) => string | void) | undefined;
|
1138
1166
|
reactions?: {
|
1139
1167
|
[x: string]: any;
|
1140
1168
|
dependencies?: string[] | undefined;
|
@@ -1378,6 +1406,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1378
1406
|
fixMemoLeak: {
|
1379
1407
|
type: BooleanConstructor;
|
1380
1408
|
};
|
1409
|
+
lazyRender: BooleanConstructor;
|
1381
1410
|
}, {
|
1382
1411
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1383
1412
|
fieldList: {
|
@@ -1580,6 +1609,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
1580
1609
|
fixMemoLeak: {
|
1581
1610
|
type: BooleanConstructor;
|
1582
1611
|
};
|
1612
|
+
lazyRender: BooleanConstructor;
|
1583
1613
|
}>> & {
|
1584
1614
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
1585
1615
|
onScroll?: ((...args: any[]) => any) | undefined;
|
@@ -1754,6 +1784,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
1754
1784
|
linebarTextDirection: "horizontal" | "vertical";
|
1755
1785
|
autoWidth: number | boolean;
|
1756
1786
|
feedbackType: "default" | "tooltip";
|
1787
|
+
fixMemoLeak: boolean;
|
1788
|
+
lazyRender: boolean;
|
1757
1789
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
1758
1790
|
[key: symbol]: any;
|
1759
1791
|
[key: `x-${string}`]: any;
|
@@ -2140,6 +2172,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
2140
2172
|
fixMemoLeak: {
|
2141
2173
|
type: BooleanConstructor;
|
2142
2174
|
};
|
2175
|
+
lazyRender: BooleanConstructor;
|
2143
2176
|
}>> & {
|
2144
2177
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
2145
2178
|
onScroll?: ((...args: any[]) => any) | undefined;
|
@@ -2171,9 +2204,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
2171
2204
|
linebarTextDirection: "horizontal" | "vertical";
|
2172
2205
|
autoWidth: number | boolean;
|
2173
2206
|
feedbackType: "default" | "tooltip";
|
2207
|
+
fixMemoLeak: boolean;
|
2208
|
+
lazyRender: boolean;
|
2174
2209
|
operationalFormInit: boolean;
|
2175
2210
|
incrementalRender: boolean;
|
2176
|
-
fixMemoLeak: boolean;
|
2177
2211
|
}>;
|
2178
2212
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
2179
2213
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
@@ -2289,6 +2323,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
2289
2323
|
linebarTextDirection: "horizontal" | "vertical";
|
2290
2324
|
autoWidth: number | boolean;
|
2291
2325
|
feedbackType: "default" | "tooltip";
|
2326
|
+
fixMemoLeak: boolean;
|
2327
|
+
lazyRender: boolean;
|
2292
2328
|
}>>>;
|
2293
2329
|
};
|
2294
2330
|
}>>, {}>;
|