@skyux/forms 10.0.0-alpha.0 → 10.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.
|
@@ -94,6 +94,11 @@ export declare class SkyCheckboxComponent implements ControlValueAccessor, OnIni
|
|
|
94
94
|
*/
|
|
95
95
|
set required(value: boolean | undefined);
|
|
96
96
|
get required(): boolean;
|
|
97
|
+
/**
|
|
98
|
+
* The text to display as the checkbox's label. Use this instead of the `sky-checkbox-label` when the label is text-only.
|
|
99
|
+
* Specifying `labelText` also enables automatic error message handling for checkbox.
|
|
100
|
+
*/
|
|
101
|
+
labelText: string | undefined;
|
|
97
102
|
/**
|
|
98
103
|
* Fires when users select or deselect the checkbox.
|
|
99
104
|
*/
|
|
@@ -137,5 +142,5 @@ export declare class SkyCheckboxComponent implements ControlValueAccessor, OnIni
|
|
|
137
142
|
/** Called when the checkbox is blurred. Needed to properly implement ControlValueAccessor. */
|
|
138
143
|
onTouched: () => any;
|
|
139
144
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkyCheckboxComponent, never>;
|
|
140
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkyCheckboxComponent, "sky-checkbox", never, { "label": { "alias": "label"; "required": false; }; "labelledBy": { "alias": "labelledBy"; "required": false; }; "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "name": { "alias": "name"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "checkboxType": { "alias": "checkboxType"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "change": "change"; "checkedChange": "checkedChange"; "disabledChange": "disabledChange"; "indeterminateChange": "indeterminateChange"; }, never, ["sky-checkbox-label"], false, never>;
|
|
145
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyCheckboxComponent, "sky-checkbox", never, { "label": { "alias": "label"; "required": false; }; "labelledBy": { "alias": "labelledBy"; "required": false; }; "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "name": { "alias": "name"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "checkboxType": { "alias": "checkboxType"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "required": { "alias": "required"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; }, { "change": "change"; "checkedChange": "checkedChange"; "disabledChange": "disabledChange"; "indeterminateChange": "indeterminateChange"; }, never, ["sky-checkbox-label"], false, never>;
|
|
141
146
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/forms",
|
|
3
|
-
"version": "10.0.0-alpha.
|
|
3
|
+
"version": "10.0.0-alpha.1",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
"@angular/core": "^17.1.0",
|
|
42
42
|
"@angular/forms": "^17.1.0",
|
|
43
43
|
"@angular/platform-browser": "^17.1.0",
|
|
44
|
-
"@skyux-sdk/testing": "10.0.0-alpha.
|
|
45
|
-
"@skyux/core": "10.0.0-alpha.
|
|
46
|
-
"@skyux/i18n": "10.0.0-alpha.
|
|
47
|
-
"@skyux/indicators": "10.0.0-alpha.
|
|
48
|
-
"@skyux/popovers": "10.0.0-alpha.
|
|
49
|
-
"@skyux/theme": "10.0.0-alpha.
|
|
44
|
+
"@skyux-sdk/testing": "10.0.0-alpha.1",
|
|
45
|
+
"@skyux/core": "10.0.0-alpha.1",
|
|
46
|
+
"@skyux/i18n": "10.0.0-alpha.1",
|
|
47
|
+
"@skyux/indicators": "10.0.0-alpha.1",
|
|
48
|
+
"@skyux/popovers": "10.0.0-alpha.1",
|
|
49
|
+
"@skyux/theme": "10.0.0-alpha.1"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"tslib": "^2.6.2"
|