+
{#if type !== "boolean" && label}
@@ -94,31 +83,6 @@
{type}
{...props}
/>
- {#if bindable && !key.startsWith("_") && type === "text"}
-
-
-
-
-
- Add the objects on the left to enrich your text.
-
-
- (tempValue = e.detail)}
- bindableProperties={allBindings}
- allowJS
- />
-
- {/if}
@@ -130,40 +94,10 @@
justify-content: flex-start;
align-items: stretch;
}
-
.label {
padding-bottom: var(--spectrum-global-dimension-size-65);
}
-
.control {
position: relative;
}
-
- .icon {
- right: 1px;
- top: 1px;
- bottom: 1px;
- position: absolute;
- justify-content: center;
- align-items: center;
- display: flex;
- flex-direction: row;
- box-sizing: border-box;
- border-left: 1px solid var(--spectrum-alias-border-color);
- border-top-right-radius: var(--spectrum-alias-border-radius-regular);
- border-bottom-right-radius: var(--spectrum-alias-border-radius-regular);
- width: 31px;
- color: var(--spectrum-alias-text-color);
- background-color: var(--spectrum-global-color-gray-75);
- transition: background-color
- var(--spectrum-global-animation-duration-100, 130ms),
- box-shadow var(--spectrum-global-animation-duration-100, 130ms),
- border-color var(--spectrum-global-animation-duration-100, 130ms);
- }
- .icon:hover {
- cursor: pointer;
- color: var(--spectrum-alias-text-color-hover);
- background-color: var(--spectrum-global-color-gray-50);
- border-color: var(--spectrum-alias-border-color-hover);
- }
diff --git a/packages/builder/src/components/design/PropertiesPanel/PropertyControls/URLSelect.svelte b/packages/builder/src/components/design/PropertiesPanel/PropertyControls/URLSelect.svelte
index fb8b48b9ed..dc2fa7ad89 100644
--- a/packages/builder/src/components/design/PropertiesPanel/PropertyControls/URLSelect.svelte
+++ b/packages/builder/src/components/design/PropertiesPanel/PropertyControls/URLSelect.svelte
@@ -10,4 +10,10 @@
.filter(x => x != null)
-
+
diff --git a/packages/builder/src/components/design/PropertiesPanel/PropertyControls/componentSettings.js b/packages/builder/src/components/design/PropertiesPanel/PropertyControls/componentSettings.js
index 69bb3f8b47..b9b227bef0 100644
--- a/packages/builder/src/components/design/PropertiesPanel/PropertyControls/componentSettings.js
+++ b/packages/builder/src/components/design/PropertiesPanel/PropertyControls/componentSettings.js
@@ -15,10 +15,10 @@ import URLSelect from "./URLSelect.svelte"
import OptionsEditor from "./OptionsEditor/OptionsEditor.svelte"
import FormFieldSelect from "./FormFieldSelect.svelte"
import ValidationEditor from "./ValidationEditor/ValidationEditor.svelte"
-import Input from "./Input.svelte"
+import DrawerBindableCombobox from "components/common/bindings/DrawerBindableCombobox.svelte"
const componentMap = {
- text: Input,
+ text: DrawerBindableCombobox,
select: Select,
dataSource: DataSourceSelect,
dataProvider: DataProviderSelect,
diff --git a/packages/builder/src/components/design/PropertiesPanel/ScreenSettingsSection.svelte b/packages/builder/src/components/design/PropertiesPanel/ScreenSettingsSection.svelte
index efe51ebdac..4a7c77746e 100644
--- a/packages/builder/src/components/design/PropertiesPanel/ScreenSettingsSection.svelte
+++ b/packages/builder/src/components/design/PropertiesPanel/ScreenSettingsSection.svelte
@@ -54,7 +54,6 @@
{#each screenSettings as def (`${componentInstance._id}-${def.key}`)}