@theroutingcompany/components 0.0.30-alpha.2 → 0.0.30-alpha.3

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": "@theroutingcompany/components",
3
- "version": "0.0.30-alpha.2",
3
+ "version": "0.0.30-alpha.3",
4
4
  "description": "The Routing Company Components",
5
5
  "main": "./dist/trc-components.umd.js",
6
6
  "module": "./dist/trc-components.es.js",
@@ -28,9 +28,10 @@ export default Drawer;
28
28
  */
29
29
  type UseDrawerProps = {
30
30
  initialOpen?: boolean;
31
+ triggerToggle?: boolean;
31
32
  id?: string;
32
33
  };
33
- export declare function useDrawer({ initialOpen, id, }?: UseDrawerProps): {
34
+ export declare function useDrawer({ initialOpen, triggerToggle, id, }?: UseDrawerProps): {
34
35
  isOpen: boolean;
35
36
  toggleDrawer: () => void;
36
37
  openDrawer: () => void;
@@ -2,6 +2,7 @@ import { type BoxProps } from '../Box';
2
2
  interface ContainerProps extends BoxProps {
3
3
  $state?: string;
4
4
  $viewportPosition?: string;
5
+ name?: string;
5
6
  }
6
7
  export declare const Container: import("styled-components").StyledComponent<import("../..").ForwardRefComponent<"div", BoxProps>, any, ContainerProps, never>;
7
8
  export {};