@veeqo/ui 0.3.0 → 1.0.0
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.
|
@@ -8,4 +8,4 @@ export interface ClassNamesReturnPayload {
|
|
|
8
8
|
active?: string;
|
|
9
9
|
counter?: string;
|
|
10
10
|
}
|
|
11
|
-
export declare const View: ({ id, iconSlot, name, type, className, count, active, onClick, onDelete, onEdit,
|
|
11
|
+
export declare const View: ({ id, iconSlot, name, type, className, count, active, onClick, onDelete, onEdit, e2eClassName, }: ViewProps) => React.JSX.Element;
|
|
@@ -26,8 +26,6 @@ export interface ViewProps {
|
|
|
26
26
|
onDelete?: (id: ViewId) => void;
|
|
27
27
|
/** Event handler for when user clicks to edit the view */
|
|
28
28
|
onEdit?: (id: ViewId) => void;
|
|
29
|
-
/** Event handler for when user clicks to show options for FIXED view */
|
|
30
|
-
onOptions?: (id: ViewId) => void;
|
|
31
29
|
/** Class name for e2e testing */
|
|
32
30
|
e2eClassName?: string;
|
|
33
31
|
}
|