@overmap-ai/blocks 1.0.23-alpha.1 → 1.0.24

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.
@@ -3292,14 +3292,14 @@
3292
3292
  noTextHighlight,
3293
3293
  checkboxHidden
3294
3294
  };
3295
- const _Checkbox = React.forwardRef(function Checkbox2({ className, labelClassName, label, checked, onCheckedChange, ...rest }, ref) {
3295
+ const _Checkbox = React.forwardRef(function Checkbox2({ className, labelClassName, label, checked, onCheckedChange, alwaysShow = true, ...rest }, ref) {
3296
3296
  return /* @__PURE__ */ jsxRuntime.jsx(HoverUtility, { children: ({ isHovered, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(themes.Flex, { className: styles$2.checkboxContainer, ...props, children: [
3297
3297
  /* @__PURE__ */ jsxRuntime.jsx(
3298
3298
  $e698a72e93240346$export$be92b6f5f03c0fe9,
3299
3299
  {
3300
3300
  className: classNames(
3301
3301
  styles$2.checkbox,
3302
- !isHovered && !checked && styles$2.checkboxHidden,
3302
+ !alwaysShow && !isHovered && !checked && styles$2.checkboxHidden,
3303
3303
  className
3304
3304
  ),
3305
3305
  checked,