@dotglitch/ngx-common 1.1.34 → 1.1.36

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dotglitch/ngx-common",
3
3
  "private": false,
4
- "version": "1.1.34",
4
+ "version": "1.1.36",
5
5
  "repository": {
6
6
  "url": "https://github.com/knackstedt/dotglitch-ngx/tree/main/packages/common"
7
7
  },
package/types/menu.d.ts CHANGED
@@ -6,6 +6,10 @@ export type MenuOptions = Partial<PopupOptions & {
6
6
  * Which event should trigger the app menu.
7
7
  */
8
8
  trigger: MenuTrigger | MenuTrigger[];
9
+ /**
10
+ * Set to `true` to keep the menu open.
11
+ */
12
+ stayOpen: boolean;
9
13
  }>;
10
14
  export type BaseMenuItem<T = any, Q = object | number | string | boolean | bigint | symbol | undefined> = {
11
15
  /**