@skyux/forms 10.5.0 → 10.6.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/documentation.json +2140 -2091
- package/esm2022/lib/modules/checkbox/checkbox-group.component.mjs +13 -3
- package/esm2022/lib/modules/file-attachment/file-attachment.component.mjs +3 -3
- package/esm2022/lib/modules/shared/sky-forms-resources.module.mjs +3 -1
- package/fesm2022/skyux-forms.mjs +14 -4
- package/fesm2022/skyux-forms.mjs.map +1 -1
- package/lib/modules/checkbox/checkbox-group.component.d.ts +7 -1
- package/package.json +7 -7
|
@@ -15,6 +15,11 @@ export declare class SkyCheckboxGroupComponent {
|
|
|
15
15
|
* @preview
|
|
16
16
|
*/
|
|
17
17
|
labelHidden: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Whether the checkbox group is required.
|
|
20
|
+
* @preview
|
|
21
|
+
*/
|
|
22
|
+
required: boolean;
|
|
18
23
|
/**
|
|
19
24
|
* Whether the checkbox group is stacked on another form component. When specified, the appropriate
|
|
20
25
|
* vertical spacing is automatically added to the checkbox group.
|
|
@@ -30,7 +35,8 @@ export declare class SkyCheckboxGroupComponent {
|
|
|
30
35
|
protected errorId: string;
|
|
31
36
|
protected formErrorsDataId: string;
|
|
32
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyCheckboxGroupComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyCheckboxGroupComponent, "sky-checkbox-group", never, { "labelText": { "alias": "labelText"; "required": true; }; "labelHidden": { "alias": "labelHidden"; "required": false; }; "stacked": { "alias": "stacked"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": true; }; }, {}, never, ["sky-checkbox[icon]", "sky-checkbox", "sky-form-error"], true, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyCheckboxGroupComponent, "sky-checkbox-group", never, { "labelText": { "alias": "labelText"; "required": true; }; "labelHidden": { "alias": "labelHidden"; "required": false; }; "required": { "alias": "required"; "required": false; }; "stacked": { "alias": "stacked"; "required": false; }; "formGroup": { "alias": "formGroup"; "required": true; }; }, {}, never, ["sky-checkbox[icon]", "sky-checkbox", "sky-form-error"], true, never>;
|
|
34
39
|
static ngAcceptInputType_labelHidden: unknown;
|
|
40
|
+
static ngAcceptInputType_required: unknown;
|
|
35
41
|
static ngAcceptInputType_stacked: unknown;
|
|
36
42
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/forms",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.6.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
"@angular/core": "^17.3.1",
|
|
42
42
|
"@angular/forms": "^17.3.1",
|
|
43
43
|
"@angular/platform-browser": "^17.3.1",
|
|
44
|
-
"@skyux-sdk/testing": "10.
|
|
45
|
-
"@skyux/core": "10.
|
|
46
|
-
"@skyux/i18n": "10.
|
|
47
|
-
"@skyux/indicators": "10.
|
|
48
|
-
"@skyux/popovers": "10.
|
|
49
|
-
"@skyux/theme": "10.
|
|
44
|
+
"@skyux-sdk/testing": "10.6.0",
|
|
45
|
+
"@skyux/core": "10.6.0",
|
|
46
|
+
"@skyux/i18n": "10.6.0",
|
|
47
|
+
"@skyux/indicators": "10.6.0",
|
|
48
|
+
"@skyux/popovers": "10.6.0",
|
|
49
|
+
"@skyux/theme": "10.6.0"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"tslib": "^2.6.2"
|