Skip to content

Commit 82e6ca8

Browse files
committed
调整目录结构
1 parent fdfb2e7 commit 82e6ca8

File tree

11 files changed

+15
-19
lines changed

11 files changed

+15
-19
lines changed

.vscode/settings.json

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,32 +13,28 @@
1313
"base": "lottie",
1414
"color": "blue-800",
1515
"lightColor": "light-blue-200",
16-
"folderNames": ["graph"],
17-
"rootFolderNames": ["graph"]
16+
"folderNames": ["graph"]
1817
},
1918
{
2019
"name": "input-component",
2120
"base": "mock",
2221
"color": "cyan-800",
2322
"lightColor": "light-green-700",
24-
"folderNames": ["inputs"],
25-
"rootFolderNames": ["inputs"]
23+
"folderNames": ["inputs"]
2624
},
2725
{
2826
"name": "icon",
2927
"base": "svg",
3028
"color": "purple-400",
3129
"lightColor": "purple-100",
32-
"folderNames": ["icons"],
33-
"rootFolderNames": ["icons"]
30+
"folderNames": ["icons"]
3431
},
3532
{
3633
"name": "animate",
3734
"base": "animation",
3835
"color": "purple-400",
3936
"lightColor": "purple-100",
40-
"folderNames": ["animatedList"],
41-
"rootFolderNames": ["animatedList"]
37+
"folderNames": ["animated"]
4238
}
4339
],
4440
"material-icon-theme.files.associations": {

src/editor/annotationList.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
import { useI18n } from "vue-i18n";
2828
const { t } = useI18n();
2929
30-
import AnimatedList from "@/ui/animatedList/animatedList.vue";
31-
import AnimatedListItem from "@/ui/animatedList/animatedListItem.vue";
30+
import AnimatedList from "@/ui/animatedanimatedList.vue";
31+
import AnimatedListItem from "@/ui/animatedanimatedListItem.vue";
3232
import { VueDraggable } from "vue-draggable-plus";
3333
import Annotation from "./annotation.vue";
3434

src/editor/data.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,11 @@ import {
127127
InternalDatum,
128128
} from "../consts";
129129
import { ref, computed } from "vue";
130-
import StrInputs from "./inputs/strInputs.vue";
131-
import CoordInputs from "./inputs/coordInputs.vue";
132-
import SwitchInputs from "./inputs/switchInputs.vue";
133-
import CoordArrInputs from "./inputs/coordArrInputs.vue";
134-
import OptInputs from "./inputs/optInputs.vue";
130+
import StrInputs from "./legacyInputs/strInputs.vue";
131+
import CoordInputs from "./legacyInputs/coordInputs.vue";
132+
import SwitchInputs from "./legacyInputs/switchInputs.vue";
133+
import CoordArrInputs from "./legacyInputs/coordArrInputs.vue";
134+
import OptInputs from "./legacyInputs/optInputs.vue";
135135
136136
import SIconDelete from "@/ui/icons/delete.vue";
137137
import SIconHide from "@/ui/icons/hide.vue";

src/editor/dataList.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ const { t } = useI18n();
2929
3030
import { VueDraggable } from "vue-draggable-plus";
3131
32-
import AnimatedList from "@/ui/animatedList/animatedList.vue";
33-
import AnimatedListItem from "@/ui/animatedList/animatedListItem.vue";
32+
import AnimatedList from "@/ui/animatedanimatedList.vue";
33+
import AnimatedListItem from "@/ui/animatedanimatedListItem.vue";
3434
import DataItem from "./data.vue";
3535
3636
import { useProfile } from "@/states";

src/editor/inputs/coordArrInputs.vue renamed to src/editor/legacyInputs/coordArrInputs.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ import { VueDraggable } from "vue-draggable-plus";
6464
import SIconDragAlt from "@/ui/icons/dragalt.vue";
6565
import SIconDelete from "@/ui/icons/delete.vue";
6666
67-
import AnimatedList from "@/ui/animatedList/animatedList.vue";
68-
import AnimatedListItem from "@/ui/animatedList/animatedListItem.vue";
67+
import AnimatedList from "@/ui/animatedanimatedList.vue";
68+
import AnimatedListItem from "@/ui/animatedanimatedListItem.vue";
6969
7070
const { dataItem, fnType } = defineProps<InputProps>();
7171

0 commit comments

Comments
 (0)