forked from pkp/ui-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* pkp/pkp-lib#9992 Migrate Announcements to SideModal * pkp/pkp-lib#9992 clean up announcements moved to SideModal * pkp/pkp-lib#9992 Composer modals migrated to SideModal * pkp/pkp-lib#9992 FileAttacher modal clean up * pkp/pkp-lib#9992 Migrate issue stats modal to SideModal * pkp/pkp-lib#9992 publication stats migrated to side modal * pkp/pkp-lib#9992 users stats export modal migrated to side modal * pkp/pkp-lib#9992 wizard modal migrated to side modal * pkp/pkp-lib#9992 FieldPreparedContent migrated to side modal * pkp/pkp-lib#9992 InstitutionsListPanel migrated to side modal, make sure that the form errors are propagated to the modal for other ListPanels * pkp/pkp-lib#9992 Migrate SubmissionFilesEditModal to openSideModal * pkp/pkp-lib#9992 HighlightsListPanel migrated to side modal * pkp/pkp-lib#9992 Migrate ContributorsListPanel to side panel, rename some other modals for more consistent naming * pkp/pkp-lib#9992 Migrate CatalogListPanel to side modal * pkp/pkp-lib#9992 Migrate doi list panel to side modal * pkp/pkp-lib#9992 migrate workflow page to side modal * pkp/pkp-lib#9992 migrate manageEmails to side modal * pkp/pkp-lib#9992 Migrate error doi message modals to useDialog * pkp/pkp-lib#9992 clean up modals in stories, copied over the tpl files * pkp/pkp-lib#9992 move title directly to modal component when its not dynamic * pkp/pkp-lib#9992 Update documentation for SideModal and Dialog, refactor Dialog to expose the props for docs * pkp/pkp-lib#9992 Clean up * pkp/pkp-lib#9992 Fix SideModal stories template * pkp/pkp-lib#9992 Address code review feedback
- Loading branch information
1 parent
93076d9
commit 76ca2af
Showing
55 changed files
with
1,581 additions
and
723 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<template> | ||
<SideModalBody> | ||
<template #title> | ||
{{ title }} | ||
</template> | ||
<SideModalLayoutBasic> | ||
<FileAttacher | ||
:attachers="attachers" | ||
@attached:files="(...args) => emit('addAttachments', ...args)" | ||
/> | ||
</SideModalLayoutBasic> | ||
</SideModalBody> | ||
</template> | ||
|
||
<script setup> | ||
import SideModalBody from '@/components/Modal/SideModalBody.vue'; | ||
import SideModalLayoutBasic from '@/components/Modal/SideModalLayoutBasic.vue'; | ||
import FileAttacher from '@/components/FileAttacher/FileAttacher.vue'; | ||
defineProps({ | ||
title: {type: String, required: true}, | ||
attachers: {type: Object, required: true}, | ||
}); | ||
const emit = defineEmits(['addAttachments']); | ||
</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
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.