poe-svelte-ui-lib 1.4.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -106,13 +106,6 @@
|
|
|
106
106
|
/>
|
|
107
107
|
{/if}
|
|
108
108
|
</div>
|
|
109
|
-
<UI.Select
|
|
110
|
-
label={{ name: $t('constructor.props.type') }}
|
|
111
|
-
type="buttons"
|
|
112
|
-
value={initialType}
|
|
113
|
-
options={$optionsStore.ACCORDION_TYPE_OPTIONS}
|
|
114
|
-
onUpdate={(item) => updateProperty('outline', item.value as boolean, component, onPropertyChange)}
|
|
115
|
-
/>
|
|
116
109
|
</div>
|
|
117
110
|
<div class="flex w-1/3 flex-col items-center gap-2 px-2">
|
|
118
111
|
<div class="flex">
|
|
@@ -151,13 +144,6 @@
|
|
|
151
144
|
value={$optionsStore.ACCESS_OPTION.find((o) => o.value === component.access)}
|
|
152
145
|
onUpdate={(option) => onPropertyChange({ access: option.value })}
|
|
153
146
|
/>
|
|
154
|
-
<UI.Select
|
|
155
|
-
label={{ name: $t('constructor.props.type') }}
|
|
156
|
-
type="buttons"
|
|
157
|
-
value={initialType}
|
|
158
|
-
options={$optionsStore.ACCORDION_TYPE_OPTIONS}
|
|
159
|
-
onUpdate={(item) => updateProperty('outline', item.value as boolean, component, onPropertyChange)}
|
|
160
|
-
/>
|
|
161
147
|
<div class="flex w-full gap-4">
|
|
162
148
|
<UI.Input
|
|
163
149
|
label={{ name: $t('constructor.props.size.height') }}
|