Browse Source

BI-23371

es6
windy 6 years ago
parent
commit
2548507f19
  1. 3
      demo/js/case/combo/demo.icon_text_value_combo.js
  2. 42
      dist/_fineui.min.js
  3. 6
      dist/bundle.js
  4. 14
      dist/bundle.min.js
  5. 6
      dist/case.js
  6. 3
      dist/demo.js
  7. 6
      dist/fineui.js
  8. 42
      dist/fineui.min.js
  9. 1
      src/case/combo/icontextvaluecombo/combo.icontextvalue.js
  10. 5
      src/case/trigger/trigger.icon.text.select.js

3
demo/js/case/combo/demo.icon_text_value_combo.js

@ -12,7 +12,8 @@ Demo.IconTextValueCombo = BI.inherit(BI.Widget, {
items: [{
type: "bi.icon_text_value_combo",
text: "默认值",
value: 1,
// defaultIconCls: "next-page-h-font",
value: 23,
width: 300,
iconHeight: 16,
iconWidth: 16,

42
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/bundle.js vendored

@ -78407,6 +78407,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, {
items: o.items,
height: o.height,
text: o.text,
defaultIconCls: o.defaultIconCls,
value: o.value,
iconHeight: o.iconHeight,
iconWidth: o.iconWidth
@ -87330,7 +87331,8 @@ BI.SelectIconTextTrigger = BI.inherit(BI.Trigger, {
baseCls: "bi-select-text-trigger bi-border",
height: 24,
iconHeight: null,
iconWidth: null
iconWidth: null,
defaultIconCls: ""
});
},
@ -87373,7 +87375,7 @@ BI.SelectIconTextTrigger = BI.inherit(BI.Trigger, {
} else {
return {
text: o.text,
iconCls: ""
iconCls: o.defaultIconCls
};
}
},

14
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/case.js vendored

@ -5918,6 +5918,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, {
items: o.items,
height: o.height,
text: o.text,
defaultIconCls: o.defaultIconCls,
value: o.value,
iconHeight: o.iconHeight,
iconWidth: o.iconWidth
@ -14841,7 +14842,8 @@ BI.SelectIconTextTrigger = BI.inherit(BI.Trigger, {
baseCls: "bi-select-text-trigger bi-border",
height: 24,
iconHeight: null,
iconWidth: null
iconWidth: null,
defaultIconCls: ""
});
},
@ -14884,7 +14886,7 @@ BI.SelectIconTextTrigger = BI.inherit(BI.Trigger, {
} else {
return {
text: o.text,
iconCls: ""
iconCls: o.defaultIconCls
};
}
},

3
dist/demo.js vendored

@ -2028,7 +2028,8 @@ Demo.IconTextValueCombo = BI.inherit(BI.Widget, {
items: [{
type: "bi.icon_text_value_combo",
text: "默认值",
value: 1,
// defaultIconCls: "next-page-h-font",
value: 23,
width: 300,
iconHeight: 16,
iconWidth: 16,

6
dist/fineui.js vendored

@ -78650,6 +78650,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, {
items: o.items,
height: o.height,
text: o.text,
defaultIconCls: o.defaultIconCls,
value: o.value,
iconHeight: o.iconHeight,
iconWidth: o.iconWidth
@ -87573,7 +87574,8 @@ BI.SelectIconTextTrigger = BI.inherit(BI.Trigger, {
baseCls: "bi-select-text-trigger bi-border",
height: 24,
iconHeight: null,
iconWidth: null
iconWidth: null,
defaultIconCls: ""
});
},
@ -87616,7 +87618,7 @@ BI.SelectIconTextTrigger = BI.inherit(BI.Trigger, {
} else {
return {
text: o.text,
iconCls: ""
iconCls: o.defaultIconCls
};
}
},

42
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

1
src/case/combo/icontextvaluecombo/combo.icontextvalue.js

@ -21,6 +21,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, {
items: o.items,
height: o.height,
text: o.text,
defaultIconCls: o.defaultIconCls,
value: o.value,
iconHeight: o.iconHeight,
iconWidth: o.iconWidth

5
src/case/trigger/trigger.icon.text.select.js

@ -8,7 +8,8 @@ BI.SelectIconTextTrigger = BI.inherit(BI.Trigger, {
baseCls: "bi-select-text-trigger bi-border",
height: 24,
iconHeight: null,
iconWidth: null
iconWidth: null,
defaultIconCls: ""
});
},
@ -51,7 +52,7 @@ BI.SelectIconTextTrigger = BI.inherit(BI.Trigger, {
} else {
return {
text: o.text,
iconCls: ""
iconCls: o.defaultIconCls
};
}
},

Loading…
Cancel
Save