test-stpr-ui-kit 0.5.61 → 0.5.63
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.
|
@@ -241,7 +241,7 @@ export declare interface IDatePickerInputProps {
|
|
|
241
241
|
value?: string;
|
|
242
242
|
name?: string;
|
|
243
243
|
onChange?: TOnChangeDatePickerInput;
|
|
244
|
-
dateFormatMask
|
|
244
|
+
dateFormatMask?: string | (string | RegExp)[];
|
|
245
245
|
variant?: TDatePickerInputVariant;
|
|
246
246
|
size?: TDatePickerInputSize;
|
|
247
247
|
disabled?: boolean;
|
|
@@ -331,6 +331,7 @@ declare interface InputProps {
|
|
|
331
331
|
ref?: ForwardedRef<HTMLInputElement>;
|
|
332
332
|
mask?: string | (string | RegExp)[];
|
|
333
333
|
alwaysShowMask?: boolean;
|
|
334
|
+
maskChar?: string;
|
|
334
335
|
}
|
|
335
336
|
|
|
336
337
|
export declare const Label: default_2.FC<LabelProps>;
|
|
@@ -656,7 +657,7 @@ declare interface UploadFilesProps {
|
|
|
656
657
|
onDropFiles: <T extends File>(acceptedFiles: T[], name: string, fileRejections?: FileRejection[], event?: DropEvent) => void;
|
|
657
658
|
label?: string;
|
|
658
659
|
required?: boolean;
|
|
659
|
-
accept
|
|
660
|
+
accept?: Accept;
|
|
660
661
|
disabled?: boolean;
|
|
661
662
|
multiple?: boolean;
|
|
662
663
|
files: File[];
|