Skip to content

Commit

Permalink
1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Norman Rusch committed Jan 4, 2022
1 parent f5478f3 commit 9da8899
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion dist/formats/cjs/caroucssel.js
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ class Carousel {
}
}

const version = '1.0.1';
const version = '1.0.2';

exports.Buttons = Buttons;
exports.Carousel = Carousel;
Expand Down
2 changes: 1 addition & 1 deletion dist/formats/cjs/caroucssel.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/formats/iife/caroucssel.js
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ var caroucssel = (function (exports) {
}
}

const version = '1.0.1';
const version = '1.0.2';

exports.Buttons = Buttons;
exports.Carousel = Carousel;
Expand Down
2 changes: 1 addition & 1 deletion dist/formats/iife/caroucssel.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/formats/umd/caroucssel.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }

function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }

function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }

Expand All @@ -44,7 +44,7 @@

function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }

function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }

function __rest(s, e) {
var t = {};
Expand Down Expand Up @@ -1273,6 +1273,6 @@
}();

_exports.Carousel = Carousel;
var version = '1.0.1';
var version = '1.0.2';
_exports.version = version;
});
2 changes: 1 addition & 1 deletion dist/formats/umd/caroucssel.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export { Mouse } from './features/mouse';
export { Pagination } from './features/pagination';
export { Carousel, Mask } from './carousel';
export * from './types';
export declare const version = "1.0.1";
export declare const version = "1.0.2";
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ export { Carousel, Mask } from './carousel';
export * from './types';
// This will be replaced by the version from the package.json
// See: scripts/build_post.js
export const version = '1.0.1';
export const version = '1.0.2';
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "caroucssel",
"version": "1.0.1",
"version": "1.0.2",
"description": "A lightweight dependency-free css carousel.",
"module": "index.js",
"main": "formats/cjs/caroucssel.js",
Expand Down

0 comments on commit 9da8899

Please sign in to comment.