@icvdeveloper/common-module 0.0.42 → 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.
- package/dist/module.json +1 -1
- package/dist/module.mjs +5 -5
- package/dist/runtime/@types/components.d.ts +5 -5
- package/dist/runtime/@types/configVariables.d.ts +11 -11
- package/dist/runtime/analytics.d.ts +1 -1
- package/dist/runtime/assets/scss/index.css +705 -0
- package/dist/runtime/components/agenda/AgendaTabbed.vue +15 -9
- package/dist/runtime/components/agenda/components/Sponsor.vue +14 -21
- package/dist/runtime/components/core/Accordion.vue +10 -7
- package/dist/runtime/components/core/CountdownTimer.vue +44 -41
- package/dist/runtime/components/core/DynamicHtml.vue.d.ts +1 -1
- package/dist/runtime/components/core/Modal.vue +8 -4
- package/dist/runtime/components/events/ListEvents.vue +1 -1
- package/dist/runtime/components/forms/Message.vue +1 -1
- package/dist/runtime/components/forms/SwitchInput.vue +34 -49
- package/dist/runtime/components/presenters/PresenterListing.vue +5 -3
- package/dist/runtime/composables/useAgenda.d.ts +1 -1
- package/dist/runtime/composables/useAnalytics.d.ts +1 -1
- package/dist/runtime/composables/useAuth.d.ts +1 -1
- package/dist/runtime/composables/useClassBinding.d.ts +1 -1
- package/dist/runtime/composables/useConferenceHelpers.d.ts +1 -1
- package/dist/runtime/composables/useDateFormat.d.ts +1 -1
- package/dist/runtime/composables/useEvents.d.ts +1 -1
- package/dist/runtime/composables/useLogin.d.ts +1 -1
- package/dist/runtime/composables/usePresentation.d.ts +1 -1
- package/dist/runtime/composables/usePresenter.d.ts +1 -1
- package/dist/runtime/composables/usePresenters.d.ts +1 -1
- package/dist/runtime/composables/useRegistration.d.ts +1 -1
- package/dist/runtime/models/affiliate.d.ts +1 -1
- package/dist/runtime/models/authUser.d.ts +1 -1
- package/dist/runtime/models/conference.d.ts +8 -8
- package/dist/runtime/models/globalConfig.d.ts +3 -3
- package/dist/runtime/models/group.d.ts +1 -1
- package/dist/runtime/models/icons.d.ts +2 -2
- package/dist/runtime/models/navigationConfig.d.ts +1 -1
- package/dist/runtime/models/pagesConfig.d.ts +12 -12
- package/dist/runtime/models/portal.d.ts +1 -1
- package/dist/runtime/models/templateConfig.d.ts +5 -5
- package/dist/runtime/plugin.mjs +3 -0
- package/dist/runtime/store/affiliates.d.ts +1 -1
- package/dist/runtime/store/auth.d.ts +2 -2
- package/dist/runtime/v3plusCommonPlugin.d.ts +2 -2
- package/dist/types.d.ts +1 -1
- package/package.json +6 -6
- package/dist/runtime/assets/scss/_agenda.scss +0 -47
- package/dist/runtime/assets/scss/_animations.scss +0 -11
- package/dist/runtime/assets/scss/_container_variants.scss +0 -26
- package/dist/runtime/assets/scss/_custom.scss +0 -364
- package/dist/runtime/assets/scss/_footer.scss +0 -20
- package/dist/runtime/assets/scss/_forms.scss +0 -29
- package/dist/runtime/assets/scss/_functions.scss +0 -24
- package/dist/runtime/assets/scss/_header.scss +0 -40
- package/dist/runtime/assets/scss/_index_production.scss +0 -45
- package/dist/runtime/assets/scss/_transitions.scss +0 -24
- package/dist/runtime/assets/scss/_variables.scss +0 -62
- package/dist/runtime/assets/scss/_variables2.scss +0 -0
- package/dist/runtime/assets/scss/_webcast.scss +0 -141
- 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
|
|
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
|
|
310
|
+
.tracks-container .track-container:nth-child(4n+1) .track-header {
|
|
311
311
|
grid-row: 1;
|
|
312
312
|
grid-column: 1;
|
|
313
313
|
}
|
|
314
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
330
|
+
.tracks-container .track-container:nth-child(4n+1) .track-sessions {
|
|
328
331
|
grid-row: 2;
|
|
329
332
|
grid-column: 1;
|
|
330
333
|
}
|
|
331
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
133
|
-
.small {
|
|
134
|
-
|
|
135
|
-
|
|
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
|
-
|
|
145
|
-
|
|
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
|
-
|
|
157
|
-
|
|
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
|
|
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
|
|
309
|
-
.countdown-timer.compact {
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
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
|
|
384
|
-
-moz-border-radius: 15px
|
|
385
|
-
border-radius: 10px
|
|
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
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
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,
|
|
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
|
|
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
|
-
|
|
79
|
-
|
|
79
|
+
|
|
80
|
+
@screen lg {
|
|
81
|
+
.custom-max-width {
|
|
80
82
|
max-width: calc(var(--maxw) * 1.25);
|
|
81
83
|
}
|
|
82
|
-
|
|
84
|
+
}
|
|
85
|
+
@screen xl {
|
|
86
|
+
.custom-max-width {
|
|
83
87
|
max-width: var(--maxw);
|
|
84
88
|
}
|
|
85
89
|
}
|
|
@@ -39,59 +39,44 @@ const toggle = () => {
|
|
|
39
39
|
</div>
|
|
40
40
|
</template>
|
|
41
41
|
|
|
42
|
-
<style
|
|
42
|
+
<style scoped>
|
|
43
43
|
.switch-button-control {
|
|
44
44
|
display: flex;
|
|
45
45
|
flex-direction: row;
|
|
46
46
|
align-items: center;
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
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
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
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
|
|
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
|
|
3
|
+
export type UseAgendaMethods = {
|
|
4
4
|
/**
|
|
5
5
|
* conference days.
|
|
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
|
|
3
|
+
export type UsePresenterMethods = {
|
|
4
4
|
fullName: ComputedRef<string>;
|
|
5
5
|
titleCompany: ComputedRef<string>;
|
|
6
6
|
imageHeight: ComputedRef<string>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type Affiliate = {};
|
|
@@ -14,7 +14,7 @@ export declare enum PresentationType {
|
|
|
14
14
|
EMBED = "embed",
|
|
15
15
|
LINK = "link"
|
|
16
16
|
}
|
|
17
|
-
export
|
|
17
|
+
export type Presenter = {
|
|
18
18
|
biography?: string | null;
|
|
19
19
|
client_id?: number;
|
|
20
20
|
company?: string | null;
|
|
@@ -35,7 +35,7 @@ export declare type Presenter = {
|
|
|
35
35
|
youtube_url?: string | null;
|
|
36
36
|
presentationId?: number | null;
|
|
37
37
|
};
|
|
38
|
-
export
|
|
38
|
+
export type Group = {
|
|
39
39
|
ce_enabled?: boolean;
|
|
40
40
|
code?: string;
|
|
41
41
|
description?: string | null;
|
|
@@ -47,7 +47,7 @@ export declare type Group = {
|
|
|
47
47
|
price?: number;
|
|
48
48
|
registration_message?: string | null;
|
|
49
49
|
};
|
|
50
|
-
export
|
|
50
|
+
export type Sponsor = {
|
|
51
51
|
id?: number;
|
|
52
52
|
name?: string;
|
|
53
53
|
label?: string;
|
|
@@ -57,7 +57,7 @@ export declare type Sponsor = {
|
|
|
57
57
|
level?: number;
|
|
58
58
|
role?: string;
|
|
59
59
|
};
|
|
60
|
-
export
|
|
60
|
+
export type Presentation = {
|
|
61
61
|
captions_url?: string | null;
|
|
62
62
|
date?: string;
|
|
63
63
|
date_visible?: boolean;
|
|
@@ -78,7 +78,7 @@ export declare type Presentation = {
|
|
|
78
78
|
presenters?: Array<Presenter>;
|
|
79
79
|
sponsors?: Array<Sponsor>;
|
|
80
80
|
};
|
|
81
|
-
export
|
|
81
|
+
export type Track = {
|
|
82
82
|
access?: boolean;
|
|
83
83
|
channel?: number;
|
|
84
84
|
date?: string;
|
|
@@ -89,14 +89,14 @@ export declare type Track = {
|
|
|
89
89
|
sponsors?: Array<Sponsor>;
|
|
90
90
|
type?: string;
|
|
91
91
|
};
|
|
92
|
-
export
|
|
92
|
+
export type TrackGroup = {
|
|
93
93
|
date?: string;
|
|
94
94
|
id?: number;
|
|
95
95
|
name?: string;
|
|
96
96
|
tracks?: Array<Track>;
|
|
97
97
|
type?: string;
|
|
98
98
|
};
|
|
99
|
-
export
|
|
99
|
+
export type Day = {
|
|
100
100
|
access?: boolean;
|
|
101
101
|
date?: string;
|
|
102
102
|
date_visible?: boolean;
|
|
@@ -106,7 +106,7 @@ export declare type Day = {
|
|
|
106
106
|
track_groups?: Array<TrackGroup>;
|
|
107
107
|
sponsors?: Array<Sponsor>;
|
|
108
108
|
};
|
|
109
|
-
export
|
|
109
|
+
export type Conference = {
|
|
110
110
|
access?: boolean;
|
|
111
111
|
agenda_enabled?: boolean;
|
|
112
112
|
ce_credit_enabled?: boolean;
|