@ts-core/angular 21.0.1 → 21.0.2
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 +1041 -0
- package/fesm2022/ts-core-angular.mjs +210 -210
- package/fesm2022/ts-core-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/types/ts-core-angular.d.ts +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ts-core/angular",
|
|
3
|
-
"version": "21.0.
|
|
3
|
+
"version": "21.0.2",
|
|
4
4
|
"description": "Angular frontend framework utilities and components with TypeScript support, including directives, services, and window management",
|
|
5
5
|
"main": "public-api.js",
|
|
6
6
|
"author": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Loadable, LoadableStatus, Destroyable, IDestroyable, DestroyableContainer, ClassType, ObservableData, PromiseHandler, ExtendedError, IUIDable, FilterableMapCollection, Logger, MapCollection, Transport, TransportLocal, ILogger, ITransportSettings, ITransportCommand, ITransportCommandOptions, ITransportEvent, TransportEvent, LoggerLevel } from '@ts-core/common';
|
|
2
2
|
import { NativeWindowService, SettingsServiceBase, ThemeService, LanguageService, ICookieOptions, ICookieService, ILanguageServiceOptions, ThemeAssetService, IThemeServiceOptions } from '@ts-core/frontend';
|
|
3
3
|
import { ILanguageLoader, LanguageLoadFunction, ILanguageProjectSettings } from '@ts-core/language';
|
|
4
|
-
import { Router, ActivatedRoute, NavigationExtras, UrlTree, ActivatedRouteSnapshot, Resolve, RouterStateSnapshot, CanActivate, MaybeAsync, GuardResult,
|
|
4
|
+
import { Router, ActivatedRoute, NavigationExtras, UrlTree, ActivatedRouteSnapshot, Resolve, RouterStateSnapshot, CanActivate, MaybeAsync, GuardResult, CanDeactivateFn, CanDeactivate } from '@angular/router';
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
6
|
import { AfterViewInit, ElementRef, ViewContainerRef, Signal, InjectionToken, Injector, PipeTransform, ModuleWithProviders, EventEmitter, TemplateRef, EmbeddedViewRef, ChangeDetectorRef, Renderer2, RendererStyleFlags2, NgModuleFactory, Type, NgModuleRef, Compiler, RendererFactory2 } from '@angular/core';
|
|
7
7
|
import { Observable, BehaviorSubject, Subscription } from 'rxjs';
|
|
@@ -189,11 +189,11 @@ declare abstract class IWindowContent<T = any> extends DestroyableContainer impl
|
|
|
189
189
|
destroy(): void;
|
|
190
190
|
get data(): T;
|
|
191
191
|
get isOnTop(): boolean;
|
|
192
|
-
get
|
|
192
|
+
get isOnTopSignal(): Signal<boolean>;
|
|
193
193
|
get isMinimized(): boolean;
|
|
194
|
-
get
|
|
194
|
+
get isMinimizedSignal(): Signal<boolean>;
|
|
195
195
|
get events(): Observable<string>;
|
|
196
|
-
get
|
|
196
|
+
get isDisabledSignal(): Signal<boolean>;
|
|
197
197
|
set isDisabled(value: boolean);
|
|
198
198
|
get isDisabled(): boolean;
|
|
199
199
|
get element(): ElementRef;
|
|
@@ -210,14 +210,14 @@ declare abstract class IWindow<T = any> extends Destroyable {
|
|
|
210
210
|
isDisabled: boolean;
|
|
211
211
|
isMinimized: boolean;
|
|
212
212
|
readonly events: Observable<string>;
|
|
213
|
-
readonly container: HTMLElement;
|
|
214
213
|
readonly wrapper: HTMLElement;
|
|
215
214
|
readonly backdrop: HTMLElement;
|
|
215
|
+
readonly container: HTMLElement;
|
|
216
216
|
readonly config: IWindowConfig<T>;
|
|
217
217
|
readonly content: IWindowContent<T>;
|
|
218
|
-
readonly
|
|
219
|
-
readonly
|
|
220
|
-
readonly
|
|
218
|
+
readonly isOnTopSignal: Signal<boolean>;
|
|
219
|
+
readonly isDisabledSignal: Signal<boolean>;
|
|
220
|
+
readonly isMinimizedSignal: Signal<boolean>;
|
|
221
221
|
abstract close(): void;
|
|
222
222
|
abstract blink(): void;
|
|
223
223
|
abstract shake(): void;
|