mirror of https://github.com/Budibase/budibase.git
9 changed files with 62 additions and 2 deletions
@ -0,0 +1,21 @@ |
|||||
|
<script> |
||||
|
import NavigationPanel from "components/design/NavigationPanel/NavigationPanel.svelte" |
||||
|
import { goto } from "@roxi/routify" |
||||
|
import { Layout, Search } from "@budibase/bbui" |
||||
|
|
||||
|
let searchString |
||||
|
</script> |
||||
|
|
||||
|
<NavigationPanel |
||||
|
title="Components" |
||||
|
showAddButton |
||||
|
onClickAddButton={() => $goto("./new")} |
||||
|
> |
||||
|
<Layout paddingX="L" paddingY="XL" gap="S"> |
||||
|
<Search |
||||
|
placeholder="Search" |
||||
|
value={searchString} |
||||
|
on:change={e => (searchString = e.detail)} |
||||
|
/> |
||||
|
</Layout> |
||||
|
</NavigationPanel> |
||||
@ -0,0 +1,5 @@ |
|||||
|
<script> |
||||
|
import SettingsPanel from "components/design/SettingsPanel/SettingsPanel.svelte" |
||||
|
</script> |
||||
|
|
||||
|
<SettingsPanel title="Components" /> |
||||
@ -0,0 +1,10 @@ |
|||||
|
<script> |
||||
|
import { store } from "builderStore" |
||||
|
import AppPanel from "components/design/AppPanel/AppPanel.svelte" |
||||
|
import ComponentNavigationPanel from "./_components/ComponentNavigationPanel.svelte" |
||||
|
import ComponentSettingsPanel from "./_components/ComponentSettingsPanel.svelte" |
||||
|
</script> |
||||
|
|
||||
|
<ComponentNavigationPanel /> |
||||
|
<AppPanel /> |
||||
|
<ComponentSettingsPanel /> |
||||
@ -0,0 +1,21 @@ |
|||||
|
<script> |
||||
|
import NavigationPanel from "components/design/NavigationPanel/NavigationPanel.svelte" |
||||
|
import { goto } from "@roxi/routify" |
||||
|
import { Layout, Search } from "@budibase/bbui" |
||||
|
|
||||
|
let searchString |
||||
|
</script> |
||||
|
|
||||
|
<NavigationPanel |
||||
|
title="Components" |
||||
|
showAddButton |
||||
|
onClickAddButton={() => $goto("../new")} |
||||
|
> |
||||
|
<Layout paddingX="L" paddingY="XL" gap="S"> |
||||
|
<Search |
||||
|
placeholder="Search" |
||||
|
value={searchString} |
||||
|
on:change={e => (searchString = e.detail)} |
||||
|
/> |
||||
|
</Layout> |
||||
|
</NavigationPanel> |
||||
Loading…
Reference in new issue