-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MINOR: Feature/bim data table filter (#336)
* add sort on BIMDataTable header * add custom sort function * add documentation * add documentation * delete unused file * add Caret icon * add slot documentation * renaming * delete duplicate code * create ColumnFilters component * use ColumnFilters in BIMDataTable component * add Tags in Table documentation * bad commits * add active class on sorting btn * delete tags doc * add ColumnFilters component * use ColumnFilters * add documentation for column filters * use computed for elements * use displayedRows instead of computedRows for paginatedRows * use computed for elements value * show pagination based on displayRows instead of rows * delete unnecessary space * Fix filter & sort : - add multiple filters - add complex values - rename sortOrder & add validator * add empty slot for filters * fix documentation
- Loading branch information
Showing
13 changed files
with
610 additions
and
39 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
src/BIMDataComponents/BIMDataIcon/BIMDataIconStandalone/BIMDataIconCaret.vue
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,19 @@ | ||
<template> | ||
<Icon | ||
:fill="fill" | ||
:fillColor="fillColor" | ||
:color="color" | ||
:class="classes" | ||
:style="style" | ||
> | ||
<Caret /> | ||
</Icon> | ||
</template> | ||
|
||
<script> | ||
import Caret from "../BIMDataLibraryIcons/Caret.vue"; | ||
import makeIcon from "./iconFactory.js"; | ||
export default makeIcon("Caret", Caret); | ||
</script> | ||
|
||
<style scoped lang="scss" src="../_BIMDataIcon.scss"></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
3 changes: 3 additions & 0 deletions
3
src/BIMDataComponents/BIMDataIcon/BIMDataLibraryIcons/Caret.vue
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 @@ | ||
<template> | ||
<path d="M11.7593 17.3077L1.25934 5.69062L22.2593 5.69062L11.7593 17.3077Z" /> | ||
</template> |
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.