@ng-modular-forms/material 0.7.2 → 0.7.3
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 +22 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,32 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/ronbodnar/ng-modular-forms/main/projects/examples/public/icons/apple-touch-icon.png" height="120" alt="ng-modular-forms logo" />
|
|
3
|
+
</p>
|
|
2
4
|
|
|
3
|
-
|
|
5
|
+
<h1 align="center">@ng-modular-forms/material</h1>
|
|
6
|
+
|
|
7
|
+
<p align="center">
|
|
8
|
+
<strong>Angular Material implementation of ng-modular-forms inputs.</strong>
|
|
9
|
+
</p>
|
|
10
|
+
|
|
11
|
+
<p align="center">
|
|
12
|
+
<a href="https://github.com/ronbodnar/ng-modular-forms/actions/workflows/ci-cd.yml"><img src="https://github.com/ronbodnar/ng-modular-forms/actions/workflows/ci-cd.yml/badge.svg" alt="CI/CD" /></a>
|
|
13
|
+
<a href="https://angular.dev"><img src="https://img.shields.io/badge/Angular-19--21-DD0031?logo=angular" alt="Angular Version" /></a>
|
|
14
|
+
<a href="https://www.npmjs.com/package/@ng-modular-forms/material"><img src="https://badge.fury.io/js/%40ng-modular-forms%2Fmaterial.svg" alt="npm version" /></a>
|
|
15
|
+
<a href="https://github.com/ronbodnar/ng-modular-forms/blob/main/projects/material/LICENSE"><img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License: MIT" /></a>
|
|
16
|
+
</p>
|
|
17
|
+
|
|
18
|
+
<p align="center">
|
|
19
|
+
<a href="https://ngmf.ronbodnar.com/docs/examples">
|
|
20
|
+
<strong>Live Examples & Interactive Demo</strong>
|
|
21
|
+
</a>
|
|
22
|
+
</p>
|
|
4
23
|
|
|
5
24
|
## Installation
|
|
6
25
|
|
|
7
26
|
```bash
|
|
8
27
|
npm install @ng-modular-forms/material
|
|
9
28
|
```
|
|
29
|
+
Note: This will also install <a href="https://www.npmjs.com/package/@ng-modular-forms/core">@ng-modular-forms/core</a>.
|
|
10
30
|
|
|
11
31
|
## Example
|
|
12
32
|
|
|
@@ -46,7 +66,6 @@ export class ExampleComponent {
|
|
|
46
66
|
### Requires
|
|
47
67
|
|
|
48
68
|
- @ng-modular-forms/core
|
|
49
|
-
- @ng-modular-forms/behavior
|
|
50
69
|
- @angular/material
|
|
51
70
|
- @angular/cdk
|
|
52
71
|
|
package/package.json
CHANGED