@skyux/layout 6.0.0-beta.5 → 6.0.0-beta.8
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 +435 -416
- package/esm2020/lib/modules/action-button/action-button-container.component.mjs +1 -1
- package/esm2020/lib/modules/definition-list/definition-list.component.mjs +11 -4
- package/esm2020/lib/modules/definition-list/definition-list.module.mjs +4 -1
- package/esm2020/lib/modules/description-list/description-list-description.component.mjs +1 -1
- package/esm2020/lib/modules/description-list/description-list-term.component.mjs +1 -1
- package/esm2020/lib/modules/format/format-item.mjs +1 -1
- package/esm2020/lib/modules/format/format.component.mjs +1 -1
- package/esm2020/lib/modules/text-expand-repeater/text-expand-repeater.component.mjs +1 -1
- package/fesm2015/skyux-layout.mjs +11 -3
- package/fesm2015/skyux-layout.mjs.map +1 -1
- package/fesm2020/skyux-layout.mjs +11 -3
- package/fesm2020/skyux-layout.mjs.map +1 -1
- package/lib/modules/definition-list/definition-list.component.d.ts +2 -1
- package/lib/modules/definition-list/definition-list.module.d.ts +3 -0
- package/lib/modules/description-list/description-list-description.component.d.ts +1 -1
- package/lib/modules/description-list/description-list-term.component.d.ts +1 -1
- package/lib/modules/format/format-item.d.ts +1 -1
- package/lib/modules/format/format.component.d.ts +2 -2
- package/lib/modules/text-expand-repeater/text-expand-repeater.component.d.ts +1 -1
- package/package.json +9 -9
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { SkyLogService } from '@skyux/core';
|
|
1
2
|
import { SkyDefinitionListService } from './definition-list.service';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
@@ -16,7 +17,7 @@ export declare class SkyDefinitionListComponent {
|
|
|
16
17
|
* @default "None found"
|
|
17
18
|
*/
|
|
18
19
|
set defaultValue(value: string);
|
|
19
|
-
constructor(service: SkyDefinitionListService);
|
|
20
|
+
constructor(service: SkyDefinitionListService, logger: SkyLogService);
|
|
20
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDefinitionListComponent, never>;
|
|
21
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyDefinitionListComponent, "sky-definition-list", never, { "labelWidth": "labelWidth"; "defaultValue": "defaultValue"; }, {}, never, ["sky-definition-list-heading", "sky-definition-list-content"]>;
|
|
22
23
|
}
|
|
@@ -7,6 +7,9 @@ import * as i5 from "./definition-list-value.component";
|
|
|
7
7
|
import * as i6 from "@angular/common";
|
|
8
8
|
import * as i7 from "@skyux/i18n";
|
|
9
9
|
import * as i8 from "../shared/sky-layout-resources.module";
|
|
10
|
+
/**
|
|
11
|
+
* @deprecated Use `SkyDescriptionListModule` instead.
|
|
12
|
+
*/
|
|
10
13
|
export declare class SkyDefinitionListModule {
|
|
11
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDefinitionListModule, never>;
|
|
12
15
|
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyDefinitionListModule, [typeof i1.SkyDefinitionListComponent, typeof i2.SkyDefinitionListContentComponent, typeof i3.SkyDefinitionListHeadingComponent, typeof i4.SkyDefinitionListLabelComponent, typeof i5.SkyDefinitionListValueComponent], [typeof i6.CommonModule, typeof i7.SkyI18nModule, typeof i8.SkyLayoutResourcesModule], [typeof i1.SkyDefinitionListComponent, typeof i2.SkyDefinitionListContentComponent, typeof i3.SkyDefinitionListHeadingComponent, typeof i4.SkyDefinitionListLabelComponent, typeof i5.SkyDefinitionListValueComponent]>;
|
|
@@ -11,7 +11,7 @@ export declare class SkyDescriptionListDescriptionComponent implements OnDestroy
|
|
|
11
11
|
private themeSvc;
|
|
12
12
|
defaultDescription: string;
|
|
13
13
|
themeName: string;
|
|
14
|
-
templateRef: TemplateRef<
|
|
14
|
+
templateRef: TemplateRef<unknown>;
|
|
15
15
|
private ngUnsubscribe;
|
|
16
16
|
constructor(service: SkyDescriptionListService, changeRef: ChangeDetectorRef, themeSvc: SkyThemeService);
|
|
17
17
|
ngOnInit(): void;
|
|
@@ -4,7 +4,7 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
* Specifies the term in a term-description pair.
|
|
5
5
|
*/
|
|
6
6
|
export declare class SkyDescriptionListTermComponent {
|
|
7
|
-
templateRef: TemplateRef<
|
|
7
|
+
templateRef: TemplateRef<unknown>;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyDescriptionListTermComponent, never>;
|
|
9
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<SkyDescriptionListTermComponent, "sky-description-list-term", never, {}, {}, never, ["*"]>;
|
|
10
10
|
}
|
|
@@ -13,8 +13,8 @@ export declare class SkyFormatComponent {
|
|
|
13
13
|
* An array of `TemplateRef` objects to be placed in the template, where the `nth`
|
|
14
14
|
* item is placed at the `{n}` location in the template.
|
|
15
15
|
*/
|
|
16
|
-
set args(value: TemplateRef<
|
|
17
|
-
get args(): TemplateRef<
|
|
16
|
+
set args(value: TemplateRef<unknown>[]);
|
|
17
|
+
get args(): TemplateRef<unknown>[];
|
|
18
18
|
private _text;
|
|
19
19
|
private _args;
|
|
20
20
|
private updateItemsForDisplay;
|
|
@@ -15,7 +15,7 @@ export declare class SkyTextExpandRepeaterComponent implements AfterViewInit, On
|
|
|
15
15
|
/**
|
|
16
16
|
* Specifies a template for items in the list.
|
|
17
17
|
*/
|
|
18
|
-
itemTemplate: TemplateRef<
|
|
18
|
+
itemTemplate: TemplateRef<unknown>;
|
|
19
19
|
/**
|
|
20
20
|
* Specifies the style of bullet to use
|
|
21
21
|
* @default "unordered"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/layout",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.8",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -46,14 +46,14 @@
|
|
|
46
46
|
"@angular/forms": "^13.3.2",
|
|
47
47
|
"@angular/platform-browser": "^13.3.2",
|
|
48
48
|
"@angular/router": "^13.3.2",
|
|
49
|
-
"@skyux-sdk/testing": "6.0.0-beta.
|
|
50
|
-
"@skyux/core": "6.0.0-beta.
|
|
51
|
-
"@skyux/forms": "6.0.0-beta.
|
|
52
|
-
"@skyux/i18n": "6.0.0-beta.
|
|
53
|
-
"@skyux/indicators": "6.0.0-beta.
|
|
54
|
-
"@skyux/modals": "6.0.0-beta.
|
|
55
|
-
"@skyux/router": "6.0.0-beta.
|
|
56
|
-
"@skyux/theme": "6.0.0-beta.
|
|
49
|
+
"@skyux-sdk/testing": "6.0.0-beta.8",
|
|
50
|
+
"@skyux/core": "6.0.0-beta.8",
|
|
51
|
+
"@skyux/forms": "6.0.0-beta.8",
|
|
52
|
+
"@skyux/i18n": "6.0.0-beta.8",
|
|
53
|
+
"@skyux/indicators": "6.0.0-beta.8",
|
|
54
|
+
"@skyux/modals": "6.0.0-beta.8",
|
|
55
|
+
"@skyux/router": "6.0.0-beta.8",
|
|
56
|
+
"@skyux/theme": "6.0.0-beta.8"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"tslib": "^2.3.1"
|