@esic-lab/data-core-ui 0.0.20 → 0.0.21

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.mts CHANGED
@@ -173,7 +173,7 @@ interface TextInputProps {
173
173
  declare function TextInput({ label, placeholder, type, maxLength, required, error, value, onChange, disabled, }: TextInputProps): react_jsx_runtime.JSX.Element;
174
174
 
175
175
  interface InputFieldProps {
176
- value: string | undefined;
176
+ value: string | undefined | number;
177
177
  onChange: (value: string | undefined) => void;
178
178
  placeholder?: string;
179
179
  title?: string;
package/dist/index.d.ts CHANGED
@@ -173,7 +173,7 @@ interface TextInputProps {
173
173
  declare function TextInput({ label, placeholder, type, maxLength, required, error, value, onChange, disabled, }: TextInputProps): react_jsx_runtime.JSX.Element;
174
174
 
175
175
  interface InputFieldProps {
176
- value: string | undefined;
176
+ value: string | undefined | number;
177
177
  onChange: (value: string | undefined) => void;
178
178
  placeholder?: string;
179
179
  title?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esic-lab/data-core-ui",
3
- "version": "0.0.20",
3
+ "version": "0.0.21",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",