@kwirthmagnify/kwirth-common-front 0.5.44 → 0.5.46
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/HelpButton.js +2 -2
- package/package.json +2 -2
package/dist/HelpButton.js
CHANGED
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.HelpButton = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
8
|
const material_1 = require("@mui/material");
|
|
9
|
-
const
|
|
9
|
+
const HelpOutline_1 = __importDefault(require("@mui/icons-material/HelpOutline"));
|
|
10
10
|
// Botón de ayuda reutilizable para dialogs de configuración: abre la guía (docsify) en un NUEVO tab en
|
|
11
11
|
// una sección concreta, deep-link vía hash routing (p.ej. …/#/admin/06-sla-settings). `section` puede
|
|
12
12
|
// llevar ancla de heading (…?id=slug). Pensado para la barra de título de un dialog.
|
|
@@ -38,6 +38,6 @@ const HelpButton = ({ docsUrl, section }) => {
|
|
|
38
38
|
};
|
|
39
39
|
return (react_1.default.createElement(material_1.Tooltip, { arrow: true, title: 'Open the guide for this section' },
|
|
40
40
|
react_1.default.createElement(material_1.IconButton, { size: 'small', "aria-label": 'help', onClick: open },
|
|
41
|
-
react_1.default.createElement(
|
|
41
|
+
react_1.default.createElement(HelpOutline_1.default, { fontSize: 'small' }))));
|
|
42
42
|
};
|
|
43
43
|
exports.HelpButton = HelpButton;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kwirthmagnify/kwirth-common-front",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.46",
|
|
4
4
|
"description": "Frontend channel interfaces for Kwirth plugins and channels",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "del .\\dist\\* /s /q && tsc"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"author": "Julio Fernandez",
|
|
19
19
|
"license": "ISC",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@kwirthmagnify/kwirth-common": "^0.5.
|
|
21
|
+
"@kwirthmagnify/kwirth-common": "^0.5.41",
|
|
22
22
|
"react-markdown": "^10.1.0"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|