|
|
@ -2,6 +2,7 @@ |
|
|
import { Layout, Heading, Body, Divider, Label, Select } from "@budibase/bbui" |
|
|
import { Layout, Heading, Body, Divider, Label, Select } from "@budibase/bbui" |
|
|
import { themeStore } from "builderStore" |
|
|
import { themeStore } from "builderStore" |
|
|
import { capitalise } from "helpers" |
|
|
import { capitalise } from "helpers" |
|
|
|
|
|
import { Constants } from "@budibase/frontend-core" |
|
|
</script> |
|
|
</script> |
|
|
|
|
|
|
|
|
<Layout noPadding> |
|
|
<Layout noPadding> |
|
|
@ -14,7 +15,7 @@ |
|
|
<div class="field"> |
|
|
<div class="field"> |
|
|
<Label size="L">Builder theme</Label> |
|
|
<Label size="L">Builder theme</Label> |
|
|
<Select |
|
|
<Select |
|
|
options={$themeStore.options} |
|
|
options={Constants.ThemeOptions} |
|
|
bind:value={$themeStore.theme} |
|
|
bind:value={$themeStore.theme} |
|
|
placeholder={null} |
|
|
placeholder={null} |
|
|
getOptionLabel={capitalise} |
|
|
getOptionLabel={capitalise} |
|
|
|