@icvdeveloper/common-module 0.0.41 → 0.0.43

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 (58) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +5 -5
  3. package/dist/runtime/@types/components.d.ts +5 -5
  4. package/dist/runtime/@types/configVariables.d.ts +11 -11
  5. package/dist/runtime/analytics.d.ts +1 -1
  6. package/dist/runtime/assets/scss/index.css +705 -0
  7. package/dist/runtime/components/agenda/AgendaTabbed.vue +15 -9
  8. package/dist/runtime/components/agenda/components/Sponsor.vue +14 -21
  9. package/dist/runtime/components/core/Accordion.vue +10 -7
  10. package/dist/runtime/components/core/CountdownTimer.vue +44 -41
  11. package/dist/runtime/components/core/DynamicHtml.vue.d.ts +1 -1
  12. package/dist/runtime/components/core/Modal.vue +8 -4
  13. package/dist/runtime/components/events/ListEvents.vue +16 -3
  14. package/dist/runtime/components/forms/Message.vue +1 -1
  15. package/dist/runtime/components/forms/SwitchInput.vue +34 -49
  16. package/dist/runtime/components/presenters/PresenterListing.vue +5 -3
  17. package/dist/runtime/composables/useAgenda.d.ts +1 -1
  18. package/dist/runtime/composables/useAnalytics.d.ts +1 -1
  19. package/dist/runtime/composables/useAuth.d.ts +1 -1
  20. package/dist/runtime/composables/useClassBinding.d.ts +1 -1
  21. package/dist/runtime/composables/useConferenceHelpers.d.ts +1 -1
  22. package/dist/runtime/composables/useDateFormat.d.ts +1 -1
  23. package/dist/runtime/composables/useEvents.d.ts +1 -1
  24. package/dist/runtime/composables/useLogin.d.ts +1 -1
  25. package/dist/runtime/composables/usePresentation.d.ts +1 -1
  26. package/dist/runtime/composables/usePresenter.d.ts +1 -1
  27. package/dist/runtime/composables/usePresenters.d.ts +1 -1
  28. package/dist/runtime/composables/useRegistration.d.ts +1 -1
  29. package/dist/runtime/models/affiliate.d.ts +1 -1
  30. package/dist/runtime/models/authUser.d.ts +1 -1
  31. package/dist/runtime/models/conference.d.ts +8 -8
  32. package/dist/runtime/models/globalConfig.d.ts +3 -3
  33. package/dist/runtime/models/group.d.ts +1 -1
  34. package/dist/runtime/models/icons.d.ts +2 -2
  35. package/dist/runtime/models/navigationConfig.d.ts +1 -1
  36. package/dist/runtime/models/pagesConfig.d.ts +12 -12
  37. package/dist/runtime/models/portal.d.ts +1 -1
  38. package/dist/runtime/models/templateConfig.d.ts +5 -5
  39. package/dist/runtime/plugin.mjs +3 -0
  40. package/dist/runtime/store/affiliates.d.ts +1 -1
  41. package/dist/runtime/store/auth.d.ts +2 -2
  42. package/dist/runtime/v3plusCommonPlugin.d.ts +2 -2
  43. package/dist/types.d.ts +1 -1
  44. package/package.json +6 -6
  45. package/dist/runtime/assets/scss/_agenda.scss +0 -47
  46. package/dist/runtime/assets/scss/_animations.scss +0 -11
  47. package/dist/runtime/assets/scss/_container_variants.scss +0 -26
  48. package/dist/runtime/assets/scss/_custom.scss +0 -364
  49. package/dist/runtime/assets/scss/_footer.scss +0 -20
  50. package/dist/runtime/assets/scss/_forms.scss +0 -29
  51. package/dist/runtime/assets/scss/_functions.scss +0 -24
  52. package/dist/runtime/assets/scss/_header.scss +0 -40
  53. package/dist/runtime/assets/scss/_index_production.scss +0 -45
  54. package/dist/runtime/assets/scss/_transitions.scss +0 -24
  55. package/dist/runtime/assets/scss/_variables.scss +0 -62
  56. package/dist/runtime/assets/scss/_variables2.scss +0 -0
  57. package/dist/runtime/assets/scss/_webcast.scss +0 -141
  58. package/dist/runtime/assets/scss/index.scss +0 -42
@@ -297,7 +297,7 @@ const presentersContainer = computed(() => {
297
297
  </div>
298
298
  </template>
299
299
 
300
- <style lang="scss" scoped>
300
+ <style scoped>
301
301
  .tracks-container {
302
302
  display: grid;
303
303
  grid-auto-columns: 1fr;
@@ -307,36 +307,42 @@ const presentersContainer = computed(() => {
307
307
  display: contents;
308
308
  }
309
309
 
310
- .tracks-container .track-container:nth-child(4n + 1) .track-header {
310
+ .tracks-container .track-container:nth-child(4n+1) .track-header {
311
311
  grid-row: 1;
312
312
  grid-column: 1;
313
313
  }
314
- .tracks-container .track-container:nth-child(4n + 2) .track-header {
314
+
315
+ .tracks-container .track-container:nth-child(4n+2) .track-header {
315
316
  grid-row: 1;
316
317
  grid-column: 2;
317
318
  }
318
- .tracks-container .track-container:nth-child(4n + 3) .track-header {
319
+
320
+ .tracks-container .track-container:nth-child(4n+3) .track-header {
319
321
  grid-row: 1;
320
322
  grid-column: 3;
321
323
  }
322
- .tracks-container .track-container:nth-child(4n + 4) .track-header {
324
+
325
+ .tracks-container .track-container:nth-child(4n+4) .track-header {
323
326
  grid-row: 1;
324
327
  grid-column: 4;
325
328
  }
326
329
 
327
- .tracks-container .track-container:nth-child(4n + 1) .track-sessions {
330
+ .tracks-container .track-container:nth-child(4n+1) .track-sessions {
328
331
  grid-row: 2;
329
332
  grid-column: 1;
330
333
  }
331
- .tracks-container .track-container:nth-child(4n + 2) .track-sessions {
334
+
335
+ .tracks-container .track-container:nth-child(4n+2) .track-sessions {
332
336
  grid-row: 2;
333
337
  grid-column: 2;
334
338
  }
335
- .tracks-container .track-container:nth-child(4n + 3) .track-sessions {
339
+
340
+ .tracks-container .track-container:nth-child(4n+3) .track-sessions {
336
341
  grid-row: 2;
337
342
  grid-column: 3;
338
343
  }
339
- .tracks-container .track-container:nth-child(4n + 4) .track-sessions {
344
+
345
+ .tracks-container .track-container:nth-child(4n+4) .track-sessions {
340
346
  grid-row: 2;
341
347
  grid-column: 4;
342
348
  }
@@ -129,32 +129,25 @@ const handleClick = () => {
129
129
  </div>
130
130
  </template>
131
131
 
132
- <style lang="scss">
133
- .small {
134
- h2 {
135
- font-size: 14px;
136
- }
137
-
138
- img {
139
- max-height: 35px !important;
140
- }
132
+ <style>
133
+ .small h2 {
134
+ font-size: 14px;
135
+ }
136
+ .small img {
137
+ max-height: 35px !important;
141
138
  }
142
139
 
143
- .medium {
144
- h2 {
145
- font-size: 0.9em;
146
- }
147
-
148
- img {
149
- max-height: 40px;
150
- }
140
+ .medium h2 {
141
+ font-size: 0.9em;
142
+ }
143
+ .medium img {
144
+ max-height: 40px;
151
145
  }
152
146
 
153
147
  .default {
154
148
  width: 100%;
155
-
156
- img {
157
- max-height: 60px;
158
- }
149
+ }
150
+ .default img {
151
+ max-height: 60px;
159
152
  }
160
153
  </style>
@@ -36,12 +36,13 @@ const toggle = () => {
36
36
  </div>
37
37
  </template>
38
38
 
39
- <style lang="scss" scoped>
39
+ <style scoped>
40
40
  .slide-enter-active,
41
41
  .slide-leave-active {
42
42
  overflow: hidden;
43
43
  transition: all 0.4s ease;
44
44
  }
45
+
45
46
  .slide-enter,
46
47
  .slide-leave-to {
47
48
  transform-origin: top;
@@ -49,16 +50,18 @@ const toggle = () => {
49
50
  opacity: 0;
50
51
  height: -10px;
51
52
  }
53
+
52
54
  .chevron {
53
55
  transition: 0.3s all cubic-bezier(1, 0.25, 0.25, 0.8);
54
56
  will-change: transform;
55
- &.down {
56
- transform: rotate(90deg);
57
- }
58
- &.normal {
59
- transform: rotate(0deg);
60
- }
61
57
  }
58
+ .chevron.down {
59
+ transform: rotate(90deg);
60
+ }
61
+ .chevron.normal {
62
+ transform: rotate(0deg);
63
+ }
64
+
62
65
  .outline-none {
63
66
  outline: none;
64
67
  }
@@ -305,34 +305,35 @@ onMounted(() => {
305
305
  </div>
306
306
  </template>
307
307
 
308
- <style lang="scss" scoped>
309
- .countdown-timer.compact {
310
- .countdown-container {
311
- @apply pt-0 mx-0;
312
- }
313
- h1 {
314
- @apply text-xl;
315
- }
316
- .units-container {
317
- @apply p-4 mt-1;
318
- }
319
- .unit-container.windows {
320
- width: 60px;
321
- }
308
+ <style scoped>
309
+ .countdown-timer.compact .countdown-container {
310
+ @apply pt-0 mx-0;
311
+ }
312
+ .countdown-timer.compact h1 {
313
+ @apply text-xl;
314
+ }
315
+ .countdown-timer.compact .units-container {
316
+ @apply p-4 mt-1;
317
+ }
318
+ .countdown-timer.compact .unit-container.windows {
319
+ width: 60px;
322
320
  }
323
321
 
324
322
  /* label + number container */
325
323
  .item-container {
326
324
  @apply flex flex-col;
327
325
  }
326
+
328
327
  /* days hrs min sec labels */
329
328
  .unit-label-container {
330
329
  @apply text-xs font-light;
331
330
  height: 18px;
332
331
  }
332
+
333
333
  .unit-label-container.windows {
334
334
  @apply pb-4 uppercase tracking-wide;
335
335
  }
336
+
336
337
  .unit-label-container.dials {
337
338
  @apply mx-0;
338
339
  padding-top: 2px;
@@ -342,6 +343,7 @@ onMounted(() => {
342
343
  border-bottom: 1px solid #ddd;
343
344
  background-image: linear-gradient(#fafafa, #efefef, #e6e6e6);
344
345
  }
346
+
345
347
  .unit-label-container.dials.last {
346
348
  width: 67px;
347
349
  }
@@ -350,10 +352,12 @@ onMounted(() => {
350
352
  .unit-container {
351
353
  @apply flex text-center items-center justify-center overflow-hidden;
352
354
  }
355
+
353
356
  .unit-container.windows {
354
357
  @apply mx-1 px-2 border-4 rounded-lg shadow-md;
355
358
  width: 70px;
356
359
  }
360
+
357
361
  .unit-container.dials {
358
362
  @apply mx-0 shadow;
359
363
  width: 70px;
@@ -369,6 +373,7 @@ onMounted(() => {
369
373
  position: relative;
370
374
  overflow: hidden;
371
375
  }
376
+
372
377
  .dropshade:before,
373
378
  .dropshade:after {
374
379
  content: "";
@@ -380,56 +385,54 @@ onMounted(() => {
380
385
  -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
381
386
  -moz-box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
382
387
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
383
- -webkit-border-radius: 15px / 80px;
384
- -moz-border-radius: 15px / 80px;
385
- border-radius: 10px / 80px;
386
- background-image: linear-gradient(
387
- rgba(0, 0, 0, 0),
388
- rgba(0, 0, 0, 0),
389
- rgba(0, 0, 0, 0.1)
390
- );
388
+ -webkit-border-radius: 15px/80px;
389
+ -moz-border-radius: 15px/80px;
390
+ border-radius: 10px/80px;
391
+ background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
391
392
  }
393
+
392
394
  .dropshade:before {
393
395
  left: -84px;
394
396
  }
397
+
395
398
  .dropshade:after {
396
399
  left: -14px;
397
400
  }
401
+
398
402
  .dropshade.last:after {
399
403
  left: -18px;
400
404
  }
401
405
 
402
406
  /* lg: dials */
403
407
  @screen lg {
404
- .countdown-timer.fullsize {
405
- .unit-container.windows,
406
- .unit-container.dials {
407
- width: 80px;
408
- height: 46px;
409
- }
410
- .unit-label-container.dials.last {
411
- width: 77px;
412
- }
413
- .dropshade:before {
414
- left: -84px;
415
- }
416
- .dropshade:after {
417
- left: -4px;
418
- }
419
- .dropshade.last:after {
420
- left: -8px;
421
- }
408
+ .countdown-timer.fullsize .unit-container.windows,
409
+ .countdown-timer.fullsize .unit-container.dials {
410
+ width: 80px;
411
+ height: 46px;
412
+ }
413
+ .countdown-timer.fullsize .unit-label-container.dials.last {
414
+ width: 77px;
415
+ }
416
+ .countdown-timer.fullsize .dropshade:before {
417
+ left: -84px;
418
+ }
419
+ .countdown-timer.fullsize .dropshade:after {
420
+ left: -4px;
421
+ }
422
+ .countdown-timer.fullsize .dropshade.last:after {
423
+ left: -8px;
422
424
  }
423
425
  }
424
-
425
426
  /* dials transitions */
426
427
  .slide-leave-active,
427
428
  .slide-enter-active {
428
429
  transition: 0.3s;
429
430
  }
431
+
430
432
  .slide-enter {
431
433
  transform: translate(0, -100%);
432
434
  }
435
+
433
436
  .slide-leave-active {
434
437
  transform: translate(0, 100%);
435
438
  }
@@ -5,7 +5,7 @@ declare const _default: import("vue").DefineComponent<{
5
5
  };
6
6
  }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
7
7
  [key: string]: any;
8
- }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
8
+ }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
9
9
  template: {
10
10
  type: StringConstructor;
11
11
  default: string;
@@ -68,18 +68,22 @@ const clicked = () => {
68
68
  </Transition>
69
69
  </template>
70
70
 
71
- <style lang="scss" scoped>
71
+ <style scoped>
72
72
  .max-h-1em {
73
73
  max-height: 1em;
74
74
  }
75
+
75
76
  .bg-smoke-light {
76
77
  background-color: rgba(0, 0, 0, 0.4);
77
78
  }
78
- .custom-max-width {
79
- @screen lg {
79
+
80
+ @screen lg {
81
+ .custom-max-width {
80
82
  max-width: calc(var(--maxw) * 1.25);
81
83
  }
82
- @screen xl {
84
+ }
85
+ @screen xl {
86
+ .custom-max-width {
83
87
  max-width: var(--maxw);
84
88
  }
85
89
  }
@@ -1,5 +1,8 @@
1
1
  <script lang="ts" setup>
2
+ import { ref, toRefs, computed } from "vue";
2
3
  import { storeToRefs } from "pinia";
4
+ import { useConferencesStore } from "../../store/conferences";
5
+ import { useTemplateConfigsStore } from "../../store/templateConfigs";
3
6
  import { useDateFormat } from "../../composables/useDateFormat";
4
7
  import { useConferenceHelpers } from "../../composables/useConferenceHelpers";
5
8
  import { useEvents } from "../../composables/useEvents";
@@ -7,7 +10,12 @@ import { useClassBinding } from "../../composables/useClassBinding";
7
10
  import CommonSponsor from "../agenda/components/Sponsor.vue";
8
11
  import { Conference } from "../../models/conference";
9
12
  import { Position } from "../../enums/general";
10
- import { listEventsClassObj } from "../../@types/components";
13
+ import {
14
+ listEventsClassObj,
15
+ listEventsCompObj,
16
+ countdownTimerClassObj,
17
+ sponsorClassObj,
18
+ } from "../../@types/components";
11
19
 
12
20
  interface Props {
13
21
  showSponsors?: boolean;
@@ -39,7 +47,12 @@ const props = withDefaults(defineProps<Props>(), {
39
47
  borderPosition: Position.MIDDLE,
40
48
  countdownPosition: Position.BOTTOM,
41
49
  classObject: () => {
42
- return {};
50
+ return {
51
+ components: ref<listEventsCompObj>({
52
+ countdownTimer: ref<countdownTimerClassObj>({}),
53
+ sponsor: ref<sponsorClassObj>({}),
54
+ }),
55
+ };
43
56
  },
44
57
  });
45
58
 
@@ -461,7 +474,7 @@ const showLoginButton = computed((): boolean => {
461
474
  </div>
462
475
  </template>
463
476
 
464
- <style lang="scss" scoped>
477
+ <style scoped>
465
478
  .leading-tight {
466
479
  line-height: 1.25rem;
467
480
  }
@@ -24,7 +24,7 @@ const successClass = computed(() => {
24
24
  </div>
25
25
  </template>
26
26
 
27
- <style lang="scss" scoped>
27
+ <style scoped>
28
28
  .message-base {
29
29
  @apply border font-bold px-4 py-3 mb-4 rounded relative;
30
30
  }
@@ -39,59 +39,44 @@ const toggle = () => {
39
39
  </div>
40
40
  </template>
41
41
 
42
- <style lang="scss" scoped>
42
+ <style scoped>
43
43
  .switch-button-control {
44
44
  display: flex;
45
45
  flex-direction: row;
46
46
  align-items: center;
47
-
48
- .switch-button {
49
- $switch-button-height: 1.6em;
50
- $switch-button-color: var(--color);
51
- $switch-button-border-thickness: 2px;
52
- $switch-transition: all 0.3s ease-in-out;
53
- $switch-is-rounded: true;
54
-
55
- height: $switch-button-height;
56
- width: calc(#{$switch-button-height} * 2);
57
- border: $switch-button-border-thickness solid $switch-button-color;
58
- box-shadow: inset 0px 0px $switch-button-border-thickness 0px
59
- rgba(0, 0, 0, 0.33);
60
- border-radius: if($switch-is-rounded, $switch-button-height, 0);
61
-
62
- transition: $switch-transition;
63
-
64
- $button-side-length: calc(
65
- #{$switch-button-height} - (2 * #{$switch-button-border-thickness})
47
+ }
48
+ .switch-button-control .switch-button {
49
+ height: 1.6em;
50
+ width: calc(1.6em * 2);
51
+ border: 2px solid var(--color);
52
+ box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.33);
53
+ border-radius: 1.6em;
54
+ transition: all 0.3s ease-in-out;
55
+ cursor: pointer;
56
+ }
57
+ .switch-button-control .switch-button .button {
58
+ height: calc(
59
+ 1.6em - (2 * 2px)
66
60
  );
67
-
68
- cursor: pointer;
69
-
70
- .button {
71
- height: $button-side-length;
72
- width: $button-side-length;
73
- border: $switch-button-border-thickness solid $switch-button-color;
74
- border-radius: if($switch-is-rounded, $button-side-length, 0);
75
- background: $switch-button-color;
76
-
77
- transition: $switch-transition;
78
- }
79
-
80
- &.enabled {
81
- background-color: $switch-button-color;
82
- box-shadow: none;
83
-
84
- .button {
85
- background: white;
86
- transform: translateX(
87
- calc(#{$button-side-length} + (2 *#{$switch-button-border-thickness}))
88
- );
89
- }
90
- }
91
- }
92
-
93
- .switch-button-label {
94
- margin-left: 10px;
95
- }
61
+ width: calc(
62
+ 1.6em - (2 * 2px)
63
+ );
64
+ border: 2px solid var(--color);
65
+ border-radius: calc(
66
+ 1.6em - (2 * 2px)
67
+ );
68
+ background: var(--color);
69
+ transition: all 0.3s ease-in-out;
70
+ }
71
+ .switch-button-control .switch-button.enabled {
72
+ background-color: var(--color);
73
+ box-shadow: none;
74
+ }
75
+ .switch-button-control .switch-button.enabled .button {
76
+ background: white;
77
+ transform: translateX(calc(calc( 1.6em - (2 * 2px) ) + (2 *2px)));
78
+ }
79
+ .switch-button-control .switch-button-label {
80
+ margin-left: 10px;
96
81
  }
97
82
  </style>
@@ -161,18 +161,20 @@ const handleClick = () => {
161
161
  </div>
162
162
  </template>
163
163
 
164
- <style scoped lang="scss">
164
+ <style scoped>
165
165
  .new-line:before {
166
- content: "\a ";
166
+ content: "\a";
167
167
  white-space: pre;
168
168
  }
169
+
169
170
  .no-new-line:before {
170
171
  content: " - ";
171
172
  white-space: normal;
172
173
  }
174
+
173
175
  @media (max-width: 991px) {
174
176
  .new-line-responsive:before {
175
- content: "\a ";
177
+ content: "\a";
176
178
  white-space: pre;
177
179
  }
178
180
  }
@@ -1,6 +1,6 @@
1
1
  import { Ref, ComputedRef } from "nuxt/dist/app/compat/capi";
2
2
  import { Conference, Day, Presentation, Presenter, Sponsor, Track, TrackGroup } from "../models/conference";
3
- export declare type UseAgendaMethods = {
3
+ export type UseAgendaMethods = {
4
4
  /**
5
5
  * conference days.
6
6
  */
@@ -1,4 +1,4 @@
1
- export declare type UseAnalyticsMethods = {
1
+ export type UseAnalyticsMethods = {
2
2
  /**
3
3
  * Fire event to google analytics
4
4
  */
@@ -1,5 +1,5 @@
1
1
  import { ComputedRef } from "vue";
2
- export declare type UseAuthMethods = {
2
+ export type UseAuthMethods = {
3
3
  isLoginDisabled: ComputedRef<boolean>;
4
4
  };
5
5
  export declare const useAuth: () => UseAuthMethods;
@@ -1,4 +1,4 @@
1
- export declare type UseClassBindingMethods = {
1
+ export type UseClassBindingMethods = {
2
2
  classBinding(_classObject: {}, _element: string, _defaults: string): string;
3
3
  };
4
4
  export declare const useClassBinding: () => UseClassBindingMethods;
@@ -1,6 +1,6 @@
1
1
  import { Ref } from "vue";
2
2
  import { Conference } from "../models/conference";
3
- export declare type UseConferenceHelpersMethods = {
3
+ export type UseConferenceHelpersMethods = {
4
4
  /**
5
5
  * Determine if conference is a single day event
6
6
  */
@@ -1,4 +1,4 @@
1
- export declare type DateFunctions = {
1
+ export type DateFunctions = {
2
2
  /**
3
3
  * Takes a date string and converts it to a formatted date
4
4
  * e.g August 8, 2022
@@ -1,6 +1,6 @@
1
1
  import type { Ref, ComputedRef } from "vue";
2
2
  import { Conference, Sponsor } from "../models/conference";
3
- export declare type UseEventsMethods = {
3
+ export type UseEventsMethods = {
4
4
  /**
5
5
  * determine if logged in
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Ref } from "vue";
2
2
  import { Conference } from "../models/conference";
3
- declare type UserLogin = {
3
+ type UserLogin = {
4
4
  /**
5
5
  * Email input
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import { Ref } from "nuxt/dist/app/compat/capi";
2
2
  import { Conference, Presentation, Track } from "../models/conference";
3
- export declare type UsePresentationMethods = {
3
+ export type UsePresentationMethods = {
4
4
  /**
5
5
  * show session time
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import { ComputedRef, Ref } from "nuxt/dist/app/compat/capi";
2
2
  import { Presenter } from "../models/conference";
3
- export declare type UsePresenterMethods = {
3
+ export type UsePresenterMethods = {
4
4
  fullName: ComputedRef<string>;
5
5
  titleCompany: ComputedRef<string>;
6
6
  imageHeight: ComputedRef<string>;
@@ -1,6 +1,6 @@
1
1
  import { Ref } from "nuxt/dist/app/compat/capi";
2
2
  import { Conference, Presenter } from "../models/conference";
3
- export declare type UsePresentersMethods = {
3
+ export type UsePresentersMethods = {
4
4
  /**
5
5
  * get presenters label
6
6
  */
@@ -1,4 +1,4 @@
1
- export declare type UseRegistrationMethods = {
1
+ export type UseRegistrationMethods = {
2
2
  /**
3
3
  * Determine if the portal has townhall registration enabled.
4
4
  */
@@ -1 +1 @@
1
- export declare type Affiliate = {};
1
+ export type Affiliate = {};
@@ -1,4 +1,4 @@
1
- export declare type AuthUser = {
1
+ export type AuthUser = {
2
2
  id?: string;
3
3
  email?: string;
4
4
  name?: string;