@icvdeveloper/common-module 2.6.2 → 2.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## Unreleased
9
9
 
10
+ ## 2.6.3 - 2025-12-03
11
+
10
12
  ## 2.6.2 - 2025-09-12
11
13
 
12
14
  ## 2.6.1 - 2025-08-19
package/dist/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "v3plus-common-module",
3
3
  "configKey": "v3plusCommonModule",
4
- "version": "2.6.2"
4
+ "version": "2.6.3"
5
5
  }
@@ -35,6 +35,7 @@ const {
35
35
  showInfoLink,
36
36
  useAccordion,
37
37
  usePresenterModal,
38
+ showPresenterImages,
38
39
  showPresenterDescription,
39
40
  } = useAgenda(conference);
40
41
  const {
@@ -285,7 +286,7 @@ const presentersContainer = computed(() => {
285
286
  <CommonPresenterModal
286
287
  v-if="usePresenterModal()"
287
288
  :use-icon="false"
288
- :show-img="true"
289
+ :show-img="showPresenterImages()"
289
290
  :presenter="presenter"
290
291
  :is-small-grouped-track="
291
292
  isSmallGroupedTrack(group_or_track)
@@ -160,6 +160,9 @@ export const useAgenda = (conference) => {
160
160
  const usePresenterModal = () => {
161
161
  return pagesConfigValue("agenda.use_presenter_modal");
162
162
  };
163
+ const showPresenterImages = () => {
164
+ return pagesConfigValue("agenda.show_presenter_images", true);
165
+ };
163
166
  const showPresenterDescription = (presenter, presentation) => {
164
167
  if (selectedPresenter.value?.presentationId === presentation.id && selectedPresenter.value?.id === presenter.id) {
165
168
  selectedPresenter.value = null;
@@ -270,6 +273,7 @@ export const useAgenda = (conference) => {
270
273
  getTrackClasses,
271
274
  showInfoLink,
272
275
  useAccordion,
276
+ showPresenterImages,
273
277
  usePresenterModal,
274
278
  showPresenterDescription,
275
279
  playPresentation,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icvdeveloper/common-module",
3
- "version": "2.6.2",
3
+ "version": "2.6.3",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "exports": {