2019-10-07 10:24:30 -04:00
|
|
|
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'
|
|
|
|
},
|
|
|
|
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'
|
|
|
|
},
|
|
|
|
|
2019-11-14 01:00:56 -05:00
|
|
|
// === SLIDER INPUTS
|
|
|
|
range: {
|
|
|
|
classification: 'slider',
|
|
|
|
component: 'FormulateInputSlider'
|
|
|
|
},
|
|
|
|
|
2019-10-07 10:24:30 -04:00
|
|
|
// === 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'
|
2019-11-15 14:44:01 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
// === FILE TYPE
|
|
|
|
|
|
|
|
file: {
|
|
|
|
classification: 'file',
|
|
|
|
component: 'FormulateInputFile'
|
|
|
|
},
|
|
|
|
image: {
|
|
|
|
classification: 'file',
|
|
|
|
component: 'FormulateInputFile'
|
2019-10-07 10:24:30 -04:00
|
|
|
}
|
|
|
|
}
|