Skip to content

Commit

Permalink
Staging update 20230831 (#6641)
Browse files Browse the repository at this point in the history
  • Loading branch information
peb-adr committed Aug 31, 2023
1 parent 015baf4 commit 3596902
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion openslides-client
Submodule openslides-client updated 68 files
+1 −1 client/src/app/domain/models/poll/poll-constants.ts
+77 −1 client/src/app/gateways/actions/action.service.spec.ts
+0 −35 client/src/app/gateways/actions/action.service.ts
+11 −10 client/src/app/gateways/actions/action.ts
+14 −0 client/src/app/gateways/error-mapping/error-map.service.spec.ts
+73 −5 client/src/app/gateways/meeting-media-adapter.service.spec.ts
+28 −27 client/src/app/gateways/meeting-media-adapter.service.ts
+4 −4 client/src/app/gateways/repositories/agenda/agenda-item-repository.service.ts
+8 −2 client/src/app/gateways/repositories/base-repository.ts
+3 −3 .../app/gateways/repositories/motions/motion-category-repository.service/motion-category-repository.service.ts
+1 −1 client/src/app/gateways/repositories/motions/motion-comments/motion-comment-section-repository.service.ts
+2 −2 ...nt/src/app/gateways/repositories/motions/motion-state-repository.service/motion-state-repository.service.ts
+32 −0 client/src/app/infrastructure/utils/overload-js-functions.ts
+12 −0 client/src/app/infrastructure/utils/subscription-map.spec.ts
+8 −0 client/src/app/infrastructure/utils/transform-functions.spec.ts
+1 −1 client/src/app/infrastructure/utils/transform-functions.ts
+10 −5 client/src/app/openslides-main-module/components/openslides-main/openslides-main.component.ts
+8 −4 client/src/app/site/base/base-filter.service/base-filter-list.service.ts
+144 −35 client/src/app/site/base/base-sort.service/base-sort-list.service.ts
+7 −2 client/src/app/site/modules/global-headbar/components/global-headbar/global-headbar.component.ts
+90 −1 client/src/app/site/modules/global-headbar/components/global-search/global-search.component.html
+119 −0 client/src/app/site/modules/global-headbar/components/global-search/global-search.component.scss
+210 −2 client/src/app/site/modules/global-headbar/components/global-search/global-search.component.ts
+16 −1 client/src/app/site/modules/global-headbar/global-headbar.module.ts
+8 −2 client/src/app/site/modules/site-wrapper/services/update.service.ts
+1 −1 client/src/app/site/pages/meetings/modules/list-of-speakers-content/list-of-speakers-content.subscription.ts
+4 −4 client/src/app/site/pages/meetings/modules/poll/base/base-poll-detail.component.ts
+1 −1 ...rc/app/site/pages/meetings/modules/poll/components/entitled-users-table/entitled-users-table.component.html
+16 −1 client/src/app/site/pages/meetings/modules/poll/pipes/poll-percent-base/poll-percent-base.pipe.spec.ts
+50 −0 ...omponents/wifi-access-data-slide/components/wifi-access-data-slide/wifi-access-data-slide.component.spec.ts
+10 −13 ...rc/app/site/pages/meetings/pages/assignments/pages/assignment-list/services/assignment-sort-list.service.ts
+1 −1 ...src/app/site/pages/meetings/pages/home/pages/meeting-info/components/meeting-info/meeting-info.component.ts
+5 −14 ...pages/mediafiles/modules/mediafile-list/services/mediafile-list-sort.service/mediafile-list-sort.service.ts
+5 −9 .../meetings/pages/motions/pages/motion-blocks/services/motion-block-sort.service/motion-block-sort.service.ts
+8 −8 ...es/meetings/pages/motions/pages/motion-detail/components/motion-detail-view/motion-detail-view.component.ts
+3 −1 .../pages/meetings/pages/motions/pages/motion-detail/components/motion-meta-data/motion-meta-data.component.ts
+1 −1 ...tings/pages/motions/pages/motion-detail/components/motion-personal-note/motion-personal-note.component.html
+1 −0 client/src/app/site/pages/meetings/pages/motions/services/export/motion-pdf.service/motion-pdf.service.ts
+11 −8 .../site/pages/meetings/pages/motions/services/list/amendment-list-sort.service/amendment-list-sort.service.ts
+19 −24 ...rc/app/site/pages/meetings/pages/motions/services/list/motion-list-sort.service/motion-list-sort.service.ts
+5 −19 ...participants/pages/participant-list/services/participant-list-sort.service/participant-list-sort.service.ts
+10 −0 client/src/app/site/pages/organization/pages/accounts/components/account-main/account-main.component.ts
+1 −1 ...pages/accounts/pages/account-detail/components/account-add-to-meetings/account-add-to-meetings.component.ts
+5 −8 ...s/organization/pages/accounts/pages/account-list/services/account-list-sort.service/account-sort.service.ts
+5 −9 ...zation/pages/committees/pages/committee-list/services/committee-list-sort.service/committee-sort.service.ts
+5 −9 ...organization/pages/orga-meetings/pages/meeting-list/services/meeting-list-sort/meeting-list-sort.service.ts
+27 −0 client/src/app/site/services/autoupdate/autoupdate-communication.service.ts
+3 −1 client/src/app/site/services/autoupdate/autoupdate.service.ts
+17 −0 client/src/app/site/services/global-search/definitions.ts
+153 −0 client/src/app/site/services/global-search/global-search.service.ts
+2 −0 client/src/app/site/services/global-search/index.ts
+2 −1 client/src/app/site/services/view-model-store-update.service.ts
+2 −2 client/src/app/ui/modules/datepicker/components/daterangepicker/daterangepicker.component.html
+14 −3 client/src/app/ui/modules/input/components/rounded-input/rounded-input.component.html
+7 −0 client/src/app/ui/modules/input/components/rounded-input/rounded-input.component.scss
+19 −0 client/src/app/ui/modules/input/components/rounded-input/rounded-input.component.ts
+2 −1 client/src/app/ui/modules/input/input.module.ts
+35 −4 client/src/app/ui/modules/list/components/sort-filter-bar/sort-filter-bar.component.html
+34 −3 client/src/app/ui/modules/list/components/sort-filter-bar/sort-filter-bar.component.ts
+16 −1 client/src/app/ui/modules/list/components/view-list/view-list.component.ts
+1 −0 client/src/app/ui/modules/list/definitions/filter-service.ts
+1 −0 client/src/app/ui/modules/list/definitions/search-service.ts
+3 −0 client/src/app/ui/modules/list/definitions/sort-service.ts
+8 −4 client/src/app/ui/modules/list/services/list-search.service.ts
+24 −0 client/src/app/worker/autoupdate-stream.ts
+10 −0 client/src/app/worker/interfaces-autoupdate.ts
+13 −0 client/src/app/worker/sw-autoupdate.ts
+22 −0 client/src/assets/styles/global-components-style.scss
2 changes: 1 addition & 1 deletion openslides-datastore-service
2 changes: 1 addition & 1 deletion openslides-search-service
2 changes: 1 addition & 1 deletion openslides-vote-service

0 comments on commit 3596902

Please sign in to comment.