@dsivd/prestations-ng 19.0.1 → 19.0.2-beta.1
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/package.json
CHANGED
|
@@ -1134,7 +1134,7 @@ declare abstract class FoehnCheckableGroupComponent extends FoehnInputComponent<
|
|
|
1134
1134
|
* By default `x => x`
|
|
1135
1135
|
*/
|
|
1136
1136
|
readonly elementValueIdentity: _angular_core.InputSignal<(element: any) => any>;
|
|
1137
|
-
readonly elementDisabled: _angular_core.InputSignal<any>;
|
|
1137
|
+
readonly elementDisabled: _angular_core.InputSignal<string | ((element: any) => boolean)>;
|
|
1138
1138
|
readonly elementGroup: _angular_core.InputSignal<any>;
|
|
1139
1139
|
readonly autocomplete: _angular_core.InputSignalWithTransform<string | boolean, string | boolean>;
|
|
1140
1140
|
readonly defaultElementValue: _angular_core.InputSignal<string>;
|
|
@@ -1155,7 +1155,7 @@ declare abstract class FoehnCheckableGroupComponent extends FoehnInputComponent<
|
|
|
1155
1155
|
getValue(element: any): string;
|
|
1156
1156
|
getLabel(element: any): string;
|
|
1157
1157
|
getElementIdentifier(element: any): string;
|
|
1158
|
-
getDisabled(element: any):
|
|
1158
|
+
getDisabled(element: any): boolean;
|
|
1159
1159
|
onCheck(element: any, valueEmitted: any, fireModelChange?: boolean): void;
|
|
1160
1160
|
isElementSelected(element: any): boolean;
|
|
1161
1161
|
reset(): void;
|
|
@@ -1217,7 +1217,7 @@ declare class FoehnAutocompleteComponent extends FoehnCheckableGroupComponent im
|
|
|
1217
1217
|
VIEW_PORT_HEIGHT: number;
|
|
1218
1218
|
displayedElements: any[];
|
|
1219
1219
|
notificationMessageUpdated: boolean;
|
|
1220
|
-
disabledSubject: Observable<
|
|
1220
|
+
disabledSubject: Observable<boolean>;
|
|
1221
1221
|
private currentItemGlobalIndex;
|
|
1222
1222
|
private readonly NB_ITEMS_VISIBLE;
|
|
1223
1223
|
private filterSubject;
|
|
@@ -3334,9 +3334,9 @@ declare class FoehnDatePickerComponent implements OnInit {
|
|
|
3334
3334
|
onDaysFocusout(): void;
|
|
3335
3335
|
getDayTabIndex(day: DayMonth): number;
|
|
3336
3336
|
focusDefaultDay(): void;
|
|
3337
|
-
getDayDisabledAttribute(dayOfWeek: DayMonth):
|
|
3338
|
-
isPreviousMonthDisabled(monthYear: MonthYear):
|
|
3339
|
-
isNextMonthDisabled(monthYear: MonthYear):
|
|
3337
|
+
getDayDisabledAttribute(dayOfWeek: DayMonth): boolean;
|
|
3338
|
+
isPreviousMonthDisabled(monthYear: MonthYear): boolean;
|
|
3339
|
+
isNextMonthDisabled(monthYear: MonthYear): boolean;
|
|
3340
3340
|
private isDateInRange;
|
|
3341
3341
|
private initializeDatepicker;
|
|
3342
3342
|
private setDate;
|
|
Binary file
|