@stemy/ngx-utils 13.6.10 → 13.6.11
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/esm2020/ngx-utils/utils/cached-factory.mjs +21 -0
- package/esm2020/public_api.mjs +6 -5
- package/fesm2015/stemy-ngx-utils.mjs +1259 -1239
- package/fesm2015/stemy-ngx-utils.mjs.map +1 -1
- package/fesm2020/stemy-ngx-utils.mjs +1238 -1218
- package/fesm2020/stemy-ngx-utils.mjs.map +1 -1
- package/ngx-utils/utils/cached-factory.d.ts +3 -0
- package/package.json +1 -1
- package/public_api.d.ts +5 -4
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
export { IResolveFactory, CanvasColor, IIconService, ICON_SERVICE, ITranslation, ITranslations, ILanguageSetting, ILanguageSettings, ILanguageService, LANGUAGE_SERVICE, IAuthService, RouteValidator, IRouteData, IRoute, AUTH_SERVICE, IAclComponent, IPromiseService, PROMISE_SERVICE, IWasi, IWasmExports, IWasm, IWasmAsync, WASI_IMPLEMENTATION, IRouteStateInfo, NavigationUrlParam, StorageMode, IToasterService, TOASTER_SERVICE, IAsyncMessage, AsyncMethod, UnorderedListTemplate, UnorderedListTemplates, UnorderedListStyle, IAjaxRequestDetails, AjaxRequestCallback, ScriptType, IScriptPromises, IStylePromises, ISearchObservable, FactoryDependencies, ObjectType, ITimer, IExtraProperties, IGroupMap, TranslationQuery, IPageInfo, IPaginationData, PaginationDataLoader, PaginationItemContext, IHttpHeaders, IHttpParams, IRequestOptions, IIssueContext, IProgress, ProgressListener, PromiseExecutor, HttpPromise, IHttpService, EXPRESS_REQUEST, IApiService, API_SERVICE, IOpenApiSchemaProperty, IOpenApiSchema, IOpenApiSchemas, ITableOrders, ITableColumn, ITableColumns, ITableTemplate, ITableTemplates, ITableDataQuery, TableDataLoader, ResourceIfContext, APP_BASE_URL, IConfiguration, IConfigService, CONFIG_SERVICE, BASE_CONFIG, SCRIPT_PARAMS, ROOT_ELEMENT, RESIZE_DELAY, ResizeEventStrategy, RESIZE_STRATEGY, ErrorHandlerCallback, ERROR_HANDLER, GlobalComponentModifier, IGlobalTemplates, GLOBAL_TEMPLATES, AppInitializerFunc, IModuleConfig, ValuedPromise } from "./ngx-utils/common-types";
|
|
2
2
|
export { AjaxRequestHandler } from "./ngx-utils/utils/ajax-request-handler";
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
3
|
+
export { ArrayUtils } from "./ngx-utils/utils/array.utils";
|
|
4
|
+
export { AuthGuard } from "./ngx-utils/utils/auth.guard";
|
|
5
|
+
export { CachedFactory, cachedFactory } from "./ngx-utils/utils/cached-factory";
|
|
5
6
|
export { CanvasUtils } from "./ngx-utils/utils/canvas.utils";
|
|
7
|
+
export { DateUtils } from "./ngx-utils/utils/date.utils";
|
|
6
8
|
export { FileUtils } from "./ngx-utils/utils/file.utils";
|
|
7
9
|
export { GenericValue } from "./ngx-utils/utils/generic-value";
|
|
8
10
|
export { FileSystemEntryOpenResult, FileSystemEntryOpenCb, FileSystemEntry } from "./ngx-utils/utils/file-system";
|
|
@@ -12,10 +14,9 @@ export { JSONfn } from "./ngx-utils/utils/jsonfn";
|
|
|
12
14
|
export { ReflectUtils } from "./ngx-utils/utils/reflect.utils";
|
|
13
15
|
export { LoaderUtils } from "./ngx-utils/utils/loader.utils";
|
|
14
16
|
export { MathUtils } from "./ngx-utils/utils/math.utils";
|
|
15
|
-
export {
|
|
17
|
+
export { ObjectUtils } from "./ngx-utils/utils/object.utils";
|
|
16
18
|
export { ObservableUtils, ISubscriberInfo } from "./ngx-utils/utils/observable.utils";
|
|
17
19
|
export { StringUtils } from "./ngx-utils/utils/string.utils";
|
|
18
|
-
export { ArrayUtils } from "./ngx-utils/utils/array.utils";
|
|
19
20
|
export { SetUtils } from "./ngx-utils/utils/set.utils";
|
|
20
21
|
export { TimerUtils } from "./ngx-utils/utils/timer.utils";
|
|
21
22
|
export { UniqueUtils } from "./ngx-utils/utils/unique.utils";
|