@clasing/ui 0.1.113 → 0.1.114
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/index.d.ts +5 -5
- package/dist/index.es.js +1449 -1116
- package/dist/index.umd.js +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -133,7 +133,7 @@ declare interface DayTimePickerProps {
|
|
|
133
133
|
onSelectionChange?: (selectedTimes: {
|
|
134
134
|
[key in WeekDay]?: string[];
|
|
135
135
|
}) => void;
|
|
136
|
-
locale?: 'enGB' | 'enUS' | 'es';
|
|
136
|
+
locale?: 'enGB' | 'enUS' | 'es' | 'fr';
|
|
137
137
|
intervalMinutes?: 30 | 60;
|
|
138
138
|
singleSelection?: boolean;
|
|
139
139
|
singleSelectionPerDay?: boolean;
|
|
@@ -236,7 +236,7 @@ declare interface IButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElem
|
|
|
236
236
|
}
|
|
237
237
|
|
|
238
238
|
declare interface ICalendarProps {
|
|
239
|
-
locale?: 'enGB' | 'enUS' | 'es';
|
|
239
|
+
locale?: 'enGB' | 'enUS' | 'es' | 'fr';
|
|
240
240
|
disabledDates?: string | string[] | Date | Date[] | undefined;
|
|
241
241
|
enabledDates?: string | string[] | Date | Date[] | undefined;
|
|
242
242
|
dropdownsSelectors?: boolean;
|
|
@@ -276,7 +276,7 @@ declare interface IDatepickerProps extends React.InputHTMLAttributes<HTMLInputEl
|
|
|
276
276
|
error?: string;
|
|
277
277
|
touched?: boolean;
|
|
278
278
|
value?: string;
|
|
279
|
-
locale?: 'enGB' | 'enUS' | 'es';
|
|
279
|
+
locale?: 'enGB' | 'enUS' | 'es' | 'fr';
|
|
280
280
|
triggerSize?: 'sm' | 'md' | 'lg';
|
|
281
281
|
rounded?: 'sm' | 'full';
|
|
282
282
|
placement?: PopoverPlacement;
|
|
@@ -303,7 +303,7 @@ declare interface IDateRangePickerProps extends React.InputHTMLAttributes<HTMLIn
|
|
|
303
303
|
endDate: string;
|
|
304
304
|
calendarDropdowns?: boolean;
|
|
305
305
|
disabledDates?: Matcher | Matcher[] | undefined;
|
|
306
|
-
locale?: 'enGB' | 'enUS' | 'es';
|
|
306
|
+
locale?: 'enGB' | 'enUS' | 'es' | 'fr';
|
|
307
307
|
placement?: PopoverPlacement;
|
|
308
308
|
placeholder?: string;
|
|
309
309
|
minDate?: Date;
|
|
@@ -460,7 +460,7 @@ declare type PhoneInputProps = Omit<React.ComponentProps<'input'>, 'onChange' |
|
|
|
460
460
|
onChange?: (value: RPNInput.Value) => void;
|
|
461
461
|
label?: string;
|
|
462
462
|
helperText?: string;
|
|
463
|
-
locale?: 'en' | 'es';
|
|
463
|
+
locale?: 'en' | 'es' | 'fr';
|
|
464
464
|
error?: string;
|
|
465
465
|
touched?: boolean;
|
|
466
466
|
searchPlaceholder?: string;
|