@farm-investimentos/front-mfe-components 11.0.0 → 11.0.2
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 +294 -261
- 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 +294 -261
- 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/Buttons/DefaultButton/DefaultButton.scss +1 -1
- package/src/components/CardContext/CardContext.stories.js +9 -0
- package/src/components/CardContext/CardContext.vue +23 -3
- package/src/components/Chip/Chip.scss +27 -10
- package/src/components/Chip/Chip.stories.js +2 -4
- package/src/components/Chip/Chip.stories.scss +12 -0
- package/src/components/Chip/Chip.vue +1 -1
- package/src/components/DialogHeader/DialogHeader.scss +6 -3
- package/src/components/DialogHeader/DialogHeader.vue +2 -2
- package/src/components/Modal/Modal.scss +13 -4
- package/src/components/Modal/Modal.stories.js +60 -9
- package/src/components/Modal/Modal.vue +8 -2
- package/src/components/Typography/Typography.scss +15 -5
- package/src/components/Typography/Typography.stories.js +7 -14
- package/src/components/Typography/Typography.vue +20 -3
- package/src/components/layout/Box/Box.scss +0 -21
- package/src/components/layout/Box/Box.stories.js +0 -37
- package/src/components/layout/Box/Box.vue +0 -16
|
@@ -3,8 +3,6 @@
|
|
|
3
3
|
:is="tag"
|
|
4
4
|
:class="{
|
|
5
5
|
'farm-box': true,
|
|
6
|
-
[`farm-box--justify-${justify}`]: justify,
|
|
7
|
-
[`farm-box--direction-${direction}`]: direction,
|
|
8
6
|
}"
|
|
9
7
|
:gutter="gutter"
|
|
10
8
|
>
|
|
@@ -23,20 +21,6 @@ export default Vue.extend({
|
|
|
23
21
|
* Html tag
|
|
24
22
|
*/
|
|
25
23
|
tag: { type: String, default: 'div' },
|
|
26
|
-
/**
|
|
27
|
-
* Applies the flex-direction css property
|
|
28
|
-
*/
|
|
29
|
-
direction: {
|
|
30
|
-
type: String as PropType<'row' | 'row-reverse' | 'column' | 'column-reverse'>,
|
|
31
|
-
default: 'row',
|
|
32
|
-
},
|
|
33
|
-
/**
|
|
34
|
-
* Applies the justify-content css property
|
|
35
|
-
*/
|
|
36
|
-
justify: {
|
|
37
|
-
type: String as PropType<'start' | 'center' | 'end' | 'space-between' | 'space-around'>,
|
|
38
|
-
default: '',
|
|
39
|
-
},
|
|
40
24
|
/**
|
|
41
25
|
* Add gutter
|
|
42
26
|
*/
|