feat(core): add edgelessTheme property and edgelessDefault theme setting (#8614)

close AF-1430 AF-1471

https://github.com/user-attachments/assets/d997ac6c-ce94-4fa4-ab34-29b36c7796ea
This commit is contained in:
JimmFly
2024-11-01 03:58:02 +00:00
parent 1f6cce2f5e
commit 10b1f233d9
28 changed files with 553 additions and 181 deletions
+3
View File
@@ -10,6 +10,7 @@ export * from './modules/feature-flag';
export * from './modules/global-context';
export * from './modules/lifecycle';
export * from './modules/storage';
export * from './modules/theme';
export * from './modules/workspace';
export * from './orm';
export * from './storage';
@@ -26,6 +27,7 @@ import {
configureGlobalStorageModule,
configureTestingGlobalStorage,
} from './modules/storage';
import { configureAppThemeModule } from './modules/theme';
import {
configureTestingWorkspaceProvider,
configureWorkspaceModule,
@@ -39,6 +41,7 @@ export function configureInfraModules(framework: Framework) {
configureGlobalContextModule(framework);
configureLifecycleModule(framework);
configureFeatureFlagModule(framework);
configureAppThemeModule(framework);
}
export function configureTestingInfraModules(framework: Framework) {