@skyux/forms 14.0.0-beta.2 → 14.0.1
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": "14.0.
|
|
3
|
+
"version": "14.0.1",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"@angular/core": "^21.2.0",
|
|
22
22
|
"@angular/forms": "^21.2.0",
|
|
23
23
|
"@angular/platform-browser": "^21.2.0",
|
|
24
|
-
"@skyux-sdk/testing": "14.0.
|
|
25
|
-
"@skyux/core": "14.0.
|
|
26
|
-
"@skyux/help-inline": "14.0.
|
|
27
|
-
"@skyux/i18n": "14.0.
|
|
28
|
-
"@skyux/icon": "14.0.
|
|
29
|
-
"@skyux/indicators": "14.0.
|
|
30
|
-
"@skyux/popovers": "14.0.
|
|
31
|
-
"@skyux/theme": "14.0.
|
|
24
|
+
"@skyux-sdk/testing": "14.0.1",
|
|
25
|
+
"@skyux/core": "14.0.1",
|
|
26
|
+
"@skyux/help-inline": "14.0.1",
|
|
27
|
+
"@skyux/i18n": "14.0.1",
|
|
28
|
+
"@skyux/icon": "14.0.1",
|
|
29
|
+
"@skyux/indicators": "14.0.1",
|
|
30
|
+
"@skyux/popovers": "14.0.1",
|
|
31
|
+
"@skyux/theme": "14.0.1"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"tslib": "^2.8.1"
|
|
@@ -53,5 +53,6 @@
|
|
|
53
53
|
"types": "./types/skyux-forms-testing.d.ts",
|
|
54
54
|
"default": "./fesm2022/skyux-forms-testing.mjs"
|
|
55
55
|
}
|
|
56
|
-
}
|
|
56
|
+
},
|
|
57
|
+
"type": "module"
|
|
57
58
|
}
|
|
@@ -670,17 +670,6 @@ declare class SkyFileDropHarness extends SkyComponentHarness {
|
|
|
670
670
|
loadFiles(files: File[] | null): Promise<void>;
|
|
671
671
|
}
|
|
672
672
|
|
|
673
|
-
/**
|
|
674
|
-
* Provides mocks for file attachment testing.
|
|
675
|
-
* @example
|
|
676
|
-
* ```typescript
|
|
677
|
-
* TestBed.configureTestingModule({
|
|
678
|
-
* providers: [provideSkyFileAttachmentTesting()]
|
|
679
|
-
* });
|
|
680
|
-
* ```
|
|
681
|
-
*/
|
|
682
|
-
declare function provideSkyFileAttachmentTesting(): Provider[];
|
|
683
|
-
|
|
684
673
|
/**
|
|
685
674
|
* A set of criteria that can be used to filter a list of `SkyFileItemHarness` instances.
|
|
686
675
|
*/
|
|
@@ -718,6 +707,17 @@ declare class SkyFileItemHarness extends ComponentHarness {
|
|
|
718
707
|
getFileSize(): Promise<string>;
|
|
719
708
|
}
|
|
720
709
|
|
|
710
|
+
/**
|
|
711
|
+
* Provides mocks for file attachment testing.
|
|
712
|
+
* @example
|
|
713
|
+
* ```typescript
|
|
714
|
+
* TestBed.configureTestingModule({
|
|
715
|
+
* providers: [provideSkyFileAttachmentTesting()]
|
|
716
|
+
* });
|
|
717
|
+
* ```
|
|
718
|
+
*/
|
|
719
|
+
declare function provideSkyFileAttachmentTesting(): Provider[];
|
|
720
|
+
|
|
721
721
|
/**
|
|
722
722
|
* A set of criteria that can be used to filter a list of `SkyFormErrorHarness` instances.
|
|
723
723
|
*/
|