guy 5 years ago
parent
commit
5dd5f5867c
  1. 5
      dist/2.0/fineui.css
  2. 13
      dist/2.0/fineui.ie.js
  3. 8
      dist/2.0/fineui.ie.min.js
  4. 13
      dist/2.0/fineui.js
  5. 8
      dist/2.0/fineui.min.js
  6. 5
      dist/bundle.css
  7. 13
      dist/bundle.ie.js
  8. 8
      dist/bundle.ie.min.js
  9. 13
      dist/bundle.js
  10. 8
      dist/bundle.min.js
  11. 11
      dist/core.js
  12. 5
      dist/fineui.css
  13. 13
      dist/fineui.ie.js
  14. 6
      dist/fineui.ie.min.js
  15. 13
      dist/fineui.js
  16. 8
      dist/fineui.min.js
  17. 13
      dist/fineui_without_jquery_polyfill.js
  18. 2
      dist/utils.min.js
  19. 5
      dist/widget.css
  20. 2
      dist/widget.js
  21. 11
      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;

13
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 = {};
},
@ -11830,7 +11835,7 @@ if (!_global.BI) {
lifeHook !== false && this.beforeMount && this.beforeMount();
this._isMounted = true;
this._mountChildren && this._mountChildren();
if(BI.isNotNull(this._parent)) {
if (BI.isNotNull(this._parent)) {
!this._parent.isEnabled() && this._setEnable(false);
!this._parent.isValid() && this._setValid(false);
}
@ -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

13
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 = {};
},
@ -11830,7 +11835,7 @@ if (!_global.BI) {
lifeHook !== false && this.beforeMount && this.beforeMount();
this._isMounted = true;
this._mountChildren && this._mountChildren();
if(BI.isNotNull(this._parent)) {
if (BI.isNotNull(this._parent)) {
!this._parent.isEnabled() && this._setEnable(false);
!this._parent.isValid() && this._setValid(false);
}
@ -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;

13
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 = {};
},
@ -11830,7 +11835,7 @@ if (!_global.BI) {
lifeHook !== false && this.beforeMount && this.beforeMount();
this._isMounted = true;
this._mountChildren && this._mountChildren();
if(BI.isNotNull(this._parent)) {
if (BI.isNotNull(this._parent)) {
!this._parent.isEnabled() && this._setEnable(false);
!this._parent.isValid() && this._setValid(false);
}
@ -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

13
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 = {};
},
@ -11830,7 +11835,7 @@ if (!_global.BI) {
lifeHook !== false && this.beforeMount && this.beforeMount();
this._isMounted = true;
this._mountChildren && this._mountChildren();
if(BI.isNotNull(this._parent)) {
if (BI.isNotNull(this._parent)) {
!this._parent.isEnabled() && this._setEnable(false);
!this._parent.isValid() && this._setValid(false);
}
@ -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

11
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 = {};
},
@ -11830,7 +11835,7 @@ if (!_global.BI) {
lifeHook !== false && this.beforeMount && this.beforeMount();
this._isMounted = true;
this._mountChildren && this._mountChildren();
if(BI.isNotNull(this._parent)) {
if (BI.isNotNull(this._parent)) {
!this._parent.isEnabled() && this._setEnable(false);
!this._parent.isValid() && this._setValid(false);
}

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;

13
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 = {};
},
@ -12075,7 +12080,7 @@ if (!_global.BI) {
lifeHook !== false && this.beforeMount && this.beforeMount();
this._isMounted = true;
this._mountChildren && this._mountChildren();
if(BI.isNotNull(this._parent)) {
if (BI.isNotNull(this._parent)) {
!this._parent.isEnabled() && this._setEnable(false);
!this._parent.isValid() && this._setValid(false);
}
@ -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

13
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 = {};
},
@ -12075,7 +12080,7 @@ if (!_global.BI) {
lifeHook !== false && this.beforeMount && this.beforeMount();
this._isMounted = true;
this._mountChildren && this._mountChildren();
if(BI.isNotNull(this._parent)) {
if (BI.isNotNull(this._parent)) {
!this._parent.isEnabled() && this._setEnable(false);
!this._parent.isValid() && this._setValid(false);
}
@ -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

13
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 = {};
},
@ -11830,7 +11835,7 @@ if (!_global.BI) {
lifeHook !== false && this.beforeMount && this.beforeMount();
this._isMounted = true;
this._mountChildren && this._mountChildren();
if(BI.isNotNull(this._parent)) {
if (BI.isNotNull(this._parent)) {
!this._parent.isEnabled() && this._setEnable(false);
!this._parent.isValid() && this._setValid(false);
}
@ -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,

11
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 = {};
},
@ -194,7 +199,7 @@
lifeHook !== false && this.beforeMount && this.beforeMount();
this._isMounted = true;
this._mountChildren && this._mountChildren();
if(BI.isNotNull(this._parent)) {
if (BI.isNotNull(this._parent)) {
!this._parent.isEnabled() && this._setEnable(false);
!this._parent.isValid() && this._setValid(false);
}

Loading…
Cancel
Save