@skyux/layout 7.0.0-beta.1 → 7.0.0-beta.3
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 +1355 -781
- package/esm2020/index.mjs +1 -2
- package/esm2020/lib/modules/action-button/action-button-container.component.mjs +2 -2
- package/esm2020/lib/modules/card/card.component.mjs +38 -11
- package/esm2020/lib/modules/definition-list/definition-list-label.component.mjs +1 -1
- package/esm2020/lib/modules/definition-list/definition-list-value.component.mjs +3 -3
- package/esm2020/lib/modules/definition-list/definition-list.component.mjs +1 -1
- package/esm2020/lib/modules/definition-list/definition-list.service.mjs +1 -1
- package/esm2020/lib/modules/description-list/description-list-adapter-service.mjs +26 -22
- package/esm2020/lib/modules/description-list/description-list-content.component.mjs +2 -2
- package/esm2020/lib/modules/description-list/description-list-description.component.mjs +16 -11
- package/esm2020/lib/modules/description-list/description-list-term.component.mjs +1 -1
- package/esm2020/lib/modules/description-list/description-list.component.mjs +25 -16
- package/esm2020/lib/modules/fluid-grid/column.component.mjs +19 -1
- package/esm2020/lib/modules/fluid-grid/fluid-grid.component.mjs +15 -35
- package/esm2020/lib/modules/fluid-grid/row.component.mjs +1 -1
- package/esm2020/lib/modules/fluid-grid/types/fluid-grid-gutter-size-type.mjs +1 -1
- package/esm2020/lib/modules/format/format.component.mjs +34 -26
- package/esm2020/lib/modules/inline-delete/inline-delete-adapter.service.mjs +91 -83
- package/esm2020/lib/modules/inline-delete/inline-delete.component.mjs +15 -9
- package/esm2020/lib/modules/page/page-theme-adapter.service.mjs +14 -8
- package/esm2020/lib/modules/page/page.component.mjs +8 -4
- package/esm2020/lib/modules/page-summary/page-summary-adapter.service.mjs +1 -1
- package/esm2020/lib/modules/page-summary/page-summary.component.mjs +40 -16
- package/esm2020/lib/modules/text-expand/text-expand-adapter.service.mjs +8 -10
- package/esm2020/lib/modules/text-expand/text-expand-modal-context-token.mjs +6 -0
- package/esm2020/lib/modules/text-expand/text-expand-modal-context.mjs +2 -6
- package/esm2020/lib/modules/text-expand/text-expand-modal.component.mjs +12 -10
- package/esm2020/lib/modules/text-expand/text-expand.component.mjs +188 -127
- package/esm2020/lib/modules/text-expand-repeater/text-expand-repeater-adapter.service.mjs +10 -12
- package/esm2020/lib/modules/text-expand-repeater/text-expand-repeater.component.mjs +139 -95
- package/esm2020/lib/modules/toolbar/toolbar.component.mjs +2 -2
- package/esm2020/testing/action-button-fixture.mjs +12 -6
- package/esm2020/testing/card-fixture.mjs +19 -16
- package/esm2020/testing/page-summary-fixture.mjs +9 -5
- package/fesm2015/skyux-layout-testing.mjs +35 -24
- package/fesm2015/skyux-layout-testing.mjs.map +1 -1
- package/fesm2015/skyux-layout.mjs +675 -506
- package/fesm2015/skyux-layout.mjs.map +1 -1
- package/fesm2020/skyux-layout-testing.mjs +35 -24
- package/fesm2020/skyux-layout-testing.mjs.map +1 -1
- package/fesm2020/skyux-layout.mjs +669 -506
- package/fesm2020/skyux-layout.mjs.map +1 -1
- package/index.d.ts +0 -1
- package/lib/modules/card/card.component.d.ts +7 -6
- package/lib/modules/definition-list/definition-list-label.component.d.ts +1 -1
- package/lib/modules/definition-list/definition-list-value.component.d.ts +1 -1
- package/lib/modules/definition-list/definition-list.component.d.ts +2 -2
- package/lib/modules/definition-list/definition-list.service.d.ts +2 -2
- package/lib/modules/description-list/description-list-adapter-service.d.ts +1 -2
- package/lib/modules/description-list/description-list-content.component.d.ts +2 -2
- package/lib/modules/description-list/description-list-description.component.d.ts +5 -7
- package/lib/modules/description-list/description-list-term.component.d.ts +1 -1
- package/lib/modules/description-list/description-list.component.d.ts +6 -7
- package/lib/modules/fluid-grid/column.component.d.ts +7 -5
- package/lib/modules/fluid-grid/fluid-grid.component.d.ts +3 -9
- package/lib/modules/fluid-grid/row.component.d.ts +1 -1
- package/lib/modules/fluid-grid/types/fluid-grid-gutter-size-type.d.ts +1 -1
- package/lib/modules/format/format.component.d.ts +5 -7
- package/lib/modules/inline-delete/inline-delete-adapter.service.d.ts +1 -11
- package/lib/modules/inline-delete/inline-delete.component.d.ts +3 -5
- package/lib/modules/page/page-theme-adapter.service.d.ts +1 -1
- package/lib/modules/page/page.component.d.ts +1 -1
- package/lib/modules/page-summary/page-summary.component.d.ts +8 -9
- package/lib/modules/text-expand/text-expand-adapter.service.d.ts +3 -4
- package/lib/modules/text-expand/text-expand-modal-context-token.d.ts +6 -0
- package/lib/modules/text-expand/text-expand-modal-context.d.ts +1 -1
- package/lib/modules/text-expand/text-expand.component.d.ts +18 -25
- package/lib/modules/text-expand-repeater/text-expand-repeater-adapter.service.d.ts +4 -5
- package/lib/modules/text-expand-repeater/text-expand-repeater.component.d.ts +13 -21
- package/package.json +9 -9
- package/testing/action-button-fixture.d.ts +4 -4
- package/testing/card-fixture.d.ts +3 -5
- package/testing/page-summary-fixture.d.ts +4 -4
- package/esm2020/lib/modules/fluid-grid/fluid-grid-gutter-size.mjs +0 -20
- package/lib/modules/fluid-grid/fluid-grid-gutter-size.d.ts +0 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/layout",
|
|
3
|
-
"version": "7.0.0-beta.
|
|
3
|
+
"version": "7.0.0-beta.3",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
"@angular/forms": "^14.2.0",
|
|
48
48
|
"@angular/platform-browser": "^14.2.0",
|
|
49
49
|
"@angular/router": "^14.2.0",
|
|
50
|
-
"@skyux-sdk/testing": "7.0.0-beta.
|
|
51
|
-
"@skyux/core": "7.0.0-beta.
|
|
52
|
-
"@skyux/forms": "7.0.0-beta.
|
|
53
|
-
"@skyux/i18n": "7.0.0-beta.
|
|
54
|
-
"@skyux/indicators": "7.0.0-beta.
|
|
55
|
-
"@skyux/modals": "7.0.0-beta.
|
|
56
|
-
"@skyux/router": "7.0.0-beta.
|
|
57
|
-
"@skyux/theme": "7.0.0-beta.
|
|
50
|
+
"@skyux-sdk/testing": "7.0.0-beta.3",
|
|
51
|
+
"@skyux/core": "7.0.0-beta.3",
|
|
52
|
+
"@skyux/forms": "7.0.0-beta.3",
|
|
53
|
+
"@skyux/i18n": "7.0.0-beta.3",
|
|
54
|
+
"@skyux/indicators": "7.0.0-beta.3",
|
|
55
|
+
"@skyux/modals": "7.0.0-beta.3",
|
|
56
|
+
"@skyux/router": "7.0.0-beta.3",
|
|
57
|
+
"@skyux/theme": "7.0.0-beta.3"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"tslib": "^2.3.1"
|
|
@@ -4,19 +4,19 @@ import { ComponentFixture } from '@angular/core/testing';
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare class SkyActionButtonFixture {
|
|
7
|
+
#private;
|
|
7
8
|
/**
|
|
8
9
|
* The action button's current header text.
|
|
9
10
|
*/
|
|
10
|
-
get headerText(): string;
|
|
11
|
+
get headerText(): string | undefined;
|
|
11
12
|
/**
|
|
12
13
|
* The action button's current details text.
|
|
13
14
|
*/
|
|
14
|
-
get detailsText(): string;
|
|
15
|
+
get detailsText(): string | undefined;
|
|
15
16
|
/**
|
|
16
17
|
* The action button's current icon type.
|
|
17
18
|
*/
|
|
18
|
-
get iconType(): string;
|
|
19
|
-
private debugEl;
|
|
19
|
+
get iconType(): string | undefined;
|
|
20
20
|
constructor(fixture: ComponentFixture<any>, skyTestId: string);
|
|
21
21
|
/**
|
|
22
22
|
* Clicks the action button.
|
|
@@ -4,14 +4,15 @@ import { ComponentFixture } from '@angular/core/testing';
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare class SkyCardFixture {
|
|
7
|
+
#private;
|
|
7
8
|
/**
|
|
8
9
|
* The card's current title.
|
|
9
10
|
*/
|
|
10
|
-
get titleText(): string;
|
|
11
|
+
get titleText(): string | undefined;
|
|
11
12
|
/**
|
|
12
13
|
* The card's current content text.
|
|
13
14
|
*/
|
|
14
|
-
get contentText(): string;
|
|
15
|
+
get contentText(): string | undefined;
|
|
15
16
|
/**
|
|
16
17
|
* A flag indicating whether the user can select the card.
|
|
17
18
|
*/
|
|
@@ -21,7 +22,6 @@ export declare class SkyCardFixture {
|
|
|
21
22
|
* is not selectable, an error is thrown.
|
|
22
23
|
*/
|
|
23
24
|
get selected(): boolean;
|
|
24
|
-
private debugEl;
|
|
25
25
|
constructor(fixture: ComponentFixture<any>, skyTestId: string);
|
|
26
26
|
/**
|
|
27
27
|
* Selects the card.
|
|
@@ -31,6 +31,4 @@ export declare class SkyCardFixture {
|
|
|
31
31
|
* Deselects the card.
|
|
32
32
|
*/
|
|
33
33
|
deselect(): void;
|
|
34
|
-
private clickCheckLabelEl;
|
|
35
|
-
private getCheckInputEl;
|
|
36
34
|
}
|
|
@@ -4,18 +4,18 @@ import { ComponentFixture } from '@angular/core/testing';
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare class SkyPageSummaryFixture {
|
|
7
|
+
#private;
|
|
7
8
|
/**
|
|
8
9
|
* The page summary's current title text.
|
|
9
10
|
*/
|
|
10
|
-
get titleText(): string;
|
|
11
|
+
get titleText(): string | undefined;
|
|
11
12
|
/**
|
|
12
13
|
* The page summary's current subtitle text.
|
|
13
14
|
*/
|
|
14
|
-
get subtitleText(): string;
|
|
15
|
+
get subtitleText(): string | undefined;
|
|
15
16
|
/**
|
|
16
17
|
* The page summary's current content text.
|
|
17
18
|
*/
|
|
18
|
-
get contentText(): string;
|
|
19
|
-
private debugEl;
|
|
19
|
+
get contentText(): string | undefined;
|
|
20
20
|
constructor(fixture: ComponentFixture<any>, skyTestId: string);
|
|
21
21
|
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated Use `SkyFluidGridGutterSizeType` instead.
|
|
3
|
-
* @internal
|
|
4
|
-
*/
|
|
5
|
-
export var SkyFluidGridGutterSize;
|
|
6
|
-
(function (SkyFluidGridGutterSize) {
|
|
7
|
-
/**
|
|
8
|
-
* Specifies a small gutter.
|
|
9
|
-
*/
|
|
10
|
-
SkyFluidGridGutterSize[SkyFluidGridGutterSize["Small"] = 0] = "Small";
|
|
11
|
-
/**
|
|
12
|
-
* Specifies a medium gutter.
|
|
13
|
-
*/
|
|
14
|
-
SkyFluidGridGutterSize[SkyFluidGridGutterSize["Medium"] = 1] = "Medium";
|
|
15
|
-
/**
|
|
16
|
-
* Specifies a large gutter.
|
|
17
|
-
*/
|
|
18
|
-
SkyFluidGridGutterSize[SkyFluidGridGutterSize["Large"] = 2] = "Large";
|
|
19
|
-
})(SkyFluidGridGutterSize || (SkyFluidGridGutterSize = {}));
|
|
20
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmx1aWQtZ3JpZC1ndXR0ZXItc2l6ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tcG9uZW50cy9sYXlvdXQvc3JjL2xpYi9tb2R1bGVzL2ZsdWlkLWdyaWQvZmx1aWQtZ3JpZC1ndXR0ZXItc2l6ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7O0dBR0c7QUFDSCxNQUFNLENBQU4sSUFBWSxzQkFhWDtBQWJELFdBQVksc0JBQXNCO0lBQ2hDOztPQUVHO0lBQ0gscUVBQUssQ0FBQTtJQUNMOztPQUVHO0lBQ0gsdUVBQU0sQ0FBQTtJQUNOOztPQUVHO0lBQ0gscUVBQUssQ0FBQTtBQUNQLENBQUMsRUFiVyxzQkFBc0IsS0FBdEIsc0JBQXNCLFFBYWpDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBAZGVwcmVjYXRlZCBVc2UgYFNreUZsdWlkR3JpZEd1dHRlclNpemVUeXBlYCBpbnN0ZWFkLlxuICogQGludGVybmFsXG4gKi9cbmV4cG9ydCBlbnVtIFNreUZsdWlkR3JpZEd1dHRlclNpemUge1xuICAvKipcbiAgICogU3BlY2lmaWVzIGEgc21hbGwgZ3V0dGVyLlxuICAgKi9cbiAgU21hbGwsXG4gIC8qKlxuICAgKiBTcGVjaWZpZXMgYSBtZWRpdW0gZ3V0dGVyLlxuICAgKi9cbiAgTWVkaXVtLFxuICAvKipcbiAgICogU3BlY2lmaWVzIGEgbGFyZ2UgZ3V0dGVyLlxuICAgKi9cbiAgTGFyZ2UsXG59XG4iXX0=
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated Use `SkyFluidGridGutterSizeType` instead.
|
|
3
|
-
* @internal
|
|
4
|
-
*/
|
|
5
|
-
export declare enum SkyFluidGridGutterSize {
|
|
6
|
-
/**
|
|
7
|
-
* Specifies a small gutter.
|
|
8
|
-
*/
|
|
9
|
-
Small = 0,
|
|
10
|
-
/**
|
|
11
|
-
* Specifies a medium gutter.
|
|
12
|
-
*/
|
|
13
|
-
Medium = 1,
|
|
14
|
-
/**
|
|
15
|
-
* Specifies a large gutter.
|
|
16
|
-
*/
|
|
17
|
-
Large = 2
|
|
18
|
-
}
|