@skyux/core 11.0.0 → 11.1.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 +1326 -1119
- package/esm2022/index.mjs +1 -1
- package/esm2022/lib/modules/dock/dock.component.mjs +3 -3
- package/esm2022/lib/modules/help/help-open-args.mjs +1 -1
- package/esm2022/lib/modules/help/help-update-args.mjs +2 -0
- package/esm2022/lib/modules/help/help.service.mjs +2 -2
- package/esm2022/testing/help/help-testing.service.mjs +13 -4
- package/esm2022/version.mjs +1 -1
- package/fesm2022/skyux-core-testing.mjs +11 -2
- package/fesm2022/skyux-core-testing.mjs.map +1 -1
- package/fesm2022/skyux-core.mjs +4 -4
- package/fesm2022/skyux-core.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/modules/help/help-open-args.d.ts +1 -1
- package/lib/modules/help/help-update-args.d.ts +13 -0
- package/lib/modules/help/help.service.d.ts +8 -2
- package/package.json +2 -2
- package/testing/help/help-testing.service.d.ts +3 -2
package/index.d.ts
CHANGED
@@ -32,6 +32,7 @@ export { SkyAppFormat } from './lib/modules/format/app-format';
|
|
32
32
|
export { SkyHelpGlobalOptions } from './lib/modules/help/help-global-options';
|
33
33
|
export { SKY_HELP_GLOBAL_OPTIONS } from './lib/modules/help/help-global-options-token';
|
34
34
|
export { SkyHelpOpenArgs } from './lib/modules/help/help-open-args';
|
35
|
+
export { SkyHelpUpdateArgs } from './lib/modules/help/help-update-args';
|
35
36
|
export { SkyHelpService } from './lib/modules/help/help.service';
|
36
37
|
export { SkyIdModule } from './lib/modules/id/id.module';
|
37
38
|
export { SkyIdService } from './lib/modules/id/id.service';
|
@@ -0,0 +1,13 @@
|
|
1
|
+
/**
|
2
|
+
* Options for updating a globally accessible help dialog.
|
3
|
+
*/
|
4
|
+
export interface SkyHelpUpdateArgs {
|
5
|
+
/**
|
6
|
+
* A unique key that identifies the current help content to display. If set to `undefined`, the page's default help content will be displayed.
|
7
|
+
*/
|
8
|
+
helpKey?: string;
|
9
|
+
/**
|
10
|
+
* A unique key that identifies the page's default help content to display. Set this property to `undefined` to unset the current page default help key.
|
11
|
+
* */
|
12
|
+
pageDefaultHelpKey?: string;
|
13
|
+
}
|
@@ -1,8 +1,9 @@
|
|
1
1
|
import { Observable } from 'rxjs';
|
2
2
|
import { SkyHelpOpenArgs } from './help-open-args';
|
3
|
+
import { SkyHelpUpdateArgs } from './help-update-args';
|
3
4
|
import * as i0 from "@angular/core";
|
4
5
|
/**
|
5
|
-
* Provides methods for opening a globally accessible help dialog.
|
6
|
+
* Provides methods for opening and updating a globally accessible help dialog.
|
6
7
|
*/
|
7
8
|
export declare abstract class SkyHelpService {
|
8
9
|
/**
|
@@ -13,7 +14,12 @@ export declare abstract class SkyHelpService {
|
|
13
14
|
* Opens a globally accessible help dialog.
|
14
15
|
* @param args The options for opening the help dialog.
|
15
16
|
*/
|
16
|
-
abstract openHelp(args
|
17
|
+
abstract openHelp(args?: SkyHelpOpenArgs): void;
|
18
|
+
/**
|
19
|
+
* Updates a globally accessible help dialog.
|
20
|
+
* @param args The options for updating the help dialog.
|
21
|
+
*/
|
22
|
+
abstract updateHelp(args: SkyHelpUpdateArgs): void;
|
17
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyHelpService, never>;
|
18
24
|
static ɵprov: i0.ɵɵInjectableDeclaration<SkyHelpService>;
|
19
25
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/core",
|
3
|
-
"version": "11.
|
3
|
+
"version": "11.1.0",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -41,7 +41,7 @@
|
|
41
41
|
"@angular/core": "^18.2.3",
|
42
42
|
"@angular/platform-browser": "^18.2.3",
|
43
43
|
"@angular/router": "^18.2.3",
|
44
|
-
"@skyux/i18n": "11.
|
44
|
+
"@skyux/i18n": "11.1.0"
|
45
45
|
},
|
46
46
|
"dependencies": {
|
47
47
|
"tslib": "^2.6.3"
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { SkyHelpOpenArgs, SkyHelpService } from '@skyux/core';
|
1
|
+
import { SkyHelpOpenArgs, SkyHelpService, SkyHelpUpdateArgs } from '@skyux/core';
|
2
2
|
import { Observable } from 'rxjs';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
/**
|
@@ -7,7 +7,8 @@ import * as i0 from "@angular/core";
|
|
7
7
|
export declare class SkyHelpTestingService extends SkyHelpService {
|
8
8
|
#private;
|
9
9
|
get widgetReadyStateChange(): Observable<boolean>;
|
10
|
-
openHelp(args
|
10
|
+
openHelp(args?: SkyHelpOpenArgs): void;
|
11
|
+
updateHelp(args: SkyHelpUpdateArgs): void;
|
11
12
|
getCurrentHelpKey(): string | undefined;
|
12
13
|
closeHelp(): void;
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyHelpTestingService, never>;
|