Browse Source

Merge pull request #792 in VISUAL/fineui from ~WINDY/fineui:master to master

* commit '67ac0d849ce93a80a6015a5354fecf3ebeda3258':
  无JIRA任务 text_editor的边框高亮
  无JIRA任务 single_select_item
es6
windy 6 years ago
parent
commit
40875111cd
  1. 4
      dist/bundle.ie.js
  2. 34
      dist/bundle.ie.min.js
  3. 4
      dist/bundle.js
  4. 8
      dist/bundle.min.js
  5. 2
      dist/case.js
  6. 4
      dist/fineui.ie.js
  7. 34
      dist/fineui.ie.min.js
  8. 4
      dist/fineui.js
  9. 8
      dist/fineui.min.js
  10. 4
      dist/fineui_without_jquery_polyfill.js
  11. 2
      dist/utils.min.js
  12. 2
      dist/widget.js
  13. 2
      src/case/button/item.singleselect.js
  14. 2
      src/widget/editor/editor.text.js

4
dist/bundle.ie.js vendored

@ -49493,7 +49493,7 @@ BI.SingleSelectItem = BI.inherit(BI.BasicButton, {
text: o.text,
keyword: o.keyword,
value: o.value,
title: o.text,
title: o.title || o.text,
py: o.py
});
},
@ -63979,7 +63979,7 @@ BI.TextEditor = BI.inherit(BI.Widget, {
_defaultConfig: function () {
var conf = BI.TextEditor.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-text-editor bi-border",
extraCls: "bi-text-editor bi-border bi-focus-shadow",
hgap: 4,
vgap: 2,
lgap: 0,

34
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/bundle.js vendored

@ -49897,7 +49897,7 @@ BI.SingleSelectItem = BI.inherit(BI.BasicButton, {
text: o.text,
keyword: o.keyword,
value: o.value,
title: o.text,
title: o.title || o.text,
py: o.py
});
},
@ -64383,7 +64383,7 @@ BI.TextEditor = BI.inherit(BI.Widget, {
_defaultConfig: function () {
var conf = BI.TextEditor.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-text-editor bi-border",
extraCls: "bi-text-editor bi-border bi-focus-shadow",
hgap: 4,
vgap: 2,
lgap: 0,

8
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/case.js vendored

@ -301,7 +301,7 @@ BI.SingleSelectItem = BI.inherit(BI.BasicButton, {
text: o.text,
keyword: o.keyword,
value: o.value,
title: o.text,
title: o.title || o.text,
py: o.py
});
},

4
dist/fineui.ie.js vendored

@ -49735,7 +49735,7 @@ BI.SingleSelectItem = BI.inherit(BI.BasicButton, {
text: o.text,
keyword: o.keyword,
value: o.value,
title: o.text,
title: o.title || o.text,
py: o.py
});
},
@ -64221,7 +64221,7 @@ BI.TextEditor = BI.inherit(BI.Widget, {
_defaultConfig: function () {
var conf = BI.TextEditor.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-text-editor bi-border",
extraCls: "bi-text-editor bi-border bi-focus-shadow",
hgap: 4,
vgap: 2,
lgap: 0,

34
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.js vendored

@ -50139,7 +50139,7 @@ BI.SingleSelectItem = BI.inherit(BI.BasicButton, {
text: o.text,
keyword: o.keyword,
value: o.value,
title: o.text,
title: o.title || o.text,
py: o.py
});
},
@ -64625,7 +64625,7 @@ BI.TextEditor = BI.inherit(BI.Widget, {
_defaultConfig: function () {
var conf = BI.TextEditor.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-text-editor bi-border",
extraCls: "bi-text-editor bi-border bi-focus-shadow",
hgap: 4,
vgap: 2,
lgap: 0,

8
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/fineui_without_jquery_polyfill.js vendored

@ -34786,7 +34786,7 @@ BI.SingleSelectItem = BI.inherit(BI.BasicButton, {
text: o.text,
keyword: o.keyword,
value: o.value,
title: o.text,
title: o.title || o.text,
py: o.py
});
},
@ -47444,7 +47444,7 @@ BI.TextEditor = BI.inherit(BI.Widget, {
_defaultConfig: function () {
var conf = BI.TextEditor.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-text-editor bi-border",
extraCls: "bi-text-editor bi-border bi-focus-shadow",
hgap: 4,
vgap: 2,
lgap: 0,

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/widget.js vendored

@ -4981,7 +4981,7 @@ BI.TextEditor = BI.inherit(BI.Widget, {
_defaultConfig: function () {
var conf = BI.TextEditor.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-text-editor bi-border",
extraCls: "bi-text-editor bi-border bi-focus-shadow",
hgap: 4,
vgap: 2,
lgap: 0,

2
src/case/button/item.singleselect.js

@ -26,7 +26,7 @@ BI.SingleSelectItem = BI.inherit(BI.BasicButton, {
text: o.text,
keyword: o.keyword,
value: o.value,
title: o.text,
title: o.title || o.text,
py: o.py
});
},

2
src/widget/editor/editor.text.js

@ -7,7 +7,7 @@ BI.TextEditor = BI.inherit(BI.Widget, {
_defaultConfig: function () {
var conf = BI.TextEditor.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-text-editor bi-border",
extraCls: "bi-text-editor bi-border bi-focus-shadow",
hgap: 4,
vgap: 2,
lgap: 0,

Loading…
Cancel
Save