eai-frontend-components 2.0.87 → 2.0.89
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 +6 -6
- package/dist/index.esm.js +5 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10186,8 +10186,11 @@ function NodeCard({ node, onNodeClick, isExpanded, hasChildren, onToggle }) {
|
|
|
10186
10186
|
}
|
|
10187
10187
|
function OrgChartTreeNode({ node, onNodeClick, defaultExpanded, renderNode }) {
|
|
10188
10188
|
const [isExpanded, setIsExpanded] = React$1.useState(defaultExpanded);
|
|
10189
|
-
const children = node
|
|
10189
|
+
const children = node?.children ?? [];
|
|
10190
10190
|
const hasChildren = children.length > 0;
|
|
10191
|
+
if (!node) {
|
|
10192
|
+
return jsxRuntime.jsx("div", { className: 'flex flex-col items-center text-sm font-medium', children: "Nenhum dado dispon\u00EDvel" });
|
|
10193
|
+
}
|
|
10191
10194
|
const cardProps = {
|
|
10192
10195
|
node,
|
|
10193
10196
|
onNodeClick,
|
|
@@ -10213,7 +10216,7 @@ function OrgChart({ defaultSearch, setSearch, actions, data, onNodeClick, defaul
|
|
|
10213
10216
|
setSearch?.(value);
|
|
10214
10217
|
}, 300);
|
|
10215
10218
|
};
|
|
10216
|
-
return (jsxRuntime.jsxs("div", { className: 'flex
|
|
10219
|
+
return (jsxRuntime.jsxs("div", { className: 'flex flex-col flex-1 gap-4', 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
10220
|
handleSearchChange(event);
|
|
10218
10221
|
}, 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
10222
|
}
|