@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/dist/trc-components.es.js +2501 -2501
- package/dist/trc-components.es.js.map +1 -1
- package/dist/trc-components.umd.js +228 -228
- package/dist/trc-components.umd.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/types/components/Input/DateInput/DateInput.d.ts +0 -1
- package/types/components/Input/TimeInput/TimeInput.d.ts +2 -1
package/package.json
CHANGED
|
@@ -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;
|