react-luminus-components 1.0.1 → 1.0.2

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.
@@ -3,5 +3,7 @@ type HookFormCheckInputProps = {
3
3
  label: string;
4
4
  resetsFields?: string[];
5
5
  type?: 'switch' | 'checkbox';
6
+ hidden?: boolean;
7
+ disabled?: boolean;
6
8
  };
7
9
  export default HookFormCheckInputProps;
@@ -5,5 +5,7 @@ type HookFormEmployeePickerProps = {
5
5
  defaultSelection: NameIdIntModel | null;
6
6
  size?: 'sm' | 'lg';
7
7
  resetsFields?: string[];
8
+ hidden?: boolean;
9
+ disabled?: boolean;
8
10
  };
9
11
  export default HookFormEmployeePickerProps;
@@ -3,5 +3,7 @@ type HookFormRadioInputProps = {
3
3
  formField: string;
4
4
  options: NameIdStringModel[];
5
5
  resetsFields?: string[];
6
+ hidden?: boolean;
7
+ disabled?: boolean;
6
8
  };
7
9
  export default HookFormRadioInputProps;
@@ -8,5 +8,7 @@ type HookFormSelectInputProps = {
8
8
  resetsFields?: string[];
9
9
  showClearIcon?: boolean;
10
10
  clearValue?: string | number;
11
+ hidden?: boolean;
12
+ disabled?: boolean;
11
13
  };
12
14
  export default HookFormSelectInputProps;
@@ -5,5 +5,7 @@ type HookFormTextAreaInputProps = {
5
5
  resetsFields?: string[];
6
6
  showClearIcon?: boolean;
7
7
  clearValue?: string | number;
8
+ hidden?: boolean;
9
+ disabled?: boolean;
8
10
  };
9
11
  export default HookFormTextAreaInputProps;
@@ -7,5 +7,7 @@ type HookFormTextInputProps = {
7
7
  resetsFields?: string[];
8
8
  showClearIcon?: boolean;
9
9
  clearValue?: string | number;
10
+ hidden?: boolean;
11
+ disabled?: boolean;
10
12
  };
11
13
  export default HookFormTextInputProps;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-luminus-components",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Library of React Components reusable in Luminus projects (Fleetman, CAFM)",
5
5
  "repository": {
6
6
  "type": "git",