@mixd-id/web-scaffold 0.1.240411030 → 0.1.240411031

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.240411030",
4
+ "version": "0.1.240411031",
5
5
  "scripts": {
6
6
  "dev": "vite serve",
7
7
  "build": "vite build",
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
 
3
3
  <div v-if="mode === ''" :class="compClass" class="divide-x divide-text-50">
4
- <div class="w-[50px] flex flex-row items-center relative">
4
+ <div class="w-[80px] flex flex-row items-center relative">
5
5
  <select v-model="DD" class="text-left w-full flex-1 px-3">
6
6
  <option disabled selected>Tanggal</option>
7
7
  <option v-for="d in 31" :value="d.toString().padStart(2, '0')">{{ d }}</option>
@@ -14,7 +14,7 @@
14
14
  </div>
15
15
  </div>
16
16
 
17
- <div class="w-[60px] flex flex-row items-center relative">
17
+ <div class="w-[120px] flex flex-row items-center relative">
18
18
  <select v-model="MM" class="text-left w-full flex-1 px-3">
19
19
  <option disabled selected>Bulan</option>
20
20
  <option v-for="mmm in months" :value="mmm[0]">{{ mmm[1] }}</option>
@@ -27,7 +27,7 @@
27
27
  </div>
28
28
  </div>
29
29
 
30
- <div class="w-[70px] flex flex-row items-center relative">
30
+ <div class="w-[100px] flex flex-row items-center relative">
31
31
  <select v-model="YYYY" class="text-left w-full flex-1 px-3">
32
32
  <option disabled selected>Tahun</option>
33
33
  <option v-for="yyyy in years" :value="yyyy">{{ yyyy }}</option>
@@ -127,8 +127,6 @@ for(let i = -100 ; i < 50 ; i++){
127
127
  YEARS.push(currentYear + i)
128
128
  }
129
129
 
130
- const currentDate = dayjs().format('YYYY-MM-DD')
131
-
132
130
  export default{
133
131
 
134
132
  setup(props, { emit }){
@@ -180,12 +180,6 @@
180
180
 
181
181
  <div v-else-if="store.tabIndex === 2" class="flex-1 overflow-y-auto p-6 flex flex-col gap-6">
182
182
 
183
- <div v-if="store.layoutMode && layout" class="flex flex-row gap-2">
184
- <label class="flex-1 text-text-400">{{ $t('Style')}}</label>
185
- <button type="button" class="text-primary"
186
- @click="store.selectedComponent = [ 'style' ]">Edit Style</button>
187
- </div>
188
-
189
183
  <div>
190
184
  <div class="flex flex-row gap-1 items-end cursor-pointer">
191
185
  <small class="flex-1 text-text-400 text-overflow-ellipsis">{{ $t('Components')}}</small>