baaz-custom-components 5.2.6 → 5.2.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/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +15 -13
- package/dist/index.mjs +15 -13
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -2375,19 +2375,21 @@ function SelectionBar({
|
|
|
2375
2375
|
" selected"
|
|
2376
2376
|
] }),
|
|
2377
2377
|
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: "h-4 w-px bg-border mx-1" }),
|
|
2378
|
-
actions.map(
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2378
|
+
actions.map(
|
|
2379
|
+
(action) => action.scope && /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
2380
|
+
"button",
|
|
2381
|
+
{
|
|
2382
|
+
onClick: () => onAction(action.id, selectedData),
|
|
2383
|
+
title: action.label,
|
|
2384
|
+
className: "flex items-center gap-1.5 px-2.5 py-1.5 rounded-md text-xs font-medium border border-border bg-primary/90 hover:bg-primary ease-in-out transition-colors cursor-pointer whitespace-nowrap",
|
|
2385
|
+
children: [
|
|
2386
|
+
action.icon && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: "shrink-0 text-muted-foreground", children: action.icon }),
|
|
2387
|
+
action.label
|
|
2388
|
+
]
|
|
2389
|
+
},
|
|
2390
|
+
action.id
|
|
2391
|
+
)
|
|
2392
|
+
)
|
|
2391
2393
|
] });
|
|
2392
2394
|
}
|
|
2393
2395
|
|
package/dist/index.mjs
CHANGED
|
@@ -2344,19 +2344,21 @@ function SelectionBar({
|
|
|
2344
2344
|
" selected"
|
|
2345
2345
|
] }),
|
|
2346
2346
|
/* @__PURE__ */ jsx24("div", { className: "h-4 w-px bg-border mx-1" }),
|
|
2347
|
-
actions.map(
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2347
|
+
actions.map(
|
|
2348
|
+
(action) => action.scope && /* @__PURE__ */ jsxs18(
|
|
2349
|
+
"button",
|
|
2350
|
+
{
|
|
2351
|
+
onClick: () => onAction(action.id, selectedData),
|
|
2352
|
+
title: action.label,
|
|
2353
|
+
className: "flex items-center gap-1.5 px-2.5 py-1.5 rounded-md text-xs font-medium border border-border bg-primary/90 hover:bg-primary ease-in-out transition-colors cursor-pointer whitespace-nowrap",
|
|
2354
|
+
children: [
|
|
2355
|
+
action.icon && /* @__PURE__ */ jsx24("span", { className: "shrink-0 text-muted-foreground", children: action.icon }),
|
|
2356
|
+
action.label
|
|
2357
|
+
]
|
|
2358
|
+
},
|
|
2359
|
+
action.id
|
|
2360
|
+
)
|
|
2361
|
+
)
|
|
2360
2362
|
] });
|
|
2361
2363
|
}
|
|
2362
2364
|
|