ngx-dev-toolbar 1.0.3 → 1.0.5

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 (145) hide show
  1. package/components/button/button.component.d.ts +12 -0
  2. package/components/card/card.component.d.ts +8 -0
  3. package/components/clickable-card/clickable-card.component.d.ts +11 -0
  4. package/components/icons/angular-icon.component.d.ts +5 -0
  5. package/components/icons/bolt-icon.component.d.ts +6 -0
  6. package/components/icons/bug-icon.component.d.ts +6 -0
  7. package/components/icons/code-icon.component.d.ts +6 -0
  8. package/components/icons/database-icon.component.d.ts +6 -0
  9. package/components/icons/discord-icon.component.d.ts +6 -0
  10. package/components/icons/docs-icon.component.d.ts +6 -0
  11. package/components/icons/export-icon.component.d.ts +6 -0
  12. package/components/icons/filter-icon.component.d.ts +6 -0
  13. package/components/icons/gauge-icon.component.d.ts +6 -0
  14. package/components/icons/gear-icon.component.d.ts +6 -0
  15. package/components/icons/git-branch-icon.component.d.ts +6 -0
  16. package/components/icons/icon.component.d.ts +9 -0
  17. package/components/icons/icon.models.d.ts +1 -0
  18. package/components/icons/import-icon.component.d.ts +6 -0
  19. package/components/icons/layout-icon.component.d.ts +6 -0
  20. package/components/icons/lightbulb-icon.component.d.ts +6 -0
  21. package/components/icons/lighting-icon.component.d.ts +6 -0
  22. package/components/icons/lock-icon.component.d.ts +6 -0
  23. package/components/icons/moon-icon.component.d.ts +6 -0
  24. package/components/icons/network-icon.component.d.ts +6 -0
  25. package/components/icons/puzzle-icon.component.d.ts +6 -0
  26. package/components/icons/refresh-icon.component.d.ts +6 -0
  27. package/components/icons/star-icon.component.d.ts +6 -0
  28. package/components/icons/sun-icon.component.d.ts +6 -0
  29. package/components/icons/terminal-icon.component.d.ts +6 -0
  30. package/components/icons/toggle-left-icon.component.d.ts +6 -0
  31. package/components/icons/translate-icon.component.d.ts +6 -0
  32. package/components/icons/trash-icon.component.d.ts +6 -0
  33. package/components/icons/users-icon.component.d.ts +6 -0
  34. package/components/input/input.component.d.ts +10 -0
  35. package/components/link-button/link-button.component.d.ts +8 -0
  36. package/components/select/select.component.d.ts +25 -0
  37. package/components/tool-button/tool-button.component.d.ts +23 -0
  38. package/components/toolbar-tool/toolbar-tool.component.d.ts +30 -0
  39. package/components/toolbar-tool/toolbar-tool.models.d.ts +25 -0
  40. package/components/window/window.component.d.ts +16 -0
  41. package/dev-toolbar-state.service.d.ts +21 -0
  42. package/dev-toolbar.component.d.ts +18 -0
  43. package/fesm2022/ngx-dev-toolbar.mjs +4570 -0
  44. package/fesm2022/ngx-dev-toolbar.mjs.map +1 -0
  45. package/index.d.ts +19 -0
  46. package/models/dev-tools.interface.d.ts +17 -0
  47. package/package.json +31 -8
  48. package/tools/app-features-tool/app-features-internal.service.d.ts +102 -0
  49. package/tools/app-features-tool/app-features-tool.component.d.ts +61 -0
  50. package/tools/app-features-tool/app-features.models.d.ts +109 -0
  51. package/tools/app-features-tool/app-features.service.d.ts +151 -0
  52. package/tools/feature-flags-tool/feature-flags-internal.service.d.ts +21 -0
  53. package/tools/feature-flags-tool/feature-flags-tool.component.d.ts +27 -0
  54. package/tools/feature-flags-tool/feature-flags.models.d.ts +9 -0
  55. package/tools/feature-flags-tool/feature-flags.service.d.ts +19 -0
  56. package/tools/home-tool/home-tool.component.d.ts +38 -0
  57. package/{src/tools/home-tool/settings.models.ts → tools/home-tool/settings.models.d.ts} +1 -1
  58. package/tools/home-tool/settings.service.d.ts +10 -0
  59. package/tools/language-tool/language-internal.service.d.ts +19 -0
  60. package/tools/language-tool/language-tool.component.d.ts +14 -0
  61. package/tools/language-tool/language.models.d.ts +4 -0
  62. package/tools/language-tool/language.service.d.ts +19 -0
  63. package/tools/network-mocker-tool/network-mocker-tool.component.d.ts +23 -0
  64. package/tools/network-mocker-tool/network-mocker.models.d.ts +16 -0
  65. package/tools/network-mocker-tool/network-mocker.service.d.ts +16 -0
  66. package/tools/permissions-tool/permissions-internal.service.d.ts +34 -0
  67. package/tools/permissions-tool/permissions-tool.component.d.ts +27 -0
  68. package/tools/permissions-tool/permissions.models.d.ts +34 -0
  69. package/tools/permissions-tool/permissions.service.d.ts +87 -0
  70. package/utils/storage.service.d.ts +18 -0
  71. package/eslint.config.cjs +0 -47
  72. package/ng-package.json +0 -7
  73. package/project.json +0 -37
  74. package/src/components/button/button.component.scss +0 -49
  75. package/src/components/button/button.component.ts +0 -36
  76. package/src/components/card/card.component.scss +0 -18
  77. package/src/components/card/card.component.ts +0 -30
  78. package/src/components/clickable-card/clickable-card.component.scss +0 -39
  79. package/src/components/clickable-card/clickable-card.component.ts +0 -34
  80. package/src/components/icons/angular-icon.component.ts +0 -35
  81. package/src/components/icons/bug-icon.component.ts +0 -23
  82. package/src/components/icons/code-icon.component.ts +0 -24
  83. package/src/components/icons/database-icon.component.ts +0 -27
  84. package/src/components/icons/discord-icon.component.ts +0 -23
  85. package/src/components/icons/docs-icon.component.ts +0 -23
  86. package/src/components/icons/export-icon.component.ts +0 -23
  87. package/src/components/icons/gauge-icon.component.ts +0 -27
  88. package/src/components/icons/gear-icon.component.ts +0 -27
  89. package/src/components/icons/git-branch-icon.component.ts +0 -27
  90. package/src/components/icons/icon.component.ts +0 -129
  91. package/src/components/icons/icon.models.ts +0 -27
  92. package/src/components/icons/import-icon.component.ts +0 -23
  93. package/src/components/icons/layout-icon.component.ts +0 -24
  94. package/src/components/icons/lightbulb-icon.component.ts +0 -23
  95. package/src/components/icons/lighting-icon.component.ts +0 -24
  96. package/src/components/icons/moon-icon.component.ts +0 -27
  97. package/src/components/icons/network-icon.component.ts +0 -27
  98. package/src/components/icons/puzzle-icon.component.ts +0 -27
  99. package/src/components/icons/refresh-icon.component.ts +0 -27
  100. package/src/components/icons/star-icon.component.ts +0 -27
  101. package/src/components/icons/sun-icon.component.ts +0 -27
  102. package/src/components/icons/terminal-icon.component.ts +0 -27
  103. package/src/components/icons/toggle-left-icon.component.ts +0 -27
  104. package/src/components/icons/translate-icon.component.ts +0 -23
  105. package/src/components/icons/trash-icon.component.ts +0 -23
  106. package/src/components/icons/users-icon.component.ts +0 -27
  107. package/src/components/input/input.component.ts +0 -67
  108. package/src/components/link-button/link-button.component.scss +0 -36
  109. package/src/components/link-button/link-button.component.ts +0 -29
  110. package/src/components/select/select.component.scss +0 -162
  111. package/src/components/select/select.component.ts +0 -127
  112. package/src/components/tool-button/tool-button.component.scss +0 -67
  113. package/src/components/tool-button/tool-button.component.ts +0 -126
  114. package/src/components/toolbar-tool/toolbar-tool.component.scss +0 -9
  115. package/src/components/toolbar-tool/toolbar-tool.component.ts +0 -169
  116. package/src/components/toolbar-tool/toolbar-tool.models.ts +0 -33
  117. package/src/components/window/window.component.scss +0 -95
  118. package/src/components/window/window.component.ts +0 -69
  119. package/src/dev-toolbar-state.service.ts +0 -89
  120. package/src/dev-toolbar.component.scss +0 -22
  121. package/src/dev-toolbar.component.ts +0 -105
  122. package/src/index.ts +0 -10
  123. package/src/models/dev-tools.interface.ts +0 -19
  124. package/src/styles.scss +0 -342
  125. package/src/test-setup.ts +0 -12
  126. package/src/tools/feature-flags-tool/feature-flags-internal.service.ts +0 -96
  127. package/src/tools/feature-flags-tool/feature-flags-tool.component.ts +0 -261
  128. package/src/tools/feature-flags-tool/feature-flags.models.ts +0 -10
  129. package/src/tools/feature-flags-tool/feature-flags.service.ts +0 -28
  130. package/src/tools/home-tool/home-tool.component.scss +0 -67
  131. package/src/tools/home-tool/home-tool.component.ts +0 -197
  132. package/src/tools/home-tool/settings.service.spec.ts +0 -59
  133. package/src/tools/home-tool/settings.service.ts +0 -21
  134. package/src/tools/language-tool/language-internal.service.ts +0 -51
  135. package/src/tools/language-tool/language-tool.component.scss +0 -7
  136. package/src/tools/language-tool/language-tool.component.ts +0 -71
  137. package/src/tools/language-tool/language.models.ts +0 -4
  138. package/src/tools/language-tool/language.service.ts +0 -26
  139. package/src/utils/storage.service.spec.ts +0 -179
  140. package/src/utils/storage.service.ts +0 -80
  141. package/tsconfig.json +0 -28
  142. package/tsconfig.lib.json +0 -28
  143. package/tsconfig.lib.prod.json +0 -9
  144. package/tsconfig.spec.json +0 -29
  145. package/vite.config.mts +0 -27
@@ -0,0 +1,12 @@
1
+ import { IconName } from '../icons/icon.models';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DevToolbarButtonComponent {
4
+ readonly type: import("@angular/core").InputSignal<"button" | "submit" | "reset">;
5
+ readonly variant: import("@angular/core").InputSignal<"default" | "icon">;
6
+ readonly icon: import("@angular/core").InputSignal<IconName | undefined>;
7
+ readonly label: import("@angular/core").InputSignal<string | undefined>;
8
+ readonly ariaLabel: import("@angular/core").InputSignal<string | undefined>;
9
+ readonly isActive: import("@angular/core").InputSignal<boolean>;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<DevToolbarButtonComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<DevToolbarButtonComponent, "ndt-button", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "isActive": { "alias": "isActive"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
12
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DevToolbarCardComponent {
3
+ readonly click: import("@angular/core").WritableSignal<void>;
4
+ protected readonly isHovered: import("@angular/core").WritableSignal<boolean>;
5
+ onClick(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DevToolbarCardComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<DevToolbarCardComponent, "ndt-card", never, {}, {}, never, ["*"], true, never>;
8
+ }
@@ -0,0 +1,11 @@
1
+ import { IconName } from '../icons/icon.models';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DevToolbarClickableCardComponent {
4
+ readonly icon: import("@angular/core").InputSignal<IconName>;
5
+ readonly title: import("@angular/core").InputSignal<string>;
6
+ readonly subtitle: import("@angular/core").InputSignal<string>;
7
+ readonly click: import("@angular/core").WritableSignal<void>;
8
+ onClick(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<DevToolbarClickableCardComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<DevToolbarClickableCardComponent, "ndt-clickable-card", never, { "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
11
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class AngularIconComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<AngularIconComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<AngularIconComponent, "ndt-angular-icon", never, {}, {}, never, never, true, never>;
5
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BoltIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<BoltIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<BoltIconComponent, "ndt-bolt-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BugIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<BugIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<BugIconComponent, "ndt-bug-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class CodeIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<CodeIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<CodeIconComponent, "ndt-code-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DatabaseIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<DatabaseIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatabaseIconComponent, "ndt-database-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DiscordIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<DiscordIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<DiscordIconComponent, "ndt-discord-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DocsIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<DocsIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<DocsIconComponent, "ndt-docs-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ExportIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExportIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<ExportIconComponent, "ndt-export-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FilterIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilterIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterIconComponent, "ndt-filter-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class GaugeIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<GaugeIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<GaugeIconComponent, "ndt-gauge-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class GearIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<GearIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<GearIconComponent, "ndt-gear-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class GitBranchIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<GitBranchIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<GitBranchIconComponent, "ndt-git-branch-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,9 @@
1
+ import { IconName } from './icon.models';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DevToolbarIconComponent {
4
+ private readonly stateService;
5
+ name: import("@angular/core").InputSignal<IconName>;
6
+ fill: import("@angular/core").Signal<"#FFFFFF" | "#000000">;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DevToolbarIconComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<DevToolbarIconComponent, "ndt-icon", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
9
+ }
@@ -0,0 +1 @@
1
+ export type IconName = 'angular' | 'bolt' | 'bug' | 'code' | 'database' | 'discord' | 'docs' | 'export' | 'filter' | 'flag' | 'gauge' | 'gear' | 'git-branch' | 'import' | 'layout' | 'lighting' | 'lightbulb' | 'lock' | 'moon' | 'network' | 'puzzle' | 'refresh' | 'star' | 'sun' | 'terminal' | 'toggle-left' | 'translate' | 'trash' | 'user';
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ImportIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImportIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImportIconComponent, "ndt-import-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class LayoutIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<LayoutIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayoutIconComponent, "ndt-layout-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class LightbulbIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<LightbulbIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<LightbulbIconComponent, "ndt-lightbulb-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class LightingIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<LightingIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<LightingIconComponent, "ndt-lighting-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class LockIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<LockIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<LockIconComponent, "ndt-lock-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class MoonIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<MoonIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<MoonIconComponent, "ndt-moon-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class NetworkIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<NetworkIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<NetworkIconComponent, "ndt-network-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class PuzzleIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<PuzzleIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<PuzzleIconComponent, "ndt-puzzle-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class RefreshIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<RefreshIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<RefreshIconComponent, "ndt-refresh-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class StarIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<StarIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<StarIconComponent, "ndt-star-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class SunIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<SunIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<SunIconComponent, "ndt-sun-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class TerminalIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<TerminalIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<TerminalIconComponent, "ndt-terminal-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ToggleLeftIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToggleLeftIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleLeftIconComponent, "ndt-toggle-left-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class TranslateIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<TranslateIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<TranslateIconComponent, "ndt-translate-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class TrashIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<TrashIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<TrashIconComponent, "ndt-trash-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class UsersIconComponent {
3
+ fill: import("@angular/core").InputSignal<string>;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<UsersIconComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<UsersIconComponent, "ndt-users-icon", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
6
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DevToolbarInputComponent {
3
+ value: import("@angular/core").ModelSignal<string>;
4
+ type: import("@angular/core").InputSignal<string>;
5
+ placeholder: import("@angular/core").InputSignal<string>;
6
+ ariaLabel: import("@angular/core").InputSignal<string>;
7
+ inputClass: import("@angular/core").InputSignal<string>;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<DevToolbarInputComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<DevToolbarInputComponent, "ndt-input", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "inputClass": { "alias": "inputClass"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
10
+ }
@@ -0,0 +1,8 @@
1
+ import { IconName } from '../icons/icon.models';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DevToolbarLinkButtonComponent {
4
+ readonly url: import("@angular/core").InputSignal<string>;
5
+ readonly icon: import("@angular/core").InputSignal<IconName>;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DevToolbarLinkButtonComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<DevToolbarLinkButtonComponent, "ndt-link-button", never, { "url": { "alias": "url"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": true; "isSignal": true; }; }, {}, never, ["*"], true, never>;
8
+ }
@@ -0,0 +1,25 @@
1
+ import { ConnectedPosition } from '@angular/cdk/overlay';
2
+ import { DevToolbarStateService } from '../../dev-toolbar-state.service';
3
+ import * as i0 from "@angular/core";
4
+ export interface SelectOption {
5
+ value: string;
6
+ label: string;
7
+ }
8
+ export declare class DevToolbarSelectComponent {
9
+ readonly devToolbarStateService: DevToolbarStateService;
10
+ value: import("@angular/core").ModelSignal<string | undefined>;
11
+ options: import("@angular/core").InputSignal<SelectOption[]>;
12
+ ariaLabel: import("@angular/core").InputSignal<string>;
13
+ label: import("@angular/core").InputSignal<string>;
14
+ size: import("@angular/core").InputSignal<"small" | "medium">;
15
+ readonly theme: import("@angular/core").Signal<"dark" | "light">;
16
+ protected readonly selectMenuId: string;
17
+ isOpen: import("@angular/core").WritableSignal<boolean>;
18
+ selectedLabel: import("@angular/core").Signal<string>;
19
+ positions: ConnectedPosition[];
20
+ toggle(): void;
21
+ close(): void;
22
+ selectOption(option: SelectOption): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<DevToolbarSelectComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<DevToolbarSelectComponent, "ndt-select", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": true; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
25
+ }
@@ -0,0 +1,23 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DevToolbarToolButtonComponent {
3
+ private readonly state;
4
+ private readonly elementRef;
5
+ readonly title: import("@angular/core").InputSignal<string>;
6
+ readonly toolId: import("@angular/core").InputSignal<string>;
7
+ readonly open: import("@angular/core").OutputEmitterRef<void>;
8
+ readonly isActive: import("@angular/core").Signal<boolean>;
9
+ readonly isToolbarVisible: import("@angular/core").Signal<boolean>;
10
+ readonly isFocused: import("@angular/core").WritableSignal<boolean>;
11
+ readonly tooltip: import("@angular/core").Signal<any>;
12
+ readonly isTooltipVisible: import("@angular/core").Signal<any>;
13
+ protected tooltipState: boolean;
14
+ private readonly hideDelay;
15
+ onClick(): void;
16
+ onMouseEnter(): void;
17
+ onMouseLeave(): void;
18
+ onEscape(): void;
19
+ onFocus(): void;
20
+ onBlur(): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<DevToolbarToolButtonComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<DevToolbarToolButtonComponent, "ndt-tool-button", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "toolId": { "alias": "toolId"; "required": true; "isSignal": true; }; }, { "open": "open"; }, never, ["*"], true, never>;
23
+ }
@@ -0,0 +1,30 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { DevToolbarStateService } from '../../dev-toolbar-state.service';
3
+ import { IconName } from '../icons/icon.models';
4
+ import { DevToolbarToolButtonComponent } from '../tool-button/tool-button.component';
5
+ import { DevToolbarWindowOptions } from './toolbar-tool.models';
6
+ import * as i0 from "@angular/core";
7
+ export declare class DevToolbarToolComponent {
8
+ state: DevToolbarStateService;
9
+ buttonContainer: ElementRef;
10
+ buttonComponent: DevToolbarToolButtonComponent;
11
+ options: import("@angular/core").InputSignal<DevToolbarWindowOptions>;
12
+ icon: import("@angular/core").InputSignal<IconName>;
13
+ title: import("@angular/core").InputSignal<string>;
14
+ isActive: import("@angular/core").Signal<boolean>;
15
+ height: import("@angular/core").Signal<320 | 480 | 620>;
16
+ width: import("@angular/core").Signal<320 | 480 | 620 | 400>;
17
+ positions: import("@angular/core").Signal<{
18
+ originX: "center";
19
+ originY: "center";
20
+ overlayX: "center";
21
+ overlayY: "center";
22
+ offsetY: number;
23
+ offsetX: number;
24
+ }[]>;
25
+ onOpen(): void;
26
+ onClose(): void;
27
+ getButtonContainerXPosition(): number;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<DevToolbarToolComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<DevToolbarToolComponent, "ndt-toolbar-tool", never, { "options": { "alias": "options"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; }, {}, ["buttonComponent"], ["ndt-tool-button", "*"], true, never>;
30
+ }
@@ -0,0 +1,25 @@
1
+ import { IconName } from '../icons/icon.models';
2
+ export interface DevToolbarWindowPosition {
3
+ x: number;
4
+ y: number;
5
+ }
6
+ export interface DevToolbarWindowOptions {
7
+ id: string;
8
+ /**
9
+ * The title of the window, this can be different from the name of the tool
10
+ */
11
+ title: string;
12
+ description?: string;
13
+ isClosable?: boolean;
14
+ isMaximizable?: boolean;
15
+ isMinimizable?: boolean;
16
+ placement?: 'bottom-left' | 'bottom-center' | 'bottom-right' | 'top-left' | 'top-center' | 'top-right';
17
+ size?: 'small' | 'medium' | 'tall' | 'large';
18
+ isBeta?: boolean;
19
+ }
20
+ export interface DevToolbarToolOptions {
21
+ icon: IconName;
22
+ name: string;
23
+ windowOptions: DevToolbarWindowOptions;
24
+ isBeta?: boolean;
25
+ }
@@ -0,0 +1,16 @@
1
+ import { DevToolbarStateService } from '../../dev-toolbar-state.service';
2
+ import { DevToolbarWindowOptions } from '../toolbar-tool/toolbar-tool.models';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DevToolbarWindowComponent {
5
+ readonly devToolbarStateService: DevToolbarStateService;
6
+ readonly config: import("@angular/core").InputSignal<DevToolbarWindowOptions>;
7
+ readonly close: import("@angular/core").OutputEmitterRef<void>;
8
+ readonly maximize: import("@angular/core").OutputEmitterRef<void>;
9
+ readonly minimize: import("@angular/core").OutputEmitterRef<void>;
10
+ readonly theme: import("@angular/core").Signal<"dark" | "light">;
11
+ protected onClose(): void;
12
+ protected onMaximize(): void;
13
+ protected onMinimize(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<DevToolbarWindowComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<DevToolbarWindowComponent, "ndt-window", never, { "config": { "alias": "config"; "required": true; "isSignal": true; }; }, { "close": "close"; "maximize": "maximize"; "minimize": "minimize"; }, never, ["*"], true, never>;
16
+ }
@@ -0,0 +1,21 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class DevToolbarStateService {
3
+ private state;
4
+ readonly isVisible: import("@angular/core").Signal<boolean>;
5
+ readonly isDarkTheme: import("@angular/core").Signal<boolean>;
6
+ readonly activeToolId: import("@angular/core").Signal<string | null>;
7
+ readonly hasActiveTool: import("@angular/core").Signal<boolean>;
8
+ readonly error: import("@angular/core").Signal<string | null>;
9
+ readonly theme: import("@angular/core").Signal<"dark" | "light">;
10
+ /**
11
+ * The delay to hide the toolbar
12
+ */
13
+ readonly delay: import("@angular/core").Signal<number>;
14
+ setVisibility(isVisible: boolean): void;
15
+ setTheme(theme: 'light' | 'dark'): void;
16
+ setActiveTool(toolId: string | null): void;
17
+ toggleTool(toolId: string | null): void;
18
+ toggleVisibility(): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<DevToolbarStateService, never>;
20
+ static ɵprov: i0.ɵɵInjectableDeclaration<DevToolbarStateService>;
21
+ }
@@ -0,0 +1,18 @@
1
+ import { DestroyRef, OnInit } from '@angular/core';
2
+ import { DevToolbarStateService } from './dev-toolbar-state.service';
3
+ import { SettingsService } from './tools/home-tool/settings.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class DevToolbarComponent implements OnInit {
6
+ state: DevToolbarStateService;
7
+ destroyRef: DestroyRef;
8
+ settingsService: SettingsService;
9
+ isDevMode: boolean;
10
+ private keyboardShortcut;
11
+ private mouseLeave;
12
+ ngOnInit(): void;
13
+ onMouseEnter(): void;
14
+ onMouseLeave(): void;
15
+ private toggleDevTools;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<DevToolbarComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<DevToolbarComponent, "ndt-toolbar", never, {}, {}, never, ["*"], true, never>;
18
+ }