@cyanautomation/kaseki-agent 1.58.0 → 1.58.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.
- package/dist/kaseki-api-web.js +4 -4
- package/package.json +1 -1
package/dist/kaseki-api-web.js
CHANGED
|
@@ -1104,12 +1104,12 @@ const controllerPage = String.raw `<!doctype html>
|
|
|
1104
1104
|
overflow: hidden;
|
|
1105
1105
|
flex: 1;
|
|
1106
1106
|
}
|
|
1107
|
-
.tab-content {
|
|
1107
|
+
.modal-tabs-container .tab-content {
|
|
1108
1108
|
display: none;
|
|
1109
1109
|
overflow: auto;
|
|
1110
1110
|
min-height: 0;
|
|
1111
1111
|
}
|
|
1112
|
-
.tab-content.active {
|
|
1112
|
+
.modal-tabs-container .tab-content.active {
|
|
1113
1113
|
display: block;
|
|
1114
1114
|
}
|
|
1115
1115
|
.modal-output {
|
|
@@ -1900,7 +1900,7 @@ const controllerPage = String.raw `<!doctype html>
|
|
|
1900
1900
|
b.classList.toggle('active', active);
|
|
1901
1901
|
b.setAttribute('aria-selected', active ? 'true' : 'false');
|
|
1902
1902
|
});
|
|
1903
|
-
document.querySelectorAll('.tab-content').forEach(content => {
|
|
1903
|
+
document.querySelectorAll('main .tab-content').forEach(content => {
|
|
1904
1904
|
const contentTabName = content.id.replace('-tab', '');
|
|
1905
1905
|
const active = contentTabName === tabName;
|
|
1906
1906
|
content.classList.toggle('hidden', !active);
|
|
@@ -2106,7 +2106,7 @@ const controllerPage = String.raw `<!doctype html>
|
|
|
2106
2106
|
});
|
|
2107
2107
|
|
|
2108
2108
|
// Update active tab content
|
|
2109
|
-
document.querySelectorAll('.tab-content').forEach(tab => {
|
|
2109
|
+
document.querySelectorAll('.modal-tabs-container .tab-content').forEach(tab => {
|
|
2110
2110
|
tab.classList.toggle('active', tab.id === 'tab-' + tabName);
|
|
2111
2111
|
});
|
|
2112
2112
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanautomation/kaseki-agent",
|
|
3
|
-
"version": "1.58.
|
|
3
|
+
"version": "1.58.2",
|
|
4
4
|
"description": "Admin/helper/doctor toolbox and local API client for Kaseki diagnostics, setup, and API-backed coding-agent task workflows",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|