@lucca-front/ng 19.3.3-rc.3 → 19.3.3-rc.6
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/date2/abstract-date-component.d.ts +4 -4
- package/date2/calendar2/calendar2.component.d.ts +7 -7
- package/dialog/model/dialog-ref.d.ts +6 -1
- package/divider/divider.component.d.ts +5 -8
- package/fesm2022/lucca-front-ng-date2.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-dialog.mjs +15 -7
- package/fesm2022/lucca-front-ng-dialog.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-divider.mjs +12 -25
- package/fesm2022/lucca-front-ng-divider.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-file-upload.mjs +1 -1
- package/fesm2022/lucca-front-ng-file-upload.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-filter-pills.mjs +1 -1
- package/fesm2022/lucca-front-ng-filter-pills.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-forms-rich-text-input.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-forms.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-link.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-page-header.mjs +2 -2
- package/fesm2022/lucca-front-ng-page-header.mjs.map +1 -1
- package/fesm2022/lucca-front-ng-skeleton.mjs +2 -2
- package/fesm2022/lucca-front-ng-skeleton.mjs.map +1 -1
- package/file-upload/base-file-upload/base-file-upload.component.d.ts +1 -1
- package/filter-pills/filter-pill/filter-pill.component.d.ts +1 -1
- package/forms/number-input/number-input.component.d.ts +2 -2
- package/forms/rich-text-input/rich-text-input.component.d.ts +2 -2
- package/forms/textarea-input/textarea-input.component.d.ts +1 -1
- package/link/link.component.d.ts +1 -1
- package/package.json +51 -51
- package/page-header/page-header.component.d.ts +1 -1
|
@@ -15,11 +15,11 @@ export declare abstract class AbstractDateComponent {
|
|
|
15
15
|
format: import("@angular/core").InputSignal<DateFormat>;
|
|
16
16
|
protected inDateISOFormat: import("@angular/core").Signal<boolean>;
|
|
17
17
|
ranges: import("@angular/core").InputSignalWithTransform<DateRange[], readonly DateRange[] | readonly DateRangeInput[]>;
|
|
18
|
-
hideToday: import("@angular/core").InputSignalWithTransform<boolean,
|
|
19
|
-
hasTodayButton: import("@angular/core").InputSignalWithTransform<boolean,
|
|
20
|
-
clearable: import("@angular/core").InputSignalWithTransform<boolean,
|
|
18
|
+
hideToday: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
19
|
+
hasTodayButton: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
20
|
+
clearable: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
21
21
|
mode: import("@angular/core").InputSignal<CalendarMode>;
|
|
22
|
-
hideWeekend: import("@angular/core").InputSignalWithTransform<boolean,
|
|
22
|
+
hideWeekend: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
23
23
|
getCellInfo: import("@angular/core").InputSignal<(day: Date, mode: CalendarMode) => CellStatus>;
|
|
24
24
|
min: import("@angular/core").InputSignalWithTransform<Date, string | Date>;
|
|
25
25
|
max: import("@angular/core").InputSignalWithTransform<Date, string | Date>;
|
|
@@ -9,13 +9,13 @@ export declare class Calendar2Component implements OnInit {
|
|
|
9
9
|
#private;
|
|
10
10
|
readonly elementRef: ElementRef<HTMLElement>;
|
|
11
11
|
intl: import("../date2.translate").Date2Translate;
|
|
12
|
-
showOverflow: import("@angular/core").InputSignalWithTransform<boolean,
|
|
13
|
-
enableOverflow: import("@angular/core").InputSignalWithTransform<boolean,
|
|
14
|
-
removeYearOverflow: import("@angular/core").InputSignalWithTransform<boolean,
|
|
15
|
-
hideToday: import("@angular/core").InputSignalWithTransform<boolean,
|
|
16
|
-
hasTodayButton: import("@angular/core").InputSignalWithTransform<boolean,
|
|
17
|
-
hideWeekend: import("@angular/core").InputSignalWithTransform<boolean,
|
|
18
|
-
disableModeChange: import("@angular/core").InputSignalWithTransform<boolean,
|
|
12
|
+
showOverflow: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
13
|
+
enableOverflow: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
14
|
+
removeYearOverflow: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
15
|
+
hideToday: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
16
|
+
hasTodayButton: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
17
|
+
hideWeekend: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
18
|
+
disableModeChange: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
19
19
|
date: import("@angular/core").ModelSignal<Date>;
|
|
20
20
|
tabbableDate: import("@angular/core").ModelSignal<Date>;
|
|
21
21
|
mode: import("@angular/core").ModelSignal<CalendarMode>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Observable } from 'rxjs';
|
|
2
1
|
import { DialogRef } from '@angular/cdk/dialog';
|
|
2
|
+
import { Observable, Subscription } from 'rxjs';
|
|
3
3
|
import { LuDialogConfig, LuDialogResult } from './dialog-config';
|
|
4
4
|
export declare const DISMISSED_VALUE: {};
|
|
5
5
|
export declare class LuDialogRef<C = unknown> {
|
|
@@ -9,6 +9,11 @@ export declare class LuDialogRef<C = unknown> {
|
|
|
9
9
|
* Instance of the component that's inside the dialog
|
|
10
10
|
*/
|
|
11
11
|
get instance(): C;
|
|
12
|
+
/**
|
|
13
|
+
* Subscription to the detachments of the dialog
|
|
14
|
+
* This is used to close the dialog when it is detached
|
|
15
|
+
*/
|
|
16
|
+
detachSubscription: Subscription | null;
|
|
12
17
|
/**
|
|
13
18
|
* Emits when the dialog is closed
|
|
14
19
|
*
|
|
@@ -3,15 +3,12 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class DividerComponent implements OnChanges {
|
|
4
4
|
#private;
|
|
5
5
|
content: ElementRef;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
vertical: false;
|
|
11
|
-
size: 'M' | 'S';
|
|
6
|
+
separatorRole: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
7
|
+
vertical: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
8
|
+
size: import("@angular/core").InputSignal<"M" | "S">;
|
|
9
|
+
withRole: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
12
10
|
ngOnChanges(): void;
|
|
13
11
|
updateClasses(): void;
|
|
14
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<DividerComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DividerComponent, "lu-divider", never, { "
|
|
16
|
-
static ngAcceptInputType_vertical: unknown;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DividerComponent, "lu-divider", never, { "separatorRole": { "alias": "separatorRole"; "required": false; "isSignal": true; }; "vertical": { "alias": "vertical"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "withRole": { "alias": "withRole"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
17
14
|
}
|