@mixd-id/web-scaffold 0.1.230406398 → 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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mixd-id/web-scaffold",
3
3
  "private": false,
4
- "version": "0.1.230406398",
4
+ "version": "0.1.230406399",
5
5
  "scripts": {
6
6
  "dev": "vite serve",
7
7
  "build": "vite build",
@@ -125,8 +125,8 @@ const plugin = Plugin(function({ addBase, addUtilities, config, theme }) {
125
125
  },
126
126
 
127
127
  '::-webkit-scrollbar': {
128
- 'height': '8px',
129
- 'width': '8px',
128
+ 'height': '5px',
129
+ 'width': '5px',
130
130
  'background': 'transparent'
131
131
  },
132
132
 
@@ -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="flex-1 min-h-[60px] bg-text-50 rounded-lg"
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() }">
@@ -47,7 +47,7 @@ export default{
47
47
 
48
48
  values: {
49
49
  type: Array,
50
- default: [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ]
50
+ default: [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 'auto' ]
51
51
  },
52
52
 
53
53
  },
@@ -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 rounded-full flex-1"
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>