Skip to content

Commit

Permalink
pkp/pkp-lib#7135 submodules updates ##bozana/7135##
Browse files Browse the repository at this point in the history
  • Loading branch information
bozana committed Feb 4, 2025
1 parent 0023021 commit 5292049
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/pkp
Submodule pkp updated 54 files
+177 −0 api/v1/rors/PKPRorController.php
+59 −5 api/v1/submissions/PKPSubmissionController.php
+128 −0 classes/affiliation/Affiliation.php
+120 −0 classes/affiliation/Collector.php
+164 −0 classes/affiliation/DAO.php
+276 −0 classes/affiliation/Repository.php
+109 −0 classes/affiliation/maps/Schema.php
+50 −2 classes/author/Author.php
+2 −24 classes/author/Collector.php
+17 −3 classes/author/DAO.php
+38 −8 classes/author/Repository.php
+8 −2 classes/author/maps/Schema.php
+59 −0 classes/components/forms/FieldAffiliations.php
+12 −8 classes/components/forms/publication/ContributorForm.php
+1 −0 classes/core/EntityDAO.php
+28 −24 classes/core/PKPPageRouter.php
+3 −2 classes/core/traits/EntityUpdate.php
+12 −0 classes/facades/Repo.php
+2 −33 classes/identity/Identity.php
+12 −1 classes/install/Installer.php
+2 −1 classes/log/event/SubmissionFileEventLogEntry.php
+4 −3 classes/mail/mailables/SubmissionAcknowledgementOtherAuthors.php
+59 −0 classes/migration/install/AffiliationsMigration.php
+64 −0 classes/migration/install/RorsMigration.php
+62 −0 classes/migration/upgrade/v3_5_0/I7135_CreateAuthorAffiliationsTables.php
+158 −0 classes/migration/upgrade/v3_5_0/I7135_CreateNewRorRegistryCacheTables.php
+174 −0 classes/ror/Collector.php
+202 −0 classes/ror/DAO.php
+171 −0 classes/ror/Repository.php
+76 −0 classes/ror/Ror.php
+97 −0 classes/ror/maps/Schema.php
+9 −1 classes/scheduledTask/PKPScheduler.php
+5 −2 classes/services/PKPSchemaService.php
+18 −6 classes/submission/Repository.php
+445 −0 classes/task/UpdateRorRegistryDataset.php
+34 −2 classes/user/User.php
+20 −3 controllers/grid/settings/user/form/UserDetailsForm.php
+47 −4 controllers/grid/users/author/form/PKPAuthorForm.php
+6 −6 controllers/grid/users/reviewer/form/AdvancedSearchReviewerForm.php
+8 −6 cypress/support/commands_new_workflow.js
+3 −0 locale/en/admin.po
+3 −0 locale/en/api.po
+6 −0 locale/en/manager.po
+18 −0 locale/en/submission.po
+51 −0 locale/en/user.po
+52 −6 plugins/importexport/native/filter/NativeXmlPKPAuthorFilter.php
+1 −1 plugins/importexport/native/filter/NativeXmlPKPPublicationFilter.php
+21 −3 plugins/importexport/native/filter/PKPAuthorNativeXmlFilter.php
+19 −3 plugins/importexport/native/pkp-native.xsd
+46 −0 schemas/affiliation.json
+6 −6 schemas/author.json
+63 −0 schemas/ror.json
+92 −0 templates/images/ror.svg
+1 −1 xml/importexport.xsd
2 changes: 1 addition & 1 deletion lib/ui-library
Submodule ui-library updated 32 files
+17 −0 public/globals.js
+3 −1 src/components/DropdownActions/DropdownActions.vue
+9 −0 src/components/Form/Form.vue
+2 −0 src/components/Form/FormGroup.vue
+23 −0 src/components/Form/fields/FieldAffiliations.mdx
+39 −0 src/components/Form/fields/FieldAffiliations.stories.js
+609 −0 src/components/Form/fields/FieldAffiliations.vue
+33 −0 src/components/Form/fields/FieldAffiliationsRorAutoSuggest.stories.js
+33 −13 src/components/Form/fields/FieldAffiliationsRorAutoSuggest.vue
+0 −40 src/components/Form/fields/FieldRorAutosuggest.stories.js
+425 −0 src/components/Form/mocks/field-affiliations.js
+12 −0 src/components/ListPanel/contributors/ContributorsListPanel.vue
+4 −1 src/components/Modal/SideModalBody.vue
+1 −1 src/components/Modal/SideModalLayoutMenu2Columns.vue
+2 −2 src/components/Table/Table.vue
+4 −0 src/pages/dashboard/DashboardPage.vue
+1 −1 src/pages/dashboard/components/DashboardTable/CellReviewAssignmentActions.vue
+1 −1 src/pages/dashboard/components/DashboardTable/CellReviewAssignmentActivity.vue
+1 −1 src/pages/dashboard/components/DashboardTable/CellReviewAssignmentId.vue
+1 −1 src/pages/dashboard/components/DashboardTable/CellReviewAssignmentTitle.vue
+1 −1 src/pages/dashboard/components/DashboardTable/CellSubmissionActions.vue
+1 −1 src/pages/dashboard/components/DashboardTable/CellSubmissionActivity/CellSubmissionActivity.vue
+1 −1 src/pages/dashboard/components/DashboardTable/CellSubmissionDays.vue
+1 −1 src/pages/dashboard/components/DashboardTable/CellSubmissionId.vue
+1 −1 src/pages/dashboard/components/DashboardTable/CellSubmissionStage.vue
+1 −1 src/pages/dashboard/components/DashboardTable/CellSubmissionTitle.vue
+26 −0 src/pages/workflow/composables/useWorkflowConfig/workflowConfigAuthorOJS.js
+26 −0 src/pages/workflow/composables/useWorkflowConfig/workflowConfigEditorialOJS.js
+32 −24 src/pages/workflow/composables/useWorkflowNavigationConfig/useWorkflowNavigationConfigOJS.js
+26 −17 src/pages/workflow/composables/useWorkflowNavigationConfig/useWorkflowNavigationConfigOMP.js
+20 −9 src/pages/workflow/composables/useWorkflowNavigationConfig/useWorkflowNavigationConfigOPS.js
+1 −5 src/pages/workflow/composables/useWorkflowPermissions.js
2 changes: 1 addition & 1 deletion plugins/generic/crossref
2 changes: 1 addition & 1 deletion plugins/generic/googleScholar

0 comments on commit 5292049

Please sign in to comment.