@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/dist/front-mfe-components.common.js +142 -128
- package/dist/front-mfe-components.common.js.map +1 -1
- package/dist/front-mfe-components.css +1 -1
- package/dist/front-mfe-components.umd.js +142 -128
- package/dist/front-mfe-components.umd.js.map +1 -1
- package/dist/front-mfe-components.umd.min.js +1 -1
- package/dist/front-mfe-components.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/DatePicker/DatePicker.vue +13 -0
- package/src/components/RangeDatePicker/RangeDatePicker.vue +0 -1
package/package.json
CHANGED
|
@@ -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);
|