@farm-investimentos/front-mfe-components 15.3.5 → 15.3.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 +99 -99
- 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 +99 -99
- 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.stories.js +22 -2
- package/src/components/DatePicker/DatePicker.vue +1 -1
package/package.json
CHANGED
|
@@ -73,10 +73,18 @@ export const IsNull = () => ({
|
|
|
73
73
|
};
|
|
74
74
|
},
|
|
75
75
|
template: `<div style='max-width: 320px'>
|
|
76
|
-
|
|
76
|
+
<farm-input-datepicker inputId="input-custom-id-8" v-model="date" :required="true" />
|
|
77
77
|
</div>`,
|
|
78
78
|
});
|
|
79
79
|
|
|
80
|
+
export const BottomFalse = () => ({
|
|
81
|
+
data() {
|
|
82
|
+
return {
|
|
83
|
+
date: '2023-08-01',
|
|
84
|
+
};
|
|
85
|
+
},
|
|
86
|
+
template: `<div style='max-width: 320px'><farm-input-datepicker position="bottom" inputId="input-custom-id-1" v-model="date" /></div>`,
|
|
87
|
+
});
|
|
80
88
|
export const TopPositioned = () => ({
|
|
81
89
|
data() {
|
|
82
90
|
return {
|
|
@@ -87,4 +95,16 @@ export const TopPositioned = () => ({
|
|
|
87
95
|
<farm-input-datepicker inputId="input-custom-id-0" v-model="date" position="top" />
|
|
88
96
|
{{ date }}
|
|
89
97
|
</div>`,
|
|
90
|
-
});
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
export const CenterPositioned = () => ({
|
|
101
|
+
data() {
|
|
102
|
+
return {
|
|
103
|
+
date: '',
|
|
104
|
+
};
|
|
105
|
+
},
|
|
106
|
+
template: `<div style='max-width: 320px'>
|
|
107
|
+
<farm-input-datepicker inputId="input-custom-id-0" v-model="date" position="center" />
|
|
108
|
+
{{ date }}
|
|
109
|
+
</div>`,
|
|
110
|
+
});
|