@kwirthmagnify/kwirth-common-front 0.5.35 → 0.5.36

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.
@@ -17,13 +17,13 @@ const HelpButton = ({ docsUrl, section }) => {
17
17
  var _a, _b, _c, _d;
18
18
  const base = (docsUrl || DEFAULT_DOCS_URL).replace(/\/+$/, '');
19
19
  // Popup del navegador (ventana aparte, no pestaña): las features de tamaño fuerzan el popup.
20
- // Tamaño: 60% ancho × 80% alto de la pantalla ACTUAL. Centrado en su monitor (multi-monitor) vía
20
+ // Tamaño: 48% ancho × 64% alto de la pantalla ACTUAL. Centrado en su monitor (multi-monitor) vía
21
21
  // availLeft/availTop (origen del monitor donde está la ventana). left/top solo los respeta si es popup real.
22
22
  const scr = window.screen;
23
23
  const sw = scr.availWidth;
24
24
  const sh = scr.availHeight;
25
- const width = Math.round(sw * 0.6);
26
- const height = Math.round(sh * 0.8);
25
+ const width = Math.round(sw * 0.48);
26
+ const height = Math.round(sh * 0.64);
27
27
  const originX = (_b = (_a = scr.availLeft) !== null && _a !== void 0 ? _a : window.screenX) !== null && _b !== void 0 ? _b : 0;
28
28
  const originY = (_d = (_c = scr.availTop) !== null && _c !== void 0 ? _c : window.screenY) !== null && _d !== void 0 ? _d : 0;
29
29
  const left = Math.round(originX + (sw - width) / 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kwirthmagnify/kwirth-common-front",
3
- "version": "0.5.35",
3
+ "version": "0.5.36",
4
4
  "description": "Frontend channel interfaces for Kwirth plugins and channels",
5
5
  "scripts": {
6
6
  "build": "del .\\dist\\* /s /q && tsc"