@skyux/core 9.0.0-alpha.2 → 9.0.0-alpha.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/documentation.json +443 -443
- package/esm2022/lib/modules/dynamic-component/dynamic-component-options.mjs +1 -1
- package/esm2022/lib/modules/dynamic-component/dynamic-component.service.mjs +9 -15
- package/fesm2022/skyux-core.mjs +8 -14
- package/fesm2022/skyux-core.mjs.map +1 -1
- package/lib/modules/dynamic-component/dynamic-component-options.d.ts +3 -3
- package/lib/modules/dynamic-component/dynamic-component.service.d.ts +2 -2
- package/package.json +2 -2
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { EnvironmentInjector, StaticProvider, ViewContainerRef } from '@angular/core';
|
2
2
|
import { SkyDynamicComponentLocation } from './dynamic-component-location';
|
3
3
|
/**
|
4
4
|
* Options for adding a dynamic component to the page.
|
@@ -21,7 +21,7 @@ export interface SkyDynamicComponentOptions {
|
|
21
21
|
*/
|
22
22
|
viewContainerRef?: ViewContainerRef;
|
23
23
|
/**
|
24
|
-
*
|
24
|
+
* The environment injector to use instead of the dynamic component service's injector.
|
25
25
|
*/
|
26
|
-
|
26
|
+
environmentInjector?: EnvironmentInjector;
|
27
27
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ApplicationRef, ComponentRef, EnvironmentInjector,
|
1
|
+
import { ApplicationRef, ComponentRef, EnvironmentInjector, RendererFactory2, Type } from '@angular/core';
|
2
2
|
import { SkyAppWindowRef } from '../window/window-ref';
|
3
3
|
import { SkyDynamicComponentOptions } from './dynamic-component-options';
|
4
4
|
import * as i0 from "@angular/core";
|
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
|
|
8
8
|
*/
|
9
9
|
export declare class SkyDynamicComponentService {
|
10
10
|
#private;
|
11
|
-
constructor(applicationRef: ApplicationRef,
|
11
|
+
constructor(applicationRef: ApplicationRef, windowRef: SkyAppWindowRef, rendererFactory: RendererFactory2, environmentInjector: EnvironmentInjector);
|
12
12
|
/**
|
13
13
|
* Creates an instance of the specified component and adds it to the specified location
|
14
14
|
* on the page.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/core",
|
3
|
-
"version": "9.0.0-alpha.
|
3
|
+
"version": "9.0.0-alpha.3",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -41,7 +41,7 @@
|
|
41
41
|
"@angular/core": "^16.1.7",
|
42
42
|
"@angular/platform-browser": "^16.1.7",
|
43
43
|
"@angular/router": "^16.1.7",
|
44
|
-
"@skyux/i18n": "9.0.0-alpha.
|
44
|
+
"@skyux/i18n": "9.0.0-alpha.3"
|
45
45
|
},
|
46
46
|
"dependencies": {
|
47
47
|
"tslib": "^2.5.0"
|