@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.
@@ -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
  */