@lucca-front/ng 18.3.1 → 18.3.2

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 (43) hide show
  1. package/core-select/input/select-input.component.d.ts +1 -1
  2. package/esm2022/callout/callout-disclosure/callout-disclosure.component.mjs +3 -3
  3. package/esm2022/core-select/input/select-input.component.mjs +8 -6
  4. package/esm2022/core-select/user/users.directive.mjs +6 -3
  5. package/esm2022/date2/date-input/date-input.component.mjs +24 -5
  6. package/esm2022/form-field/form-field.component.mjs +10 -9
  7. package/esm2022/forms/checkbox-input/checkbox-input.component.mjs +3 -3
  8. package/esm2022/forms/form-field-id.directive.mjs +4 -4
  9. package/esm2022/multi-select/displayer/displayer-input.directive.mjs +5 -5
  10. package/esm2022/multi-select/input/select-all/with-select-all.directive.mjs +9 -13
  11. package/esm2022/multi-select/input/select-input.component.mjs +8 -4
  12. package/esm2022/skeleton/skeleton-field/skeleton-field.component.mjs +2 -2
  13. package/esm2022/tooltip/panel/tooltip-panel.component.mjs +3 -3
  14. package/esm2022/tooltip/trigger/ellipsis.ruler.mjs +40 -18
  15. package/esm2022/tooltip/trigger/tooltip-trigger.directive.mjs +38 -37
  16. package/esm2022/user/tile/user-tile.component.mjs +2 -2
  17. package/fesm2022/lucca-front-ng-callout.mjs +2 -2
  18. package/fesm2022/lucca-front-ng-callout.mjs.map +1 -1
  19. package/fesm2022/lucca-front-ng-core-select-user.mjs +5 -2
  20. package/fesm2022/lucca-front-ng-core-select-user.mjs.map +1 -1
  21. package/fesm2022/lucca-front-ng-core-select.mjs +5 -3
  22. package/fesm2022/lucca-front-ng-core-select.mjs.map +1 -1
  23. package/fesm2022/lucca-front-ng-date2.mjs +23 -4
  24. package/fesm2022/lucca-front-ng-date2.mjs.map +1 -1
  25. package/fesm2022/lucca-front-ng-form-field.mjs +9 -8
  26. package/fesm2022/lucca-front-ng-form-field.mjs.map +1 -1
  27. package/fesm2022/lucca-front-ng-forms.mjs +5 -5
  28. package/fesm2022/lucca-front-ng-forms.mjs.map +1 -1
  29. package/fesm2022/lucca-front-ng-multi-select.mjs +18 -19
  30. package/fesm2022/lucca-front-ng-multi-select.mjs.map +1 -1
  31. package/fesm2022/lucca-front-ng-skeleton.mjs +2 -2
  32. package/fesm2022/lucca-front-ng-skeleton.mjs.map +1 -1
  33. package/fesm2022/lucca-front-ng-tooltip.mjs +79 -56
  34. package/fesm2022/lucca-front-ng-tooltip.mjs.map +1 -1
  35. package/fesm2022/lucca-front-ng-user.mjs +2 -2
  36. package/fesm2022/lucca-front-ng-user.mjs.map +1 -1
  37. package/form-field/form-field.component.d.ts +1 -1
  38. package/multi-select/displayer/displayer-input.directive.d.ts +2 -2
  39. package/multi-select/input/select-input.component.d.ts +3 -1
  40. package/package.json +26 -26
  41. package/tooltip/panel/tooltip-panel.component.d.ts +2 -2
  42. package/tooltip/trigger/ellipsis.ruler.d.ts +9 -2
  43. package/tooltip/trigger/tooltip-trigger.directive.d.ts +4 -6
@@ -6,13 +6,13 @@ import { Observable, Subject } from 'rxjs';
6
6
  import * as i0 from "@angular/core";
7
7
  export declare class LuTooltipTriggerDirective implements AfterContentInit, OnDestroy {
8
8
  #private;
9
- luTooltip: string | SafeHtml;
9
+ luTooltip: import("@angular/core").InputSignal<string | SafeHtml>;
10
10
  set luTooltipEnterDelay(delay: number);
11
11
  set luTooltipLeaveDelay(delay: number);
12
- set luTooltipDisabled(disabled: boolean);
12
+ luTooltipDisabled: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
13
13
  luTooltipOnlyForDisplay: boolean;
14
14
  luTooltipPosition: LuPopoverPosition;
15
- luTooltipWhenEllipsis: boolean;
15
+ luTooltipWhenEllipsis: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
16
16
  resize$: Observable<unknown>;
17
17
  open$: Subject<void>;
18
18
  close$: Subject<void>;
@@ -38,10 +38,8 @@ export declare class LuTooltipTriggerDirective implements AfterContentInit, OnDe
38
38
  private invertVerticalPos;
39
39
  private invertHorizontalPos;
40
40
  static ɵfac: i0.ɵɵFactoryDeclaration<LuTooltipTriggerDirective, never>;
41
- static ɵdir: i0.ɵɵDirectiveDeclaration<LuTooltipTriggerDirective, "[luTooltip]", ["luTooltip"], { "luTooltip": { "alias": "luTooltip"; "required": false; }; "luTooltipEnterDelay": { "alias": "luTooltipEnterDelay"; "required": false; }; "luTooltipLeaveDelay": { "alias": "luTooltipLeaveDelay"; "required": false; }; "luTooltipDisabled": { "alias": "luTooltipDisabled"; "required": false; }; "luTooltipOnlyForDisplay": { "alias": "luTooltipOnlyForDisplay"; "required": false; }; "luTooltipPosition": { "alias": "luTooltipPosition"; "required": false; }; "luTooltipWhenEllipsis": { "alias": "luTooltipWhenEllipsis"; "required": false; }; }, {}, never, never, true, never>;
41
+ static ɵdir: i0.ɵɵDirectiveDeclaration<LuTooltipTriggerDirective, "[luTooltip]", ["luTooltip"], { "luTooltip": { "alias": "luTooltip"; "required": false; "isSignal": true; }; "luTooltipEnterDelay": { "alias": "luTooltipEnterDelay"; "required": false; }; "luTooltipLeaveDelay": { "alias": "luTooltipLeaveDelay"; "required": false; }; "luTooltipDisabled": { "alias": "luTooltipDisabled"; "required": false; "isSignal": true; }; "luTooltipOnlyForDisplay": { "alias": "luTooltipOnlyForDisplay"; "required": false; }; "luTooltipPosition": { "alias": "luTooltipPosition"; "required": false; }; "luTooltipWhenEllipsis": { "alias": "luTooltipWhenEllipsis"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
42
42
  static ngAcceptInputType_luTooltipEnterDelay: unknown;
43
43
  static ngAcceptInputType_luTooltipLeaveDelay: unknown;
44
- static ngAcceptInputType_luTooltipDisabled: unknown;
45
44
  static ngAcceptInputType_luTooltipOnlyForDisplay: unknown;
46
- static ngAcceptInputType_luTooltipWhenEllipsis: unknown;
47
45
  }