@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.
@@ -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
@@ -2085,6 +2085,7 @@ export type NeherApp3MenuItem = {
2085
2085
  id?: string;
2086
2086
  selected?: boolean;
2087
2087
  icon?: string;
2088
+ iconAdaptive?: boolean;
2088
2089
  url?: string | null;
2089
2090
  text?: string;
2090
2091
  parent?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gandalan/weblibs",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "WebLibs for Gandalan JS/TS projects",
5
5
  "keywords": [
6
6
  "gandalan"