@wolkabout/commons 0.3.4 → 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/README.md +17 -17
- package/fesm2022/wolkabout-commons.mjs +144 -99
- package/fesm2022/wolkabout-commons.mjs.map +1 -1
- package/package.json +1 -1
- package/types/wolkabout-commons.d.ts +21 -2
package/package.json
CHANGED
|
@@ -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 };
|