Browse Source

auto upgrade version to 2.0.20210621140215

es6
data 3 years ago
parent
commit
e704ae6ef4
  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. 56
      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_without_normalize.css
  10. 2
      dist/2.0/fineui_without_normalize.min.css
  11. 2
      dist/core.css
  12. 56
      dist/core.js
  13. 2
      dist/core.js.map
  14. 2
      dist/demo.css
  15. 56
      dist/demo.js
  16. 2
      dist/demo.js.map
  17. 2
      dist/fineui.css
  18. 4
      dist/fineui.ie.min.js
  19. 2
      dist/fineui.ie.min.js.map
  20. 56
      dist/fineui.js
  21. 2
      dist/fineui.js.map
  22. 2
      dist/fineui.min.css
  23. 4
      dist/fineui.min.js
  24. 2
      dist/fineui.min.js.map
  25. 2
      dist/fineui.proxy.css
  26. 56
      dist/fineui.proxy.js
  27. 2
      dist/fineui.proxy.js.map
  28. 2
      dist/fineui.proxy.min.css
  29. 4
      dist/fineui.proxy.min.js
  30. 2
      dist/fineui.proxy.min.js.map
  31. 56
      dist/fineui_without_jquery_polyfill.js
  32. 2
      dist/fineui_without_jquery_polyfill.js.map
  33. 2
      dist/font.css
  34. 2
      dist/lib/component/treevaluechooser/combo.listtreevaluechooser.d.ts
  35. 2
      dist/lib/component/treevaluechooser/combo.treevaluechooser.d.ts
  36. 2
      dist/lib/component/treevaluechooser/combo.treevaluechooser.insert.d.ts
  37. 1
      dist/lib/widget/multilayerselecttree/multilayerselecttree.combo.d.ts
  38. 1
      dist/lib/widget/multilayersingletree/multilayersingletree.combo.d.ts
  39. 2
      dist/lib/widget/multitree/multi.tree.combo.d.ts
  40. 2
      dist/lib/widget/multitree/multi.tree.insert.combo.d.ts
  41. 2
      dist/lib/widget/multitree/multi.tree.list.combo.d.ts
  42. 2
      dist/resource.css
  43. 2
      dist/utils.js
  44. 2
      dist/utils.min.js
  45. 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

56
dist/2.0/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-21 11:50:17 */
/*! time: 2021-6-21 14:00:19 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -42922,6 +42922,10 @@ BI.TextTrigger = BI.inherit(BI.Trigger, {
});
},
getTextor: function() {
return this.text;
},
setTextCls: function(cls) {
var o = this.options;
var oldCls = o.textCls;
@ -43010,6 +43014,10 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
this.trigger.setTipType(v);
},
getTextor: function() {
return this.trigger.getTextor();
},
populate: function (items) {
this.options.items = items;
}
@ -50674,11 +50682,14 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
},
_getSyncConfig: function () {
var o = this.options;
var o = this.options, self = this;
var baseConfig = this._getBaseConfig();
return BI.extend(baseConfig, o.allowEdit ? this._getSearchConfig() : {
el: {
type: "bi.single_tree_trigger",
ref: function(_ref) {
self.textTrigger = _ref;
},
text: o.text,
height: o.height,
items: o.items,
@ -50701,6 +50712,10 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
return this.combo.getValue();
},
getSearcher: function () {
return this.trigger ? this.trigger.getSearcher() : this.textTrigger.getTextor();
},
populate: function (items) {
this.combo.populate(items);
}
@ -51941,11 +51956,14 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
},
_getSyncConfig: function () {
var o = this.options;
var o = this.options, self = this;
var baseConfig = this._getBaseConfig();
return BI.extend(baseConfig, o.allowEdit ? this._getSearchConfig() : {
el: {
type: "bi.single_tree_trigger",
ref: function(_ref) {
self.textTrigger = _ref;
},
text: o.text,
height: o.height,
items: o.items,
@ -51959,6 +51977,10 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
return BI.extend(config, this._getSearchConfig());
},
getSearcher: function () {
return this.trigger ? this.trigger.getSearcher() : this.textTrigger.getTextor();
},
setValue: function (v) {
v = BI.isArray(v) ? v : [v];
this.combo.setValue(v);
@ -59380,6 +59402,10 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
});
},
getSearcher: function () {
return this.trigger.getSearcher();
},
getValue: function () {
return BI.deepClone(this.storeValue.value);
},
@ -59737,6 +59763,10 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
this.combo.hideView();
},
getSearcher: function () {
return this.trigger.getSearcher();
},
showView: function () {
this.combo.showView();
},
@ -60144,6 +60174,10 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
this.combo.hideView();
},
getSearcher: function () {
return this.trigger.getSearcher();
},
setValue: function (v) {
this.storeValue.value = v || [];
this.combo.setValue({
@ -66808,6 +66842,10 @@ BI.SingleTreeTrigger = BI.inherit(BI.Trigger, {
return this.options.value || [];
},
getTextor: function() {
return this.trigger.getTextor();
},
populate: function (items) {
this.trigger.populate(items);
}
@ -73412,6 +73450,10 @@ BI.ListTreeValueChooserInsertCombo = BI.inherit(BI.AbstractListTreeValueChooser,
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},
@ -73527,6 +73569,10 @@ BI.TreeValueChooserInsertCombo = BI.inherit(BI.AbstractTreeValueChooser, {
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},
@ -73642,6 +73688,10 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, {
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},

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_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

56
dist/core.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-21 11:50:17 */
/*! time: 2021-6-21 14:00:19 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -42922,6 +42922,10 @@ BI.TextTrigger = BI.inherit(BI.Trigger, {
});
},
getTextor: function() {
return this.text;
},
setTextCls: function(cls) {
var o = this.options;
var oldCls = o.textCls;
@ -43010,6 +43014,10 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
this.trigger.setTipType(v);
},
getTextor: function() {
return this.trigger.getTextor();
},
populate: function (items) {
this.options.items = items;
}
@ -50674,11 +50682,14 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
},
_getSyncConfig: function () {
var o = this.options;
var o = this.options, self = this;
var baseConfig = this._getBaseConfig();
return BI.extend(baseConfig, o.allowEdit ? this._getSearchConfig() : {
el: {
type: "bi.single_tree_trigger",
ref: function(_ref) {
self.textTrigger = _ref;
},
text: o.text,
height: o.height,
items: o.items,
@ -50701,6 +50712,10 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
return this.combo.getValue();
},
getSearcher: function () {
return this.trigger ? this.trigger.getSearcher() : this.textTrigger.getTextor();
},
populate: function (items) {
this.combo.populate(items);
}
@ -51941,11 +51956,14 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
},
_getSyncConfig: function () {
var o = this.options;
var o = this.options, self = this;
var baseConfig = this._getBaseConfig();
return BI.extend(baseConfig, o.allowEdit ? this._getSearchConfig() : {
el: {
type: "bi.single_tree_trigger",
ref: function(_ref) {
self.textTrigger = _ref;
},
text: o.text,
height: o.height,
items: o.items,
@ -51959,6 +51977,10 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
return BI.extend(config, this._getSearchConfig());
},
getSearcher: function () {
return this.trigger ? this.trigger.getSearcher() : this.textTrigger.getTextor();
},
setValue: function (v) {
v = BI.isArray(v) ? v : [v];
this.combo.setValue(v);
@ -59380,6 +59402,10 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
});
},
getSearcher: function () {
return this.trigger.getSearcher();
},
getValue: function () {
return BI.deepClone(this.storeValue.value);
},
@ -59737,6 +59763,10 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
this.combo.hideView();
},
getSearcher: function () {
return this.trigger.getSearcher();
},
showView: function () {
this.combo.showView();
},
@ -60144,6 +60174,10 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
this.combo.hideView();
},
getSearcher: function () {
return this.trigger.getSearcher();
},
setValue: function (v) {
this.storeValue.value = v || [];
this.combo.setValue({
@ -66808,6 +66842,10 @@ BI.SingleTreeTrigger = BI.inherit(BI.Trigger, {
return this.options.value || [];
},
getTextor: function() {
return this.trigger.getTextor();
},
populate: function (items) {
this.trigger.populate(items);
}
@ -73412,6 +73450,10 @@ BI.ListTreeValueChooserInsertCombo = BI.inherit(BI.AbstractListTreeValueChooser,
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},
@ -73527,6 +73569,10 @@ BI.TreeValueChooserInsertCombo = BI.inherit(BI.AbstractTreeValueChooser, {
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},
@ -73642,6 +73688,10 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, {
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},

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

56
dist/demo.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-21 11:50:17 */
/*! time: 2021-6-21 14:00:19 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -42922,6 +42922,10 @@ BI.TextTrigger = BI.inherit(BI.Trigger, {
});
},
getTextor: function() {
return this.text;
},
setTextCls: function(cls) {
var o = this.options;
var oldCls = o.textCls;
@ -43010,6 +43014,10 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
this.trigger.setTipType(v);
},
getTextor: function() {
return this.trigger.getTextor();
},
populate: function (items) {
this.options.items = items;
}
@ -50674,11 +50682,14 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
},
_getSyncConfig: function () {
var o = this.options;
var o = this.options, self = this;
var baseConfig = this._getBaseConfig();
return BI.extend(baseConfig, o.allowEdit ? this._getSearchConfig() : {
el: {
type: "bi.single_tree_trigger",
ref: function(_ref) {
self.textTrigger = _ref;
},
text: o.text,
height: o.height,
items: o.items,
@ -50701,6 +50712,10 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
return this.combo.getValue();
},
getSearcher: function () {
return this.trigger ? this.trigger.getSearcher() : this.textTrigger.getTextor();
},
populate: function (items) {
this.combo.populate(items);
}
@ -51941,11 +51956,14 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
},
_getSyncConfig: function () {
var o = this.options;
var o = this.options, self = this;
var baseConfig = this._getBaseConfig();
return BI.extend(baseConfig, o.allowEdit ? this._getSearchConfig() : {
el: {
type: "bi.single_tree_trigger",
ref: function(_ref) {
self.textTrigger = _ref;
},
text: o.text,
height: o.height,
items: o.items,
@ -51959,6 +51977,10 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
return BI.extend(config, this._getSearchConfig());
},
getSearcher: function () {
return this.trigger ? this.trigger.getSearcher() : this.textTrigger.getTextor();
},
setValue: function (v) {
v = BI.isArray(v) ? v : [v];
this.combo.setValue(v);
@ -59380,6 +59402,10 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
});
},
getSearcher: function () {
return this.trigger.getSearcher();
},
getValue: function () {
return BI.deepClone(this.storeValue.value);
},
@ -59737,6 +59763,10 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
this.combo.hideView();
},
getSearcher: function () {
return this.trigger.getSearcher();
},
showView: function () {
this.combo.showView();
},
@ -60144,6 +60174,10 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
this.combo.hideView();
},
getSearcher: function () {
return this.trigger.getSearcher();
},
setValue: function (v) {
this.storeValue.value = v || [];
this.combo.setValue({
@ -66808,6 +66842,10 @@ BI.SingleTreeTrigger = BI.inherit(BI.Trigger, {
return this.options.value || [];
},
getTextor: function() {
return this.trigger.getTextor();
},
populate: function (items) {
this.trigger.populate(items);
}
@ -73412,6 +73450,10 @@ BI.ListTreeValueChooserInsertCombo = BI.inherit(BI.AbstractListTreeValueChooser,
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},
@ -73527,6 +73569,10 @@ BI.TreeValueChooserInsertCombo = BI.inherit(BI.AbstractTreeValueChooser, {
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},
@ -73642,6 +73688,10 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, {
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},

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

56
dist/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-21 11:50:17 */
/*! time: 2021-6-21 14:00:19 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -42922,6 +42922,10 @@ BI.TextTrigger = BI.inherit(BI.Trigger, {
});
},
getTextor: function() {
return this.text;
},
setTextCls: function(cls) {
var o = this.options;
var oldCls = o.textCls;
@ -43010,6 +43014,10 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
this.trigger.setTipType(v);
},
getTextor: function() {
return this.trigger.getTextor();
},
populate: function (items) {
this.options.items = items;
}
@ -50674,11 +50682,14 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
},
_getSyncConfig: function () {
var o = this.options;
var o = this.options, self = this;
var baseConfig = this._getBaseConfig();
return BI.extend(baseConfig, o.allowEdit ? this._getSearchConfig() : {
el: {
type: "bi.single_tree_trigger",
ref: function(_ref) {
self.textTrigger = _ref;
},
text: o.text,
height: o.height,
items: o.items,
@ -50701,6 +50712,10 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
return this.combo.getValue();
},
getSearcher: function () {
return this.trigger ? this.trigger.getSearcher() : this.textTrigger.getTextor();
},
populate: function (items) {
this.combo.populate(items);
}
@ -51941,11 +51956,14 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
},
_getSyncConfig: function () {
var o = this.options;
var o = this.options, self = this;
var baseConfig = this._getBaseConfig();
return BI.extend(baseConfig, o.allowEdit ? this._getSearchConfig() : {
el: {
type: "bi.single_tree_trigger",
ref: function(_ref) {
self.textTrigger = _ref;
},
text: o.text,
height: o.height,
items: o.items,
@ -51959,6 +51977,10 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
return BI.extend(config, this._getSearchConfig());
},
getSearcher: function () {
return this.trigger ? this.trigger.getSearcher() : this.textTrigger.getTextor();
},
setValue: function (v) {
v = BI.isArray(v) ? v : [v];
this.combo.setValue(v);
@ -59380,6 +59402,10 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
});
},
getSearcher: function () {
return this.trigger.getSearcher();
},
getValue: function () {
return BI.deepClone(this.storeValue.value);
},
@ -59737,6 +59763,10 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
this.combo.hideView();
},
getSearcher: function () {
return this.trigger.getSearcher();
},
showView: function () {
this.combo.showView();
},
@ -60144,6 +60174,10 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
this.combo.hideView();
},
getSearcher: function () {
return this.trigger.getSearcher();
},
setValue: function (v) {
this.storeValue.value = v || [];
this.combo.setValue({
@ -66808,6 +66842,10 @@ BI.SingleTreeTrigger = BI.inherit(BI.Trigger, {
return this.options.value || [];
},
getTextor: function() {
return this.trigger.getTextor();
},
populate: function (items) {
this.trigger.populate(items);
}
@ -73412,6 +73450,10 @@ BI.ListTreeValueChooserInsertCombo = BI.inherit(BI.AbstractListTreeValueChooser,
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},
@ -73527,6 +73569,10 @@ BI.TreeValueChooserInsertCombo = BI.inherit(BI.AbstractTreeValueChooser, {
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},
@ -73642,6 +73688,10 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, {
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},

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.proxy.css vendored

File diff suppressed because one or more lines are too long

56
dist/fineui.proxy.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-21 11:50:17 */
/*! time: 2021-6-21 14:00:19 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -40383,6 +40383,10 @@ BI.TextTrigger = BI.inherit(BI.Trigger, {
});
},
getTextor: function() {
return this.text;
},
setTextCls: function(cls) {
var o = this.options;
var oldCls = o.textCls;
@ -40471,6 +40475,10 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
this.trigger.setTipType(v);
},
getTextor: function() {
return this.trigger.getTextor();
},
populate: function (items) {
this.options.items = items;
}
@ -48135,11 +48143,14 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
},
_getSyncConfig: function () {
var o = this.options;
var o = this.options, self = this;
var baseConfig = this._getBaseConfig();
return BI.extend(baseConfig, o.allowEdit ? this._getSearchConfig() : {
el: {
type: "bi.single_tree_trigger",
ref: function(_ref) {
self.textTrigger = _ref;
},
text: o.text,
height: o.height,
items: o.items,
@ -48162,6 +48173,10 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
return this.combo.getValue();
},
getSearcher: function () {
return this.trigger ? this.trigger.getSearcher() : this.textTrigger.getTextor();
},
populate: function (items) {
this.combo.populate(items);
}
@ -49402,11 +49417,14 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
},
_getSyncConfig: function () {
var o = this.options;
var o = this.options, self = this;
var baseConfig = this._getBaseConfig();
return BI.extend(baseConfig, o.allowEdit ? this._getSearchConfig() : {
el: {
type: "bi.single_tree_trigger",
ref: function(_ref) {
self.textTrigger = _ref;
},
text: o.text,
height: o.height,
items: o.items,
@ -49420,6 +49438,10 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
return BI.extend(config, this._getSearchConfig());
},
getSearcher: function () {
return this.trigger ? this.trigger.getSearcher() : this.textTrigger.getTextor();
},
setValue: function (v) {
v = BI.isArray(v) ? v : [v];
this.combo.setValue(v);
@ -56841,6 +56863,10 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
});
},
getSearcher: function () {
return this.trigger.getSearcher();
},
getValue: function () {
return BI.deepClone(this.storeValue.value);
},
@ -57198,6 +57224,10 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
this.combo.hideView();
},
getSearcher: function () {
return this.trigger.getSearcher();
},
showView: function () {
this.combo.showView();
},
@ -57605,6 +57635,10 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
this.combo.hideView();
},
getSearcher: function () {
return this.trigger.getSearcher();
},
setValue: function (v) {
this.storeValue.value = v || [];
this.combo.setValue({
@ -64269,6 +64303,10 @@ BI.SingleTreeTrigger = BI.inherit(BI.Trigger, {
return this.options.value || [];
},
getTextor: function() {
return this.trigger.getTextor();
},
populate: function (items) {
this.trigger.populate(items);
}
@ -70873,6 +70911,10 @@ BI.ListTreeValueChooserInsertCombo = BI.inherit(BI.AbstractListTreeValueChooser,
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},
@ -70988,6 +71030,10 @@ BI.TreeValueChooserInsertCombo = BI.inherit(BI.AbstractTreeValueChooser, {
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},
@ -71103,6 +71149,10 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, {
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},

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

56
dist/fineui_without_jquery_polyfill.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-21 11:50:17 */
/*! time: 2021-6-21 14:00:19 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -39993,6 +39993,10 @@ BI.TextTrigger = BI.inherit(BI.Trigger, {
});
},
getTextor: function() {
return this.text;
},
setTextCls: function(cls) {
var o = this.options;
var oldCls = o.textCls;
@ -40081,6 +40085,10 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
this.trigger.setTipType(v);
},
getTextor: function() {
return this.trigger.getTextor();
},
populate: function (items) {
this.options.items = items;
}
@ -47745,11 +47753,14 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
},
_getSyncConfig: function () {
var o = this.options;
var o = this.options, self = this;
var baseConfig = this._getBaseConfig();
return BI.extend(baseConfig, o.allowEdit ? this._getSearchConfig() : {
el: {
type: "bi.single_tree_trigger",
ref: function(_ref) {
self.textTrigger = _ref;
},
text: o.text,
height: o.height,
items: o.items,
@ -47772,6 +47783,10 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
return this.combo.getValue();
},
getSearcher: function () {
return this.trigger ? this.trigger.getSearcher() : this.textTrigger.getTextor();
},
populate: function (items) {
this.combo.populate(items);
}
@ -49012,11 +49027,14 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
},
_getSyncConfig: function () {
var o = this.options;
var o = this.options, self = this;
var baseConfig = this._getBaseConfig();
return BI.extend(baseConfig, o.allowEdit ? this._getSearchConfig() : {
el: {
type: "bi.single_tree_trigger",
ref: function(_ref) {
self.textTrigger = _ref;
},
text: o.text,
height: o.height,
items: o.items,
@ -49030,6 +49048,10 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
return BI.extend(config, this._getSearchConfig());
},
getSearcher: function () {
return this.trigger ? this.trigger.getSearcher() : this.textTrigger.getTextor();
},
setValue: function (v) {
v = BI.isArray(v) ? v : [v];
this.combo.setValue(v);
@ -56451,6 +56473,10 @@ BI.MultiTreeCombo = BI.inherit(BI.Single, {
});
},
getSearcher: function () {
return this.trigger.getSearcher();
},
getValue: function () {
return BI.deepClone(this.storeValue.value);
},
@ -56808,6 +56834,10 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
this.combo.hideView();
},
getSearcher: function () {
return this.trigger.getSearcher();
},
showView: function () {
this.combo.showView();
},
@ -57215,6 +57245,10 @@ BI.MultiTreeListCombo = BI.inherit(BI.Single, {
this.combo.hideView();
},
getSearcher: function () {
return this.trigger.getSearcher();
},
setValue: function (v) {
this.storeValue.value = v || [];
this.combo.setValue({
@ -63879,6 +63913,10 @@ BI.SingleTreeTrigger = BI.inherit(BI.Trigger, {
return this.options.value || [];
},
getTextor: function() {
return this.trigger.getTextor();
},
populate: function (items) {
this.trigger.populate(items);
}
@ -70483,6 +70521,10 @@ BI.ListTreeValueChooserInsertCombo = BI.inherit(BI.AbstractListTreeValueChooser,
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},
@ -70598,6 +70640,10 @@ BI.TreeValueChooserInsertCombo = BI.inherit(BI.AbstractTreeValueChooser, {
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},
@ -70713,6 +70759,10 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, {
this.combo.hideView();
},
getSearcher: function () {
return this.combo.getSearcher();
},
setValue: function (v) {
this.combo.setValue(v);
},

2
dist/fineui_without_jquery_polyfill.js.map 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/lib/component/treevaluechooser/combo.listtreevaluechooser.d.ts vendored

@ -1,3 +1,4 @@
import { Widget } from "../../core/widget";
import { AbstractListTreeValueChooser } from "./abstract.treevaluechooser.list";
export declare class ListTreeValueChooserInsertCombo extends AbstractListTreeValueChooser {
static xtype: string;
@ -13,4 +14,5 @@ export declare class ListTreeValueChooserInsertCombo extends AbstractListTreeVal
setValue(v: any): void;
getValue<T>(): T;
populate<T>(items: T[]): void;
getSearcher(): Widget;
}

2
dist/lib/component/treevaluechooser/combo.treevaluechooser.d.ts vendored

@ -1,3 +1,4 @@
import { Widget } from "../../core/widget";
import { AbstractTreeValueChooser } from "./abstract.treevaluechooser";
export declare class TreeValueChooserCombo extends AbstractTreeValueChooser {
static xtype: string;
@ -14,4 +15,5 @@ export declare class TreeValueChooserCombo extends AbstractTreeValueChooser {
getValue<T>(): T;
getAllValue<T>(): T;
populate<T>(items: T[]): void;
getSearcher(): Widget;
}

2
dist/lib/component/treevaluechooser/combo.treevaluechooser.insert.d.ts vendored

@ -1,3 +1,4 @@
import { Widget } from "../../core/widget";
import { AbstractTreeValueChooser } from "./abstract.treevaluechooser";
export declare class TreeValueChooserInsertCombo extends AbstractTreeValueChooser {
static xtype: string;
@ -13,4 +14,5 @@ export declare class TreeValueChooserInsertCombo extends AbstractTreeValueChoose
setValue(v: any): void;
getValue<T>(): T;
populate<T>(items: T[]): void;
getSearcher(): Widget;
}

1
dist/lib/widget/multilayerselecttree/multilayerselecttree.combo.d.ts vendored

@ -9,4 +9,5 @@ export declare class MultiLayerSelectTreeCombo extends Widget {
setValue(v: string[] | string): void;
getValue(): string[];
populate<T>(items: T[]): void;
getSearcher(): Widget;
}

1
dist/lib/widget/multilayersingletree/multilayersingletree.combo.d.ts vendored

@ -9,4 +9,5 @@ export declare class MultiLayerSingleTreeCombo extends Widget {
setValue(v: string[] | string): void;
getValue(): string[];
populate<T>(items: T[]): void;
getSearcher(): Widget;
}

2
dist/lib/widget/multitree/multi.tree.combo.d.ts vendored

@ -1,4 +1,5 @@
import { Single } from "../../base/single/single";
import { Widget } from "../../core/widget";
export declare class MultiTreeCombo extends Single {
static xtype: string;
static EVENT_FOCUS: string;
@ -10,4 +11,5 @@ export declare class MultiTreeCombo extends Single {
static EVENT_BEFORE_POPUPVIEW: string;
showView(): void;
hideView(): void;
getSearcher(): Widget;
}

2
dist/lib/widget/multitree/multi.tree.insert.combo.d.ts vendored

@ -1,5 +1,6 @@
import { Single } from "../../base/single/single";
import { TreeValue } from "../../base/tree/ztree/treeview";
import { Widget } from "../../core/widget";
export declare class MultiTreeInsertCombo extends Single {
static xtype: string;
static EVENT_FOCUS: string;
@ -14,4 +15,5 @@ export declare class MultiTreeInsertCombo extends Single {
setValue(v: TreeValue): void;
getValue(): TreeValue;
populate(): void;
getSearcher(): Widget;
}

2
dist/lib/widget/multitree/multi.tree.list.combo.d.ts vendored

@ -1,4 +1,5 @@
import { Single } from "../../base/single/single";
import { Widget } from "../../core/widget";
export declare class MultiTreeListCombo extends Single {
static xtype: string;
static EVENT_FOCUS: string;
@ -13,4 +14,5 @@ export declare class MultiTreeListCombo extends Single {
setValue(v: string[]): void;
getValue(): string[];
populate(): void;
getSearcher(): Widget;
}

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-6-21 11:50:17 */
/*! time: 2021-6-21 14:00:19 */
/******/ (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.20210621115122",
"version": "2.0.20210621140215",
"description": "fineui",
"main": "dist/fineui.min.js",
"types": "dist/lib/index.d.ts",

Loading…
Cancel
Save