zc-lowcode 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lowcode-editor.es.js +4379 -38447
- package/dist/lowcode-editor.umd.js +5857 -39927
- package/dist/packages/install.d.ts +4 -0
- package/dist/packages/locale/en-US.d.ts +315 -0
- package/dist/packages/locale/index.d.ts +635 -0
- package/dist/packages/locale/zh-CN.d.ts +315 -0
- package/dist/packages/lowcode-editor/components/design-panel/components/wrapper.vue.d.ts +40 -0
- package/dist/packages/lowcode-editor/components/design-panel/index.vue.d.ts +64 -0
- package/dist/packages/lowcode-editor/components/layout-panel/index.vue.d.ts +33 -0
- package/dist/packages/lowcode-editor/components/setter-panel/index.vue.d.ts +22 -0
- package/dist/packages/lowcode-editor/components/widget-panel/index.vue.d.ts +100 -0
- package/dist/packages/lowcode-editor/index.vue.d.ts +349 -0
- package/dist/packages/lowcode-editor-renderer/index.vue.d.ts +100 -0
- package/dist/packages/lowcode-editor-widgets/components/property-editor/property.d.ts +4 -0
- package/dist/packages/lowcode-editor-widgets/components/property.vue.d.ts +53 -0
- package/dist/packages/lowcode-editor-widgets/components/setter-base/index.vue.d.ts +20 -0
- package/dist/packages/lowcode-editor-widgets/components/usePropertyRegister.d.ts +7 -0
- package/dist/packages/lowcode-editor-widgets/index.d.ts +4 -0
- package/dist/packages/lowcode-editor-widgets/widgets/container/card/index.d.ts +38 -0
- package/dist/packages/lowcode-editor-widgets/widgets/container/card/setter.vue.d.ts +15 -0
- package/dist/packages/lowcode-editor-widgets/widgets/container/card/view.vue.d.ts +15 -0
- package/dist/packages/lowcode-editor-widgets/widgets/container/grid/index.d.ts +67 -0
- package/dist/packages/lowcode-editor-widgets/widgets/container/grid/setter.vue.d.ts +18 -0
- package/dist/packages/lowcode-editor-widgets/widgets/container/grid/view.vue.d.ts +24 -0
- package/dist/packages/lowcode-editor-widgets/widgets/container/grid-col/index.d.ts +68 -0
- package/dist/packages/lowcode-editor-widgets/widgets/container/grid-col/setter.vue.d.ts +15 -0
- package/dist/packages/lowcode-editor-widgets/widgets/container/grid-col/view.vue.d.ts +40 -0
- package/dist/packages/lowcode-editor-widgets/widgets/container/tab/index.d.ts +38 -0
- package/dist/packages/lowcode-editor-widgets/widgets/container/tab/setter.vue.d.ts +15 -0
- package/dist/packages/lowcode-editor-widgets/widgets/container/tab/view.vue.d.ts +15 -0
- package/dist/packages/lowcode-editor-widgets/widgets/form/radio/index.d.ts +38 -0
- package/dist/packages/lowcode-editor-widgets/widgets/form/radio/setter.vue.d.ts +15 -0
- package/dist/packages/lowcode-editor-widgets/widgets/form/radio/view.vue.d.ts +15 -0
- package/dist/packages/lowcode-editor-widgets/widgets/form/text/index.d.ts +38 -0
- package/dist/packages/lowcode-editor-widgets/widgets/form/text/setter.vue.d.ts +15 -0
- package/dist/packages/lowcode-editor-widgets/widgets/form/text/view.vue.d.ts +15 -0
- package/dist/style.css +28 -28
- package/package.json +11 -15
- /package/dist/{type.d.ts → packages/type.d.ts} +0 -0
|
@@ -0,0 +1,315 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
application: {
|
|
3
|
+
'zh-CN': string;
|
|
4
|
+
'en-US': string;
|
|
5
|
+
productTitle: string;
|
|
6
|
+
github: string;
|
|
7
|
+
document: string;
|
|
8
|
+
qqGroup: string;
|
|
9
|
+
deployment: string;
|
|
10
|
+
subscription: string;
|
|
11
|
+
};
|
|
12
|
+
designer: {
|
|
13
|
+
componentLib: string;
|
|
14
|
+
pageLib: string;
|
|
15
|
+
widgetSetting: string;
|
|
16
|
+
pageSetting: string;
|
|
17
|
+
containerTitle: string;
|
|
18
|
+
dragHandlerHint: string;
|
|
19
|
+
dragAction: string;
|
|
20
|
+
containerGroupTitle: string;
|
|
21
|
+
basicGroupTitle: string;
|
|
22
|
+
advancedGroupTitle: string;
|
|
23
|
+
noWidgetHint: string;
|
|
24
|
+
widgetLabel: {
|
|
25
|
+
grid: string;
|
|
26
|
+
table: string;
|
|
27
|
+
tab: string;
|
|
28
|
+
card: string;
|
|
29
|
+
section: string;
|
|
30
|
+
'sub-form': string;
|
|
31
|
+
'grid-col': string;
|
|
32
|
+
'table-cell': string;
|
|
33
|
+
'tab-pane': string;
|
|
34
|
+
'data-table': string;
|
|
35
|
+
input: string;
|
|
36
|
+
textarea: string;
|
|
37
|
+
number: string;
|
|
38
|
+
radio: string;
|
|
39
|
+
checkbox: string;
|
|
40
|
+
select: string;
|
|
41
|
+
time: string;
|
|
42
|
+
'time-range': string;
|
|
43
|
+
date: string;
|
|
44
|
+
'date-range': string;
|
|
45
|
+
switch: string;
|
|
46
|
+
rate: string;
|
|
47
|
+
color: string;
|
|
48
|
+
slider: string;
|
|
49
|
+
'static-text': string;
|
|
50
|
+
'html-text': string;
|
|
51
|
+
button: string;
|
|
52
|
+
divider: string;
|
|
53
|
+
'picture-upload': string;
|
|
54
|
+
'file-upload': string;
|
|
55
|
+
'rich-editor': string;
|
|
56
|
+
cascader: string;
|
|
57
|
+
slot: string;
|
|
58
|
+
custom: string;
|
|
59
|
+
};
|
|
60
|
+
hint: {
|
|
61
|
+
selectParentWidget: string;
|
|
62
|
+
moveUpWidget: string;
|
|
63
|
+
moveDownWidget: string;
|
|
64
|
+
cloneWidget: string;
|
|
65
|
+
insertRow: string;
|
|
66
|
+
insertColumn: string;
|
|
67
|
+
remove: string;
|
|
68
|
+
cellSetting: string;
|
|
69
|
+
dragHandler: string;
|
|
70
|
+
copyField: string;
|
|
71
|
+
onlyFieldWidgetAcceptable: string;
|
|
72
|
+
moveUpFirstChildHint: string;
|
|
73
|
+
moveDownLastChildHint: string;
|
|
74
|
+
closePreview: string;
|
|
75
|
+
copyJson: string;
|
|
76
|
+
saveFormJson: string;
|
|
77
|
+
copyVueCode: string;
|
|
78
|
+
copyHtmlCode: string;
|
|
79
|
+
copyJsonSuccess: string;
|
|
80
|
+
importJsonSuccess: string;
|
|
81
|
+
invalidJsonFormat: string;
|
|
82
|
+
jsonVersionMismatch: string;
|
|
83
|
+
copyJsonFail: string;
|
|
84
|
+
copyVueCodeSuccess: string;
|
|
85
|
+
copyVueCodeFail: string;
|
|
86
|
+
copyHtmlCodeSuccess: string;
|
|
87
|
+
copyHtmlCodeFail: string;
|
|
88
|
+
saveVueCode: string;
|
|
89
|
+
saveHtmlCode: string;
|
|
90
|
+
getFormData: string;
|
|
91
|
+
resetForm: string;
|
|
92
|
+
disableForm: string;
|
|
93
|
+
enableForm: string;
|
|
94
|
+
exportFormData: string;
|
|
95
|
+
copyFormData: string;
|
|
96
|
+
saveFormData: string;
|
|
97
|
+
copyVue2SFC: string;
|
|
98
|
+
copyVue3SFC: string;
|
|
99
|
+
copySFCFail: string;
|
|
100
|
+
copySFCSuccess: string;
|
|
101
|
+
saveVue2SFC: string;
|
|
102
|
+
saveVue3SFC: string;
|
|
103
|
+
fileNameForSave: string;
|
|
104
|
+
saveFileTitle: string;
|
|
105
|
+
fileNameInputPlaceholder: string;
|
|
106
|
+
sampleLoadedSuccess: string;
|
|
107
|
+
sampleLoadedFail: string;
|
|
108
|
+
loadFormTemplate: string;
|
|
109
|
+
loadFormTemplateHint: string;
|
|
110
|
+
loadFormTemplateSuccess: string;
|
|
111
|
+
loadFormTemplateFailed: string;
|
|
112
|
+
currentNodeCannotBeSelected: string;
|
|
113
|
+
prompt: string;
|
|
114
|
+
confirm: string;
|
|
115
|
+
cancel: string;
|
|
116
|
+
import: string;
|
|
117
|
+
importJsonHint: string;
|
|
118
|
+
invalidOptionsData: string;
|
|
119
|
+
lastPaneCannotBeDeleted: string;
|
|
120
|
+
duplicateName: string;
|
|
121
|
+
nameRequired: string;
|
|
122
|
+
numberValidator: string;
|
|
123
|
+
letterValidator: string;
|
|
124
|
+
letterAndNumberValidator: string;
|
|
125
|
+
mobilePhoneValidator: string;
|
|
126
|
+
emailValidator: string;
|
|
127
|
+
urlValidator: string;
|
|
128
|
+
noChineseValidator: string;
|
|
129
|
+
chineseValidator: string;
|
|
130
|
+
rowspanNotConsistentForMergeEntireRow: string;
|
|
131
|
+
colspanNotConsistentForMergeEntireColumn: string;
|
|
132
|
+
rowspanNotConsistentForDeleteEntireRow: string;
|
|
133
|
+
colspanNotConsistentForDeleteEntireColumn: string;
|
|
134
|
+
lastColCannotBeDeleted: string;
|
|
135
|
+
lastRowCannotBeDeleted: string;
|
|
136
|
+
};
|
|
137
|
+
toolbar: {
|
|
138
|
+
undoHint: string;
|
|
139
|
+
redoHint: string;
|
|
140
|
+
pcLayout: string;
|
|
141
|
+
padLayout: string;
|
|
142
|
+
mobileLayout: string;
|
|
143
|
+
nodeTreeHint: string;
|
|
144
|
+
nodeTreeTitle: string;
|
|
145
|
+
clear: string;
|
|
146
|
+
preview: string;
|
|
147
|
+
save: string;
|
|
148
|
+
importJson: string;
|
|
149
|
+
exportJson: string;
|
|
150
|
+
exportCode: string;
|
|
151
|
+
generateCode: string;
|
|
152
|
+
generateSFC: string;
|
|
153
|
+
};
|
|
154
|
+
setting: {
|
|
155
|
+
basicSetting: string;
|
|
156
|
+
attributeSetting: string;
|
|
157
|
+
commonSetting: string;
|
|
158
|
+
advancedSetting: string;
|
|
159
|
+
eventSetting: string;
|
|
160
|
+
uniqueName: string;
|
|
161
|
+
editNameHelp: string;
|
|
162
|
+
label: string;
|
|
163
|
+
displayType: string;
|
|
164
|
+
defaultValue: string;
|
|
165
|
+
placeholder: string;
|
|
166
|
+
startPlaceholder: string;
|
|
167
|
+
endPlaceholder: string;
|
|
168
|
+
widgetColumnWidth: string;
|
|
169
|
+
widgetSize: string;
|
|
170
|
+
fontSize: string;
|
|
171
|
+
textAlign: string;
|
|
172
|
+
autoFullWidth: string;
|
|
173
|
+
showStops: string;
|
|
174
|
+
displayStyle: string;
|
|
175
|
+
inlineLayout: string;
|
|
176
|
+
blockLayout: string;
|
|
177
|
+
buttonStyle: string;
|
|
178
|
+
border: string;
|
|
179
|
+
labelWidth: string;
|
|
180
|
+
rows: string;
|
|
181
|
+
labelHidden: string;
|
|
182
|
+
required: string;
|
|
183
|
+
requiredHint: string;
|
|
184
|
+
validation: string;
|
|
185
|
+
validationHelp: string;
|
|
186
|
+
validationHint: string;
|
|
187
|
+
readonly: string;
|
|
188
|
+
disabled: string;
|
|
189
|
+
hidden: string;
|
|
190
|
+
textContent: string;
|
|
191
|
+
preWrap: string;
|
|
192
|
+
htmlContent: string;
|
|
193
|
+
clearable: string;
|
|
194
|
+
editable: string;
|
|
195
|
+
format: string;
|
|
196
|
+
valueFormat: string;
|
|
197
|
+
showPassword: string;
|
|
198
|
+
filterable: string;
|
|
199
|
+
allowCreate: string;
|
|
200
|
+
remote: string;
|
|
201
|
+
automaticDropdown: string;
|
|
202
|
+
multiple: string;
|
|
203
|
+
multipleLimit: string;
|
|
204
|
+
checkStrictly: string;
|
|
205
|
+
showAllLevels: string;
|
|
206
|
+
contentPosition: string;
|
|
207
|
+
plain: string;
|
|
208
|
+
round: string;
|
|
209
|
+
circle: string;
|
|
210
|
+
icon: string;
|
|
211
|
+
optionsSetting: string;
|
|
212
|
+
addOption: string;
|
|
213
|
+
importOptions: string;
|
|
214
|
+
resetDefault: string;
|
|
215
|
+
uploadSetting: string;
|
|
216
|
+
uploadURL: string;
|
|
217
|
+
uploadTip: string;
|
|
218
|
+
withCredentials: string;
|
|
219
|
+
multipleSelect: string;
|
|
220
|
+
showFileList: string;
|
|
221
|
+
limit: string;
|
|
222
|
+
fileMaxSize: string;
|
|
223
|
+
fileTypes: string;
|
|
224
|
+
fileTypesHelp: string;
|
|
225
|
+
headers: string;
|
|
226
|
+
cellWidth: string;
|
|
227
|
+
cellHeight: string;
|
|
228
|
+
wordBreak: string;
|
|
229
|
+
gridColHeight: string;
|
|
230
|
+
gutter: string;
|
|
231
|
+
columnSetting: string;
|
|
232
|
+
colsOfGrid: string;
|
|
233
|
+
colSpanTitle: string;
|
|
234
|
+
colOffsetTitle: string;
|
|
235
|
+
colPushTitle: string;
|
|
236
|
+
colPullTitle: string;
|
|
237
|
+
addColumn: string;
|
|
238
|
+
responsive: string;
|
|
239
|
+
tabPaneSetting: string;
|
|
240
|
+
addTabPane: string;
|
|
241
|
+
paneActive: string;
|
|
242
|
+
customLabelIcon: string;
|
|
243
|
+
labelIconClass: string;
|
|
244
|
+
labelIconPosition: string;
|
|
245
|
+
labelTooltip: string;
|
|
246
|
+
minValue: string;
|
|
247
|
+
maxValue: string;
|
|
248
|
+
precision: string;
|
|
249
|
+
step: string;
|
|
250
|
+
controlsPosition: string;
|
|
251
|
+
minLength: string;
|
|
252
|
+
maxLength: string;
|
|
253
|
+
showWordLimit: string;
|
|
254
|
+
prefixIcon: string;
|
|
255
|
+
suffixIcon: string;
|
|
256
|
+
inputButton: string;
|
|
257
|
+
appendButton: string;
|
|
258
|
+
appendButtonDisabled: string;
|
|
259
|
+
appendButtonIcon: string;
|
|
260
|
+
buttonIcon: string;
|
|
261
|
+
switchWidth: string;
|
|
262
|
+
activeText: string;
|
|
263
|
+
inactiveText: string;
|
|
264
|
+
activeColor: string;
|
|
265
|
+
inactiveColor: string;
|
|
266
|
+
maxStars: string;
|
|
267
|
+
lowThreshold: string;
|
|
268
|
+
highThreshold: string;
|
|
269
|
+
allowHalf: string;
|
|
270
|
+
showText: string;
|
|
271
|
+
showScore: string;
|
|
272
|
+
range: string;
|
|
273
|
+
vertical: string;
|
|
274
|
+
showBlankRow: string;
|
|
275
|
+
showRowNumber: string;
|
|
276
|
+
contentHeight: string;
|
|
277
|
+
insertColumnToLeft: string;
|
|
278
|
+
insertColumnToRight: string;
|
|
279
|
+
insertRowAbove: string;
|
|
280
|
+
insertRowBelow: string;
|
|
281
|
+
mergeLeftColumn: string;
|
|
282
|
+
mergeRightColumn: string;
|
|
283
|
+
mergeEntireRow: string;
|
|
284
|
+
mergeRowAbove: string;
|
|
285
|
+
mergeRowBelow: string;
|
|
286
|
+
mergeEntireColumn: string;
|
|
287
|
+
undoMergeCol: string;
|
|
288
|
+
undoMergeRow: string;
|
|
289
|
+
deleteEntireCol: string;
|
|
290
|
+
deleteEntireRow: string;
|
|
291
|
+
widgetName: string;
|
|
292
|
+
formSize: string;
|
|
293
|
+
labelPosition: string;
|
|
294
|
+
topPosition: string;
|
|
295
|
+
leftPosition: string;
|
|
296
|
+
labelAlign: string;
|
|
297
|
+
leftAlign: string;
|
|
298
|
+
centerAlign: string;
|
|
299
|
+
rightAlign: string;
|
|
300
|
+
formCss: string;
|
|
301
|
+
addCss: string;
|
|
302
|
+
customClass: string;
|
|
303
|
+
globalFunctions: string;
|
|
304
|
+
addEventHandler: string;
|
|
305
|
+
editWidgetEventHandler: string;
|
|
306
|
+
editFormEventHandler: string;
|
|
307
|
+
formSFCSetting: string;
|
|
308
|
+
formModelName: string;
|
|
309
|
+
formRefName: string;
|
|
310
|
+
formRulesName: string;
|
|
311
|
+
syntaxCheckWarning: string;
|
|
312
|
+
};
|
|
313
|
+
};
|
|
314
|
+
};
|
|
315
|
+
export default _default;
|