@softheon/armature 19.10.1 → 19.10.3
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/ag-grid-components/package.json +3 -0
- package/ag-grid-components/src/sof-table/sof-table.component.d.ts +16 -1
- package/fesm2022/softheon-armature-ag-grid-components.mjs +81 -5
- package/fesm2022/softheon-armature-ag-grid-components.mjs.map +1 -1
- package/fesm2022/softheon-armature.mjs +19 -10
- package/fesm2022/softheon-armature.mjs.map +1 -1
- package/lib/base-components/sof-utility-button/sof-utility-button.component.d.ts +4 -0
- package/lib/header/components/sof-header/sof-header.component.d.ts +1 -6
- package/package.json +1 -1
|
@@ -17,6 +17,8 @@ export declare class SofUtilityButtonComponent {
|
|
|
17
17
|
* Use the (buttonClicked) output event instead ...
|
|
18
18
|
*/
|
|
19
19
|
buttonClick: Function;
|
|
20
|
+
/** Inject angular's document reference */
|
|
21
|
+
private document;
|
|
20
22
|
/** Output event when button clicked */
|
|
21
23
|
buttonClicked: EventEmitter<void>;
|
|
22
24
|
/**
|
|
@@ -25,6 +27,8 @@ export declare class SofUtilityButtonComponent {
|
|
|
25
27
|
*/
|
|
26
28
|
agInit(params: any & SofUtilityButtonComponent): void;
|
|
27
29
|
emitButtonClicked(): void;
|
|
30
|
+
/** Removes role="menu", role="menubar", and role="menuitem" from Material Menu elements */
|
|
31
|
+
removeMenuRoles(): void;
|
|
28
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<SofUtilityButtonComponent, never>;
|
|
29
33
|
static ɵcmp: i0.ɵɵComponentDeclaration<SofUtilityButtonComponent, "sof-utility-button", never, { "buttonId": { "alias": "buttonId"; "required": false; }; "buttonAriaLabel": { "alias": "buttonAriaLabel"; "required": false; }; "buttonTheme": { "alias": "buttonTheme"; "required": false; }; "buttonEmphasis": { "alias": "buttonEmphasis"; "required": false; }; "buttonDisabled": { "alias": "buttonDisabled"; "required": false; }; "buttonIconClass": { "alias": "buttonIconClass"; "required": false; }; "menuDropDown": { "alias": "menuDropDown"; "required": false; }; "menuTitle": { "alias": "menuTitle"; "required": false; }; "xPosition": { "alias": "xPosition"; "required": false; }; "buttonClick": { "alias": "buttonClick"; "required": false; }; }, { "buttonClicked": "buttonClicked"; }, never, never, false, never>;
|
|
30
34
|
}
|
|
@@ -52,10 +52,6 @@ export declare class SofHeaderComponent implements OnInit, OnChanges {
|
|
|
52
52
|
* @note can be translation key
|
|
53
53
|
*/
|
|
54
54
|
logoutText: string;
|
|
55
|
-
/**
|
|
56
|
-
* The profile icon text
|
|
57
|
-
*/
|
|
58
|
-
profileIconText?: string;
|
|
59
55
|
/** Logout event, the application consuming this component is responsible for the actual logout */
|
|
60
56
|
logoutEvent: EventEmitter<void>;
|
|
61
57
|
/** Inject angular's document reference */
|
|
@@ -105,14 +101,13 @@ export declare class SofHeaderComponent implements OnInit, OnChanges {
|
|
|
105
101
|
/** Removes role="menu" and role="menuitem" from Material Menu elements. */
|
|
106
102
|
removeUserMatMenuRoles(): void;
|
|
107
103
|
static ɵfac: i0.ɵɵFactoryDeclaration<SofHeaderComponent, never>;
|
|
108
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SofHeaderComponent, "sof-header", never, { "showBreadcrumbsHierarchy": { "alias": "showBreadcrumbsHierarchy"; "required": false; }; "displayLogo": { "alias": "displayLogo"; "required": false; }; "logoUrl": { "alias": "logoUrl"; "required": false; }; "displayLogoText": { "alias": "displayLogoText"; "required": false; }; "headerLogoText": { "alias": "headerLogoText"; "required": false; }; "isNavPanelOpened": { "alias": "isNavPanelOpened"; "required": false; }; "userMenuData": { "alias": "userMenuData"; "required": false; }; "logoutText": { "alias": "logoutText"; "required": false; };
|
|
104
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SofHeaderComponent, "sof-header", never, { "showBreadcrumbsHierarchy": { "alias": "showBreadcrumbsHierarchy"; "required": false; }; "displayLogo": { "alias": "displayLogo"; "required": false; }; "logoUrl": { "alias": "logoUrl"; "required": false; }; "displayLogoText": { "alias": "displayLogoText"; "required": false; }; "headerLogoText": { "alias": "headerLogoText"; "required": false; }; "isNavPanelOpened": { "alias": "isNavPanelOpened"; "required": false; }; "userMenuData": { "alias": "userMenuData"; "required": false; }; "logoutText": { "alias": "logoutText"; "required": false; }; }, { "logoutEvent": "logoutEvent"; }, never, ["[header-right-section-buttons]"], true, never>;
|
|
109
105
|
}
|
|
110
106
|
/** The user data for header dropdown interface */
|
|
111
107
|
export interface HeaderUserMenuData {
|
|
112
108
|
firstName: string;
|
|
113
109
|
lastName: string;
|
|
114
110
|
email?: string;
|
|
115
|
-
profileImage?: string;
|
|
116
111
|
/** Only for Broker portal */
|
|
117
112
|
npn?: string;
|
|
118
113
|
shareLink?: string;
|