@icvdeveloper/common-module 0.0.112 → 0.0.114

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.
Files changed (95) hide show
  1. package/README.md +6 -6
  2. package/dist/module.json +1 -1
  3. package/dist/runtime/@types/components.d.ts +2 -0
  4. package/dist/runtime/assets/svg/answer.svg +14 -14
  5. package/dist/runtime/assets/svg/avatar.svg +1 -1
  6. package/dist/runtime/assets/svg/bell-icon.svg +3 -3
  7. package/dist/runtime/assets/svg/checkmark-icon.svg +1 -1
  8. package/dist/runtime/assets/svg/close-icon.svg +1 -1
  9. package/dist/runtime/assets/svg/icon-avatar.svg +1 -1
  10. package/dist/runtime/assets/svg/icon-chevron.svg +4 -4
  11. package/dist/runtime/assets/svg/icon-circle-plus.svg +1 -1
  12. package/dist/runtime/assets/svg/icon-close.svg +1 -1
  13. package/dist/runtime/assets/svg/icon-info.svg +2 -2
  14. package/dist/runtime/assets/svg/icon-new-window.svg +11 -11
  15. package/dist/runtime/assets/svg/icon-offline.svg +3 -3
  16. package/dist/runtime/assets/svg/icon-online.svg +3 -3
  17. package/dist/runtime/assets/svg/icon-person.svg +2 -2
  18. package/dist/runtime/assets/svg/icon-play.svg +2 -2
  19. package/dist/runtime/assets/svg/icon-star-filled.svg +29 -29
  20. package/dist/runtime/assets/svg/icon-star.svg +24 -24
  21. package/dist/runtime/assets/svg/icon-video-chat.svg +14 -14
  22. package/dist/runtime/assets/svg/icon-website.svg +2 -2
  23. package/dist/runtime/assets/svg/icon-zoom.svg +10 -10
  24. package/dist/runtime/assets/svg/notification-icon.svg +32 -32
  25. package/dist/runtime/assets/svg/offline-icon.svg +1 -1
  26. package/dist/runtime/assets/svg/online-icon.svg +3 -3
  27. package/dist/runtime/assets/svg/peer2peer.svg +3 -3
  28. package/dist/runtime/assets/svg/phone.svg +1 -1
  29. package/dist/runtime/assets/svg/plus-icon.svg +1 -1
  30. package/dist/runtime/assets/svg/red-icon.svg +3 -3
  31. package/dist/runtime/assets/svg/reject.svg +14 -14
  32. package/dist/runtime/assets/svg/search-icon.svg +3 -3
  33. package/dist/runtime/components/affiliates/AffiliatePage.vue +17 -17
  34. package/dist/runtime/components/agenda/AgendaList.vue +271 -271
  35. package/dist/runtime/components/agenda/AgendaTabbed.vue +309 -309
  36. package/dist/runtime/components/agenda/components/AgendaListAccordion.vue +67 -67
  37. package/dist/runtime/components/agenda/components/Calendar.vue +81 -81
  38. package/dist/runtime/components/agenda/components/InfoLink.vue +56 -56
  39. package/dist/runtime/components/agenda/components/PlayIcon.vue +49 -49
  40. package/dist/runtime/components/agenda/components/PresentationLink.vue +137 -137
  41. package/dist/runtime/components/agenda/components/Sponsor.vue +132 -132
  42. package/dist/runtime/components/auth/LoginFullWidth.vue +78 -78
  43. package/dist/runtime/components/auth/PasswordReset.vue +60 -60
  44. package/dist/runtime/components/auth/Registration.vue +27 -27
  45. package/dist/runtime/components/auth/Ucc.vue +132 -132
  46. package/dist/runtime/components/core/Accordion.vue +97 -97
  47. package/dist/runtime/components/core/CountdownTimer.vue +357 -357
  48. package/dist/runtime/components/core/DynamicHtml.vue +1 -1
  49. package/dist/runtime/components/core/Modal.vue +111 -111
  50. package/dist/runtime/components/core/Navbar.vue +154 -154
  51. package/dist/runtime/components/core/SvgIcon.vue +157 -157
  52. package/dist/runtime/components/core/ZoomModal.vue +37 -37
  53. package/dist/runtime/components/events/EventHeader.vue +133 -133
  54. package/dist/runtime/components/events/ListEvents.vue +567 -551
  55. package/dist/runtime/components/forms/AlertBox.vue +21 -21
  56. package/dist/runtime/components/forms/ErrorField.vue +17 -17
  57. package/dist/runtime/components/forms/Message.vue +27 -27
  58. package/dist/runtime/components/forms/SearchInput.vue +38 -38
  59. package/dist/runtime/components/forms/SupportForm.vue +112 -112
  60. package/dist/runtime/components/forms/SwitchInput.vue +42 -42
  61. package/dist/runtime/components/forms/TextArea.vue +26 -26
  62. package/dist/runtime/components/forms/TextInput.vue +28 -28
  63. package/dist/runtime/components/layouts/Accordion.vue +78 -78
  64. package/dist/runtime/components/media/ArchivePlayerAndContentContainer.vue +160 -157
  65. package/dist/runtime/components/media/ArchiveVideoPlayer.vue +186 -186
  66. package/dist/runtime/components/media/PlayerAndContentContainer.vue +178 -175
  67. package/dist/runtime/components/media/WebcastVideoPlayer.vue +167 -167
  68. package/dist/runtime/components/media/components/AgendaPanel.vue +43 -43
  69. package/dist/runtime/components/media/components/ArchiveMediaContainer.vue +91 -91
  70. package/dist/runtime/components/media/components/CeCreditNotification.vue +95 -95
  71. package/dist/runtime/components/media/components/ContentAccordion.vue +63 -63
  72. package/dist/runtime/components/media/components/ContentArea.vue +158 -158
  73. package/dist/runtime/components/media/components/ContentTabs.vue +231 -231
  74. package/dist/runtime/components/media/components/DocumentsPanel.vue +31 -31
  75. package/dist/runtime/components/media/components/JsonApi.vue +31 -31
  76. package/dist/runtime/components/media/components/MediaContainer.vue +63 -63
  77. package/dist/runtime/components/media/components/OverviewPanel.vue +52 -52
  78. package/dist/runtime/components/media/components/PresentersPanel.vue +52 -52
  79. package/dist/runtime/components/media/components/SessionReporting.vue +93 -93
  80. package/dist/runtime/components/media/components/SponsorsPanel.vue +71 -71
  81. package/dist/runtime/components/media/components/WindowContent.vue +92 -92
  82. package/dist/runtime/components/media/components/WindowSlide.vue +72 -72
  83. package/dist/runtime/components/presenters/PresenterListing.vue +164 -164
  84. package/dist/runtime/components/presenters/PresenterModal.vue +223 -223
  85. package/dist/runtime/components/profile/Profile.vue +149 -149
  86. package/dist/runtime/components/profile/components/Sidebar.vue +27 -27
  87. package/dist/runtime/components/profile/components/SidebarNavItem.vue +39 -39
  88. package/dist/runtime/components/profile/tabs/Favorites.vue +21 -21
  89. package/dist/runtime/components/profile/tabs/GeneralInformation.vue +122 -122
  90. package/dist/runtime/components/profile/tabs/ProfileImage.vue +75 -75
  91. package/dist/runtime/components/support/FAQAccordion.vue +140 -140
  92. package/dist/runtime/composables/useConferenceHelpers.mjs +1 -1
  93. package/dist/runtime/composables/useEvents.d.ts +4 -0
  94. package/dist/runtime/composables/useEvents.mjs +11 -1
  95. package/package.json +1 -1
@@ -1,76 +1,76 @@
1
- <template>
2
- <div>
3
- <div v-if="sponsorsArray.length > 0" class="text-grey-800 px-4 py-4" :class="trackSponsorsArray.length > 0 ? 'border-b border-light-grey' : ''">
4
- <div class="mb-4">
5
- <!-- Session Sponsors -->
6
- <h3 class="primary-link text-lg text-center mb-3">Session Sponsors</h3>
7
- <div class="flex flex-row md:flex-col flex-wrap">
8
- <div v-for="(sponsor, index) in sponsorsArray" :key="index" class="flex-1 mx-4 my-2 md:mx-0 self-center">
9
- <a :href="sponsor.website" target="_blank" class="block mx-auto">
10
- <img :src="sponsor.photo" class="block mx-auto" />
11
- </a>
12
- </div>
13
- </div>
14
- </div>
15
- </div>
16
- <div v-if="trackSponsorsArray.length > 0" class="text-grey-800 px-4 py-4">
17
- <div class="mb-4">
18
- <!-- Session Sponsors -->
19
- <h3 class="primary-link text-lg text-center mb-3">Track Sponsors</h3>
20
- <div class="flex flex-row md:flex-col flex-wrap">
21
- <div v-for="(sponsor, index) in trackSponsorsArray" :key="index" class="flex-1 mx-4 my-2 md:mx-0 self-center">
22
- <a :href="sponsor.website" target="_blank" class="block mx-auto">
23
- <img :src="sponsor.photo" class="block mx-auto" />
24
- </a>
25
- </div>
26
- </div>
27
- </div>
28
- </div>
29
- <div v-if="!sponsorsArray.length && !trackSponsorsArray.length" class="text-grey-800 px-2 py-4">
30
- <p class="text-base leading-normal font-light">There are no sponsors associated with this presentation.</p>
31
- </div>
32
- </div>
33
- </template>
34
-
1
+ <template>
2
+ <div>
3
+ <div v-if="sponsorsArray.length > 0" class="text-grey-800 px-4 py-4" :class="trackSponsorsArray.length > 0 ? 'border-b border-light-grey' : ''">
4
+ <div class="mb-4">
5
+ <!-- Session Sponsors -->
6
+ <h3 class="primary-link text-lg text-center mb-3">Session Sponsors</h3>
7
+ <div class="flex flex-row md:flex-col flex-wrap">
8
+ <div v-for="(sponsor, index) in sponsorsArray" :key="index" class="flex-1 mx-4 my-2 md:mx-0 self-center">
9
+ <a :href="sponsor.website" target="_blank" class="block mx-auto">
10
+ <img :src="sponsor.photo" class="block mx-auto" />
11
+ </a>
12
+ </div>
13
+ </div>
14
+ </div>
15
+ </div>
16
+ <div v-if="trackSponsorsArray.length > 0" class="text-grey-800 px-4 py-4">
17
+ <div class="mb-4">
18
+ <!-- Session Sponsors -->
19
+ <h3 class="primary-link text-lg text-center mb-3">Track Sponsors</h3>
20
+ <div class="flex flex-row md:flex-col flex-wrap">
21
+ <div v-for="(sponsor, index) in trackSponsorsArray" :key="index" class="flex-1 mx-4 my-2 md:mx-0 self-center">
22
+ <a :href="sponsor.website" target="_blank" class="block mx-auto">
23
+ <img :src="sponsor.photo" class="block mx-auto" />
24
+ </a>
25
+ </div>
26
+ </div>
27
+ </div>
28
+ </div>
29
+ <div v-if="!sponsorsArray.length && !trackSponsorsArray.length" class="text-grey-800 px-2 py-4">
30
+ <p class="text-base leading-normal font-light">There are no sponsors associated with this presentation.</p>
31
+ </div>
32
+ </div>
33
+ </template>
34
+
35
35
  <script>
36
- export default {
37
- data() {
38
- return {
39
- sponsorsArray: [],
40
- trackSponsorsArray: []
41
- };
42
- },
43
- props: {
44
- sponsorType: {
45
- type: String
46
- },
47
- currentPresentation: {
48
- type: Object,
49
- default: () => {
50
- return {};
51
- }
52
- },
53
- },
54
- computed: {
55
- },
56
- methods: {
57
- },
58
- watch: {
59
- currentPresentation: {
60
- immediate: true,
61
- handler (currentPres) {
62
- if(currentPres.sponsors) {
63
- this.sponsorsArray = currentPres.sponsors;
64
- }
65
- if(currentPres.tracks) {
66
- this.trackSponsorsArray = currentPres.tracks[0].sponsors;
67
- }
68
- }
69
- }
70
- }
36
+ export default {
37
+ data() {
38
+ return {
39
+ sponsorsArray: [],
40
+ trackSponsorsArray: []
41
+ };
42
+ },
43
+ props: {
44
+ sponsorType: {
45
+ type: String
46
+ },
47
+ currentPresentation: {
48
+ type: Object,
49
+ default: () => {
50
+ return {};
51
+ }
52
+ },
53
+ },
54
+ computed: {
55
+ },
56
+ methods: {
57
+ },
58
+ watch: {
59
+ currentPresentation: {
60
+ immediate: true,
61
+ handler (currentPres) {
62
+ if(currentPres.sponsors) {
63
+ this.sponsorsArray = currentPres.sponsors;
64
+ }
65
+ if(currentPres.tracks) {
66
+ this.trackSponsorsArray = currentPres.tracks[0].sponsors;
67
+ }
68
+ }
69
+ }
70
+ }
71
71
  }
72
- </script>
73
-
72
+ </script>
73
+
74
74
  <style scoped>
75
75
  .sponsor-grid {
76
76
  display: grid;
@@ -1,97 +1,97 @@
1
- <template>
2
- <vue-draggable-resizable
3
- :w="startSize.width"
4
- :h="startSize.height"
5
- :x="startPosition.x"
6
- :y="startPosition.y"
7
- :min-width="200"
8
- :min-height="200"
9
- :z="zIndex"
10
- :active="true"
11
- class-name="pop-window"
12
- class-name-active="pop-window-active"
13
- @activated="onActivated"
14
- @deactivated="onDeActivated"
15
- class="bg-white shadow-lg cursor-move"
16
- >
17
- <div :style="overlayStyle" class="expand-overlay">
18
- <a @click.prevent="closeClick">
19
- <i class="fas fa-compress-arrows-alt"></i>
20
- </a>
21
- </div>
22
-
23
- <div class="outer-container max-h-full p-1">
24
- <content-area class="h-auto max-h-full" :current-presentation="currentPresentation"></content-area>
25
- </div>
26
- </vue-draggable-resizable>
27
- </template>
28
-
1
+ <template>
2
+ <vue-draggable-resizable
3
+ :w="startSize.width"
4
+ :h="startSize.height"
5
+ :x="startPosition.x"
6
+ :y="startPosition.y"
7
+ :min-width="200"
8
+ :min-height="200"
9
+ :z="zIndex"
10
+ :active="true"
11
+ class-name="pop-window"
12
+ class-name-active="pop-window-active"
13
+ @activated="onActivated"
14
+ @deactivated="onDeActivated"
15
+ class="bg-white shadow-lg cursor-move"
16
+ >
17
+ <div :style="overlayStyle" class="expand-overlay">
18
+ <a @click.prevent="closeClick">
19
+ <i class="fas fa-compress-arrows-alt"></i>
20
+ </a>
21
+ </div>
22
+
23
+ <div class="outer-container max-h-full p-1">
24
+ <content-area class="h-auto max-h-full" :current-presentation="currentPresentation"></content-area>
25
+ </div>
26
+ </vue-draggable-resizable>
27
+ </template>
28
+
29
29
  <script>
30
- import Vue from "vue";
31
- import VueDraggableResizable from "vue-draggable-resizable";
32
- import "vue-draggable-resizable/dist/VueDraggableResizable.css";
33
-
34
- import ContentTabs from "./ContentTabs";
35
- import ContentArea from "./ContentArea";
36
-
37
- Vue.component("vue-draggable-resizable", VueDraggableResizable);
38
-
39
- export default {
40
- components: {
41
- ContentTabs,
42
- ContentArea
43
- },
44
- data() {
45
- return {
46
- zIndex: 300,
47
- active: true
48
- };
49
- },
50
- props: {
51
- tabArray: {
52
- type: Array,
53
- default: []
54
- },
55
- startSize: {
56
- type: Object,
57
- default: () => {
58
- return { width: 640, height: 480 };
59
- }
60
- },
61
- startPosition: {
62
- type: Object,
63
- default: () => {
64
- return { x: 0, y: 0 };
65
- }
66
- },
67
- currentPresentation: {
68
- type: Object,
69
- default: () => {
70
- return {};
71
- }
72
- }
73
- },
74
- computed: {
75
- overlayStyle() {
76
- return this.active ? "opacity: .7;" : "opacity: 0";
77
- }
78
- },
79
- methods: {
80
- closeClick(e) {
81
- this.$emit("closeClick", this);
82
- },
83
- onActivated(e) {
84
- this.zIndex = 500;
85
- this.active = true;
86
- },
87
- onDeActivated(e) {
88
- this.zIndex = 100;
89
- this.active = false;
90
- }
91
- }
30
+ import Vue from "vue";
31
+ import VueDraggableResizable from "vue-draggable-resizable";
32
+ import "vue-draggable-resizable/dist/VueDraggableResizable.css";
33
+
34
+ import ContentTabs from "./ContentTabs";
35
+ import ContentArea from "./ContentArea";
36
+
37
+ Vue.component("vue-draggable-resizable", VueDraggableResizable);
38
+
39
+ export default {
40
+ components: {
41
+ ContentTabs,
42
+ ContentArea
43
+ },
44
+ data() {
45
+ return {
46
+ zIndex: 300,
47
+ active: true
48
+ };
49
+ },
50
+ props: {
51
+ tabArray: {
52
+ type: Array,
53
+ default: []
54
+ },
55
+ startSize: {
56
+ type: Object,
57
+ default: () => {
58
+ return { width: 640, height: 480 };
59
+ }
60
+ },
61
+ startPosition: {
62
+ type: Object,
63
+ default: () => {
64
+ return { x: 0, y: 0 };
65
+ }
66
+ },
67
+ currentPresentation: {
68
+ type: Object,
69
+ default: () => {
70
+ return {};
71
+ }
72
+ }
73
+ },
74
+ computed: {
75
+ overlayStyle() {
76
+ return this.active ? "opacity: .7;" : "opacity: 0";
77
+ }
78
+ },
79
+ methods: {
80
+ closeClick(e) {
81
+ this.$emit("closeClick", this);
82
+ },
83
+ onActivated(e) {
84
+ this.zIndex = 500;
85
+ this.active = true;
86
+ },
87
+ onDeActivated(e) {
88
+ this.zIndex = 100;
89
+ this.active = false;
90
+ }
91
+ }
92
92
  };
93
- </script>
94
-
93
+ </script>
94
+
95
95
  <style scoped>
96
96
  .outer-container {
97
97
  position: relative;
@@ -1,77 +1,77 @@
1
- <template>
2
- <vue-draggable-resizable
3
- :w="startSize.width"
4
- :h="startSize.height"
5
- :x="startPosition.x"
6
- :y="startPosition.y"
7
- :handles="['tl','tr','br','bl']"
8
- :min-width="200"
9
- :lock-aspect-ratio="true"
10
- :z="zIndex"
11
- :active="true"
12
- class-name="pop-window"
13
- class-name-active="pop-window-active"
14
- @activated="onActivated"
15
- @deactivated="onDeActivated"
16
- class="bg-white shadow-lg cursor-move"
17
- >
18
- <div>
19
- <div class="expand-overlay">
20
- <a @click.prevent="closeClick">
21
- <i class="fas fa-compress-arrows-alt"></i>
22
- </a>
23
- </div>
24
-
25
- <img :src="slide" class="w-full h-auto max-h-full" />
26
- </div>
27
- </vue-draggable-resizable>
28
- </template>
29
-
1
+ <template>
2
+ <vue-draggable-resizable
3
+ :w="startSize.width"
4
+ :h="startSize.height"
5
+ :x="startPosition.x"
6
+ :y="startPosition.y"
7
+ :handles="['tl','tr','br','bl']"
8
+ :min-width="200"
9
+ :lock-aspect-ratio="true"
10
+ :z="zIndex"
11
+ :active="true"
12
+ class-name="pop-window"
13
+ class-name-active="pop-window-active"
14
+ @activated="onActivated"
15
+ @deactivated="onDeActivated"
16
+ class="bg-white shadow-lg cursor-move"
17
+ >
18
+ <div>
19
+ <div class="expand-overlay">
20
+ <a @click.prevent="closeClick">
21
+ <i class="fas fa-compress-arrows-alt"></i>
22
+ </a>
23
+ </div>
24
+
25
+ <img :src="slide" class="w-full h-auto max-h-full" />
26
+ </div>
27
+ </vue-draggable-resizable>
28
+ </template>
29
+
30
30
  <script>
31
- import Vue from "vue";
32
- import VueDraggableResizable from "vue-draggable-resizable";
33
- import "vue-draggable-resizable/dist/VueDraggableResizable.css";
34
-
35
- Vue.component("vue-draggable-resizable", VueDraggableResizable);
36
-
37
- export default {
38
- data() {
39
- return {
40
- zIndex: 200
41
- };
42
- },
43
- props: {
44
- slide: {
45
- type: String,
46
- default: ""
47
- },
48
- startSize: {
49
- type: Object,
50
- default: () => {
51
- return { width: 640, height: 480 };
52
- }
53
- },
54
- startPosition: {
55
- type: Object,
56
- default: () => {
57
- return { width: 0, height: 0 };
58
- }
59
- }
60
- },
61
- methods: {
62
- closeClick(e) {
63
- this.$emit("closeClick", this);
64
- },
65
- onActivated(e) {
66
- this.zIndex = 500;
67
- },
68
- onDeActivated(e) {
69
- this.zIndex = 100;
70
- }
71
- }
31
+ import Vue from "vue";
32
+ import VueDraggableResizable from "vue-draggable-resizable";
33
+ import "vue-draggable-resizable/dist/VueDraggableResizable.css";
34
+
35
+ Vue.component("vue-draggable-resizable", VueDraggableResizable);
36
+
37
+ export default {
38
+ data() {
39
+ return {
40
+ zIndex: 200
41
+ };
42
+ },
43
+ props: {
44
+ slide: {
45
+ type: String,
46
+ default: ""
47
+ },
48
+ startSize: {
49
+ type: Object,
50
+ default: () => {
51
+ return { width: 640, height: 480 };
52
+ }
53
+ },
54
+ startPosition: {
55
+ type: Object,
56
+ default: () => {
57
+ return { width: 0, height: 0 };
58
+ }
59
+ }
60
+ },
61
+ methods: {
62
+ closeClick(e) {
63
+ this.$emit("closeClick", this);
64
+ },
65
+ onActivated(e) {
66
+ this.zIndex = 500;
67
+ },
68
+ onDeActivated(e) {
69
+ this.zIndex = 100;
70
+ }
71
+ }
72
72
  };
73
- </script>
74
-
73
+ </script>
74
+
75
75
  <style scoped>
76
76
  .expand-overlay {
77
77
  @apply p-2;