@kp-ui/lowcode 1.0.67 → 1.0.69
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/_virtual/virtual_svg-icons-register.js +2 -2
- package/package.json +2 -2
- package/packages/tmgc2-share/src/components/TpfCodeEditor/code-editor.vue.js +7 -0
- package/packages/tmgc2-share/src/components/TpfCodeEditor/code-editor.vue2.js +164 -0
- package/packages/tmgc2-share/src/components/TpfModal/index.vue.js +7 -0
- package/packages/tmgc2-share/src/components/TpfModal/index.vue2.js +173 -0
- package/packages/tmgc2-share/src/components/TpfModal/index.vue3.js +1 -0
- package/render.js +6 -7
- package/src/components/code-editor/code-modal-editor.vue.js +54 -67
- package/src/components/code-editor/code-modal-editor.vue2.js +1 -42
- package/src/components/form-designer/form-widget/container-widget/data-table-widget.vue.js +40 -37
- package/src/components/form-designer/form-widget/index.vue.js +5 -3
- package/src/components/form-designer/setting-panel/form-setting.vue.js +1 -1
- package/src/components/form-designer/setting-panel/index.vue.js +35 -80
- package/src/components/form-designer/setting-panel/property-editor/button-list-editor.vue.js +2 -2
- package/src/components/form-designer/setting-panel/property-editor/container-data-table/data-table-dsEnabled-editor.vue.js +7 -6
- package/src/components/form-designer/setting-panel/property-editor/container-data-table/data-table-selections-editor.vue.js +2 -2
- package/src/components/form-designer/setting-panel/property-editor/container-data-table/data-table-tableColumns-editor.vue.js +89 -91
- package/src/components/form-designer/setting-panel/property-editor/field-dropdown/dropdown-menuList-editor.vue.js +2 -2
- package/src/components/form-designer/toolbar-panel/index.vue.js +99 -108
- package/src/components/form-designer/widget-panel/index.vue.js +4 -2
- package/src/components/form-render/dynamic-dialog.vue.js +5 -6
- package/src/components/http-editor/index.vue.js +6 -5
- package/src/components/http-editor/index.vue2.js +2 -2
- package/src/components/public/ActionButtonListDialog.vue2.js +2 -2
- package/src/lang/zh-CN.js +1 -1
- package/src/mixins/useDataTableMixin.js +10 -1
- package/styles/style.css +1 -1
- package/types/src/lang/en-US.d.ts +440 -0
- package/types/src/lang/en-US.d.ts.map +1 -0
- package/types/src/lang/en-US_extension.d.ts +24 -0
- package/types/src/lang/en-US_extension.d.ts.map +1 -0
- package/types/src/lang/en-US_render.d.ts +39 -0
- package/types/src/lang/en-US_render.d.ts.map +1 -0
- package/types/src/lang/zh-CN.d.ts +450 -0
- package/types/src/lang/zh-CN.d.ts.map +1 -0
- package/types/src/lang/zh-CN_extension.d.ts +24 -0
- package/types/src/lang/zh-CN_extension.d.ts.map +1 -0
- package/types/src/lang/zh-CN_render.d.ts +39 -0
- package/types/src/lang/zh-CN_render.d.ts.map +1 -0
- package/types/src/utils/i18n.d.ts +14 -0
- package/types/src/utils/i18n.d.ts.map +1 -0
|
@@ -0,0 +1,450 @@
|
|
|
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
|
+
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
|
+
input: string;
|
|
39
|
+
textarea: string;
|
|
40
|
+
number: string;
|
|
41
|
+
radio: string;
|
|
42
|
+
checkbox: string;
|
|
43
|
+
select: string;
|
|
44
|
+
time: string;
|
|
45
|
+
'time-range': string;
|
|
46
|
+
date: string;
|
|
47
|
+
'date-range': string;
|
|
48
|
+
switch: string;
|
|
49
|
+
rate: string;
|
|
50
|
+
color: string;
|
|
51
|
+
slider: string;
|
|
52
|
+
'static-text': string;
|
|
53
|
+
'html-text': string;
|
|
54
|
+
button: string;
|
|
55
|
+
divider: string;
|
|
56
|
+
dropdown: string;
|
|
57
|
+
'picture-upload': string;
|
|
58
|
+
'file-upload': string;
|
|
59
|
+
'rich-editor': string;
|
|
60
|
+
cascader: string;
|
|
61
|
+
treeSelect: string;
|
|
62
|
+
'diy-compontent': string;
|
|
63
|
+
toolbar: string;
|
|
64
|
+
'button-list': string;
|
|
65
|
+
slot: string;
|
|
66
|
+
custom: string;
|
|
67
|
+
};
|
|
68
|
+
hint: {
|
|
69
|
+
selectParentWidget: string;
|
|
70
|
+
moveUpWidget: string;
|
|
71
|
+
moveDownWidget: string;
|
|
72
|
+
cloneWidget: string;
|
|
73
|
+
insertRow: string;
|
|
74
|
+
insertColumn: string;
|
|
75
|
+
remove: string;
|
|
76
|
+
cellSetting: string;
|
|
77
|
+
dragHandler: string;
|
|
78
|
+
copyField: string;
|
|
79
|
+
onlyFieldWidgetAcceptable: string;
|
|
80
|
+
moveUpFirstChildHint: string;
|
|
81
|
+
moveDownLastChildHint: string;
|
|
82
|
+
closePreview: string;
|
|
83
|
+
copyJson: string;
|
|
84
|
+
saveFormJson: string;
|
|
85
|
+
copyVueCode: string;
|
|
86
|
+
copyHtmlCode: string;
|
|
87
|
+
copyJsonSuccess: string;
|
|
88
|
+
importJsonSuccess: string;
|
|
89
|
+
invalidJsonFormat: string;
|
|
90
|
+
jsonVersionMismatch: string;
|
|
91
|
+
copyJsonFail: string;
|
|
92
|
+
copyVueCodeSuccess: string;
|
|
93
|
+
copyVueCodeFail: string;
|
|
94
|
+
copyHtmlCodeSuccess: string;
|
|
95
|
+
copyHtmlCodeFail: string;
|
|
96
|
+
saveVueCode: string;
|
|
97
|
+
saveHtmlCode: string;
|
|
98
|
+
getFormData: string;
|
|
99
|
+
resetForm: string;
|
|
100
|
+
disableForm: string;
|
|
101
|
+
enableForm: string;
|
|
102
|
+
switchReadMode: string;
|
|
103
|
+
exportFormData: string;
|
|
104
|
+
copyFormData: string;
|
|
105
|
+
saveFormData: string;
|
|
106
|
+
copyVue2SFC: string;
|
|
107
|
+
copyVue3SFC: string;
|
|
108
|
+
copySFCFail: string;
|
|
109
|
+
copySFCSuccess: string;
|
|
110
|
+
saveVue2SFC: string;
|
|
111
|
+
saveVue3SFC: string;
|
|
112
|
+
fileNameForSave: string;
|
|
113
|
+
saveFileTitle: string;
|
|
114
|
+
fileNameInputPlaceholder: string;
|
|
115
|
+
sampleLoadedSuccess: string;
|
|
116
|
+
sampleLoadedFail: string;
|
|
117
|
+
loadFormTemplate: string;
|
|
118
|
+
loadFormTemplateHint: string;
|
|
119
|
+
loadFormTemplateSuccess: string;
|
|
120
|
+
loadFormTemplateFailed: string;
|
|
121
|
+
currentNodeCannotBeSelected: string;
|
|
122
|
+
noSelectedWidgetHint: string;
|
|
123
|
+
widgetSetting: string;
|
|
124
|
+
表单设置: string;
|
|
125
|
+
prompt: string;
|
|
126
|
+
confirm: string;
|
|
127
|
+
cancel: string;
|
|
128
|
+
import: string;
|
|
129
|
+
importJsonHint: string;
|
|
130
|
+
importDSHint: string;
|
|
131
|
+
invalidOptionsData: string;
|
|
132
|
+
lastPaneCannotBeDeleted: string;
|
|
133
|
+
duplicateName: string;
|
|
134
|
+
nameRequired: string;
|
|
135
|
+
numberValidator: string;
|
|
136
|
+
letterValidator: string;
|
|
137
|
+
letterAndNumberValidator: string;
|
|
138
|
+
mobilePhoneValidator: string;
|
|
139
|
+
emailValidator: string;
|
|
140
|
+
urlValidator: string;
|
|
141
|
+
noChineseValidator: string;
|
|
142
|
+
chineseValidator: string;
|
|
143
|
+
rowspanNotConsistentForMergeEntireRow: string;
|
|
144
|
+
colspanNotConsistentForMergeEntireColumn: string;
|
|
145
|
+
rowspanNotConsistentForDeleteEntireRow: string;
|
|
146
|
+
colspanNotConsistentForDeleteEntireColumn: string;
|
|
147
|
+
lastColCannotBeDeleted: string;
|
|
148
|
+
lastRowCannotBeDeleted: string;
|
|
149
|
+
};
|
|
150
|
+
toolbar: {
|
|
151
|
+
undoHint: string;
|
|
152
|
+
redoHint: string;
|
|
153
|
+
pcLayout: string;
|
|
154
|
+
padLayout: string;
|
|
155
|
+
mobileLayout: string;
|
|
156
|
+
nodeTreeHint: string;
|
|
157
|
+
nodeTreeTitle: string;
|
|
158
|
+
clear: string;
|
|
159
|
+
preview: string;
|
|
160
|
+
save: string;
|
|
161
|
+
importJson: string;
|
|
162
|
+
exportJson: string;
|
|
163
|
+
exportCode: string;
|
|
164
|
+
generateCode: string;
|
|
165
|
+
generateSFC: string;
|
|
166
|
+
};
|
|
167
|
+
setting: {
|
|
168
|
+
基本属性: string;
|
|
169
|
+
attributeSetting: string;
|
|
170
|
+
常见属性: string;
|
|
171
|
+
高级属性: string;
|
|
172
|
+
事件属性: string;
|
|
173
|
+
uniqueName: string;
|
|
174
|
+
editNameHelp: string;
|
|
175
|
+
label: string;
|
|
176
|
+
displayType: string;
|
|
177
|
+
defaultValue: string;
|
|
178
|
+
placeholder: string;
|
|
179
|
+
startPlaceholder: string;
|
|
180
|
+
endPlaceholder: string;
|
|
181
|
+
widgetColumnWidth: string;
|
|
182
|
+
widgetSize: string;
|
|
183
|
+
widgetFlex: string;
|
|
184
|
+
autoFullWidth: string;
|
|
185
|
+
displayStyle: string;
|
|
186
|
+
inlineLayout: string;
|
|
187
|
+
blockLayout: string;
|
|
188
|
+
buttonStyle: string;
|
|
189
|
+
border: string;
|
|
190
|
+
labelWidth: string;
|
|
191
|
+
rows: string;
|
|
192
|
+
labelHidden: string;
|
|
193
|
+
required: string;
|
|
194
|
+
requiredHint: string;
|
|
195
|
+
validation: string;
|
|
196
|
+
validationHelp: string;
|
|
197
|
+
validationHint: string;
|
|
198
|
+
readonly: string;
|
|
199
|
+
disabled: string;
|
|
200
|
+
hidden: string;
|
|
201
|
+
textContent: string;
|
|
202
|
+
htmlContent: string;
|
|
203
|
+
allowClear: string;
|
|
204
|
+
editable: string;
|
|
205
|
+
format: string;
|
|
206
|
+
valueFormat: string;
|
|
207
|
+
showPassword: string;
|
|
208
|
+
filterable: string;
|
|
209
|
+
allowCreate: string;
|
|
210
|
+
showSearch: string;
|
|
211
|
+
automaticDropdown: string;
|
|
212
|
+
multiple: string;
|
|
213
|
+
multipleLimit: string;
|
|
214
|
+
checkStrictly: string;
|
|
215
|
+
showAllLevels: string;
|
|
216
|
+
contentPosition: string;
|
|
217
|
+
dividerDirection: string;
|
|
218
|
+
plain: string;
|
|
219
|
+
round: string;
|
|
220
|
+
circle: string;
|
|
221
|
+
icon: string;
|
|
222
|
+
optionsSetting: string;
|
|
223
|
+
addOption: string;
|
|
224
|
+
importOptions: string;
|
|
225
|
+
resetDefault: string;
|
|
226
|
+
uploadSetting: string;
|
|
227
|
+
uploadURL: string;
|
|
228
|
+
uploadTip: string;
|
|
229
|
+
withCredentials: string;
|
|
230
|
+
multipleSelect: string;
|
|
231
|
+
uploadListType: string;
|
|
232
|
+
showFileList: string;
|
|
233
|
+
limit: string;
|
|
234
|
+
fileMaxSize: string;
|
|
235
|
+
fileTypes: string;
|
|
236
|
+
fileTypesHelp: string;
|
|
237
|
+
headers: string;
|
|
238
|
+
danger: string;
|
|
239
|
+
cellWidth: string;
|
|
240
|
+
cellHeight: string;
|
|
241
|
+
gridColHeight: string;
|
|
242
|
+
gutter: string;
|
|
243
|
+
columnSetting: string;
|
|
244
|
+
colsOfGrid: string;
|
|
245
|
+
colSpanTitle: string;
|
|
246
|
+
colOffsetTitle: string;
|
|
247
|
+
colPushTitle: string;
|
|
248
|
+
colPullTitle: string;
|
|
249
|
+
addColumn: string;
|
|
250
|
+
responsive: string;
|
|
251
|
+
tabPaneSetting: string;
|
|
252
|
+
addTabPane: string;
|
|
253
|
+
paneActive: string;
|
|
254
|
+
customLabelIcon: string;
|
|
255
|
+
labelIconClass: string;
|
|
256
|
+
labelIconPosition: string;
|
|
257
|
+
labelTooltip: string;
|
|
258
|
+
minValue: string;
|
|
259
|
+
maxValue: string;
|
|
260
|
+
precision: string;
|
|
261
|
+
step: string;
|
|
262
|
+
controlsPosition: string;
|
|
263
|
+
minLength: string;
|
|
264
|
+
maxLength: string;
|
|
265
|
+
showCount: string;
|
|
266
|
+
addonBefore: string;
|
|
267
|
+
addonAfter: string;
|
|
268
|
+
inputButton: string;
|
|
269
|
+
appendButton: string;
|
|
270
|
+
appendButtonDisabled: string;
|
|
271
|
+
appendButtonIcon: string;
|
|
272
|
+
buttonIcon: string;
|
|
273
|
+
switchWidth: string;
|
|
274
|
+
checkedValue: string;
|
|
275
|
+
unCheckedValue: string;
|
|
276
|
+
activeColor: string;
|
|
277
|
+
inactiveColor: string;
|
|
278
|
+
maxStars: string;
|
|
279
|
+
lowThreshold: string;
|
|
280
|
+
highThreshold: string;
|
|
281
|
+
allowHalf: string;
|
|
282
|
+
showText: string;
|
|
283
|
+
showScore: string;
|
|
284
|
+
range: string;
|
|
285
|
+
vertical: string;
|
|
286
|
+
showBlankRow: string;
|
|
287
|
+
showRowNumber: string;
|
|
288
|
+
actionColumnPosition: string;
|
|
289
|
+
contentHeight: string;
|
|
290
|
+
insertColumnToLeft: string;
|
|
291
|
+
insertColumnToRight: string;
|
|
292
|
+
insertRowAbove: string;
|
|
293
|
+
insertRowBelow: string;
|
|
294
|
+
mergeLeftColumn: string;
|
|
295
|
+
mergeRightColumn: string;
|
|
296
|
+
mergeEntireRow: string;
|
|
297
|
+
mergeRowAbove: string;
|
|
298
|
+
mergeRowBelow: string;
|
|
299
|
+
mergeEntireColumn: string;
|
|
300
|
+
undoMergeCol: string;
|
|
301
|
+
undoMergeRow: string;
|
|
302
|
+
deleteEntireCol: string;
|
|
303
|
+
deleteEntireRow: string;
|
|
304
|
+
widgetName: string;
|
|
305
|
+
formSize: string;
|
|
306
|
+
labelPosition: string;
|
|
307
|
+
topPosition: string;
|
|
308
|
+
leftPosition: string;
|
|
309
|
+
labelAlign: string;
|
|
310
|
+
buttonList: string;
|
|
311
|
+
buttonPosition: string;
|
|
312
|
+
leftAlign: string;
|
|
313
|
+
centerAlign: string;
|
|
314
|
+
rightAlign: string;
|
|
315
|
+
formCss: string;
|
|
316
|
+
addCss: string;
|
|
317
|
+
customClass: string;
|
|
318
|
+
globalFunctions: string;
|
|
319
|
+
addEventHandler: string;
|
|
320
|
+
editWidgetEventHandler: string;
|
|
321
|
+
editFormEventHandler: string;
|
|
322
|
+
formSFCSetting: string;
|
|
323
|
+
formModelName: string;
|
|
324
|
+
formRefName: string;
|
|
325
|
+
formRulesName: string;
|
|
326
|
+
syntaxCheckWarning: string;
|
|
327
|
+
title: string;
|
|
328
|
+
dialogWidth: string;
|
|
329
|
+
fullscreen: string;
|
|
330
|
+
showModal: string;
|
|
331
|
+
showClose: string;
|
|
332
|
+
closeOnClickModal: string;
|
|
333
|
+
closeOnPressEscape: string;
|
|
334
|
+
center: string;
|
|
335
|
+
readMode: string;
|
|
336
|
+
disabledMode: string;
|
|
337
|
+
okButtonLabel: string;
|
|
338
|
+
okButtonHidden: string;
|
|
339
|
+
cancelButtonLabel: string;
|
|
340
|
+
cancelButtonHidden: string;
|
|
341
|
+
drawSize: string;
|
|
342
|
+
drawDirection: string;
|
|
343
|
+
tableWidth: string;
|
|
344
|
+
tableHeight: string;
|
|
345
|
+
showIndex: string;
|
|
346
|
+
showPagination: string;
|
|
347
|
+
smallPagination: string;
|
|
348
|
+
tableColEdit: string;
|
|
349
|
+
tableDataEdit: string;
|
|
350
|
+
showSummary: string;
|
|
351
|
+
stripe: string;
|
|
352
|
+
rowSpacing: string;
|
|
353
|
+
editAction: string;
|
|
354
|
+
columnName: string;
|
|
355
|
+
columnLabel: string;
|
|
356
|
+
columnWidth: string;
|
|
357
|
+
visibleColumn: string;
|
|
358
|
+
sortableColumn: string;
|
|
359
|
+
fixedColumn: string;
|
|
360
|
+
autoHeight: string;
|
|
361
|
+
alignTypeOfColumn: string;
|
|
362
|
+
formatOfColumn: string;
|
|
363
|
+
customRenderGroup: string;
|
|
364
|
+
renderFunction: string;
|
|
365
|
+
actionColumn: string;
|
|
366
|
+
addTableColumn: string;
|
|
367
|
+
deleteTableColumn: string;
|
|
368
|
+
onlyOneColumnCannotBeDeleted: string;
|
|
369
|
+
treeDataEnabled: string;
|
|
370
|
+
rowKeyOfTreeData: string;
|
|
371
|
+
childrenKeyOfTreeData: string;
|
|
372
|
+
showButtonsColumn: string;
|
|
373
|
+
buttonsColumnEdit: string;
|
|
374
|
+
buttonsColumnTitle: string;
|
|
375
|
+
buttonsColumnWidth: string;
|
|
376
|
+
operationButtonsSetting: string;
|
|
377
|
+
operationButtonName: string;
|
|
378
|
+
operationButtonLabel: string;
|
|
379
|
+
operationButtonType: string;
|
|
380
|
+
operationButtonSize: string;
|
|
381
|
+
operationButtonRound: string;
|
|
382
|
+
operationButtonHidden: string;
|
|
383
|
+
operationButtonDisabled: string;
|
|
384
|
+
addOperationButton: string;
|
|
385
|
+
deleteOperationButtonHint: string;
|
|
386
|
+
operationButtonDuplicatedNameError: string;
|
|
387
|
+
dsEnabled: string;
|
|
388
|
+
dsName: string;
|
|
389
|
+
dataSetName: string;
|
|
390
|
+
labelKeyName: string;
|
|
391
|
+
valueKeyName: string;
|
|
392
|
+
childrenKeyName: string;
|
|
393
|
+
dataSource: string;
|
|
394
|
+
noDataSource: string;
|
|
395
|
+
addDataSource: string;
|
|
396
|
+
importDataSource: string;
|
|
397
|
+
clearExistingDataSource: string;
|
|
398
|
+
remainExistingDataSource: string;
|
|
399
|
+
exportDataSource: string;
|
|
400
|
+
selectDataSourceForExport: string;
|
|
401
|
+
dataSourceChecked: string;
|
|
402
|
+
previewDataSourceExportResult: string;
|
|
403
|
+
dataSourceSetting: string;
|
|
404
|
+
deleteDataSourceHint: string;
|
|
405
|
+
fieldValueRequired: string;
|
|
406
|
+
dsUniqueName: string;
|
|
407
|
+
dsRequestURL: string;
|
|
408
|
+
dsRequestURLType: string;
|
|
409
|
+
dsURLStringType: string;
|
|
410
|
+
dsURLVariableType: string;
|
|
411
|
+
dsDescription: string;
|
|
412
|
+
dsRequestMethod: string;
|
|
413
|
+
dsRequestHeaders: string;
|
|
414
|
+
addRequestHeader: string;
|
|
415
|
+
dsRequestParams: string;
|
|
416
|
+
addRequestParam: string;
|
|
417
|
+
dsRequestData: string;
|
|
418
|
+
addRequestData: string;
|
|
419
|
+
addDataSet: string;
|
|
420
|
+
dsRequestValueStringType: string;
|
|
421
|
+
dsRequestValueNumberType: string;
|
|
422
|
+
dsRequestValueBooleanType: string;
|
|
423
|
+
dsRequestValueVariableType: string;
|
|
424
|
+
dsRequestNameInputPlaceholder: string;
|
|
425
|
+
dsRequestTypeInputPlaceholder: string;
|
|
426
|
+
dsRequestValueInputPlaceholder: string;
|
|
427
|
+
dataSetRemarkInputPlaceholder: string;
|
|
428
|
+
dsConfigHandlerTitle: string;
|
|
429
|
+
dsDataHandlerTitle: string;
|
|
430
|
+
dsErrorHandlerTitle: string;
|
|
431
|
+
dataSetSettingTitle: string;
|
|
432
|
+
dataSetEnabled: string;
|
|
433
|
+
dataSetSetting: string;
|
|
434
|
+
testDataSource: string;
|
|
435
|
+
dsvTitle: string;
|
|
436
|
+
dsRequestResult: string;
|
|
437
|
+
executeDataSource: string;
|
|
438
|
+
clearRequestResult: string;
|
|
439
|
+
dsRequestNumberTypeError: string;
|
|
440
|
+
dsRequestBooleanTypeError: string;
|
|
441
|
+
dsValidationError: string;
|
|
442
|
+
dsDuplicatedNameError: string;
|
|
443
|
+
slotCompontent: string;
|
|
444
|
+
diyCompontent: string;
|
|
445
|
+
};
|
|
446
|
+
};
|
|
447
|
+
复制: string;
|
|
448
|
+
};
|
|
449
|
+
export default _default;
|
|
450
|
+
//# sourceMappingURL=zh-CN.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"zh-CN.d.ts","sourceRoot":"","sources":["../../../../src/lang/zh-CN.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAwdE"}
|
|
@@ -0,0 +1,24 @@
|
|
|
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;
|
|
24
|
+
//# sourceMappingURL=zh-CN_extension.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"zh-CN_extension.d.ts","sourceRoot":"","sources":["../../../../src/lang/zh-CN_extension.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,wBAuBE"}
|
|
@@ -0,0 +1,39 @@
|
|
|
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;
|
|
39
|
+
//# sourceMappingURL=zh-CN_render.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"zh-CN_render.d.ts","sourceRoot":"","sources":["../../../../src/lang/zh-CN_render.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAuCE"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const changeLocale: (langName: any) => Promise<void>;
|
|
2
|
+
export declare const translate: (key: any) => any;
|
|
3
|
+
declare const _default: {
|
|
4
|
+
methods: {
|
|
5
|
+
i18nt(key: any): any;
|
|
6
|
+
i18n2t(key1: any, key2: any): any;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
export default _default;
|
|
10
|
+
export declare function useI18n(): {
|
|
11
|
+
i18nt: (key: any) => any;
|
|
12
|
+
i18n2t: (key1: any, key2: any) => any;
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=i18n.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../../../src/utils/i18n.ts"],"names":[],"mappings":"AAsCA,eAAO,MAAM,YAAY,GAAmB,aAAQ,kBAGnD,CAAC;AAEF,eAAO,MAAM,SAAS,GAAa,QAAG,QAErC,CAAC;;;;;;;AAsBF,wBAWE;AAEF,wBAAgB,OAAO;;;EAWtB"}
|