@herca/r-kit 0.0.85 → 0.0.87
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/clients.cjs +6 -4
- package/dist/clients.cjs.map +1 -1
- package/dist/clients.d.cts +2 -1
- package/dist/clients.d.ts +2 -1
- package/dist/clients.js +5 -4
- package/dist/clients.js.map +1 -1
- package/package.json +1 -1
package/dist/clients.cjs
CHANGED
|
@@ -58,6 +58,7 @@ __export(clients_exports, {
|
|
|
58
58
|
Dropdown: () => Dropdown,
|
|
59
59
|
DropdownContent: () => DropdownContent,
|
|
60
60
|
DropdownItem: () => DropdownItem,
|
|
61
|
+
DropdownSeparator: () => DropdownSeparator,
|
|
61
62
|
DropdownTrigger: () => DropdownTrigger,
|
|
62
63
|
FormDescription: () => FormDescription,
|
|
63
64
|
FormErrorMessage: () => FormErrorMessage,
|
|
@@ -14389,15 +14390,15 @@ function DropdownItem({
|
|
|
14389
14390
|
return /* @__PURE__ */ (0, import_jsx_runtime420.jsx)(
|
|
14390
14391
|
DropdownMenu.Item,
|
|
14391
14392
|
{
|
|
14392
|
-
className: cn(
|
|
14393
|
-
"hover:bg-primary-50 hover:border-primary-300 flex cursor-pointer flex-row items-center gap-2 rounded-lg border border-gray-200 px-3 py-2 outline-0 transition-all",
|
|
14394
|
-
className
|
|
14395
|
-
),
|
|
14393
|
+
className: cn("px-3 py-2 outline-0 transition-all", className),
|
|
14396
14394
|
...props,
|
|
14397
14395
|
children
|
|
14398
14396
|
}
|
|
14399
14397
|
);
|
|
14400
14398
|
}
|
|
14399
|
+
function DropdownSeparator() {
|
|
14400
|
+
return /* @__PURE__ */ (0, import_jsx_runtime420.jsx)("div", { className: "border-b-1 text-gray-200" });
|
|
14401
|
+
}
|
|
14401
14402
|
|
|
14402
14403
|
// src/hooks/use-copy.ts
|
|
14403
14404
|
var import_react405 = require("react");
|
|
@@ -37572,6 +37573,7 @@ function DndItem({
|
|
|
37572
37573
|
Dropdown,
|
|
37573
37574
|
DropdownContent,
|
|
37574
37575
|
DropdownItem,
|
|
37576
|
+
DropdownSeparator,
|
|
37575
37577
|
DropdownTrigger,
|
|
37576
37578
|
FormDescription,
|
|
37577
37579
|
FormErrorMessage,
|