[ENG-46087] feat(webkit): replace data-table with composable Table + Paginator#667
Open
HerbertJulio wants to merge 5 commits into
Open
[ENG-46087] feat(webkit): replace data-table with composable Table + Paginator#667HerbertJulio wants to merge 5 commits into
HerbertJulio wants to merge 5 commits into
Conversation
…Paginator Headless, composable Table (TanStack-backed data-driven mode) + Paginator with their sub-components, replacing the monolithic data-table. Stories under stories/components/data with Components/Data/* titles; flat exports (@aziontech/webkit/table, /paginator, ...). Shared rule/doc updates (compound-api, dependencies exception, _template, component-scaffold) ship in a companion docs PR.
… Table autodocs events these are slot-driven story interactions, not component emits; recategorized so the autodocs Events tab lists only the real emits (update:* and row-click).
| "./data-table-toolbar": "./src/components/data/data-table/data-table-toolbar.vue", | ||
| "./data-table-view-all-footer": "./src/components/data/data-table/data-table-view-all-footer.vue", | ||
| "./data-table-view-toggle": "./src/components/data/data-table/data-table-view-toggle.vue", | ||
| "./table": "./src/components/data/table/index.ts", |
Contributor
There was a problem hiding this comment.
Add the table.vue export
robsongajunior
requested changes
Jun 26, 2026
…ble-table # Conflicts: # eslint.config.js
…paginator Align table + paginator with the compound-api rule and the dev convention (per-component package.json removed repo-wide): the root packages/webkit/package.json#exports already points each public path at its source file, so the per-folder package.json files were never consulted. Update .specs/table.md and .specs/paginator.md anatomy to match (no per-component package.json; .d.ts generated at publish), fix the export paths to the flat form, and recompute the approved-spec checksums.
The toolbar/filters demo imported a removable chip component that is not yet available on this branch; remove the toolbar machinery (FullExample story, FULL_TOOLBAR/SOURCE_TOOLBAR, the toolbar params, and the now-unused Chip + Table.Search imports) so the Table stories render. The component still exposes the title/toolbar/filters slots — only the story demo is deferred until chips lands.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Rebuilt on top of
devin the current repo format. Supersedes #653.data-table(removed).apps/storybook/src/stories/components/data/withComponents/Data/*titles.@aziontech/webkit/table,@aziontech/webkit/paginator,@aziontech/webkit/table-row, … (per.claude/rules/imports.md). The old prefixed./data/*/./content/*export keys from the original branch were flattened.eslint.config.jsglobals +.storybook/main.jsdocgen ordering (needed for composition autodocs).Dependency
Introduces
@tanstack/vue-table(headless table state engine). Its governance — thedependencies.mdexception + thecompound-apirule — ships in the companion docs PR #666 (merge that alongside / first).Notes
Replaces #653, branched from
main(pre-dev-reorg). Doc/rule/template updates are split into #666.