@ts-core/angular 19.0.9 → 19.0.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.
- package/VIModule.d.ts +10 -9
- package/application/ApplicationComponent.d.ts +4 -4
- package/application/{ApplicationBaseComponent.d.ts → ApplicationComponentBase.d.ts} +3 -3
- package/application/ApplicationInitializerBase.d.ts +30 -0
- package/application/{MessageBaseComponent.d.ts → MessageComponentBase.d.ts} +1 -1
- package/directive/UppercaseValueDirective.d.ts +9 -0
- package/fesm2022/ts-core-angular.mjs +352 -241
- package/fesm2022/ts-core-angular.mjs.map +1 -1
- package/list/select/RouterSelectListItems.d.ts +3 -3
- package/package.json +2 -2
- package/public-api.d.ts +6 -4
- package/service/{PipeBaseService.d.ts → PipeServiceBase.d.ts} +1 -1
- package/service/{RouterBaseService.d.ts → RouterServiceBase.d.ts} +2 -2
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { LanguageService } from '@ts-core/frontend';
|
|
2
2
|
import { SelectListItems } from './SelectListItems';
|
|
3
3
|
import { ISelectListItem } from './ISelectListItem';
|
|
4
|
-
import {
|
|
4
|
+
import { RouterServiceBase } from '../../service/RouterServiceBase';
|
|
5
5
|
export declare class RouterSelectListItems<U = string> extends SelectListItems<ISelectListItem<U>, U> {
|
|
6
|
-
protected router:
|
|
6
|
+
protected router: RouterServiceBase;
|
|
7
7
|
isDisabled: boolean;
|
|
8
|
-
constructor(router:
|
|
8
|
+
constructor(router: RouterServiceBase, language: LanguageService);
|
|
9
9
|
protected setData(): void;
|
|
10
10
|
protected setFragment(item: ISelectListItem<U>): void;
|
|
11
11
|
protected getRouterSelectedItem(): ISelectListItem<U>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ts-core/angular",
|
|
3
|
-
"version": "19.0.
|
|
3
|
+
"version": "19.0.10",
|
|
4
4
|
"description": "Modules for frontend based on angular",
|
|
5
5
|
"main": "public-api.js",
|
|
6
6
|
"author": {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@angular/platform-browser-dynamic": "^19.0.6",
|
|
20
20
|
"@angular/router": "^19.0.6",
|
|
21
21
|
"@ts-core/common": "~3.0.57",
|
|
22
|
-
"@ts-core/frontend": "~3.0.
|
|
22
|
+
"@ts-core/frontend": "~3.0.16",
|
|
23
23
|
"@types/numeral": "^2.0.5",
|
|
24
24
|
"interactjs": "1.10.11",
|
|
25
25
|
"moment": "^2.30.1",
|
package/public-api.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
export * from './application/
|
|
1
|
+
export * from './application/ApplicationInitializerBase';
|
|
2
|
+
export * from './application/ApplicationComponentBase';
|
|
2
3
|
export * from './application/ApplicationComponent';
|
|
3
|
-
export * from './application/
|
|
4
|
+
export * from './application/MessageComponentBase';
|
|
4
5
|
export * from './ApplicationInjector';
|
|
5
6
|
export * from './asset/AssetBackgroundDirective';
|
|
6
7
|
export * from './asset/AssetBackgroundPipe';
|
|
@@ -29,6 +30,7 @@ export * from './directive/HTMLContentTitleDirective';
|
|
|
29
30
|
export * from './directive/IsBrowserDirective';
|
|
30
31
|
export * from './directive/IsServerDirective';
|
|
31
32
|
export * from './directive/NullEmptyValueDirective';
|
|
33
|
+
export * from './directive/UppercaseValueDirective';
|
|
32
34
|
export * from './language/LanguageModule';
|
|
33
35
|
export * from './language/LanguagePipe';
|
|
34
36
|
export * from './language/LanguagePipePure';
|
|
@@ -75,9 +77,9 @@ export * from './pipe/PrettifyPipe';
|
|
|
75
77
|
export * from './pipe/TimePipe';
|
|
76
78
|
export * from './question/IQuestion';
|
|
77
79
|
export * from './question/QuestionManager';
|
|
78
|
-
export * from './service/
|
|
80
|
+
export * from './service/PipeServiceBase';
|
|
79
81
|
export * from './service/PlatformService';
|
|
80
|
-
export * from './service/
|
|
82
|
+
export * from './service/RouterServiceBase';
|
|
81
83
|
export * from './service/ServiceWorkerService';
|
|
82
84
|
export * from './service/route/CanDeactivateGuard';
|
|
83
85
|
export * from './service/route/IRouterDeactivatable';
|
|
@@ -12,7 +12,7 @@ import { PrettifyPipe } from '../pipe/PrettifyPipe';
|
|
|
12
12
|
import { SanitizePipe } from '../pipe/SanitizePipe';
|
|
13
13
|
import { TimePipe } from '../pipe/TimePipe';
|
|
14
14
|
import { TruncatePipe } from '../pipe/TruncatePipe';
|
|
15
|
-
export declare class
|
|
15
|
+
export declare class PipeServiceBase extends Destroyable {
|
|
16
16
|
language: LanguageService;
|
|
17
17
|
sanitizer: DomSanitizer;
|
|
18
18
|
private static DATE;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ActivatedRoute, ActivatedRouteSnapshot, NavigationExtras, Router, UrlTree } from '@angular/router';
|
|
2
2
|
import { Loadable, LoadableStatus } from '@ts-core/common';
|
|
3
3
|
import { NativeWindowService } from '@ts-core/frontend';
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class RouterServiceBase extends Loadable<void, RouterServiceBaseEventData> {
|
|
5
5
|
protected _router: Router;
|
|
6
6
|
protected _route: ActivatedRoute;
|
|
7
7
|
protected window: NativeWindowService;
|
|
@@ -40,7 +40,7 @@ export declare class RouterBaseService extends Loadable<void, RouterBaseServiceE
|
|
|
40
40
|
get route(): ActivatedRoute;
|
|
41
41
|
get router(): Router;
|
|
42
42
|
}
|
|
43
|
-
export interface
|
|
43
|
+
export interface RouterServiceBaseEventData {
|
|
44
44
|
url: string;
|
|
45
45
|
previousUrl: string;
|
|
46
46
|
}
|