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/fix filters and add icon #365

Merged
merged 2 commits into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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"
>
<UnknownFile />
</Icon>
</template>

<script>
import UnknownFile from "../BIMDataLibraryIcons/UnknownFile.vue";
import makeIcon from "./iconFactory.js";
export default makeIcon("UnknownFile", UnknownFile);
</script>

<style scoped lang="scss" src="../_BIMDataIcon.scss"></style>
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ export { default as BIMDataIconTree } from "./BIMDataIconTree.vue";
export { default as BIMDataIconUnarchive } from "./BIMDataIconUnarchive.vue";
export { default as BIMDataIconUndo } from "./BIMDataIconUndo.vue";
export { default as BIMDataIconUnion } from "./BIMDataIconUnion.vue";
export { default as BIMDataIconUnknownFile } from "./BIMDataIconUnknownFile.vue";
export { default as BIMDataIconUp } from "./BIMDataIconUp.vue";
export { default as BIMDataIconUpload } from "./BIMDataIconUpload.vue";
export { default as BIMDataIconUser } from "./BIMDataIconUser.vue";
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<template>
<g>
<path
d="M4.65935 22C4.05435 22 3.53643 21.7846 3.1056 21.3538C2.67477 20.9229 2.45935 20.405 2.45935 19.8V2.2C2.45935 1.595 2.67477 1.07708 3.1056 0.64625C3.53643 0.215417 4.05435 0 4.65935 0H13.4594L20.0594 6.6V19.8C20.0594 20.405 19.8439 20.9229 19.4131 21.3538C18.9823 21.7846 18.4644 22 17.8594 22H4.65935ZM4.65935 19.8H17.8594V7.535L12.5244 2.2H4.65935V19.8Z"
/>
<path
d="M11.8068 14.4115H9.62349C9.62349 13.9335 9.65841 13.5173 9.72823 13.1628C9.80343 12.8029 9.92696 12.4806 10.0988 12.196C10.2707 11.9059 10.5017 11.6293 10.7917 11.3661C11.0441 11.1459 11.2644 10.9391 11.4524 10.7458C11.6403 10.547 11.7854 10.3429 11.8874 10.1335C11.9895 9.92399 12.0405 9.69572 12.0405 9.44865C12.0405 9.15324 11.9948 8.91154 11.9035 8.72355C11.8176 8.53019 11.6887 8.38517 11.5168 8.28849C11.3503 8.18644 11.1408 8.13542 10.8884 8.13542C10.6789 8.13542 10.4829 8.18376 10.3003 8.28044C10.1176 8.37175 9.96993 8.51676 9.85714 8.7155C9.74434 8.91423 9.68258 9.17472 9.67183 9.49699H7.14205C7.15816 8.72892 7.33272 8.1005 7.66573 7.61173C7.99874 7.11759 8.44454 6.75505 9.00313 6.52409C9.5671 6.28776 10.1955 6.1696 10.8884 6.1696C11.6565 6.1696 12.3144 6.29045 12.8623 6.53215C13.4155 6.77384 13.8371 7.13102 14.1272 7.60368C14.4226 8.07633 14.5703 8.65373 14.5703 9.33586C14.5703 9.80314 14.4816 10.214 14.3044 10.5685C14.1272 10.9176 13.8908 11.2453 13.5954 11.5514C13.3 11.8522 12.9724 12.1664 12.6125 12.4941C12.3064 12.768 12.0969 13.0527 11.9841 13.3481C11.8713 13.6381 11.8122 13.9926 11.8068 14.4115ZM9.33346 16.8769C9.33346 16.517 9.46236 16.2135 9.72017 15.9665C9.98336 15.7194 10.3244 15.5959 10.7434 15.5959C11.1623 15.5959 11.5007 15.7194 11.7585 15.9665C12.0163 16.2135 12.1452 16.517 12.1452 16.8769C12.1452 17.2421 12.0163 17.5483 11.7585 17.7953C11.5007 18.037 11.1623 18.1579 10.7434 18.1579C10.3244 18.1579 9.98336 18.037 9.72017 17.7953C9.46236 17.5483 9.33346 17.2421 9.33346 16.8769Z"
/>
</g>
</template>
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ import tree from "./Tree.vue";
import unarchive from "./Unarchive.vue";
import undo from "./Undo.vue";
import union from "./Union.vue";
import unknownFile from "./UnknownFile.vue";
import up from "./Up.vue";
import upload from "./Upload.vue";
import user from "./User.vue";
Expand Down Expand Up @@ -310,6 +311,7 @@ export default {
unarchive,
undo,
union,
unknownFile,
up,
upload,
user,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@
z-index: 1;
.bimdata-checkbox {
font-weight: 400;
align-items: flex-start;
text-align: left;
}
}