@skyux/forms 13.0.0-alpha.7 → 13.0.0-alpha.9
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.
|
|
3
|
+
"version": "13.0.0-alpha.9",
|
|
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.
|
|
25
|
-
"@skyux/core": "13.0.0-alpha.
|
|
26
|
-
"@skyux/help-inline": "13.0.0-alpha.
|
|
27
|
-
"@skyux/i18n": "13.0.0-alpha.
|
|
28
|
-
"@skyux/icon": "13.0.0-alpha.
|
|
29
|
-
"@skyux/indicators": "13.0.0-alpha.
|
|
30
|
-
"@skyux/popovers": "13.0.0-alpha.
|
|
31
|
-
"@skyux/theme": "13.0.0-alpha.
|
|
24
|
+
"@skyux-sdk/testing": "13.0.0-alpha.9",
|
|
25
|
+
"@skyux/core": "13.0.0-alpha.9",
|
|
26
|
+
"@skyux/help-inline": "13.0.0-alpha.9",
|
|
27
|
+
"@skyux/i18n": "13.0.0-alpha.9",
|
|
28
|
+
"@skyux/icon": "13.0.0-alpha.9",
|
|
29
|
+
"@skyux/indicators": "13.0.0-alpha.9",
|
|
30
|
+
"@skyux/popovers": "13.0.0-alpha.9",
|
|
31
|
+
"@skyux/theme": "13.0.0-alpha.9"
|
|
32
32
|
},
|
|
33
33
|
"peerDependenciesMeta": {
|
|
34
34
|
"@skyux-sdk/testing": {
|
package/testing/index.d.ts
CHANGED
|
@@ -321,9 +321,16 @@ declare class SkyCheckboxGroupHarness extends SkyComponentHarness {
|
|
|
321
321
|
*/
|
|
322
322
|
clickHelpInline(): Promise<void>;
|
|
323
323
|
/**
|
|
324
|
-
* Gets
|
|
324
|
+
* Gets a specific checkbox based on the filter criteria.
|
|
325
|
+
* @param filter The filter criteria.
|
|
325
326
|
*/
|
|
326
|
-
|
|
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
|
|
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
|
|
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
|
}
|