classcard-ui 0.2.329 → 0.2.332

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,6 +1,6 @@
1
1
  {
2
2
  "name": "classcard-ui",
3
- "version": "0.2.329",
3
+ "version": "0.2.332",
4
4
  "main": "dist/classcard-ui.common.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -79,8 +79,9 @@ export default {
79
79
 
80
80
  .ql-editor {
81
81
  @apply text-sm text-gray-900;
82
+ max-height: 150px;
82
83
  }
83
84
  .ql-editor.ql-blank::before {
84
- @apply text-gray-500 not-italic;
85
+ @apply not-italic text-gray-500;
85
86
  }
86
87
  </style>
@@ -28,8 +28,7 @@
28
28
  <a
29
29
  v-for="(item, index) in items"
30
30
  v-bind:key="item.text"
31
- @mousedown.stop="dropdownAction(item)"
32
- @click.stop
31
+ @mousedown.stop.prevent="dropdownAction(item)"
33
32
  class="flex cursor-pointer px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 hover:text-gray-900"
34
33
  :class="item.class"
35
34
  role="menuitem"
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div>
3
3
  <label class="text-sm text-gray-900">{{ label }}</label>
4
- <div class="w-full mt-1 shadow-sm">
4
+ <div class="mt-1 w-full shadow-sm">
5
5
  <vue-tel-input v-bind="bindProps" :autoFormat="false" v-model="value"></vue-tel-input>
6
6
  </div>
7
7
  </div>
@@ -31,6 +31,7 @@ export default {
31
31
  showDialCode: false,
32
32
  enabledCountryCode: false,
33
33
  mode: "international",
34
+ validCharactersOnly: true,
34
35
  },
35
36
  };
36
37
  },