masoneffect 0.1.22 → 0.1.23
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/README.md +2 -2
- package/dist/react/index.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# MasonEffect 
|
|
2
2
|
|
|
3
|
-
**Release version 1.0.
|
|
3
|
+
**Release version 1.0.23**
|
|
4
4
|
|
|
5
5
|
A library that provides particle morphing effects. It can be used with React, Vue, and vanilla JavaScript.
|
|
6
6
|
|
|
@@ -44,7 +44,7 @@ effect.scatter();
|
|
|
44
44
|
#### Using CDN (UMD)
|
|
45
45
|
|
|
46
46
|
```html
|
|
47
|
-
<script src="https://cdn.jsdelivr.net/npm/masoneffect@1.
|
|
47
|
+
<script src="https://cdn.jsdelivr.net/npm/masoneffect@0.1.19/dist/index.umd.min.js"></script>
|
|
48
48
|
<script>
|
|
49
49
|
const container = document.getElementById('my-container');
|
|
50
50
|
const effect = new MasonEffect(container, {
|
package/dist/react/index.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default } from './MasonEffect';
|
|
1
|
+
export { default } from './MasonEffect.mjs';
|