@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.cjs
CHANGED
|
@@ -15150,7 +15150,8 @@ function SelectCheckboxOption(props) {
|
|
|
15150
15150
|
disabled: isDisabled,
|
|
15151
15151
|
size: "s",
|
|
15152
15152
|
tabIndex: -1,
|
|
15153
|
-
className: "pointer-events-none shrink-0"
|
|
15153
|
+
className: "pointer-events-none shrink-0",
|
|
15154
|
+
onClick: (event) => event.stopPropagation()
|
|
15154
15155
|
}
|
|
15155
15156
|
),
|
|
15156
15157
|
/* @__PURE__ */ (0, import_jsx_runtime165.jsxs)("span", { className: "flex min-w-0 flex-1 items-center justify-between gap-2", children: [
|
|
@@ -15268,7 +15269,8 @@ function SelectAllRow({ label, checked, disabled, onToggle }) {
|
|
|
15268
15269
|
disabled,
|
|
15269
15270
|
size: "s",
|
|
15270
15271
|
tabIndex: -1,
|
|
15271
|
-
className: "pointer-events-none shrink-0"
|
|
15272
|
+
className: "pointer-events-none shrink-0",
|
|
15273
|
+
onClick: (event) => event.stopPropagation()
|
|
15272
15274
|
}
|
|
15273
15275
|
),
|
|
15274
15276
|
/* @__PURE__ */ (0, import_jsx_runtime167.jsx)("span", { className: "flex-1", children: label })
|