@skyux/core 7.4.1 → 7.5.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 +413 -387
- package/esm2020/lib/modules/adapter-service/adapter.service.mjs +4 -4
- package/esm2020/lib/modules/affix/affixer.mjs +2 -2
- package/esm2020/lib/modules/dock/dock.service.mjs +2 -2
- package/esm2020/lib/modules/dynamic-component/dynamic-component-options.mjs +1 -1
- package/esm2020/lib/modules/dynamic-component/dynamic-component.service.mjs +38 -30
- package/esm2020/lib/modules/log/log.service.mjs +2 -2
- package/esm2020/lib/modules/log/types/log-deprecation-args.mjs +1 -1
- package/esm2020/lib/modules/trim/trim.directive.mjs +2 -2
- package/fesm2015/skyux-core.mjs +44 -36
- package/fesm2015/skyux-core.mjs.map +1 -1
- package/fesm2020/skyux-core.mjs +44 -36
- package/fesm2020/skyux-core.mjs.map +1 -1
- package/lib/modules/adapter-service/adapter.service.d.ts +3 -3
- package/lib/modules/dock/dock.service.d.ts +1 -1
- package/lib/modules/dynamic-component/dynamic-component-options.d.ts +5 -1
- package/lib/modules/log/log.service.d.ts +1 -1
- package/lib/modules/log/types/log-deprecation-args.d.ts +1 -1
- package/package.json +2 -2
@@ -8,7 +8,7 @@ export declare class SkyCoreAdapterService {
|
|
8
8
|
/**
|
9
9
|
* Set the responsive container CSS class for a given element.
|
10
10
|
*
|
11
|
-
* @param elementRef - The element that will
|
11
|
+
* @param elementRef - The element that will receive the new CSS class.
|
12
12
|
* @param breakpoint - The SkyMediaBreakpoint will determine which class
|
13
13
|
* gets set. For example a SkyMediaBreakpoint of `xs` will set a CSS class of `sky-responsive-container-xs`.
|
14
14
|
*/
|
@@ -34,9 +34,9 @@ export declare class SkyCoreAdapterService {
|
|
34
34
|
*
|
35
35
|
* @param elementRef - The element to search within.
|
36
36
|
* @param containerSelector - A CSS selector indicating the container that should
|
37
|
-
*
|
37
|
+
* receive focus if no focusable children are found.
|
38
38
|
* @param focusOnContainerIfNoChildrenFound - It set to `true`, the container will
|
39
|
-
*
|
39
|
+
* receive focus if no focusable children are found.
|
40
40
|
*/
|
41
41
|
getFocusableChildrenAndApplyFocus(elementRef: ElementRef, containerSelector?: string, focusOnContainerIfNoChildrenFound?: boolean): void;
|
42
42
|
/**
|
@@ -25,7 +25,7 @@ export declare class SkyDockService {
|
|
25
25
|
/**
|
26
26
|
* Sets options for the positioning and styling of the dock component. Since the dock service is a
|
27
27
|
* singleton instance, these options will be applied to all components inserted into the dock. In
|
28
|
-
* order to create a
|
28
|
+
* order to create a separate dock with different options, consumers should provide a different
|
29
29
|
* instance of the dock service.
|
30
30
|
* @param options The options for positioning and styling
|
31
31
|
*/
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Injector, StaticProvider } from '@angular/core';
|
1
|
+
import { Injector, StaticProvider, ViewContainerRef } from '@angular/core';
|
2
2
|
import { SkyDynamicComponentLocation } from './dynamic-component-location';
|
3
3
|
/**
|
4
4
|
* Options for adding a dynamic component to the page.
|
@@ -16,6 +16,10 @@ export interface SkyDynamicComponentOptions {
|
|
16
16
|
* The reference element used when using the `ElementTop` or `ElementBottom` locations.
|
17
17
|
*/
|
18
18
|
referenceEl?: HTMLElement;
|
19
|
+
/**
|
20
|
+
* The view container reference where the new component should be appended.
|
21
|
+
*/
|
22
|
+
viewContainerRef?: ViewContainerRef;
|
19
23
|
/**
|
20
24
|
* Parent injector to use instead of the dynamic component service's injector
|
21
25
|
*/
|
@@ -24,7 +24,7 @@ export declare class SkyLogService {
|
|
24
24
|
error(message: string, params?: unknown[]): void;
|
25
25
|
/**
|
26
26
|
* Logs console information if the application's log level is `SkyLogLevel.Info` or above.
|
27
|
-
* @param message The
|
27
|
+
* @param message The informational message
|
28
28
|
* @param params Optional parameters for the informational message.
|
29
29
|
*/
|
30
30
|
info(message: string, params?: unknown[]): void;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { SkyLogLevel } from './log-level';
|
2
2
|
/**
|
3
3
|
* @internal
|
4
|
-
* Arguments used when logging that a class, property, function, etc. is
|
4
|
+
* Arguments used when logging that a class, property, function, etc. is deprecated.
|
5
5
|
*/
|
6
6
|
export interface SkyLogDeprecatedArgs {
|
7
7
|
/**
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/core",
|
3
|
-
"version": "7.
|
3
|
+
"version": "7.5.0",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -45,7 +45,7 @@
|
|
45
45
|
"@angular/core": "^14.2.11",
|
46
46
|
"@angular/platform-browser": "^14.2.11",
|
47
47
|
"@angular/router": "^14.2.11",
|
48
|
-
"@skyux/i18n": "7.
|
48
|
+
"@skyux/i18n": "7.5.0"
|
49
49
|
},
|
50
50
|
"dependencies": {
|
51
51
|
"tslib": "^2.3.1"
|