renusify 2.2.3 → 2.2.4

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.
@@ -316,7 +316,8 @@ $btn-transition: opacity 0.2s map-get($transition, 'ease-in-out') !default;
316
316
 
317
317
  .btn-outlined,
318
318
  .btn-text {
319
- background-color: transparent
319
+ background-color: transparent;
320
+ color: inherit;
320
321
  }
321
322
 
322
323
  .btn-round,
@@ -2,7 +2,7 @@
2
2
  <r-select-input
3
3
  :label="$t('country','renusify')"
4
4
  v-model="country"
5
- v-if="!hideCountry"
5
+ v-if="!hideCountry||!country"
6
6
  @update:model-value="emit(true,true)"
7
7
  value="id"
8
8
  :searchLink="`${baseUrl}?lang=${$r.lang}`"
@@ -67,6 +67,9 @@ emits:['update:modelValue'],
67
67
  this.$refs.input.focus()
68
68
  },
69
69
  emit() {
70
+ if (this.unit === null) {
71
+ this.unit = this.units[0]
72
+ }
70
73
  this.$emit('update:modelValue', {value: this.lazyValue, unit: this.unit})
71
74
  }
72
75
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "renusify",
3
- "version": "2.2.3",
3
+ "version": "2.2.4",
4
4
  "description": "Vue3 Framework",
5
5
  "keywords": [
6
6
  "vuejs",
package/style/base.scss CHANGED
@@ -205,6 +205,7 @@ button,
205
205
  input,
206
206
  select,
207
207
  textarea {
208
+ color: currentColor;
208
209
  background-color: transparent;
209
210
  border-style: none;
210
211
  }