@farm-investimentos/front-mfe-components 11.11.2 → 11.11.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/dist/front-mfe-components.common.js +104 -101
- 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 +104 -101
- 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/ContextMenu/ContextMenu.vue +4 -1
package/package.json
CHANGED
|
@@ -86,6 +86,9 @@ export default Vue.extend({
|
|
|
86
86
|
window.addEventListener('resize', resizeWindowHandler);
|
|
87
87
|
calculatePosition();
|
|
88
88
|
} else {
|
|
89
|
+
styles.top = 0;
|
|
90
|
+
styles.left = 0;
|
|
91
|
+
styles.zIndex = 0;
|
|
89
92
|
window.removeEventListener('click', outClick);
|
|
90
93
|
}
|
|
91
94
|
}
|
|
@@ -113,7 +116,7 @@ export default Vue.extend({
|
|
|
113
116
|
? parseInt(activatorBoundingClientRect.width)
|
|
114
117
|
: 96) + 'px';
|
|
115
118
|
|
|
116
|
-
if(activatorBoundingClientRect.width < 96) {
|
|
119
|
+
if (activatorBoundingClientRect.width < 96) {
|
|
117
120
|
const w = popupClientRect.width < 96 ? 96 : popupClientRect.width;
|
|
118
121
|
offsetLeft =
|
|
119
122
|
activatorBoundingClientRect.left +
|