test-stpr-ui-kit 0.5.61 → 0.5.62

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.
@@ -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: Accept;
660
+ accept?: Accept;
660
661
  disabled?: boolean;
661
662
  multiple?: boolean;
662
663
  files: File[];