@secondstaxorg/sscomp 1.8.32 → 1.8.34

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondstaxorg/sscomp",
3
- "version": "1.8.32",
3
+ "version": "1.8.34",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -1,4 +1,5 @@
1
- export interface NumberFieldProps {
1
+ import React from "react";
2
+ export interface NumberFieldProps extends Omit<React.ComponentPropsWithoutRef<'input'>, 'onChange'> {
2
3
  /**
3
4
  * Label of the input field
4
5
  */
@@ -4,4 +4,6 @@ export interface SignatureProps {
4
4
  value?: string | Object;
5
5
  maxFileSize?: number;
6
6
  previewUrl?: string;
7
+ disableTypeField?: boolean;
8
+ disableUploadField?: boolean;
7
9
  }