@gandalan/weblibs 2.0.4 → 2.0.5
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/api/neherApp3Types.js +1 -0
- package/index.d.ts +1 -0
- package/package.json +1 -1
package/api/neherApp3Types.js
CHANGED
|
@@ -63,6 +63,7 @@
|
|
|
63
63
|
* @property {string} [id] - Unique identifier for the menu item (auto-generated if not provided)
|
|
64
64
|
* @property {boolean} [selected] - Indicates if the menu item is currently selected (managed by the menu system)
|
|
65
65
|
* @property {string} [icon] - URL to an icon
|
|
66
|
+
* @property {boolean} [iconAdaptive] - If true, the icon adapts to the active theme (e.g. inverted in dark mode via the host's `icon-adaptive` styling).
|
|
66
67
|
* @property {string | null} [url] - Relative URL to use for routes
|
|
67
68
|
* @property {string} [text] - Display text (ignored for separator items)
|
|
68
69
|
* @property {string | null} [parent] - Parent menu item (optional). If not set, the item will be added to the top level menu.
|
package/index.d.ts
CHANGED