@softheon/armature 19.8.1 → 19.9.1
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/assets/styles/_typography.scss +10 -2
- package/assets/styles/_variables.scss +14 -0
- package/fesm2022/softheon-armature-ag-grid-components.mjs +4 -4
- package/fesm2022/softheon-armature-ag-grid-components.mjs.map +1 -1
- package/fesm2022/softheon-armature.mjs +44 -42
- package/fesm2022/softheon-armature.mjs.map +1 -1
- package/lib/base-components/sof-utility-button/sof-utility-button.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -14,7 +14,7 @@ export declare class SofUtilityButtonComponent {
|
|
|
14
14
|
/**
|
|
15
15
|
* @deprecated Individual Button Click
|
|
16
16
|
* @note This will only work for a function w/o any params and not directly invoked,
|
|
17
|
-
* Use the (buttonClicked) output event instead
|
|
17
|
+
* Use the (buttonClicked) output event instead ...
|
|
18
18
|
*/
|
|
19
19
|
buttonClick: Function;
|
|
20
20
|
/** Output event when button clicked */
|
|
@@ -36,7 +36,7 @@ export interface ButtonData {
|
|
|
36
36
|
ariaLabel?: string;
|
|
37
37
|
isDelete?: boolean;
|
|
38
38
|
badgeLabel?: string;
|
|
39
|
-
nestedMenu?: ButtonData
|
|
39
|
+
nestedMenu?: Array<ButtonData>;
|
|
40
40
|
xPosition?: 'before' | 'after';
|
|
41
41
|
displayBadgeLabel?: boolean;
|
|
42
42
|
menuLabel?: string;
|