@hortiview/shared-components 0.0.11102 → 0.0.11114

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.
@@ -22,7 +22,7 @@ export type FormNumberProps<T extends FieldValues> = {
22
22
  * the maximal allowed number input
23
23
  */
24
24
  maxValue?: number;
25
- } & Pick<TextfieldProps, 'className' | 'disabled' | 'helperText' | 'helperTextPersistent' | 'helperTextValidation' | 'label' | 'leadingIcon' | 'trailingIcon'> & Pick<NumericFormatProps,
25
+ } & Pick<TextfieldProps, 'className' | 'disabled' | 'helperText' | 'helperTextPersistent' | 'helperTextValidation' | 'label' | 'leadingIcon' | 'trailingIcon'> & Partial<Pick<NumericFormatProps,
26
26
  /**
27
27
  * limits the number of digits after the decimal point
28
28
  */
@@ -59,7 +59,7 @@ export type FormNumberProps<T extends FieldValues> = {
59
59
  /** a suffix to be shown before the number */
60
60
  | 'suffix'
61
61
  /** a prefix to be shown after the number */
62
- | 'prefix'>;
62
+ | 'prefix'>>;
63
63
  /**
64
64
  * Number input field that formats the user input depending on the user language
65
65
  * the input automatically sets the language specific thousand separators
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hortiview/shared-components",
3
3
  "description": "This is a shared component library. It should used in the HortiView platform and its modules.",
4
- "version": "0.0.11102",
4
+ "version": "0.0.11114",
5
5
  "type": "module",
6
6
  "repository": "https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared",
7
7
  "author": "Falk Menge <falk.menge.ext@bayer.com>",