From 87a25f6ae6ce44deffaa6f62bb80444c46f350dd Mon Sep 17 00:00:00 2001 From: Claudio Wunder Date: Thu, 5 Feb 2026 11:44:15 +0100 Subject: [PATCH 1/2] fix: code, and update ui-components --- npm-shrinkwrap.json | 8 ++++---- package.json | 2 +- src/generators/web/ui/index.css | 7 ------- 3 files changed, 5 insertions(+), 12 deletions(-) diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 52663243..0aecf954 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -10,7 +10,7 @@ "@clack/prompts": "^1.0.0", "@heroicons/react": "^2.2.0", "@node-core/rehype-shiki": "1.3.0", - "@node-core/ui-components": "1.5.8", + "@node-core/ui-components": "^1.5.9", "@orama/orama": "^3.1.18", "@orama/ui": "^1.5.4", "@rollup/plugin-virtual": "^3.0.2", @@ -1039,9 +1039,9 @@ } }, "node_modules/@node-core/ui-components": { - "version": "1.5.8", - "resolved": "https://registry.npmjs.org/@node-core/ui-components/-/ui-components-1.5.8.tgz", - "integrity": "sha512-RaoGO3x4ECbYpVzH1UFV5fnoqLGSaMJU3LEM39VG4RlDFBuDaOMq6pHAha/h2K1duMf8RVjQJck28WMMZk0RVA==", + "version": "1.5.9", + "resolved": "https://registry.npmjs.org/@node-core/ui-components/-/ui-components-1.5.9.tgz", + "integrity": "sha512-CsffapNuvGHSADSQb1JZ2h1U+uRlkTwEA0i0RBi+JpBDcve3U6uqgmFD6phkWsOynXutfRcSNPex+OEF1Ll86w==", "dependencies": { "@heroicons/react": "^2.2.0", "@orama/ui": "^1.5.4", diff --git a/package.json b/package.json index 5a5fc5c8..6edf45c1 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "@clack/prompts": "^1.0.0", "@heroicons/react": "^2.2.0", "@node-core/rehype-shiki": "1.3.0", - "@node-core/ui-components": "1.5.8", + "@node-core/ui-components": "^1.5.9", "@orama/orama": "^3.1.18", "@orama/ui": "^1.5.4", "@rollup/plugin-virtual": "^3.0.2", diff --git a/src/generators/web/ui/index.css b/src/generators/web/ui/index.css index 530d6ff5..7d23748a 100644 --- a/src/generators/web/ui/index.css +++ b/src/generators/web/ui/index.css @@ -16,13 +16,6 @@ main { word-break: break-word; } - @media (min-width: 768px) { - code { - overflow-wrap: normal; - word-break: normal; - } - } - /* Don't overflow the parent */ .overflow-container { overflow-x: auto; From 84909340ac596c13d9ef4cb327eb06b4031529d2 Mon Sep 17 00:00:00 2001 From: Claudio Wunder Date: Thu, 5 Feb 2026 12:38:11 +0100 Subject: [PATCH 2/2] fix: break tables point --- src/generators/web/ui/index.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/generators/web/ui/index.css b/src/generators/web/ui/index.css index 7d23748a..1c9b0e75 100644 --- a/src/generators/web/ui/index.css +++ b/src/generators/web/ui/index.css @@ -16,6 +16,17 @@ main { word-break: break-word; } + @media (min-width: 1024px) { + td { + word-break: break-all; + } + + td code { + overflow-wrap: normal; + word-break: normal; + } + } + /* Don't overflow the parent */ .overflow-container { overflow-x: auto;