You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-5Lines changed: 17 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,11 @@ This module provides a set of bare bones HTML5 inputs with no Javascript or CSS.
4
4
5
5
You can use these fields in your projects as-is or extend them to provide additional features or shims.
6
6
7
-
The supported inputs are listed at https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input tagged 'HTML5'
7
+
The supported inputs are listed at https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input:
8
8
9
9
+ colour (color)
10
-
+ date, datetime, time
11
-
+ email (extends core EmailField)
10
+
+ date, datetime-local, time
11
+
+ email (extends core Silverstripe EmailField)
12
12
+ month, week
13
13
+ number
14
14
+ range
@@ -20,9 +20,22 @@ Browser support for these fields is varying although nearly all modern browsers
20
20
21
21
Date, datetime and time fields are particularly difficult to support, due to locale differences and even different user expectations within those locales.
22
22
23
+
## Traits
24
+
25
+
Various field types support certain traits that allow setting/getting of common attributes
0 commit comments