@mixd-id/web-scaffold 0.1.230406164 → 0.1.230406165

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.230406164",
4
+ "version": "0.1.230406165",
5
5
  "scripts": {
6
6
  "dev": "vite serve",
7
7
  "build": "vite build",
@@ -266,6 +266,7 @@ export default{
266
266
  .datepicker {
267
267
  @apply min-h-[var(--h-cp)];
268
268
  @apply flex items-center rounded-lg overflow-hidden cursor-pointer relative;
269
+ @apply border-[1px] border-text-200;
269
270
  @apply cursor-pointer;
270
271
  }
271
272
  .datepicker:not(.readonly){
@@ -314,7 +315,7 @@ export default{
314
315
  @apply flex flex-row gap-2;
315
316
  }
316
317
  .mode- select{
317
- @apply bg-base border-[1px] border-text-200 rounded-lg;
318
+ @apply rounded-lg;
318
319
  @apply min-h-[var(--h-cp)];
319
320
  }
320
321
  .mode- select:first-child{
@@ -44,9 +44,9 @@ let modals = []
44
44
  const registerModal = (modal) => {
45
45
  if(modals.includes(modal)) return
46
46
 
47
- modals.forEach((_) => {
47
+ /*modals.forEach((_) => {
48
48
  _.isDisabled = 1
49
- })
49
+ })*/
50
50
 
51
51
  modals.push(modal)
52
52
  }
@@ -54,8 +54,8 @@ const registerModal = (modal) => {
54
54
  const unRegisterModal = (modal) => {
55
55
  modals = modals.filter((_) => _ !== modal)
56
56
 
57
- if(modals.length > 0)
58
- modals[modals.length - 1].isDisabled = 0
57
+ /*if(modals.length > 0)
58
+ modals[modals.length - 1].isDisabled = 0*/
59
59
  }
60
60
 
61
61
  export default{
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div :class="computedClass">
3
3
  <slot name="start"></slot>
4
- <textarea
4
+ <textarea :maxlength="maxlength"
5
5
  :placeholder="placeholder" :rows="rows" ref="input" @focus="isActive = true" @blur="onBlur" @input="onInput"
6
6
  :value="modelValue" :readonly="Boolean(readonly)" />
7
7
  <div v-if="state === -2 && !!(errors)">
@@ -57,6 +57,8 @@ export default{
57
57
 
58
58
  rows: String,
59
59
 
60
+ maxlength: undefined,
61
+
60
62
  },
61
63
 
62
64
  watch:{