Browse Source

KERNEL-748 feat: fineui的html、htmlLabel控件代码优化.

es6
dailer 5 years ago
parent
commit
4a2e6914ce
  1. 5
      dist/2.0/fineui.ie.js
  2. 5
      dist/2.0/fineui.js
  3. 5
      dist/base.js
  4. 5
      dist/bundle.ie.js
  5. 5
      dist/bundle.js
  6. 5
      dist/fineui.ie.js
  7. 5
      dist/fineui.js
  8. 5
      dist/fineui_without_jquery_polyfill.js
  9. 5
      src/base/single/label/abstract.label.js

5
dist/2.0/fineui.ie.js vendored

@ -48682,7 +48682,9 @@ BI.shortcut("bi.radio", BI.Radio);/**
BI.AbstractLabel = BI.inherit(BI.Single, {
props: {
_defaultConfig: function (props) {
var conf = BI.AbstractLabel.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
textAlign: "center",
whiteSpace: "nowrap", // normal or nowrap
textWidth: null,
@ -48695,6 +48697,7 @@ BI.AbstractLabel = BI.inherit(BI.Single, {
bgap: 0,
text: "",
highLight: false
});
},
_createJson: function () {

5
dist/2.0/fineui.js vendored

@ -49086,7 +49086,9 @@ BI.shortcut("bi.radio", BI.Radio);/**
BI.AbstractLabel = BI.inherit(BI.Single, {
props: {
_defaultConfig: function (props) {
var conf = BI.AbstractLabel.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
textAlign: "center",
whiteSpace: "nowrap", // normal or nowrap
textWidth: null,
@ -49099,6 +49101,7 @@ BI.AbstractLabel = BI.inherit(BI.Single, {
bgap: 0,
text: "",
highLight: false
});
},
_createJson: function () {

5
dist/base.js vendored

@ -10798,7 +10798,9 @@ BI.shortcut("bi.radio", BI.Radio);/**
BI.AbstractLabel = BI.inherit(BI.Single, {
props: {
_defaultConfig: function (props) {
var conf = BI.AbstractLabel.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
textAlign: "center",
whiteSpace: "nowrap", // normal or nowrap
textWidth: null,
@ -10811,6 +10813,7 @@ BI.AbstractLabel = BI.inherit(BI.Single, {
bgap: 0,
text: "",
highLight: false
});
},
_createJson: function () {

5
dist/bundle.ie.js vendored

@ -48682,7 +48682,9 @@ BI.shortcut("bi.radio", BI.Radio);/**
BI.AbstractLabel = BI.inherit(BI.Single, {
props: {
_defaultConfig: function (props) {
var conf = BI.AbstractLabel.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
textAlign: "center",
whiteSpace: "nowrap", // normal or nowrap
textWidth: null,
@ -48695,6 +48697,7 @@ BI.AbstractLabel = BI.inherit(BI.Single, {
bgap: 0,
text: "",
highLight: false
});
},
_createJson: function () {

5
dist/bundle.js vendored

@ -49086,7 +49086,9 @@ BI.shortcut("bi.radio", BI.Radio);/**
BI.AbstractLabel = BI.inherit(BI.Single, {
props: {
_defaultConfig: function (props) {
var conf = BI.AbstractLabel.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
textAlign: "center",
whiteSpace: "nowrap", // normal or nowrap
textWidth: null,
@ -49099,6 +49101,7 @@ BI.AbstractLabel = BI.inherit(BI.Single, {
bgap: 0,
text: "",
highLight: false
});
},
_createJson: function () {

5
dist/fineui.ie.js vendored

@ -48927,7 +48927,9 @@ BI.shortcut("bi.radio", BI.Radio);/**
BI.AbstractLabel = BI.inherit(BI.Single, {
props: {
_defaultConfig: function (props) {
var conf = BI.AbstractLabel.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
textAlign: "center",
whiteSpace: "nowrap", // normal or nowrap
textWidth: null,
@ -48940,6 +48942,7 @@ BI.AbstractLabel = BI.inherit(BI.Single, {
bgap: 0,
text: "",
highLight: false
});
},
_createJson: function () {

5
dist/fineui.js vendored

@ -49331,7 +49331,9 @@ BI.shortcut("bi.radio", BI.Radio);/**
BI.AbstractLabel = BI.inherit(BI.Single, {
props: {
_defaultConfig: function (props) {
var conf = BI.AbstractLabel.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
textAlign: "center",
whiteSpace: "nowrap", // normal or nowrap
textWidth: null,
@ -49344,6 +49346,7 @@ BI.AbstractLabel = BI.inherit(BI.Single, {
bgap: 0,
text: "",
highLight: false
});
},
_createJson: function () {

5
dist/fineui_without_jquery_polyfill.js vendored

@ -35832,7 +35832,9 @@ BI.shortcut("bi.radio", BI.Radio);/**
BI.AbstractLabel = BI.inherit(BI.Single, {
props: {
_defaultConfig: function (props) {
var conf = BI.AbstractLabel.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
textAlign: "center",
whiteSpace: "nowrap", // normal or nowrap
textWidth: null,
@ -35845,6 +35847,7 @@ BI.AbstractLabel = BI.inherit(BI.Single, {
bgap: 0,
text: "",
highLight: false
});
},
_createJson: function () {

5
src/base/single/label/abstract.label.js

@ -4,7 +4,9 @@
BI.AbstractLabel = BI.inherit(BI.Single, {
props: {
_defaultConfig: function (props) {
var conf = BI.AbstractLabel.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
textAlign: "center",
whiteSpace: "nowrap", // normal or nowrap
textWidth: null,
@ -17,6 +19,7 @@ BI.AbstractLabel = BI.inherit(BI.Single, {
bgap: 0,
text: "",
highLight: false
});
},
_createJson: function () {

Loading…
Cancel
Save