@exxatdesignux/ui 0.5.6 → 0.5.8
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/CHANGELOG.md +16 -0
- package/consumer-extras/cursor-rules/exxat-ds-agents.mdc +2 -0
- package/consumer-extras/cursor-skills/exxat-ux-audit/SKILL.md +303 -0
- package/dist/components/data-table/index.js +1 -1
- package/dist/components/data-table/index.js.map +1 -1
- package/dist/components/data-table/pagination.js +1 -1
- package/dist/components/data-table/pagination.js.map +1 -1
- package/dist/components/data-views/hub-table.js +1 -1
- package/dist/components/data-views/hub-table.js.map +1 -1
- package/dist/components/data-views/index.js +1 -1
- package/dist/components/data-views/index.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/data-table/index.tsx +1 -1
- package/tokens/hooks-index.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exxatdesignux/ui",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.8",
|
|
4
4
|
"description": "Exxat shared design system (components, hooks, tokens). Monorepo setup: clone repo then pnpm bootstrap at workspace root — see github.com/ExxatDesign/Exxat-DS-Workspace README.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "Exxat Design",
|
|
@@ -815,7 +815,7 @@ function DataTableInner<TData extends Record<string, unknown>>({
|
|
|
815
815
|
const table = el.querySelector("table")
|
|
816
816
|
if (table) ro.observe(table)
|
|
817
817
|
return () => ro.disconnect()
|
|
818
|
-
}, [totalWidth, displayCols.length, checkOverflow])
|
|
818
|
+
}, [totalWidth, displayCols.length, checkOverflow, scrollRef])
|
|
819
819
|
|
|
820
820
|
/** Pending action queued from a column-menu item that should run *after* the menu
|
|
821
821
|
* has fully closed. The Properties drawer is a non-modal Radix Sheet (`modal=false`)
|
package/tokens/hooks-index.json
CHANGED