ngx-dev-toolbar 1.0.0-beta.1 → 1.0.0-beta.2

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.
@@ -7,7 +7,7 @@ export declare class DevToolbarWindowComponent {
7
7
  readonly close: import("@angular/core").OutputEmitterRef<void>;
8
8
  readonly maximize: import("@angular/core").OutputEmitterRef<void>;
9
9
  readonly minimize: import("@angular/core").OutputEmitterRef<void>;
10
- readonly theme: import("@angular/core").Signal<"dark" | "light">;
10
+ readonly theme: import("@angular/core").Signal<"light" | "dark">;
11
11
  protected onClose(): void;
12
12
  protected onMaximize(): void;
13
13
  protected onMinimize(): void;
@@ -6,7 +6,7 @@ export declare class DevToolbarStateService {
6
6
  readonly activeToolId: import("@angular/core").Signal<string | null>;
7
7
  readonly hasActiveTool: import("@angular/core").Signal<boolean>;
8
8
  readonly error: import("@angular/core").Signal<string | null>;
9
- readonly theme: import("@angular/core").Signal<"dark" | "light">;
9
+ readonly theme: import("@angular/core").Signal<"light" | "dark">;
10
10
  readonly delay: import("@angular/core").Signal<number>;
11
11
  setVisibility(isVisible: boolean): void;
12
12
  setTheme(theme: 'light' | 'dark'): void;
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "ngx-dev-toolbar",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.2",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^18.0.0 || ^19.0.0",
6
6
  "vite": "^5.0.0",
7
7
  "@analogjs/vite-plugin-angular": "~1.10.0",
8
8
  "@nx/vite": "20.3.0",
9
- "@angular/forms": "~19.0.0",
10
- "@angular/animations": "~19.0.0",
9
+ "@angular/forms": "^18.0.0 || ^19.0.0",
10
+ "@angular/animations": "^18.0.0 || ^19.0.0",
11
11
  "rxjs": "~7.8.0"
12
12
  },
13
13
  "sideEffects": false,