Skip to content

Commit e2740e4

Browse files
author
cloudinary-bot
committed
Version 1.2.3
1 parent 3fac107 commit e2740e4

8 files changed

+101
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
1.2.3 / 2021-07-11
2+
==================
3+
4+
Other Changes
5+
* Fix missing Poster functionality and Autoplay for cld-video (#141)
6+
7+
18
1.2.2 / 2021-05-30
29
==================
310

dist/Cloudinary.common.js

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10589,6 +10589,46 @@ module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undef
1058910589
};
1059010590

1059110591

10592+
/***/ }),
10593+
10594+
/***/ "4e82":
10595+
/***/ (function(module, exports, __webpack_require__) {
10596+
10597+
"use strict";
10598+
10599+
var $ = __webpack_require__("23e7");
10600+
var aFunction = __webpack_require__("1c0b");
10601+
var toObject = __webpack_require__("7b0b");
10602+
var fails = __webpack_require__("d039");
10603+
var arrayMethodIsStrict = __webpack_require__("a640");
10604+
10605+
var test = [];
10606+
var nativeSort = test.sort;
10607+
10608+
// IE8-
10609+
var FAILS_ON_UNDEFINED = fails(function () {
10610+
test.sort(undefined);
10611+
});
10612+
// V8 bug
10613+
var FAILS_ON_NULL = fails(function () {
10614+
test.sort(null);
10615+
});
10616+
// Old WebKit
10617+
var STRICT_METHOD = arrayMethodIsStrict('sort');
10618+
10619+
var FORCED = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || !STRICT_METHOD;
10620+
10621+
// `Array.prototype.sort` method
10622+
// https://tc39.es/ecma262/#sec-array.prototype.sort
10623+
$({ target: 'Array', proto: true, forced: FORCED }, {
10624+
sort: function sort(comparefn) {
10625+
return comparefn === undefined
10626+
? nativeSort.call(toObject(this))
10627+
: nativeSort.call(toObject(this), aFunction(comparefn));
10628+
}
10629+
});
10630+
10631+
1059210632
/***/ }),
1059310633

1059410634
/***/ "4f50":
@@ -19776,10 +19816,14 @@ function _nonIterableSpread() {
1977619816
function _toConsumableArray(arr) {
1977719817
return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
1977819818
}
19819+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.sort.js
19820+
var es_array_sort = __webpack_require__("4e82");
19821+
1977919822
// CONCATENATED MODULE: ./src/helpers/findBreakpoint.js
1978019823

1978119824

1978219825

19826+
1978319827
/**
1978419828
* Finds a number in breakpoints array
1978519829
* that provided a suggestion

dist/Cloudinary.common.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Cloudinary.umd.js

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10598,6 +10598,46 @@ module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undef
1059810598
};
1059910599

1060010600

10601+
/***/ }),
10602+
10603+
/***/ "4e82":
10604+
/***/ (function(module, exports, __webpack_require__) {
10605+
10606+
"use strict";
10607+
10608+
var $ = __webpack_require__("23e7");
10609+
var aFunction = __webpack_require__("1c0b");
10610+
var toObject = __webpack_require__("7b0b");
10611+
var fails = __webpack_require__("d039");
10612+
var arrayMethodIsStrict = __webpack_require__("a640");
10613+
10614+
var test = [];
10615+
var nativeSort = test.sort;
10616+
10617+
// IE8-
10618+
var FAILS_ON_UNDEFINED = fails(function () {
10619+
test.sort(undefined);
10620+
});
10621+
// V8 bug
10622+
var FAILS_ON_NULL = fails(function () {
10623+
test.sort(null);
10624+
});
10625+
// Old WebKit
10626+
var STRICT_METHOD = arrayMethodIsStrict('sort');
10627+
10628+
var FORCED = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || !STRICT_METHOD;
10629+
10630+
// `Array.prototype.sort` method
10631+
// https://tc39.es/ecma262/#sec-array.prototype.sort
10632+
$({ target: 'Array', proto: true, forced: FORCED }, {
10633+
sort: function sort(comparefn) {
10634+
return comparefn === undefined
10635+
? nativeSort.call(toObject(this))
10636+
: nativeSort.call(toObject(this), aFunction(comparefn));
10637+
}
10638+
});
10639+
10640+
1060110641
/***/ }),
1060210642

1060310643
/***/ "4f50":
@@ -19785,10 +19825,14 @@ function _nonIterableSpread() {
1978519825
function _toConsumableArray(arr) {
1978619826
return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
1978719827
}
19828+
// EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.sort.js
19829+
var es_array_sort = __webpack_require__("4e82");
19830+
1978819831
// CONCATENATED MODULE: ./src/helpers/findBreakpoint.js
1978919832

1979019833

1979119834

19835+
1979219836
/**
1979319837
* Finds a number in breakpoints array
1979419838
* that provided a suggestion

dist/Cloudinary.umd.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Cloudinary.umd.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Cloudinary.umd.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cloudinary-vue",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"scripts": {
55
"serve": "INTERNAL_DEPS=1 vue-cli-service serve ./playground/main.js",
66
"build": "vue-cli-service lint --fix && npm run build:lib",

0 commit comments

Comments
 (0)