@dpouris/gswap 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -0
- package/dist/index.js +5 -0
- package/dist/src/index.d.ts +1 -1
- package/dist/src/main.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
export { GSwap as GSwap } from "./src/main";
|
package/dist/index.js
ADDED
package/dist/src/index.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export { GSwap } from "./main";
|
1
|
+
export { GSwap as GSwap } from "./main";
|
package/dist/src/main.js
CHANGED
@@ -165,7 +165,7 @@ _GSwap_currentImg = new WeakMap(), _GSwap_createNavigation = new WeakMap(), _GSw
|
|
165
165
|
imgElement.src = image;
|
166
166
|
imgElement.width = this.options.imgDimensions.width;
|
167
167
|
imgElement.height = this.options.imgDimensions.height;
|
168
|
-
imgElement.style.transition = `all ${this.options.animationDuration}ms ease-out`;
|
168
|
+
imgElement.style.transition = `all ${this.options.animationDuration}ms ease-in-out`;
|
169
169
|
return imgElement;
|
170
170
|
});
|
171
171
|
}, _GSwap_appendElementsOnContainer = function _GSwap_appendElementsOnContainer() {
|