feat(ThemeCreator): update colour picker on edit

This commit is contained in:
SethBurkart123
2024-10-06 09:34:54 +11:00
parent 386445c7ee
commit 922a3d5837
@@ -70,10 +70,10 @@
if (tempTheme) { if (tempTheme) {
theme = loadedTheme theme = loadedTheme
themeLoaded = true // Set this to true after theme is loaded themeLoaded = true
} }
} else { } else {
themeLoaded = true // Set to true if no theme to load themeLoaded = true
} }
}); });
@@ -176,7 +176,9 @@
{:else if item.type === 'slider'} {:else if item.type === 'slider'}
<Slider {...(item.props as SliderProps)} /> <Slider {...(item.props as SliderProps)} />
{:else if item.type === 'colourPicker'} {:else if item.type === 'colourPicker'}
<ColourPicker savePresets={false} standalone={true} {...(item.props)} /> {#key themeLoaded}
<ColourPicker savePresets={false} standalone={true} {...(item.props)} />
{/key}
{:else if item.type === 'codeEditor'} {:else if item.type === 'codeEditor'}
{#key themeLoaded} {#key themeLoaded}
<CodeEditor {...(item.props as CodeEditorProps)} /> <CodeEditor {...(item.props as CodeEditorProps)} />