[WEB-3048] feat: added-stickies (#6339)
* feat: added-stickies * fix: recents empty state fixed * fix: added border * Change sort_order field * fix: remvoved btn * fix: sticky toolbar * fix: build * fix: sticky search * fix: minor css fix * fix: issue identifier css handled * fix: issue type default icon * fix: added tooltip for color palette and delete --------- Co-authored-by: sangeethailango <sangeethailango21@gmail.com>
This commit is contained in:
parent
24cc69fd7b
commit
cb045abfe1
42 changed files with 1621 additions and 100 deletions
1
packages/types/src/index.d.ts
vendored
1
packages/types/src/index.d.ts
vendored
|
|
@ -39,3 +39,4 @@ export * from "./activity";
|
|||
export * from "./epics";
|
||||
export * from "./charts";
|
||||
export * from "./home";
|
||||
export * from "./stickies";
|
||||
|
|
|
|||
8
packages/types/src/stickies.d copy.ts
Normal file
8
packages/types/src/stickies.d copy.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
export type TSticky = {
|
||||
id: string;
|
||||
name?: string;
|
||||
description_html?: string;
|
||||
color?: string;
|
||||
createdAt?: Date;
|
||||
updatedAt?: Date;
|
||||
};
|
||||
8
packages/types/src/stickies.d.ts
vendored
Normal file
8
packages/types/src/stickies.d.ts
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
export type TSticky = {
|
||||
id: string;
|
||||
name?: string;
|
||||
description_html?: string;
|
||||
color?: string;
|
||||
createdAt?: Date;
|
||||
updatedAt?: Date;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue