From cc35ac6e361fa532b57dd1639f020bd84ca36c10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Keviin=20=C3=85berg=20Kultalahti?= Date: Fri, 26 Feb 2021 15:23:41 +0100 Subject: [PATCH] remove genericpopover component --- .../SetupPanel/GenericBindingPopover.svelte | 218 ------------------ 1 file changed, 218 deletions(-) delete mode 100644 packages/builder/src/components/automation/SetupPanel/GenericBindingPopover.svelte diff --git a/packages/builder/src/components/automation/SetupPanel/GenericBindingPopover.svelte b/packages/builder/src/components/automation/SetupPanel/GenericBindingPopover.svelte deleted file mode 100644 index f12ab35348..0000000000 --- a/packages/builder/src/components/automation/SetupPanel/GenericBindingPopover.svelte +++ /dev/null @@ -1,218 +0,0 @@ - - - -
-
- Available bindings - - - -
-
- {#each categories as [categoryName, bindings]} - {categoryName} - - {#each bindings.filter(binding => - binding.label.match(searchRgx) - ) as binding} -
onClickBinding(binding)}> - {binding.label} - {binding.type} -
-
- {binding.description || ''} -
-
- {/each} - {/each} - Helpers - - {#each helpers.filter(helper => helper.label.match(searchRgx) || helper.description.match(searchRgx)) as helper} -
onClickBinding(helper)}> - {helper.label} -
-
- {@html helper.description || ''} -
-
{helper.example || ''}
-
- {/each} -
-
-
-
- Data binding - - Binding connects one piece of data to another and makes it dynamic. - Click the objects on the left to add them to the textbox. - -