anentrypoint-design 0.0.158 → 0.0.160
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/app-shell.css +15 -15
- package/dist/247420.css +15 -15
- package/dist/247420.js +9 -9
- package/package.json +1 -1
- package/src/components/shell.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anentrypoint-design",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.160",
|
|
4
4
|
"description": "247420 design system SDK — webjsx + modified ripple-ui, single-file ESM bundle for reproducible use of the AnEntrypoint design.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/247420.js",
|
package/src/components/shell.js
CHANGED
|
@@ -108,9 +108,9 @@ export function Topbar({ brand = '247420', leaf = '', items = [], active = '', o
|
|
|
108
108
|
return h('header', { class: 'app-topbar', role: 'banner' },
|
|
109
109
|
Brand({ name: brand, leaf }),
|
|
110
110
|
search ? h('label', { class: 'app-search' },
|
|
111
|
-
h('span', { class: 'icon', 'aria-hidden': 'true' }, '
|
|
111
|
+
h('span', { class: 'icon', 'aria-hidden': 'true' }, 'search'),
|
|
112
112
|
h('input', { type: 'search', placeholder: search, 'aria-label': `search ${search}` })
|
|
113
|
-
) :
|
|
113
|
+
) : null,
|
|
114
114
|
h('nav', { 'aria-label': 'main navigation' }, ...items.map(([label, href]) => {
|
|
115
115
|
const cleanLabel = String(label).replace(' ↗', '');
|
|
116
116
|
return h('a', {
|