@ts-core/angular 13.0.2 → 13.0.3
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/application/ApplicationBaseComponent.d.ts +1 -1
- package/component/cdk-table/CdkTableBaseComponent.d.ts +1 -1
- package/esm2020/application/ApplicationBaseComponent.mjs +6 -5
- package/esm2020/component/cdk-table/CdkTableBaseComponent.mjs +6 -5
- package/esm2020/component/cdk-table/CdkTablePaginableMapCollection.mjs +1 -1
- package/esm2020/form/FormElementSync.mjs +5 -5
- package/esm2020/notification/INotificationContent.mjs +6 -5
- package/esm2020/notification/component/NotificationQuestionBaseComponent.mjs +6 -5
- package/esm2020/public-api.mjs +1 -1
- package/esm2020/theme/ThemeAssetDirective.mjs +5 -5
- package/esm2020/window/IWindowContent.mjs +10 -6
- package/esm2020/window/component/WindowElement.mjs +6 -5
- package/fesm2015/ts-core-angular.mjs +36 -27
- package/fesm2015/ts-core-angular.mjs.map +1 -1
- package/fesm2020/ts-core-angular.mjs +36 -27
- package/fesm2020/ts-core-angular.mjs.map +1 -1
- package/form/FormElementSync.d.ts +1 -1
- package/notification/INotificationContent.d.ts +1 -1
- package/notification/component/NotificationQuestionBaseComponent.d.ts +1 -1
- package/package.json +1 -1
- package/theme/ThemeAssetDirective.d.ts +1 -1
- package/window/IWindowContent.d.ts +4 -3
- package/window/component/WindowElement.d.ts +1 -1
|
@@ -18,5 +18,5 @@ export declare abstract class FormElementSync<T> extends ValueAccessor<T> implem
|
|
|
18
18
|
ngAfterContentInit(): void;
|
|
19
19
|
ngOnDestroy(): void;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormElementSync<any>, never>;
|
|
21
|
-
static
|
|
21
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FormElementSync<any>, never, never, {}, {}, never>;
|
|
22
22
|
}
|
|
@@ -27,5 +27,5 @@ export declare abstract class INotificationContent<T = any> extends DestroyableC
|
|
|
27
27
|
set config(value: NotificationConfig<T>);
|
|
28
28
|
get config(): NotificationConfig<T>;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<INotificationContent<any>, never>;
|
|
30
|
-
static
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<INotificationContent<any>, "ng-component", never, { "config": "config"; }, {}, never, never>;
|
|
31
31
|
}
|
|
@@ -6,5 +6,5 @@ export declare abstract class NotificationQuestionBaseComponent extends INotific
|
|
|
6
6
|
clickHandler(): void;
|
|
7
7
|
protected get isInfo(): boolean;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationQuestionBaseComponent, never>;
|
|
9
|
-
static
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationQuestionBaseComponent, "ng-component", never, {}, {}, never, never>;
|
|
10
10
|
}
|
package/package.json
CHANGED
|
@@ -43,5 +43,5 @@ export declare abstract class ThemeAssetDirective<T extends HTMLElement = HTMLEl
|
|
|
43
43
|
get extension(): string;
|
|
44
44
|
set extension(value: string);
|
|
45
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeAssetDirective<any>, never>;
|
|
46
|
-
static
|
|
46
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ThemeAssetDirective<any>, never, never, { "isSound": "isSound"; "isVideo": "isVideo"; "isFile": "isFile"; "isImage": "isImage"; "isBackground": "isBackground"; "isIgnoreTheme": "isIgnoreTheme"; "name": "name"; "extension": "extension"; }, {}, never>;
|
|
47
47
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef, ViewContainerRef } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ElementRef, ViewContainerRef, InjectionToken } from '@angular/core';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { DestroyableContainer } from '@ts-core/common';
|
|
4
4
|
import { IWindow } from './IWindow';
|
|
@@ -27,7 +27,8 @@ export declare abstract class IWindowContent<T = any> extends DestroyableContain
|
|
|
27
27
|
get config(): WindowConfig<T>;
|
|
28
28
|
get window(): IWindow<T>;
|
|
29
29
|
set window(value: IWindow<T>);
|
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IWindowContent<any>,
|
|
31
|
-
static
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IWindowContent<any>, [{ optional: true; }]>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IWindowContent<any>, "ng-component", never, {}, {}, never, never>;
|
|
32
32
|
}
|
|
33
33
|
export declare type WindowContentContainer = ElementRef | ViewContainerRef;
|
|
34
|
+
export declare const WINDOW_CONTENT_CONTAINER: InjectionToken<WindowContentContainer>;
|
|
@@ -17,5 +17,5 @@ export declare class WindowElement extends DestroyableContainer implements After
|
|
|
17
17
|
get window(): IWindow;
|
|
18
18
|
set window(value: IWindow);
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<WindowElement, never>;
|
|
20
|
-
static
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WindowElement, "ng-component", never, {}, {}, never, never>;
|
|
21
21
|
}
|