Skip to content

Commit

Permalink
chore(release): 2.9.0-rc.2
Browse files Browse the repository at this point in the history
## [2.9.0-rc.2](v2.9.0-rc.1...v2.9.0-rc.2) (2022-01-07)
  • Loading branch information
imgix-git-robot committed Jan 7, 2022
1 parent 2e06330 commit b0cf055
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 11 deletions.
11 changes: 8 additions & 3 deletions dist/vue-imgix.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,7 @@ var IxImg = defineComponent({

function objectWithoutProperties (obj, exclude) { var target = {}; for (var k in obj) if (Object.prototype.hasOwnProperty.call(obj, k) && exclude.indexOf(k) === -1) target[k] = obj[k]; return target; }
// Do not change this
var VERSION = '2.8.4';
var VERSION = '2.9.0-rc.1';
var clientOptionDefaults = {
includeLibraryParam: true,
};
Expand Down Expand Up @@ -1103,9 +1103,14 @@ var IxPictureProps = defineComponent({
});
var IxPicture = defineComponent({
mixins: [IxPictureProps],
render: function render() {
setup: function setup(_, ref) {
var slots = ref.slots;

ensureVueImgixClientSingleton();
return h('picture', this.$slots.default);
var defaultSlots = slots && slots.default && slots.default();
return function () {
return h('picture', defaultSlots);
};
},
});

Expand Down
11 changes: 8 additions & 3 deletions dist/vue-imgix.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -1018,7 +1018,7 @@ var VueImgix = (function (exports, vue) {

function objectWithoutProperties (obj, exclude) { var target = {}; for (var k in obj) if (Object.prototype.hasOwnProperty.call(obj, k) && exclude.indexOf(k) === -1) target[k] = obj[k]; return target; }
// Do not change this
var VERSION = '2.8.4';
var VERSION = '2.9.0-rc.1';
var clientOptionDefaults = {
includeLibraryParam: true,
};
Expand Down Expand Up @@ -1104,9 +1104,14 @@ var VueImgix = (function (exports, vue) {
});
var IxPicture = vue.defineComponent({
mixins: [IxPictureProps],
render: function render() {
setup: function setup(_, ref) {
var slots = ref.slots;

ensureVueImgixClientSingleton();
return vue.h('picture', this.$slots.default);
var defaultSlots = slots && slots.default && slots.default();
return function () {
return vue.h('picture', defaultSlots);
};
},
});

Expand Down
11 changes: 8 additions & 3 deletions dist/vue-imgix.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,7 @@

function objectWithoutProperties (obj, exclude) { var target = {}; for (var k in obj) if (Object.prototype.hasOwnProperty.call(obj, k) && exclude.indexOf(k) === -1) target[k] = obj[k]; return target; }
// Do not change this
var VERSION = '2.8.4';
var VERSION = '2.9.0-rc.1';
var clientOptionDefaults = {
includeLibraryParam: true,
};
Expand Down Expand Up @@ -1107,9 +1107,14 @@
});
var IxPicture = vue.defineComponent({
mixins: [IxPictureProps],
render: function render() {
setup: function setup(_, ref) {
var slots = ref.slots;

ensureVueImgixClientSingleton();
return vue.h('picture', this.$slots.default);
var defaultSlots = slots && slots.default && slots.default();
return function () {
return vue.h('picture', defaultSlots);
};
},
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"module": "dist/vue-imgix.esm.js",
"jsnext:main": "dist/vue-imgix.esm.js",
"unpkg": "dist/vue-imgix.min.js",
"version": "2.9.0-rc.1",
"version": "2.9.0-rc.2",
"scripts": {
"serve": "vue-cli-service serve",
"build": "rollup --config build/rollup.config.js",
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/vue-imgix/vue-imgix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
import type { IVueImgixClient } from './types';

// Do not change this
const VERSION = '2.9.0-rc.1';
const VERSION = '2.9.0-rc.2';

const clientOptionDefaults = {
includeLibraryParam: true,
Expand Down

0 comments on commit b0cf055

Please sign in to comment.