@wolkabout/commons 0.0.61 → 0.0.63
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
|
@@ -911,7 +911,7 @@ declare class LabeledValueComponent {
|
|
|
911
911
|
}
|
|
912
912
|
|
|
913
913
|
declare class IconComponent {
|
|
914
|
-
icon: _angular_core.InputSignal<string | number |
|
|
914
|
+
icon: _angular_core.InputSignal<string | number | LoadedIcon | SvgIcon>;
|
|
915
915
|
isAsyncIcon(): LoadedIcon | null;
|
|
916
916
|
isSvgIcon(): SvgIcon | null;
|
|
917
917
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
@@ -1043,17 +1043,15 @@ interface SearchAction {
|
|
|
1043
1043
|
}
|
|
1044
1044
|
declare class NestedListViewComponent<ItemType> {
|
|
1045
1045
|
private destroyRef;
|
|
1046
|
-
private dialog;
|
|
1047
1046
|
dataSource: _angular_core.InputSignal<NestedListDataSource<ItemType>>;
|
|
1048
1047
|
dataControl: _angular_core.InputSignal<NestedListDataControl<ItemType>>;
|
|
1049
|
-
|
|
1048
|
+
width: _angular_core.InputSignal<"full" | "quarter" | "third" | "half">;
|
|
1050
1049
|
disableThresholdId: _angular_core.InputSignal<string | null | undefined>;
|
|
1051
|
-
hideDetails: _angular_core.InputSignal<boolean>;
|
|
1052
1050
|
isColoredInput: _angular_core.InputSignal<boolean>;
|
|
1053
1051
|
searchActions: _angular_core.InputSignal<SearchAction[]>;
|
|
1054
1052
|
defaultSearchAction: _angular_core.Signal<SearchAction | undefined>;
|
|
1055
1053
|
otherSearchActions: _angular_core.Signal<SearchAction[]>;
|
|
1056
|
-
|
|
1054
|
+
widthClass: _angular_core.Signal<"w-full" | "w-1/4" | "w-1/3" | "w-1/2">;
|
|
1057
1055
|
selectionConfirmationAction: _angular_core.InputSignal<() => Observable<boolean>>;
|
|
1058
1056
|
loadingBreadcrumbs: _angular_core.WritableSignal<boolean>;
|
|
1059
1057
|
loadingChildren: _angular_core.WritableSignal<boolean>;
|
|
@@ -1072,17 +1070,15 @@ declare class NestedListViewComponent<ItemType> {
|
|
|
1072
1070
|
filteredChildren: _angular_core.Signal<NestedListItem<ItemType>[]>;
|
|
1073
1071
|
itemSelected: _angular_core.OutputEmitterRef<ItemType | null>;
|
|
1074
1072
|
itemTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
1075
|
-
constructor(destroyRef: DestroyRef
|
|
1073
|
+
constructor(destroyRef: DestroyRef);
|
|
1076
1074
|
private initiateState;
|
|
1077
1075
|
selectBreadcrumb(item: NestedListItem<ItemType>): void;
|
|
1078
1076
|
selectChild(item: NestedListItem<ItemType>): void;
|
|
1079
1077
|
dragStart(event: DragEvent, item: ItemType): void;
|
|
1080
1078
|
resetNavigation(): void;
|
|
1081
1079
|
shouldDisableBreadcrumbClick(item: NestedListItem<ItemType>): boolean | "" | null | undefined;
|
|
1082
|
-
isAsyncIcon(item: NestedListItem<ItemType>): LoadedIcon | null;
|
|
1083
|
-
isSvgIcon(item: NestedListItem<ItemType>): SvgIcon | null;
|
|
1084
1080
|
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; }; "
|
|
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; }; "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
1082
|
}
|
|
1087
1083
|
|
|
1088
1084
|
declare class PdfViewerComponent {
|
|
@@ -1161,17 +1157,11 @@ declare class StandardListDataControl<ItemType> {
|
|
|
1161
1157
|
get itemRemoved$(): Observable<string>;
|
|
1162
1158
|
}
|
|
1163
1159
|
|
|
1164
|
-
interface StyleOverride {
|
|
1165
|
-
card?: Record<string, boolean>;
|
|
1166
|
-
leftIcon?: Record<string, boolean>;
|
|
1167
|
-
rightIcon?: Record<string, boolean>;
|
|
1168
|
-
}
|
|
1169
1160
|
declare class StandardListViewComponent<ItemType> {
|
|
1170
1161
|
dataSource: _angular_core.InputSignal<StandardListDataSource<ItemType>>;
|
|
1171
1162
|
dataControl: _angular_core.InputSignal<StandardListDataControl<ItemType>>;
|
|
1172
1163
|
position: _angular_core.InputSignal<"inner" | "outer">;
|
|
1173
1164
|
isColoredInput: _angular_core.InputSignal<boolean>;
|
|
1174
|
-
styleOverrides: _angular_core.InputSignal<StyleOverride>;
|
|
1175
1165
|
loadingData: _angular_core.WritableSignal<boolean>;
|
|
1176
1166
|
loadingPage: _angular_core.WritableSignal<boolean>;
|
|
1177
1167
|
selectedItem: _angular_core.WritableSignal<StandardListItem<ItemType> | null>;
|
|
@@ -1190,7 +1180,7 @@ declare class StandardListViewComponent<ItemType> {
|
|
|
1190
1180
|
selectEmpty(): void;
|
|
1191
1181
|
loadMore(): void;
|
|
1192
1182
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<StandardListViewComponent<any>, never>;
|
|
1193
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StandardListViewComponent<any>, "app-standard-list-view", never, { "dataSource": { "alias": "dataSource"; "required": true; "isSignal": true; }; "dataControl": { "alias": "dataControl"; "required": true; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "isColoredInput": { "alias": "isColoredInput"; "required": false; "isSignal": true; }; "
|
|
1183
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StandardListViewComponent<any>, "app-standard-list-view", never, { "dataSource": { "alias": "dataSource"; "required": true; "isSignal": true; }; "dataControl": { "alias": "dataControl"; "required": true; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "isColoredInput": { "alias": "isColoredInput"; "required": false; "isSignal": true; }; "hideSearch": { "alias": "hideSearch"; "required": false; "isSignal": true; }; "hideDetails": { "alias": "hideDetails"; "required": false; "isSignal": true; }; "hidePadding": { "alias": "hidePadding"; "required": false; "isSignal": true; }; }, { "itemSelected": "itemSelected"; }, ["itemTemplate"], ["[app-no-items-message]", "[app-actions]", "[app-details]"], true, never>;
|
|
1194
1184
|
}
|
|
1195
1185
|
|
|
1196
1186
|
declare const LAST_ACTIVE_TAB_KEY = "WOLK_LAST_ACTIVE_TAB";
|
|
@@ -1557,4 +1547,4 @@ declare class ValueInputVectorComponent implements ControlValueAccessor, Validat
|
|
|
1557
1547
|
}
|
|
1558
1548
|
|
|
1559
1549
|
export { AUTHENTICATION_CLIENT, AssetManager, AuthenticationService, AutocompleteChipsComponent, AutocompleteComponent, BasicTimeSeriesGraphComponent, COLORS, CUSTOM_PERIOD, CardLabeledValueComponent, ConfirmationDialogComponent, DEFAULT_LOCALE, DEFAULT_TIMEZONES, DEFAULT_TIME_ZONE, DataType, DateRangeInputComponent, DateTimeFormFieldComponent, DragDropFileUploadComponent, DurationPipe, FeatureRegistry, GoogleMapComponent, IconComponent, IconRegistryService, ImageDisplayComponent, ImagePreviewComponent, LAST_ACTIVE_TAB_KEY, LOCALES, LabeledValueComponent, LoadedIconComponent, LoadingIndicatorDirective, LocalSortTableComponent, Locale, LocalizedNumberPipe, LocalizedNumericInputDirective, MILLISECONDS_IN_DAY, MapsLoaderService, MasterDetailsViewComponent, MessageTooltipDirective, MissingTranslationHelper, NestedListDataControl, NestedListDataSource, NestedListViewComponent, NotificationService, OverflowClassDirective, PdfViewerComponent, PeriodErrorStateMatcher, PermissionsService, RELATIVE_TIME_PERIODS, RelativeTimePeriod, RequiresAllGlobalOrAssetPermissionsDirective, RequiresAllPermissionDirective, RequiresGlobalOrAsserPermissionDirective, RequiresPermissionDirective, ScrollIntoViewDirective, SharedModule, SimpleDatePipe, SimpleDateTimePipe, SimpleTimePipe, SortPipe, StandardListDataControl, StandardListDataSource, StandardListViewComponent, TIMEZONES, TabulatedChipViewComponent, TabulatedViewComponent, TenantPropertiesService, ThemeService, TreeComponent, TreeNodeComponent, USERS_TIME_ZONE, ValueDisplayComponent, ValueInputBooleanComponent, ValueInputColorComponent, ValueInputComponent, ValueInputDateComponent, ValueInputDurationComponent, ValueInputEnumComponent, ValueInputHexadecimalComponent, ValueInputLinkComponent, ValueInputLocationComponent, ValueInputNumericComponent, ValueInputStringComponent, ValueInputVectorComponent, arrayToObject, chartThemeDark, chartThemeLight, daysAway, determineMagnitude, determineMinMaxValues, endOfPeriod, equalsByValue, fileSizeValidator, flatMap, flatten, format, formatDuration, generateRandomString, globalPermissionGuard, groupBy, hoursAway, isContextAccessible, lookUpPathPart, lookUpQueryParam, parseDateRangeInputPeriod, parseTimeInput, saveFile, scale, startOfMonth, startOfPeriod, startOfTheDay, startOfWeek, startOfYear, toDate, toEndOfMonth, toEndOfYear, toJsDate, toOffset, toStartOfMonth, toStartOfTheDay, toStartOfWeek, toStartOfYear, toTime, uniqueBy, uniqueFrom, validateAssetName, validateTypeAssetName };
|
|
1560
|
-
export type { Authentication, AuthenticationClient, Authority, Color, ConfirmationData, DateRangeValues, ExternalFeature, Feature, ImportError, LoadedIcon, MapItem, MasterDetailDisplayRatio, NestedListItem, PartialUpdate, RelativeTimePeriodWithCustom, SearchAction, SortDirection$1 as SortDirection, StandardListItem,
|
|
1550
|
+
export type { Authentication, AuthenticationClient, Authority, Color, ConfirmationData, DateRangeValues, ExternalFeature, Feature, ImportError, LoadedIcon, MapItem, MasterDetailDisplayRatio, NestedListItem, PartialUpdate, RelativeTimePeriodWithCustom, SearchAction, SortDirection$1 as SortDirection, StandardListItem, SvgIcon, Tab, Theme, TimeSeries, TimeSeriesData, TreeNode, User, ValueInputValidationConditions };
|