@farm-investimentos/front-mfe-components 11.12.0 → 11.12.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 +136 -131
- package/dist/front-mfe-components.common.js.map +1 -1
- package/dist/front-mfe-components.css +2 -2
- package/dist/front-mfe-components.umd.js +136 -131
- 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/MainFilter/MainFilter.scss +3 -3
- package/src/components/MainFilter/MainFilter.stories.js +2 -2
- package/src/components/MainFilter/MainFilter.vue +2 -1
- package/src/components/Select/Select.stories.js +1 -0
- package/src/components/Select/Select.vue +1 -1
package/package.json
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
margin-left: 4px;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
-
.farm-btn {
|
|
5
|
+
.farm-btn.farm-btn__cta {
|
|
6
6
|
margin-left: 12px;
|
|
7
|
+
margin-top: 32px;
|
|
7
8
|
}
|
|
8
9
|
|
|
9
10
|
@media screen and (max-width: 600px) {
|
|
10
|
-
.farm-btn {
|
|
11
|
+
.farm-btn.farm-btn__cta {
|
|
11
12
|
width: calc(100% - 24px);
|
|
12
13
|
margin-left: 12px;
|
|
13
14
|
margin-top: 0 !important;
|
|
14
15
|
}
|
|
15
|
-
|
|
16
16
|
}
|
|
@@ -47,7 +47,7 @@ export const Tooltip = () => ({
|
|
|
47
47
|
export const Application = () => ({
|
|
48
48
|
data() {
|
|
49
49
|
return {
|
|
50
|
-
showFilters:
|
|
50
|
+
showFilters: true,
|
|
51
51
|
};
|
|
52
52
|
},
|
|
53
53
|
template: `<div>
|
|
@@ -58,7 +58,7 @@ export const Application = () => ({
|
|
|
58
58
|
</farm-row>
|
|
59
59
|
<farm-row v-if="showFilters">
|
|
60
60
|
<farm-col cols="12">
|
|
61
|
-
|
|
61
|
+
Extra filters
|
|
62
62
|
</farm-col>
|
|
63
63
|
<farm-col cols="12" md="3">
|
|
64
64
|
<farm-textfield />
|
|
@@ -223,7 +223,7 @@ export default Vue.extend({
|
|
|
223
223
|
};
|
|
224
224
|
|
|
225
225
|
const updateSelectedTextValue = () => {
|
|
226
|
-
if (!items.value || items.value.length === 0 ||
|
|
226
|
+
if (!items.value || items.value.length === 0 || innerValue.value === null) {
|
|
227
227
|
selectedText.value = '';
|
|
228
228
|
return;
|
|
229
229
|
}
|