@hexure/ui 1.13.56 → 1.13.58

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.
@@ -17,6 +17,7 @@ export interface CheckboxProps extends AccessibleProps {
17
17
  tooltip?: TooltipProps;
18
18
  /** Optional ID for automation purposes */
19
19
  dataItemid?: string;
20
+ isInvalidRedBackground?: boolean;
20
21
  }
21
22
  declare const Checkbox: FC<CheckboxProps>;
22
23
  export default Checkbox;
@@ -35,6 +35,7 @@ export interface InputProps extends AccessibleProps {
35
35
  mask?: string;
36
36
  onPaste?: (e?: any) => void;
37
37
  autoComplete?: React.InputHTMLAttributes<HTMLInputElement>['autoComplete'];
38
+ isInvalidRedBackground?: boolean;
38
39
  }
39
40
  declare const Input: FC<InputProps>;
40
41
  export default Input;
@@ -18,6 +18,7 @@ export interface RadioProps extends AccessibleProps {
18
18
  tooltip?: TooltipProps;
19
19
  /** Optional ID for automation purposes */
20
20
  dataItemid?: string;
21
+ isInvalidRedBackground?: boolean;
21
22
  }
22
23
  declare const Radio: FC<RadioProps>;
23
24
  export default Radio;
@@ -29,6 +29,7 @@ export interface SelectProps extends AccessibleProps {
29
29
  onSearch?: (searchTerm: string) => void;
30
30
  /** Optional ID for automation purposes */
31
31
  dataItemid?: string;
32
+ isInvalidRedBackground?: boolean;
32
33
  }
33
34
  declare const Select: FC<SelectProps>;
34
35
  export default Select;
package/dist/index.d.ts CHANGED
@@ -217,6 +217,7 @@ interface CheckboxProps extends AccessibleProps {
217
217
  tooltip?: TooltipProps;
218
218
  /** Optional ID for automation purposes */
219
219
  dataItemid?: string;
220
+ isInvalidRedBackground?: boolean;
220
221
  }
221
222
  declare const Checkbox: FC<CheckboxProps>;
222
223
 
@@ -419,6 +420,7 @@ interface InputProps extends AccessibleProps {
419
420
  mask?: string;
420
421
  onPaste?: (e?: any) => void;
421
422
  autoComplete?: React.InputHTMLAttributes<HTMLInputElement>['autoComplete'];
423
+ isInvalidRedBackground?: boolean;
422
424
  }
423
425
  declare const Input: FC<InputProps>;
424
426
 
@@ -594,6 +596,7 @@ interface RadioProps extends AccessibleProps {
594
596
  tooltip?: TooltipProps;
595
597
  /** Optional ID for automation purposes */
596
598
  dataItemid?: string;
599
+ isInvalidRedBackground?: boolean;
597
600
  }
598
601
  declare const Radio: FC<RadioProps>;
599
602
 
@@ -640,6 +643,7 @@ interface SelectProps extends AccessibleProps {
640
643
  onSearch?: (searchTerm: string) => void;
641
644
  /** Optional ID for automation purposes */
642
645
  dataItemid?: string;
646
+ isInvalidRedBackground?: boolean;
643
647
  }
644
648
  declare const Select: FC<SelectProps>;
645
649
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hexure/ui",
3
- "version": "1.13.56",
3
+ "version": "1.13.58",
4
4
  "description": "A library of shared UI components used within Hexure products.",
5
5
  "scripts": {
6
6
  "rollup": "rollup -c rollup.config.mjs",