eglador-ui-react 0.1.0-alpha.5 → 0.1.0-alpha.7

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/README.md CHANGED
@@ -75,10 +75,11 @@ npm run typecheck # run typescript type checking
75
75
 
76
76
  ## Publishing
77
77
 
78
- ```bash
79
- npm version patch # bump version (e.g. 0.1.2 -> 0.1.3)
80
- npm publish # publish to npm (runs typecheck + build automatically)
81
- ```
78
+ Publishing is automated via GitHub Actions. When a GitHub Release is created, the package is automatically published to npm.
79
+
80
+ 1. Update `version` in `package.json`
81
+ 2. Commit and push
82
+ 3. Create a GitHub Release with a matching tag (e.g. `v0.1.0-alpha.6`)
82
83
 
83
84
  ## Compatibility
84
85
 
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ "use client";
1
2
  "use strict";
2
3
  var __create = Object.create;
3
4
  var __defProp = Object.defineProperty;
@@ -4958,7 +4959,7 @@ function ModalContent({ className, children }) {
4958
4959
  /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
4959
4960
  "div",
4960
4961
  {
4961
- className: "fixed inset-0 z-[9999] flex items-center justify-center bg-black/40 backdrop-blur-sm",
4962
+ className: "fixed inset-0 z-9999 flex items-center justify-center bg-black/40 backdrop-blur-sm",
4962
4963
  onClick: handleBackdropClick,
4963
4964
  "aria-hidden": "true",
4964
4965
  children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
@@ -5154,7 +5155,7 @@ function MultiSelect({
5154
5155
  disabled,
5155
5156
  onClick: () => !disabled && setIsOpen((prev) => !prev),
5156
5157
  className: cn(
5157
- "flex w-full items-center justify-between rounded-lg border bg-white px-3 py-2 text-[13px] font-medium transition-all duration-200 outline-none min-h-[38px]",
5158
+ "flex w-full items-center justify-between rounded-lg border bg-white px-3 py-2 text-[13px] font-medium transition-all duration-200 outline-none min-h-9.5",
5158
5159
  disabled ? "opacity-50 cursor-not-allowed border-zinc-200 text-zinc-400" : "cursor-pointer",
5159
5160
  isOpen ? "border-zinc-400 ring-2 ring-zinc-50 text-zinc-900" : "border-zinc-200 text-zinc-700 hover:border-zinc-300 hover:bg-zinc-50"
5160
5161
  ),
@@ -5163,7 +5164,7 @@ function MultiSelect({
5163
5164
  visibleChips.map((opt) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(
5164
5165
  "span",
5165
5166
  {
5166
- className: "inline-flex items-center gap-1 bg-zinc-100 text-zinc-700 rounded-md px-1.5 py-0.5 text-xs font-medium max-w-[120px]",
5167
+ className: "inline-flex items-center gap-1 bg-zinc-100 text-zinc-700 rounded-md px-1.5 py-0.5 text-xs font-medium max-w-30",
5167
5168
  children: [
5168
5169
  /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: "truncate", children: opt.label }),
5169
5170
  !disabled && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(