iapyang 6 years ago
parent
commit
561315e1d8
  1. 6
      dist/_fineui.min.js
  2. 4
      dist/base.js
  3. 20
      dist/bundle.js
  4. 8
      dist/bundle.min.js
  5. 20
      dist/fineui.js
  6. 8
      dist/fineui.min.js
  7. 2
      src/base/formula/formulaeditor.js
  8. 2
      src/base/layer/layer.popover.js

6
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/base.js vendored

@ -14740,6 +14740,8 @@ BI.FormulaEditor = BI.inherit(BI.Single, {
break;
}
});
return value;
});
return v.replaceAll("(\\$\\{.*?\\})\\s", "$1");
},
@ -15410,7 +15412,7 @@ BI.Popover = BI.inherit(BI.Widget, {
items: [{
el: BI.createWidget(o.body),
left: 20,
top: 20,
top: 10,
right: 20,
bottom: 0
}]

20
dist/bundle.js vendored

@ -50510,6 +50510,8 @@ BI.FormulaEditor = BI.inherit(BI.Single, {
break;
}
});
return value;
});
return v.replaceAll("(\\$\\{.*?\\})\\s", "$1");
},
@ -51180,7 +51182,7 @@ BI.Popover = BI.inherit(BI.Widget, {
items: [{
el: BI.createWidget(o.body),
left: 20,
top: 20,
top: 10,
right: 20,
bottom: 0
}]
@ -113847,13 +113849,15 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
return result;
};
var populate = BI.Loader.prototype.populate;
BI.Loader.prototype.populate = function () {
pushContext(this);
var result = populate.apply(this, arguments);
popContext();
return result;
};
_.each(["populate", "addItems", "prependItems"], function (name) {
var old = BI.Loader.prototype[name];
BI.Loader.prototype[name] = function () {
pushContext(this);
var result = old.apply(this, arguments);
popContext();
return result;
};
});
var _init = BI.Widget.prototype._init;
BI.Widget.prototype._init = function () {

8
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

20
dist/fineui.js vendored

@ -50753,6 +50753,8 @@ BI.FormulaEditor = BI.inherit(BI.Single, {
break;
}
});
return value;
});
return v.replaceAll("(\\$\\{.*?\\})\\s", "$1");
},
@ -51423,7 +51425,7 @@ BI.Popover = BI.inherit(BI.Widget, {
items: [{
el: BI.createWidget(o.body),
left: 20,
top: 20,
top: 10,
right: 20,
bottom: 0
}]
@ -114090,13 +114092,15 @@ BI.shortcut("bi.value_chooser_pane", BI.ValueChooserPane);;(function () {
return result;
};
var populate = BI.Loader.prototype.populate;
BI.Loader.prototype.populate = function () {
pushContext(this);
var result = populate.apply(this, arguments);
popContext();
return result;
};
_.each(["populate", "addItems", "prependItems"], function (name) {
var old = BI.Loader.prototype[name];
BI.Loader.prototype[name] = function () {
pushContext(this);
var result = old.apply(this, arguments);
popContext();
return result;
};
});
var _init = BI.Widget.prototype._init;
BI.Widget.prototype._init = function () {

8
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
src/base/formula/formulaeditor.js

@ -217,6 +217,8 @@ BI.FormulaEditor = BI.inherit(BI.Single, {
break;
}
});
return value;
});
return v.replaceAll("(\\$\\{.*?\\})\\s", "$1");
},

2
src/base/layer/layer.popover.js

@ -90,7 +90,7 @@ BI.Popover = BI.inherit(BI.Widget, {
items: [{
el: BI.createWidget(o.body),
left: 20,
top: 20,
top: 10,
right: 20,
bottom: 0
}]

Loading…
Cancel
Save