@ngstato/angular 0.1.3 → 0.1.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 +6 -0
- package/dist/README.md +6 -0
- package/dist/devtools.component.d.ts +0 -1
- package/dist/esm2022/devtools.component.mjs +248 -250
- package/dist/fesm2022/ngstato-angular.mjs +246 -247
- package/dist/fesm2022/ngstato-angular.mjs.map +1 -1
- package/ng-package.json +2 -1
- package/package.json +14 -1
package/README.md
CHANGED
|
@@ -338,6 +338,12 @@ computed: {
|
|
|
338
338
|
|
|
339
339
|
---
|
|
340
340
|
|
|
341
|
+
## Demo live
|
|
342
|
+
|
|
343
|
+
[](https://stackblitz.com/github/becher/ngstato/tree/main/apps/stackblitz-demo)
|
|
344
|
+
|
|
345
|
+
---
|
|
346
|
+
|
|
341
347
|
## Roadmap
|
|
342
348
|
|
|
343
349
|
### v0.1 ✅ TERMINÉ
|
package/dist/README.md
CHANGED
|
@@ -338,6 +338,12 @@ computed: {
|
|
|
338
338
|
|
|
339
339
|
---
|
|
340
340
|
|
|
341
|
+
## Demo live
|
|
342
|
+
|
|
343
|
+
[](https://stackblitz.com/github/becher/ngstato/tree/main/apps/stackblitz-demo)
|
|
344
|
+
|
|
345
|
+
---
|
|
346
|
+
|
|
341
347
|
## Roadmap
|
|
342
348
|
|
|
343
349
|
### v0.1 ✅ TERMINÉ
|
|
@@ -2,7 +2,6 @@ import { OnInit, OnDestroy } from '@angular/core';
|
|
|
2
2
|
import type { ActionLog } from '@ngstato/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class StatoDevToolsComponent implements OnInit, OnDestroy {
|
|
5
|
-
private config;
|
|
6
5
|
private unsub?;
|
|
7
6
|
isOpen: import("@angular/core").WritableSignal<boolean>;
|
|
8
7
|
isMinimized: import("@angular/core").WritableSignal<boolean>;
|