Browse Source

Merge pull request #1029 in VISUAL/fineui from ~GUY/fineui:master to master

* commit '5dd5f5867c2276f14ed1a0aa6c2f99c4aa5f3afc':
  bugfix
es6
guy 5 years ago
parent
commit
313a0aceb8
  1. 5
      dist/2.0/fineui.css
  2. 11
      dist/2.0/fineui.ie.js
  3. 8
      dist/2.0/fineui.ie.min.js
  4. 11
      dist/2.0/fineui.js
  5. 8
      dist/2.0/fineui.min.js
  6. 5
      dist/bundle.css
  7. 11
      dist/bundle.ie.js
  8. 8
      dist/bundle.ie.min.js
  9. 11
      dist/bundle.js
  10. 8
      dist/bundle.min.js
  11. 9
      dist/core.js
  12. 5
      dist/fineui.css
  13. 11
      dist/fineui.ie.js
  14. 6
      dist/fineui.ie.min.js
  15. 11
      dist/fineui.js
  16. 8
      dist/fineui.min.js
  17. 11
      dist/fineui_without_jquery_polyfill.js
  18. 2
      dist/utils.min.js
  19. 5
      dist/widget.css
  20. 2
      dist/widget.js
  21. 9
      src/core/widget.js

5
dist/2.0/fineui.css vendored

@ -4420,6 +4420,11 @@ ul.ztree.zTreeDragUL {
.bi-number-editor .pull-up-font {
font-size: 12px;
}
.bi-number-interval.hack {
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
.bi-number-interval .number-interval-small-editor {
-moz-border-radius-topleft: 2px;
-webkit-border-top-left-radius: 2px;

11
dist/2.0/fineui.ie.js vendored

@ -11657,12 +11657,14 @@ if (!_global.BI) {
invalid: false,
baseCls: "",
extraCls: "",
cls: ""
cls: "",
css: null
});
},
// 覆盖父类的_constructor方法,widget不走ob的生命周期
_constructor: function () {},
_constructor: function () {
},
beforeInit: null,
@ -11751,6 +11753,9 @@ if (!_global.BI) {
if (o.data) {
this.element.data(o.data);
}
if (o.css) {
this.element.css(o.css);
}
this._children = {};
},
@ -77205,7 +77210,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
_defaultConfig: function () {
var conf = BI.NumberInterval.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-number-interval",
extraCls: "bi-number-interval" + (BI.isIE() && BI.getIEVersion() < 10) ? " hack" : "",
height: 24,
validation: "valid",
closeMin: true,

8
dist/2.0/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

11
dist/2.0/fineui.js vendored

@ -11657,12 +11657,14 @@ if (!_global.BI) {
invalid: false,
baseCls: "",
extraCls: "",
cls: ""
cls: "",
css: null
});
},
// 覆盖父类的_constructor方法,widget不走ob的生命周期
_constructor: function () {},
_constructor: function () {
},
beforeInit: null,
@ -11751,6 +11753,9 @@ if (!_global.BI) {
if (o.data) {
this.element.data(o.data);
}
if (o.css) {
this.element.css(o.css);
}
this._children = {};
},
@ -77609,7 +77614,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
_defaultConfig: function () {
var conf = BI.NumberInterval.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-number-interval",
extraCls: "bi-number-interval" + (BI.isIE() && BI.getIEVersion() < 10) ? " hack" : "",
height: 24,
validation: "valid",
closeMin: true,

8
dist/2.0/fineui.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/bundle.css vendored

@ -4420,6 +4420,11 @@ ul.ztree.zTreeDragUL {
.bi-number-editor .pull-up-font {
font-size: 12px;
}
.bi-number-interval.hack {
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
.bi-number-interval .number-interval-small-editor {
-moz-border-radius-topleft: 2px;
-webkit-border-top-left-radius: 2px;

11
dist/bundle.ie.js vendored

@ -11657,12 +11657,14 @@ if (!_global.BI) {
invalid: false,
baseCls: "",
extraCls: "",
cls: ""
cls: "",
css: null
});
},
// 覆盖父类的_constructor方法,widget不走ob的生命周期
_constructor: function () {},
_constructor: function () {
},
beforeInit: null,
@ -11751,6 +11753,9 @@ if (!_global.BI) {
if (o.data) {
this.element.data(o.data);
}
if (o.css) {
this.element.css(o.css);
}
this._children = {};
},
@ -77205,7 +77210,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
_defaultConfig: function () {
var conf = BI.NumberInterval.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-number-interval",
extraCls: "bi-number-interval" + (BI.isIE() && BI.getIEVersion() < 10) ? " hack" : "",
height: 24,
validation: "valid",
closeMin: true,

8
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

11
dist/bundle.js vendored

@ -11657,12 +11657,14 @@ if (!_global.BI) {
invalid: false,
baseCls: "",
extraCls: "",
cls: ""
cls: "",
css: null
});
},
// 覆盖父类的_constructor方法,widget不走ob的生命周期
_constructor: function () {},
_constructor: function () {
},
beforeInit: null,
@ -11751,6 +11753,9 @@ if (!_global.BI) {
if (o.data) {
this.element.data(o.data);
}
if (o.css) {
this.element.css(o.css);
}
this._children = {};
},
@ -77609,7 +77614,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
_defaultConfig: function () {
var conf = BI.NumberInterval.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-number-interval",
extraCls: "bi-number-interval" + (BI.isIE() && BI.getIEVersion() < 10) ? " hack" : "",
height: 24,
validation: "valid",
closeMin: true,

8
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

9
dist/core.js vendored

@ -11657,12 +11657,14 @@ if (!_global.BI) {
invalid: false,
baseCls: "",
extraCls: "",
cls: ""
cls: "",
css: null
});
},
// 覆盖父类的_constructor方法,widget不走ob的生命周期
_constructor: function () {},
_constructor: function () {
},
beforeInit: null,
@ -11751,6 +11753,9 @@ if (!_global.BI) {
if (o.data) {
this.element.data(o.data);
}
if (o.css) {
this.element.css(o.css);
}
this._children = {};
},

5
dist/fineui.css vendored

@ -4420,6 +4420,11 @@ ul.ztree.zTreeDragUL {
.bi-number-editor .pull-up-font {
font-size: 12px;
}
.bi-number-interval.hack {
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
.bi-number-interval .number-interval-small-editor {
-moz-border-radius-topleft: 2px;
-webkit-border-top-left-radius: 2px;

11
dist/fineui.ie.js vendored

@ -11902,12 +11902,14 @@ if (!_global.BI) {
invalid: false,
baseCls: "",
extraCls: "",
cls: ""
cls: "",
css: null
});
},
// 覆盖父类的_constructor方法,widget不走ob的生命周期
_constructor: function () {},
_constructor: function () {
},
beforeInit: null,
@ -11996,6 +11998,9 @@ if (!_global.BI) {
if (o.data) {
this.element.data(o.data);
}
if (o.css) {
this.element.css(o.css);
}
this._children = {};
},
@ -77450,7 +77455,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
_defaultConfig: function () {
var conf = BI.NumberInterval.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-number-interval",
extraCls: "bi-number-interval" + (BI.isIE() && BI.getIEVersion() < 10) ? " hack" : "",
height: 24,
validation: "valid",
closeMin: true,

6
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

11
dist/fineui.js vendored

@ -11902,12 +11902,14 @@ if (!_global.BI) {
invalid: false,
baseCls: "",
extraCls: "",
cls: ""
cls: "",
css: null
});
},
// 覆盖父类的_constructor方法,widget不走ob的生命周期
_constructor: function () {},
_constructor: function () {
},
beforeInit: null,
@ -11996,6 +11998,9 @@ if (!_global.BI) {
if (o.data) {
this.element.data(o.data);
}
if (o.css) {
this.element.css(o.css);
}
this._children = {};
},
@ -77854,7 +77859,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
_defaultConfig: function () {
var conf = BI.NumberInterval.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-number-interval",
extraCls: "bi-number-interval" + (BI.isIE() && BI.getIEVersion() < 10) ? " hack" : "",
height: 24,
validation: "valid",
closeMin: true,

8
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

11
dist/fineui_without_jquery_polyfill.js vendored

@ -11657,12 +11657,14 @@ if (!_global.BI) {
invalid: false,
baseCls: "",
extraCls: "",
cls: ""
cls: "",
css: null
});
},
// 覆盖父类的_constructor方法,widget不走ob的生命周期
_constructor: function () {},
_constructor: function () {
},
beforeInit: null,
@ -11751,6 +11753,9 @@ if (!_global.BI) {
if (o.data) {
this.element.data(o.data);
}
if (o.css) {
this.element.css(o.css);
}
this._children = {};
},
@ -60158,7 +60163,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
_defaultConfig: function () {
var conf = BI.NumberInterval.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-number-interval",
extraCls: "bi-number-interval" + (BI.isIE() && BI.getIEVersion() < 10) ? " hack" : "",
height: 24,
validation: "valid",
closeMin: true,

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

5
dist/widget.css vendored

@ -204,6 +204,11 @@
.bi-number-editor .pull-up-font {
font-size: 12px;
}
.bi-number-interval.hack {
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
.bi-number-interval .number-interval-small-editor {
-moz-border-radius-topleft: 2px;
-webkit-border-top-left-radius: 2px;

2
dist/widget.js vendored

@ -15300,7 +15300,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
_defaultConfig: function () {
var conf = BI.NumberInterval.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-number-interval",
extraCls: "bi-number-interval" + (BI.isIE() && BI.getIEVersion() < 10) ? " hack" : "",
height: 24,
validation: "valid",
closeMin: true,

9
src/core/widget.js

@ -21,12 +21,14 @@
invalid: false,
baseCls: "",
extraCls: "",
cls: ""
cls: "",
css: null
});
},
// 覆盖父类的_constructor方法,widget不走ob的生命周期
_constructor: function () {},
_constructor: function () {
},
beforeInit: null,
@ -115,6 +117,9 @@
if (o.data) {
this.element.data(o.data);
}
if (o.css) {
this.element.css(o.css);
}
this._children = {};
},

Loading…
Cancel
Save