@stemy/ngx-utils 19.9.27 → 19.9.29
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.
|
@@ -116,6 +116,7 @@ export interface MenuItem {
|
|
|
116
116
|
path: string;
|
|
117
117
|
page: string;
|
|
118
118
|
label: string;
|
|
119
|
+
icon: string;
|
|
119
120
|
side: string;
|
|
120
121
|
external: boolean;
|
|
121
122
|
data: IRouteData;
|
|
@@ -482,7 +483,7 @@ export interface IProgress {
|
|
|
482
483
|
total?: number;
|
|
483
484
|
}
|
|
484
485
|
export type ProgressListener = (progress: IProgress) => void;
|
|
485
|
-
export type CacheExpireMode = boolean | "auth" | Date;
|
|
486
|
+
export type CacheExpireMode = boolean | number | "auth" | Date;
|
|
486
487
|
export interface IHttpService {
|
|
487
488
|
readonly language: ILanguageService;
|
|
488
489
|
readonly requestHeaders: Readonly<HttpRequestHeaders>;
|
|
@@ -68,7 +68,7 @@ import { WysiwygComponent } from "./components/wysiwyg/wysiwyg.component";
|
|
|
68
68
|
export declare const pipes: (typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof IncludesPipe | typeof ReducePipe | typeof RoundPipe | typeof SafeHtmlPipe | typeof SyncAsyncPipe | typeof TranslatePipe)[];
|
|
69
69
|
export declare const directives: (typeof AsyncMethodBase | typeof AsyncMethodDirective | typeof AsyncMethodTargetDirective | typeof BackgroundDirective | typeof ComponentLoaderDirective | typeof DynamicTableTemplateDirective | typeof GlobalTemplateDirective | typeof IconDirective | typeof NgxTemplateOutletDirective | typeof PaginationDirective | typeof PaginationItemDirective | typeof ResourceIfDirective | typeof StickyDirective | typeof StickyClassDirective | typeof DropdownDirective | typeof DropdownContentDirective | typeof DropdownToggleDirective | typeof TabsItemDirective | typeof UnorderedListItemDirective | typeof UnorderedListTemplateDirective)[];
|
|
70
70
|
export declare const components: (typeof ChipsComponent | typeof CloseBtnComponent | typeof DropListComponent | typeof DynamicTableComponent | typeof PaginationMenuComponent | typeof UnorderedListComponent | typeof UploadComponent | typeof WysiwygComponent)[];
|
|
71
|
-
export declare const providers: (typeof
|
|
71
|
+
export declare const providers: (typeof DeviceDetectorService | typeof UniversalService | typeof StateService | typeof AuthGuard | typeof EventsService | typeof AclService | typeof BaseHttpClient | typeof StorageService | typeof CacheService | typeof BaseHttpService | typeof StaticAuthService | typeof ConfigService | typeof BaseDialogService | typeof ErrorHandlerService | typeof FormatterService | typeof GlobalTemplateService | typeof HrefSerializer | typeof IconService | typeof StaticLanguageService | typeof OpenApiService | typeof BaseToasterService | typeof ComponentLoaderService | typeof TranslatedUrlSerializer | typeof PromiseService | typeof SocketService | typeof FilterPipe | typeof FormatNumberPipe | typeof GlobalTemplatePipe | typeof IncludesPipe | typeof ReducePipe | typeof RoundPipe | typeof SafeHtmlPipe | typeof SyncAsyncPipe | typeof TranslatePipe | {
|
|
72
72
|
provide: import("@angular/core").InjectionToken<import("@angular/platform-browser").EventManagerPlugin[]>;
|
|
73
73
|
useClass: typeof DragDropEventPlugin;
|
|
74
74
|
multi: boolean;
|
package/package.json
CHANGED
|
@@ -1,26 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stemy/ngx-utils",
|
|
3
|
-
"version": "19.9.
|
|
3
|
+
"version": "19.9.29",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"public": true,
|
|
6
6
|
"repository": "https://github.com/stemyke/ngx-utils.git",
|
|
7
7
|
"author": "stemy <balazs.stemler@metrix.co.hu>",
|
|
8
8
|
"peerDependencies": {
|
|
9
|
-
"@angular/animations": "^19.2.
|
|
10
|
-
"@angular/common": "^19.2.
|
|
11
|
-
"@angular/compiler": "^19.2.
|
|
12
|
-
"@angular/core": "^19.2.
|
|
13
|
-
"@angular/forms": "^19.2.
|
|
14
|
-
"@angular/router": "^19.2.
|
|
15
|
-
"@angular/platform-browser": "^19.2.
|
|
16
|
-
"@angular/platform-
|
|
9
|
+
"@angular/animations": "^19.2.22",
|
|
10
|
+
"@angular/common": "^19.2.22",
|
|
11
|
+
"@angular/compiler": "^19.2.22",
|
|
12
|
+
"@angular/core": "^19.2.22",
|
|
13
|
+
"@angular/forms": "^19.2.22",
|
|
14
|
+
"@angular/router": "^19.2.22",
|
|
15
|
+
"@angular/platform-browser": "^19.2.22",
|
|
16
|
+
"@angular/platform-browser-dynamic": "^19.2.22",
|
|
17
|
+
"@angular/platform-server": "^19.2.22",
|
|
17
18
|
"element-resize-detector": "^1.2.4",
|
|
18
19
|
"rxjs": "^7.8.2",
|
|
19
|
-
"luxon": "^3.
|
|
20
|
+
"luxon": "^3.7.2",
|
|
20
21
|
"invokable": "^1.0.3",
|
|
21
22
|
"ngx-device-detector": "^9.0.0",
|
|
22
|
-
"@floating-ui/dom": "^1.7.
|
|
23
|
-
"zone.js": "^0.
|
|
23
|
+
"@floating-ui/dom": "^1.7.6",
|
|
24
|
+
"zone.js": "^0.16.2",
|
|
24
25
|
"json5": "^2.2.3"
|
|
25
26
|
},
|
|
26
27
|
"main": "dist/bundles/stemy-ngx-utils.umd.js",
|