@icvdeveloper/common-module 0.0.48 → 0.0.50

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 (68) hide show
  1. package/README.md +6 -6
  2. package/dist/module.json +1 -1
  3. package/dist/runtime/assets/svg/answer.svg +14 -14
  4. package/dist/runtime/assets/svg/avatar.svg +1 -1
  5. package/dist/runtime/assets/svg/bell-icon.svg +3 -3
  6. package/dist/runtime/assets/svg/checkmark-icon.svg +1 -1
  7. package/dist/runtime/assets/svg/close-icon.svg +1 -1
  8. package/dist/runtime/assets/svg/icon-avatar.svg +1 -1
  9. package/dist/runtime/assets/svg/icon-close.svg +1 -1
  10. package/dist/runtime/assets/svg/icon-info.svg +2 -2
  11. package/dist/runtime/assets/svg/icon-new-window.svg +11 -11
  12. package/dist/runtime/assets/svg/icon-offline.svg +3 -3
  13. package/dist/runtime/assets/svg/icon-online.svg +3 -3
  14. package/dist/runtime/assets/svg/icon-person.svg +2 -2
  15. package/dist/runtime/assets/svg/icon-play.svg +2 -2
  16. package/dist/runtime/assets/svg/icon-star-filled.svg +29 -29
  17. package/dist/runtime/assets/svg/icon-star.svg +24 -24
  18. package/dist/runtime/assets/svg/icon-video-chat.svg +14 -14
  19. package/dist/runtime/assets/svg/icon-website.svg +2 -2
  20. package/dist/runtime/assets/svg/icon-zoom.svg +10 -10
  21. package/dist/runtime/assets/svg/notification-icon.svg +32 -32
  22. package/dist/runtime/assets/svg/offline-icon.svg +1 -1
  23. package/dist/runtime/assets/svg/online-icon.svg +3 -3
  24. package/dist/runtime/assets/svg/peer2peer.svg +3 -3
  25. package/dist/runtime/assets/svg/phone.svg +1 -1
  26. package/dist/runtime/assets/svg/plus-icon.svg +1 -1
  27. package/dist/runtime/assets/svg/red-icon.svg +3 -3
  28. package/dist/runtime/assets/svg/reject.svg +14 -14
  29. package/dist/runtime/assets/svg/search-icon.svg +3 -3
  30. package/dist/runtime/components/affiliates/AffiliatePage.vue +17 -17
  31. package/dist/runtime/components/agenda/AgendaTabbed.vue +300 -300
  32. package/dist/runtime/components/agenda/components/InfoLink.vue +56 -56
  33. package/dist/runtime/components/agenda/components/PlayIcon.vue +49 -49
  34. package/dist/runtime/components/agenda/components/PresentationLink.vue +137 -137
  35. package/dist/runtime/components/agenda/components/Sponsor.vue +132 -132
  36. package/dist/runtime/components/auth/LoginFullWidth.vue +78 -78
  37. package/dist/runtime/components/auth/PasswordReset.vue +60 -60
  38. package/dist/runtime/components/auth/Registration.vue +27 -27
  39. package/dist/runtime/components/auth/Ucc.vue +52 -52
  40. package/dist/runtime/components/core/Accordion.vue +39 -39
  41. package/dist/runtime/components/core/CountdownTimer.vue +308 -308
  42. package/dist/runtime/components/core/DynamicHtml.vue +1 -1
  43. package/dist/runtime/components/core/Modal.vue +111 -111
  44. package/dist/runtime/components/core/Navbar.vue +154 -154
  45. package/dist/runtime/components/core/SvgIcon.vue +139 -139
  46. package/dist/runtime/components/core/ZoomModal.vue +37 -37
  47. package/dist/runtime/components/events/EventHeader.vue +133 -133
  48. package/dist/runtime/components/events/ListEvents.vue +477 -477
  49. package/dist/runtime/components/forms/AlertBox.vue +21 -21
  50. package/dist/runtime/components/forms/ErrorField.vue +17 -17
  51. package/dist/runtime/components/forms/Message.vue +27 -27
  52. package/dist/runtime/components/forms/SearchInput.vue +38 -38
  53. package/dist/runtime/components/forms/SupportForm.vue +112 -112
  54. package/dist/runtime/components/forms/SwitchInput.vue +42 -42
  55. package/dist/runtime/components/forms/TextArea.vue +26 -26
  56. package/dist/runtime/components/forms/TextInput.vue +28 -28
  57. package/dist/runtime/components/layouts/Accordion.vue +78 -78
  58. package/dist/runtime/components/presenters/PresenterListing.vue +164 -164
  59. package/dist/runtime/components/presenters/PresenterModal.vue +225 -225
  60. package/dist/runtime/components/profile/Profile.vue +149 -149
  61. package/dist/runtime/components/profile/components/Sidebar.vue +27 -27
  62. package/dist/runtime/components/profile/components/SidebarNavItem.vue +39 -39
  63. package/dist/runtime/components/profile/tabs/Favorites.vue +21 -21
  64. package/dist/runtime/components/profile/tabs/GeneralInformation.vue +122 -122
  65. package/dist/runtime/components/profile/tabs/ProfileImage.vue +75 -75
  66. package/dist/runtime/components/support/FAQAccordion.vue +247 -247
  67. package/dist/runtime/composables/useUcc.mjs +1 -0
  68. package/package.json +59 -59
@@ -1,52 +1,52 @@
1
- <script lang="ts" setup>
2
- import { toRefs, onMounted } from "vue";
3
- import { useUcc } from "../../composables/useUcc";
4
- import { useConferencesStore } from "../../store/conferences";
5
- import { uccClassObj } from "../../@types/components";
6
- import { useClassBinding } from "../../composables/useClassBinding";
7
-
8
- const { loadUccScript } = useUcc();
9
-
10
- interface Props {
11
- eventId?: number | null;
12
- classObject?: uccClassObj;
13
- }
14
-
15
- const props = withDefaults(defineProps<Props>(), {
16
- eventId: () => useConferencesStore().currentConference.id,
17
- classObject: () => {
18
- return {
19
- container: ""
20
- };
21
- },
22
- });
23
-
24
- const {
25
- classObject,
26
- } = toRefs(props);
27
-
28
- const conferenceStore = useConferencesStore();
29
- const { classBinding } = useClassBinding();
30
-
31
- // reactive data
32
- const { eventId } = toRefs(props);
33
-
34
- // on mount
35
- onMounted(() => {
36
- loadUccScript(props.eventId);
37
- });
38
-
39
- </script>
40
-
41
- <template>
42
- <div
43
- id="uccTarget"
44
- :class="
45
- classBinding(
46
- classObject,
47
- 'container',
48
- 'p-0 m-0 w-full'
49
- )
50
- "
51
- />
52
- </template>
1
+ <script lang="ts" setup>
2
+ import { toRefs, onMounted } from "vue";
3
+ import { useUcc } from "../../composables/useUcc";
4
+ import { useConferencesStore } from "../../store/conferences";
5
+ import { uccClassObj } from "../../@types/components";
6
+ import { useClassBinding } from "../../composables/useClassBinding";
7
+
8
+ const { loadUccScript } = useUcc();
9
+
10
+ interface Props {
11
+ eventId?: number | null;
12
+ classObject?: uccClassObj;
13
+ }
14
+
15
+ const props = withDefaults(defineProps<Props>(), {
16
+ eventId: () => useConferencesStore().currentConference.id,
17
+ classObject: () => {
18
+ return {
19
+ container: ""
20
+ };
21
+ },
22
+ });
23
+
24
+ const {
25
+ classObject,
26
+ } = toRefs(props);
27
+
28
+ const conferenceStore = useConferencesStore();
29
+ const { classBinding } = useClassBinding();
30
+
31
+ // reactive data
32
+ const { eventId } = toRefs(props);
33
+
34
+ // on mount
35
+ onMounted(() => {
36
+ loadUccScript(props.eventId);
37
+ });
38
+
39
+ </script>
40
+
41
+ <template>
42
+ <div
43
+ id="uccTarget"
44
+ :class="
45
+ classBinding(
46
+ classObject,
47
+ 'container',
48
+ 'p-0 m-0 w-full'
49
+ )
50
+ "
51
+ />
52
+ </template>
@@ -1,41 +1,41 @@
1
- <script lang="ts" setup>
2
- import { ref } from "vue";
3
-
4
- const expanded = ref<boolean>(false);
5
-
6
- // methods
7
- const toggle = () => {
8
- expanded.value = !expanded.value;
9
- };
10
- </script>
11
-
12
- <template>
13
- <div>
14
- <div class="font-bold mt-2 mb-4">
15
- <button class="outline-none hover:underline" @click="toggle">
16
- <slot name="question" />
17
- </button>
18
-
19
- <button class="outline-none" @click="toggle">
20
- <div
21
- class="inline-block font-bold px-2 chevron"
22
- :class="{ normal: !expanded, down: expanded }"
23
- >
24
- &gt;
25
- </div>
26
- </button>
27
- </div>
28
-
29
- <transition name="slide" mode="out-in">
30
- <div v-show="expanded">
31
- <div class="rounded px-4 pt-3 pb-1 bg-grey-lighter">
32
- <slot name="answer" />
33
- </div>
34
- </div>
35
- </transition>
36
- </div>
37
- </template>
38
-
1
+ <script lang="ts" setup>
2
+ import { ref } from "vue";
3
+
4
+ const expanded = ref<boolean>(false);
5
+
6
+ // methods
7
+ const toggle = () => {
8
+ expanded.value = !expanded.value;
9
+ };
10
+ </script>
11
+
12
+ <template>
13
+ <div>
14
+ <div class="font-bold mt-2 mb-4">
15
+ <button class="outline-none hover:underline" @click="toggle">
16
+ <slot name="question" />
17
+ </button>
18
+
19
+ <button class="outline-none" @click="toggle">
20
+ <div
21
+ class="inline-block font-bold px-2 chevron"
22
+ :class="{ normal: !expanded, down: expanded }"
23
+ >
24
+ &gt;
25
+ </div>
26
+ </button>
27
+ </div>
28
+
29
+ <transition name="slide" mode="out-in">
30
+ <div v-show="expanded">
31
+ <div class="rounded px-4 pt-3 pb-1 bg-grey-lighter">
32
+ <slot name="answer" />
33
+ </div>
34
+ </div>
35
+ </transition>
36
+ </div>
37
+ </template>
38
+
39
39
  <style scoped>
40
40
  .slide-enter-active,
41
41
  .slide-leave-active {
@@ -65,4 +65,4 @@ const toggle = () => {
65
65
  .outline-none {
66
66
  outline: none;
67
67
  }
68
- </style>
68
+ </style>