@softheon/armature 17.31.5 → 17.33.0
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/esm2022/lib/base-components/sof-context/sof-context.component.mjs +11 -10
- package/esm2022/lib/navigation/components/sof-tabs-navigation/sof-tabs.component.mjs +6 -5
- package/fesm2022/softheon-armature.mjs +23 -24
- package/fesm2022/softheon-armature.mjs.map +1 -1
- package/lib/base-components/sof-context/sof-context.component.d.ts +4 -2
- package/lib/navigation/components/sof-tabs-navigation/sof-tabs.component.d.ts +1 -1
- package/package.json +1 -1
- package/ag-grid-components/package.json +0 -3
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { MatMenuTrigger } from '@angular/material/menu';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* The Context component for ag grid
|
|
@@ -8,6 +9,8 @@ import * as i0 from "@angular/core";
|
|
|
8
9
|
*/
|
|
9
10
|
export declare class SofContextComponent {
|
|
10
11
|
private cdRef;
|
|
12
|
+
/** Context menu */
|
|
13
|
+
contextMenu: MatMenuTrigger;
|
|
11
14
|
/** List of menu items */
|
|
12
15
|
menuItems: ContextMenuItem[];
|
|
13
16
|
/** Menu position (x, y) */
|
|
@@ -17,8 +20,6 @@ export declare class SofContextComponent {
|
|
|
17
20
|
};
|
|
18
21
|
/** Selected row data */
|
|
19
22
|
selectedRowData: any;
|
|
20
|
-
/** Whether the menu is visible */
|
|
21
|
-
isMenuVisible: boolean;
|
|
22
23
|
/** Tooltip text */
|
|
23
24
|
tooltipText: string;
|
|
24
25
|
/** Whether tooltip is visible */
|
|
@@ -77,4 +78,5 @@ export interface ContextMenuItem {
|
|
|
77
78
|
disabled?: boolean;
|
|
78
79
|
description?: string;
|
|
79
80
|
hidden?: boolean;
|
|
81
|
+
subMenuItems?: ContextMenuItem[];
|
|
80
82
|
}
|
|
@@ -7,7 +7,7 @@ export declare class SofTabsComponent {
|
|
|
7
7
|
/** The nav links for the mat tabs *required */
|
|
8
8
|
navLinks: Array<TabNavLink>;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<SofTabsComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SofTabsComponent, "sof-tabs", never, { "navLinks": { "alias": "navLinks"; "required": true; }; }, {}, never,
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SofTabsComponent, "sof-tabs", never, { "navLinks": { "alias": "navLinks"; "required": true; }; }, {}, never, ["[sof-ar-tabs-right]"], false, never>;
|
|
11
11
|
}
|
|
12
12
|
/**
|
|
13
13
|
* The navigation links for tabs interface
|
package/package.json
CHANGED