@farm-investimentos/front-mfe-components-vue3 0.3.2 → 0.3.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farm-investimentos/front-mfe-components-vue3",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
@@ -93,4 +93,4 @@
93
93
  "publishConfig": {
94
94
  "@farm-investimentos:registry": "https://registry.npmjs.org"
95
95
  }
96
- }
96
+ }
@@ -1,6 +1,12 @@
1
1
  <template>
2
- <div class="farm-contextmenu" ref="parent">
3
- <span ref="activator" @click="click">
2
+ <div
3
+ class="farm-contextmenu"
4
+ ref="parent"
5
+ >
6
+ <span
7
+ ref="activator"
8
+ @click="click"
9
+ >
4
10
  <slot name="activator"></slot>
5
11
  </span>
6
12
 
@@ -78,7 +84,7 @@ export default {
78
84
  minWidth: 0,
79
85
  top: 0,
80
86
  zIndex: 1,
81
- maxHeight: parseInt((maxHeight as any).modelValue as string) + 'px',
87
+ maxHeight: parseInt(maxHeight.value as any) + 'px',
82
88
  } as any);
83
89
 
84
90
  const inputValue = ref(props.modelValue);
@@ -14,6 +14,23 @@ export const Primary = () => ({
14
14
  { value: 1, text: 'value 1' },
15
15
  { value: 2, text: 'value 2' },
16
16
  { value: 3, text: 'value 3' },
17
+ { value: 4, text: 'value 4' },
18
+ { value: 5, text: 'value 5' },
19
+ { value: 6, text: 'value 6' },
20
+ { value: 7, text: 'value 7' },
21
+ { value: 8, text: 'value 8' },
22
+ { value: 9, text: 'value 9' },
23
+ { value: 10, text: 'value 10' },
24
+ { value: 11, text: 'value 11' },
25
+ { value: 12, text: 'value 12' },
26
+ { value: 13, text: 'value 13' },
27
+ { value: 14, text: 'value 14' },
28
+ { value: 15, text: 'value 15' },
29
+ { value: 16, text: 'value 16' },
30
+ { value: 17, text: 'value 17' },
31
+ { value: 18, text: 'value 18' },
32
+ { value: 19, text: 'value 19' },
33
+ { value: 20, text: 'value 20' },
17
34
  ],
18
35
  };
19
36
  },