@ng-modular-forms/material 0.11.2 → 0.12.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/README.md +11 -9
- package/fesm2022/ng-modular-forms-material.mjs +530 -113
- package/fesm2022/ng-modular-forms-material.mjs.map +1 -1
- package/lib/controls/file-selector/file-selector.component.d.ts +12 -0
- package/lib/controls/lookup/lookup.component.d.ts +2 -2
- package/lib/controls/number/number.component.d.ts +4 -1
- package/lib/controls/range/range.component.d.ts +21 -0
- package/lib/controls/text/text.component.d.ts +7 -5
- package/package.json +2 -2
- package/public-api.d.ts +3 -1
- package/styles/form-controls.css +16 -15
package/README.md
CHANGED
|
@@ -104,15 +104,17 @@ All components share a consistent API and are interchangeable between Native and
|
|
|
104
104
|
|
|
105
105
|
Prefixes / Suffixes are enabled for text and number fields, allowing number to double as a currency field.
|
|
106
106
|
|
|
107
|
-
| Input Type | Selector
|
|
108
|
-
|
|
109
|
-
|
|
|
110
|
-
|
|
|
111
|
-
|
|
|
112
|
-
|
|
|
113
|
-
|
|
|
114
|
-
|
|
|
115
|
-
|
|
|
107
|
+
| Input Type | Selector |
|
|
108
|
+
|-----------------|-------------------------|
|
|
109
|
+
| Date | `nmf-mat-datepicker` |
|
|
110
|
+
| File Selector | `nmf-mat-file-selector` |
|
|
111
|
+
| Lookup | `nmf-mat-lookup` |
|
|
112
|
+
| Number | `nmf-mat-number` |
|
|
113
|
+
| Range / Slider | `nmf-mat-range` |
|
|
114
|
+
| Select | `nmf-mat-select` |
|
|
115
|
+
| Text / Password | `nmf-mat-text` |
|
|
116
|
+
| Textarea | `nmf-mat-textarea` |
|
|
117
|
+
| Time | `nmf-mat-timepicker` |
|
|
116
118
|
|
|
117
119
|
## Built On
|
|
118
120
|
|