@chekinapp/ui 0.0.134 → 0.0.136

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 CHANGED
@@ -15122,7 +15122,7 @@ function SelectCheckboxOption(props) {
15122
15122
  onHover,
15123
15123
  innerRef
15124
15124
  } = props;
15125
- return /* @__PURE__ */ (0, import_jsx_runtime165.jsxs)(
15125
+ return /* @__PURE__ */ (0, import_jsx_runtime165.jsx)(
15126
15126
  "button",
15127
15127
  {
15128
15128
  id,
@@ -15142,22 +15142,10 @@ function SelectCheckboxOption(props) {
15142
15142
  isSelected && "bg-[var(--chekin-color-surface-autocomplete)] font-semibold text-[var(--chekin-color-brand-blue)]",
15143
15143
  isDisabled && "cursor-not-allowed text-[var(--chekin-color-gray-2)]"
15144
15144
  ),
15145
- children: [
15146
- /* @__PURE__ */ (0, import_jsx_runtime165.jsx)(
15147
- BaseCheckbox,
15148
- {
15149
- checked: isSelected,
15150
- disabled: isDisabled,
15151
- size: "s",
15152
- tabIndex: -1,
15153
- className: "pointer-events-none shrink-0"
15154
- }
15155
- ),
15156
- /* @__PURE__ */ (0, import_jsx_runtime165.jsxs)("span", { className: "flex min-w-0 flex-1 items-center justify-between gap-2", children: [
15157
- /* @__PURE__ */ (0, import_jsx_runtime165.jsx)("span", { className: "block break-words", children: option.label }),
15158
- option.description && /* @__PURE__ */ (0, import_jsx_runtime165.jsx)("span", { className: "shrink-0 text-[12px] font-medium italic text-[var(--chekin-color-gray-1)]", children: option.description })
15159
- ] })
15160
- ]
15145
+ children: /* @__PURE__ */ (0, import_jsx_runtime165.jsxs)("span", { className: "flex min-w-0 flex-1 items-center justify-between gap-2", children: [
15146
+ /* @__PURE__ */ (0, import_jsx_runtime165.jsx)("span", { className: "block break-words", children: option.label }),
15147
+ option.description && /* @__PURE__ */ (0, import_jsx_runtime165.jsx)("span", { className: "shrink-0 text-[12px] font-medium italic text-[var(--chekin-color-gray-1)]", children: option.description })
15148
+ ] })
15161
15149
  }
15162
15150
  );
15163
15151
  }
@@ -15250,7 +15238,7 @@ function createCountTrigger(opts) {
15250
15238
  // src/dashboard/select-checkboxes/SelectAllRow.tsx
15251
15239
  var import_jsx_runtime167 = require("react/jsx-runtime");
15252
15240
  function SelectAllRow({ label, checked, disabled, onToggle }) {
15253
- return /* @__PURE__ */ (0, import_jsx_runtime167.jsxs)(
15241
+ return /* @__PURE__ */ (0, import_jsx_runtime167.jsx)(
15254
15242
  "button",
15255
15243
  {
15256
15244
  type: "button",
@@ -15260,19 +15248,7 @@ function SelectAllRow({ label, checked, disabled, onToggle }) {
15260
15248
  "flex w-full items-center gap-3 border-0 border-b border-[#f2f4f8] bg-white px-4 py-[14px] text-left text-[16px] font-bold leading-5 text-[var(--chekin-color-brand-navy)] outline-none transition-colors hover:bg-[var(--chekin-color-surface-pressed)]",
15261
15249
  disabled && "cursor-default opacity-40"
15262
15250
  ),
15263
- children: [
15264
- /* @__PURE__ */ (0, import_jsx_runtime167.jsx)(
15265
- BaseCheckbox,
15266
- {
15267
- checked,
15268
- disabled,
15269
- size: "s",
15270
- tabIndex: -1,
15271
- className: "pointer-events-none shrink-0"
15272
- }
15273
- ),
15274
- /* @__PURE__ */ (0, import_jsx_runtime167.jsx)("span", { className: "flex-1", children: label })
15275
- ]
15251
+ children: /* @__PURE__ */ (0, import_jsx_runtime167.jsx)("span", { className: "flex-1", children: label })
15276
15252
  }
15277
15253
  );
15278
15254
  }