@skyux/core 9.1.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 +1328 -1227
- package/esm2022/index.mjs +3 -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 +19 -0
- package/fesm2022/skyux-core.mjs +45 -3
- package/fesm2022/skyux-core.mjs.map +1 -1
- package/index.d.ts +3 -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/version.d.ts +15 -0
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';
|
@@ -68,6 +70,7 @@ export { SkyViewkeeperOptions } from './lib/modules/viewkeeper/viewkeeper-option
|
|
68
70
|
export { SkyViewkeeperModule } from './lib/modules/viewkeeper/viewkeeper.module';
|
69
71
|
export { SkyViewkeeperService } from './lib/modules/viewkeeper/viewkeeper.service';
|
70
72
|
export { SkyAppWindowRef } from './lib/modules/window/window-ref';
|
73
|
+
export { VERSION } from './version';
|
71
74
|
export { SkyAffixDirective as λ1 } from './lib/modules/affix/affix.directive';
|
72
75
|
export { SkyIdDirective as λ2 } from './lib/modules/id/id.directive';
|
73
76
|
export { SkyViewkeeperDirective as λ3 } from './lib/modules/viewkeeper/viewkeeper.directive';
|
@@ -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"
|
package/version.d.ts
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
/**
|
2
|
+
* Represents the version of a package.
|
3
|
+
* @internal
|
4
|
+
*/
|
5
|
+
export declare class Version {
|
6
|
+
readonly full: string;
|
7
|
+
readonly major: string;
|
8
|
+
readonly minor: string;
|
9
|
+
readonly patch: string;
|
10
|
+
constructor(full: string);
|
11
|
+
}
|
12
|
+
/**
|
13
|
+
* Represents the version of @skyux/core.
|
14
|
+
*/
|
15
|
+
export declare const VERSION: Version;
|