@dxs-ts/eveli-ide 0.0.440 → 0.0.441

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,6 +12,7 @@ export interface TaskCardProps {
12
12
  onClick?: () => void;
13
13
  onDoubleClick?: () => void;
14
14
  onReview?: () => void;
15
+ onEdit?: () => void;
15
16
  onToggleFlashy?: () => void;
16
17
  }
17
18
  interface TaskCardDataRowTextProps {
@@ -0,0 +1,13 @@
1
+ import { default as React } from 'react';
2
+ interface TaskCardMenuProps {
3
+ cardId: string;
4
+ anchorEl: HTMLElement | null;
5
+ open: boolean;
6
+ flashy?: boolean;
7
+ onClose: () => void;
8
+ onToggleFlashy?: () => void;
9
+ onReview?: () => void;
10
+ onEdit?: () => void;
11
+ }
12
+ export declare const TaskCardMenu: React.FC<TaskCardMenuProps>;
13
+ export {};