@veeqo/ui 5.0.0-beta → 5.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.
@@ -7,4 +7,4 @@ export interface ClassNamesReturnPayload {
7
7
  active?: string;
8
8
  counter?: string;
9
9
  }
10
- export declare const ViewTab: ({ id, iconSlot, name, type, className, colourPalette, customTextColour, count, active, onClick, subAction, ariaContext, }: ViewTabProps) => React.JSX.Element;
10
+ export declare const ViewTab: React.ForwardRefExoticComponent<ViewTabProps & React.RefAttributes<HTMLElement>>;
@@ -1,3 +1,3 @@
1
1
  import React from 'react';
2
2
  import { ViewContainerProps } from './types';
3
- export declare const ViewsContainer: ({ children, onClickMenu, ariaMenuControls, ariaMenuExpanded, }: ViewContainerProps) => React.JSX.Element;
3
+ export declare const ViewsContainer: React.ForwardRefExoticComponent<ViewContainerProps & React.RefAttributes<HTMLButtonElement>>;
@@ -3,7 +3,7 @@ export type ViewContainerProps = {
3
3
  /** Children usually the ViewTab component */
4
4
  children?: ReactNode;
5
5
  /** Event handler for when the menu icon is clicked (can be used to enable popover) */
6
- onClickMenu: () => void;
6
+ onClickMenu?: () => void;
7
7
  ariaMenuControls?: string;
8
8
  ariaMenuExpanded?: boolean;
9
9
  };