@skyux/forms 13.11.5 → 14.0.0-alpha.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/forms",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.0.0-alpha.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -16,19 +16,19 @@
|
|
|
16
16
|
},
|
|
17
17
|
"homepage": "https://github.com/blackbaud/skyux#readme",
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"@angular/cdk": "^
|
|
20
|
-
"@angular/common": "^
|
|
21
|
-
"@angular/core": "^
|
|
22
|
-
"@angular/forms": "^
|
|
23
|
-
"@angular/platform-browser": "^
|
|
24
|
-
"@skyux-sdk/testing": "
|
|
25
|
-
"@skyux/core": "
|
|
26
|
-
"@skyux/help-inline": "
|
|
27
|
-
"@skyux/i18n": "
|
|
28
|
-
"@skyux/icon": "
|
|
29
|
-
"@skyux/indicators": "
|
|
30
|
-
"@skyux/popovers": "
|
|
31
|
-
"@skyux/theme": "
|
|
19
|
+
"@angular/cdk": "^21.0.6",
|
|
20
|
+
"@angular/common": "^21.0.8",
|
|
21
|
+
"@angular/core": "^21.0.8",
|
|
22
|
+
"@angular/forms": "^21.0.8",
|
|
23
|
+
"@angular/platform-browser": "^21.0.8",
|
|
24
|
+
"@skyux-sdk/testing": "14.0.0-alpha.0",
|
|
25
|
+
"@skyux/core": "14.0.0-alpha.0",
|
|
26
|
+
"@skyux/help-inline": "14.0.0-alpha.0",
|
|
27
|
+
"@skyux/i18n": "14.0.0-alpha.0",
|
|
28
|
+
"@skyux/icon": "14.0.0-alpha.0",
|
|
29
|
+
"@skyux/indicators": "14.0.0-alpha.0",
|
|
30
|
+
"@skyux/popovers": "14.0.0-alpha.0",
|
|
31
|
+
"@skyux/theme": "14.0.0-alpha.0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"tslib": "^2.8.1"
|
|
@@ -40,17 +40,17 @@
|
|
|
40
40
|
},
|
|
41
41
|
"sideEffects": false,
|
|
42
42
|
"module": "fesm2022/skyux-forms.mjs",
|
|
43
|
-
"typings": "
|
|
43
|
+
"typings": "types/skyux-forms.d.ts",
|
|
44
44
|
"exports": {
|
|
45
45
|
"./package.json": {
|
|
46
46
|
"default": "./package.json"
|
|
47
47
|
},
|
|
48
48
|
".": {
|
|
49
|
-
"types": "./
|
|
49
|
+
"types": "./types/skyux-forms.d.ts",
|
|
50
50
|
"default": "./fesm2022/skyux-forms.mjs"
|
|
51
51
|
},
|
|
52
52
|
"./testing": {
|
|
53
|
-
"types": "./testing
|
|
53
|
+
"types": "./types/skyux-forms-testing.d.ts",
|
|
54
54
|
"default": "./fesm2022/skyux-forms-testing.mjs"
|
|
55
55
|
}
|
|
56
56
|
}
|
|
@@ -1014,8 +1014,13 @@ declare class SkyInputBoxComponent implements OnInit, AfterContentChecked, OnDes
|
|
|
1014
1014
|
*/
|
|
1015
1015
|
labelText: string | undefined;
|
|
1016
1016
|
/**
|
|
1017
|
-
* The maximum number of characters
|
|
1018
|
-
*
|
|
1017
|
+
* The maximum number of characters to allow in the input box. This property places a
|
|
1018
|
+
* [SKY UX character count](https://developer.blackbaud.com/skyux/components/character-count)
|
|
1019
|
+
* on the input element with the appropriate validator, so don't use it with inputs where
|
|
1020
|
+
* users are unlikely to exceed character limits. Instead, use
|
|
1021
|
+
* [Angular's max length validator](https://angular.io/api/forms/MaxLengthValidator) and a
|
|
1022
|
+
* `maxLength` attribute on the input element to handle maximum length validation.
|
|
1023
|
+
*
|
|
1019
1024
|
*/
|
|
1020
1025
|
set characterLimit(value: NumberInput);
|
|
1021
1026
|
get characterLimit(): number | undefined;
|
|
File without changes
|