@stemy/ngx-utils 19.6.9 → 19.6.10
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.
|
@@ -138,14 +138,10 @@ export interface IDialogConfig {
|
|
|
138
138
|
[id: string]: TemplateRef<any>;
|
|
139
139
|
};
|
|
140
140
|
}
|
|
141
|
-
export interface
|
|
141
|
+
export interface IConfirmMessageConfig {
|
|
142
142
|
id?: string;
|
|
143
143
|
title?: string;
|
|
144
|
-
message: string;
|
|
145
144
|
messageContext?: any;
|
|
146
|
-
buttons?: IDialogButtonConfig[];
|
|
147
|
-
method?: AsyncMethod;
|
|
148
|
-
cancelMethod?: AsyncMethod;
|
|
149
145
|
size?: string;
|
|
150
146
|
templates?: {
|
|
151
147
|
[id: string]: TemplateRef<any>;
|
|
@@ -155,9 +151,15 @@ export interface IConfirmDialogConfig {
|
|
|
155
151
|
cancelText?: string;
|
|
156
152
|
cancelClasses?: string;
|
|
157
153
|
}
|
|
154
|
+
export interface IConfirmDialogConfig extends IConfirmMessageConfig {
|
|
155
|
+
message: string;
|
|
156
|
+
method?: AsyncMethod;
|
|
157
|
+
cancelMethod?: AsyncMethod;
|
|
158
|
+
}
|
|
158
159
|
export interface IDialogService<DR = any> {
|
|
159
160
|
dialog(config: IDialogConfig): DR;
|
|
160
161
|
confirm(config: IConfirmDialogConfig): DR;
|
|
162
|
+
confirmMsg(message: string, config?: IConfirmMessageConfig): Promise<boolean>;
|
|
161
163
|
}
|
|
162
164
|
export interface IPromiseService {
|
|
163
165
|
zone: NgZone;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { IConfirmDialogConfig, IDialogConfig, IDialogService, IToasterService } from "../common-types";
|
|
1
|
+
import { IConfirmMessageConfig, IConfirmDialogConfig, IDialogConfig, IDialogService, IToasterService } from "../common-types";
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class BaseDialogService<DR = any> implements IDialogService<DR> {
|
|
4
4
|
readonly toaster: IToasterService;
|
|
5
5
|
constructor(toaster: IToasterService);
|
|
6
6
|
dialog(config: IDialogConfig): DR;
|
|
7
7
|
confirm(config: IConfirmDialogConfig): DR;
|
|
8
|
+
confirmMsg(message: string, config?: IConfirmMessageConfig): Promise<boolean>;
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseDialogService<any>, never>;
|
|
9
10
|
static ɵprov: i0.ɵɵInjectableDeclaration<BaseDialogService<any>>;
|
|
10
11
|
}
|
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "zone.js";
|
|
2
2
|
export { MaybePromise, MaybeArray, KeysOfType, ObjOfType, StringKeys, CapitalizeFirst, CamelJoin, PrefixedPick } from "./ngx-utils/helper-types";
|
|
3
|
-
export { DurationUnit, TypedFactoryProvider, TypedValueProvider, TypedExistingProvider, TypedClassProvider, TypedTokenProvider, TypedProvider, CachedFactory, IResolveFactory, CanvasColor, IIconService, ITranslation, ITranslations, ILanguageSetting, ILanguageSettings, ILanguageService, IUserData, IAuthService, RouteValidator, IRouteData, IRoute, IAclComponent, IDialogButtonConfig, IDialogConfig, IConfirmDialogConfig, IDialogService, IPromiseService, IWasi, IWasmExports, IWasm, IWasmAsync, IRouteStateInfo, NavigationUrlParam, StorageMode, ToastType, IToasterService, IAsyncMessage, AsyncMethod, IconMap, IconProps, ButtonType, ButtonSize, ButtonProps, TabValue, TabOption, ChipValue, ChipStatus, ChipOption, DropdownAttachTo, UnorderedListTemplate, UnorderedListTemplates, UnorderedListStyle, UploadType, IFileUploadResult, IFileUploadProcess, IAjaxRequestDetails, AjaxRequestCallback, ScriptType, ILoadableElement, ILoaderPromises, ISearchObservable, FactoryDependencies, ObjectType, ITimer, IExtraProperties, IGroupMap, TranslationQuery, IPageInfo, IPaginationData, PaginationDataLoader, PaginationItemContext, IPoint, IShape, CanvasItemShape, CanvasItemDirection, InteractiveCanvas, InteractiveCanvasItem, InteractiveDrawFn, InteractivePanEvent, InteractiveCanvasPointer, HttpRequestHeaders, HttpRequestQuery, HttpClientRequestOptions, HttpRequestOptions, UploadData, IIssueContext, IProgress, ProgressListener, CacheExpireMode, IHttpService, IApiService, DynamicSchemaRef, OpenApiSchemaProperty, OpenApiSchema, OpenApiSchemas, TableFilterType, ITableOrders, ITableColumn, ITableColumns, TableColumns, ITableTemplate, ITableTemplates, ITableDataQuery, TableDataLoader, DragDropEvent, DragEventHandler, ITableDragEvent, DynamicTableDragHandler, ResourceIfContext, CssSelector, CssSelectorList, DynamicComponentLocation, DynamicModuleInfo, DynamicEntryComponents, IConfiguration, IConfigService, ResizeEventStrategy, ErrorHandlerCallback, GlobalComponentModifier, AppInitializerFunc, IModuleConfig, ValuedPromise } from "./ngx-utils/common-types";
|
|
3
|
+
export { DurationUnit, TypedFactoryProvider, TypedValueProvider, TypedExistingProvider, TypedClassProvider, TypedTokenProvider, TypedProvider, CachedFactory, IResolveFactory, CanvasColor, IIconService, ITranslation, ITranslations, ILanguageSetting, ILanguageSettings, ILanguageService, IUserData, IAuthService, RouteValidator, IRouteData, IRoute, IAclComponent, IDialogButtonConfig, IDialogConfig, IConfirmMessageConfig, IConfirmDialogConfig, IDialogService, IPromiseService, IWasi, IWasmExports, IWasm, IWasmAsync, IRouteStateInfo, NavigationUrlParam, StorageMode, ToastType, IToasterService, IAsyncMessage, AsyncMethod, IconMap, IconProps, ButtonType, ButtonSize, ButtonProps, TabValue, TabOption, ChipValue, ChipStatus, ChipOption, DropdownAttachTo, UnorderedListTemplate, UnorderedListTemplates, UnorderedListStyle, UploadType, IFileUploadResult, IFileUploadProcess, IAjaxRequestDetails, AjaxRequestCallback, ScriptType, ILoadableElement, ILoaderPromises, ISearchObservable, FactoryDependencies, ObjectType, ITimer, IExtraProperties, IGroupMap, TranslationQuery, IPageInfo, IPaginationData, PaginationDataLoader, PaginationItemContext, IPoint, IShape, CanvasItemShape, CanvasItemDirection, InteractiveCanvas, InteractiveCanvasItem, InteractiveDrawFn, InteractivePanEvent, InteractiveCanvasPointer, HttpRequestHeaders, HttpRequestQuery, HttpClientRequestOptions, HttpRequestOptions, UploadData, IIssueContext, IProgress, ProgressListener, CacheExpireMode, IHttpService, IApiService, DynamicSchemaRef, OpenApiSchemaProperty, OpenApiSchema, OpenApiSchemas, TableFilterType, ITableOrders, ITableColumn, ITableColumns, TableColumns, ITableTemplate, ITableTemplates, ITableDataQuery, TableDataLoader, DragDropEvent, DragEventHandler, ITableDragEvent, DynamicTableDragHandler, ResourceIfContext, CssSelector, CssSelectorList, DynamicComponentLocation, DynamicModuleInfo, DynamicEntryComponents, IConfiguration, IConfigService, ResizeEventStrategy, ErrorHandlerCallback, GlobalComponentModifier, AppInitializerFunc, IModuleConfig, ValuedPromise } from "./ngx-utils/common-types";
|
|
4
4
|
export { ICON_TYPE, ICON_MAP, BUTTON_TYPE, ERROR_HANDLER, STATIC_SCHEMAS, RESIZE_STRATEGY, RESIZE_DELAY, ROOT_ELEMENT, SCRIPT_PARAMS, BASE_CONFIG, CONFIG_SERVICE, APP_BASE_URL, API_SERVICE, EXPRESS_REQUEST, WASI_IMPLEMENTATION, PROMISE_SERVICE, DIALOG_SERVICE, TOASTER_SERVICE, AUTH_SERVICE, LANGUAGE_SERVICE, ICON_SERVICE, OPTIONS_TOKEN } from "./ngx-utils/tokens";
|
|
5
5
|
export { AjaxRequestHandler } from "./ngx-utils/utils/ajax-request-handler";
|
|
6
6
|
export { ArrayUtils } from "./ngx-utils/utils/array.utils";
|