-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: table: add table component (#193)
* chore: table: initial commit adds table and its dependencies * chore: table: module name change and stories file * feat: table: adds tree, empty, motion and list virtualization components also adds numerous deps * chore: table: commit ahead of merge * chore: git: add lfs * chore: lfs: removes large snap ahead of commit * Create .gitattributes * chore: table: merge with latest * chore: ts: adds some typings * chore: table: fixes some linter errors * chore: table: fix linter errors * chore: table: fix linter errors and exclude ts classes from css modules * chore: table: fix linter errors part three * chore: table: linter fix attempt three using updated imports * chore: table: linter fix attempt four using updated webpack config * chore: table: compiler and linter fix attempt using updated tsx * chore: table: removes renamed files * chore: table: reverts renamed files * chore: table: update reat import in usestate * chore: table: updates import type name * chore: table: removes default exports from motion hooks * chore: imports: removes more defaults * chore: table: removes more defaults and updates exports in usestate * chore: table: adds type and updates casing in a path * chore: table: updates casing in remaining error paths * chore: table: revert renamed dir to fix compilation path * chore: table: update capitalization of import path * chore: table: reverts some updates to fix build * chore: table: address pr feedback, remove lodash and adds theming * chore: lfs: adds gitattributes file to pr ahead of merge * chore: table: revert type property order change
- Loading branch information
1 parent
a0594d6
commit 427bca7
Showing
251 changed files
with
33,291 additions
and
12,090 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
*.snap filter=lfs diff=lfs merge=lfs -text | ||
*.snap filter=lfs diff=lfs merge=lfs -text |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting '.git/hooks/post-checkout'.\n"; exit 2; } | ||
git lfs post-checkout "$@" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting '.git/hooks/post-commit'.\n"; exit 2; } | ||
git lfs post-commit "$@" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting '.git/hooks/post-merge'.\n"; exit 2; } | ||
git lfs post-merge "$@" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting '.git/hooks/pre-push'.\n"; exit 2; } | ||
git lfs pre-push "$@" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,26 @@ | ||
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap" rel="stylesheet"> | ||
<link | ||
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap" | ||
rel="stylesheet" | ||
/> | ||
|
||
<style> | ||
html, body { | ||
html, | ||
body { | ||
font-family: 'Source Sans Pro', sans-serif; | ||
} | ||
|
||
.virtual-table .table-container:before, | ||
.virtual-table .table-container:after { | ||
display: none; | ||
} | ||
.virtual-table-cell { | ||
background: white; | ||
border-bottom: 1px solid #d9dce1; | ||
box-sizing: border-box; | ||
overflow: hidden; | ||
padding: 16px; | ||
} | ||
.grouped-th { | ||
border-bottom: none !important; | ||
} | ||
</style> |
This file contains 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
This file contains 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
Oops, something went wrong.