diff --git a/packages/client/manifest.json b/packages/client/manifest.json index 45bb38439a..980bd4585e 100644 --- a/packages/client/manifest.json +++ b/packages/client/manifest.json @@ -84,7 +84,6 @@ "description": "This component contains things within itself", "icon": "Selection", "hasChildren": true, - "showSettingsBar": true, "size": { "width": 400, "height": 200 @@ -283,7 +282,6 @@ "description": "A basic html button that is ready for styling", "icon": "Button", "editable": true, - "showSettingsBar": true, "size": { "width": 105, "height": 35 @@ -420,7 +418,6 @@ "section" ], "hasChildren": true, - "showSettingsBar": true, "size": { "width": 400, "height": 100 @@ -683,7 +680,6 @@ "illegalChildren": [ "section" ], - "showSettingsBar": true, "editable": true, "size": { "width": 400, @@ -809,7 +805,6 @@ "illegalChildren": [ "section" ], - "showSettingsBar": true, "editable": true, "size": { "width": 400, @@ -931,7 +926,6 @@ "tag": { "name": "Tag", "icon": "Label", - "showSettingsBar": true, "size": { "width": 100, "height": 25 @@ -1189,7 +1183,6 @@ "name": "Link", "description": "A basic link component for internal and external links", "icon": "Link", - "showSettingsBar": true, "editable": true, "size": { "width": 200, @@ -3927,7 +3920,6 @@ "dynamicfilter": { "name": "Dynamic Filter", "icon": "Filter", - "showSettingsBar": true, "size": { "width": 100, "height": 35 @@ -4797,7 +4789,6 @@ "section" ], "hasChildren": true, - "showSettingsBar": true, "size": { "width": 400, "height": 100 @@ -5270,4 +5261,4 @@ "suffix": "repeater" } } -} +} \ No newline at end of file diff --git a/packages/client/src/components/preview/SettingsBar.svelte b/packages/client/src/components/preview/SettingsBar.svelte index 332409986a..f72994e496 100644 --- a/packages/client/src/components/preview/SettingsBar.svelte +++ b/packages/client/src/components/preview/SettingsBar.svelte @@ -16,7 +16,7 @@ let measured = false $: definition = $componentStore.selectedComponentDefinition - $: showBar = definition?.showSettingsBar && !$dndIsDragging + $: showBar = definition?.showSettingsBar !== false && !$dndIsDragging $: { if (!showBar) { measured = false