-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MINOR: feat(ifc): allow to open multiple IFCs at once from models man…
…ager (#478)
- Loading branch information
1 parent
5946f5f
commit 73cbb4a
Showing
10 changed files
with
548 additions
and
74 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,38 @@ | ||
<script setup> | ||
defineProps({ | ||
to: { | ||
type: [String, Object], | ||
required: true | ||
}, | ||
target: { | ||
type: String, | ||
default: "" | ||
}, | ||
disabled: { | ||
type: Boolean, | ||
default: false | ||
} | ||
}); | ||
</script> | ||
|
||
<template> | ||
<router-link class="app-link" :to="to" :target="target"> | ||
<router-link | ||
class="app-link" | ||
:class="{ disabled }" | ||
:to="disabled ? '' : to" | ||
:target="target" | ||
> | ||
<slot></slot> | ||
</router-link> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
props: { | ||
to: { | ||
type: [String, Object], | ||
required: true | ||
}, | ||
target: { | ||
type: String, | ||
default: "" | ||
} | ||
} | ||
}; | ||
</script> | ||
|
||
<style scoped> | ||
.app-link { | ||
text-decoration: none; | ||
color: inherit; | ||
&.disabled { | ||
pointer-events: none; | ||
} | ||
} | ||
</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
6 changes: 0 additions & 6 deletions
6
src/components/specific/models/models-manager/models-action-bar/ModelsActionBar.scss
This file was deleted.
Oops, something went wrong.
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
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
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