carriera-intern-components 1.1.13 → 1.1.14
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.
|
@@ -14,7 +14,7 @@ export declare class AvatarComponent {
|
|
|
14
14
|
* The size of the avatar in pixels.
|
|
15
15
|
* @type {Size}
|
|
16
16
|
*/
|
|
17
|
-
size: import("@angular/core").InputSignal<
|
|
17
|
+
size: import("@angular/core").InputSignal<160 | 18 | 22 | 32 | 74>;
|
|
18
18
|
/**
|
|
19
19
|
* Whether the avatar should be rounded or not at sizes of 74px and 160px.
|
|
20
20
|
* @type {boolean}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { NgbTooltip } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
-
import { PmItem } from '../../models/pm.model';
|
|
3
|
+
import { IPmDropdownAction, PmItem } from '../../models/pm.model';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class PmComponent {
|
|
6
6
|
/**
|
|
@@ -12,7 +12,7 @@ export declare class PmComponent {
|
|
|
12
12
|
* Event emitted when the "Add new" button is clicked.
|
|
13
13
|
* The parent component can listen to this and perform appropriate actions.
|
|
14
14
|
*/
|
|
15
|
-
|
|
15
|
+
dropdownActions: EventEmitter<IPmDropdownAction>;
|
|
16
16
|
/**
|
|
17
17
|
* Boolean signal indicating whether the PM popover is currently visible.
|
|
18
18
|
* Used to apply conditional styling or behavior when the popover is shown or hidden.
|
|
@@ -48,12 +48,12 @@ export declare class PmComponent {
|
|
|
48
48
|
* Called when a PM item is clicked.
|
|
49
49
|
* Sets the `selectedPmItem` with the clicked item's data.
|
|
50
50
|
*/
|
|
51
|
-
|
|
51
|
+
onSelectedItem(item: PmItem): void;
|
|
52
52
|
/**
|
|
53
53
|
* Clears the selected PM item.
|
|
54
54
|
* Resets id, title and logoName.
|
|
55
55
|
*/
|
|
56
56
|
onClear(): void;
|
|
57
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<PmComponent, never>;
|
|
58
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PmComponent, "cai-pm", never, { "items": { "alias": "items"; "required": false; }; }, { "
|
|
58
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmComponent, "cai-pm", never, { "items": { "alias": "items"; "required": false; }; }, { "dropdownActions": "dropdownActions"; }, never, never, true, never>;
|
|
59
59
|
}
|