@softheon/armature 17.15.7 → 17.15.8
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/src/sof-table/sof-table.component.d.ts +17 -5
- package/assets/styles/sof-styles.scss +71 -42
- package/esm2022/ag-grid-components/src/sof-table/sof-table.component.mjs +67 -37
- package/esm2022/lib/base-components/sof-utility-button/sof-utility-button.component.mjs +8 -3
- package/esm2022/lib/core/client-generated/model/themePaletteColorsModel.mjs +1 -1
- package/esm2022/lib/theming/services/theme.service.mjs +5 -3
- package/fesm2022/softheon-armature-ag-grid-components.mjs +66 -37
- package/fesm2022/softheon-armature-ag-grid-components.mjs.map +1 -1
- package/fesm2022/softheon-armature.mjs +11 -4
- package/fesm2022/softheon-armature.mjs.map +1 -1
- package/lib/base-components/sof-utility-button/sof-utility-button.component.d.ts +2 -1
- package/lib/core/client-generated/model/themePaletteColorsModel.d.ts +6 -2
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class SofUtilityButtonComponent {
|
|
3
3
|
buttonId: string;
|
|
4
|
+
buttonAriaLabel: string;
|
|
4
5
|
buttonColorText: string;
|
|
5
6
|
buttonSize: string;
|
|
6
7
|
buttonDisabled: boolean;
|
|
@@ -14,7 +15,7 @@ export declare class SofUtilityButtonComponent {
|
|
|
14
15
|
*/
|
|
15
16
|
agInit(params: any & SofUtilityButtonComponent): void;
|
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<SofUtilityButtonComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SofUtilityButtonComponent, "sof-utility-button", never, { "buttonId": { "alias": "buttonId"; "required": false; }; "buttonColorText": { "alias": "buttonColorText"; "required": false; }; "buttonSize": { "alias": "buttonSize"; "required": false; }; "buttonDisabled": { "alias": "buttonDisabled"; "required": false; }; "buttonIconClass": { "alias": "buttonIconClass"; "required": false; }; "menuDropDown": { "alias": "menuDropDown"; "required": false; }; "buttonClick": { "alias": "buttonClick"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SofUtilityButtonComponent, "sof-utility-button", never, { "buttonId": { "alias": "buttonId"; "required": false; }; "buttonAriaLabel": { "alias": "buttonAriaLabel"; "required": false; }; "buttonColorText": { "alias": "buttonColorText"; "required": false; }; "buttonSize": { "alias": "buttonSize"; "required": false; }; "buttonDisabled": { "alias": "buttonDisabled"; "required": false; }; "buttonIconClass": { "alias": "buttonIconClass"; "required": false; }; "menuDropDown": { "alias": "menuDropDown"; "required": false; }; "buttonClick": { "alias": "buttonClick"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
19
|
}
|
|
19
20
|
export declare enum BUTTON_COLORS_VARIATIONS {
|
|
20
21
|
PRIMARY = "primary",
|
|
@@ -61,12 +61,16 @@ export interface ThemePaletteColorsModel {
|
|
|
61
61
|
* The A200 palette color
|
|
62
62
|
*/
|
|
63
63
|
a200: string;
|
|
64
|
+
/**
|
|
65
|
+
* The A300 palette color
|
|
66
|
+
*/
|
|
67
|
+
a300: string;
|
|
64
68
|
/**
|
|
65
69
|
* The A400 palette color
|
|
66
70
|
*/
|
|
67
71
|
a400: string;
|
|
68
72
|
/**
|
|
69
|
-
* The
|
|
73
|
+
* The A500 palette color
|
|
70
74
|
*/
|
|
71
|
-
|
|
75
|
+
a500: string;
|
|
72
76
|
}
|