@farm-investimentos/front-mfe-components 15.8.5 → 15.8.6

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": "@farm-investimentos/front-mfe-components",
3
- "version": "15.8.5",
3
+ "version": "15.8.6",
4
4
  "author": "farm investimentos",
5
5
  "private": false,
6
6
  "main": "./dist/front-mfe-components.common.js",
@@ -50,6 +50,8 @@
50
50
  :readonly="isReadonly"
51
51
  :mask="`${isReadonly ? '' : '##/##/####'}`"
52
52
  :id="inputId"
53
+ :hint="hint"
54
+ :persistentHint="persistentHint"
53
55
  :rules="rules"
54
56
  :disabled="disabled"
55
57
  @keyup="keyUpInput"
@@ -146,6 +148,17 @@ export default defineComponent({
146
148
  type: Boolean,
147
149
  default: false,
148
150
  },
151
+ hint: {
152
+ type: String,
153
+ default: null,
154
+ },
155
+ /**
156
+ * Always show hint text
157
+ */
158
+ persistentHint: {
159
+ type: Boolean,
160
+ default: false,
161
+ },
149
162
  },
150
163
  data() {
151
164
  const s = this.formatDateRange(this.value);
@@ -43,7 +43,6 @@
43
43
  <template v-slot:activator>
44
44
  <farm-textfield-v2
45
45
  v-model="fieldRange"
46
- v-bind="$attrs"
47
46
  icon="calendar"
48
47
  ref="inputCalendar"
49
48
  :readonly="readonly"