@softheon/armature 15.22.1 → 15.23.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/assets/styles/sof-styles.scss +4 -0
- package/esm2020/lib/base-components/sof-badge/sof-badge.component.mjs +14 -3
- package/esm2020/lib/header/components/header/header.component.mjs +2 -2
- package/fesm2015/softheon-armature.mjs +15 -4
- package/fesm2015/softheon-armature.mjs.map +1 -1
- package/fesm2020/softheon-armature.mjs +15 -4
- package/fesm2020/softheon-armature.mjs.map +1 -1
- package/lib/base-components/sof-badge/sof-badge.component.d.ts +5 -1
- package/package.json +1 -1
|
@@ -15,6 +15,10 @@ export declare class SofBadgeComponent {
|
|
|
15
15
|
iconClass: string;
|
|
16
16
|
/**Whether to show colored label */
|
|
17
17
|
coloredLabel: boolean;
|
|
18
|
+
/** The badge aria label */
|
|
19
|
+
badgeAria: string;
|
|
20
|
+
/** The icon aria label */
|
|
21
|
+
iconAria: string;
|
|
18
22
|
/**
|
|
19
23
|
* The constructor
|
|
20
24
|
*/
|
|
@@ -22,5 +26,5 @@ export declare class SofBadgeComponent {
|
|
|
22
26
|
/** On component init */
|
|
23
27
|
ngOnInit(): void;
|
|
24
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<SofBadgeComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SofBadgeComponent, "sof-badge", never, { "noIcon": "noIcon"; "noOutline": "noOutline"; "badgeText": "badgeText"; "badgeColor": "badgeColor"; "iconClass": "iconClass"; "coloredLabel": "coloredLabel"; }, {}, never, never, false, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SofBadgeComponent, "sof-badge", never, { "noIcon": "noIcon"; "noOutline": "noOutline"; "badgeText": "badgeText"; "badgeColor": "badgeColor"; "iconClass": "iconClass"; "coloredLabel": "coloredLabel"; "badgeAria": "badgeAria"; "iconAria": "iconAria"; }, {}, never, never, false, never>;
|
|
26
30
|
}
|