From 96df2fdca354078fbc4370d38a37becb54a735e2 Mon Sep 17 00:00:00 2001 From: Patrick Pimentel Date: Thu, 17 Apr 2025 13:56:24 -0400 Subject: [PATCH] feat(extension-notification-demo): More changes. --- libs/angular/src/services/jslib-services.module.ts | 3 ++- libs/common/src/platform/system-notifications/internal.ts | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 libs/common/src/platform/system-notifications/internal.ts diff --git a/libs/angular/src/services/jslib-services.module.ts b/libs/angular/src/services/jslib-services.module.ts index a74382ad98e..c32aef87f82 100644 --- a/libs/angular/src/services/jslib-services.module.ts +++ b/libs/angular/src/services/jslib-services.module.ts @@ -243,8 +243,9 @@ import { StateEventRunnerService } from "@bitwarden/common/platform/state/state- import { SyncService } from "@bitwarden/common/platform/sync"; // eslint-disable-next-line no-restricted-imports -- Needed for DI import { DefaultSyncService } from "@bitwarden/common/platform/sync/internal"; +// eslint-disable-next-line no-restricted-imports -- Needed for DI +import { UnsupportedSystemNotificationService } from "@bitwarden/common/platform/system-notifications/internal"; import { SystemNotificationServiceAbstraction } from "@bitwarden/common/platform/system-notifications/system-notification-service"; -import { UnsupportedSystemNotificationService } from "@bitwarden/common/platform/system-notifications/unsupported-system-notification.service"; import { DefaultThemeStateService, ThemeStateService, diff --git a/libs/common/src/platform/system-notifications/internal.ts b/libs/common/src/platform/system-notifications/internal.ts new file mode 100644 index 00000000000..66868ab83f3 --- /dev/null +++ b/libs/common/src/platform/system-notifications/internal.ts @@ -0,0 +1 @@ +export { UnsupportedSystemNotificationService } from "./unsupported-system-notification.service";