@skyux/core 10.38.0 → 10.40.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 +1164 -1094
- package/esm2022/lib/modules/help/help.service.mjs +8 -1
- package/esm2022/testing/help/help-testing-controller.mjs +2 -1
- package/esm2022/testing/help/help-testing.service.mjs +6 -1
- package/esm2022/version.mjs +1 -1
- package/fesm2022/skyux-core-testing.mjs +3 -0
- package/fesm2022/skyux-core-testing.mjs.map +1 -1
- package/fesm2022/skyux-core.mjs +8 -2
- package/fesm2022/skyux-core.mjs.map +1 -1
- package/lib/modules/help/help.service.d.ts +5 -0
- package/package.json +2 -2
- package/testing/help/help-testing.service.d.ts +2 -0
@@ -1,9 +1,14 @@
|
|
1
|
+
import { Observable } from 'rxjs';
|
1
2
|
import { SkyHelpOpenArgs } from './help-open-args';
|
2
3
|
import * as i0 from "@angular/core";
|
3
4
|
/**
|
4
5
|
* Provides methods for opening a globally accessible help dialog.
|
5
6
|
*/
|
6
7
|
export declare abstract class SkyHelpService {
|
8
|
+
/**
|
9
|
+
* Emits when the help widget ready state changes.
|
10
|
+
*/
|
11
|
+
get widgetReadyStateChange(): Observable<boolean>;
|
7
12
|
/**
|
8
13
|
* Opens a globally accessible help dialog.
|
9
14
|
* @param args The options for opening the help dialog.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/core",
|
3
|
-
"version": "10.
|
3
|
+
"version": "10.40.0",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -42,7 +42,7 @@
|
|
42
42
|
"@angular/forms": "^17.3.4",
|
43
43
|
"@angular/platform-browser": "^17.3.4",
|
44
44
|
"@angular/router": "^17.3.4",
|
45
|
-
"@skyux/i18n": "10.
|
45
|
+
"@skyux/i18n": "10.40.0"
|
46
46
|
},
|
47
47
|
"dependencies": {
|
48
48
|
"tslib": "^2.6.2"
|
@@ -1,10 +1,12 @@
|
|
1
1
|
import { SkyHelpOpenArgs, SkyHelpService } from '@skyux/core';
|
2
|
+
import { Observable } from 'rxjs';
|
2
3
|
import * as i0 from "@angular/core";
|
3
4
|
/**
|
4
5
|
* @internal
|
5
6
|
*/
|
6
7
|
export declare class SkyHelpTestingService extends SkyHelpService {
|
7
8
|
#private;
|
9
|
+
get widgetReadyStateChange(): Observable<boolean>;
|
8
10
|
openHelp(args: SkyHelpOpenArgs): void;
|
9
11
|
getCurrentHelpKey(): string | undefined;
|
10
12
|
closeHelp(): void;
|