ng-magary 0.0.3 → 0.0.4
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 +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -77,11 +77,11 @@ import { ButtonComponent, InputComponent, CardComponent } from 'ng-magary';
|
|
|
77
77
|
standalone: true,
|
|
78
78
|
imports: [ButtonComponent, InputComponent, CardComponent],
|
|
79
79
|
template: `
|
|
80
|
-
<
|
|
81
|
-
<
|
|
82
|
-
<
|
|
80
|
+
<magary-button label="Click me!" severity="primary"></magary-button>
|
|
81
|
+
<magary-input placeholder="Type something..."></magary-input>
|
|
82
|
+
<magary-card header="My Card">
|
|
83
83
|
<p>Card content</p>
|
|
84
|
-
</
|
|
84
|
+
</magary-card>
|
|
85
85
|
`
|
|
86
86
|
})
|
|
87
87
|
export class ExampleComponent { }
|
|
@@ -117,15 +117,15 @@ export class AppModule { }
|
|
|
117
117
|
|
|
118
118
|
```html
|
|
119
119
|
<!-- Button -->
|
|
120
|
-
<
|
|
120
|
+
<magary-button label="Click me!" severity="primary"></magary-button>
|
|
121
121
|
|
|
122
122
|
<!-- Input -->
|
|
123
|
-
<
|
|
123
|
+
<magary-input placeholder="Type something..."></magary-input>
|
|
124
124
|
|
|
125
125
|
<!-- Card -->
|
|
126
|
-
<
|
|
126
|
+
<magary-card header="My Card">
|
|
127
127
|
<p>Card content</p>
|
|
128
|
-
</
|
|
128
|
+
</magary-card>
|
|
129
129
|
```
|
|
130
130
|
|
|
131
131
|
## 📚 Documentation
|