@hexure/ui 1.14.11 → 1.14.13
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 +23 -13
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Checkbox/Checkbox.d.ts +2 -0
- package/dist/cjs/types/components/Radio/Radio.d.ts +2 -0
- package/dist/esm/index.js +23 -13
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Checkbox/Checkbox.d.ts +2 -0
- package/dist/esm/types/components/Radio/Radio.d.ts +2 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -21,6 +21,8 @@ export interface CheckboxProps extends AccessibleProps {
|
|
|
21
21
|
isWarningError?: boolean;
|
|
22
22
|
dataSectionName?: string;
|
|
23
23
|
isLabelBold?: boolean;
|
|
24
|
+
/** Location of the label: "Bottom" or "Right" (default: "Right") */
|
|
25
|
+
labelLoc?: 'Bottom' | 'Right';
|
|
24
26
|
}
|
|
25
27
|
declare const Checkbox: FC<CheckboxProps>;
|
|
26
28
|
export default Checkbox;
|
|
@@ -21,6 +21,8 @@ export interface RadioProps extends AccessibleProps {
|
|
|
21
21
|
isInvalidRedBackground?: boolean;
|
|
22
22
|
isWarningError?: boolean;
|
|
23
23
|
isLabelBold?: boolean;
|
|
24
|
+
/** Location of the label: "Bottom" or "Right" (default: "Right") */
|
|
25
|
+
labelLoc?: 'Bottom' | 'Right';
|
|
24
26
|
}
|
|
25
27
|
declare const Radio: FC<RadioProps>;
|
|
26
28
|
export default Radio;
|
package/dist/index.d.ts
CHANGED
|
@@ -238,6 +238,8 @@ interface CheckboxProps extends AccessibleProps {
|
|
|
238
238
|
isWarningError?: boolean;
|
|
239
239
|
dataSectionName?: string;
|
|
240
240
|
isLabelBold?: boolean;
|
|
241
|
+
/** Location of the label: "Bottom" or "Right" (default: "Right") */
|
|
242
|
+
labelLoc?: 'Bottom' | 'Right';
|
|
241
243
|
}
|
|
242
244
|
declare const Checkbox: FC<CheckboxProps>;
|
|
243
245
|
|
|
@@ -641,6 +643,8 @@ interface RadioProps extends AccessibleProps {
|
|
|
641
643
|
isInvalidRedBackground?: boolean;
|
|
642
644
|
isWarningError?: boolean;
|
|
643
645
|
isLabelBold?: boolean;
|
|
646
|
+
/** Location of the label: "Bottom" or "Right" (default: "Right") */
|
|
647
|
+
labelLoc?: 'Bottom' | 'Right';
|
|
644
648
|
}
|
|
645
649
|
declare const Radio: FC<RadioProps>;
|
|
646
650
|
|