@skyux/core 8.5.0 → 8.6.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 +460 -460
- package/esm2020/index.mjs +2 -1
- package/esm2020/lib/modules/default-input-provider/default-input-provider.mjs +31 -0
- package/fesm2015/skyux-core.mjs +30 -1
- package/fesm2015/skyux-core.mjs.map +1 -1
- package/fesm2020/skyux-core.mjs +30 -1
- package/fesm2020/skyux-core.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/modules/default-input-provider/default-input-provider.d.ts +10 -0
- package/package.json +2 -2
package/index.d.ts
CHANGED
@@ -13,6 +13,7 @@ export * from './lib/modules/affix/affix-vertical-alignment';
|
|
13
13
|
export * from './lib/modules/affix/affix.module';
|
14
14
|
export * from './lib/modules/affix/affix.service';
|
15
15
|
export * from './lib/modules/affix/affixer';
|
16
|
+
export * from './lib/modules/default-input-provider/default-input-provider';
|
16
17
|
export * from './lib/modules/dock/dock-insert-component-config';
|
17
18
|
export * from './lib/modules/dock/dock-item';
|
18
19
|
export * from './lib/modules/dock/dock-item-config';
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { Observable } from 'rxjs';
|
2
|
+
/**
|
3
|
+
* @internal
|
4
|
+
* An API to provide default Angular component input values to child components.
|
5
|
+
*/
|
6
|
+
export declare class SkyDefaultInputProvider {
|
7
|
+
#private;
|
8
|
+
setValue<T>(componentName: string, inputName: string, value: T): void;
|
9
|
+
getValue<T>(componentName: string, inputName: string): Observable<T> | undefined;
|
10
|
+
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/core",
|
3
|
-
"version": "8.
|
3
|
+
"version": "8.6.0",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -45,7 +45,7 @@
|
|
45
45
|
"@angular/core": "^15.2.9",
|
46
46
|
"@angular/platform-browser": "^15.2.9",
|
47
47
|
"@angular/router": "^15.2.9",
|
48
|
-
"@skyux/i18n": "8.
|
48
|
+
"@skyux/i18n": "8.6.0"
|
49
49
|
},
|
50
50
|
"dependencies": {
|
51
51
|
"tslib": "^2.5.0"
|