[WEB-1519] chore: update component structure in project state settings and implement DND (#5043)

* chore: updated project settings state

* chore: updated sorting on project state

* chore: updated grab handler in state item

* chore: Updated UI and added garb handler icon

* chore: handled top and bottom sequence in middle element swap

* chore: handled input state element char limit to 100

* chore: typos and code cleanup in create state

* chore: handled typos and comments wherever is required

* chore: handled sorting logic
This commit is contained in:
guru_sainath 2024-07-05 16:09:33 +05:30 committed by GitHub
parent c75091ca3a
commit 38f8aa90c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
24 changed files with 880 additions and 915 deletions

View file

@ -1,5 +1,10 @@
import { TStateGroups } from "@plane/types";
export type TDraggableData = {
groupKey: TStateGroups;
id: string;
};
export const STATE_GROUPS: {
[key in TStateGroups]: {
key: TStateGroups;