tianheng-ui 0.0.47 → 0.0.50
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/README.md +11 -11
- package/lib/iconfont.svg +155 -155
- package/lib/index.js +3 -3
- package/lib/tianheng-ui.js +3 -3
- package/package.json +1 -1
- package/packages/dialog/index.vue +4 -1
- package/packages/formMaking/Container.vue +591 -601
- package/packages/formMaking/CusDialog.vue +134 -134
- package/packages/formMaking/FormConfig.vue +40 -40
- package/packages/formMaking/GenerateForm.vue +176 -184
- package/packages/formMaking/GenerateFormItem.vue +203 -17
- package/packages/formMaking/Upload/index.vue +572 -572
- package/packages/formMaking/WidgetConfig.vue +212 -34
- package/packages/formMaking/WidgetForm.vue +134 -268
- package/packages/formMaking/WidgetFormItem.vue +382 -30
- package/packages/formMaking/componentsConfig.js +159 -14
- package/packages/formMaking/generateCode.js +163 -155
- package/packages/formMaking/iconfont/demo.css +539 -539
- package/packages/formMaking/iconfont/demo_index.html +1159 -1159
- package/packages/formMaking/iconfont/iconfont.css +189 -189
- package/packages/formMaking/iconfont/iconfont.svg +155 -155
- package/packages/formMaking/index.js +77 -77
- package/packages/formMaking/lang/en-US.js +187 -187
- package/packages/formMaking/lang/zh-CN.js +187 -187
- package/packages/formMaking/styles/cover.scss +3 -3
- package/packages/formMaking/styles/index.scss +768 -746
- package/packages/formMaking/util/index.js +32 -32
- package/packages/formMaking/util/request.js +28 -28
- package/packages/table/search.vue +46 -37
@@ -1,77 +1,77 @@
|
|
1
|
-
import 'normalize.css/normalize.css'
|
2
|
-
import './iconfont/iconfont.css'
|
3
|
-
import './styles/cover.scss'
|
4
|
-
import './styles/index.scss'
|
5
|
-
|
6
|
-
import MakingForm from './Container.vue'
|
7
|
-
import GenerateForm from './GenerateForm.vue'
|
8
|
-
|
9
|
-
// import VueI18n from 'vue-i18n'
|
10
|
-
// import enUS from './lang/en-US'
|
11
|
-
// import zhCN from './lang/zh-CN'
|
12
|
-
// const loadLang = function (Vue, lang, locale, i18n) {
|
13
|
-
// if (locale) {
|
14
|
-
// locale('en-US', {...locale('en-US'), ...enUS})
|
15
|
-
// locale('zh-CN', {...locale('zh-CN'), ...zhCN})
|
16
|
-
// Vue.config.lang = lang
|
17
|
-
// } else if (i18n) {
|
18
|
-
// i18n.setLocaleMessage('en-US', {...i18n.messages['en-US'], ...enUS})
|
19
|
-
// i18n.setLocaleMessage('zh-CN', {...i18n.messages['zh-CN'], ...zhCN})
|
20
|
-
// i18n.locale = lang
|
21
|
-
// } else {
|
22
|
-
// Vue.use(VueI18n)
|
23
|
-
// Vue.locale('en-US', {...Vue.locale('en-US'), ...enUS})
|
24
|
-
// Vue.locale('zh-CN', {...Vue.locale('zh-CN'), ...zhCN})
|
25
|
-
// Vue.config.lang = lang
|
26
|
-
// }
|
27
|
-
// }
|
28
|
-
|
29
|
-
MakingForm.install = function (Vue, opts = {
|
30
|
-
lang: 'zh-CN',
|
31
|
-
locale: null,
|
32
|
-
i18n: null
|
33
|
-
}) {
|
34
|
-
// loadLang(Vue, opts.lang, opts.locale, opts.i18n)
|
35
|
-
Vue.component(MakingForm.name, MakingForm)
|
36
|
-
}
|
37
|
-
|
38
|
-
GenerateForm.install = function (Vue, opts = {
|
39
|
-
lang: 'zh-CN',
|
40
|
-
locale: null,
|
41
|
-
i18n: null
|
42
|
-
}) {
|
43
|
-
// loadLang(Vue, opts.lang, opts.locale, opts.i18n)
|
44
|
-
Vue.component(GenerateForm.name, GenerateForm)
|
45
|
-
}
|
46
|
-
|
47
|
-
const components = [
|
48
|
-
MakingForm,
|
49
|
-
GenerateForm
|
50
|
-
]
|
51
|
-
|
52
|
-
const install = function (Vue, opts = {
|
53
|
-
lang: 'zh-CN',
|
54
|
-
locale: null,
|
55
|
-
i18n: null
|
56
|
-
}) {
|
57
|
-
// loadLang(Vue, opts.lang, opts.locale, opts.i18n)
|
58
|
-
components.forEach(component => {
|
59
|
-
Vue.component(component.name, component)
|
60
|
-
})
|
61
|
-
}
|
62
|
-
|
63
|
-
if (typeof window !== 'undefined' && window.Vue) {
|
64
|
-
install(window.Vue);
|
65
|
-
}
|
66
|
-
|
67
|
-
export {
|
68
|
-
install,
|
69
|
-
MakingForm,
|
70
|
-
GenerateForm
|
71
|
-
}
|
72
|
-
|
73
|
-
export default {
|
74
|
-
install,
|
75
|
-
MakingForm,
|
76
|
-
GenerateForm
|
77
|
-
}
|
1
|
+
import 'normalize.css/normalize.css'
|
2
|
+
import './iconfont/iconfont.css'
|
3
|
+
import './styles/cover.scss'
|
4
|
+
import './styles/index.scss'
|
5
|
+
|
6
|
+
import MakingForm from './Container.vue'
|
7
|
+
import GenerateForm from './GenerateForm.vue'
|
8
|
+
|
9
|
+
// import VueI18n from 'vue-i18n'
|
10
|
+
// import enUS from './lang/en-US'
|
11
|
+
// import zhCN from './lang/zh-CN'
|
12
|
+
// const loadLang = function (Vue, lang, locale, i18n) {
|
13
|
+
// if (locale) {
|
14
|
+
// locale('en-US', {...locale('en-US'), ...enUS})
|
15
|
+
// locale('zh-CN', {...locale('zh-CN'), ...zhCN})
|
16
|
+
// Vue.config.lang = lang
|
17
|
+
// } else if (i18n) {
|
18
|
+
// i18n.setLocaleMessage('en-US', {...i18n.messages['en-US'], ...enUS})
|
19
|
+
// i18n.setLocaleMessage('zh-CN', {...i18n.messages['zh-CN'], ...zhCN})
|
20
|
+
// i18n.locale = lang
|
21
|
+
// } else {
|
22
|
+
// Vue.use(VueI18n)
|
23
|
+
// Vue.locale('en-US', {...Vue.locale('en-US'), ...enUS})
|
24
|
+
// Vue.locale('zh-CN', {...Vue.locale('zh-CN'), ...zhCN})
|
25
|
+
// Vue.config.lang = lang
|
26
|
+
// }
|
27
|
+
// }
|
28
|
+
|
29
|
+
MakingForm.install = function (Vue, opts = {
|
30
|
+
lang: 'zh-CN',
|
31
|
+
locale: null,
|
32
|
+
i18n: null
|
33
|
+
}) {
|
34
|
+
// loadLang(Vue, opts.lang, opts.locale, opts.i18n)
|
35
|
+
Vue.component(MakingForm.name, MakingForm)
|
36
|
+
}
|
37
|
+
|
38
|
+
GenerateForm.install = function (Vue, opts = {
|
39
|
+
lang: 'zh-CN',
|
40
|
+
locale: null,
|
41
|
+
i18n: null
|
42
|
+
}) {
|
43
|
+
// loadLang(Vue, opts.lang, opts.locale, opts.i18n)
|
44
|
+
Vue.component(GenerateForm.name, GenerateForm)
|
45
|
+
}
|
46
|
+
|
47
|
+
const components = [
|
48
|
+
MakingForm,
|
49
|
+
GenerateForm
|
50
|
+
]
|
51
|
+
|
52
|
+
const install = function (Vue, opts = {
|
53
|
+
lang: 'zh-CN',
|
54
|
+
locale: null,
|
55
|
+
i18n: null
|
56
|
+
}) {
|
57
|
+
// loadLang(Vue, opts.lang, opts.locale, opts.i18n)
|
58
|
+
components.forEach(component => {
|
59
|
+
Vue.component(component.name, component)
|
60
|
+
})
|
61
|
+
}
|
62
|
+
|
63
|
+
if (typeof window !== 'undefined' && window.Vue) {
|
64
|
+
install(window.Vue);
|
65
|
+
}
|
66
|
+
|
67
|
+
export {
|
68
|
+
install,
|
69
|
+
MakingForm,
|
70
|
+
GenerateForm
|
71
|
+
}
|
72
|
+
|
73
|
+
export default {
|
74
|
+
install,
|
75
|
+
MakingForm,
|
76
|
+
GenerateForm
|
77
|
+
}
|
@@ -1,187 +1,187 @@
|
|
1
|
-
export default {
|
2
|
-
fm: {
|
3
|
-
components: {
|
4
|
-
fields: {
|
5
|
-
input: 'Input',
|
6
|
-
textarea: 'Textarea',
|
7
|
-
number: 'Number',
|
8
|
-
radio: 'Radio',
|
9
|
-
checkbox: 'Checkbox',
|
10
|
-
time: 'Time',
|
11
|
-
date: 'Date',
|
12
|
-
rate: 'Rate',
|
13
|
-
color: 'Color',
|
14
|
-
select: 'Select',
|
15
|
-
switch: 'Switch',
|
16
|
-
slider: 'Slider',
|
17
|
-
text: 'Text',
|
18
|
-
blank: 'Custom',
|
19
|
-
fileupload: 'File',
|
20
|
-
imgupload: 'Image',
|
21
|
-
editor: 'Editor',
|
22
|
-
cascader: 'Cascader',
|
23
|
-
table: 'Sub-table',
|
24
|
-
grid: 'Grid',
|
25
|
-
tabs: 'Tabs',
|
26
|
-
divider: 'Divider'
|
27
|
-
},
|
28
|
-
basic: {
|
29
|
-
title: 'Basic Component',
|
30
|
-
},
|
31
|
-
advance: {
|
32
|
-
title: 'Advance Component',
|
33
|
-
},
|
34
|
-
layout: {
|
35
|
-
title: 'Layout',
|
36
|
-
}
|
37
|
-
},
|
38
|
-
description: {
|
39
|
-
containerEmpty: 'You can drag and drop the item from the left to add components',
|
40
|
-
configEmpty: 'Please add a component',
|
41
|
-
tableEmpty: 'You can drag and drop the item from the left to add components',
|
42
|
-
uploadJsonInfo: 'There is the format of JSON below,you can overwrite it with you own JSON code'
|
43
|
-
},
|
44
|
-
message: {
|
45
|
-
copySuccess: 'Copy Successed',
|
46
|
-
validError: 'Form data validation failed'
|
47
|
-
},
|
48
|
-
actions: {
|
49
|
-
import: 'Import JSON',
|
50
|
-
clear: 'Clear',
|
51
|
-
preview: 'Preview',
|
52
|
-
json: 'Generate JSON',
|
53
|
-
code: 'Generate Code',
|
54
|
-
getData: 'Get Data',
|
55
|
-
reset: 'Reset',
|
56
|
-
copyData: 'Copy Data',
|
57
|
-
cancel: 'Cancel',
|
58
|
-
confirm: 'Confirm',
|
59
|
-
addOption: 'Add Option',
|
60
|
-
addColumn: 'Add Column',
|
61
|
-
addTab: 'Add Tab',
|
62
|
-
upload: 'Upload',
|
63
|
-
add: 'Add'
|
64
|
-
},
|
65
|
-
config: {
|
66
|
-
form: {
|
67
|
-
title: 'Form Attribute',
|
68
|
-
labelPosition: {
|
69
|
-
title: 'Label Position',
|
70
|
-
left: 'Left',
|
71
|
-
right: 'Right',
|
72
|
-
top: 'Top'
|
73
|
-
},
|
74
|
-
labelWidth: 'Label Width',
|
75
|
-
size: 'Size',
|
76
|
-
customClass: 'Custom Class'
|
77
|
-
},
|
78
|
-
widget: {
|
79
|
-
title: 'Component Attribute',
|
80
|
-
model: 'ID',
|
81
|
-
name: 'Name',
|
82
|
-
width: 'Width',
|
83
|
-
height: 'Height',
|
84
|
-
size: 'Size',
|
85
|
-
labelWidth: 'Label Width',
|
86
|
-
custom: 'Custom',
|
87
|
-
placeholder: 'Placeholder',
|
88
|
-
layout: 'Layout',
|
89
|
-
block: 'Block',
|
90
|
-
inline: 'Inline',
|
91
|
-
contentPosition: 'Content Position',
|
92
|
-
left: 'Left',
|
93
|
-
right: 'Right',
|
94
|
-
center: 'Center',
|
95
|
-
showInput: 'Display Input Box',
|
96
|
-
min: 'Minimum',
|
97
|
-
max: 'Maximum',
|
98
|
-
step: 'Step',
|
99
|
-
multiple: 'Multiple',
|
100
|
-
filterable: 'Searchable',
|
101
|
-
allowHalf: 'Allow Half',
|
102
|
-
showAlpha: 'Support transparency options',
|
103
|
-
showLabel: 'Show lable',
|
104
|
-
option: 'Option',
|
105
|
-
staticData: 'Static Data',
|
106
|
-
remoteData: 'Remote Date',
|
107
|
-
remoteFunc: 'Remote Function',
|
108
|
-
value: 'Value',
|
109
|
-
label: 'Label',
|
110
|
-
childrenOption: 'Sub-Option',
|
111
|
-
defaultValue: 'Default Value',
|
112
|
-
showType: 'Display type',
|
113
|
-
isRange: 'Range Time',
|
114
|
-
isTimestamp: 'Get time stamp',
|
115
|
-
startPlaceholder: 'Placeholder of start time',
|
116
|
-
endPlaceholder: 'Placeholder of end time',
|
117
|
-
format: 'Format',
|
118
|
-
limit: 'Maximum Upload Count',
|
119
|
-
isQiniu: 'Upload with Qiniu Cloud',
|
120
|
-
tokenFunc: 'A funchtin to get Qiniu Uptoken',
|
121
|
-
imageAction: 'Picture upload address',
|
122
|
-
tip: 'Text Prompt',
|
123
|
-
action: 'Upload Address',
|
124
|
-
defaultType: 'Data Type',
|
125
|
-
string: 'String',
|
126
|
-
object: 'Object',
|
127
|
-
array: 'Array',
|
128
|
-
number: 'Number',
|
129
|
-
boolean: 'Boolean',
|
130
|
-
integer: 'Integer',
|
131
|
-
float: 'Float',
|
132
|
-
url: 'URL',
|
133
|
-
email: 'E-mail',
|
134
|
-
hex: 'Hexadecimal',
|
135
|
-
gutter: 'Grid Spacing',
|
136
|
-
columnOption: 'Column Configuration',
|
137
|
-
span: 'Grid spans',
|
138
|
-
justify: 'Horizontal Arrangement',
|
139
|
-
justifyStart: 'Start',
|
140
|
-
justifyEnd: 'End',
|
141
|
-
justifyCenter: 'Center',
|
142
|
-
justifySpaceAround: 'Space Around',
|
143
|
-
justifySpaceBetween: 'Space Between',
|
144
|
-
align: 'Vertical Arrangement',
|
145
|
-
alignTop: 'Top',
|
146
|
-
alignMiddle: 'Middle',
|
147
|
-
alignBottom: 'Bottom',
|
148
|
-
type: 'Type',
|
149
|
-
default: 'Default',
|
150
|
-
card: 'Tabs',
|
151
|
-
borderCard: 'Border-Card',
|
152
|
-
tabPosition: 'Tab Position',
|
153
|
-
top: 'Top',
|
154
|
-
bottom: 'Bottom',
|
155
|
-
tabOption: 'Label Configuration',
|
156
|
-
tabName: 'Tab Name',
|
157
|
-
customClass: 'Custom Class',
|
158
|
-
attribute: 'Attribute Action',
|
159
|
-
dataBind: 'Data Binding',
|
160
|
-
hidden: 'Hidden',
|
161
|
-
readonly: 'Read Only',
|
162
|
-
disabled: 'Disabled',
|
163
|
-
editable: 'Text box is editable',
|
164
|
-
clearable: 'Display Clear Button',
|
165
|
-
arrowControl: 'Use the arrow for time selection',
|
166
|
-
isDelete: 'Deletable',
|
167
|
-
isEdit: 'Editable',
|
168
|
-
showPassword: 'Display Password',
|
169
|
-
validate: 'Validation',
|
170
|
-
required: 'Required',
|
171
|
-
patternPlaceholder: 'Fill in the regular expressions',
|
172
|
-
newOption: 'New Option',
|
173
|
-
tab: 'Tab',
|
174
|
-
validatorRequired: 'Required',
|
175
|
-
validatorType: 'Invaild format',
|
176
|
-
validatorPattern: 'Unmatched pattern',
|
177
|
-
showWordLimit: 'Show word limit',
|
178
|
-
maxlength: 'Max length',
|
179
|
-
}
|
180
|
-
},
|
181
|
-
upload: {
|
182
|
-
preview: 'preview',
|
183
|
-
edit: 'replace',
|
184
|
-
delete: 'delete'
|
185
|
-
}
|
186
|
-
}
|
187
|
-
}
|
1
|
+
export default {
|
2
|
+
fm: {
|
3
|
+
components: {
|
4
|
+
fields: {
|
5
|
+
input: 'Input',
|
6
|
+
textarea: 'Textarea',
|
7
|
+
number: 'Number',
|
8
|
+
radio: 'Radio',
|
9
|
+
checkbox: 'Checkbox',
|
10
|
+
time: 'Time',
|
11
|
+
date: 'Date',
|
12
|
+
rate: 'Rate',
|
13
|
+
color: 'Color',
|
14
|
+
select: 'Select',
|
15
|
+
switch: 'Switch',
|
16
|
+
slider: 'Slider',
|
17
|
+
text: 'Text',
|
18
|
+
blank: 'Custom',
|
19
|
+
fileupload: 'File',
|
20
|
+
imgupload: 'Image',
|
21
|
+
editor: 'Editor',
|
22
|
+
cascader: 'Cascader',
|
23
|
+
table: 'Sub-table',
|
24
|
+
grid: 'Grid',
|
25
|
+
tabs: 'Tabs',
|
26
|
+
divider: 'Divider'
|
27
|
+
},
|
28
|
+
basic: {
|
29
|
+
title: 'Basic Component',
|
30
|
+
},
|
31
|
+
advance: {
|
32
|
+
title: 'Advance Component',
|
33
|
+
},
|
34
|
+
layout: {
|
35
|
+
title: 'Layout',
|
36
|
+
}
|
37
|
+
},
|
38
|
+
description: {
|
39
|
+
containerEmpty: 'You can drag and drop the item from the left to add components',
|
40
|
+
configEmpty: 'Please add a component',
|
41
|
+
tableEmpty: 'You can drag and drop the item from the left to add components',
|
42
|
+
uploadJsonInfo: 'There is the format of JSON below,you can overwrite it with you own JSON code'
|
43
|
+
},
|
44
|
+
message: {
|
45
|
+
copySuccess: 'Copy Successed',
|
46
|
+
validError: 'Form data validation failed'
|
47
|
+
},
|
48
|
+
actions: {
|
49
|
+
import: 'Import JSON',
|
50
|
+
clear: 'Clear',
|
51
|
+
preview: 'Preview',
|
52
|
+
json: 'Generate JSON',
|
53
|
+
code: 'Generate Code',
|
54
|
+
getData: 'Get Data',
|
55
|
+
reset: 'Reset',
|
56
|
+
copyData: 'Copy Data',
|
57
|
+
cancel: 'Cancel',
|
58
|
+
confirm: 'Confirm',
|
59
|
+
addOption: 'Add Option',
|
60
|
+
addColumn: 'Add Column',
|
61
|
+
addTab: 'Add Tab',
|
62
|
+
upload: 'Upload',
|
63
|
+
add: 'Add'
|
64
|
+
},
|
65
|
+
config: {
|
66
|
+
form: {
|
67
|
+
title: 'Form Attribute',
|
68
|
+
labelPosition: {
|
69
|
+
title: 'Label Position',
|
70
|
+
left: 'Left',
|
71
|
+
right: 'Right',
|
72
|
+
top: 'Top'
|
73
|
+
},
|
74
|
+
labelWidth: 'Label Width',
|
75
|
+
size: 'Size',
|
76
|
+
customClass: 'Custom Class'
|
77
|
+
},
|
78
|
+
widget: {
|
79
|
+
title: 'Component Attribute',
|
80
|
+
model: 'ID',
|
81
|
+
name: 'Name',
|
82
|
+
width: 'Width',
|
83
|
+
height: 'Height',
|
84
|
+
size: 'Size',
|
85
|
+
labelWidth: 'Label Width',
|
86
|
+
custom: 'Custom',
|
87
|
+
placeholder: 'Placeholder',
|
88
|
+
layout: 'Layout',
|
89
|
+
block: 'Block',
|
90
|
+
inline: 'Inline',
|
91
|
+
contentPosition: 'Content Position',
|
92
|
+
left: 'Left',
|
93
|
+
right: 'Right',
|
94
|
+
center: 'Center',
|
95
|
+
showInput: 'Display Input Box',
|
96
|
+
min: 'Minimum',
|
97
|
+
max: 'Maximum',
|
98
|
+
step: 'Step',
|
99
|
+
multiple: 'Multiple',
|
100
|
+
filterable: 'Searchable',
|
101
|
+
allowHalf: 'Allow Half',
|
102
|
+
showAlpha: 'Support transparency options',
|
103
|
+
showLabel: 'Show lable',
|
104
|
+
option: 'Option',
|
105
|
+
staticData: 'Static Data',
|
106
|
+
remoteData: 'Remote Date',
|
107
|
+
remoteFunc: 'Remote Function',
|
108
|
+
value: 'Value',
|
109
|
+
label: 'Label',
|
110
|
+
childrenOption: 'Sub-Option',
|
111
|
+
defaultValue: 'Default Value',
|
112
|
+
showType: 'Display type',
|
113
|
+
isRange: 'Range Time',
|
114
|
+
isTimestamp: 'Get time stamp',
|
115
|
+
startPlaceholder: 'Placeholder of start time',
|
116
|
+
endPlaceholder: 'Placeholder of end time',
|
117
|
+
format: 'Format',
|
118
|
+
limit: 'Maximum Upload Count',
|
119
|
+
isQiniu: 'Upload with Qiniu Cloud',
|
120
|
+
tokenFunc: 'A funchtin to get Qiniu Uptoken',
|
121
|
+
imageAction: 'Picture upload address',
|
122
|
+
tip: 'Text Prompt',
|
123
|
+
action: 'Upload Address',
|
124
|
+
defaultType: 'Data Type',
|
125
|
+
string: 'String',
|
126
|
+
object: 'Object',
|
127
|
+
array: 'Array',
|
128
|
+
number: 'Number',
|
129
|
+
boolean: 'Boolean',
|
130
|
+
integer: 'Integer',
|
131
|
+
float: 'Float',
|
132
|
+
url: 'URL',
|
133
|
+
email: 'E-mail',
|
134
|
+
hex: 'Hexadecimal',
|
135
|
+
gutter: 'Grid Spacing',
|
136
|
+
columnOption: 'Column Configuration',
|
137
|
+
span: 'Grid spans',
|
138
|
+
justify: 'Horizontal Arrangement',
|
139
|
+
justifyStart: 'Start',
|
140
|
+
justifyEnd: 'End',
|
141
|
+
justifyCenter: 'Center',
|
142
|
+
justifySpaceAround: 'Space Around',
|
143
|
+
justifySpaceBetween: 'Space Between',
|
144
|
+
align: 'Vertical Arrangement',
|
145
|
+
alignTop: 'Top',
|
146
|
+
alignMiddle: 'Middle',
|
147
|
+
alignBottom: 'Bottom',
|
148
|
+
type: 'Type',
|
149
|
+
default: 'Default',
|
150
|
+
card: 'Tabs',
|
151
|
+
borderCard: 'Border-Card',
|
152
|
+
tabPosition: 'Tab Position',
|
153
|
+
top: 'Top',
|
154
|
+
bottom: 'Bottom',
|
155
|
+
tabOption: 'Label Configuration',
|
156
|
+
tabName: 'Tab Name',
|
157
|
+
customClass: 'Custom Class',
|
158
|
+
attribute: 'Attribute Action',
|
159
|
+
dataBind: 'Data Binding',
|
160
|
+
hidden: 'Hidden',
|
161
|
+
readonly: 'Read Only',
|
162
|
+
disabled: 'Disabled',
|
163
|
+
editable: 'Text box is editable',
|
164
|
+
clearable: 'Display Clear Button',
|
165
|
+
arrowControl: 'Use the arrow for time selection',
|
166
|
+
isDelete: 'Deletable',
|
167
|
+
isEdit: 'Editable',
|
168
|
+
showPassword: 'Display Password',
|
169
|
+
validate: 'Validation',
|
170
|
+
required: 'Required',
|
171
|
+
patternPlaceholder: 'Fill in the regular expressions',
|
172
|
+
newOption: 'New Option',
|
173
|
+
tab: 'Tab',
|
174
|
+
validatorRequired: 'Required',
|
175
|
+
validatorType: 'Invaild format',
|
176
|
+
validatorPattern: 'Unmatched pattern',
|
177
|
+
showWordLimit: 'Show word limit',
|
178
|
+
maxlength: 'Max length',
|
179
|
+
}
|
180
|
+
},
|
181
|
+
upload: {
|
182
|
+
preview: 'preview',
|
183
|
+
edit: 'replace',
|
184
|
+
delete: 'delete'
|
185
|
+
}
|
186
|
+
}
|
187
|
+
}
|