This commit is contained in:
Kevin Ross 2016-01-26 11:22:24 -06:00
parent e24f1ccc9a
commit 86a7d5a487
8 changed files with 13 additions and 27 deletions

View File

@ -6633,9 +6633,6 @@ const BootstrapMaterialDesign = (($) => {
file: { file: {
selector: 'input[type=file]' selector: 'input[type=file]'
}, },
//layout: {
// selector: '.mdb-layout-container'
//},
radio: { radio: {
selector: '.radio > label > input[type=radio]' selector: '.radio > label > input[type=radio]'
}, },
@ -6661,8 +6658,8 @@ const BootstrapMaterialDesign = (($) => {
selector: '.switch > label > input[type=checkbox]' selector: '.switch > label > input[type=checkbox]'
}, },
text: { text: {
// omit inputs we have specialized components to handle // omit inputs we have specialized components to handle - we need to match text, email, etc. The easiest way to do this appears to be just omit the ones we don't want to match and let the rest fall through to this.
selector: [`input[type!='hidden'][type!='checkbox'][type!='radio'][type!='file']`] selector: [`input[type!='hidden'][type!='checkbox'][type!='radio'][type!='file'][type!='button'][type!='submit'][type!='reset']`]
}, },
textarea: { textarea: {
selector: ['textarea'] selector: ['textarea']
@ -6674,7 +6671,6 @@ const BootstrapMaterialDesign = (($) => {
'checkbox', 'checkbox',
'checkboxInline', 'checkboxInline',
'collapseInline', 'collapseInline',
//'layout',
'drawer', 'drawer',
'file', 'file',
'radio', 'radio',

File diff suppressed because one or more lines are too long

View File

@ -3291,9 +3291,6 @@
file: { file: {
selector: 'input[type=file]' selector: 'input[type=file]'
}, },
//layout: {
// selector: '.mdb-layout-container'
//},
radio: { radio: {
selector: '.radio > label > input[type=radio]' selector: '.radio > label > input[type=radio]'
}, },
@ -3312,17 +3309,15 @@
selector: '.switch > label > input[type=checkbox]' selector: '.switch > label > input[type=checkbox]'
}, },
text: { text: {
// omit inputs we have specialized components to handle // omit inputs we have specialized components to handle - we need to match text, email, etc. The easiest way to do this appears to be just omit the ones we don't want to match and let the rest fall through to this.
selector: ['input[type!=\'hidden\'][type!=\'checkbox\'][type!=\'radio\'][type!=\'file\']'] selector: ['input[type!=\'hidden\'][type!=\'checkbox\'][type!=\'radio\'][type!=\'file\'][type!=\'button\'][type!=\'submit\'][type!=\'reset\']']
}, },
textarea: { textarea: {
selector: ['textarea'] selector: ['textarea']
}, },
arrive: true, arrive: true,
// create an ordered component list for instantiation // create an ordered component list for instantiation
instantiation: ['ripples', 'checkbox', 'checkboxInline', 'collapseInline', instantiation: ['ripples', 'checkbox', 'checkboxInline', 'collapseInline', 'drawer', 'file', 'radio', 'radioInline', 'switch', 'text', 'textarea', 'select', 'autofill']
//'layout',
'drawer', 'file', 'radio', 'radioInline', 'switch', 'text', 'textarea', 'select', 'autofill']
}; };
/** /**

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -3294,9 +3294,6 @@
file: { file: {
selector: 'input[type=file]' selector: 'input[type=file]'
}, },
//layout: {
// selector: '.mdb-layout-container'
//},
radio: { radio: {
selector: '.radio > label > input[type=radio]' selector: '.radio > label > input[type=radio]'
}, },
@ -3315,17 +3312,15 @@
selector: '.switch > label > input[type=checkbox]' selector: '.switch > label > input[type=checkbox]'
}, },
text: { text: {
// omit inputs we have specialized components to handle // omit inputs we have specialized components to handle - we need to match text, email, etc. The easiest way to do this appears to be just omit the ones we don't want to match and let the rest fall through to this.
selector: ['input[type!=\'hidden\'][type!=\'checkbox\'][type!=\'radio\'][type!=\'file\']'] selector: ['input[type!=\'hidden\'][type!=\'checkbox\'][type!=\'radio\'][type!=\'file\'][type!=\'button\'][type!=\'submit\'][type!=\'reset\']']
}, },
textarea: { textarea: {
selector: ['textarea'] selector: ['textarea']
}, },
arrive: true, arrive: true,
// create an ordered component list for instantiation // create an ordered component list for instantiation
instantiation: ['ripples', 'checkbox', 'checkboxInline', 'collapseInline', instantiation: ['ripples', 'checkbox', 'checkboxInline', 'collapseInline', 'drawer', 'file', 'radio', 'radioInline', 'switch', 'text', 'textarea', 'select', 'autofill']
//'layout',
'drawer', 'file', 'radio', 'radioInline', 'switch', 'text', 'textarea', 'select', 'autofill']
}; };
/** /**

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long