Skip to content

Commit

Permalink
0.4.14
Browse files Browse the repository at this point in the history
  • Loading branch information
averrin committed Nov 19, 2022
1 parent f0de5fb commit 77d636a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"@typhonjs-fvtt/svelte-standard": "^0.0.10",
"class-transformer": "^0.5.1",
"consola": "^2.15.3",
"crew-components": "../crew-components",
"crew-components": "averrin/crew-components",
"daisyui": "^2.22.0",
"fast-sort": "^3.2.0",
"filtrex": "^3.0.0",
Expand Down
22 changes: 22 additions & 0 deletions src/view/EditWidgetDialog.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<svelte:options accessors />

<script>
import { v4 as uuidv4 } from "uuid";
import AlphaShell from "crew-components/AlphaShell";
import { onDestroy, tick } from "svelte";
import InlineButton from "crew-components/InlineButton";
import { isPremium } from "crew-components/premium";
import { SETTINGS, setting, onHook } from "crew-components/helpers";
import RemoveButton from "crew-components/RemoveButton";
import IconButton from "crew-components/IconButton";
export let elementRoot;
export let id;
</script>

<AlphaShell bind:elementRoot {id} fullHeight={true} temp={true}>
boom
</AlphaShell>

0 comments on commit 77d636a

Please sign in to comment.