feat: add a custom 'curve-data-table' component#89
Open
loofpc wants to merge 16 commits into
Open
Conversation
sjoerdbeentjes
requested changes
Jul 13, 2026
sjoerdbeentjes
left a comment
Collaborator
There was a problem hiding this comment.
Paar kleine comments, maar ziet er goed uit!
The link variant now uses the dedicated --link design token instead of --primary in both the React and Angular buttons, exposing a matching text-link utility via a --color-link theme mapping so link text picks up the theme- and mode-specific colour.
rm -rf/cp -RL require a POSIX shell and fail on Windows. Replace them with a Node script using fs.rmSync/fs.cpSync so the font-file copy step works the same on every OS.
Internal build tooling change, no consumer-facing effect on the published package output.
Neither published package (curve-react, curve-angular per package.json publishConfig) had a README, so npm/GitHub package pages had nothing to show. Covers install, peer deps, usage, theming, and a Storybook link for the full component set.
…e-wrapper # Conflicts: # apps/angular-app/CHANGELOG.md # apps/angular-app/package.json # apps/react-app/CHANGELOG.md # apps/react-app/package.json # packages/angular/CHANGELOG.md # packages/angular/package.json # packages/contracts/CHANGELOG.md # packages/contracts/package.json # packages/react/CHANGELOG.md # packages/react/package.json # packages/storybook-config/CHANGELOG.md # packages/storybook-config/package.json # packages/tokens/CHANGELOG.md # packages/tokens/package.json # packages/typescript-config/CHANGELOG.md # packages/typescript-config/package.json
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.
Adds a
curve-data-tablecomponent that wraps thedata-tablecomponent.Features in this PR:
curve-data-tablecomponent itself, with various components and models for cell rendering etc. neatly split into separate files./tablepage that shows the same table content as the/demopage but using the new wrapper component.CurveDataTableStorybook page that shows the same table as theDataTablepage. This has just one interactive story for now. Since this component differs in options from the regular DataTable, it might not be feasible or desireable to create the same stories.