@skyux/layout 12.9.0 → 12.10.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": "12.9.0",
3
+ "version": "12.10.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -23,16 +23,16 @@
23
23
  "@angular/forms": "^19.2.7",
24
24
  "@angular/platform-browser": "^19.2.7",
25
25
  "@angular/router": "^19.2.7",
26
- "@skyux-sdk/testing": "12.9.0",
27
- "@skyux/core": "12.9.0",
28
- "@skyux/forms": "12.9.0",
29
- "@skyux/help-inline": "12.9.0",
30
- "@skyux/i18n": "12.9.0",
31
- "@skyux/icon": "12.9.0",
32
- "@skyux/indicators": "12.9.0",
33
- "@skyux/modals": "12.9.0",
34
- "@skyux/router": "12.9.0",
35
- "@skyux/theme": "12.9.0"
26
+ "@skyux-sdk/testing": "12.10.0",
27
+ "@skyux/core": "12.10.0",
28
+ "@skyux/forms": "12.10.0",
29
+ "@skyux/help-inline": "12.10.0",
30
+ "@skyux/i18n": "12.10.0",
31
+ "@skyux/icon": "12.10.0",
32
+ "@skyux/indicators": "12.10.0",
33
+ "@skyux/modals": "12.10.0",
34
+ "@skyux/router": "12.10.0",
35
+ "@skyux/theme": "12.10.0"
36
36
  },
37
37
  "dependencies": {
38
38
  "tslib": "^2.8.1"
@@ -0,0 +1,30 @@
1
+ import { HarnessPredicate } from '@angular/cdk/testing';
2
+ import { SkyComponentHarness } from '@skyux/core/testing';
3
+ import { SkyInlineDeleteHarnessFilters } from './inline-delete-harness.filters';
4
+ /**
5
+ * Harness for interacting with an inline delete component in tests.
6
+ */
7
+ export declare class SkyInlineDeleteHarness extends SkyComponentHarness {
8
+ #private;
9
+ /**
10
+ * @internal
11
+ */
12
+ static hostSelector: string;
13
+ /**
14
+ * Gets a `HarnessPredicate` that can be used to search for a
15
+ * `SkyInlineDeleteHarness` that meets certain criteria.
16
+ */
17
+ static with(filters: SkyInlineDeleteHarnessFilters): HarnessPredicate<SkyInlineDeleteHarness>;
18
+ /**
19
+ * Clicks the delete button.
20
+ */
21
+ clickDeleteButton(): Promise<void>;
22
+ /**
23
+ * Clicks the cancel button.
24
+ */
25
+ clickCancelButton(): Promise<void>;
26
+ /**
27
+ * Whether the inline delete is pending.
28
+ */
29
+ isPending(): Promise<boolean>;
30
+ }
@@ -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 `SkyInlineDeleteHarness` instances.
4
+ */
5
+ export interface SkyInlineDeleteHarnessFilters extends SkyHarnessFilters {
6
+ }
@@ -30,3 +30,5 @@ export { SkyActionButtonContainerHarnessFilters } from './modules/action-button/
30
30
  export { SkyActionButtonContainerHarness } from './modules/action-button/action-button-container-harness';
31
31
  export { SkyActionButtonHarnessFilters } from './modules/action-button/action-button-harness.filters';
32
32
  export { SkyActionButtonHarness } from './modules/action-button/action-button-harness';
33
+ export { SkyInlineDeleteHarness } from './modules/inline-delete/inline-delete-harness';
34
+ export { SkyInlineDeleteHarnessFilters } from './modules/inline-delete/inline-delete-harness.filters';