Browse Source

无JIRA任务 异步单选树的默认值颜色没有改

es6
windy 5 years ago
parent
commit
5fc0819c3a
  1. 11
      dist/2.0/fineui.ie.js
  2. 11
      dist/2.0/fineui.js
  3. 11
      dist/bundle.ie.js
  4. 11
      dist/bundle.js
  5. 2
      dist/config.js
  6. 9
      dist/fineui.ie.js
  7. 9
      dist/fineui.js
  8. 9
      dist/fineui_without_jquery_polyfill.js
  9. 2
      dist/utils.js
  10. 9
      dist/widget.js
  11. 9
      src/widget/multilayersingletree/multilayersingletree.trigger.js

11
dist/2.0/fineui.ie.js vendored

@ -69991,7 +69991,7 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
ref: function () {
self.editor = this;
},
text: this._digest(o.value),
text: o.text,
value: o.value,
height: o.height,
tipText: "",
@ -70070,6 +70070,13 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
};
},
mounted: function () {
var o = this.options;
if(BI.isKey(o.value)) {
this.setValue([o.value]);
}
},
_digest: function (v) {
return this.options.valueFormatter(v);
},
@ -89315,7 +89322,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
}());BI.i18n = {
"BI-Multi_Date_Quarter_End": "季度末",
"BI-Multi_Date_Month_Begin": "月初",
"BI-Multi_Date_YMD": "年//日",
"BI-Multi_Date_YMD": "年月日",
"BI-Custom_Color": "自定义颜色",
"BI-Numerical_Interval_Input_Data": "请输入数值",
"BI-Please_Input_Natural_Number": "请输入非负整数",

11
dist/2.0/fineui.js vendored

@ -70395,7 +70395,7 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
ref: function () {
self.editor = this;
},
text: this._digest(o.value),
text: o.text,
value: o.value,
height: o.height,
tipText: "",
@ -70474,6 +70474,13 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
};
},
mounted: function () {
var o = this.options;
if(BI.isKey(o.value)) {
this.setValue([o.value]);
}
},
_digest: function (v) {
return this.options.valueFormatter(v);
},
@ -89649,7 +89656,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
}());BI.i18n = {
"BI-Multi_Date_Quarter_End": "季度末",
"BI-Multi_Date_Month_Begin": "月初",
"BI-Multi_Date_YMD": "年//日",
"BI-Multi_Date_YMD": "年月日",
"BI-Custom_Color": "自定义颜色",
"BI-Numerical_Interval_Input_Data": "请输入数值",
"BI-Please_Input_Natural_Number": "请输入非负整数",

11
dist/bundle.ie.js vendored

@ -69991,7 +69991,7 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
ref: function () {
self.editor = this;
},
text: this._digest(o.value),
text: o.text,
value: o.value,
height: o.height,
tipText: "",
@ -70070,6 +70070,13 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
};
},
mounted: function () {
var o = this.options;
if(BI.isKey(o.value)) {
this.setValue([o.value]);
}
},
_digest: function (v) {
return this.options.valueFormatter(v);
},
@ -89315,7 +89322,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
}());BI.i18n = {
"BI-Multi_Date_Quarter_End": "季度末",
"BI-Multi_Date_Month_Begin": "月初",
"BI-Multi_Date_YMD": "年//日",
"BI-Multi_Date_YMD": "年月日",
"BI-Custom_Color": "自定义颜色",
"BI-Numerical_Interval_Input_Data": "请输入数值",
"BI-Please_Input_Natural_Number": "请输入非负整数",

11
dist/bundle.js vendored

@ -70395,7 +70395,7 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
ref: function () {
self.editor = this;
},
text: this._digest(o.value),
text: o.text,
value: o.value,
height: o.height,
tipText: "",
@ -70474,6 +70474,13 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
};
},
mounted: function () {
var o = this.options;
if(BI.isKey(o.value)) {
this.setValue([o.value]);
}
},
_digest: function (v) {
return this.options.valueFormatter(v);
},
@ -89649,7 +89656,7 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
}());BI.i18n = {
"BI-Multi_Date_Quarter_End": "季度末",
"BI-Multi_Date_Month_Begin": "月初",
"BI-Multi_Date_YMD": "年//日",
"BI-Multi_Date_YMD": "年月日",
"BI-Custom_Color": "自定义颜色",
"BI-Numerical_Interval_Input_Data": "请输入数值",
"BI-Please_Input_Natural_Number": "请输入非负整数",

2
dist/config.js vendored

@ -2,7 +2,7 @@
BI.i18n = {
"BI-Multi_Date_Quarter_End": "季度末",
"BI-Multi_Date_Month_Begin": "月初",
"BI-Multi_Date_YMD": "年//日",
"BI-Multi_Date_YMD": "年月日",
"BI-Custom_Color": "自定义颜色",
"BI-Numerical_Interval_Input_Data": "请输入数值",
"BI-Please_Input_Natural_Number": "请输入非负整数",

9
dist/fineui.ie.js vendored

@ -70236,7 +70236,7 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
ref: function () {
self.editor = this;
},
text: this._digest(o.value),
text: o.text,
value: o.value,
height: o.height,
tipText: "",
@ -70315,6 +70315,13 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
};
},
mounted: function () {
var o = this.options;
if(BI.isKey(o.value)) {
this.setValue([o.value]);
}
},
_digest: function (v) {
return this.options.valueFormatter(v);
},

9
dist/fineui.js vendored

@ -70640,7 +70640,7 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
ref: function () {
self.editor = this;
},
text: this._digest(o.value),
text: o.text,
value: o.value,
height: o.height,
tipText: "",
@ -70719,6 +70719,13 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
};
},
mounted: function () {
var o = this.options;
if(BI.isKey(o.value)) {
this.setValue([o.value]);
}
},
_digest: function (v) {
return this.options.valueFormatter(v);
},

9
dist/fineui_without_jquery_polyfill.js vendored

@ -53246,7 +53246,7 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
ref: function () {
self.editor = this;
},
text: this._digest(o.value),
text: o.text,
value: o.value,
height: o.height,
tipText: "",
@ -53325,6 +53325,13 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
};
},
mounted: function () {
var o = this.options;
if(BI.isKey(o.value)) {
this.setValue([o.value]);
}
},
_digest: function (v) {
return this.options.valueFormatter(v);
},

2
dist/utils.js vendored

@ -18109,7 +18109,7 @@ BI.Region.prototype = {
};BI.i18n = {
"BI-Multi_Date_Quarter_End": "季度末",
"BI-Multi_Date_Month_Begin": "月初",
"BI-Multi_Date_YMD": "年//日",
"BI-Multi_Date_YMD": "年月日",
"BI-Custom_Color": "自定义颜色",
"BI-Numerical_Interval_Input_Data": "请输入数值",
"BI-Please_Input_Natural_Number": "请输入非负整数",

9
dist/widget.js vendored

@ -8061,7 +8061,7 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
ref: function () {
self.editor = this;
},
text: this._digest(o.value),
text: o.text,
value: o.value,
height: o.height,
tipText: "",
@ -8140,6 +8140,13 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
};
},
mounted: function () {
var o = this.options;
if(BI.isKey(o.value)) {
this.setValue([o.value]);
}
},
_digest: function (v) {
return this.options.valueFormatter(v);
},

9
src/widget/multilayersingletree/multilayersingletree.trigger.js

@ -29,7 +29,7 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
ref: function () {
self.editor = this;
},
text: this._digest(o.value),
text: o.text,
value: o.value,
height: o.height,
tipText: "",
@ -108,6 +108,13 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
};
},
mounted: function () {
var o = this.options;
if(BI.isKey(o.value)) {
this.setValue([o.value]);
}
},
_digest: function (v) {
return this.options.valueFormatter(v);
},

Loading…
Cancel
Save