@icvdeveloper/common-module 0.0.68 → 0.0.70

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 (72) hide show
  1. package/README.md +6 -6
  2. package/dist/module.json +1 -1
  3. package/dist/runtime/@types/components.d.ts +1 -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 +104 -104
  35. package/dist/runtime/components/agenda/AgendaTabbed.vue +300 -300
  36. package/dist/runtime/components/agenda/components/AgendaListAccordion.vue +26 -26
  37. package/dist/runtime/components/agenda/components/InfoLink.vue +56 -56
  38. package/dist/runtime/components/agenda/components/PlayIcon.vue +49 -49
  39. package/dist/runtime/components/agenda/components/PresentationLink.vue +137 -137
  40. package/dist/runtime/components/agenda/components/Sponsor.vue +132 -132
  41. package/dist/runtime/components/auth/LoginFullWidth.vue +78 -78
  42. package/dist/runtime/components/auth/PasswordReset.vue +60 -60
  43. package/dist/runtime/components/auth/Registration.vue +27 -27
  44. package/dist/runtime/components/auth/Ucc.vue +52 -52
  45. package/dist/runtime/components/core/Accordion.vue +97 -97
  46. package/dist/runtime/components/core/CountdownTimer.vue +308 -308
  47. package/dist/runtime/components/core/DynamicHtml.vue +1 -1
  48. package/dist/runtime/components/core/Modal.vue +111 -111
  49. package/dist/runtime/components/core/Navbar.vue +154 -154
  50. package/dist/runtime/components/core/SvgIcon.vue +151 -151
  51. package/dist/runtime/components/core/ZoomModal.vue +37 -37
  52. package/dist/runtime/components/events/EventHeader.vue +133 -133
  53. package/dist/runtime/components/events/ListEvents.vue +507 -482
  54. package/dist/runtime/components/forms/AlertBox.vue +21 -21
  55. package/dist/runtime/components/forms/ErrorField.vue +17 -17
  56. package/dist/runtime/components/forms/Message.vue +27 -27
  57. package/dist/runtime/components/forms/SearchInput.vue +38 -38
  58. package/dist/runtime/components/forms/SupportForm.vue +112 -112
  59. package/dist/runtime/components/forms/SwitchInput.vue +42 -42
  60. package/dist/runtime/components/forms/TextArea.vue +26 -26
  61. package/dist/runtime/components/forms/TextInput.vue +28 -28
  62. package/dist/runtime/components/layouts/Accordion.vue +78 -78
  63. package/dist/runtime/components/presenters/PresenterListing.vue +164 -164
  64. package/dist/runtime/components/presenters/PresenterModal.vue +223 -223
  65. package/dist/runtime/components/profile/Profile.vue +149 -149
  66. package/dist/runtime/components/profile/components/Sidebar.vue +27 -27
  67. package/dist/runtime/components/profile/components/SidebarNavItem.vue +39 -39
  68. package/dist/runtime/components/profile/tabs/Favorites.vue +21 -21
  69. package/dist/runtime/components/profile/tabs/GeneralInformation.vue +122 -122
  70. package/dist/runtime/components/profile/tabs/ProfileImage.vue +75 -75
  71. package/dist/runtime/components/support/FAQAccordion.vue +137 -137
  72. 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;
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;
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,99 +1,99 @@
1
- <script lang="ts" setup>
2
- import { ref, toRefs } from "vue";
3
- import { useClassBinding } from "../../composables/useClassBinding";
4
- import {
5
- accordionClassObj,
6
- accordionCompObj,
7
- svgIconClassObj,
8
- } from "../../@types/components";
9
-
10
- interface Props {
11
- classObject?: accordionClassObj;
12
- }
13
-
14
- const props = withDefaults(defineProps<Props>(), {
15
- classObject: () => {
16
- return {
17
- components: ref<accordionCompObj>({
18
- svgIcon: ref<svgIconClassObj>({}),
19
- }),
20
- };
21
- },
22
- });
23
-
24
- const { classObject } = toRefs(props);
25
-
26
- const { classBinding } = useClassBinding();
27
- const expanded = ref<boolean>(false);
28
-
29
- // methods
30
- const toggle = () => {
31
- expanded.value = !expanded.value;
32
- };
33
- </script>
34
-
35
- <template>
36
- <div>
37
- <div
38
- :class="
39
- classBinding(classObject, 'buttonContainer', 'font-bold mt-2 mb-4')
40
- "
41
- >
42
- <button
43
- :class="
44
- classBinding(
45
- classObject,
46
- 'textButton',
47
- 'outline-none hover:underline'
48
- )
49
- "
50
- @click="toggle"
51
- >
52
- <slot name="question" />
53
- </button>
54
-
55
- <button
56
- :class="classBinding(classObject, 'iconButton', 'outline-none')"
57
- @click="toggle"
58
- >
59
- <div
60
- :class="[
61
- { normal: !expanded, down: expanded },
62
- classBinding(
63
- classObject,
64
- 'iconContainer',
65
- 'inline-block font-bold px-2 chevron'
66
- ),
67
- ]"
68
- >
69
- <CommonSvgIcon
70
- :class="
71
- classBinding(classObject.components.svgIcon, 'container', '')
72
- "
73
- :class-object="classObject.components.svgIcon"
74
- icon="chevron"
75
- />
76
- </div>
77
- </button>
78
- </div>
79
-
80
- <transition name="slide" mode="out-in">
81
- <div
82
- v-show="expanded"
83
- :class="
84
- classBinding(
85
- classObject,
86
- 'dropdownContainer',
87
- 'rounded px-4 pt-3 pb-1 bg-grey-lighter'
88
- )
89
- "
90
- >
91
- <slot name="answer" />
92
- </div>
93
- </transition>
94
- </div>
95
- </template>
96
-
1
+ <script lang="ts" setup>
2
+ import { ref, toRefs } from "vue";
3
+ import { useClassBinding } from "../../composables/useClassBinding";
4
+ import {
5
+ accordionClassObj,
6
+ accordionCompObj,
7
+ svgIconClassObj,
8
+ } from "../../@types/components";
9
+
10
+ interface Props {
11
+ classObject?: accordionClassObj;
12
+ }
13
+
14
+ const props = withDefaults(defineProps<Props>(), {
15
+ classObject: () => {
16
+ return {
17
+ components: ref<accordionCompObj>({
18
+ svgIcon: ref<svgIconClassObj>({}),
19
+ }),
20
+ };
21
+ },
22
+ });
23
+
24
+ const { classObject } = toRefs(props);
25
+
26
+ const { classBinding } = useClassBinding();
27
+ const expanded = ref<boolean>(false);
28
+
29
+ // methods
30
+ const toggle = () => {
31
+ expanded.value = !expanded.value;
32
+ };
33
+ </script>
34
+
35
+ <template>
36
+ <div>
37
+ <div
38
+ :class="
39
+ classBinding(classObject, 'buttonContainer', 'font-bold mt-2 mb-4')
40
+ "
41
+ >
42
+ <button
43
+ :class="
44
+ classBinding(
45
+ classObject,
46
+ 'textButton',
47
+ 'outline-none hover:underline'
48
+ )
49
+ "
50
+ @click="toggle"
51
+ >
52
+ <slot name="question" />
53
+ </button>
54
+
55
+ <button
56
+ :class="classBinding(classObject, 'iconButton', 'outline-none')"
57
+ @click="toggle"
58
+ >
59
+ <div
60
+ :class="[
61
+ { normal: !expanded, down: expanded },
62
+ classBinding(
63
+ classObject,
64
+ 'iconContainer',
65
+ 'inline-block font-bold px-2 chevron'
66
+ ),
67
+ ]"
68
+ >
69
+ <CommonSvgIcon
70
+ :class="
71
+ classBinding(classObject.components.svgIcon, 'container', '')
72
+ "
73
+ :class-object="classObject.components.svgIcon"
74
+ icon="chevron"
75
+ />
76
+ </div>
77
+ </button>
78
+ </div>
79
+
80
+ <transition name="slide" mode="out-in">
81
+ <div
82
+ v-show="expanded"
83
+ :class="
84
+ classBinding(
85
+ classObject,
86
+ 'dropdownContainer',
87
+ 'rounded px-4 pt-3 pb-1 bg-grey-lighter'
88
+ )
89
+ "
90
+ >
91
+ <slot name="answer" />
92
+ </div>
93
+ </transition>
94
+ </div>
95
+ </template>
96
+
97
97
  <style scoped>
98
98
  .slide-enter-active,
99
99
  .slide-leave-active {
@@ -123,4 +123,4 @@ const toggle = () => {
123
123
  .outline-none {
124
124
  outline: none;
125
125
  }
126
- </style>
126
+ </style>