@skyux/forms 11.0.0-alpha.0 → 11.0.0-alpha.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/documentation.json +2663 -2685
- package/esm2022/lib/modules/checkbox/checkbox-group.component.mjs +14 -11
- package/esm2022/lib/modules/checkbox/checkbox.component.mjs +1 -1
- package/esm2022/lib/modules/field-group/field-group.component.mjs +7 -4
- package/esm2022/lib/modules/file-attachment/file-attachment.component.mjs +4 -3
- package/esm2022/lib/modules/file-attachment/file-drop.component.mjs +4 -3
- package/esm2022/lib/modules/file-attachment/file-item.component.mjs +1 -1
- package/esm2022/lib/modules/file-attachment/file-size.pipe.mjs +4 -1
- package/esm2022/lib/modules/radio/radio-group.component.mjs +14 -11
- package/esm2022/lib/modules/radio/radio.component.mjs +1 -1
- package/esm2022/lib/modules/shared/sky-forms-resources.module.mjs +5 -5
- package/fesm2022/skyux-forms.mjs +101 -89
- package/fesm2022/skyux-forms.mjs.map +1 -1
- package/lib/modules/checkbox/checkbox-group.component.d.ts +2 -2
- package/lib/modules/file-attachment/file-size.pipe.d.ts +1 -1
- package/lib/modules/radio/radio-group.component.d.ts +2 -2
- package/package.json +9 -9
|
@@ -36,7 +36,7 @@ export declare class SkyCheckboxGroupComponent implements Validator {
|
|
|
36
36
|
* The heading [font style](https://developer.blackbaud.com/skyux/design/styles/typography#headings).
|
|
37
37
|
* @default 4
|
|
38
38
|
*/
|
|
39
|
-
headingStyle: SkyCheckboxGroupHeadingStyle;
|
|
39
|
+
set headingStyle(value: SkyCheckboxGroupHeadingStyle);
|
|
40
40
|
/**
|
|
41
41
|
* [Persistent inline help text](https://developer.blackbaud.com/skyux/design/guidelines/user-assistance#inline-help) that provides
|
|
42
42
|
* additional context to the user.
|
|
@@ -60,8 +60,8 @@ export declare class SkyCheckboxGroupComponent implements Validator {
|
|
|
60
60
|
helpKey: string | undefined;
|
|
61
61
|
stackedLg: boolean;
|
|
62
62
|
stackedXL: boolean;
|
|
63
|
-
get headingClass(): string;
|
|
64
63
|
protected errorId: string;
|
|
64
|
+
protected headingClass: string;
|
|
65
65
|
protected formErrorsDataId: string;
|
|
66
66
|
protected formGroup: FormGroup | null | undefined;
|
|
67
67
|
validate(formGroup: FormGroup): ValidationErrors | null;
|
|
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
export declare class SkyFileSizePipe implements PipeTransform {
|
|
9
9
|
#private;
|
|
10
10
|
constructor(decimalPipe: DecimalPipe, resourcesService: SkyLibResourcesService);
|
|
11
|
-
transform(input?: number | null): string;
|
|
11
|
+
transform(input?: number | string | null): string;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyFileSizePipe, never>;
|
|
13
13
|
static ɵpipe: i0.ɵɵPipeDeclaration<SkyFileSizePipe, "skyFileSize", false>;
|
|
14
14
|
}
|
|
@@ -49,7 +49,7 @@ export declare class SkyRadioGroupComponent implements AfterContentInit, AfterVi
|
|
|
49
49
|
* The heading [font style](https://developer.blackbaud.com/skyux/design/styles/typography#headings).
|
|
50
50
|
* @default 4
|
|
51
51
|
*/
|
|
52
|
-
headingStyle: SkyRadioGroupHeadingStyle;
|
|
52
|
+
set headingStyle(value: SkyRadioGroupHeadingStyle);
|
|
53
53
|
/**
|
|
54
54
|
* The name for the collection of radio buttons that the component groups together.
|
|
55
55
|
* This property overwrites the deprecated `name` property on individual `sky-radio` elements,
|
|
@@ -118,7 +118,6 @@ export declare class SkyRadioGroupComponent implements AfterContentInit, AfterVi
|
|
|
118
118
|
* as configured by the application.
|
|
119
119
|
*/
|
|
120
120
|
helpKey: string | undefined;
|
|
121
|
-
get headingClass(): string;
|
|
122
121
|
/**
|
|
123
122
|
* Our radio components are usually implemented using an unordered list. This is an
|
|
124
123
|
* accessibility violation because the unordered list has an implicit role which
|
|
@@ -131,6 +130,7 @@ export declare class SkyRadioGroupComponent implements AfterContentInit, AfterVi
|
|
|
131
130
|
display: string | undefined;
|
|
132
131
|
stackedLg: boolean;
|
|
133
132
|
stackedXL: boolean;
|
|
133
|
+
protected headingClass: string;
|
|
134
134
|
protected errorId: string;
|
|
135
135
|
protected ngControl: NgControl | undefined;
|
|
136
136
|
constructor(changeDetector: ChangeDetectorRef, radioGroupIdSvc: SkyRadioGroupIdService, ngControl: NgControl);
|
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.1",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -41,16 +41,16 @@
|
|
|
41
41
|
"@angular/core": "^18.0.5",
|
|
42
42
|
"@angular/forms": "^18.0.5",
|
|
43
43
|
"@angular/platform-browser": "^18.0.5",
|
|
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/indicators": "11.0.0-alpha.
|
|
49
|
-
"@skyux/popovers": "11.0.0-alpha.
|
|
50
|
-
"@skyux/theme": "11.0.0-alpha.
|
|
44
|
+
"@skyux-sdk/testing": "11.0.0-alpha.1",
|
|
45
|
+
"@skyux/core": "11.0.0-alpha.1",
|
|
46
|
+
"@skyux/help-inline": "11.0.0-alpha.1",
|
|
47
|
+
"@skyux/i18n": "11.0.0-alpha.1",
|
|
48
|
+
"@skyux/indicators": "11.0.0-alpha.1",
|
|
49
|
+
"@skyux/popovers": "11.0.0-alpha.1",
|
|
50
|
+
"@skyux/theme": "11.0.0-alpha.1"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@skyux/icon": "11.0.0-alpha.
|
|
53
|
+
"@skyux/icon": "11.0.0-alpha.1",
|
|
54
54
|
"tslib": "^2.6.3"
|
|
55
55
|
},
|
|
56
56
|
"module": "fesm2022/skyux-forms.mjs",
|