Skip to content

Commit

Permalink
feat(react,core): add Table component
Browse files Browse the repository at this point in the history
  • Loading branch information
cafrias committed Dec 9, 2024
1 parent 3a6f491 commit cfbc194
Show file tree
Hide file tree
Showing 66 changed files with 2,390 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
"**/static/**",
"**/yarn.lock",
"public/**",
"website/src/theme/(Navbar|SearchBar)/**"
"website/src/theme/(Navbar|SearchBar)/**",
".idea",
".gitignore"
],
"ignoreRegExpList": ["url\\(\"data(?:[^\\\"]+|\\.)*\"\\)"],
"words": [
Expand Down Expand Up @@ -66,6 +68,7 @@
"multiselect",
"multiplechoice",
"Myxococcus",
"noninteractive",
"Patil",
"popperjs",
"progessbar",
Expand Down
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

57 changes: 57 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/design-system.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/jsLibraryMappings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/jsLinters/eslint.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/stylesheetLinters/stylelint.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
"@babel/preset-typescript": "^7.22.5",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@faker-js/faker": "^9.0.3",
"@storybook/addon-a11y": "^7.4.0",
"@storybook/addon-actions": "^7.4.0",
"@storybook/addon-essentials": "^7.4.0",
Expand Down
1 change: 1 addition & 0 deletions packages/core/src/_system.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
@forward 'components/spinner' as spinner-*;
@forward 'components/stepindicator' as stepindicator-*;
@forward 'components/switch' as switch-*;
@forward 'components/table' as table-*;
@forward 'components/tab' as tab-*;
@forward 'components/tablist' as tab-list-*;
@forward 'components/tabpanels' as tab-panels-*;
Expand Down
Loading

0 comments on commit cfbc194

Please sign in to comment.