feat(core): init editor setting ui (#7878)

- init editor setting ui

https://github.com/user-attachments/assets/c54f5816-ef05-4ac0-b11a-8ab7159f928c
This commit is contained in:
JimmFly
2024-08-22 04:24:40 +00:00
parent 03c4d56a91
commit b333cde336
18 changed files with 1325 additions and 2 deletions

View File

@@ -91,6 +91,13 @@ export const AFFINE_FLAGS = {
configurable: true,
defaultState: false,
},
enable_editor_settings: {
category: 'affine',
displayName: 'Editor Settings',
description: 'Enables editor settings.',
configurable: isCanaryBuild,
defaultState: false,
},
} satisfies { [key in string]: FlagInfo };
export type AFFINE_FLAGS = typeof AFFINE_FLAGS;