orcas-angular 1.0.1 → 1.0.3
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/index.ts +25 -22
- package/localization/localization.service.ts +1 -1
- package/localization/localize.pipe.ts +1 -1
- package/log/echo-provider.ts +1 -1
- package/log/index.ts +3 -3
- package/navigation/back-on-click.directive.ts +1 -1
- package/navigation/index.ts +2 -2
- package/package.json +1 -1
- package/storage/capacitor-files.service.ts +1 -1
- package/storage/file-box.service.ts +1 -1
- package/storage/local-storage-files.service.ts +1 -1
- package/storage/settings-signals.service.ts +2 -2
- package/storage/settings.service.ts +2 -2
- package/storage/tauri-files.service.ts +1 -1
- package/ui/context-menu/context-menu-trigger.directive.ts +1 -1
- package/ui/context-menu/index.ts +4 -4
package/index.ts
CHANGED
|
@@ -1,22 +1,25 @@
|
|
|
1
|
-
export * from './async/async';
|
|
2
|
-
export * from './async/cancellation-token';
|
|
3
|
-
export * from './dev/console-hook';
|
|
4
|
-
export * from './framework/services-init';
|
|
5
|
-
export * from './localization/localization.service';
|
|
6
|
-
export * from './localization/localize.pipe';
|
|
7
|
-
export * from './localization/localization.interface';
|
|
8
|
-
export * from './log/echo';
|
|
9
|
-
export * from './log/log-systems';
|
|
10
|
-
export * from './
|
|
11
|
-
export * from './navigation/
|
|
12
|
-
export * from './
|
|
13
|
-
export * from './storage/
|
|
14
|
-
export * from './storage/
|
|
15
|
-
export * from './storage/
|
|
16
|
-
export * from './storage/settings.service';
|
|
17
|
-
export * from './storage/
|
|
18
|
-
export * from './storage/
|
|
19
|
-
export * from './storage/
|
|
20
|
-
export * from './
|
|
21
|
-
export * from './
|
|
22
|
-
export * from './ui/context-menu/
|
|
1
|
+
export * from './async/async.ts';
|
|
2
|
+
export * from './async/cancellation-token.ts';
|
|
3
|
+
export * from './dev/console-hook.ts';
|
|
4
|
+
export * from './framework/services-init.ts';
|
|
5
|
+
export * from './localization/localization.service.ts';
|
|
6
|
+
export * from './localization/localize.pipe.ts';
|
|
7
|
+
export * from './localization/localization.interface.ts';
|
|
8
|
+
export * from './log/echo.ts';
|
|
9
|
+
export * from './log/log-systems.ts';
|
|
10
|
+
export * from './log/echo-provider.ts';
|
|
11
|
+
export * from './navigation/navigation-stack.service.ts';
|
|
12
|
+
export * from './navigation/back-on-click.directive.ts';
|
|
13
|
+
export * from './storage/files.ts';
|
|
14
|
+
export * from './storage/file-box.service.ts';
|
|
15
|
+
export * from './storage/key-signals.ts';
|
|
16
|
+
export * from './storage/settings-signals.service.ts';
|
|
17
|
+
export * from './storage/settings.service.ts';
|
|
18
|
+
export * from './storage/tauri-files.service.ts';
|
|
19
|
+
export * from './storage/capacitor-files.service.ts';
|
|
20
|
+
export * from './storage/local-storage-files.service.ts';
|
|
21
|
+
export * from './theme/theme.service.ts';
|
|
22
|
+
export * from './ui/context-menu/context-menu.component.ts';
|
|
23
|
+
export * from './ui/context-menu/context-header.component.ts';
|
|
24
|
+
export * from './ui/context-menu/context-button.component.ts';
|
|
25
|
+
export * from './ui/context-menu/context-menu-trigger.directive.ts';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { computed, inject, Injectable, signal } from '@angular/core';
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
|
3
|
-
import { ILocalizationService } from './localization.interface';
|
|
3
|
+
import { ILocalizationService } from './localization.interface.ts';
|
|
4
4
|
|
|
5
5
|
@Injectable({
|
|
6
6
|
providedIn: 'root'
|
package/log/echo-provider.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Provides a singleton Echo instance with console writer.
|
|
4
4
|
*/
|
|
5
5
|
import { InjectionToken, Provider } from '@angular/core';
|
|
6
|
-
import { Echo, EchoConsole } from './echo';
|
|
6
|
+
import { Echo, EchoConsole } from './echo.ts';
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* Injection token for Echo logger instance
|
package/log/index.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Echo logging library exports
|
|
3
3
|
*/
|
|
4
|
-
export { Echo, EchoLogger, EchoSystemLogger, EchoConsole, EchoSettings, LogLevel, SystemColor, LogWriterConfig } from './echo';
|
|
5
|
-
export { LogSystems } from './log-systems';
|
|
6
|
-
export { ECHO, ECHO_PROVIDER, echoFactory } from './echo-provider';
|
|
4
|
+
export { Echo, EchoLogger, EchoSystemLogger, EchoConsole, EchoSettings, LogLevel, SystemColor, LogWriterConfig } from './echo.ts';
|
|
5
|
+
export { LogSystems } from './log-systems.ts';
|
|
6
|
+
export { ECHO, ECHO_PROVIDER, echoFactory } from './echo-provider.ts';
|
package/navigation/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './navigation-stack.service';
|
|
2
|
-
export * from './back-on-click.directive';
|
|
1
|
+
export * from './navigation-stack.service.ts';
|
|
2
|
+
export * from './back-on-click.directive.ts';
|
|
3
3
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Injectable, inject } from '@angular/core';
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
|
3
3
|
import { lastValueFrom } from 'rxjs';
|
|
4
|
-
import { FilesService } from './files';
|
|
4
|
+
import { FilesService } from './files.ts';
|
|
5
5
|
|
|
6
6
|
@Injectable()
|
|
7
7
|
export class LocalStorageFilesService extends FilesService {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { inject, Injectable } from '@angular/core';
|
|
2
|
-
import { KeySignals } from './key-signals';
|
|
3
|
-
import { FileBoxService } from './file-box.service';
|
|
2
|
+
import { KeySignals } from './key-signals.ts';
|
|
3
|
+
import { FileBoxService } from './file-box.service.ts';
|
|
4
4
|
|
|
5
5
|
@Injectable({
|
|
6
6
|
providedIn: 'root'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { inject, Injectable, Signal } from "@angular/core";
|
|
2
|
-
import { FileBoxService } from "./file-box.service";
|
|
3
|
-
import { SettingsSignalsService } from "./settings-signals.service";
|
|
2
|
+
import { FileBoxService } from "./file-box.service.ts";
|
|
3
|
+
import { SettingsSignalsService } from "./settings-signals.service.ts";
|
|
4
4
|
|
|
5
5
|
@Injectable({
|
|
6
6
|
providedIn: "root"
|
package/ui/context-menu/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from './context-menu.component';
|
|
2
|
-
export * from './context-header.component';
|
|
3
|
-
export * from './context-button.component';
|
|
4
|
-
export * from './context-menu-trigger.directive';
|
|
1
|
+
export * from './context-menu.component.ts';
|
|
2
|
+
export * from './context-header.component.ts';
|
|
3
|
+
export * from './context-button.component.ts';
|
|
4
|
+
export * from './context-menu-trigger.directive.ts';
|