Skip to content

Commit

Permalink
Vue build
Browse files Browse the repository at this point in the history
  • Loading branch information
paveltiunov committed Nov 4, 2019
1 parent a0b9637 commit d115c4e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions packages/cubejs-vue/dist/cubejs-vue.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ var QueryBuilder = {
limit: null,
offset: null,
renewQuery: false,
order: {}
order: null
};
data.granularities = [{
name: 'hour',
Expand Down Expand Up @@ -598,7 +598,7 @@ var QueryBuilder = {
this.limit = limit || null;
this.offset = offset || null;
this.renewQuery = renewQuery || false;
this.order = order || {};
this.order = order || null;
},
addMember: function addMember(element, member) {
var name = element.charAt(0).toUpperCase() + element.slice(1);
Expand Down
4 changes: 2 additions & 2 deletions packages/cubejs-vue/dist/cubejs-vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ var QueryBuilder = {
limit: null,
offset: null,
renewQuery: false,
order: {}
order: null
};
data.granularities = [{
name: 'hour',
Expand Down Expand Up @@ -604,7 +604,7 @@ var QueryBuilder = {
this.limit = limit || null;
this.offset = offset || null;
this.renewQuery = renewQuery || false;
this.order = order || {};
this.order = order || null;
},
addMember: function addMember(element, member) {
var name = element.charAt(0).toUpperCase() + element.slice(1);
Expand Down
8 changes: 4 additions & 4 deletions packages/cubejs-vue/dist/cubejs-vue.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,7 @@
// Set @@toStringTag to native iterators
_setToStringTag(IteratorPrototype, TAG, true);
// fix for some old engines
if (!_library && typeof IteratorPrototype[ITERATOR$3] != 'function') _hide(IteratorPrototype, ITERATOR$3, returnThis);
if (typeof IteratorPrototype[ITERATOR$3] != 'function') _hide(IteratorPrototype, ITERATOR$3, returnThis);
}
}
// fix Array#{values, @@iterator}.name in V8 / FF
Expand All @@ -1324,7 +1324,7 @@
$default = function values() { return $native.call(this); };
}
// Define iterator
if ((!_library || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR$3])) {
if (BUGGY || VALUES_BUG || !proto[ITERATOR$3]) {
_hide(proto, ITERATOR$3, $default);
}
// Plug for library
Expand Down Expand Up @@ -7626,7 +7626,7 @@
limit: null,
offset: null,
renewQuery: false,
order: {}
order: null
};
data.granularities = [{
name: 'hour',
Expand Down Expand Up @@ -7891,7 +7891,7 @@
this.limit = limit || null;
this.offset = offset || null;
this.renewQuery = renewQuery || false;
this.order = order || {};
this.order = order || null;
},
addMember: function addMember(element, member) {
var name = element.charAt(0).toUpperCase() + element.slice(1);
Expand Down

0 comments on commit d115c4e

Please sign in to comment.