1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| export const inputProps = {
| detailed: { default: false, type: Boolean },
| maskConfig: {
| default: () => ({}),
| type: Object,
| },
| prefixIcon: { default: '', type: String },
| showOverflow: { default: false, type: Boolean },
| showPassword: { default: false, type: Boolean },
| suffixIcon: { default: '', type: String },
| useMask: { default: false, type: Boolean },
| useScan: { default: false, type: Boolean },
| value: String,
| };
| export const textareaProps = {
| rows: { default: 3 },
| value: String,
| };
| export const i18nInputProps = {
| i18n: String,
| prefixIcon: { default: '', type: String },
| suffixIcon: { default: '', type: String },
| value: String,
| };
|
|