@kp-ui/lowcode-pc 1.0.0
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/assets/CustomerModal.mjs +210 -0
- package/assets/bpmn-editor-widget.mjs +71 -0
- package/assets/button-list-widget.mjs +53 -0
- package/assets/button-widget.mjs +80 -0
- package/assets/cascader-widget.mjs +95 -0
- package/assets/checkbox-widget.mjs +89 -0
- package/assets/code-editor-widget.mjs +58 -0
- package/assets/color-widget.mjs +62 -0
- package/assets/data-table-widget.mjs +92 -0
- package/assets/date-range-widget.mjs +87 -0
- package/assets/date-widget.mjs +81 -0
- package/assets/divider-widget.mjs +46 -0
- package/assets/diy-compontent-widget.mjs +54 -0
- package/assets/dropdown-widget.mjs +101 -0
- package/assets/en-US.mjs +571 -0
- package/assets/en-US_extension.mjs +25 -0
- package/assets/en-US_render.mjs +40 -0
- package/assets/file-upload-widget.mjs +248 -0
- package/assets/form-item-wrapper.mjs +140 -0
- package/assets/grid-col-widget.mjs +86 -0
- package/assets/grid-sub-form-widget.mjs +33 -0
- package/assets/grid-widget.mjs +52 -0
- package/assets/html-text-widget.mjs +44 -0
- package/assets/input-widget.mjs +98 -0
- package/assets/install.mjs +5405 -0
- package/assets/number-widget.mjs +74 -0
- package/assets/radio-widget.mjs +93 -0
- package/assets/rate-widget.mjs +51 -0
- package/assets/rich-editor-widget.mjs +78 -0
- package/assets/select-widget.mjs +105 -0
- package/assets/slider-widget.mjs +66 -0
- package/assets/static-text-widget.mjs +39 -0
- package/assets/styles/style.css +720 -0
- package/assets/switch-widget.mjs +60 -0
- package/assets/tab-widget.mjs +68 -0
- package/assets/textarea-widget.mjs +75 -0
- package/assets/time-range-widget.mjs +94 -0
- package/assets/time-widget.mjs +80 -0
- package/assets/tree-widget.mjs +94 -0
- package/assets/treeSelect-widget.mjs +98 -0
- package/assets/useCustomerModal.mjs +30 -0
- package/assets/useField.mjs +573 -0
- package/assets/useSelect.mjs +226 -0
- package/assets/vf-box-widget.mjs +67 -0
- package/assets/vf-collapse-widget.mjs +70 -0
- package/assets/vf-dialog-widget.mjs +61 -0
- package/assets/vue-render-widget.mjs +93 -0
- package/assets/zh-CN.mjs +591 -0
- package/assets/zh-CN_extension.mjs +25 -0
- package/assets/zh-CN_render.mjs +40 -0
- package/index.js +7 -0
- package/package.json +34 -0
- package/types/core/src/components/DragBtn.vue.d.ts +7 -0
- package/types/core/src/components/HttpEditor.vue.d.ts +46 -0
- package/types/core/src/components/common/EventItemEditor.vue.d.ts +12 -0
- package/types/core/src/components/common/LowcodeI18nProvider.vue.d.ts +17 -0
- package/types/core/src/components/common/RenderWidgetList.vue.d.ts +16 -0
- package/types/core/src/components/common/desginer/RenderDesignerWrapper.vue.d.ts +2 -0
- package/types/core/src/components/common/desginer/WidgetWrapper.vue.d.ts +30 -0
- package/types/core/src/components/common/render/ActionButtonListDialog.vue.d.ts +345 -0
- package/types/core/src/components/common/render/Debugger.vue.d.ts +10 -0
- package/types/core/src/components/common/render/LowcodeRenderProvider.vue.d.ts +26 -0
- package/types/core/src/components/common/render/index.d.ts +6 -0
- package/types/core/src/components/common/render/useFormContext.d.ts +148 -0
- package/types/core/src/components/common/render/useFormDataProcessor.d.ts +10 -0
- package/types/core/src/components/contextMenu/WidgetContextMenu.vue.d.ts +21 -0
- package/types/core/src/components/contextMenu/useWidgetContextMenu.d.ts +25 -0
- package/types/core/src/components/index.d.ts +16 -0
- package/types/core/src/components/layout/LowcodeLayout.vue.d.ts +24 -0
- package/types/core/src/components/property-editor/index.d.ts +3 -0
- package/types/core/src/components/property-editor/propertyRegister.d.ts +199 -0
- package/types/core/src/components/property-editor/useEditor.d.ts +19 -0
- package/types/core/src/components/setting-plane/WidgetSettingPlane.vue.d.ts +2 -0
- package/types/core/src/components/setting-plane/form-crud-setting.vue.d.ts +10 -0
- package/types/core/src/components/setting-plane/form-setting.vue.d.ts +332 -0
- package/types/core/src/components/setting-plane/index.d.ts +3 -0
- package/types/core/src/components/setting-plane/index.vue.d.ts +675 -0
- package/types/core/src/components/settings/PanelItemDrag.vue.d.ts +24 -0
- package/types/core/src/components/settings/WidgetPanel.vue.d.ts +20 -0
- package/types/core/src/components/toolbar-panel/index.vue.d.ts +689 -0
- package/types/core/src/constants/EditorTypeEnum.d.ts +151 -0
- package/types/core/src/constants/LayoutTypeEnum.d.ts +5 -0
- package/types/core/src/constants/WidgetTypeEnum.d.ts +65 -0
- package/types/core/src/constants/index.d.ts +12 -0
- package/types/core/src/hooks/index.d.ts +6 -0
- package/types/core/src/hooks/useAppRef.d.ts +9 -0
- package/types/core/src/hooks/useDataHttp.d.ts +207 -0
- package/types/core/src/hooks/useDesigner.d.ts +20 -0
- package/types/core/src/hooks/useField.d.ts +95 -0
- package/types/core/src/hooks/useFormValidation.d.ts +54 -0
- package/types/core/src/hooks/useInputEvent.d.ts +10 -0
- package/types/core/src/hooks/useLowcode.d.ts +22 -0
- package/types/core/src/hooks/useNativeDragAndDrop.d.ts +34 -0
- package/types/core/src/lang/en-US.d.ts +564 -0
- package/types/core/src/lang/en-US_extension.d.ts +23 -0
- package/types/core/src/lang/en-US_render.d.ts +38 -0
- package/types/core/src/lang/zh-CN.d.ts +584 -0
- package/types/core/src/lang/zh-CN_extension.d.ts +23 -0
- package/types/core/src/lang/zh-CN_render.d.ts +38 -0
- package/types/core/src/types/button.d.ts +17 -0
- package/types/core/src/types/designer.d.ts +74 -0
- package/types/core/src/types/fileObject.d.ts +7 -0
- package/types/core/src/types/global.d.ts +20 -0
- package/types/core/src/types/index.d.ts +8 -0
- package/types/core/src/types/rowSelectionType.d.ts +12 -0
- package/types/core/src/types/schema.d.ts +169 -0
- package/types/core/src/types/widgetProps.d.ts +8 -0
- package/types/core/src/utils/emitter.d.ts +17 -0
- package/types/core/src/utils/event-bus.d.ts +10 -0
- package/types/core/src/utils/file.d.ts +0 -0
- package/types/core/src/utils/format.d.ts +46 -0
- package/types/core/src/utils/getFileName.d.ts +1 -0
- package/types/core/src/utils/i18n.d.ts +27 -0
- package/types/core/src/utils/index.d.ts +8 -0
- package/types/core/src/utils/insertAssetsToBody.d.ts +3 -0
- package/types/core/src/utils/request/handleAxiosError.d.ts +11 -0
- package/types/core/src/utils/request/http.d.ts +4 -0
- package/types/core/src/utils/smart-vue-i18n/index.d.ts +11 -0
- package/types/core/src/utils/transformWidgetList.d.ts +2 -0
- package/types/core/src/utils/useEmitter.d.ts +31 -0
- package/types/core/src/utils/util.d.ts +81 -0
- package/types/core/src/utils/validators.d.ts +25 -0
- package/types/core/src/utils/widgetRegistry.d.ts +27 -0
- package/types/index.d.ts +1 -0
- package/types/pc/src/components/desginer/form-widget/RenderDesignerPC.vue.d.ts +2 -0
- package/types/pc/src/components/desginer/form-widget/container-widget/data-table-widget.vue.d.ts +77 -0
- package/types/pc/src/components/desginer/form-widget/container-widget/grid-col-widget.vue.d.ts +16 -0
- package/types/pc/src/components/desginer/form-widget/container-widget/grid-sub-form-widget.vue.d.ts +5 -0
- package/types/pc/src/components/desginer/form-widget/container-widget/grid-widget.vue.d.ts +5 -0
- package/types/pc/src/components/desginer/form-widget/container-widget/index.d.ts +153 -0
- package/types/pc/src/components/desginer/form-widget/container-widget/tab-widget.vue.d.ts +5 -0
- package/types/pc/src/components/desginer/form-widget/container-widget/useTableWidget.d.ts +274 -0
- package/types/pc/src/components/desginer/form-widget/container-widget/vf-box-widget.vue.d.ts +32 -0
- package/types/pc/src/components/desginer/form-widget/container-widget/vf-collapse-widget.vue.d.ts +33 -0
- package/types/pc/src/components/desginer/form-widget/container-widget/vf-dialog-widget.vue.d.ts +4 -0
- package/types/pc/src/components/desginer/form-widget/index.vue.d.ts +171 -0
- package/types/pc/src/components/desginer/index.vue.d.ts +52 -0
- package/types/pc/src/components/desginer/widget-panel/advanced/bpmn-editor.d.ts +13 -0
- package/types/pc/src/components/desginer/widget-panel/advanced/cascader.d.ts +31 -0
- package/types/pc/src/components/desginer/widget-panel/advanced/code-editor.d.ts +18 -0
- package/types/pc/src/components/desginer/widget-panel/advanced/data-table.d.ts +52 -0
- package/types/pc/src/components/desginer/widget-panel/advanced/diy-compontent.d.ts +10 -0
- package/types/pc/src/components/desginer/widget-panel/advanced/file-upload.d.ts +24 -0
- package/types/pc/src/components/desginer/widget-panel/advanced/index.d.ts +8 -0
- package/types/pc/src/components/desginer/widget-panel/advanced/rich-editor.d.ts +22 -0
- package/types/pc/src/components/desginer/widget-panel/advanced/tree-select.d.ts +33 -0
- package/types/pc/src/components/desginer/widget-panel/advanced/tree.d.ts +27 -0
- package/types/pc/src/components/desginer/widget-panel/advancedFieldsEnums.d.ts +11 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/button.d.ts +17 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/buttonList.d.ts +22 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/checkbox.d.ts +27 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/color.d.ts +16 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/date.d.ts +29 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/dateRange.d.ts +29 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/divider.d.ts +12 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/dropdown.d.ts +18 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/htmlText.d.ts +11 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/input.d.ts +31 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/number.d.ts +26 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/radio.d.ts +38 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/rate.d.ts +23 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/select.d.ts +35 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/slider.d.ts +25 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/staticText.d.ts +11 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/switch.d.ts +19 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/textarea.d.ts +35 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/time.d.ts +26 -0
- package/types/pc/src/components/desginer/widget-panel/basicFields/timeRange.d.ts +27 -0
- package/types/pc/src/components/desginer/widget-panel/basicFieldsEnums.d.ts +38 -0
- package/types/pc/src/components/desginer/widget-panel/containers/grid-col.d.ts +17 -0
- package/types/pc/src/components/desginer/widget-panel/containers/grid-sub-form.d.ts +8 -0
- package/types/pc/src/components/desginer/widget-panel/containers/grid.d.ts +8 -0
- package/types/pc/src/components/desginer/widget-panel/containers/index.d.ts +8 -0
- package/types/pc/src/components/desginer/widget-panel/containers/tab-pane.d.ts +23 -0
- package/types/pc/src/components/desginer/widget-panel/containers/tab.d.ts +9 -0
- package/types/pc/src/components/desginer/widget-panel/containers/vf-box.d.ts +8 -0
- package/types/pc/src/components/desginer/widget-panel/containers/vf-collapse.d.ts +13 -0
- package/types/pc/src/components/desginer/widget-panel/containers/vf-dialog.d.ts +8 -0
- package/types/pc/src/components/desginer/widget-panel/containersEnums.d.ts +1 -0
- package/types/pc/src/components/desginer/widget-panel/index.vue.d.ts +8 -0
- package/types/pc/src/components/desginer/widget-panel/widgetsConfig.d.ts +28 -0
- package/types/pc/src/components/field-widget/hooks/useSelect.d.ts +72 -0
- package/types/pc/src/components/field-widget/index.d.ts +3 -0
- package/types/pc/src/components/field-widget/useField.d.ts +95 -0
- package/types/pc/src/components/form-render/RenderWigetList.vue.d.ts +27 -0
- package/types/pc/src/components/form-render/container-items/data-table-widget.vue.d.ts +95 -0
- package/types/pc/src/components/form-render/container-items/grid-col-widget.vue.d.ts +36 -0
- package/types/pc/src/components/form-render/container-items/grid-sub-form-widget.vue.d.ts +39 -0
- package/types/pc/src/components/form-render/container-items/grid-widget.vue.d.ts +35 -0
- package/types/pc/src/components/form-render/container-items/index.d.ts +255 -0
- package/types/pc/src/components/form-render/container-items/tab-widget.vue.d.ts +5 -0
- package/types/pc/src/components/form-render/container-items/vf-box-widget.vue.d.ts +32 -0
- package/types/pc/src/components/form-render/container-items/vf-collapse-widget.vue.d.ts +33 -0
- package/types/pc/src/components/index.d.ts +4 -0
- package/types/pc/src/components/public/ActionButtonListRender.vue.d.ts +121 -0
- package/types/pc/src/components/public/ConfigView/CustomPageRender.vue.d.ts +16 -0
- package/types/pc/src/components/public/CustomerModal/CustomerModal.vue.d.ts +14 -0
- package/types/pc/src/components/public/CustomerModal/customerModal.d.ts +6 -0
- package/types/pc/src/components/public/CustomerModal/useCustomerModal.d.ts +7 -0
- package/types/pc/src/components/public/DynamicDialog.vue.d.ts +97 -0
- package/types/pc/src/components/render/index.vue.d.ts +82 -0
- package/types/pc/src/components/render/useRenderWidget.d.ts +3 -0
- package/types/pc/src/designer.d.ts +233 -0
- package/types/pc/src/hooks/useLowcode.d.ts +21 -0
- package/types/pc/src/hooks/useWidget.d.ts +7 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Widget } from '../types/schema';
|
|
2
|
+
import { FormDesigner } from '../types/designer';
|
|
3
|
+
import { Ref } from 'vue';
|
|
4
|
+
export declare function useNativeDrag(designer: Ref<FormDesigner>): {
|
|
5
|
+
handleDragStart: (e: DragEvent, widget: Widget) => void;
|
|
6
|
+
handleDragEnd: () => void;
|
|
7
|
+
};
|
|
8
|
+
export interface UseNativeDropOptions {
|
|
9
|
+
designer: Ref<FormDesigner>;
|
|
10
|
+
list: Widget[] | (() => Widget[]);
|
|
11
|
+
scale?: number | (() => number);
|
|
12
|
+
isAbsolute?: boolean;
|
|
13
|
+
onDropSuccess?: (data: {
|
|
14
|
+
left: number;
|
|
15
|
+
top: number;
|
|
16
|
+
widget: Widget;
|
|
17
|
+
index: number;
|
|
18
|
+
}) => void;
|
|
19
|
+
}
|
|
20
|
+
export declare function useNativeDrop(options: UseNativeDropOptions): {
|
|
21
|
+
handleDragOver: (ev: DragEvent) => void;
|
|
22
|
+
handleDragLeave: () => void;
|
|
23
|
+
handleNativeDrop: (ev: DragEvent) => void;
|
|
24
|
+
dropPreview: {
|
|
25
|
+
containerList: Widget[] | null;
|
|
26
|
+
index: number;
|
|
27
|
+
rect: {
|
|
28
|
+
left: number;
|
|
29
|
+
top: number;
|
|
30
|
+
width: number;
|
|
31
|
+
height: number;
|
|
32
|
+
} | null;
|
|
33
|
+
} | null;
|
|
34
|
+
};
|
|
@@ -0,0 +1,564 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
application: {
|
|
3
|
+
'zh-CN': string;
|
|
4
|
+
'en-US': string;
|
|
5
|
+
productTitle: string;
|
|
6
|
+
github: string;
|
|
7
|
+
document: string;
|
|
8
|
+
deployment: string;
|
|
9
|
+
subscription: string;
|
|
10
|
+
};
|
|
11
|
+
designer: {
|
|
12
|
+
showTotal: string;
|
|
13
|
+
outline: string;
|
|
14
|
+
field: string;
|
|
15
|
+
componentLib: string;
|
|
16
|
+
formLib: string;
|
|
17
|
+
containerTitle: string;
|
|
18
|
+
dragHandlerHint: string;
|
|
19
|
+
dragAction: string;
|
|
20
|
+
basicFieldTitle: string;
|
|
21
|
+
advancedFieldTitle: string;
|
|
22
|
+
customFieldTitle: string;
|
|
23
|
+
noWidgetHint: string;
|
|
24
|
+
widgetLabel: {
|
|
25
|
+
grid: string;
|
|
26
|
+
table: string;
|
|
27
|
+
tab: string;
|
|
28
|
+
section: string;
|
|
29
|
+
'sub-form': string;
|
|
30
|
+
'grid-sub-form': string;
|
|
31
|
+
'grid-col': string;
|
|
32
|
+
'table-cell': string;
|
|
33
|
+
'tab-pane': string;
|
|
34
|
+
'data-table': string;
|
|
35
|
+
'vf-dialog': string;
|
|
36
|
+
'vf-collapse': string;
|
|
37
|
+
'vf-drawer': string;
|
|
38
|
+
'vf-box': string;
|
|
39
|
+
input: string;
|
|
40
|
+
textarea: string;
|
|
41
|
+
number: string;
|
|
42
|
+
radio: string;
|
|
43
|
+
checkbox: string;
|
|
44
|
+
select: string;
|
|
45
|
+
time: string;
|
|
46
|
+
'time-range': string;
|
|
47
|
+
date: string;
|
|
48
|
+
'date-range': string;
|
|
49
|
+
switch: string;
|
|
50
|
+
rate: string;
|
|
51
|
+
color: string;
|
|
52
|
+
slider: string;
|
|
53
|
+
'static-text': string;
|
|
54
|
+
'html-text': string;
|
|
55
|
+
button: string;
|
|
56
|
+
divider: string;
|
|
57
|
+
dropdown: string;
|
|
58
|
+
tree: string;
|
|
59
|
+
'picture-upload': string;
|
|
60
|
+
'file-upload': string;
|
|
61
|
+
'rich-editor': string;
|
|
62
|
+
cascader: string;
|
|
63
|
+
treeSelect: string;
|
|
64
|
+
'button-list': string;
|
|
65
|
+
'diy-compontent': string;
|
|
66
|
+
slot: string;
|
|
67
|
+
toolbar: string;
|
|
68
|
+
custom: string;
|
|
69
|
+
'code-editor': string;
|
|
70
|
+
'bpmn-editor': string;
|
|
71
|
+
};
|
|
72
|
+
hint: {
|
|
73
|
+
selectParentWidget: string;
|
|
74
|
+
moveUpWidget: string;
|
|
75
|
+
moveDownWidget: string;
|
|
76
|
+
cloneWidget: string;
|
|
77
|
+
insertRow: string;
|
|
78
|
+
insertColumn: string;
|
|
79
|
+
remove: string;
|
|
80
|
+
lock: string;
|
|
81
|
+
unlock: string;
|
|
82
|
+
layer: string;
|
|
83
|
+
bringToFront: string;
|
|
84
|
+
sendToBack: string;
|
|
85
|
+
bringForward: string;
|
|
86
|
+
sendBackward: string;
|
|
87
|
+
cellSetting: string;
|
|
88
|
+
dragHandler: string;
|
|
89
|
+
copyField: string;
|
|
90
|
+
onlyFieldWidgetAcceptable: string;
|
|
91
|
+
moveUpFirstChildHint: string;
|
|
92
|
+
moveDownLastChildHint: string;
|
|
93
|
+
closePreview: string;
|
|
94
|
+
copyJson: string;
|
|
95
|
+
saveFormJson: string;
|
|
96
|
+
copyVueCode: string;
|
|
97
|
+
copyHtmlCode: string;
|
|
98
|
+
copyJsonSuccess: string;
|
|
99
|
+
importJsonSuccess: string;
|
|
100
|
+
invalidJsonFormat: string;
|
|
101
|
+
jsonVersionMismatch: string;
|
|
102
|
+
copyJsonFail: string;
|
|
103
|
+
copyVueCodeSuccess: string;
|
|
104
|
+
copyVueCodeFail: string;
|
|
105
|
+
copyHtmlCodeSuccess: string;
|
|
106
|
+
copyHtmlCodeFail: string;
|
|
107
|
+
saveVueCode: string;
|
|
108
|
+
saveHtmlCode: string;
|
|
109
|
+
getFormData: string;
|
|
110
|
+
resetForm: string;
|
|
111
|
+
disableForm: string;
|
|
112
|
+
enableForm: string;
|
|
113
|
+
switchReadMode: string;
|
|
114
|
+
exportFormData: string;
|
|
115
|
+
copyFormData: string;
|
|
116
|
+
saveFormData: string;
|
|
117
|
+
copyVue2SFC: string;
|
|
118
|
+
copyVue3SFC: string;
|
|
119
|
+
copySFCFail: string;
|
|
120
|
+
copySFCSuccess: string;
|
|
121
|
+
saveVue2SFC: string;
|
|
122
|
+
saveVue3SFC: string;
|
|
123
|
+
fileNameForSave: string;
|
|
124
|
+
saveFileTitle: string;
|
|
125
|
+
fileNameInputPlaceholder: string;
|
|
126
|
+
sampleLoadedSuccess: string;
|
|
127
|
+
sampleLoadedFail: string;
|
|
128
|
+
loadFormTemplate: string;
|
|
129
|
+
loadFormTemplateHint: string;
|
|
130
|
+
loadFormTemplateSuccess: string;
|
|
131
|
+
loadFormTemplateFailed: string;
|
|
132
|
+
currentNodeCannotBeSelected: string;
|
|
133
|
+
noSelectedWidgetHint: string;
|
|
134
|
+
widgetSetting: string;
|
|
135
|
+
表单设置: string;
|
|
136
|
+
表单api配置: string;
|
|
137
|
+
表单编辑api: string;
|
|
138
|
+
表单详情API: string;
|
|
139
|
+
prompt: string;
|
|
140
|
+
confirm: string;
|
|
141
|
+
cancel: string;
|
|
142
|
+
import: string;
|
|
143
|
+
importJsonHint: string;
|
|
144
|
+
importDSHint: string;
|
|
145
|
+
invalidOptionsData: string;
|
|
146
|
+
lastPaneCannotBeDeleted: string;
|
|
147
|
+
duplicateName: string;
|
|
148
|
+
nameRequired: string;
|
|
149
|
+
numberValidator: string;
|
|
150
|
+
letterValidator: string;
|
|
151
|
+
letterAndNumberValidator: string;
|
|
152
|
+
mobilePhoneValidator: string;
|
|
153
|
+
emailValidator: string;
|
|
154
|
+
urlValidator: string;
|
|
155
|
+
noChineseValidator: string;
|
|
156
|
+
chineseValidator: string;
|
|
157
|
+
rowspanNotConsistentForMergeEntireRow: string;
|
|
158
|
+
colspanNotConsistentForMergeEntireColumn: string;
|
|
159
|
+
rowspanNotConsistentForDeleteEntireRow: string;
|
|
160
|
+
colspanNotConsistentForDeleteEntireColumn: string;
|
|
161
|
+
lastColCannotBeDeleted: string;
|
|
162
|
+
lastRowCannotBeDeleted: string;
|
|
163
|
+
};
|
|
164
|
+
toolbar: {
|
|
165
|
+
undoHint: string;
|
|
166
|
+
redoHint: string;
|
|
167
|
+
pcLayout: string;
|
|
168
|
+
padLayout: string;
|
|
169
|
+
mobileLayout: string;
|
|
170
|
+
nodeTreeHint: string;
|
|
171
|
+
nodeTreeTitle: string;
|
|
172
|
+
clear: string;
|
|
173
|
+
preview: string;
|
|
174
|
+
save: string;
|
|
175
|
+
importJson: string;
|
|
176
|
+
exportJson: string;
|
|
177
|
+
exportCode: string;
|
|
178
|
+
generateCode: string;
|
|
179
|
+
generateSFC: string;
|
|
180
|
+
};
|
|
181
|
+
setting: {
|
|
182
|
+
seq: string;
|
|
183
|
+
containerInputPlaceholder: string;
|
|
184
|
+
langMode: string;
|
|
185
|
+
editAPIConfig: string;
|
|
186
|
+
lineHeight: string;
|
|
187
|
+
mode: string;
|
|
188
|
+
useModal: string;
|
|
189
|
+
combobox: string;
|
|
190
|
+
multiple: string;
|
|
191
|
+
tags: string;
|
|
192
|
+
buttonList: string;
|
|
193
|
+
buttonListConfig: string;
|
|
194
|
+
buttonPosition: string;
|
|
195
|
+
autoWidth: string;
|
|
196
|
+
dataSoureEdit: string;
|
|
197
|
+
fixed: string;
|
|
198
|
+
fixedRight: string;
|
|
199
|
+
resizableColumn: string;
|
|
200
|
+
ellipsisColumn: string;
|
|
201
|
+
treeDefaultExpandAll: string;
|
|
202
|
+
shape: string;
|
|
203
|
+
danger: string;
|
|
204
|
+
defaultPageSize: string;
|
|
205
|
+
specifyPageSizeOptions: string;
|
|
206
|
+
hideOnSinglePage: string;
|
|
207
|
+
showQuickJumper: string;
|
|
208
|
+
showSizeChanger: string;
|
|
209
|
+
position: string;
|
|
210
|
+
pagination: string;
|
|
211
|
+
hasRowSelection: string;
|
|
212
|
+
fixedLeft: string;
|
|
213
|
+
preserveSelectedRowKeys: string;
|
|
214
|
+
customColumnWidth: string;
|
|
215
|
+
customColumnTitle: string;
|
|
216
|
+
selectRow: string;
|
|
217
|
+
loadingPage: string;
|
|
218
|
+
delete: string;
|
|
219
|
+
tabBarGutter: string;
|
|
220
|
+
tabPosition: string;
|
|
221
|
+
tabType: string;
|
|
222
|
+
rowKey: string;
|
|
223
|
+
holdHidden: string;
|
|
224
|
+
editFunction: string;
|
|
225
|
+
formCode: string;
|
|
226
|
+
edit: string;
|
|
227
|
+
horizontal: string;
|
|
228
|
+
vertical: string;
|
|
229
|
+
基本属性: string;
|
|
230
|
+
attributeSetting: string;
|
|
231
|
+
常见属性: string;
|
|
232
|
+
高级属性: string;
|
|
233
|
+
事件属性: string;
|
|
234
|
+
uniqueName: string;
|
|
235
|
+
editNameHelp: string;
|
|
236
|
+
label: string;
|
|
237
|
+
displayType: string;
|
|
238
|
+
defaultValue: string;
|
|
239
|
+
placeholder: string;
|
|
240
|
+
startPlaceholder: string;
|
|
241
|
+
endPlaceholder: string;
|
|
242
|
+
widgetColumnWidth: string;
|
|
243
|
+
widgetSize: string;
|
|
244
|
+
widgetFlex: string;
|
|
245
|
+
autoFullWidth: string;
|
|
246
|
+
displayStyle: string;
|
|
247
|
+
inlineLayout: string;
|
|
248
|
+
blockLayout: string;
|
|
249
|
+
buttonStyle: string;
|
|
250
|
+
border: string;
|
|
251
|
+
labelWidth: string;
|
|
252
|
+
rows: string;
|
|
253
|
+
labelHidden: string;
|
|
254
|
+
required: string;
|
|
255
|
+
requiredHint: string;
|
|
256
|
+
validation: string;
|
|
257
|
+
validationHelp: string;
|
|
258
|
+
validationHint: string;
|
|
259
|
+
readonly: string;
|
|
260
|
+
disabled: string;
|
|
261
|
+
hidden: string;
|
|
262
|
+
textContent: string;
|
|
263
|
+
htmlContent: string;
|
|
264
|
+
allowClear: string;
|
|
265
|
+
editable: string;
|
|
266
|
+
format: string;
|
|
267
|
+
valueFormat: string;
|
|
268
|
+
showPassword: string;
|
|
269
|
+
filterable: string;
|
|
270
|
+
allowCreate: string;
|
|
271
|
+
showSearch: string;
|
|
272
|
+
automaticDropdown: string;
|
|
273
|
+
multipleLimit: string;
|
|
274
|
+
checkStrictly: string;
|
|
275
|
+
showAllLevels: string;
|
|
276
|
+
contentPosition: string;
|
|
277
|
+
dividerDirection: string;
|
|
278
|
+
plain: string;
|
|
279
|
+
round: string;
|
|
280
|
+
circle: string;
|
|
281
|
+
icon: string;
|
|
282
|
+
optionsSetting: string;
|
|
283
|
+
addOption: string;
|
|
284
|
+
importOptions: string;
|
|
285
|
+
resetDefault: string;
|
|
286
|
+
uploadSetting: string;
|
|
287
|
+
uploadURL: string;
|
|
288
|
+
uploadTip: string;
|
|
289
|
+
withCredentials: string;
|
|
290
|
+
multipleSelect: string;
|
|
291
|
+
showFileList: string;
|
|
292
|
+
limit: string;
|
|
293
|
+
fileMaxSize: string;
|
|
294
|
+
fileTypes: string;
|
|
295
|
+
uploadType: string;
|
|
296
|
+
fileTypesHelp: string;
|
|
297
|
+
headers: string;
|
|
298
|
+
uploadListType: string;
|
|
299
|
+
customRender: string;
|
|
300
|
+
labelBefore: string;
|
|
301
|
+
labelAfter: string;
|
|
302
|
+
cellWidth: string;
|
|
303
|
+
cellHeight: string;
|
|
304
|
+
gridColHeight: string;
|
|
305
|
+
gutter: string;
|
|
306
|
+
columnSetting: string;
|
|
307
|
+
colsOfGrid: string;
|
|
308
|
+
colSpanTitle: string;
|
|
309
|
+
colOffsetTitle: string;
|
|
310
|
+
colPushTitle: string;
|
|
311
|
+
colPullTitle: string;
|
|
312
|
+
addColumn: string;
|
|
313
|
+
responsive: string;
|
|
314
|
+
tabPaneSetting: string;
|
|
315
|
+
addTabPane: string;
|
|
316
|
+
paneActive: string;
|
|
317
|
+
customLabelIcon: string;
|
|
318
|
+
labelIconClass: string;
|
|
319
|
+
labelIconTooltip: string;
|
|
320
|
+
labelIconPosition: string;
|
|
321
|
+
minValue: string;
|
|
322
|
+
maxValue: string;
|
|
323
|
+
precision: string;
|
|
324
|
+
step: string;
|
|
325
|
+
controlsPosition: string;
|
|
326
|
+
minLength: string;
|
|
327
|
+
maxLength: string;
|
|
328
|
+
showCount: string;
|
|
329
|
+
addonBefore: string;
|
|
330
|
+
inputButton: string;
|
|
331
|
+
appendButton: string;
|
|
332
|
+
appendButtonDisabled: string;
|
|
333
|
+
appendButtonIcon: string;
|
|
334
|
+
buttonIcon: string;
|
|
335
|
+
switchWidth: string;
|
|
336
|
+
checkedValue: string;
|
|
337
|
+
unCheckedValue: string;
|
|
338
|
+
activeColor: string;
|
|
339
|
+
inactiveColor: string;
|
|
340
|
+
maxStars: string;
|
|
341
|
+
lowThreshold: string;
|
|
342
|
+
highThreshold: string;
|
|
343
|
+
allowHalf: string;
|
|
344
|
+
showText: string;
|
|
345
|
+
showScore: string;
|
|
346
|
+
range: string;
|
|
347
|
+
showBlankRow: string;
|
|
348
|
+
showRowNumber: string;
|
|
349
|
+
contentHeight: string;
|
|
350
|
+
insertColumnToLeft: string;
|
|
351
|
+
insertColumnToRight: string;
|
|
352
|
+
insertRowAbove: string;
|
|
353
|
+
insertRowBelow: string;
|
|
354
|
+
mergeLeftColumn: string;
|
|
355
|
+
mergeRightColumn: string;
|
|
356
|
+
mergeEntireRow: string;
|
|
357
|
+
mergeRowAbove: string;
|
|
358
|
+
mergeRowBelow: string;
|
|
359
|
+
mergeEntireColumn: string;
|
|
360
|
+
undoMergeCol: string;
|
|
361
|
+
undoMergeRow: string;
|
|
362
|
+
deleteEntireCol: string;
|
|
363
|
+
deleteEntireRow: string;
|
|
364
|
+
ghost: string;
|
|
365
|
+
buttonConfig: string;
|
|
366
|
+
placement: string;
|
|
367
|
+
bottomLeft: string;
|
|
368
|
+
bottomRight: string;
|
|
369
|
+
topLeft: string;
|
|
370
|
+
topRight: string;
|
|
371
|
+
menuList: string;
|
|
372
|
+
widgetName: string;
|
|
373
|
+
formSize: string;
|
|
374
|
+
labelPosition: string;
|
|
375
|
+
topPosition: string;
|
|
376
|
+
leftPosition: string;
|
|
377
|
+
labelAlign: string;
|
|
378
|
+
leftAlign: string;
|
|
379
|
+
centerAlign: string;
|
|
380
|
+
rightAlign: string;
|
|
381
|
+
formCss: string;
|
|
382
|
+
addCss: string;
|
|
383
|
+
customClass: string;
|
|
384
|
+
globalFunctions: string;
|
|
385
|
+
addEventHandler: string;
|
|
386
|
+
editWidgetEventHandler: string;
|
|
387
|
+
editFormEventHandler: string;
|
|
388
|
+
formSFCSetting: string;
|
|
389
|
+
formModelName: string;
|
|
390
|
+
formRefName: string;
|
|
391
|
+
formRulesName: string;
|
|
392
|
+
syntaxCheckWarning: string;
|
|
393
|
+
title: string;
|
|
394
|
+
width: string;
|
|
395
|
+
fullscreen: string;
|
|
396
|
+
showModal: string;
|
|
397
|
+
showClose: string;
|
|
398
|
+
closeOnClickModal: string;
|
|
399
|
+
closeOnPressEscape: string;
|
|
400
|
+
center: string;
|
|
401
|
+
readMode: string;
|
|
402
|
+
disabledMode: string;
|
|
403
|
+
drawSize: string;
|
|
404
|
+
drawDirection: string;
|
|
405
|
+
tableWidth: string;
|
|
406
|
+
tableHeight: string;
|
|
407
|
+
showCheckBox: string;
|
|
408
|
+
showIndex: string;
|
|
409
|
+
showPagination: string;
|
|
410
|
+
smallPagination: string;
|
|
411
|
+
tableColEdit: string;
|
|
412
|
+
tableDataEdit: string;
|
|
413
|
+
stripe: string;
|
|
414
|
+
showSummary: string;
|
|
415
|
+
rowSpacing: string;
|
|
416
|
+
editAction: string;
|
|
417
|
+
dsEnabled: string;
|
|
418
|
+
columnName: string;
|
|
419
|
+
columnLabel: string;
|
|
420
|
+
columnWidth: string;
|
|
421
|
+
visibleColumn: string;
|
|
422
|
+
sortableColumn: string;
|
|
423
|
+
fixedColumn: string;
|
|
424
|
+
alignTypeOfColumn: string;
|
|
425
|
+
formatOfColumn: string;
|
|
426
|
+
customRenderGroup: string;
|
|
427
|
+
renderFunction: string;
|
|
428
|
+
actionColumn: string;
|
|
429
|
+
addTableColumn: string;
|
|
430
|
+
deleteTableColumn: string;
|
|
431
|
+
addSubsets: string;
|
|
432
|
+
onlyOneColumnCannotBeDeleted: string;
|
|
433
|
+
treeDataEnabled: string;
|
|
434
|
+
rowKeyOfTreeData: string;
|
|
435
|
+
childrenKeyOfTreeData: string;
|
|
436
|
+
showButtonsColumn: string;
|
|
437
|
+
buttonsColumnEdit: string;
|
|
438
|
+
buttonsColumnTitle: string;
|
|
439
|
+
buttonsColumnWidth: string;
|
|
440
|
+
operationButtonsSetting: string;
|
|
441
|
+
operationButtonName: string;
|
|
442
|
+
operationButtonLabel: string;
|
|
443
|
+
operationButtonType: string;
|
|
444
|
+
operationButtonSize: string;
|
|
445
|
+
operationButtonGhost: string;
|
|
446
|
+
operationButtonRound: string;
|
|
447
|
+
operationButtonHidden: string;
|
|
448
|
+
operationButtonDisabled: string;
|
|
449
|
+
addOperationButton: string;
|
|
450
|
+
deleteOperationButtonHint: string;
|
|
451
|
+
operationButtonDuplicatedNameError: string;
|
|
452
|
+
dsName: string;
|
|
453
|
+
dataSetName: string;
|
|
454
|
+
labelKeyName: string;
|
|
455
|
+
valueKeyName: string;
|
|
456
|
+
childrenKeyName: string;
|
|
457
|
+
dataSource: string;
|
|
458
|
+
noDataSource: string;
|
|
459
|
+
addDataSource: string;
|
|
460
|
+
importDataSource: string;
|
|
461
|
+
clearExistingDataSource: string;
|
|
462
|
+
remainExistingDataSource: string;
|
|
463
|
+
exportDataSource: string;
|
|
464
|
+
selectDataSourceForExport: string;
|
|
465
|
+
dataSourceChecked: string;
|
|
466
|
+
previewDataSourceExportResult: string;
|
|
467
|
+
dataSourceSetting: string;
|
|
468
|
+
deleteDataSourceHint: string;
|
|
469
|
+
fieldValueRequired: string;
|
|
470
|
+
dsUniqueName: string;
|
|
471
|
+
dsRequestURL: string;
|
|
472
|
+
dsRequestURLType: string;
|
|
473
|
+
dsURLStringType: string;
|
|
474
|
+
dsURLVariableType: string;
|
|
475
|
+
dsDescription: string;
|
|
476
|
+
dsRequestMethod: string;
|
|
477
|
+
dsRequestHeaders: string;
|
|
478
|
+
addRequestHeader: string;
|
|
479
|
+
dsRequestParams: string;
|
|
480
|
+
addRequestParam: string;
|
|
481
|
+
dsRequestData: string;
|
|
482
|
+
addRequestData: string;
|
|
483
|
+
addDataSet: string;
|
|
484
|
+
dsRequestValueStringType: string;
|
|
485
|
+
dsRequestValueNumberType: string;
|
|
486
|
+
dsRequestValueBooleanType: string;
|
|
487
|
+
dsRequestValueVariableType: string;
|
|
488
|
+
dsRequestNameInputPlaceholder: string;
|
|
489
|
+
dsRequestTypeInputPlaceholder: string;
|
|
490
|
+
dsRequestValueInputPlaceholder: string;
|
|
491
|
+
dataSetRemarkInputPlaceholder: string;
|
|
492
|
+
dsConfigHandlerTitle: string;
|
|
493
|
+
dsDataHandlerTitle: string;
|
|
494
|
+
dsErrorHandlerTitle: string;
|
|
495
|
+
dataSetSettingTitle: string;
|
|
496
|
+
dataSetEnabled: string;
|
|
497
|
+
dataSetSetting: string;
|
|
498
|
+
testDataSource: string;
|
|
499
|
+
dsvTitle: string;
|
|
500
|
+
dsRequestResult: string;
|
|
501
|
+
executeDataSource: string;
|
|
502
|
+
clearRequestResult: string;
|
|
503
|
+
dsRequestNumberTypeError: string;
|
|
504
|
+
dsRequestBooleanTypeError: string;
|
|
505
|
+
dsValidationError: string;
|
|
506
|
+
dsDuplicatedNameError: string;
|
|
507
|
+
slotCompontent: string;
|
|
508
|
+
diyCompontent: string;
|
|
509
|
+
isEnterSubmit: string;
|
|
510
|
+
top: string;
|
|
511
|
+
right: string;
|
|
512
|
+
bottom: string;
|
|
513
|
+
left: string;
|
|
514
|
+
showBorder: string;
|
|
515
|
+
borderStyle: string;
|
|
516
|
+
solid: string;
|
|
517
|
+
dashed: string;
|
|
518
|
+
dotted: string;
|
|
519
|
+
double: string;
|
|
520
|
+
borderWidth: string;
|
|
521
|
+
borderColor: string;
|
|
522
|
+
borderRadius: string;
|
|
523
|
+
backgroundColor: string;
|
|
524
|
+
shadow: string;
|
|
525
|
+
enableShadow: string;
|
|
526
|
+
shadowOffsetX: string;
|
|
527
|
+
shadowOffsetY: string;
|
|
528
|
+
shadowBlur: string;
|
|
529
|
+
shadowSpread: string;
|
|
530
|
+
shadowColor: string;
|
|
531
|
+
operationButtonClick: string;
|
|
532
|
+
operationButtonAction: string;
|
|
533
|
+
biProperties: string;
|
|
534
|
+
canvasWidth: string;
|
|
535
|
+
canvasHeight: string;
|
|
536
|
+
scaleMode: string;
|
|
537
|
+
scale: string;
|
|
538
|
+
autoScale: string;
|
|
539
|
+
fixedScale: string;
|
|
540
|
+
};
|
|
541
|
+
};
|
|
542
|
+
左固定: string;
|
|
543
|
+
是否可勾选: string;
|
|
544
|
+
表格数据变化: string;
|
|
545
|
+
默认折叠: string;
|
|
546
|
+
窗体样式: string;
|
|
547
|
+
头部右插槽样式: string;
|
|
548
|
+
折叠时icon: string;
|
|
549
|
+
未折叠时icon: string;
|
|
550
|
+
height: string;
|
|
551
|
+
复制: string;
|
|
552
|
+
编写样式: string;
|
|
553
|
+
盒模型配置: string;
|
|
554
|
+
Margin: string;
|
|
555
|
+
Padding: string;
|
|
556
|
+
参数设置: string;
|
|
557
|
+
是否展示连接线: string;
|
|
558
|
+
是否可选择: string;
|
|
559
|
+
数据源设置: string;
|
|
560
|
+
数据源: string;
|
|
561
|
+
当前位置: string;
|
|
562
|
+
自定义位置: string;
|
|
563
|
+
};
|
|
564
|
+
export default _default;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
extension: {
|
|
3
|
+
widgetLabel: {
|
|
4
|
+
card: string;
|
|
5
|
+
alert: string;
|
|
6
|
+
};
|
|
7
|
+
setting: {
|
|
8
|
+
cardFolded: string;
|
|
9
|
+
cardShowFold: string;
|
|
10
|
+
cardWidth: string;
|
|
11
|
+
cardShadow: string;
|
|
12
|
+
alertTitle: string;
|
|
13
|
+
alertType: string;
|
|
14
|
+
description: string;
|
|
15
|
+
closable: string;
|
|
16
|
+
closeText: string;
|
|
17
|
+
center: string;
|
|
18
|
+
showIcon: string;
|
|
19
|
+
effect: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
export default _default;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
render: {
|
|
3
|
+
hint: {
|
|
4
|
+
prompt: string;
|
|
5
|
+
confirm: string;
|
|
6
|
+
cancel: string;
|
|
7
|
+
defaultActiveText: string;
|
|
8
|
+
defaultInactiveText: string;
|
|
9
|
+
selectPlaceholder: string;
|
|
10
|
+
timePlaceholder: string;
|
|
11
|
+
startTimePlaceholder: string;
|
|
12
|
+
endTimePlaceholder: string;
|
|
13
|
+
datePlaceholder: string;
|
|
14
|
+
startDatePlaceholder: string;
|
|
15
|
+
endDatePlaceholder: string;
|
|
16
|
+
blankCellContent: string;
|
|
17
|
+
uploadError: string;
|
|
18
|
+
uploadExceed: string;
|
|
19
|
+
unsupportedFileType: string;
|
|
20
|
+
fileSizeExceed: string;
|
|
21
|
+
refNotFound: string;
|
|
22
|
+
fieldRequired: string;
|
|
23
|
+
invalidNumber: string;
|
|
24
|
+
selectFile: string;
|
|
25
|
+
downloadFile: string;
|
|
26
|
+
removeFile: string;
|
|
27
|
+
validationFailed: string;
|
|
28
|
+
subFormAction: string;
|
|
29
|
+
subFormAddAction: string;
|
|
30
|
+
subFormRowNo: string;
|
|
31
|
+
subFormAddActionHint: string;
|
|
32
|
+
insertSubFormRow: string;
|
|
33
|
+
deleteSubFormRow: string;
|
|
34
|
+
nonSubFormType: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export default _default;
|