@overmap-ai/blocks 1.0.24 → 1.0.25-component-forms.0
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/Checkbox/typings.d.ts +2 -0
- package/dist/blocks.js +16 -9
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +16 -9
- package/dist/blocks.umd.cjs.map +1 -1
- package/dist/style.css +6 -11
- package/package.json +1 -1
package/dist/blocks.umd.cjs
CHANGED
|
@@ -3278,22 +3278,29 @@
|
|
|
3278
3278
|
}
|
|
3279
3279
|
const $e698a72e93240346$export$be92b6f5f03c0fe9 = $e698a72e93240346$export$48513f6b9f8ce62d;
|
|
3280
3280
|
const $e698a72e93240346$export$adb584737d712b70 = $e698a72e93240346$export$59aad738f51d1c05;
|
|
3281
|
-
const
|
|
3282
|
-
const
|
|
3283
|
-
const
|
|
3284
|
-
const
|
|
3285
|
-
const
|
|
3286
|
-
const checkboxHidden = "_checkboxHidden_pb9za_51";
|
|
3281
|
+
const checkbox = "_checkbox_yl8iy_5";
|
|
3282
|
+
const checkboxIndicator = "_checkboxIndicator_yl8iy_22";
|
|
3283
|
+
const checkboxLabel = "_checkboxLabel_yl8iy_33";
|
|
3284
|
+
const noTextHighlight = "_noTextHighlight_yl8iy_37";
|
|
3285
|
+
const checkboxHidden = "_checkboxHidden_yl8iy_46";
|
|
3287
3286
|
const styles$2 = {
|
|
3288
|
-
checkboxContainer,
|
|
3289
3287
|
checkbox,
|
|
3290
3288
|
checkboxIndicator,
|
|
3291
3289
|
checkboxLabel,
|
|
3292
3290
|
noTextHighlight,
|
|
3293
3291
|
checkboxHidden
|
|
3294
3292
|
};
|
|
3295
|
-
const _Checkbox = React.forwardRef(function Checkbox2({
|
|
3296
|
-
|
|
3293
|
+
const _Checkbox = React.forwardRef(function Checkbox2({
|
|
3294
|
+
className,
|
|
3295
|
+
labelClassName,
|
|
3296
|
+
label,
|
|
3297
|
+
checked,
|
|
3298
|
+
onCheckedChange,
|
|
3299
|
+
checkboxPosition = "center",
|
|
3300
|
+
alwaysShow = true,
|
|
3301
|
+
...rest
|
|
3302
|
+
}, ref) {
|
|
3303
|
+
return /* @__PURE__ */ jsxRuntime.jsx(HoverUtility, { children: ({ isHovered, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(themes.Flex, { align: checkboxPosition, ...props, children: [
|
|
3297
3304
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3298
3305
|
$e698a72e93240346$export$be92b6f5f03c0fe9,
|
|
3299
3306
|
{
|