-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed controllers from safelight Fixed exports
- Loading branch information
Showing
26 changed files
with
182 additions
and
607 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<template> | ||
<div class="flex items-center justify-center"> | ||
<p>Monitor</p> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"></script> |
5 changes: 5 additions & 0 deletions
5
packages/safelight/src/components/Editor/Properties/ItemProperties.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<template> | ||
<div class="flex items-center justify-center"> | ||
<p>Item properties</p> | ||
</div> | ||
</template> |
68 changes: 68 additions & 0 deletions
68
packages/safelight/src/components/Editor/Timeline/Timeline.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<template> | ||
<SLTimeline :items="items" /> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { Timeline as SLTimeline, type TimelineItem } from '@safelight/timeline'; | ||
import { v4 as uuidv4 } from 'uuid'; | ||
import { reactive } from 'vue'; | ||
const items = reactive<TimelineItem[]>([ | ||
{ | ||
id: uuidv4(), | ||
name: '100 start', | ||
start: 100, | ||
duration: 500, | ||
layer: 0 | ||
}, | ||
{ | ||
id: uuidv4(), | ||
name: '588 start', | ||
start: 588, | ||
duration: 515, | ||
layer: 5 | ||
}, | ||
{ | ||
id: uuidv4(), | ||
name: '314 start', | ||
start: 314, | ||
duration: 749, | ||
layer: 2 | ||
}, | ||
{ | ||
id: uuidv4(), | ||
name: '300 start', | ||
start: 300, | ||
duration: 263, | ||
layer: 3 | ||
}, | ||
{ | ||
id: uuidv4(), | ||
name: '30 start', | ||
start: 30, | ||
duration: 770, | ||
layer: 17 | ||
}, | ||
{ | ||
id: uuidv4(), | ||
name: '664 start', | ||
start: 664, | ||
duration: 266, | ||
layer: 4 | ||
}, | ||
{ | ||
id: uuidv4(), | ||
name: '366 start', | ||
start: 366, | ||
duration: 135, | ||
layer: 6 | ||
}, | ||
{ | ||
id: uuidv4(), | ||
name: '380 start', | ||
start: 380, | ||
duration: 451, | ||
layer: 1 | ||
} | ||
]); | ||
</script> |
95 changes: 0 additions & 95 deletions
95
packages/safelight/src/controllers/Compiler/EsbuildScriptCompiler.ts
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
packages/safelight/src/controllers/Project/SimpleProject.ts
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
packages/safelight/src/controllers/Storage/IndexDbStorage.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.