masoneffect 0.1.17 → 0.1.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "masoneffect",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "파티클 모핑 효과를 제공하는 라이브러리 - React, Vue, 바닐라 JS 지원",
5
5
  "main": "dist/index.min.js",
6
6
  "module": "dist/index.esm.min.js",
@@ -4,7 +4,8 @@
4
4
 
5
5
  <script setup lang="ts">
6
6
  import { ref, onMounted, onBeforeUnmount, watch } from 'vue';
7
- import { MasonEffect, type MasonEffectOptions } from '../core/index';
7
+ import { MasonEffect } from '../core/index';
8
+ import type { MasonEffectOptions } from '../core/index';
8
9
 
9
10
  interface Props extends Partial<MasonEffectOptions> {
10
11
  className?: string;