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.
Files changed (2) hide show
  1. package/README.md +8 -8
  2. 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
- <mg-button label="Click me!" severity="primary"></mg-button>
81
- <mg-input placeholder="Type something..."></mg-input>
82
- <mg-card header="My Card">
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
- </mg-card>
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
- <mg-button label="Click me!" severity="primary"></mg-button>
120
+ <magary-button label="Click me!" severity="primary"></magary-button>
121
121
 
122
122
  <!-- Input -->
123
- <mg-input placeholder="Type something..."></mg-input>
123
+ <magary-input placeholder="Type something..."></magary-input>
124
124
 
125
125
  <!-- Card -->
126
- <mg-card header="My Card">
126
+ <magary-card header="My Card">
127
127
  <p>Card content</p>
128
- </mg-card>
128
+ </magary-card>
129
129
  ```
130
130
 
131
131
  ## 📚 Documentation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ng-magary",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "license": "MIT",
5
5
  "peerDependencies": {
6
6
  "@fortawesome/fontawesome-free": "^7.0.0",