@theroutingcompany/components 0.0.71-alpha.9 → 0.0.71

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.71-alpha.9",
3
+ "version": "0.0.71",
4
4
  "description": "The Routing Company Components",
5
5
  "main": "./dist/trc-components.umd.js",
6
6
  "module": "./dist/trc-components.es.js",
@@ -1,16 +1,13 @@
1
1
  import { CalendarDateTime } from '@internationalized/date';
2
- import { type Granularity } from '@react-types/datepicker';
3
2
  export declare const DateField: import("styled-components").StyledComponent<"div", any, {
4
- height: string;
5
3
  paddingSize: string;
6
4
  }, never>;
7
5
  export interface DateInputProps {
8
6
  defaultValue?: CalendarDateTime;
9
7
  date?: Date;
10
8
  label?: string;
11
- granularity?: Granularity;
9
+ granularity?: 'day' | 'hour' | 'minute';
12
10
  order?: string[];
13
- height?: string;
14
11
  paddingSize?: string;
15
12
  }
16
- export declare function DateInput({ granularity, height, paddingSize, ...props }: DateInputProps): import("react/jsx-runtime").JSX.Element;
13
+ export declare function DateInput({ granularity, paddingSize, ...props }: DateInputProps): import("react/jsx-runtime").JSX.Element;
@@ -10,7 +10,7 @@ export interface InputBaseProps {
10
10
  lineHeight?: number | string;
11
11
  }
12
12
  export declare const inputPadding: {
13
- readonly small: ".293rem .5rem";
13
+ readonly small: ".313rem .5rem";
14
14
  readonly large: ".5rem .5rem";
15
15
  };
16
16
  export declare const inputHeight: {