@theroutingcompany/components 0.0.128-alpha.3 → 0.0.128

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.128-alpha.3",
3
+ "version": "0.0.128",
4
4
  "description": "The Routing Company Components",
5
5
  "main": "./dist/trc-components.umd.js",
6
6
  "module": "./dist/trc-components.es.js",
@@ -23,5 +23,4 @@ interface DateInputProps {
23
23
  isDateUnavailable?: (date: CalendarDate) => boolean;
24
24
  }
25
25
  export declare function DateInput({ label, name, labelId, inputId, timeZone, hideLabel, boldLabel, onChange, isInvalid, isDisabled, required, placeholder, isDateUnavailable, ...props }: DateInputProps): import("react/jsx-runtime").JSX.Element;
26
- export declare const getCalendarDateFromInputValue: () => void;
27
26
  export {};
@@ -20,9 +20,10 @@ interface TimeInputProps {
20
20
  errorMessage?: string;
21
21
  isInvalid?: boolean;
22
22
  isDisabled?: boolean;
23
+ required?: boolean;
23
24
  hideIcon?: boolean;
24
25
  earliestScrollOption?: Time;
25
26
  latestScrollOption?: Time;
26
27
  alignScrollOptionIntervalsToMidnight?: boolean;
27
28
  }
28
- export declare function TimeInput({ label, name, labelId, inputId, hideLabel, boldLabel, interval, hourCycle, defaultValue, onChange, placeholder, isInvalid, isDisabled, earliestScrollOption, latestScrollOption, alignScrollOptionIntervalsToMidnight, ...props }: TimeInputProps): import("react/jsx-runtime").JSX.Element;
29
+ export declare function TimeInput({ label, name, labelId, inputId, hideLabel, boldLabel, interval, hourCycle, defaultValue, onChange, placeholder, isInvalid, isDisabled, required, earliestScrollOption, latestScrollOption, alignScrollOptionIntervalsToMidnight, ...props }: TimeInputProps): import("react/jsx-runtime").JSX.Element;