@softheon/armature 19.10.2 → 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 -8
- 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 +0 -2
- 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
|
}
|