@skyux/forms 11.0.0-alpha.11 → 11.0.0-alpha.13
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/documentation.json +1808 -1808
- package/esm2022/lib/modules/checkbox/checkbox-group.component.mjs +3 -3
- package/esm2022/lib/modules/checkbox/checkbox.component.mjs +3 -3
- package/esm2022/lib/modules/file-attachment/file-attachment/file-attachment.component.mjs +4 -4
- package/esm2022/lib/modules/file-attachment/file-drop/file-drop.component.mjs +3 -3
- package/esm2022/lib/modules/form-error/form-errors.component.mjs +16 -12
- package/esm2022/lib/modules/input-box/input-box.component.mjs +3 -3
- package/esm2022/lib/modules/radio/radio-group.component.mjs +3 -3
- package/esm2022/lib/modules/radio/radio.component.mjs +2 -2
- package/fesm2022/skyux-forms.mjs +55 -49
- package/fesm2022/skyux-forms.mjs.map +1 -1
- package/lib/modules/form-error/form-errors.component.d.ts +9 -5
- package/package.json +9 -9
|
@@ -13,14 +13,18 @@ export declare class SkyFormErrorsComponent {
|
|
|
13
13
|
*/
|
|
14
14
|
labelText: string | undefined;
|
|
15
15
|
/**
|
|
16
|
-
* Indicates whether
|
|
17
|
-
* form control is touched or dirty.
|
|
16
|
+
* Indicates whether the parent component's control is touched
|
|
18
17
|
*/
|
|
19
|
-
|
|
18
|
+
touched: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Indicates whether the parent component's control is dirty
|
|
21
|
+
*/
|
|
22
|
+
dirty: boolean;
|
|
20
23
|
protected readonly ariaAtomic = "true";
|
|
21
24
|
protected readonly ariaLive = "assertive";
|
|
22
25
|
protected readonly ariaRelevant = "all";
|
|
23
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyFormErrorsComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyFormErrorsComponent, "sky-form-errors", never, { "errors": { "alias": "errors"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "
|
|
25
|
-
static
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyFormErrorsComponent, "sky-form-errors", never, { "errors": { "alias": "errors"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; "touched": { "alias": "touched"; "required": false; }; "dirty": { "alias": "dirty"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
28
|
+
static ngAcceptInputType_touched: unknown;
|
|
29
|
+
static ngAcceptInputType_dirty: unknown;
|
|
26
30
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/forms",
|
|
3
|
-
"version": "11.0.0-alpha.
|
|
3
|
+
"version": "11.0.0-alpha.13",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -41,14 +41,14 @@
|
|
|
41
41
|
"@angular/core": "^18.1.2",
|
|
42
42
|
"@angular/forms": "^18.1.2",
|
|
43
43
|
"@angular/platform-browser": "^18.1.2",
|
|
44
|
-
"@skyux-sdk/testing": "11.0.0-alpha.
|
|
45
|
-
"@skyux/core": "11.0.0-alpha.
|
|
46
|
-
"@skyux/help-inline": "11.0.0-alpha.
|
|
47
|
-
"@skyux/i18n": "11.0.0-alpha.
|
|
48
|
-
"@skyux/icon": "11.0.0-alpha.
|
|
49
|
-
"@skyux/indicators": "11.0.0-alpha.
|
|
50
|
-
"@skyux/popovers": "11.0.0-alpha.
|
|
51
|
-
"@skyux/theme": "11.0.0-alpha.
|
|
44
|
+
"@skyux-sdk/testing": "11.0.0-alpha.13",
|
|
45
|
+
"@skyux/core": "11.0.0-alpha.13",
|
|
46
|
+
"@skyux/help-inline": "11.0.0-alpha.13",
|
|
47
|
+
"@skyux/i18n": "11.0.0-alpha.13",
|
|
48
|
+
"@skyux/icon": "11.0.0-alpha.13",
|
|
49
|
+
"@skyux/indicators": "11.0.0-alpha.13",
|
|
50
|
+
"@skyux/popovers": "11.0.0-alpha.13",
|
|
51
|
+
"@skyux/theme": "11.0.0-alpha.13"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"tslib": "^2.6.3"
|