@skyux/core 9.2.1 → 9.3.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 +1273 -1196
- package/esm2022/index.mjs +2 -1
- package/esm2022/lib/modules/content-info-provider/content-info-provider.mjs +24 -0
- package/esm2022/lib/modules/content-info-provider/content-info.mjs +2 -0
- package/esm2022/lib/modules/default-input-provider/default-input-provider.mjs +3 -3
- package/esm2022/version.mjs +1 -1
- package/fesm2022/skyux-core.mjs +27 -4
- package/fesm2022/skyux-core.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/lib/modules/content-info-provider/content-info-provider.d.ts +14 -0
- package/lib/modules/content-info-provider/content-info.d.ts +3 -0
- package/package.json +2 -2
package/index.d.ts
CHANGED
@@ -13,6 +13,8 @@ export { SkyAffixVerticalAlignment } from './lib/modules/affix/affix-vertical-al
|
|
13
13
|
export { SkyAffixModule } from './lib/modules/affix/affix.module';
|
14
14
|
export { SkyAffixService } from './lib/modules/affix/affix.service';
|
15
15
|
export { SkyAffixer } from './lib/modules/affix/affixer';
|
16
|
+
export { SkyContentInfoProvider } from './lib/modules/content-info-provider/content-info-provider';
|
17
|
+
export { SkyContentInfo } from './lib/modules/content-info-provider/content-info';
|
16
18
|
export { SkyDefaultInputProvider } from './lib/modules/default-input-provider/default-input-provider';
|
17
19
|
export { SkyDockInsertComponentConfig } from './lib/modules/dock/dock-insert-component-config';
|
18
20
|
export { SkyDockItem } from './lib/modules/dock/dock-item';
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { Observable } from 'rxjs';
|
2
|
+
import { SkyContentInfo } from './content-info';
|
3
|
+
/**
|
4
|
+
* @internal
|
5
|
+
* An API to provide information about a parent component's content to child components.
|
6
|
+
* For example, toolbar can use this to provide its child components with a list
|
7
|
+
* descriptor they can use to construct aria labels, or tree view can provide the node
|
8
|
+
* name to its context menus.
|
9
|
+
*/
|
10
|
+
export declare class SkyContentInfoProvider {
|
11
|
+
#private;
|
12
|
+
patchInfo(value: SkyContentInfo): void;
|
13
|
+
getInfo(): Observable<SkyContentInfo>;
|
14
|
+
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/core",
|
3
|
-
"version": "9.
|
3
|
+
"version": "9.3.0",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -41,7 +41,7 @@
|
|
41
41
|
"@angular/core": "^16.2.5",
|
42
42
|
"@angular/platform-browser": "^16.2.5",
|
43
43
|
"@angular/router": "^16.2.5",
|
44
|
-
"@skyux/i18n": "9.
|
44
|
+
"@skyux/i18n": "9.3.0"
|
45
45
|
},
|
46
46
|
"dependencies": {
|
47
47
|
"tslib": "^2.6.2"
|