@mixd-id/web-scaffold 0.1.230406397 → 0.1.230406399
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.
package/package.json
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<div class="flex flex-row items-start gap-2">
|
|
26
26
|
<Image :ref="`image${index}`"
|
|
27
27
|
:src="imageSrc(item.props.src[index])"
|
|
28
|
-
class="
|
|
28
|
+
class="w-[100px] min-h-[30px] rounded-xl bg-text-50"
|
|
29
29
|
:editable="true"
|
|
30
30
|
@click="$refs[`image${index}`][0].edit()"
|
|
31
31
|
@change="(base64, file) => { uploadImage(file).then((res) => item.props.src[index] = res.name); apply() }">
|
|
@@ -495,15 +495,14 @@
|
|
|
495
495
|
:style="section3Style">
|
|
496
496
|
|
|
497
497
|
<div class="px-6 py-4 flex flex-row items-center gap-2">
|
|
498
|
+
<Switch v-model="currentItem.props.enabled"/>
|
|
498
499
|
<Textbox v-if="currentItem.type !== 'Style'"
|
|
499
500
|
v-model="currentItem.props.name"
|
|
500
501
|
:placeholder="currentItem.type"
|
|
501
|
-
class="bg-base-500
|
|
502
|
-
item-class="p-0 px-2"
|
|
502
|
+
class="bg-base-500 flex-1"
|
|
503
503
|
variant="minimal">
|
|
504
504
|
<template #start>
|
|
505
505
|
<div class="pl-3">
|
|
506
|
-
<Switch v-model="currentItem.props.enabled"/>
|
|
507
506
|
</div>
|
|
508
507
|
</template>
|
|
509
508
|
</Textbox>
|