@dragonworks/ngx-dashboard 20.0.3 → 20.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 +7 -13
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -21,29 +21,23 @@ npm install @dragonworks/ngx-dashboard
21
21
  ## Usage
22
22
 
23
23
  ```typescript
24
- import { DashboardComponent, createEmptyDashboard } from '@dragonworks/ngx-dashboard';
25
- import { provideNgxDashboard } from '@dragonworks/ngx-dashboard';
24
+ import { DashboardComponent, createEmptyDashboard } from "@dragonworks/ngx-dashboard";
25
+ import { provideNgxDashboard } from "@dragonworks/ngx-dashboard";
26
26
 
27
27
  @Component({
28
- template: `
29
- <ngx-dashboard
30
- [dashboardData]="dashboard"
31
- [editMode]="true"
32
- (dashboardChange)="onDashboardChange($event)">
33
- </ngx-dashboard>
34
- `,
28
+ template: ` <ngx-dashboard [dashboardData]="dashboard" [editMode]="true" (dashboardChange)="onDashboardChange($event)"> </ngx-dashboard> `,
35
29
  imports: [DashboardComponent],
36
- providers: [provideNgxDashboard()]
30
+ providers: [provideNgxDashboard()],
37
31
  })
38
32
  export class MyComponent {
39
- dashboard = createEmptyDashboard('my-dashboard', 12, 8);
33
+ dashboard = createEmptyDashboard("my-dashboard", 12, 8);
40
34
  }
41
35
  ```
42
36
 
43
37
  ## Documentation
44
38
 
45
- See the [main repository](https://github.com/dragonworks/ngx-dashboard) for full documentation and examples.
39
+ See the [main repository](https://github.com/TobyBackstrom/ngx-dashboard) for full documentation and examples.
46
40
 
47
41
  ## License
48
42
 
49
- MIT
43
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dragonworks/ngx-dashboard",
3
- "version": "20.0.3",
3
+ "version": "20.0.4",
4
4
  "description": "Angular library for building drag-and-drop grid dashboards with resizable cells and customizable widgets",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.0.0",