tent-lib 0.0.73 → 0.0.75
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/atomic/button/button.component.mjs +10 -7
- package/esm2022/lib/components/core/cards-3col/cards-3col.component.mjs +3 -3
- package/esm2022/lib/components/core/footer-b/footer-b.component.mjs +3 -3
- package/esm2022/lib/components/core/motor/motor.component.mjs +3 -3
- package/fesm2022/tent-lib.mjs +25 -24
- package/fesm2022/tent-lib.mjs.map +1 -1
- package/lib/components/atomic/button/button.component.d.ts +2 -3
- package/package.json +1 -1
|
@@ -2,8 +2,6 @@ import { EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { SafeStyle } from '@angular/platform-browser';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ButtonComponent {
|
|
5
|
-
static LINK_EXTERNAL: string;
|
|
6
|
-
static LINK_INTERNAL: string;
|
|
7
5
|
type: ButtonType;
|
|
8
6
|
label?: string;
|
|
9
7
|
url?: string;
|
|
@@ -21,8 +19,9 @@ export declare class ButtonComponent {
|
|
|
21
19
|
get showBtn(): boolean;
|
|
22
20
|
get width(): SafeStyle;
|
|
23
21
|
get linkIconStyle(): SafeStyle;
|
|
22
|
+
get isInternalLink(): boolean;
|
|
24
23
|
ngOnInit(): void;
|
|
25
|
-
btnClicked(
|
|
24
|
+
btnClicked(event: Event): void;
|
|
26
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
27
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "tent-button", never, { "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "url": { "alias": "url"; "required": false; }; "linkType": { "alias": "linkType"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "socialMedia": { "alias": "socialMedia"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "boxWidth": { "alias": "boxWidth"; "required": false; }; "innerContent": { "alias": "innerContent"; "required": false; }; "linkSizeIcon": { "alias": "linkSizeIcon"; "required": false; }; "target": { "alias": "target"; "required": false; }; "closeButton": { "alias": "closeButton"; "required": false; }; }, { "btnClick": "btnClick"; }, never, never, true, never>;
|
|
28
27
|
}
|