@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.
Files changed (35) hide show
  1. package/core-select/input/select-input.component.d.ts +2 -2
  2. package/esm2022/core-select/establishment/establishments.directive.mjs +2 -2
  3. package/esm2022/core-select/input/select-input.component.mjs +11 -6
  4. package/esm2022/core-select/user/users.directive.mjs +2 -2
  5. package/esm2022/dialog/dialog.service.mjs +2 -2
  6. package/esm2022/forms/text-input/text-input.component.mjs +2 -1
  7. package/esm2022/modal/dialog-adapter/dialog-content-adapter/dialog-content-adapter.component.mjs +4 -1
  8. package/esm2022/multi-select/input/select-input.component.mjs +2 -2
  9. package/esm2022/user/display/user-display.pipe.mjs +2 -2
  10. package/esm2022/user/picture/index.mjs +1 -1
  11. package/esm2022/user/picture/user-picture.component.mjs +1 -1
  12. package/esm2022/user/tile/user-tile.component.mjs +4 -4
  13. package/fesm2022/lucca-front-ng-core-select-establishment.mjs +1 -1
  14. package/fesm2022/lucca-front-ng-core-select-establishment.mjs.map +1 -1
  15. package/fesm2022/lucca-front-ng-core-select-user.mjs +1 -1
  16. package/fesm2022/lucca-front-ng-core-select-user.mjs.map +1 -1
  17. package/fesm2022/lucca-front-ng-core-select.mjs +10 -5
  18. package/fesm2022/lucca-front-ng-core-select.mjs.map +1 -1
  19. package/fesm2022/lucca-front-ng-dialog.mjs +1 -1
  20. package/fesm2022/lucca-front-ng-dialog.mjs.map +1 -1
  21. package/fesm2022/lucca-front-ng-forms.mjs +1 -0
  22. package/fesm2022/lucca-front-ng-forms.mjs.map +1 -1
  23. package/fesm2022/lucca-front-ng-modal.mjs +3 -0
  24. package/fesm2022/lucca-front-ng-modal.mjs.map +1 -1
  25. package/fesm2022/lucca-front-ng-multi-select.mjs +1 -1
  26. package/fesm2022/lucca-front-ng-multi-select.mjs.map +1 -1
  27. package/fesm2022/lucca-front-ng-user.mjs +3 -3
  28. package/fesm2022/lucca-front-ng-user.mjs.map +1 -1
  29. package/modal/dialog-adapter/dialog-content-adapter/dialog-content-adapter.component.d.ts +1 -0
  30. package/package.json +33 -33
  31. package/schematics/collection.json +4 -2
  32. package/user/display/user-display.pipe.d.ts +6 -3
  33. package/user/picture/index.d.ts +1 -1
  34. package/user/picture/user-picture.component.d.ts +11 -4
  35. 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. ILuUser's role can be specified, and the footer is customizable.
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
- * ILuUser to display.
20
+ * LuUserTileUserInput to display.
13
21
  */
14
- set user(user: ILuUser);
15
- get user(): ILuUser;
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
- * ILuUser role to display
31
+ * LuUserTileUserInput role to display
24
32
  */
25
33
  set role(role: string);
26
34
  get role(): string;