@mixd-id/web-scaffold 0.1.250801005 → 0.1.250801006

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.250801005",
4
+ "version": "0.1.250801006",
5
5
  "scripts": {
6
6
  "dev": "vite serve",
7
7
  "build": "vite build",
@@ -37,12 +37,12 @@ export default{
37
37
 
38
38
  .comp{
39
39
  @apply min-w-[200px] p-1;
40
- @apply border-[1px] border-border-200 bg-base-300 hover:border-text-300 rounded-lg;
40
+ @apply border-[1px] border-border-200 bg-base-300 hover:border-border-300 rounded-lg;
41
41
  @apply flex flex-row items-start flex-nowrap;
42
42
  }
43
43
 
44
44
  .item{
45
- @apply border-[1px] border-border-200 hover:border-text-300 rounded-lg p-1 px-2;
45
+ @apply border-[1px] border-border-200 hover:border-border-300 rounded-lg p-1 px-2;
46
46
  @apply flex flex-row items-center gap-2;
47
47
  }
48
48
 
@@ -78,8 +78,11 @@
78
78
  </div>
79
79
  </div>
80
80
 
81
- <ContextMenu v-if="mode === 'popup'" :state="!!(contextMenu.caller)" :caller="contextMenu.caller ?? null"
82
- @dismiss="contextMenu = {}">
81
+ <ContextMenu v-if="mode === 'popup'"
82
+ class="mt-3"
83
+ :state="!!(contextMenu.caller)"
84
+ :caller="contextMenu.caller ?? null"
85
+ @dismiss="contextMenu = {}">
83
86
  <div class="p-4">
84
87
  <div class="flex items-center">
85
88
  <h4 class="flex-1">{{ contextMenuTitle }}</h4>
@@ -322,11 +325,11 @@ export default{
322
325
 
323
326
  .datepicker {
324
327
  @apply flex overflow-hidden cursor-pointer relative;
325
- @apply border-[1px] border-border-200 bg-base-300 rounded-lg;
328
+ @apply border-[1px] border-border-200 bg-base-400 rounded-lg;
326
329
  @apply cursor-pointer;
327
330
  }
328
331
  .datepicker:not(.readonly){
329
- @apply hover:border-text-300
332
+ @apply hover:border-border-300
330
333
  }
331
334
  .datepicker select{
332
335
  @apply appearance-none p-2 bg-transparent text-center outline-none;
@@ -164,7 +164,7 @@ export default {
164
164
  @apply border-[1px] border-border-200 bg-base-400;
165
165
  }
166
166
  .dropdown:not(.readonly){
167
- @apply hover:border-text-300;
167
+ @apply hover:border-border-300;
168
168
  }
169
169
  .dropdown.readonly{
170
170
  @apply bg-text-50;
@@ -37,7 +37,7 @@
37
37
  </div>
38
38
  </div>
39
39
  </Dropdown>
40
- <button class="border-[1px] border-border-200 bg-base-300 hover:border-text-300 rounded-lg p-3"
40
+ <button class="border-[1px] border-border-200 bg-base-300 hover:border-border-300 rounded-lg p-3"
41
41
  @click="openPreset(presetIdx)">
42
42
  <svg width="15" height="15" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="fill-text-300 hover:fill-primary"><!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M64 256V160H224v96H64zm0 64H224v96H64V320zm224 96V320H448v96H288zM448 256H288V160H448v96zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z"/></svg>
43
43
  </button>
@@ -122,7 +122,7 @@ export default{
122
122
 
123
123
  .comp{
124
124
  @apply flex flex-col divide-y divide-border-50 relative;
125
- @apply border-[1px] border-border-200 bg-base-300 hover:border-text-300 rounded-lg;
125
+ @apply border-[1px] border-border-200 bg-base-300 hover:border-border-300 rounded-lg;
126
126
  }
127
127
 
128
128
  </style>
@@ -111,7 +111,7 @@ export default{
111
111
  @apply border-[1px] border-border-200 bg-base-300;
112
112
  }
113
113
  .dropdown:not(.readonly){
114
- @apply hover:border-text-300;
114
+ @apply hover:border-border-300;
115
115
  }
116
116
  .dropdown.readonly{
117
117
  @apply bg-text-50;
@@ -76,7 +76,7 @@ export default{
76
76
 
77
77
  .switch label{
78
78
  @apply w-[3rem] inline-block rounded-2xl bg-base-300 h-[2rem];
79
- @apply border-[1px] border-border-200 hover:border-text-300;
79
+ @apply border-[1px] border-border-200 hover:border-border-300;
80
80
  }
81
81
 
82
82
  .switch label>span{
@@ -144,7 +144,7 @@ export default{
144
144
 
145
145
  .textarea{
146
146
  @apply min-h-[var(--h-cp)];
147
- @apply flex items-start border-[1px] border-border-200 bg-base-500 rounded-lg overflow-hidden;
147
+ @apply flex items-start border-[1px] border-border-200 bg-base-400 rounded-lg overflow-hidden;
148
148
  @apply !max-h-[200px];
149
149
  }
150
150
  .textarea textarea{
@@ -105,7 +105,7 @@ export default{
105
105
  @apply text-center;
106
106
  }
107
107
  .timepicker:not(.readonly) select{
108
- @apply hover:border-text-300;
108
+ @apply hover:border-border-300;
109
109
  }
110
110
 
111
111
  .timepicker.timepicker-sm select{