@wolkabout/commons 0.0.63 → 0.0.65
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 | SvgIcon | LoadedIcon>;
|
|
915
916
|
isAsyncIcon(): LoadedIcon | null;
|
|
916
917
|
isSvgIcon(): SvgIcon | null;
|
|
917
918
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
@@ -1045,7 +1046,7 @@ declare class NestedListViewComponent<ItemType> {
|
|
|
1045
1046
|
private destroyRef;
|
|
1046
1047
|
dataSource: _angular_core.InputSignal<NestedListDataSource<ItemType>>;
|
|
1047
1048
|
dataControl: _angular_core.InputSignal<NestedListDataControl<ItemType>>;
|
|
1048
|
-
width: _angular_core.InputSignal<"
|
|
1049
|
+
width: _angular_core.InputSignal<"quarter" | "full" | "third" | "half">;
|
|
1049
1050
|
disableThresholdId: _angular_core.InputSignal<string | null | undefined>;
|
|
1050
1051
|
isColoredInput: _angular_core.InputSignal<boolean>;
|
|
1051
1052
|
searchActions: _angular_core.InputSignal<SearchAction[]>;
|
|
@@ -1158,6 +1159,7 @@ declare class StandardListDataControl<ItemType> {
|
|
|
1158
1159
|
}
|
|
1159
1160
|
|
|
1160
1161
|
declare class StandardListViewComponent<ItemType> {
|
|
1162
|
+
scrollViewport: _angular_core.Signal<CdkVirtualScrollViewport | undefined>;
|
|
1161
1163
|
dataSource: _angular_core.InputSignal<StandardListDataSource<ItemType>>;
|
|
1162
1164
|
dataControl: _angular_core.InputSignal<StandardListDataControl<ItemType>>;
|
|
1163
1165
|
position: _angular_core.InputSignal<"inner" | "outer">;
|
|
@@ -1175,6 +1177,9 @@ declare class StandardListViewComponent<ItemType> {
|
|
|
1175
1177
|
filteredItems: _angular_core.Signal<StandardListItem<ItemType>[]>;
|
|
1176
1178
|
itemSelected: _angular_core.OutputEmitterRef<ItemType | null>;
|
|
1177
1179
|
itemTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
1180
|
+
private initialSelectionItemIndex;
|
|
1181
|
+
scrolledToBottom: _angular_core.WritableSignal<boolean>;
|
|
1182
|
+
private scrollSubscription;
|
|
1178
1183
|
constructor(destroyRef: DestroyRef);
|
|
1179
1184
|
selectItem(item: StandardListItem<ItemType>): void;
|
|
1180
1185
|
selectEmpty(): void;
|