@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.
- package/dist/cjs/index.js +16 -10
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Checkbox/Checkbox.d.ts +1 -0
- package/dist/cjs/types/components/Input/Input.d.ts +1 -0
- package/dist/cjs/types/components/Radio/Radio.d.ts +1 -0
- package/dist/cjs/types/components/Select/Select.d.ts +1 -0
- package/dist/esm/index.js +16 -10
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Checkbox/Checkbox.d.ts +1 -0
- package/dist/esm/types/components/Input/Input.d.ts +1 -0
- package/dist/esm/types/components/Radio/Radio.d.ts +1 -0
- package/dist/esm/types/components/Select/Select.d.ts +1 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -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
|
|