@farm-investimentos/front-mfe-components 15.8.7 → 15.9.0
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 +102 -102
- 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 +102 -102
- 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 +2 -2
package/package.json
CHANGED
|
@@ -117,7 +117,7 @@ export default defineComponent({
|
|
|
117
117
|
/**
|
|
118
118
|
* Text message error
|
|
119
119
|
*/
|
|
120
|
-
|
|
120
|
+
minText: {
|
|
121
121
|
type: String,
|
|
122
122
|
default: 'A data está fora do período permitido',
|
|
123
123
|
},
|
|
@@ -214,7 +214,7 @@ export default defineComponent({
|
|
|
214
214
|
if (dateSelected.getTime() >= dateMin.getTime()) {
|
|
215
215
|
return true;
|
|
216
216
|
}
|
|
217
|
-
return this.
|
|
217
|
+
return this.minText;
|
|
218
218
|
}
|
|
219
219
|
return true;
|
|
220
220
|
},
|