@wolkabout/commons 0.0.33 → 0.0.34
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/index.d.ts
CHANGED
|
@@ -810,18 +810,17 @@ declare class DateTimeFormFieldComponent implements OnDestroy, ControlValueAcces
|
|
|
810
810
|
|
|
811
811
|
declare class DragDropFileUploadComponent implements ControlValueAccessor, Validator, AfterViewInit, OnDestroy {
|
|
812
812
|
controlDir: NgControl;
|
|
813
|
-
private notificationService;
|
|
814
813
|
dragDropZone: ElementRef<HTMLDivElement>;
|
|
815
814
|
fileInput: ElementRef<HTMLInputElement>;
|
|
816
815
|
accept: string;
|
|
817
|
-
multiple
|
|
816
|
+
multiple: boolean;
|
|
818
817
|
prompt: string;
|
|
819
|
-
highlight: boolean
|
|
820
|
-
disabled: boolean
|
|
818
|
+
highlight: _angular_core.WritableSignal<boolean>;
|
|
819
|
+
disabled: _angular_core.WritableSignal<boolean>;
|
|
821
820
|
files$: BehaviorSubject<File[] | null>;
|
|
822
821
|
TRUNCATE_NAME_LIMIT: number;
|
|
823
822
|
private destroy$;
|
|
824
|
-
constructor(controlDir: NgControl
|
|
823
|
+
constructor(controlDir: NgControl);
|
|
825
824
|
onTouched: (ev?: any) => void;
|
|
826
825
|
onValidatorChange: () => void;
|
|
827
826
|
onChange: (value: any) => void;
|
|
@@ -840,9 +839,10 @@ declare class DragDropFileUploadComponent implements ControlValueAccessor, Valid
|
|
|
840
839
|
onFileAdded({ target }: {
|
|
841
840
|
target: any;
|
|
842
841
|
}): void;
|
|
842
|
+
private handleFiles;
|
|
843
843
|
deleteFile(event: MouseEvent, index: number): void;
|
|
844
844
|
ngOnDestroy(): void;
|
|
845
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DragDropFileUploadComponent, [{ optional: true; self: true; }
|
|
845
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DragDropFileUploadComponent, [{ optional: true; self: true; }]>;
|
|
846
846
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DragDropFileUploadComponent, "application-drag-drop-file-upload", never, { "accept": { "alias": "accept"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "prompt": { "alias": "prompt"; "required": false; }; }, {}, never, never, true, never>;
|
|
847
847
|
}
|
|
848
848
|
|
|
@@ -1051,6 +1051,7 @@ declare class NestedListViewComponent<ItemType> {
|
|
|
1051
1051
|
defaultSearchAction: _angular_core.Signal<SearchAction | undefined>;
|
|
1052
1052
|
otherSearchActions: _angular_core.Signal<SearchAction[]>;
|
|
1053
1053
|
width: _angular_core.Signal<"w-full" | "basis-1/4" | "basis-1/2">;
|
|
1054
|
+
selectionConfirmationAction: _angular_core.InputSignal<() => Observable<boolean>>;
|
|
1054
1055
|
loadingBreadcrumbs: _angular_core.WritableSignal<boolean>;
|
|
1055
1056
|
loadingChildren: _angular_core.WritableSignal<boolean>;
|
|
1056
1057
|
selectedItem: _angular_core.WritableSignal<NestedListItem<ItemType> | null>;
|
|
@@ -1078,7 +1079,7 @@ declare class NestedListViewComponent<ItemType> {
|
|
|
1078
1079
|
isSvgIcon(item: NestedListItem<ItemType>): SvgIcon | null;
|
|
1079
1080
|
formControlAction(params?: any): void;
|
|
1080
1081
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NestedListViewComponent<any>, never>;
|
|
1081
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NestedListViewComponent<any>, "app-nested-list-view", never, { "dataSource": { "alias": "dataSource"; "required": true; "isSignal": true; }; "dataControl": { "alias": "dataControl"; "required": true; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "disableThresholdId": { "alias": "disableThresholdId"; "required": false; "isSignal": true; }; "hideDetails": { "alias": "hideDetails"; "required": false; "isSignal": true; }; "isColoredInput": { "alias": "isColoredInput"; "required": false; "isSignal": true; }; "searchActions": { "alias": "searchActions"; "required": false; "isSignal": true; }; "hideSearch": { "alias": "hideSearch"; "required": false; "isSignal": true; }; "rootButtonText": { "alias": "rootButtonText"; "required": false; "isSignal": true; }; "enableDrag": { "alias": "enableDrag"; "required": false; "isSignal": true; }; }, { "dragging": "dragging"; "itemSelected": "itemSelected"; }, never, ["[app-no-items-message]", "[app-actions]", "[app-details]"], true, never>;
|
|
1082
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NestedListViewComponent<any>, "app-nested-list-view", never, { "dataSource": { "alias": "dataSource"; "required": true; "isSignal": true; }; "dataControl": { "alias": "dataControl"; "required": true; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "disableThresholdId": { "alias": "disableThresholdId"; "required": false; "isSignal": true; }; "hideDetails": { "alias": "hideDetails"; "required": false; "isSignal": true; }; "isColoredInput": { "alias": "isColoredInput"; "required": false; "isSignal": true; }; "searchActions": { "alias": "searchActions"; "required": false; "isSignal": true; }; "selectionConfirmationAction": { "alias": "selectionConfirmationAction"; "required": false; "isSignal": true; }; "hideSearch": { "alias": "hideSearch"; "required": false; "isSignal": true; }; "rootButtonText": { "alias": "rootButtonText"; "required": false; "isSignal": true; }; "enableDrag": { "alias": "enableDrag"; "required": false; "isSignal": true; }; }, { "dragging": "dragging"; "itemSelected": "itemSelected"; }, never, ["[app-no-items-message]", "[app-actions]", "[app-details]"], true, never>;
|
|
1082
1083
|
}
|
|
1083
1084
|
|
|
1084
1085
|
declare class PdfViewerComponent {
|