Browse Source

auto upgrade version to 2.0.20210929160607

es6
data 3 years ago
parent
commit
182c43ed13
  1. 2
      dist/2.0/fineui.css
  2. 4
      dist/2.0/fineui.ie.min.js
  3. 2
      dist/2.0/fineui.ie.min.js.map
  4. 52
      dist/2.0/fineui.js
  5. 2
      dist/2.0/fineui.js.map
  6. 2
      dist/2.0/fineui.min.css
  7. 4
      dist/2.0/fineui.min.js
  8. 2
      dist/2.0/fineui.min.js.map
  9. 2
      dist/2.0/fineui.modern.min.css
  10. 2
      dist/2.0/fineui.modern.min.js
  11. 2
      dist/2.0/fineui_without_normalize.css
  12. 2
      dist/2.0/fineui_without_normalize.min.css
  13. 2
      dist/core.css
  14. 52
      dist/core.js
  15. 2
      dist/core.js.map
  16. 2
      dist/demo.css
  17. 52
      dist/demo.js
  18. 2
      dist/demo.js.map
  19. 2
      dist/fineui.css
  20. 4
      dist/fineui.ie.min.js
  21. 2
      dist/fineui.ie.min.js.map
  22. 52
      dist/fineui.js
  23. 2
      dist/fineui.js.map
  24. 2
      dist/fineui.min.css
  25. 4
      dist/fineui.min.js
  26. 2
      dist/fineui.min.js.map
  27. 2
      dist/fineui.modern.min.css
  28. 2
      dist/fineui.modern.min.js
  29. 2
      dist/fineui.proxy.css
  30. 52
      dist/fineui.proxy.js
  31. 2
      dist/fineui.proxy.js.map
  32. 2
      dist/fineui.proxy.min.css
  33. 4
      dist/fineui.proxy.min.js
  34. 2
      dist/fineui.proxy.min.js.map
  35. 52
      dist/fineui_without_jquery_polyfill.js
  36. 2
      dist/fineui_without_jquery_polyfill.js.map
  37. 2
      dist/fineui_without_normalize.min.css
  38. 2
      dist/font.css
  39. 2
      dist/resource.css
  40. 2
      dist/utils.js
  41. 2
      dist/utils.min.js
  42. 2
      package.json

2
dist/2.0/fineui.css vendored

File diff suppressed because one or more lines are too long

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

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui.ie.min.js.map vendored

File diff suppressed because one or more lines are too long

52
dist/2.0/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-9-29 14:40:58 */
/*! time: 2021-9-29 16:04:41 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -24645,19 +24645,24 @@ BI.shortcut("bi.collection_view", BI.CollectionView);
if (isHide === false) {
return;
}
this._hideView();
this._hideView(e);
return true;
},
_hideView: function () {
_hideView: function (e) {
this.fireEvent(BI.Combo.EVENT_BEFORE_HIDEVIEW);
if (this.options.destroyWhenHide === true) {
this.popupView && this.popupView.destroy();
this.popupView = null;
this._rendered = false;
if (!e || !this.combo.element.__isMouseInBounds__(e)) {
this.element.removeClass(this.options.hoverClass);
}
} else {
this.popupView && this.popupView.invisible();
}
this.element.removeClass(this.options.comboClass);
delete needHideWhenAnotherComboOpen[this.getName()];
@ -24884,8 +24889,8 @@ BI.shortcut("bi.collection_view", BI.CollectionView);
}
},
hideView: function () {
this._hideView();
hideView: function (e) {
this._hideView(e);
},
getView: function () {
@ -49244,7 +49249,7 @@ BI.DynamicDateCombo = BI.inherit(BI.Single, {
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: opts.container,
ref: function () {
self.combo = this;
@ -50310,7 +50315,7 @@ BI.DynamicDateTimeCombo = BI.inherit(BI.Single, {
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
destroyWhenHide: true,
container: opts.container,
ref: function () {
@ -53216,7 +53221,7 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
return {
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
container: o.container,
destroyWhenHide: o.destroyWhenHide,
adjustLength: 2,
@ -54491,7 +54496,7 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
return {
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
container: o.container,
destroyWhenHide: o.destroyWhenHide,
adjustLength: 2,
@ -56294,7 +56299,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -56775,7 +56780,7 @@ BI.MultiSelectNoBarCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -57286,7 +57291,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
el: this.trigger,
adjustLength: 1,
@ -57774,7 +57779,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -61861,7 +61866,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -62240,7 +62245,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -62635,7 +62640,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -64617,7 +64622,7 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -69921,7 +69926,7 @@ BI.shortcut("bi.down_list_select_text_trigger", BI.DownListSelectTextTrigger);
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: opts.container,
toggle: false,
isNeedAdjustHeight: opts.isNeedAdjustHeight,
@ -71160,7 +71165,7 @@ BI.shortcut("bi.static_year_card", BI.StaticYearCard);
BI.DynamicYearCombo = BI.inherit(BI.Widget, {
props: {
baseCls: "bi-year-combo bi-border bi-border-radius bi-focus-shadow",
baseCls: "bi-year-combo",
behaviors: {},
minDate: "1900-01-01", // 最小日期
maxDate: "2099-12-31", // 最大日期
@ -71170,15 +71175,13 @@ BI.DynamicYearCombo = BI.inherit(BI.Widget, {
_init: function () {
var self = this, o = this.options;
o.height -= 2;
BI.isNumeric(o.width) && (o.width -= 2);
BI.DynamicYearCombo.superclass._init.apply(this, arguments);
this.storeValue = o.value;
this.trigger = BI.createWidget({
type: "bi.dynamic_year_trigger",
min: o.minDate,
max: o.maxDate,
height: o.height,
height: o.height - 2,
value: o.value || ""
});
this.trigger.on(BI.DynamicYearTrigger.EVENT_KEY_DOWN, function () {
@ -71220,6 +71223,7 @@ BI.DynamicYearCombo = BI.inherit(BI.Widget, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: false,
isNeedAdjustWidth: false,
@ -72443,7 +72447,7 @@ BI.DynamicYearMonthCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: o.isNeedAdjustHeight,
isNeedAdjustWidth: o.isNeedAdjustWidth,
@ -73759,7 +73763,7 @@ BI.DynamicYearQuarterCombo = BI.inherit(BI.Widget, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: o.isNeedAdjustHeight,
isNeedAdjustWidth: o.isNeedAdjustWidth,

2
dist/2.0/fineui.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui.min.css vendored

File diff suppressed because one or more lines are too long

4
dist/2.0/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui.min.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui.modern.min.css vendored

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui.modern.min.js vendored

@ -1,2 +1,2 @@
/*! time: 2021-9-29 14:40:58 */
/*! time: 2021-9-29 16:04:41 */
!function(e){var n={};function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:r})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,n){if(1&n&&(e=t(e)),8&n)return e;if(4&n&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(t.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&n&&"string"!=typeof e)for(var o in e)t.d(r,o,function(n){return e[n]}.bind(null,o));return r},t.n=function(e){var n=e&&e.__esModule?function(){return e["default"]}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},t.p="",t(t.s=1451)}({1193:function(e,n,t){},1451:function(e,n,t){t(1193),t(1452),t(1453),t(1454),t(1455),e.exports=t(1456)},1452:function(e,n,t){},1453:function(e,n,t){},1454:function(e,n,t){},1455:function(e,n,t){},1456:function(e,n,t){}});

2
dist/2.0/fineui_without_normalize.css vendored

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui_without_normalize.min.css vendored

File diff suppressed because one or more lines are too long

2
dist/core.css vendored

File diff suppressed because one or more lines are too long

52
dist/core.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-9-29 14:40:58 */
/*! time: 2021-9-29 16:04:41 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -24645,19 +24645,24 @@ BI.shortcut("bi.collection_view", BI.CollectionView);
if (isHide === false) {
return;
}
this._hideView();
this._hideView(e);
return true;
},
_hideView: function () {
_hideView: function (e) {
this.fireEvent(BI.Combo.EVENT_BEFORE_HIDEVIEW);
if (this.options.destroyWhenHide === true) {
this.popupView && this.popupView.destroy();
this.popupView = null;
this._rendered = false;
if (!e || !this.combo.element.__isMouseInBounds__(e)) {
this.element.removeClass(this.options.hoverClass);
}
} else {
this.popupView && this.popupView.invisible();
}
this.element.removeClass(this.options.comboClass);
delete needHideWhenAnotherComboOpen[this.getName()];
@ -24884,8 +24889,8 @@ BI.shortcut("bi.collection_view", BI.CollectionView);
}
},
hideView: function () {
this._hideView();
hideView: function (e) {
this._hideView(e);
},
getView: function () {
@ -49244,7 +49249,7 @@ BI.DynamicDateCombo = BI.inherit(BI.Single, {
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: opts.container,
ref: function () {
self.combo = this;
@ -50310,7 +50315,7 @@ BI.DynamicDateTimeCombo = BI.inherit(BI.Single, {
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
destroyWhenHide: true,
container: opts.container,
ref: function () {
@ -53216,7 +53221,7 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
return {
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
container: o.container,
destroyWhenHide: o.destroyWhenHide,
adjustLength: 2,
@ -54491,7 +54496,7 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
return {
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
container: o.container,
destroyWhenHide: o.destroyWhenHide,
adjustLength: 2,
@ -56294,7 +56299,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -56775,7 +56780,7 @@ BI.MultiSelectNoBarCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -57286,7 +57291,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
el: this.trigger,
adjustLength: 1,
@ -57774,7 +57779,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -61861,7 +61866,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -62240,7 +62245,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -62635,7 +62640,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -64617,7 +64622,7 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -69921,7 +69926,7 @@ BI.shortcut("bi.down_list_select_text_trigger", BI.DownListSelectTextTrigger);
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: opts.container,
toggle: false,
isNeedAdjustHeight: opts.isNeedAdjustHeight,
@ -71160,7 +71165,7 @@ BI.shortcut("bi.static_year_card", BI.StaticYearCard);
BI.DynamicYearCombo = BI.inherit(BI.Widget, {
props: {
baseCls: "bi-year-combo bi-border bi-border-radius bi-focus-shadow",
baseCls: "bi-year-combo",
behaviors: {},
minDate: "1900-01-01", // 最小日期
maxDate: "2099-12-31", // 最大日期
@ -71170,15 +71175,13 @@ BI.DynamicYearCombo = BI.inherit(BI.Widget, {
_init: function () {
var self = this, o = this.options;
o.height -= 2;
BI.isNumeric(o.width) && (o.width -= 2);
BI.DynamicYearCombo.superclass._init.apply(this, arguments);
this.storeValue = o.value;
this.trigger = BI.createWidget({
type: "bi.dynamic_year_trigger",
min: o.minDate,
max: o.maxDate,
height: o.height,
height: o.height - 2,
value: o.value || ""
});
this.trigger.on(BI.DynamicYearTrigger.EVENT_KEY_DOWN, function () {
@ -71220,6 +71223,7 @@ BI.DynamicYearCombo = BI.inherit(BI.Widget, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: false,
isNeedAdjustWidth: false,
@ -72443,7 +72447,7 @@ BI.DynamicYearMonthCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: o.isNeedAdjustHeight,
isNeedAdjustWidth: o.isNeedAdjustWidth,
@ -73759,7 +73763,7 @@ BI.DynamicYearQuarterCombo = BI.inherit(BI.Widget, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: o.isNeedAdjustHeight,
isNeedAdjustWidth: o.isNeedAdjustWidth,

2
dist/core.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/demo.css vendored

File diff suppressed because one or more lines are too long

52
dist/demo.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-9-29 14:40:58 */
/*! time: 2021-9-29 16:04:41 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -24645,19 +24645,24 @@ BI.shortcut("bi.collection_view", BI.CollectionView);
if (isHide === false) {
return;
}
this._hideView();
this._hideView(e);
return true;
},
_hideView: function () {
_hideView: function (e) {
this.fireEvent(BI.Combo.EVENT_BEFORE_HIDEVIEW);
if (this.options.destroyWhenHide === true) {
this.popupView && this.popupView.destroy();
this.popupView = null;
this._rendered = false;
if (!e || !this.combo.element.__isMouseInBounds__(e)) {
this.element.removeClass(this.options.hoverClass);
}
} else {
this.popupView && this.popupView.invisible();
}
this.element.removeClass(this.options.comboClass);
delete needHideWhenAnotherComboOpen[this.getName()];
@ -24884,8 +24889,8 @@ BI.shortcut("bi.collection_view", BI.CollectionView);
}
},
hideView: function () {
this._hideView();
hideView: function (e) {
this._hideView(e);
},
getView: function () {
@ -49244,7 +49249,7 @@ BI.DynamicDateCombo = BI.inherit(BI.Single, {
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: opts.container,
ref: function () {
self.combo = this;
@ -50310,7 +50315,7 @@ BI.DynamicDateTimeCombo = BI.inherit(BI.Single, {
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
destroyWhenHide: true,
container: opts.container,
ref: function () {
@ -53216,7 +53221,7 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
return {
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
container: o.container,
destroyWhenHide: o.destroyWhenHide,
adjustLength: 2,
@ -54491,7 +54496,7 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
return {
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
container: o.container,
destroyWhenHide: o.destroyWhenHide,
adjustLength: 2,
@ -56294,7 +56299,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -56775,7 +56780,7 @@ BI.MultiSelectNoBarCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -57286,7 +57291,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
el: this.trigger,
adjustLength: 1,
@ -57774,7 +57779,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -61861,7 +61866,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -62240,7 +62245,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -62635,7 +62640,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -64617,7 +64622,7 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -69921,7 +69926,7 @@ BI.shortcut("bi.down_list_select_text_trigger", BI.DownListSelectTextTrigger);
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: opts.container,
toggle: false,
isNeedAdjustHeight: opts.isNeedAdjustHeight,
@ -71160,7 +71165,7 @@ BI.shortcut("bi.static_year_card", BI.StaticYearCard);
BI.DynamicYearCombo = BI.inherit(BI.Widget, {
props: {
baseCls: "bi-year-combo bi-border bi-border-radius bi-focus-shadow",
baseCls: "bi-year-combo",
behaviors: {},
minDate: "1900-01-01", // 最小日期
maxDate: "2099-12-31", // 最大日期
@ -71170,15 +71175,13 @@ BI.DynamicYearCombo = BI.inherit(BI.Widget, {
_init: function () {
var self = this, o = this.options;
o.height -= 2;
BI.isNumeric(o.width) && (o.width -= 2);
BI.DynamicYearCombo.superclass._init.apply(this, arguments);
this.storeValue = o.value;
this.trigger = BI.createWidget({
type: "bi.dynamic_year_trigger",
min: o.minDate,
max: o.maxDate,
height: o.height,
height: o.height - 2,
value: o.value || ""
});
this.trigger.on(BI.DynamicYearTrigger.EVENT_KEY_DOWN, function () {
@ -71220,6 +71223,7 @@ BI.DynamicYearCombo = BI.inherit(BI.Widget, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: false,
isNeedAdjustWidth: false,
@ -72443,7 +72447,7 @@ BI.DynamicYearMonthCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: o.isNeedAdjustHeight,
isNeedAdjustWidth: o.isNeedAdjustWidth,
@ -73759,7 +73763,7 @@ BI.DynamicYearQuarterCombo = BI.inherit(BI.Widget, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: o.isNeedAdjustHeight,
isNeedAdjustWidth: o.isNeedAdjustWidth,

2
dist/demo.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.css vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.ie.min.js.map vendored

File diff suppressed because one or more lines are too long

52
dist/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-9-29 14:40:58 */
/*! time: 2021-9-29 16:04:41 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -24645,19 +24645,24 @@ BI.shortcut("bi.collection_view", BI.CollectionView);
if (isHide === false) {
return;
}
this._hideView();
this._hideView(e);
return true;
},
_hideView: function () {
_hideView: function (e) {
this.fireEvent(BI.Combo.EVENT_BEFORE_HIDEVIEW);
if (this.options.destroyWhenHide === true) {
this.popupView && this.popupView.destroy();
this.popupView = null;
this._rendered = false;
if (!e || !this.combo.element.__isMouseInBounds__(e)) {
this.element.removeClass(this.options.hoverClass);
}
} else {
this.popupView && this.popupView.invisible();
}
this.element.removeClass(this.options.comboClass);
delete needHideWhenAnotherComboOpen[this.getName()];
@ -24884,8 +24889,8 @@ BI.shortcut("bi.collection_view", BI.CollectionView);
}
},
hideView: function () {
this._hideView();
hideView: function (e) {
this._hideView(e);
},
getView: function () {
@ -49244,7 +49249,7 @@ BI.DynamicDateCombo = BI.inherit(BI.Single, {
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: opts.container,
ref: function () {
self.combo = this;
@ -50310,7 +50315,7 @@ BI.DynamicDateTimeCombo = BI.inherit(BI.Single, {
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
destroyWhenHide: true,
container: opts.container,
ref: function () {
@ -53216,7 +53221,7 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
return {
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
container: o.container,
destroyWhenHide: o.destroyWhenHide,
adjustLength: 2,
@ -54491,7 +54496,7 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
return {
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
container: o.container,
destroyWhenHide: o.destroyWhenHide,
adjustLength: 2,
@ -56294,7 +56299,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -56775,7 +56780,7 @@ BI.MultiSelectNoBarCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -57286,7 +57291,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
el: this.trigger,
adjustLength: 1,
@ -57774,7 +57779,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -61861,7 +61866,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -62240,7 +62245,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -62635,7 +62640,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -64617,7 +64622,7 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -69921,7 +69926,7 @@ BI.shortcut("bi.down_list_select_text_trigger", BI.DownListSelectTextTrigger);
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: opts.container,
toggle: false,
isNeedAdjustHeight: opts.isNeedAdjustHeight,
@ -71160,7 +71165,7 @@ BI.shortcut("bi.static_year_card", BI.StaticYearCard);
BI.DynamicYearCombo = BI.inherit(BI.Widget, {
props: {
baseCls: "bi-year-combo bi-border bi-border-radius bi-focus-shadow",
baseCls: "bi-year-combo",
behaviors: {},
minDate: "1900-01-01", // 最小日期
maxDate: "2099-12-31", // 最大日期
@ -71170,15 +71175,13 @@ BI.DynamicYearCombo = BI.inherit(BI.Widget, {
_init: function () {
var self = this, o = this.options;
o.height -= 2;
BI.isNumeric(o.width) && (o.width -= 2);
BI.DynamicYearCombo.superclass._init.apply(this, arguments);
this.storeValue = o.value;
this.trigger = BI.createWidget({
type: "bi.dynamic_year_trigger",
min: o.minDate,
max: o.maxDate,
height: o.height,
height: o.height - 2,
value: o.value || ""
});
this.trigger.on(BI.DynamicYearTrigger.EVENT_KEY_DOWN, function () {
@ -71220,6 +71223,7 @@ BI.DynamicYearCombo = BI.inherit(BI.Widget, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: false,
isNeedAdjustWidth: false,
@ -72443,7 +72447,7 @@ BI.DynamicYearMonthCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: o.isNeedAdjustHeight,
isNeedAdjustWidth: o.isNeedAdjustWidth,
@ -73759,7 +73763,7 @@ BI.DynamicYearQuarterCombo = BI.inherit(BI.Widget, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: o.isNeedAdjustHeight,
isNeedAdjustWidth: o.isNeedAdjustWidth,

2
dist/fineui.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.min.css vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.min.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.modern.min.css vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.modern.min.js vendored

@ -1,2 +1,2 @@
/*! time: 2021-9-29 14:40:58 */
/*! time: 2021-9-29 16:04:41 */
!function(e){var n={};function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:r})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,n){if(1&n&&(e=t(e)),8&n)return e;if(4&n&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(t.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&n&&"string"!=typeof e)for(var o in e)t.d(r,o,function(n){return e[n]}.bind(null,o));return r},t.n=function(e){var n=e&&e.__esModule?function(){return e["default"]}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},t.p="",t(t.s=1442)}({1193:function(e,n,t){},1442:function(e,n,t){t(1193),t(1443),t(1444),t(1445),t(1446),e.exports=t(1447)},1443:function(e,n,t){},1444:function(e,n,t){},1445:function(e,n,t){},1446:function(e,n,t){},1447:function(e,n,t){}});

2
dist/fineui.proxy.css vendored

File diff suppressed because one or more lines are too long

52
dist/fineui.proxy.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-9-29 14:40:58 */
/*! time: 2021-9-29 16:04:41 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -22106,19 +22106,24 @@ BI.shortcut("bi.collection_view", BI.CollectionView);
if (isHide === false) {
return;
}
this._hideView();
this._hideView(e);
return true;
},
_hideView: function () {
_hideView: function (e) {
this.fireEvent(BI.Combo.EVENT_BEFORE_HIDEVIEW);
if (this.options.destroyWhenHide === true) {
this.popupView && this.popupView.destroy();
this.popupView = null;
this._rendered = false;
if (!e || !this.combo.element.__isMouseInBounds__(e)) {
this.element.removeClass(this.options.hoverClass);
}
} else {
this.popupView && this.popupView.invisible();
}
this.element.removeClass(this.options.comboClass);
delete needHideWhenAnotherComboOpen[this.getName()];
@ -22345,8 +22350,8 @@ BI.shortcut("bi.collection_view", BI.CollectionView);
}
},
hideView: function () {
this._hideView();
hideView: function (e) {
this._hideView(e);
},
getView: function () {
@ -46705,7 +46710,7 @@ BI.DynamicDateCombo = BI.inherit(BI.Single, {
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: opts.container,
ref: function () {
self.combo = this;
@ -47771,7 +47776,7 @@ BI.DynamicDateTimeCombo = BI.inherit(BI.Single, {
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
destroyWhenHide: true,
container: opts.container,
ref: function () {
@ -50677,7 +50682,7 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
return {
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
container: o.container,
destroyWhenHide: o.destroyWhenHide,
adjustLength: 2,
@ -51952,7 +51957,7 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
return {
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
container: o.container,
destroyWhenHide: o.destroyWhenHide,
adjustLength: 2,
@ -53755,7 +53760,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -54236,7 +54241,7 @@ BI.MultiSelectNoBarCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -54747,7 +54752,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
el: this.trigger,
adjustLength: 1,
@ -55235,7 +55240,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -59322,7 +59327,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -59701,7 +59706,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -60096,7 +60101,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -62078,7 +62083,7 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -67382,7 +67387,7 @@ BI.shortcut("bi.down_list_select_text_trigger", BI.DownListSelectTextTrigger);
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: opts.container,
toggle: false,
isNeedAdjustHeight: opts.isNeedAdjustHeight,
@ -68621,7 +68626,7 @@ BI.shortcut("bi.static_year_card", BI.StaticYearCard);
BI.DynamicYearCombo = BI.inherit(BI.Widget, {
props: {
baseCls: "bi-year-combo bi-border bi-border-radius bi-focus-shadow",
baseCls: "bi-year-combo",
behaviors: {},
minDate: "1900-01-01", // 最小日期
maxDate: "2099-12-31", // 最大日期
@ -68631,15 +68636,13 @@ BI.DynamicYearCombo = BI.inherit(BI.Widget, {
_init: function () {
var self = this, o = this.options;
o.height -= 2;
BI.isNumeric(o.width) && (o.width -= 2);
BI.DynamicYearCombo.superclass._init.apply(this, arguments);
this.storeValue = o.value;
this.trigger = BI.createWidget({
type: "bi.dynamic_year_trigger",
min: o.minDate,
max: o.maxDate,
height: o.height,
height: o.height - 2,
value: o.value || ""
});
this.trigger.on(BI.DynamicYearTrigger.EVENT_KEY_DOWN, function () {
@ -68681,6 +68684,7 @@ BI.DynamicYearCombo = BI.inherit(BI.Widget, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: false,
isNeedAdjustWidth: false,
@ -69904,7 +69908,7 @@ BI.DynamicYearMonthCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: o.isNeedAdjustHeight,
isNeedAdjustWidth: o.isNeedAdjustWidth,
@ -71220,7 +71224,7 @@ BI.DynamicYearQuarterCombo = BI.inherit(BI.Widget, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: o.isNeedAdjustHeight,
isNeedAdjustWidth: o.isNeedAdjustWidth,

2
dist/fineui.proxy.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.proxy.min.css vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.proxy.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.proxy.min.js.map vendored

File diff suppressed because one or more lines are too long

52
dist/fineui_without_jquery_polyfill.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-9-29 14:40:58 */
/*! time: 2021-9-29 16:04:41 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -21731,19 +21731,24 @@ BI.shortcut("bi.collection_view", BI.CollectionView);
if (isHide === false) {
return;
}
this._hideView();
this._hideView(e);
return true;
},
_hideView: function () {
_hideView: function (e) {
this.fireEvent(BI.Combo.EVENT_BEFORE_HIDEVIEW);
if (this.options.destroyWhenHide === true) {
this.popupView && this.popupView.destroy();
this.popupView = null;
this._rendered = false;
if (!e || !this.combo.element.__isMouseInBounds__(e)) {
this.element.removeClass(this.options.hoverClass);
}
} else {
this.popupView && this.popupView.invisible();
}
this.element.removeClass(this.options.comboClass);
delete needHideWhenAnotherComboOpen[this.getName()];
@ -21970,8 +21975,8 @@ BI.shortcut("bi.collection_view", BI.CollectionView);
}
},
hideView: function () {
this._hideView();
hideView: function (e) {
this._hideView(e);
},
getView: function () {
@ -46330,7 +46335,7 @@ BI.DynamicDateCombo = BI.inherit(BI.Single, {
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: opts.container,
ref: function () {
self.combo = this;
@ -47396,7 +47401,7 @@ BI.DynamicDateTimeCombo = BI.inherit(BI.Single, {
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
destroyWhenHide: true,
container: opts.container,
ref: function () {
@ -50302,7 +50307,7 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
return {
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
container: o.container,
destroyWhenHide: o.destroyWhenHide,
adjustLength: 2,
@ -51577,7 +51582,7 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
return {
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
container: o.container,
destroyWhenHide: o.destroyWhenHide,
adjustLength: 2,
@ -53380,7 +53385,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -53861,7 +53866,7 @@ BI.MultiSelectNoBarCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -54372,7 +54377,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
el: this.trigger,
adjustLength: 1,
@ -54860,7 +54865,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -58947,7 +58952,7 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -59326,7 +59331,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -59721,7 +59726,7 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: !o.allowEdit,
container: o.container,
el: this.trigger,
@ -61703,7 +61708,7 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-focus-shadow bi-border-radius",
cls: "bi-border bi-border-radius",
toggle: false,
container: o.container,
el: this.trigger,
@ -67007,7 +67012,7 @@ BI.shortcut("bi.down_list_select_text_trigger", BI.DownListSelectTextTrigger);
items: [{
el: {
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: opts.container,
toggle: false,
isNeedAdjustHeight: opts.isNeedAdjustHeight,
@ -68246,7 +68251,7 @@ BI.shortcut("bi.static_year_card", BI.StaticYearCard);
BI.DynamicYearCombo = BI.inherit(BI.Widget, {
props: {
baseCls: "bi-year-combo bi-border bi-border-radius bi-focus-shadow",
baseCls: "bi-year-combo",
behaviors: {},
minDate: "1900-01-01", // 最小日期
maxDate: "2099-12-31", // 最大日期
@ -68256,15 +68261,13 @@ BI.DynamicYearCombo = BI.inherit(BI.Widget, {
_init: function () {
var self = this, o = this.options;
o.height -= 2;
BI.isNumeric(o.width) && (o.width -= 2);
BI.DynamicYearCombo.superclass._init.apply(this, arguments);
this.storeValue = o.value;
this.trigger = BI.createWidget({
type: "bi.dynamic_year_trigger",
min: o.minDate,
max: o.maxDate,
height: o.height,
height: o.height - 2,
value: o.value || ""
});
this.trigger.on(BI.DynamicYearTrigger.EVENT_KEY_DOWN, function () {
@ -68306,6 +68309,7 @@ BI.DynamicYearCombo = BI.inherit(BI.Widget, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: false,
isNeedAdjustWidth: false,
@ -69529,7 +69533,7 @@ BI.DynamicYearMonthCombo = BI.inherit(BI.Single, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: o.isNeedAdjustHeight,
isNeedAdjustWidth: o.isNeedAdjustWidth,
@ -70845,7 +70849,7 @@ BI.DynamicYearQuarterCombo = BI.inherit(BI.Widget, {
this.combo = BI.createWidget({
type: "bi.combo",
cls: "bi-border bi-border-radius bi-focus-shadow",
cls: "bi-border bi-border-radius",
container: o.container,
isNeedAdjustHeight: o.isNeedAdjustHeight,
isNeedAdjustWidth: o.isNeedAdjustWidth,

2
dist/fineui_without_jquery_polyfill.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/fineui_without_normalize.min.css vendored

File diff suppressed because one or more lines are too long

2
dist/font.css vendored

File diff suppressed because one or more lines are too long

2
dist/resource.css vendored

File diff suppressed because one or more lines are too long

2
dist/utils.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-9-29 14:40:58 */
/*! time: 2021-9-29 16:04:41 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

2
package.json

@ -1,6 +1,6 @@
{
"name": "fineui",
"version": "2.0.20210929144233",
"version": "2.0.20210929160607",
"description": "fineui",
"main": "dist/fineui.min.js",
"types": "dist/lib/index.d.ts",

Loading…
Cancel
Save