@leanix/components 0.4.440 → 0.4.442
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/core-ui/components/integration-link-card/integration-link-card.component.mjs +8 -3
- package/fesm2022/leanix-components.mjs +7 -2
- package/fesm2022/leanix-components.mjs.map +1 -1
- package/lib/core-ui/components/integration-link-card/integration-link-card.component.d.ts +3 -1
- package/package.json +1 -1
@@ -66,6 +66,8 @@ export declare class IntegrationLinkCardComponent {
|
|
66
66
|
tooltipContent?: string;
|
67
67
|
/** Content for a badge element on the card */
|
68
68
|
badgeContent?: string;
|
69
|
+
/** Color for a badge element on the card */
|
70
|
+
badgeColor: 'blue' | 'gray' | 'red' | 'yellow' | 'green' | 'purple' | 'white';
|
69
71
|
/** The name or label of the primary action button on the card */
|
70
72
|
actionButtonName?: string;
|
71
73
|
/** Timestamp related to the integration, such as the last updated time (relative time) */
|
@@ -81,6 +83,6 @@ export declare class IntegrationLinkCardComponent {
|
|
81
83
|
/** @internal */
|
82
84
|
onLinkClicked(event: MouseEvent): void;
|
83
85
|
static ɵfac: i0.ɵɵFactoryDeclaration<IntegrationLinkCardComponent, never>;
|
84
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IntegrationLinkCardComponent, "lx-integration-link-card", never, { "sourceIconClasses": { "alias": "sourceIconClasses"; "required": true; }; "sourceName": { "alias": "sourceName"; "required": true; }; "title": { "alias": "title"; "required": true; }; "isInactive": { "alias": "isInactive"; "required": false; }; "link": { "alias": "link"; "required": false; }; "queryParams": { "alias": "queryParams"; "required": false; }; "externalLink": { "alias": "externalLink"; "required": false; }; "tooltipContent": { "alias": "tooltipContent"; "required": false; }; "badgeContent": { "alias": "badgeContent"; "required": false; }; "actionButtonName": { "alias": "actionButtonName"; "required": false; }; "timestamp": { "alias": "timestamp"; "required": false; }; "tertiaryInfo": { "alias": "tertiaryInfo"; "required": false; }; }, { "actionButtonClicked": "actionButtonClicked"; "linkClicked": "linkClicked"; }, never, never, true, never>;
|
86
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IntegrationLinkCardComponent, "lx-integration-link-card", never, { "sourceIconClasses": { "alias": "sourceIconClasses"; "required": true; }; "sourceName": { "alias": "sourceName"; "required": true; }; "title": { "alias": "title"; "required": true; }; "isInactive": { "alias": "isInactive"; "required": false; }; "link": { "alias": "link"; "required": false; }; "queryParams": { "alias": "queryParams"; "required": false; }; "externalLink": { "alias": "externalLink"; "required": false; }; "tooltipContent": { "alias": "tooltipContent"; "required": false; }; "badgeContent": { "alias": "badgeContent"; "required": false; }; "badgeColor": { "alias": "badgeColor"; "required": false; }; "actionButtonName": { "alias": "actionButtonName"; "required": false; }; "timestamp": { "alias": "timestamp"; "required": false; }; "tertiaryInfo": { "alias": "tertiaryInfo"; "required": false; }; }, { "actionButtonClicked": "actionButtonClicked"; "linkClicked": "linkClicked"; }, never, never, true, never>;
|
85
87
|
}
|
86
88
|
export {};
|