@farm-investimentos/front-mfe-components 11.7.0 → 11.7.1
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 +6388 -6389
- 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 +6388 -6389
- 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 +7 -12
- package/src/components/DatePicker/DatePicker.vue +9 -17
- package/src/components/FilePicker/FilePicker.vue +10 -15
- package/src/components/FilePicker/__tests__/FilePicker.spec.js +12 -4
- package/src/components/Form/Form.stories.js +53 -47
- package/src/components/RangeDatePicker/RangeDatePicker.stories.js +23 -25
- package/src/components/RangeDatePicker/RangeDatePicker.vue +6 -14
- package/src/components/ResourceMetaInfo/ResourceMetaInfo.vue +29 -29
- package/src/components/TextFieldV2/TextFieldV2.scss +14 -2
- package/src/components/TextFieldV2/TextFieldV2.stories.js +1 -0
- package/src/components/TextFieldV2/TextFieldV2.vue +3 -2
- package/src/components/layout/Basic.stories.js +21 -0
- package/src/components/layout/Container/Container.scss +1 -0
|
@@ -73,3 +73,24 @@ export const Tertiary = () => ({
|
|
|
73
73
|
</farm-container>
|
|
74
74
|
`,
|
|
75
75
|
});
|
|
76
|
+
|
|
77
|
+
export const WithTabs = () => ({
|
|
78
|
+
data() {
|
|
79
|
+
return {
|
|
80
|
+
steps: [
|
|
81
|
+
{ label: 'Step 1', icon: '' },
|
|
82
|
+
{ label: 'Step 2', icon: 'monitor' },
|
|
83
|
+
{ label: 'Step 3', icon: 'book' },
|
|
84
|
+
{ label: 'Step 4', icon: '' },
|
|
85
|
+
],
|
|
86
|
+
currentStep: 3,
|
|
87
|
+
};
|
|
88
|
+
},
|
|
89
|
+
template: `
|
|
90
|
+
<farm-container>
|
|
91
|
+
<farm-row extra-decrease>
|
|
92
|
+
<farm-tabs :tabs="steps" :showCounter="false" class="mt-n6" />
|
|
93
|
+
</farm-row>
|
|
94
|
+
</farm-container>
|
|
95
|
+
`,
|
|
96
|
+
});
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
margin: gutter('lg');
|
|
17
17
|
padding: gutter('lg');
|
|
18
18
|
box-shadow: 0px 3px 1px -2px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%), 0px 1px 5px 0px rgb(0 0 0 / 12%) !important;
|
|
19
|
+
overflow: hidden;
|
|
19
20
|
|
|
20
21
|
// deprecated
|
|
21
22
|
.container-main__footer-buttons-right {
|