eai-frontend-components 2.0.85 → 2.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/index.d.ts +10 -10
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10213,7 +10213,7 @@ function OrgChart({ defaultSearch, setSearch, actions, data, onNodeClick, defaul
|
|
|
10213
10213
|
setSearch?.(value);
|
|
10214
10214
|
}, 300);
|
|
10215
10215
|
};
|
|
10216
|
-
return (jsxRuntime.jsxs("div", { className: 'flex h-full flex-col gap-4 overflow-x-auto', children: [jsxRuntime.jsxs("div", { className: 'flex items-
|
|
10216
|
+
return (jsxRuntime.jsxs("div", { className: 'flex h-full flex-col gap-4 overflow-x-auto', children: [jsxRuntime.jsxs("div", { className: 'flex items-end justify-between space-x-6', children: [jsxRuntime.jsx("div", { className: 'flex gap-x-4', children: jsxRuntime.jsxs("div", { className: 'flex bg-background items-center border border-slate-300 rounded-sm w-[350px] overflow-hidden focus-within:outline-none focus-within:ring-2 focus-within:ring-ring focus-within:ring-offset-2 group', children: [jsxRuntime.jsx("div", { className: 'pl-3.5 transform transition-transform duration-300 group-hover:-translate-x-1', children: jsxRuntime.jsx(lucideReact.Search, { size: 18, className: 'w-5 h-5 stroke-zinc-500 dark:stroke-default' }) }), jsxRuntime.jsx("input", { placeholder: 'Buscar', defaultValue: defaultSearch, onChange: (event) => {
|
|
10217
10217
|
handleSearchChange(event);
|
|
10218
10218
|
}, className: 'w-full bg-background text-default border-none focus:ring-0 focus:outline-none px-3 py-2 transform transition-transform duration-300 group-hover:-translate-x-1 ' })] }) }), jsxRuntime.jsx("div", { className: 'flex space-x-4 content-end', children: actions?.map((action, index) => (jsxRuntime.jsx("div", { children: jsxRuntime.jsxs(Button, { type: 'button', onClick: () => action.onClick?.(), className: cn(action.className), variant: action.variant || 'default', disabled: action.disabled, children: [jsxRuntime.jsx("div", { className: '[&_svg]:size-5', children: action.icon }), action.label] }) }, `action-table-${index}`))) })] }), jsxRuntime.jsx(Card, { className: 'flex-1 overflow-hidden', children: jsxRuntime.jsx(CardContent, { className: 'h-full p-0', children: jsxRuntime.jsx("div", { className: cn('w-full overflow-x-auto', className), children: jsxRuntime.jsx("div", { className: 'flex justify-center px-4 py-6', children: jsxRuntime.jsx(OrgChartTreeNode, { node: data, onNodeClick: onNodeClick, defaultExpanded: defaultExpanded, renderNode: renderNode }) }) }) }) })] }));
|
|
10219
10219
|
}
|