@skyux/core 11.38.0 → 11.39.0
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 +406 -474
- package/esm2022/lib/modules/content-info-provider/content-info-provider.mjs +8 -1
- package/esm2022/lib/modules/dock/dock-dom-adapter.service.mjs +2 -2
- package/esm2022/lib/modules/dock/dock.service.mjs +13 -11
- package/esm2022/version.mjs +1 -1
- package/fesm2022/skyux-core.mjs +16 -10
- package/fesm2022/skyux-core.mjs.map +1 -1
- package/lib/modules/content-info-provider/content-info-provider.d.ts +3 -0
- package/lib/modules/dock/dock.service.d.ts +0 -2
- package/package.json +2 -2
@@ -1,5 +1,6 @@
|
|
1
1
|
import { Observable } from 'rxjs';
|
2
2
|
import { SkyContentInfo } from './content-info';
|
3
|
+
import * as i0 from "@angular/core";
|
3
4
|
/**
|
4
5
|
* @internal
|
5
6
|
* An API to provide information about a parent component's content to child components.
|
@@ -11,4 +12,6 @@ export declare class SkyContentInfoProvider {
|
|
11
12
|
#private;
|
12
13
|
patchInfo(value: SkyContentInfo): void;
|
13
14
|
getInfo(): Observable<SkyContentInfo>;
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyContentInfoProvider, never>;
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SkyContentInfoProvider>;
|
14
17
|
}
|
@@ -1,5 +1,4 @@
|
|
1
1
|
import { Type } from '@angular/core';
|
2
|
-
import { SkyDynamicComponentService } from '../dynamic-component/dynamic-component.service';
|
3
2
|
import { SkyDockInsertComponentConfig } from './dock-insert-component-config';
|
4
3
|
import { SkyDockItem } from './dock-item';
|
5
4
|
import { SkyDockOptions } from './dock-options';
|
@@ -15,7 +14,6 @@ export declare class SkyDockService {
|
|
15
14
|
* Returns all docked items.
|
16
15
|
*/
|
17
16
|
get items(): SkyDockItem<any>[];
|
18
|
-
constructor(dynamicComponentSvc: SkyDynamicComponentService);
|
19
17
|
/**
|
20
18
|
* Docks a component to the bottom of the page.
|
21
19
|
* @param component The component to dock.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/core",
|
3
|
-
"version": "11.
|
3
|
+
"version": "11.39.0",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -41,7 +41,7 @@
|
|
41
41
|
"@angular/core": "^18.2.13",
|
42
42
|
"@angular/platform-browser": "^18.2.13",
|
43
43
|
"@angular/router": "^18.2.13",
|
44
|
-
"@skyux/i18n": "11.
|
44
|
+
"@skyux/i18n": "11.39.0"
|
45
45
|
},
|
46
46
|
"dependencies": {
|
47
47
|
"tslib": "^2.6.3"
|