fis-component 0.1.4 → 0.1.5

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.
@@ -12,6 +12,8 @@ export interface InputTextProps extends InputFieldProps, Partial<InputLabelProps
12
12
  onEnter?: (value: string | null) => void;
13
13
  /** Handle onKeyDown action */
14
14
  onKeyDown?: (event: unknown) => void;
15
+ /** Trim whitespace from value on blur */
16
+ isTrimValue?: boolean;
15
17
  }
16
18
  declare const FISInputText: React.ForwardRefExoticComponent<InputTextProps & React.RefAttributes<HTMLInputElement>>;
17
19
  export default FISInputText;
package/dist/index.d.ts CHANGED
@@ -3762,6 +3762,8 @@ interface InputTextProps extends InputFieldProps, Partial<InputLabelProps> {
3762
3762
  onEnter?: (value: string | null) => void;
3763
3763
  /** Handle onKeyDown action */
3764
3764
  onKeyDown?: (event: unknown) => void;
3765
+ /** Trim whitespace from value on blur */
3766
+ isTrimValue?: boolean;
3765
3767
  }
3766
3768
  declare const FISInputText: React__default.ForwardRefExoticComponent<InputTextProps & React__default.RefAttributes<HTMLInputElement>>;
3767
3769
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "homepage": "https://vietdiemtran.github.io/fis-component/",
3
3
  "name": "fis-component",
4
- "version": "0.1.4",
4
+ "version": "0.1.5",
5
5
  "description": "",
6
6
  "main": "dist/cjs/index.js",
7
7
  "module": "dist/esm/index.js",