@skyux/forms 13.0.0-alpha.8 → 13.0.0-beta.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/forms",
3
- "version": "13.0.0-alpha.8",
3
+ "version": "13.0.0-beta.0",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -21,14 +21,14 @@
21
21
  "@angular/core": "^20.0.5",
22
22
  "@angular/forms": "^20.0.5",
23
23
  "@angular/platform-browser": "^20.0.5",
24
- "@skyux-sdk/testing": "13.0.0-alpha.8",
25
- "@skyux/core": "13.0.0-alpha.8",
26
- "@skyux/help-inline": "13.0.0-alpha.8",
27
- "@skyux/i18n": "13.0.0-alpha.8",
28
- "@skyux/icon": "13.0.0-alpha.8",
29
- "@skyux/indicators": "13.0.0-alpha.8",
30
- "@skyux/popovers": "13.0.0-alpha.8",
31
- "@skyux/theme": "13.0.0-alpha.8"
24
+ "@skyux-sdk/testing": "13.0.0-beta.0",
25
+ "@skyux/core": "13.0.0-beta.0",
26
+ "@skyux/help-inline": "13.0.0-beta.0",
27
+ "@skyux/i18n": "13.0.0-beta.0",
28
+ "@skyux/icon": "13.0.0-beta.0",
29
+ "@skyux/indicators": "13.0.0-beta.0",
30
+ "@skyux/popovers": "13.0.0-beta.0",
31
+ "@skyux/theme": "13.0.0-beta.0"
32
32
  },
33
33
  "peerDependenciesMeta": {
34
34
  "@skyux-sdk/testing": {
@@ -321,9 +321,16 @@ declare class SkyCheckboxGroupHarness extends SkyComponentHarness {
321
321
  */
322
322
  clickHelpInline(): Promise<void>;
323
323
  /**
324
- * Gets an array of harnesses for the checkboxes in the checkbox group.
324
+ * Gets a specific checkbox based on the filter criteria.
325
+ * @param filter The filter criteria.
325
326
  */
326
- getCheckboxes(): Promise<SkyCheckboxHarness[]>;
327
+ getCheckbox(filter: SkyCheckboxHarnessFilters): Promise<SkyCheckboxHarness>;
328
+ /**
329
+ * Gets an array of checkboxes based on the filter criteria.
330
+ * If no filter is provided, returns all checkboxes.
331
+ * @param filter The optional filter criteria.
332
+ */
333
+ getCheckboxes(filters?: SkyCheckboxHarnessFilters): Promise<SkyCheckboxHarness[]>;
327
334
  /**
328
335
  * Gets the help popover content.
329
336
  */
@@ -945,9 +952,16 @@ declare class SkyRadioGroupHarness extends SkyComponentHarness {
945
952
  */
946
953
  getHintText(): Promise<string>;
947
954
  /**
948
- * Gets an array of harnesses for the radio buttons in the radio group.
955
+ * Gets a specific radio button based on the filter criteria.
956
+ * @param filter The filter criteria.
957
+ */
958
+ getRadioButton(filter: SkyRadioHarnessFilters): Promise<SkyRadioHarness>;
959
+ /**
960
+ * Gets an array of radio buttons based on the filter criteria.
961
+ * If no filter is provided, returns all radio buttons.
962
+ * @param filters The optional filter criteria.
949
963
  */
950
- getRadioButtons(): Promise<SkyRadioHarness[]>;
964
+ getRadioButtons(filters?: SkyRadioHarnessFilters): Promise<SkyRadioHarness[]>;
951
965
  /**
952
966
  * Whether the radio group is required.
953
967
  */
@@ -1035,11 +1049,14 @@ declare class SkySelectionBoxGridHarness extends SkyComponentHarness {
1035
1049
  */
1036
1050
  static with(filters: SkySelectionBoxGridHarnessFilters): HarnessPredicate<SkySelectionBoxGridHarness>;
1037
1051
  /**
1038
- * Gets a harness for a specific selection box that meets certain criteria.
1052
+ * Gets a specific selection box based on the filter criteria.
1053
+ * @param filter The filter criteria.
1039
1054
  */
1040
1055
  getSelectionBox(filter: SkySelectionBoxHarnessFilters): Promise<SkySelectionBoxHarness>;
1041
1056
  /**
1042
- * Gets an array of selection boxes.
1057
+ * Gets an array of selection boxes based on the filter criteria.
1058
+ * If no filter is provided, returns all selection boxes.
1059
+ * @param filters The optional filter criteria.
1043
1060
  */
1044
1061
  getSelectionBoxes(filters?: SkySelectionBoxHarnessFilters): Promise<SkySelectionBoxHarness[]>;
1045
1062
  }