96 lines
1.8 KiB
JavaScript
96 lines
1.8 KiB
JavaScript
|
export default {
|
||
|
// === SINGLE LINE TEXT STYLE INPUTS
|
||
|
text: {
|
||
|
classification: 'text',
|
||
|
component: 'FormulateInputText'
|
||
|
},
|
||
|
email: {
|
||
|
classification: 'text',
|
||
|
component: 'FormulateInputText'
|
||
|
},
|
||
|
number: {
|
||
|
classification: 'text',
|
||
|
component: 'FormulateInputText'
|
||
|
},
|
||
|
color: {
|
||
|
classification: 'text',
|
||
|
component: 'FormulateInputText'
|
||
|
},
|
||
|
date: {
|
||
|
classification: 'text',
|
||
|
component: 'FormulateInputText'
|
||
|
},
|
||
|
hidden: {
|
||
|
classification: 'text',
|
||
|
component: 'FormulateInputText'
|
||
|
},
|
||
|
month: {
|
||
|
classification: 'text',
|
||
|
component: 'FormulateInputText'
|
||
|
},
|
||
|
password: {
|
||
|
classification: 'text',
|
||
|
component: 'FormulateInputText'
|
||
|
},
|
||
|
range: {
|
||
|
classification: 'text',
|
||
|
component: 'FormulateInputText'
|
||
|
},
|
||
|
search: {
|
||
|
classification: 'text',
|
||
|
component: 'FormulateInputText'
|
||
|
},
|
||
|
tel: {
|
||
|
classification: 'text',
|
||
|
component: 'FormulateInputText'
|
||
|
},
|
||
|
time: {
|
||
|
classification: 'text',
|
||
|
component: 'FormulateInputText'
|
||
|
},
|
||
|
url: {
|
||
|
classification: 'text',
|
||
|
component: 'FormulateInputText'
|
||
|
},
|
||
|
week: {
|
||
|
classification: 'text',
|
||
|
component: 'FormulateInputText'
|
||
|
},
|
||
|
'datetime-local': {
|
||
|
classification: 'text',
|
||
|
component: 'FormulateInputText'
|
||
|
},
|
||
|
|
||
|
// === MULTI LINE TEXT INPUTS
|
||
|
textarea: {
|
||
|
classification: 'textarea',
|
||
|
component: 'FormulateInputTextArea'
|
||
|
},
|
||
|
|
||
|
// === BOX STYLE INPUTS
|
||
|
checkbox: {
|
||
|
classification: 'box',
|
||
|
component: 'FormulateInputBox'
|
||
|
},
|
||
|
radio: {
|
||
|
classification: 'box',
|
||
|
component: 'FormulateInputBox'
|
||
|
},
|
||
|
|
||
|
// === BUTTON STYLE INPUTS
|
||
|
submit: {
|
||
|
classification: 'button',
|
||
|
component: 'FormulateInputButton'
|
||
|
},
|
||
|
button: {
|
||
|
classification: 'button',
|
||
|
component: 'FormulateInputButton'
|
||
|
},
|
||
|
|
||
|
// === SELECT STYLE INPUTS
|
||
|
select: {
|
||
|
classification: 'select',
|
||
|
component: 'FormulateInputSelect'
|
||
|
}
|
||
|
}
|