@wolkabout/commons 0.0.62 → 0.0.64
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
|
@@ -54,6 +54,7 @@ import { EChartsOption } from 'echarts';
|
|
|
54
54
|
import { DateTime } from 'luxon';
|
|
55
55
|
import { GoogleMap } from '@angular/google-maps';
|
|
56
56
|
import { MarkerClusterer } from '@googlemaps/markerclusterer';
|
|
57
|
+
import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
|
|
57
58
|
|
|
58
59
|
declare class SharedModule {
|
|
59
60
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SharedModule, never>;
|
|
@@ -911,7 +912,7 @@ declare class LabeledValueComponent {
|
|
|
911
912
|
}
|
|
912
913
|
|
|
913
914
|
declare class IconComponent {
|
|
914
|
-
icon: _angular_core.InputSignal<string | number |
|
|
915
|
+
icon: _angular_core.InputSignal<string | number | LoadedIcon | SvgIcon>;
|
|
915
916
|
isAsyncIcon(): LoadedIcon | null;
|
|
916
917
|
isSvgIcon(): SvgIcon | null;
|
|
917
918
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
@@ -1043,17 +1044,15 @@ interface SearchAction {
|
|
|
1043
1044
|
}
|
|
1044
1045
|
declare class NestedListViewComponent<ItemType> {
|
|
1045
1046
|
private destroyRef;
|
|
1046
|
-
private dialog;
|
|
1047
1047
|
dataSource: _angular_core.InputSignal<NestedListDataSource<ItemType>>;
|
|
1048
1048
|
dataControl: _angular_core.InputSignal<NestedListDataControl<ItemType>>;
|
|
1049
|
-
|
|
1049
|
+
width: _angular_core.InputSignal<"quarter" | "full" | "third" | "half">;
|
|
1050
1050
|
disableThresholdId: _angular_core.InputSignal<string | null | undefined>;
|
|
1051
|
-
hideDetails: _angular_core.InputSignal<boolean>;
|
|
1052
1051
|
isColoredInput: _angular_core.InputSignal<boolean>;
|
|
1053
1052
|
searchActions: _angular_core.InputSignal<SearchAction[]>;
|
|
1054
1053
|
defaultSearchAction: _angular_core.Signal<SearchAction | undefined>;
|
|
1055
1054
|
otherSearchActions: _angular_core.Signal<SearchAction[]>;
|
|
1056
|
-
|
|
1055
|
+
widthClass: _angular_core.Signal<"w-full" | "w-1/4" | "w-1/3" | "w-1/2">;
|
|
1057
1056
|
selectionConfirmationAction: _angular_core.InputSignal<() => Observable<boolean>>;
|
|
1058
1057
|
loadingBreadcrumbs: _angular_core.WritableSignal<boolean>;
|
|
1059
1058
|
loadingChildren: _angular_core.WritableSignal<boolean>;
|
|
@@ -1072,17 +1071,15 @@ declare class NestedListViewComponent<ItemType> {
|
|
|
1072
1071
|
filteredChildren: _angular_core.Signal<NestedListItem<ItemType>[]>;
|
|
1073
1072
|
itemSelected: _angular_core.OutputEmitterRef<ItemType | null>;
|
|
1074
1073
|
itemTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
1075
|
-
constructor(destroyRef: DestroyRef
|
|
1074
|
+
constructor(destroyRef: DestroyRef);
|
|
1076
1075
|
private initiateState;
|
|
1077
1076
|
selectBreadcrumb(item: NestedListItem<ItemType>): void;
|
|
1078
1077
|
selectChild(item: NestedListItem<ItemType>): void;
|
|
1079
1078
|
dragStart(event: DragEvent, item: ItemType): void;
|
|
1080
1079
|
resetNavigation(): void;
|
|
1081
1080
|
shouldDisableBreadcrumbClick(item: NestedListItem<ItemType>): boolean | "" | null | undefined;
|
|
1082
|
-
isAsyncIcon(item: NestedListItem<ItemType>): LoadedIcon | null;
|
|
1083
|
-
isSvgIcon(item: NestedListItem<ItemType>): SvgIcon | null;
|
|
1084
1081
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NestedListViewComponent<any>, never>;
|
|
1085
|
-
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; }; "
|
|
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; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "disableThresholdId": { "alias": "disableThresholdId"; "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"; }, ["itemTemplate"], ["[app-no-items-message]", "[app-actions]", "[app-details]"], true, never>;
|
|
1086
1083
|
}
|
|
1087
1084
|
|
|
1088
1085
|
declare class PdfViewerComponent {
|
|
@@ -1162,6 +1159,7 @@ declare class StandardListDataControl<ItemType> {
|
|
|
1162
1159
|
}
|
|
1163
1160
|
|
|
1164
1161
|
declare class StandardListViewComponent<ItemType> {
|
|
1162
|
+
scrollViewport: _angular_core.Signal<CdkVirtualScrollViewport | undefined>;
|
|
1165
1163
|
dataSource: _angular_core.InputSignal<StandardListDataSource<ItemType>>;
|
|
1166
1164
|
dataControl: _angular_core.InputSignal<StandardListDataControl<ItemType>>;
|
|
1167
1165
|
position: _angular_core.InputSignal<"inner" | "outer">;
|
|
@@ -1179,6 +1177,9 @@ declare class StandardListViewComponent<ItemType> {
|
|
|
1179
1177
|
filteredItems: _angular_core.Signal<StandardListItem<ItemType>[]>;
|
|
1180
1178
|
itemSelected: _angular_core.OutputEmitterRef<ItemType | null>;
|
|
1181
1179
|
itemTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
1180
|
+
private initialSelectionItemIndex;
|
|
1181
|
+
scrolledToBottom: _angular_core.WritableSignal<boolean>;
|
|
1182
|
+
private scrollSubscription;
|
|
1182
1183
|
constructor(destroyRef: DestroyRef);
|
|
1183
1184
|
selectItem(item: StandardListItem<ItemType>): void;
|
|
1184
1185
|
selectEmpty(): void;
|