@hexure/ui 1.14.11 → 1.14.12

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.
@@ -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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hexure/ui",
3
- "version": "1.14.11",
3
+ "version": "1.14.12",
4
4
  "description": "A library of shared UI components used within Hexure products.",
5
5
  "scripts": {
6
6
  "rollup": "rollup -c rollup.config.mjs",