@icvdeveloper/common-module 0.0.42 → 0.0.44
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.d.ts +1 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +12 -7
- 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
|
@@ -1,141 +0,0 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--video-width: 640px;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.no-scrollbar {
|
|
6
|
-
scrollbar-width: none; /* Firefox */
|
|
7
|
-
-ms-overflow-style: none; /* IE 10+ */
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.no-scrollbar::-webkit-scrollbar {
|
|
11
|
-
display: none; /* Chrome Safari */
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.expand-overlay > a {
|
|
15
|
-
@apply cursor-pointer text-white rounded-sm p-1 bg-gray-500 inline-block;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.pop-window {
|
|
19
|
-
border-style: solid;
|
|
20
|
-
border-width: 1px;
|
|
21
|
-
@apply border-gray-500;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.pop-window-active {
|
|
25
|
-
border-style: dashed !important;
|
|
26
|
-
border-width: 1px;
|
|
27
|
-
@apply border-gray-600;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.flex-ratio-container {
|
|
31
|
-
@apply flex flex-col w-full;
|
|
32
|
-
@screen md {
|
|
33
|
-
@apply relative flex-row;
|
|
34
|
-
padding-top: calc(
|
|
35
|
-
36.69% + 0.4rem
|
|
36
|
-
); // (increased aspect ratio for double content-column width + vertical margin)
|
|
37
|
-
height: 0;
|
|
38
|
-
}
|
|
39
|
-
@screen lg {
|
|
40
|
-
padding-top: calc(
|
|
41
|
-
36.69% + 1.65rem + 1rem
|
|
42
|
-
); // (increased aspect ratio + ~height of tab bar + vertical margin)
|
|
43
|
-
@apply mb-8;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.flex-ratio-audio-slide-container {
|
|
48
|
-
@apply flex flex-col w-full;
|
|
49
|
-
@screen xl {
|
|
50
|
-
@apply relative flex-row mb-8;
|
|
51
|
-
padding-top: calc(
|
|
52
|
-
36.69% + 1.9rem + 1rem
|
|
53
|
-
); // (16:9 player with square slide + ~height of tab bar + vertical margin)
|
|
54
|
-
height: 0;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.flex-ratio-audio-container {
|
|
59
|
-
@apply flex flex-col w-full;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.flex-ratio-slide-container {
|
|
63
|
-
@apply flex flex-col w-full;
|
|
64
|
-
@screen xl {
|
|
65
|
-
@apply relative flex-row mb-8;
|
|
66
|
-
padding-top: calc(
|
|
67
|
-
36.69% + 1.9rem + 1rem
|
|
68
|
-
); // (16:9 player with square slide + ~height of tab bar + vertical margin)
|
|
69
|
-
height: 0;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
.player-ratio-outer {
|
|
74
|
-
width: 100%;
|
|
75
|
-
@screen md {
|
|
76
|
-
width: 65%;
|
|
77
|
-
@apply top-0 h-full absolute;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.player-ratio-inner {
|
|
82
|
-
@apply block;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.player-slide-ratio-outer {
|
|
86
|
-
width: 100%;
|
|
87
|
-
@screen xl {
|
|
88
|
-
width: 80%;
|
|
89
|
-
@apply top-0 h-full absolute;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.player-audio-ratio-outer {
|
|
94
|
-
width: 100%;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.content-ratio-outer {
|
|
98
|
-
@apply no-scrollbar w-full overflow-y-scroll;
|
|
99
|
-
max-height: 500px;
|
|
100
|
-
@screen md {
|
|
101
|
-
width: 35%;
|
|
102
|
-
@apply top-0 h-full max-h-full absolute;
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.content-slide-ratio-outer {
|
|
107
|
-
@apply no-scrollbar w-full overflow-y-scroll;
|
|
108
|
-
max-height: 500px;
|
|
109
|
-
@screen xl {
|
|
110
|
-
@apply top-0 h-full max-h-full absolute;
|
|
111
|
-
width: 20%;
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
.content-audio-ratio-outer {
|
|
116
|
-
@apply no-scrollbar w-full overflow-y-scroll;
|
|
117
|
-
max-height: 500px;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.content-ratio-inner {
|
|
121
|
-
@apply block h-full pb-2 px-2 no-scrollbar;
|
|
122
|
-
@screen md {
|
|
123
|
-
@apply p-2;
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.bottom-tab-bar {
|
|
128
|
-
@apply relative pr-8 z-50;
|
|
129
|
-
width: 58%;
|
|
130
|
-
margin-top: -54px;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
.webcast-sponsor {
|
|
134
|
-
max-height: 3.5rem;
|
|
135
|
-
@screen md {
|
|
136
|
-
max-height: 3rem;
|
|
137
|
-
}
|
|
138
|
-
@screen xl {
|
|
139
|
-
max-height: 5rem;
|
|
140
|
-
}
|
|
141
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
@import "_variables";
|
|
2
|
-
@import "_custom";
|
|
3
|
-
@import "_functions";
|
|
4
|
-
@import "_animations";
|
|
5
|
-
@import "_transitions";
|
|
6
|
-
@import "_header";
|
|
7
|
-
@import "_footer";
|
|
8
|
-
@import "_forms";
|
|
9
|
-
@import "_container_variants";
|
|
10
|
-
@import "_webcast";
|
|
11
|
-
@import "agenda";
|
|
12
|
-
|
|
13
|
-
/** START Custom Classes **/
|
|
14
|
-
* {
|
|
15
|
-
margin: 0;
|
|
16
|
-
padding: 0;
|
|
17
|
-
box-sizing: border-box;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
body {
|
|
21
|
-
font-size: 14px;
|
|
22
|
-
font-weight: 400;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
p {
|
|
26
|
-
margin-bottom: 1em;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
h1 {
|
|
30
|
-
margin-bottom: 1em;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
blockquote {
|
|
34
|
-
display: block;
|
|
35
|
-
margin-top: 1em;
|
|
36
|
-
margin-bottom: 1em;
|
|
37
|
-
margin-left: 40px;
|
|
38
|
-
margin-right: 40px;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
/** END Custom Classes **/
|
|
42
|
-
@tailwind utilities;
|