Skip to content

Commit

Permalink
chore: delete the export of Mask
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Dec 20, 2024
1 parent bce6e37 commit 54c3642
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/lib/src/widgets/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export type { TextOptions, TextIns } from "./text.vue";
export { default as TextUnit } from "./text-unit.vue";
export { default as Image } from "./image.vue";
export type { ImageOptions } from "./image.vue";
export { default as Mask } from "./mask.vue";
export type { MaskOptions } from "./mask.vue";
// export { default as Mask } from "./mask.vue";
// export type { MaskOptions } from "./mask.vue";
export { default as Path } from "./path.vue";
export type { PathOptions, PathIns } from "./path.vue";
export { default as WebView } from "./webview.vue";
Expand Down
4 changes: 2 additions & 2 deletions packages/lib/src/widgets/mask.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<script setup lang="ts">
<!-- <script setup lang="ts">
import { defineProps } from "vue";
import { defineWidget } from "@vue-motion/core";
import { type WidgetOptions, widget } from "./widget";
Expand Down Expand Up @@ -27,4 +27,4 @@ const id = props.wid || `mask-${Math.random().toString(36).substring(2, 9)}`;
<g v-bind="widget(options)" :mask="`url(#${id})`">
<slot name="target" />
</g>
</template>
</template> -->

0 comments on commit 54c3642

Please sign in to comment.