@lucca-front/ng 17.3.7 → 17.3.9
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/core-select/input/select-input.component.d.ts +2 -2
- package/esm2022/core-select/establishment/establishments.directive.mjs +2 -2
- package/esm2022/core-select/input/select-input.component.mjs +11 -6
- package/esm2022/core-select/user/users.directive.mjs +2 -2
- package/esm2022/dialog/dialog.service.mjs +2 -2
- package/esm2022/forms/text-input/text-input.component.mjs +2 -1
- package/esm2022/modal/dialog-adapter/dialog-content-adapter/dialog-content-adapter.component.mjs +4 -1
- package/esm2022/multi-select/input/select-input.component.mjs +2 -2
- package/esm2022/user/display/user-display.pipe.mjs +2 -2
- package/esm2022/user/picture/index.mjs +1 -1
- package/esm2022/user/picture/user-picture.component.mjs +1 -1
- package/esm2022/user/tile/user-tile.component.mjs +4 -4
- package/fesm2022/lucca-front-ng-core-select-establishment.mjs +1 -1
- package/fesm2022/lucca-front-ng-core-select-establishment.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-core-select-user.mjs +1 -1
- package/fesm2022/lucca-front-ng-core-select-user.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-core-select.mjs +10 -5
- package/fesm2022/lucca-front-ng-core-select.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-dialog.mjs +1 -1
- package/fesm2022/lucca-front-ng-dialog.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-forms.mjs +1 -0
- package/fesm2022/lucca-front-ng-forms.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-modal.mjs +3 -0
- package/fesm2022/lucca-front-ng-modal.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-multi-select.mjs +1 -1
- package/fesm2022/lucca-front-ng-multi-select.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-user.mjs +3 -3
- package/fesm2022/lucca-front-ng-user.mjs.map +1 -1
- package/modal/dialog-adapter/dialog-content-adapter/dialog-content-adapter.component.d.ts +1 -0
- package/package.json +33 -33
- package/schematics/collection.json +4 -2
- package/user/display/user-display.pipe.d.ts +6 -3
- package/user/picture/index.d.ts +1 -1
- package/user/picture/user-picture.component.d.ts +11 -4
- package/user/tile/user-tile.component.d.ts +14 -6
|
@@ -1,18 +1,26 @@
|
|
|
1
1
|
import { ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { LuDisplayFormat, LuDisplayInitials } from '../display/index';
|
|
3
|
-
import { ILuUser } from '../user.model';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
export interface LuUserTileUserInput {
|
|
5
|
+
picture?: {
|
|
6
|
+
href: string;
|
|
7
|
+
} | null;
|
|
8
|
+
pictureHref?: string | null;
|
|
9
|
+
firstName: string;
|
|
10
|
+
lastName: string;
|
|
11
|
+
jobTitle?: string | null;
|
|
12
|
+
}
|
|
5
13
|
/**
|
|
6
|
-
* Displays user picture and name.
|
|
14
|
+
* Displays user picture and name. LuUserTileUserInput's role can be specified, and the footer is customizable.
|
|
7
15
|
*/
|
|
8
16
|
export declare class LuUserTileComponent {
|
|
9
17
|
private _changeDetector;
|
|
10
18
|
private _user;
|
|
11
19
|
/**
|
|
12
|
-
*
|
|
20
|
+
* LuUserTileUserInput to display.
|
|
13
21
|
*/
|
|
14
|
-
set user(user:
|
|
15
|
-
get user():
|
|
22
|
+
set user(user: LuUserTileUserInput);
|
|
23
|
+
get user(): LuUserTileUserInput;
|
|
16
24
|
/**
|
|
17
25
|
* User Display format.
|
|
18
26
|
* It is set to 'lf' by default
|
|
@@ -20,7 +28,7 @@ export declare class LuUserTileComponent {
|
|
|
20
28
|
displayFormat: LuDisplayFormat;
|
|
21
29
|
private _role;
|
|
22
30
|
/**
|
|
23
|
-
*
|
|
31
|
+
* LuUserTileUserInput role to display
|
|
24
32
|
*/
|
|
25
33
|
set role(role: string);
|
|
26
34
|
get role(): string;
|