@skyux/layout 12.4.0 → 12.6.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/fesm2022/skyux-layout-testing.mjs +68 -1
- package/fesm2022/skyux-layout-testing.mjs.map +1 -1
- package/fesm2022/skyux-layout.mjs +227 -227
- package/fesm2022/skyux-layout.mjs.map +1 -1
- package/package.json +18 -18
- package/testing/modules/text-expand-repeater/text-expand-repeater-harness-filters.d.ts +6 -0
- package/testing/modules/text-expand-repeater/text-expand-repeater-harness.d.ts +36 -0
- package/testing/modules/text-expand-repeater/text-expand-repeater-item-harness.d.ts +10 -0
- package/testing/public-api.d.ts +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/layout",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.6.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -16,23 +16,23 @@
|
|
|
16
16
|
},
|
|
17
17
|
"homepage": "https://github.com/blackbaud/skyux#readme",
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"@angular/animations": "^19.2.
|
|
20
|
-
"@angular/cdk": "^19.2.
|
|
21
|
-
"@angular/common": "^19.2.
|
|
22
|
-
"@angular/core": "^19.2.
|
|
23
|
-
"@angular/forms": "^19.2.
|
|
24
|
-
"@angular/platform-browser": "^19.2.
|
|
25
|
-
"@angular/router": "^19.2.
|
|
26
|
-
"@skyux-sdk/testing": "12.
|
|
27
|
-
"@skyux/core": "12.
|
|
28
|
-
"@skyux/forms": "12.
|
|
29
|
-
"@skyux/help-inline": "12.
|
|
30
|
-
"@skyux/i18n": "12.
|
|
31
|
-
"@skyux/icon": "12.
|
|
32
|
-
"@skyux/indicators": "12.
|
|
33
|
-
"@skyux/modals": "12.
|
|
34
|
-
"@skyux/router": "12.
|
|
35
|
-
"@skyux/theme": "12.
|
|
19
|
+
"@angular/animations": "^19.2.7",
|
|
20
|
+
"@angular/cdk": "^19.2.10",
|
|
21
|
+
"@angular/common": "^19.2.7",
|
|
22
|
+
"@angular/core": "^19.2.7",
|
|
23
|
+
"@angular/forms": "^19.2.7",
|
|
24
|
+
"@angular/platform-browser": "^19.2.7",
|
|
25
|
+
"@angular/router": "^19.2.7",
|
|
26
|
+
"@skyux-sdk/testing": "12.6.0",
|
|
27
|
+
"@skyux/core": "12.6.0",
|
|
28
|
+
"@skyux/forms": "12.6.0",
|
|
29
|
+
"@skyux/help-inline": "12.6.0",
|
|
30
|
+
"@skyux/i18n": "12.6.0",
|
|
31
|
+
"@skyux/icon": "12.6.0",
|
|
32
|
+
"@skyux/indicators": "12.6.0",
|
|
33
|
+
"@skyux/modals": "12.6.0",
|
|
34
|
+
"@skyux/router": "12.6.0",
|
|
35
|
+
"@skyux/theme": "12.6.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"tslib": "^2.8.1"
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { HarnessPredicate } from '@angular/cdk/testing';
|
|
2
|
+
import { SkyComponentHarness } from '@skyux/core/testing';
|
|
3
|
+
import { SkyTextExpandRepeaterListStyleType } from '@skyux/layout';
|
|
4
|
+
import { SkyTextExpandRepeaterHarnessFilters } from './text-expand-repeater-harness-filters';
|
|
5
|
+
import { SkyTextExpandRepeaterItemHarness } from './text-expand-repeater-item-harness';
|
|
6
|
+
/**
|
|
7
|
+
* Harness for interacting with a text expand repeater component in tests.
|
|
8
|
+
*/
|
|
9
|
+
export declare class SkyTextExpandRepeaterHarness extends SkyComponentHarness {
|
|
10
|
+
#private;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
static hostSelector: string;
|
|
15
|
+
/**
|
|
16
|
+
* Gets a `HarnessPredicate` that can be used to search for a
|
|
17
|
+
* `SkyTextExpandRepeaterHarness` that meets certain criteria.
|
|
18
|
+
*/
|
|
19
|
+
static with(filters: SkyTextExpandRepeaterHarnessFilters): HarnessPredicate<SkyTextExpandRepeaterHarness>;
|
|
20
|
+
/**
|
|
21
|
+
* Clicks the button element that expands or collapses text.
|
|
22
|
+
*/
|
|
23
|
+
clickExpandCollapseButton(): Promise<void>;
|
|
24
|
+
/**
|
|
25
|
+
* Gets an array of container harnesses for the repeater items.
|
|
26
|
+
*/
|
|
27
|
+
getItems(): Promise<SkyTextExpandRepeaterItemHarness[]>;
|
|
28
|
+
/**
|
|
29
|
+
* Gets the list style.
|
|
30
|
+
*/
|
|
31
|
+
getListStyle(): Promise<SkyTextExpandRepeaterListStyleType>;
|
|
32
|
+
/**
|
|
33
|
+
* Whether the text is expanded.
|
|
34
|
+
*/
|
|
35
|
+
isExpanded(): Promise<boolean>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { SkyQueryableComponentHarness } from '@skyux/core/testing';
|
|
2
|
+
/**
|
|
3
|
+
* Harness for interacting with a text expand repeater items in tests.
|
|
4
|
+
*/
|
|
5
|
+
export declare class SkyTextExpandRepeaterItemHarness extends SkyQueryableComponentHarness {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
static hostSelector: string;
|
|
10
|
+
}
|
package/testing/public-api.d.ts
CHANGED
|
@@ -16,10 +16,13 @@ export { SkyRowHarnessFilters } from './modules/fluid-grid/row-harness-filters';
|
|
|
16
16
|
export { SkyTextExpandHarness } from './modules/text-expand/text-expand-harness';
|
|
17
17
|
export { SkyTextExpandHarnessFilters } from './modules/text-expand/text-expand-harness-filters';
|
|
18
18
|
export { SkyTextExpandModalHarness } from './modules/text-expand/text-expand-modal-harness';
|
|
19
|
-
export {
|
|
20
|
-
export {
|
|
19
|
+
export { SkyTextExpandRepeaterHarness } from './modules/text-expand-repeater/text-expand-repeater-harness';
|
|
20
|
+
export { SkyTextExpandRepeaterHarnessFilters } from './modules/text-expand-repeater/text-expand-repeater-harness-filters';
|
|
21
|
+
export { SkyTextExpandRepeaterItemHarness } from './modules/text-expand-repeater/text-expand-repeater-item-harness';
|
|
21
22
|
export { SkyToolbarHarness } from './modules/toolbar/toolbar-harness';
|
|
22
23
|
export { SkyToolbarHarnessFilters } from './modules/toolbar/toolbar-harness-filters';
|
|
24
|
+
export { SkyToolbarItemHarness } from './modules/toolbar/toolbar-item-harness';
|
|
25
|
+
export { SkyToolbarItemHarnessFilters } from './modules/toolbar/toolbar-item-harness-filters';
|
|
23
26
|
export { SkyToolbarSectionHarness } from './modules/toolbar/toolbar-section-harness';
|
|
24
27
|
export { SkyToolbarSectionHarnessFilters } from './modules/toolbar/toolbar-section-harness-filters';
|
|
25
28
|
export { SkyToolbarViewActionsHarness } from './modules/toolbar/toolbar-view-actions-harness';
|