@l3mpire/ui 2.15.0 → 2.15.2
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/USAGE.md +1 -1
- package/dist/index.js +3 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/USAGE.md
CHANGED
|
@@ -56,7 +56,7 @@ import { Icon, faHomeOutline, faHomeSolid } from "@l3mpire/icons";
|
|
|
56
56
|
|
|
57
57
|
All icons come in `Outline` + `Solid` pairs:
|
|
58
58
|
|
|
59
|
-
`faCheck`, `faXmark`, `faPlus`, `faMinus`, `faPen`, `faTrash`, `faTrashCan`, `faMagnifyingGlass`, `faChevronDown`, `faChevronUp`, `faChevronLeft`, `faChevronRight`, `faArrowLeft`, `faArrowRight`, `faArrowUp`, `faArrowDown`, `faEllipsis`, `faEllipsisVertical`, `faSpinner`, `faCircleNotch`, `faTriangleExclamation`, `faCircleExclamation`, `faCircleCheck`, `faCircleInfo`, `faCircleXmark`, `faBell`, `faGear`, `faUser`, `faUsers`, `faEnvelope`, `faPaperPlane`, `faLink`, `faCopy`, `faDownload`, `faUpload`, `faFilter`, `faSort`, `faStar`, `faHeart`, `faEye`, `faEyeSlash`, `faLock`, `faUnlock`, `faCalendar`, `faClock`, `faHome`, `faFolder`, `faFile`, `faBookmark`, `faComment`, `faMessage`, `faSquarePlus`, `faSquareCheck`, `faPenToSquare`, `faPaperPlaneTop`, `faAddressBook`, `faBuildings`, `faChartLineUp`, `faInbox`, `faPhone`, `faVideo`, `faCoin`, `faStars`, `faArrowLeftFromLine`, `faGripDotsVertical`
|
|
59
|
+
`faCheck`, `faXmark`, `faPlus`, `faMinus`, `faPen`, `faTrash`, `faTrashCan`, `faMagnifyingGlass`, `faChevronDown`, `faChevronUp`, `faChevronLeft`, `faChevronRight`, `faArrowLeft`, `faArrowRight`, `faArrowUp`, `faArrowDown`, `faEllipsis`, `faEllipsisVertical`, `faSpinner`, `faCircleNotch`, `faTriangleExclamation`, `faCircleExclamation`, `faCircleCheck`, `faCircleInfo`, `faCircleXmark`, `faBell`, `faGear`, `faUser`, `faUsers`, `faEnvelope`, `faPaperPlane`, `faLink`, `faCopy`, `faDownload`, `faUpload`, `faFilter`, `faSort`, `faStar`, `faHeart`, `faEye`, `faEyeSlash`, `faLock`, `faUnlock`, `faCalendar`, `faClock`, `faHome`, `faFolder`, `faFile`, `faBookmark`, `faComment`, `faMessage`, `faSquarePlus`, `faSquareCheck`, `faPenToSquare`, `faPaperPlaneTop`, `faAddressBook`, `faBuildings`, `faChartLineUp`, `faInbox`, `faPhone`, `faVideo`, `faCoin`, `faStars`, `faArrowLeftFromLine`, `faGripDotsVertical`, `faPause`
|
|
60
60
|
|
|
61
61
|
---
|
|
62
62
|
|
package/dist/index.js
CHANGED
|
@@ -1145,12 +1145,11 @@ var BulkAction = React5.forwardRef(
|
|
|
1145
1145
|
}
|
|
1146
1146
|
) }),
|
|
1147
1147
|
/* @__PURE__ */ (0, import_jsx_runtime5.jsx)(DropdownMenuContent, { align: "end", side: "top", sideOffset: 8, children: overflowItems.map((item) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
|
|
1148
|
-
|
|
1148
|
+
DropdownMenuItem,
|
|
1149
1149
|
{
|
|
1150
1150
|
icon: item.icon,
|
|
1151
1151
|
label: item.label,
|
|
1152
|
-
|
|
1153
|
-
onSelect: () => item.onClick?.()
|
|
1152
|
+
onClick: () => !item.disabled && item.onClick?.()
|
|
1154
1153
|
},
|
|
1155
1154
|
item.id
|
|
1156
1155
|
)) })
|
|
@@ -8200,7 +8199,7 @@ var AdvancedPopover = ({
|
|
|
8200
8199
|
"data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95",
|
|
8201
8200
|
"data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95",
|
|
8202
8201
|
"data-[side=bottom]:slide-in-from-top-2",
|
|
8203
|
-
"w-[min(640px,calc(100vw-32px))]"
|
|
8202
|
+
"w-[min(640px,calc(100vw-32px))] min-w-[360px]"
|
|
8204
8203
|
),
|
|
8205
8204
|
children: [
|
|
8206
8205
|
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("div", { className: "flex flex-col gap-base p-base", children: filters.length > 0 ? filters.map((node, i) => renderNode(node, i)) : /* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|