@veeqo/ui 5.1.3 → 6.0.0-beta.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veeqo/ui",
3
- "version": "5.1.3",
3
+ "version": "6.0.0-beta.2",
4
4
  "description": "New optimised component library for Veeqo.",
5
5
  "author": "Robert Wealthall",
6
6
  "license": "ISC",
@@ -1,6 +0,0 @@
1
- import React from 'react';
2
- export declare const BasicDropdown: React.ForwardRefExoticComponent<import("../../types").EventHandlerProps & {
3
- className?: string | undefined;
4
- children: React.ReactNode;
5
- role?: React.AriaRole | undefined;
6
- } & React.RefAttributes<HTMLDivElement>>;
@@ -1,10 +0,0 @@
1
- type NodeWidth = Partial<HTMLElement>;
2
- /**
3
- * Mocks ref for testing properties such as client width of a container
4
- *
5
- * @param node parameters
6
- *
7
- * @example mockClientWidth({ clientWidth: 200 })
8
- */
9
- export declare const mockUseRef: (node: NodeWidth) => void;
10
- export {};