@chekinapp/ui 0.0.134 → 0.0.135
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/index.cjs +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14786,7 +14786,8 @@ function SelectCheckboxOption(props) {
|
|
|
14786
14786
|
disabled: isDisabled,
|
|
14787
14787
|
size: "s",
|
|
14788
14788
|
tabIndex: -1,
|
|
14789
|
-
className: "pointer-events-none shrink-0"
|
|
14789
|
+
className: "pointer-events-none shrink-0",
|
|
14790
|
+
onClick: (event) => event.stopPropagation()
|
|
14790
14791
|
}
|
|
14791
14792
|
),
|
|
14792
14793
|
/* @__PURE__ */ jsxs102("span", { className: "flex min-w-0 flex-1 items-center justify-between gap-2", children: [
|
|
@@ -14904,7 +14905,8 @@ function SelectAllRow({ label, checked, disabled, onToggle }) {
|
|
|
14904
14905
|
disabled,
|
|
14905
14906
|
size: "s",
|
|
14906
14907
|
tabIndex: -1,
|
|
14907
|
-
className: "pointer-events-none shrink-0"
|
|
14908
|
+
className: "pointer-events-none shrink-0",
|
|
14909
|
+
onClick: (event) => event.stopPropagation()
|
|
14908
14910
|
}
|
|
14909
14911
|
),
|
|
14910
14912
|
/* @__PURE__ */ jsx165("span", { className: "flex-1", children: label })
|