Skip to content

Commit 37da3f1

Browse files
committed
fix
1 parent 7d314dd commit 37da3f1

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/components/HTMLBuilder/ConfigSections/Background.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { CSSProperties } from 'vue';
2+
import type { CSSProperties } from 'vue';
33
import { useHTMLBuilderStore } from '../utils';
44
55
const builderStore = useHTMLBuilderStore();

src/components/HTMLBuilder/ConfigSections/Display.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { CSSProperties } from 'vue';
2+
import type { CSSProperties } from 'vue';
33
import { useHTMLBuilderStore } from '../utils';
44
55
const builderStore = useHTMLBuilderStore();

src/components/HTMLBuilder/HTMLBuilderComponents.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
22
import HTMLBuilderDraggableComponent from './HTMLBuilderDraggableComponent.vue';
3-
import { IHTMLBuilderDraggable } from './types';
3+
import type { IHTMLBuilderDraggable } from './types';
44
55
const availableTags: IHTMLBuilderDraggable[] = [
66
{

src/components/HTMLBuilder/HTMLBuilderDraggableComponent.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
22
import { useDraggable } from '@vue-dnd-kit/core';
3-
import { CSSProperties } from 'vue';
3+
import type { CSSProperties } from 'vue';
44
55
const props = defineProps<{
66
tag: keyof HTMLElementTagNameMap;

src/components/HTMLBuilder/HTMLBuilderTreeItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup lang="ts">
22
import { useDnDStore, useDraggable } from '@vue-dnd-kit/core';
33
import { computed } from 'vue';
4-
import { IHTMLBuilderElement } from './types';
4+
import type { IHTMLBuilderElement } from './types';
55
import HTMLBuilderTree from './HTMLBuilderTree.vue';
66
import { useHTMLBuilderStore } from './utils';
77

0 commit comments

Comments
 (0)