chore: upgrade deps (#906)
* chore: upgrade deps * fix: MenuArrowRight import * fix: type naming
This commit is contained in:
@@ -87,7 +87,7 @@ export class FeaturesState {
|
||||
}
|
||||
|
||||
private hasNativeFolders(): boolean {
|
||||
const status = this.application.getFeatureStatus(
|
||||
const status = this.application.features.getFeatureStatus(
|
||||
FeatureIdentifier.TagNesting
|
||||
);
|
||||
|
||||
@@ -95,7 +95,7 @@ export class FeaturesState {
|
||||
}
|
||||
|
||||
private hasNativeSmartViews(): boolean {
|
||||
const status = this.application.getFeatureStatus(
|
||||
const status = this.application.features.getFeatureStatus(
|
||||
FeatureIdentifier.SmartFilters
|
||||
);
|
||||
|
||||
|
||||
@@ -16,6 +16,7 @@ import { IOService } from '@/services/ioService';
|
||||
import { AutolockService } from '@/services/autolock_service';
|
||||
import { StatusManager } from '@/services/statusManager';
|
||||
import { ThemeManager } from '@/services/themeManager';
|
||||
import { InternalEventBus } from '@standardnotes/services';
|
||||
|
||||
export class ApplicationGroup extends SNApplicationGroup {
|
||||
constructor(
|
||||
@@ -62,7 +63,10 @@ export class ApplicationGroup extends SNApplicationGroup {
|
||||
const io = new IOService(
|
||||
platform === Platform.MacWeb || platform === Platform.MacDesktop
|
||||
);
|
||||
const autolockService = new AutolockService(application);
|
||||
const autolockService = new AutolockService(
|
||||
application,
|
||||
new InternalEventBus()
|
||||
);
|
||||
const statusManager = new StatusManager();
|
||||
const themeService = new ThemeManager(application);
|
||||
application.setWebServices({
|
||||
|
||||
Reference in New Issue
Block a user