Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/bim data table filter #336

Merged
merged 26 commits into from
Apr 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export { default as BIMDataIconCalendar } from "./BIMDataIconCalendar.vue";
export { default as BIMDataIconCaliper } from "./BIMDataIconCaliper.vue";
export { default as BIMDataIconCamera } from "./BIMDataIconCamera.vue";
export { default as BIMDataIconCancelCamera } from "./BIMDataIconCancelCamera.vue";
export { default as BIMDataIconCaret } from "./BIMDataIconCaret.vue";
export { default as BIMDataIconCheck } from "./BIMDataIconCheck.vue";
export { default as BIMDataIconChevron } from "./BIMDataIconChevron.vue";
export { default as BIMDataIconClassificationCategory } from "./BIMDataIconClassificationCategory.vue";
Expand Down
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>
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import calendar from "./Calendar.vue";
import caliper from "./Caliper.vue";
import camera from "./Camera.vue";
import cancelCamera from "./CancelCamera.vue";
import caret from "./Caret.vue";
import check from "./Check.vue";
import chevron from "./Chevron.vue";
import classificationCategory from "./ClassificationCategory.vue";
Expand Down Expand Up @@ -189,6 +190,7 @@ export default {
caliper,
camera,
cancelCamera,
caret,
check,
chevron,
classificationCategory,
Expand Down
Loading
Loading