@skyux/lookup 11.7.0 → 11.9.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/lookup",
3
- "version": "11.7.0",
3
+ "version": "11.9.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -42,16 +42,16 @@
42
42
  "@angular/core": "^18.2.5",
43
43
  "@angular/forms": "^18.2.5",
44
44
  "@angular/platform-browser": "^18.2.5",
45
- "@skyux-sdk/testing": "11.7.0",
46
- "@skyux/core": "11.7.0",
47
- "@skyux/forms": "11.7.0",
48
- "@skyux/i18n": "11.7.0",
49
- "@skyux/icon": "11.7.0",
50
- "@skyux/indicators": "11.7.0",
51
- "@skyux/layout": "11.7.0",
52
- "@skyux/lists": "11.7.0",
53
- "@skyux/modals": "11.7.0",
54
- "@skyux/theme": "11.7.0"
45
+ "@skyux-sdk/testing": "11.9.0",
46
+ "@skyux/core": "11.9.0",
47
+ "@skyux/forms": "11.9.0",
48
+ "@skyux/i18n": "11.9.0",
49
+ "@skyux/icon": "11.9.0",
50
+ "@skyux/indicators": "11.9.0",
51
+ "@skyux/layout": "11.9.0",
52
+ "@skyux/lists": "11.9.0",
53
+ "@skyux/modals": "11.9.0",
54
+ "@skyux/theme": "11.9.0"
55
55
  },
56
56
  "dependencies": {
57
57
  "intl-tel-input": "24.4.0",
@@ -2,8 +2,7 @@ import { HarnessPredicate } from '@angular/cdk/testing';
2
2
  import { SkyComponentHarness } from '@skyux/core/testing';
3
3
  import { SkySearchHarnessFilters } from './search-harness-filters';
4
4
  /**
5
- * Harness for interacting with an search component in tests.
6
- * @internal
5
+ * Harness for interacting with a search component in tests.
7
6
  */
8
7
  export declare class SkySearchHarness extends SkyComponentHarness {
9
8
  #private;
@@ -17,23 +16,39 @@ export declare class SkySearchHarness extends SkyComponentHarness {
17
16
  */
18
17
  static with(filters: SkySearchHarnessFilters): HarnessPredicate<SkySearchHarness>;
19
18
  /**
20
- * Blurs the input.
19
+ * Blurs the search input.
21
20
  */
22
21
  blur(): Promise<void>;
23
22
  /**
24
- * Clears the input.
23
+ * Clears the search input.
25
24
  */
26
25
  clear(): Promise<void>;
27
26
  /**
28
- * Enters text into the input and performs a search.
27
+ * Clicks the search input clear button.
28
+ */
29
+ clickClearButton(): Promise<void>;
30
+ /**
31
+ * Clicks search dismiss button to collapse search back to a button.
32
+ */
33
+ clickDismissSearchButton(): Promise<void>;
34
+ /**
35
+ * Clicks the search icon button that opens search input when it is collapsed.
36
+ */
37
+ clickOpenSearchButton(): Promise<void>;
38
+ /**
39
+ * Clicks the search submit button.
40
+ */
41
+ clickSubmitButton(): Promise<void>;
42
+ /**
43
+ * Enters text into the search input and performs a search.
29
44
  */
30
45
  enterText(value: string): Promise<void>;
31
46
  /**
32
- * Focuses the input.
47
+ * Focuses the search input.
33
48
  */
34
49
  focus(): Promise<void>;
35
50
  /**
36
- * Gets the search's aria-label.
51
+ * Gets the search input's `aria-label`.
37
52
  */
38
53
  getAriaLabel(): Promise<string | null>;
39
54
  /**
@@ -45,15 +60,19 @@ export declare class SkySearchHarness extends SkyComponentHarness {
45
60
  */
46
61
  getPlaceholderText(): Promise<string | null>;
47
62
  /**
48
- * Gets the value of the input.
63
+ * Gets the value of the search input.
49
64
  */
50
65
  getValue(): Promise<string>;
51
66
  /**
52
- * Whether the input is disabled.
67
+ * Whether the search input is collapsed.
68
+ */
69
+ isCollapsed(): Promise<boolean>;
70
+ /**
71
+ * Whether the search input is disabled.
53
72
  */
54
73
  isDisabled(): Promise<boolean>;
55
74
  /**
56
- * Whether the input is focused.
75
+ * Whether the search input is focused.
57
76
  */
58
77
  isFocused(): Promise<boolean>;
59
78
  }