@ng-modular-forms/core 0.7.9 → 0.8.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/README.md +2 -1
- package/fesm2022/ng-modular-forms-core.mjs +650 -103
- package/fesm2022/ng-modular-forms-core.mjs.map +1 -1
- package/lib/base/form-control-base.d.ts +28 -11
- package/lib/behavior/lookup/lookup.behavior.d.ts +22 -0
- package/lib/{input/input-currency.component.d.ts → controls/currency/currency.component.d.ts} +2 -2
- package/lib/{input/input-datepicker.component.d.ts → controls/datepicker/datepicker.component.d.ts} +1 -1
- package/lib/{input → controls/form-field}/form-field.component.d.ts +3 -1
- package/lib/controls/lookup/lookup.component.d.ts +43 -0
- package/lib/controls/lookup/lookup.types.d.ts +17 -0
- package/lib/{input/input-number.component.d.ts → controls/number/number.component.d.ts} +3 -3
- package/lib/{input/input-select.component.d.ts → controls/select/select.component.d.ts} +5 -4
- package/lib/{input/input-text.component.d.ts → controls/text/text.component.d.ts} +3 -2
- package/lib/{input/input-textarea.component.d.ts → controls/textarea/textarea.component.d.ts} +2 -1
- package/lib/{input/input-timepicker.component.d.ts → controls/timepicker/timepicker.component.d.ts} +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +12 -9
- /package/lib/behavior/{currency.behavior.d.ts → currency/currency.behavior.d.ts} +0 -0
- /package/lib/behavior/{text.behavior.d.ts → text/text.behavior.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -369,12 +369,13 @@ All components share a consistent API and are interchangeable between Native and
|
|
|
369
369
|
| Input Type | Native Selector | Material Selector |
|
|
370
370
|
|-----------------|----------------------|-----------------------|
|
|
371
371
|
| Text / Password | `nmf-text` | `nmf-mat-text` |
|
|
372
|
+
| Lookup | `nmf-lookup` | `nmf-mat-lookup` |
|
|
372
373
|
| Number | `nmf-number` | `nmf-mat-number` |
|
|
373
374
|
| Currency | `nmf-currency` | `nmf-mat-currency` |
|
|
374
375
|
| Date | `nmf-datepicker` | `nmf-mat-datepicker` |
|
|
375
|
-
| Time | `nmf-timepicker` | `nmf-mat-timepicker` |
|
|
376
376
|
| Select | `nmf-select` | `nmf-mat-select` |
|
|
377
377
|
| Textarea | `nmf-textarea` | `nmf-mat-textarea` |
|
|
378
|
+
| Time | `nmf-timepicker` | `nmf-mat-timepicker` |
|
|
378
379
|
|
|
379
380
|
### Shared Features
|
|
380
381
|
|