valtech-components 2.0.225 → 2.0.228
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/esm2022/lib/components/organisms/banner/banner.component.mjs +25 -9
- package/esm2022/lib/services/icons.service.mjs +3 -2
- package/fesm2022/valtech-components.mjs +26 -9
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/organisms/banner/banner.component.d.ts +10 -0
- package/package.json +1 -1
|
@@ -7,6 +7,16 @@ export declare class BannerComponent implements OnInit {
|
|
|
7
7
|
onClose: EventEmitter<any>;
|
|
8
8
|
constructor();
|
|
9
9
|
ngOnInit(): void;
|
|
10
|
+
/**
|
|
11
|
+
* Returns the alignment for content, titles, and buttons.
|
|
12
|
+
* Defaults to 'center' if not specified.
|
|
13
|
+
*/
|
|
14
|
+
get alignment(): string;
|
|
15
|
+
/**
|
|
16
|
+
* Returns the position for the title block.
|
|
17
|
+
* If not specified, uses the alignment value, but ensures it matches allowed types.
|
|
18
|
+
*/
|
|
19
|
+
get titlePosition(): 'center' | 'left' | 'right' | 'leftocenter';
|
|
10
20
|
clickHandler(token?: string): void;
|
|
11
21
|
closeHandler(): void;
|
|
12
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<BannerComponent, never>;
|