@skyux/layout 11.32.0 → 11.34.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/layout",
3
- "version": "11.32.0",
3
+ "version": "11.34.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -43,16 +43,16 @@
43
43
  "@angular/forms": "^18.2.13",
44
44
  "@angular/platform-browser": "^18.2.13",
45
45
  "@angular/router": "^18.2.13",
46
- "@skyux-sdk/testing": "11.32.0",
47
- "@skyux/core": "11.32.0",
48
- "@skyux/forms": "11.32.0",
49
- "@skyux/help-inline": "11.32.0",
50
- "@skyux/i18n": "11.32.0",
51
- "@skyux/icon": "11.32.0",
52
- "@skyux/indicators": "11.32.0",
53
- "@skyux/modals": "11.32.0",
54
- "@skyux/router": "11.32.0",
55
- "@skyux/theme": "11.32.0"
46
+ "@skyux-sdk/testing": "11.34.0",
47
+ "@skyux/core": "11.34.0",
48
+ "@skyux/forms": "11.34.0",
49
+ "@skyux/help-inline": "11.34.0",
50
+ "@skyux/i18n": "11.34.0",
51
+ "@skyux/icon": "11.34.0",
52
+ "@skyux/indicators": "11.34.0",
53
+ "@skyux/modals": "11.34.0",
54
+ "@skyux/router": "11.34.0",
55
+ "@skyux/theme": "11.34.0"
56
56
  },
57
57
  "dependencies": {
58
58
  "tslib": "^2.6.3"
@@ -0,0 +1,6 @@
1
+ import { SkyHarnessFilters } from '@skyux/core/testing';
2
+ /**
3
+ * A set of criteria that can be used to filter a list of `SkyToolbarHarness` instances.
4
+ */
5
+ export interface SkyToolbarHarnessFilters extends SkyHarnessFilters {
6
+ }
@@ -0,0 +1,43 @@
1
+ import { HarnessPredicate } from '@angular/cdk/testing';
2
+ import { SkyComponentHarness } from '@skyux/core/testing';
3
+ import { SkyToolbarHarnessFilters } from './toolbar-harness-filters';
4
+ import { SkyToolbarItemHarness } from './toolbar-item-harness';
5
+ import { SkyToolbarItemHarnessFilters } from './toolbar-item-harness-filters';
6
+ import { SkyToolbarSectionHarness } from './toolbar-section-harness';
7
+ import { SkyToolbarSectionHarnessFilters } from './toolbar-section-harness-filters';
8
+ import { SkyToolbarViewActionsHarness } from './toolbar-view-actions-harness';
9
+ /**
10
+ * Harness for interacting with a toolbar component in tests.
11
+ */
12
+ export declare class SkyToolbarHarness extends SkyComponentHarness {
13
+ #private;
14
+ /**
15
+ * @internal
16
+ */
17
+ static hostSelector: string;
18
+ /**
19
+ * Gets a `HarnessPredicate` that can be used to search for a
20
+ * `SkyToolbarHarness` that meets certain criteria.
21
+ */
22
+ static with(filters: SkyToolbarHarnessFilters): HarnessPredicate<SkyToolbarHarness>;
23
+ /**
24
+ * Gets a harness for a specific toolbar item that meets certain criteria.
25
+ */
26
+ getItem(filter: SkyToolbarItemHarnessFilters): Promise<SkyToolbarItemHarness>;
27
+ /**
28
+ * Gets an array of all toolbar items.
29
+ */
30
+ getItems(filters?: SkyToolbarItemHarnessFilters): Promise<SkyToolbarItemHarness[]>;
31
+ /**
32
+ * Gets a harness for a specific toolbar section that meets certain criteria.
33
+ */
34
+ getSection(filter: SkyToolbarSectionHarnessFilters): Promise<SkyToolbarSectionHarness>;
35
+ /**
36
+ * Gets an array of all toolbar sections.
37
+ */
38
+ getSections(filters?: SkyToolbarSectionHarnessFilters): Promise<SkyToolbarSectionHarness[]>;
39
+ /**
40
+ * Gets the harness to interact with the toolbar's view actions.
41
+ */
42
+ getViewActions(): Promise<SkyToolbarViewActionsHarness>;
43
+ }
@@ -0,0 +1,6 @@
1
+ import { SkyHarnessFilters } from '@skyux/core/testing';
2
+ /**
3
+ * A set of criteria that can be used to filter a list of `SkyToolbarItemHarness` instances.
4
+ */
5
+ export interface SkyToolbarItemHarnessFilters extends SkyHarnessFilters {
6
+ }
@@ -0,0 +1,17 @@
1
+ import { HarnessPredicate } from '@angular/cdk/testing';
2
+ import { SkyQueryableComponentHarness } from '@skyux/core/testing';
3
+ import { SkyToolbarItemHarnessFilters } from './toolbar-item-harness-filters';
4
+ /**
5
+ * Harness to interact with a toolbar item component in tests.
6
+ */
7
+ export declare class SkyToolbarItemHarness extends SkyQueryableComponentHarness {
8
+ /**
9
+ * @internal
10
+ */
11
+ static hostSelector: string;
12
+ /**
13
+ * Gets a `HarnessPredicate` that can be used to search for a
14
+ * `SkyToolbarItemHarness` that meets certain criteria.
15
+ */
16
+ static with(filters: SkyToolbarItemHarnessFilters): HarnessPredicate<SkyToolbarItemHarness>;
17
+ }
@@ -0,0 +1,6 @@
1
+ import { SkyHarnessFilters } from '@skyux/core/testing';
2
+ /**
3
+ * A set of criteria that can be used to filter a list of `SkyToolbarSectionHarness` instances.
4
+ */
5
+ export interface SkyToolbarSectionHarnessFilters extends SkyHarnessFilters {
6
+ }
@@ -0,0 +1,33 @@
1
+ import { HarnessPredicate } from '@angular/cdk/testing';
2
+ import { SkyComponentHarness } from '@skyux/core/testing';
3
+ import { SkyToolbarItemHarness } from './toolbar-item-harness';
4
+ import { SkyToolbarItemHarnessFilters } from './toolbar-item-harness-filters';
5
+ import { SkyToolbarSectionHarnessFilters } from './toolbar-section-harness-filters';
6
+ import { SkyToolbarViewActionsHarness } from './toolbar-view-actions-harness';
7
+ /**
8
+ * Harness to interact with a toolbar section component in tests.
9
+ */
10
+ export declare class SkyToolbarSectionHarness extends SkyComponentHarness {
11
+ #private;
12
+ /**
13
+ * @internal
14
+ */
15
+ static hostSelector: string;
16
+ /**
17
+ * Gets a `HarnessPredicate` that can be used to search for a
18
+ * `SkyToolbarSectionHarness` that meets certain criteria.
19
+ */
20
+ static with(filters: SkyToolbarSectionHarnessFilters): HarnessPredicate<SkyToolbarSectionHarness>;
21
+ /**
22
+ * Gets a harness for a specific toolbar item that meets certain criteria.
23
+ */
24
+ getItem(filter: SkyToolbarItemHarnessFilters): Promise<SkyToolbarItemHarness>;
25
+ /**
26
+ * Gets an array of all toolbar items.
27
+ */
28
+ getItems(filters?: SkyToolbarItemHarnessFilters): Promise<SkyToolbarItemHarness[]>;
29
+ /**
30
+ * Gets the harness to interact with the toolbar's view actions.
31
+ */
32
+ getViewActions(): Promise<SkyToolbarViewActionsHarness>;
33
+ }
@@ -0,0 +1,10 @@
1
+ import { SkyQueryableComponentHarness } from '@skyux/core/testing';
2
+ /**
3
+ * Harness to interact with a toolbar view actions component in tests.
4
+ */
5
+ export declare class SkyToolbarViewActionsHarness extends SkyQueryableComponentHarness {
6
+ /**
7
+ * @internal
8
+ */
9
+ static hostSelector: string;
10
+ }
@@ -12,3 +12,10 @@ export { SkyRowHarnessFilters } from './modules/fluid-grid/row-harness-filters';
12
12
  export { SkyTextExpandHarness } from './modules/text-expand/text-expand-harness';
13
13
  export { SkyTextExpandHarnessFilters } from './modules/text-expand/text-expand-harness-filters';
14
14
  export { SkyTextExpandModalHarness } from './modules/text-expand/text-expand-modal-harness';
15
+ export { SkyToolbarItemHarness } from './modules/toolbar/toolbar-item-harness';
16
+ export { SkyToolbarItemHarnessFilters } from './modules/toolbar/toolbar-item-harness-filters';
17
+ export { SkyToolbarHarness } from './modules/toolbar/toolbar-harness';
18
+ export { SkyToolbarHarnessFilters } from './modules/toolbar/toolbar-harness-filters';
19
+ export { SkyToolbarSectionHarness } from './modules/toolbar/toolbar-section-harness';
20
+ export { SkyToolbarSectionHarnessFilters } from './modules/toolbar/toolbar-section-harness-filters';
21
+ export { SkyToolbarViewActionsHarness } from './modules/toolbar/toolbar-view-actions-harness';