-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: optimize middlewares and renderer
- Loading branch information
1 parent
2896570
commit 25a7724
Showing
14 changed files
with
433 additions
and
271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
export const key = 'LAYOUT_SELECT'; | ||
// export const keyHoverElement = Symbol(`${key}_hoverElementSize`); | ||
export const keyLayoutActionType = Symbol(`${key}_layoutActionType`); // 'hover' | 'resize' | null = null; | ||
export const keyLayoutActionType = Symbol(`${key}_layoutActionType`); // 'resize' | null = null; | ||
export const keyLayoutControlType = Symbol(`${key}_layoutControlType`); // ControlType | null; | ||
export const keyLayoutController = Symbol(`${key}_layoutController`); // ElementSizeController | null = null; | ||
export const keyLayoutIsHover = Symbol(`${key}_layoutIsHover`); // boolean | null | ||
export const keyLayoutIsSelected = Symbol(`${key}_layoutIsSelected`); // boolean | null | ||
|
||
export const selectColor = '#1973ba'; | ||
// export const selectColor = '#1973ba'; | ||
export const selectColor = '#b331c9'; | ||
export const disableColor = '#5b5959b5'; | ||
export const controllerSize = 10; |
Oops, something went wrong.