@skyux/core 5.6.2 → 5.7.2
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/bundles/skyux-core.umd.js +55 -31
- package/documentation.json +109 -109
- package/esm2015/lib/modules/dock/dock.service.js +18 -15
- package/esm2015/lib/modules/dock/dock.service.js.map +1 -1
- package/esm2015/lib/modules/numeric/numeric.options.js +1 -1
- package/esm2015/lib/modules/numeric/numeric.options.js.map +1 -1
- package/esm2015/lib/modules/scrollable-host/scrollable-host.service.js +35 -14
- package/esm2015/lib/modules/scrollable-host/scrollable-host.service.js.map +1 -1
- package/esm2015/lib/modules/shared/sky-core-resources.module.js +1 -1
- package/esm2015/lib/modules/shared/sky-core-resources.module.js.map +1 -1
- package/fesm2015/skyux-core.js +55 -31
- package/fesm2015/skyux-core.js.map +1 -1
- package/lib/modules/dock/dock.service.d.ts +2 -2
- package/lib/modules/numeric/numeric.options.d.ts +1 -1
- package/lib/modules/scrollable-host/scrollable-host.service.d.ts +2 -1
- package/lib/modules/shared/sky-core-resources.module.d.ts +1 -1
- package/package.json +2 -2
@@ -9,13 +9,13 @@ import * as i0 from "@angular/core";
|
|
9
9
|
*/
|
10
10
|
export declare class SkyDockService {
|
11
11
|
private dynamicComponentService;
|
12
|
+
private static dockRef;
|
13
|
+
private static _items;
|
12
14
|
/**
|
13
15
|
* Returns all docked items.
|
14
16
|
*/
|
15
17
|
get items(): SkyDockItem<any>[];
|
16
|
-
private dockRef;
|
17
18
|
private options;
|
18
|
-
private _items;
|
19
19
|
constructor(dynamicComponentService: SkyDynamicComponentService);
|
20
20
|
/**
|
21
21
|
* Docks a component to the bottom of the page.
|
@@ -36,7 +36,7 @@ export declare class NumericOptions {
|
|
36
36
|
minDigits?: number;
|
37
37
|
/**
|
38
38
|
* Indicates whether to shorten numbers to rounded numbers and abbreviation characters
|
39
|
-
* such as K for thousands, M for millions, B for billions, and T for
|
39
|
+
* such as K for thousands, M for millions, B for billions, and T for trillions.
|
40
40
|
*/
|
41
41
|
truncate?: boolean;
|
42
42
|
/**
|
@@ -25,10 +25,11 @@ export declare class SkyScrollableHostService {
|
|
25
25
|
* Returns an observable which emits whenever the element's scrollable host emits a scroll event. The observable will always emit the scroll events from the elements current scrollable host and will update based on any scrollable host changes. The observable will also emit once whenever the scrollable host changes.
|
26
26
|
* @param elementRef The element whose scrollable host scroll events are being requested
|
27
27
|
* @param completionObservable An observable which alerts the internal observers that they should complete
|
28
|
-
* @returns An observable which emits the
|
28
|
+
* @returns An observable which emits when the elements scrollable host is scrolled or is changed
|
29
29
|
*/
|
30
30
|
watchScrollableHostScrollEvents(elementRef: ElementRef): Observable<void>;
|
31
31
|
private findScrollableHost;
|
32
|
+
private observeDocumentHiddenElementChanges;
|
32
33
|
private observeForScrollableHostChanges;
|
33
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyScrollableHostService, never>;
|
34
35
|
static ɵprov: i0.ɵɵInjectableDeclaration<SkyScrollableHostService>;
|
@@ -2,7 +2,7 @@ import { SkyAppLocaleInfo, SkyLibResourcesProvider } from '@skyux/i18n';
|
|
2
2
|
import * as i0 from "@angular/core";
|
3
3
|
import * as i1 from "@skyux/i18n";
|
4
4
|
export declare class SkyCoreResourcesProvider implements SkyLibResourcesProvider {
|
5
|
-
getString(localeInfo: SkyAppLocaleInfo, name: string): string;
|
5
|
+
getString(localeInfo: SkyAppLocaleInfo, name: string): string | undefined;
|
6
6
|
}
|
7
7
|
/**
|
8
8
|
* Import into any component library module that needs to use resource strings.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/core",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.7.2",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
"@angular/core": "^12.2.16",
|
21
21
|
"@angular/platform-browser": "^12.2.16",
|
22
22
|
"@angular/router": "^12.2.16",
|
23
|
-
"@skyux/i18n": "5.
|
23
|
+
"@skyux/i18n": "5.7.2"
|
24
24
|
},
|
25
25
|
"dependencies": {
|
26
26
|
"tslib": "^2.3.1"
|