@theroutingcompany/components 0.0.46 → 0.0.47-alpha.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theroutingcompany/components",
3
- "version": "0.0.46",
3
+ "version": "0.0.47-alpha.0",
4
4
  "description": "The Routing Company Components",
5
5
  "main": "./dist/trc-components.umd.js",
6
6
  "module": "./dist/trc-components.es.js",
@@ -4,7 +4,9 @@ export declare const StyledButtonGroup: import("styled-components").StyledCompon
4
4
  export type ButtonGroupProps = Omit<ToggleGroup.ToggleGroupSingleProps, 'type' | 'style' | 'className'> & {
5
5
  size?: 'small' | 'large';
6
6
  };
7
- export declare const ButtonGroup: {
7
+ declare const ButtonGroup: {
8
8
  ({ children, size, ...props }: ButtonGroupProps): import("react/jsx-runtime").JSX.Element;
9
9
  Item: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<ToggleGroup.ToggleGroupItemProps & import("react").RefAttributes<HTMLButtonElement>>, any, {}, never>;
10
10
  };
11
+ export default ButtonGroup;
12
+ export { ButtonGroup };
@@ -1,7 +1,7 @@
1
1
  import type { ReactNode } from 'react';
2
2
  import React from 'react';
3
3
  import * as SelectPrimitive from '@radix-ui/react-select';
4
- interface TimeDateSelectOutput {
4
+ export interface TimeDateSelectOutput {
5
5
  day: number;
6
6
  month: number;
7
7
  year: number;
@@ -7,6 +7,7 @@ export * from './Box';
7
7
  export * from './Breadcrumbs/Breadcrumbs';
8
8
  export * from './Button/Button';
9
9
  export * from './Button/ButtonBase';
10
+ export * from './ButtonGroup/ButtonGroup';
10
11
  export * from './ButtonV2/ButtonV2';
11
12
  export * from './Calendar';
12
13
  export * from './Checkbox/Checkbox';