quicksnack 1.22.0 → 1.22.1

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.
@@ -1,2 +1,7 @@
1
1
  import React from "react";
2
- export declare const FileField: React.ForwardRefExoticComponent<React.RefAttributes<HTMLInputElement>>;
2
+ interface Props extends React.InputHTMLAttributes<any> {
3
+ chooseFileLabel?: string;
4
+ changeFileLabel?: string;
5
+ }
6
+ export declare const FileField: React.ForwardRefExoticComponent<Props & React.RefAttributes<unknown>>;
7
+ export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "quicksnack",
3
3
  "description": "Quickly create beautiful admin layouts using react",
4
- "version": "1.22.0",
4
+ "version": "1.22.1",
5
5
  "private": false,
6
6
  "files": [
7
7
  "dist/**"