@wolkabout/commons 0.3.5 → 0.3.6
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
|
@@ -950,7 +950,7 @@ declare class LabeledValueComponent {
|
|
|
950
950
|
}
|
|
951
951
|
|
|
952
952
|
declare class IconComponent {
|
|
953
|
-
icon: _angular_core.InputSignal<string | number |
|
|
953
|
+
icon: _angular_core.InputSignal<string | number | SvgIcon | LoadedIcon>;
|
|
954
954
|
isAsyncIcon(): LoadedIcon | null;
|
|
955
955
|
isSvgIcon(): SvgIcon | null;
|
|
956
956
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
@@ -1718,5 +1718,24 @@ declare class ZoomControlsComponent {
|
|
|
1718
1718
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZoomControlsComponent, "app-zoom-controls", never, { "zoomPercentage": { "alias": "zoomPercentage"; "required": true; "isSignal": true; }; "canZoomIn": { "alias": "canZoomIn"; "required": true; "isSignal": true; }; "canZoomOut": { "alias": "canZoomOut"; "required": true; "isSignal": true; }; }, { "zoomIn": "zoomIn"; "zoomOut": "zoomOut"; "reset": "reset"; }, never, ["*"], true, never>;
|
|
1719
1719
|
}
|
|
1720
1720
|
|
|
1721
|
-
|
|
1722
|
-
|
|
1721
|
+
interface DeleteConfirmationData {
|
|
1722
|
+
items: string[];
|
|
1723
|
+
entity: string;
|
|
1724
|
+
action?: string;
|
|
1725
|
+
title?: string;
|
|
1726
|
+
isDeleteMode?: boolean;
|
|
1727
|
+
}
|
|
1728
|
+
declare class BulkConfirmationDialogComponent {
|
|
1729
|
+
data: DeleteConfirmationData;
|
|
1730
|
+
private dialog;
|
|
1731
|
+
isDeleteMode: _angular_core.WritableSignal<boolean>;
|
|
1732
|
+
action: _angular_core.WritableSignal<string>;
|
|
1733
|
+
title: _angular_core.WritableSignal<string>;
|
|
1734
|
+
constructor(data: DeleteConfirmationData, dialog: MatDialogRef<BulkConfirmationDialogComponent>);
|
|
1735
|
+
confirm(): void;
|
|
1736
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BulkConfirmationDialogComponent, never>;
|
|
1737
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BulkConfirmationDialogComponent, "app-delete-confirmation-dialog", never, {}, {}, never, never, true, never>;
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
export { AUTHENTICATION_CLIENT, AssetManager, AuthenticationService, AutocompleteChipsComponent, AutocompleteComponent, BasicTimeSeriesGraphComponent, BulkConfirmationDialogComponent, COLORS, CUSTOM_PERIOD, CardLabeledValueComponent, ConfirmationDialogComponent, DEFAULT_LOCALE, DEFAULT_TIMEZONES, DEFAULT_TIME_ZONE, DataType, DateRangeInputComponent, DateTimeFormFieldComponent, DoubleDrawerLayoutComponent, DragDropFileUploadComponent, DurationPipe, FeatureRegistry, FullscreenService, GoogleMapComponent, IconComponent, IconRegistryService, ImageDisplayComponent, ImagePreviewComponent, LAST_ACTIVE_TAB_KEY, LOCALES, LabeledValueComponent, LoadedIconComponent, LoadingIndicatorDirective, LocalSortTableComponent, Locale, LocalizedNumberPipe, LocalizedNumericInputDirective, MILLISECONDS_IN_DAY, MapsLoaderService, MasterDetailsViewComponent, MessageTooltipDirective, MissingTranslationHelper, NavigationPersistenceService, 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, ZoomControlsComponent, arrayToObject, chartThemeDark, chartThemeLight, daysAway, determineMagnitude, determineMinMaxValues, endOfPeriod, equalsByValue, externalUrlFormatValidator, fileOrExternalUrlRequired, fileSizeValidator, flatMap, flatten, format, formatDuration, generateRandomString, getDecimalPlaces, globalPermissionGuard, groupBy, hoursAway, isContextAccessible, lookUpPathPart, lookUpQueryParam, parseDateRangeInputPeriod, parseTimeInput, saveFile, scale, startOfMonth, startOfPeriod, startOfTheDay, startOfWeek, startOfYear, tenantHostUrlValidator, toDate, toEndOfMonth, toEndOfYear, toJsDate, toOffset, toStartOfMonth, toStartOfTheDay, toStartOfWeek, toStartOfYear, toTime, uniqueBy, uniqueFrom, validateAssetName, validateTypeAssetName };
|
|
1741
|
+
export type { Authentication, AuthenticationClient, Authority, Color, ConfirmationData, DateRangeValues, DeleteConfirmationData, ExternalFeature, Feature, FullScreenConfig, ImportError, LayoutBackdropConfig, LayoutDialogConfig, LayoutDrawerConfig, LoadedIcon, MapItem, MasterDetailDisplayRatio, NestedListItem, PartialUpdate, RelativeTimePeriodWithCustom, SearchAction, SortDirection$1 as SortDirection, StandardListItem, SvgIcon, Tab, Theme, TimeSeries, TimeSeriesData, TreeNode, User, ValueInputValidationConditions };
|