classcard-ui 0.2.238 → 0.2.242

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.238",
3
+ "version": "0.2.242",
4
4
  "main": "dist/classcard-ui.common.js",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -152,9 +152,7 @@ export default {
152
152
  placeholder: {
153
153
  type: String,
154
154
  },
155
- value: {
156
- type: String,
157
- },
155
+ value: [String, Number],
158
156
  hint: { type: String },
159
157
  helpText: {
160
158
  type: String,
@@ -1,6 +1,8 @@
1
1
  <template>
2
2
  <div>
3
- <label v-if="label" class="text-sm text-gray-900">{{ label }}</label>
3
+ <label v-if="label" class="text-sm font-medium text-gray-900">{{
4
+ label
5
+ }}</label>
4
6
  <p v-if="subLabel" class="text-sm text-gray-500">{{ subLabel }}</p>
5
7
  <v-select
6
8
  class="text-sm mt-1"
@@ -34,7 +34,7 @@ export default {
34
34
  wrapperClasses: "c-phone-wrapper",
35
35
  showDialCode: false,
36
36
  enabledCountryCode: false,
37
- mode: "auto",
37
+ mode: "international",
38
38
  },
39
39
  };
40
40
  },