-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:specklesystems/speckle-server into …
…alessandro/web-2357-create-workspace-join-request-table
- Loading branch information
Showing
167 changed files
with
7,686 additions
and
3,871 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
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
41 changes: 41 additions & 0 deletions
41
packages/frontend-2/components/invite/dialog/CancelInvite.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,41 @@ | ||
<template> | ||
<LayoutDialog v-model:open="isOpen" :buttons="dialogButtons" max-width="md"> | ||
<template #header>Cancel invite</template> | ||
<p class="text-foreground text-body-xs"> | ||
Are you sure you want to cancel the invite for | ||
<span class="font-medium">{{ email }}</span> | ||
<span>?</span> | ||
</p> | ||
</LayoutDialog> | ||
</template> | ||
<script setup lang="ts"> | ||
import type { LayoutDialogButton } from '@speckle/ui-components' | ||
const emit = defineEmits<{ | ||
(e: 'onCancelInvite'): void | ||
}>() | ||
defineProps<{ | ||
email: string | ||
}>() | ||
const isOpen = defineModel<boolean>('open', { required: true }) | ||
const dialogButtons = computed((): LayoutDialogButton[] => [ | ||
{ | ||
text: 'Close', | ||
props: { color: 'outline' }, | ||
onClick: () => (isOpen.value = false) | ||
}, | ||
{ | ||
text: 'Cancel invite', | ||
props: { | ||
submit: true | ||
}, | ||
onClick: () => { | ||
emit('onCancelInvite') | ||
isOpen.value = false | ||
} | ||
} | ||
]) | ||
</script> |
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
4 changes: 3 additions & 1 deletion
4
packages/frontend-2/components/project/PendingFileImportStatus.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
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.