Skip to content

Commit

Permalink
1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Norman Rusch committed Jan 9, 2024
1 parent f13cb1a commit a974d80
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 14 deletions.
6 changes: 5 additions & 1 deletion dist/formats/cjs/caroucssel.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ function __rest(s, e) {
}
return t;
}
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
var e = new Error(message);
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
};

const __CACHE = new WeakMap();
function fromCache(ref, key, factory) {
Expand Down Expand Up @@ -798,7 +802,7 @@ class Carousel {
}
}

const version = '1.1.3';
const version = '1.1.4';

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.

6 changes: 5 additions & 1 deletion dist/formats/iife/caroucssel.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ var caroucssel = (function (exports) {
}
return t;
}
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
var e = new Error(message);
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
};

const __CACHE = new WeakMap();
function fromCache(ref, key, factory) {
Expand Down Expand Up @@ -797,7 +801,7 @@ var caroucssel = (function (exports) {
}
}

const version = '1.1.3';
const version = '1.1.4';

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.

9 changes: 5 additions & 4 deletions dist/formats/umd/caroucssel.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
}
return t;
}
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
var e = new Error(message);
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
};
const __CACHE = new WeakMap();
function fromCache(ref, key, factory) {
const storage = __CACHE.get(ref) || new Map();
Expand Down Expand Up @@ -329,15 +333,13 @@
}
_exports.Mouse = Mouse;
var UpdateType;
_exports.UpdateType = UpdateType;
(function (UpdateType) {
UpdateType["SCROLL"] = "scroll";
UpdateType["RESIZE"] = "resize";
UpdateType["FORCED"] = "forced";
UpdateType["FEATURE"] = "feature";
})(UpdateType || (_exports.UpdateType = UpdateType = {}));
var ScrollBehavior;
_exports.ScrollBehavior = ScrollBehavior;
(function (ScrollBehavior) {
ScrollBehavior["AUTO"] = "auto";
ScrollBehavior["SMOOTH"] = "smooth";
Expand Down Expand Up @@ -973,6 +975,5 @@
}
}
_exports.Carousel = Carousel;
const version = '1.1.3';
_exports.version = version;
const version = _exports.version = '1.1.4';
});
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.1.3";
export declare const version = "1.1.4";
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.1.3';
export const version = '1.1.4';
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.1.3",
"version": "1.1.4",
"description": "A lightweight dependency-free css carousel.",
"module": "index.js",
"main": "formats/cjs/caroucssel.js",
Expand Down

0 comments on commit a974d80

Please sign in to comment.