@icvdeveloper/common-module 1.4.14 → 2.1.0
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/CHANGELOG.md +4 -0
- package/dist/module.d.mts +1051 -2
- package/dist/module.d.ts +1051 -2
- package/dist/module.json +1 -1
- package/dist/module.mjs +29 -15
- package/dist/runtime/@types/components.d.ts +22 -0
- package/dist/runtime/@types/configVariables.d.ts +6 -0
- package/dist/runtime/analytics.d.ts +1 -6
- package/dist/runtime/assets/scss/_agenda.css +1 -0
- package/dist/runtime/assets/scss/_animations.css +1 -0
- package/dist/runtime/assets/scss/_container_variants.css +1 -0
- package/dist/runtime/assets/scss/_custom.css +3 -0
- package/dist/runtime/assets/scss/_forms.css +1 -0
- package/dist/runtime/assets/scss/_header.css +0 -0
- package/dist/runtime/assets/scss/_index_production.css +1 -0
- package/dist/runtime/assets/scss/_transitions.css +1 -0
- package/dist/runtime/assets/scss/_variables.css +1 -0
- package/dist/runtime/assets/scss/_variables2.css +0 -0
- package/dist/runtime/assets/scss/_webcast.css +1 -0
- package/dist/runtime/assets/scss/index.css +1 -705
- package/dist/runtime/assets/svg/icon-minus.svg +6 -0
- package/dist/runtime/assets/svg/icon-video.svg +6 -0
- package/dist/runtime/components/affiliates/AffiliateModal.vue +66 -0
- package/dist/runtime/components/affiliates/AffiliatePage.vue +329 -159
- package/dist/runtime/components/agenda/AgendaList.vue +18 -14
- package/dist/runtime/components/agenda/AgendaTabbed.vue +60 -54
- package/dist/runtime/components/agenda/components/AgendaListAccordion.vue +8 -3
- package/dist/runtime/components/agenda/components/Calendar.vue +23 -18
- package/dist/runtime/components/agenda/components/Favorite.vue +46 -0
- package/dist/runtime/components/agenda/components/InfoLink.vue +15 -5
- package/dist/runtime/components/agenda/components/PlayIcon.vue +3 -5
- package/dist/runtime/components/agenda/components/PresentationLink.vue +37 -19
- package/dist/runtime/components/agenda/components/Sponsor.vue +31 -24
- package/dist/runtime/components/auth/PasswordReset.vue +20 -5
- package/dist/runtime/components/auth/Registration.vue +14 -4
- package/dist/runtime/components/auth/Ucc.vue +44 -27
- package/dist/runtime/components/chat/ChatConversationList.vue +108 -0
- package/dist/runtime/components/chat/ChatCreateConversation.vue +199 -0
- package/dist/runtime/components/chat/ChatCreateGroupConversation.vue +154 -0
- package/dist/runtime/components/chat/ChatHeader.vue +97 -0
- package/dist/runtime/components/chat/ChatMessage.vue +40 -0
- package/dist/runtime/components/chat/ChatShowConversation.vue +76 -0
- package/dist/runtime/components/chat/ChatWidget.vue +40 -0
- package/dist/runtime/components/chat/ChatWindow.vue +154 -0
- package/dist/runtime/components/chat/ChatWindow.vue.d.ts +6 -0
- package/dist/runtime/components/chat/MessageInput.vue +27 -0
- package/dist/runtime/components/chat/SearchInput.vue +32 -0
- package/dist/runtime/components/core/Accordion.vue +12 -12
- package/dist/runtime/components/core/AttendeeList.vue +31 -36
- package/dist/runtime/components/core/CountdownTimer.vue +68 -52
- package/dist/runtime/components/core/DynamicHtml.vue.d.ts +6 -9
- package/dist/runtime/components/core/Modal.vue +24 -22
- package/dist/runtime/components/core/ModalButton.vue +43 -0
- package/dist/runtime/components/core/Navbar.vue +33 -21
- package/dist/runtime/components/core/Navigation.vue +286 -0
- package/dist/runtime/components/core/SvgIcon.vue +34 -1
- package/dist/runtime/components/core/VButton.vue +35 -0
- package/dist/runtime/components/core/ZoomModal.vue +9 -3
- package/dist/runtime/components/events/EventHeader.vue +14 -4
- package/dist/runtime/components/events/ListEvents.vue +21 -22
- package/dist/runtime/components/forms/CheckboxGroup.vue +46 -0
- package/dist/runtime/components/forms/ErrorField.vue +11 -2
- package/dist/runtime/components/forms/Message.vue +1 -1
- package/dist/runtime/components/forms/RadioGroup.vue +50 -0
- package/dist/runtime/components/forms/SearchInput.vue +8 -2
- package/dist/runtime/components/forms/SelectDropDown.vue +47 -0
- package/dist/runtime/components/forms/SupportForm.vue +22 -11
- package/dist/runtime/components/forms/SwitchInput.vue +50 -30
- package/dist/runtime/components/forms/TextArea.vue +1 -1
- package/dist/runtime/components/forms/TextInput.vue +1 -1
- package/dist/runtime/components/layouts/Accordion.vue +11 -6
- package/dist/runtime/components/media/ArchivePlayerAndContentContainer.vue +24 -5
- package/dist/runtime/components/media/ArchiveVideoPlayer.vue +19 -23
- package/dist/runtime/components/media/PlayerAndContentContainer.vue +4 -1
- package/dist/runtime/components/media/WebcastVideoPlayer.vue +6 -18
- package/dist/runtime/components/media/components/AgendaPanel.vue +7 -6
- package/dist/runtime/components/media/components/ArchiveMediaContainer.vue +17 -15
- package/dist/runtime/components/media/components/CeCreditNotification.vue +8 -8
- package/dist/runtime/components/media/components/ContentArea.vue +59 -18
- package/dist/runtime/components/media/components/ContentTabs.vue +40 -28
- package/dist/runtime/components/media/components/DocumentsPanel.vue +19 -17
- package/dist/runtime/components/media/components/MediaContainer.vue +11 -13
- package/dist/runtime/components/media/components/OverviewPanel.vue +5 -2
- package/dist/runtime/components/media/components/PresentersPanel.vue +74 -55
- package/dist/runtime/components/media/components/SessionReporting.vue +5 -4
- package/dist/runtime/components/media/components/SponsorsPanel.vue +13 -12
- package/dist/runtime/components/presenters/PresenterListing.vue +33 -25
- package/dist/runtime/components/presenters/PresenterModal.vue +26 -21
- package/dist/runtime/components/presenters/Presenters.vue +139 -0
- package/dist/runtime/components/profile/Profile.vue +10 -6
- package/dist/runtime/components/profile/components/Sidebar.vue +1 -1
- package/dist/runtime/components/profile/components/SidebarNavItem.vue +2 -4
- package/dist/runtime/components/profile/tabs/Favorites.vue +5 -4
- package/dist/runtime/components/profile/tabs/GeneralInformation.vue +26 -16
- package/dist/runtime/components/profile/tabs/ProfileImage.vue +7 -6
- package/dist/runtime/components/registration/AlreadyRegisteredModal.vue +102 -0
- package/dist/runtime/components/registration/PaymentForm.vue +136 -0
- package/dist/runtime/components/registration/RegistrationForm.vue +417 -0
- package/dist/runtime/components/registration/RegistrationGroupSelect.vue +146 -0
- package/dist/runtime/components/registration/StripePaymentForm.vue +121 -0
- package/dist/runtime/components/support/FAQAccordion.vue +8 -7
- package/dist/runtime/composables/useAdobeLaunch.d.ts +2 -7
- package/dist/runtime/composables/useAdobeLaunch.mjs +2 -2
- package/dist/runtime/composables/useAgenda.d.ts +13 -1
- package/dist/runtime/composables/useAgenda.mjs +125 -25
- package/dist/runtime/composables/useApi.d.ts +1 -1
- package/dist/runtime/composables/useAuth.d.ts +1 -1
- package/dist/runtime/composables/useAuth.mjs +1 -1
- package/dist/runtime/composables/useClassBinding.d.ts +3 -1
- package/dist/runtime/composables/useConferenceHelpers.d.ts +7 -3
- package/dist/runtime/composables/useConferenceHelpers.mjs +26 -15
- package/dist/runtime/composables/useEventHooks.d.ts +29 -0
- package/dist/runtime/composables/useEventHooks.mjs +21 -0
- package/dist/runtime/composables/useEvents.d.ts +17 -1
- package/dist/runtime/composables/useEvents.mjs +35 -9
- package/dist/runtime/composables/useLogin.mjs +9 -5
- package/dist/runtime/composables/useNavigation.d.ts +1 -1
- package/dist/runtime/composables/useNavigation.mjs +4 -2
- package/dist/runtime/composables/usePresentation.d.ts +2 -2
- package/dist/runtime/composables/usePresentation.mjs +8 -7
- package/dist/runtime/composables/usePresenter.d.ts +2 -2
- package/dist/runtime/composables/usePresenters.d.ts +2 -2
- package/dist/runtime/composables/usePusher.d.ts +4 -0
- package/dist/runtime/composables/usePusher.mjs +38 -26
- package/dist/runtime/composables/useScripts.mjs +1 -1
- package/dist/runtime/composables/useStream.d.ts +2 -3
- package/dist/runtime/composables/useStream.mjs +8 -2
- package/dist/runtime/composables/useUcc.d.ts +1 -1
- package/dist/runtime/composables/useUcc.mjs +29 -23
- package/dist/runtime/enums/general.d.ts +4 -1
- package/dist/runtime/enums/general.mjs +4 -1
- package/dist/runtime/models/adobeLaunch.d.ts +6 -0
- package/dist/runtime/models/adobeLaunch.mjs +0 -0
- package/dist/runtime/models/analytics.d.ts +6 -0
- package/dist/runtime/models/analytics.mjs +0 -0
- package/dist/runtime/models/attendeeList.d.ts +1 -1
- package/dist/runtime/models/conference.d.ts +122 -91
- package/dist/runtime/models/conversation.d.ts +11 -13
- package/dist/runtime/models/document.d.ts +5 -5
- package/dist/runtime/models/globalConfig.d.ts +9 -3
- package/dist/runtime/models/group.d.ts +38 -8
- package/dist/runtime/models/icons.d.ts +8 -1
- package/dist/runtime/models/index.d.ts +20 -0
- package/dist/runtime/models/index.mjs +20 -0
- package/dist/runtime/models/link.d.ts +4 -4
- package/dist/runtime/models/loginParams.d.ts +5 -0
- package/dist/runtime/models/loginParams.mjs +0 -0
- package/dist/runtime/models/navigationConfig.d.ts +7 -7
- package/dist/runtime/models/pagination.d.ts +11 -11
- package/dist/runtime/models/portal.d.ts +15 -10
- package/dist/runtime/models/templateConfig.d.ts +13 -7
- package/dist/runtime/models/ucc.d.ts +22 -0
- package/dist/runtime/models/ucc.mjs +0 -0
- package/dist/runtime/models/user.d.ts +25 -12
- package/dist/runtime/models/vButton.d.ts +7 -0
- package/dist/runtime/models/vButton.mjs +0 -0
- package/dist/runtime/models/video.d.ts +5 -4
- package/dist/runtime/models/virtualPagesConfig.d.ts +223 -0
- package/dist/runtime/models/virtualPagesConfig.mjs +0 -0
- package/dist/runtime/plugin.mjs +18 -9
- package/dist/runtime/store/affiliates.d.ts +4 -1
- package/dist/runtime/store/affiliates.mjs +38 -0
- package/dist/runtime/store/attendeeList.d.ts +1 -1
- package/dist/runtime/store/auth.d.ts +3 -7
- package/dist/runtime/store/auth.mjs +6 -0
- package/dist/runtime/store/conferences.d.ts +3 -1
- package/dist/runtime/store/conferences.mjs +14 -9
- package/dist/runtime/store/conversations.d.ts +78 -10
- package/dist/runtime/store/conversations.mjs +255 -22
- package/dist/runtime/store/modalPlayerConfig.d.ts +27 -0
- package/dist/runtime/store/modalPlayerConfig.mjs +58 -0
- package/dist/runtime/store/navigationConfig.d.ts +1 -1
- package/dist/runtime/store/presentations.d.ts +2 -2
- package/dist/runtime/store/templateConfigs.d.ts +7 -6
- package/dist/runtime/store/templateConfigs.mjs +7 -6
- package/dist/runtime/store/user.mjs +0 -1
- package/dist/runtime/v3plusCommonPlugin.d.ts +1 -1
- package/dist/types.d.mts +3 -2
- package/dist/types.d.ts +3 -2
- package/package.json +12 -9
- package/dist/runtime/components/media/components/JsonApi.vue +0 -33
- package/dist/runtime/components/media/components/JsonApi.vue.d.ts +0 -16
- package/dist/runtime/components/media/components/PresentersPanel.vue.d.ts +0 -32
- package/dist/runtime/components/media/components/WindowContent.vue +0 -118
- package/dist/runtime/components/media/components/WindowContent.vue.d.ts +0 -50
- package/dist/runtime/components/media/components/WindowSlide.vue +0 -92
- package/dist/runtime/components/media/components/WindowSlide.vue.d.ts +0 -36
- package/dist/runtime/models/authUser.d.ts +0 -16
- /package/dist/runtime/{models/authUser.mjs → assets/scss/_footer.css} +0 -0
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -31,6 +31,8 @@ var PresentationType = /* @__PURE__ */ ((PresentationType2) => {
|
|
|
31
31
|
return PresentationType2;
|
|
32
32
|
})(PresentationType || {});
|
|
33
33
|
|
|
34
|
+
const PAGE_LENGTH = 15;
|
|
35
|
+
|
|
34
36
|
const module = defineNuxtModule({
|
|
35
37
|
meta: {
|
|
36
38
|
name: "v3plus-common-module",
|
|
@@ -81,74 +83,86 @@ const module = defineNuxtModule({
|
|
|
81
83
|
addPlugin(resolve(runtimeDir, "plugin"));
|
|
82
84
|
nuxt.options.css.push("nprogress/nprogress.css");
|
|
83
85
|
if (options.compileCss) {
|
|
84
|
-
nuxt.options.css.push(join(runtimeDir, "assets/scss/index.
|
|
86
|
+
nuxt.options.css.push(join(runtimeDir, "assets/scss/index.css"));
|
|
85
87
|
} else {
|
|
86
88
|
nuxt.options.css.push(join(runtimeDir, "assets/scss/index.css"));
|
|
87
89
|
}
|
|
88
90
|
if (nuxt.options.vite.optimizeDeps) {
|
|
89
|
-
nuxt.options.vite.optimizeDeps.include = ["nprogress"];
|
|
91
|
+
nuxt.options.vite.optimizeDeps.include = ["nprogress", "lodash-es", "pusher-js"];
|
|
90
92
|
} else {
|
|
91
93
|
nuxt.options.vite.optimizeDeps = {
|
|
92
|
-
include: ["nprogress"]
|
|
94
|
+
include: ["nprogress", "lodash-es", "pusher-js"]
|
|
93
95
|
};
|
|
94
96
|
}
|
|
97
|
+
addImportsDir(join(runtimeDir, "models"));
|
|
98
|
+
addImportsDir(join(runtimeDir, "@types"));
|
|
95
99
|
addImportsDir(join(runtimeDir, "store"));
|
|
96
100
|
addImportsDir(join(runtimeDir, "composables"));
|
|
97
|
-
addComponentsDir({
|
|
101
|
+
await addComponentsDir({
|
|
98
102
|
path: join(runtimeDir, "components/core"),
|
|
99
103
|
extensions: ["vue"],
|
|
100
104
|
prefix: "Common"
|
|
101
105
|
});
|
|
102
|
-
addComponentsDir({
|
|
106
|
+
await addComponentsDir({
|
|
103
107
|
path: join(runtimeDir, "components/auth"),
|
|
104
108
|
extensions: ["vue"],
|
|
105
109
|
prefix: "Common"
|
|
106
110
|
});
|
|
107
|
-
addComponentsDir({
|
|
111
|
+
await addComponentsDir({
|
|
108
112
|
path: join(runtimeDir, "components/agenda"),
|
|
109
113
|
extensions: ["vue"],
|
|
110
114
|
prefix: "Common"
|
|
111
115
|
});
|
|
112
|
-
addComponentsDir({
|
|
116
|
+
await addComponentsDir({
|
|
113
117
|
path: join(runtimeDir, "components/events"),
|
|
114
118
|
extensions: ["vue"],
|
|
115
119
|
prefix: "Common"
|
|
116
120
|
});
|
|
117
|
-
addComponentsDir({
|
|
121
|
+
await addComponentsDir({
|
|
118
122
|
path: join(runtimeDir, "components/forms"),
|
|
119
123
|
extensions: ["vue"],
|
|
120
124
|
prefix: "Common"
|
|
121
125
|
});
|
|
122
|
-
addComponentsDir({
|
|
126
|
+
await addComponentsDir({
|
|
123
127
|
path: join(runtimeDir, "components/affiliates"),
|
|
124
128
|
extensions: ["vue"],
|
|
125
129
|
prefix: "Common"
|
|
126
130
|
});
|
|
127
|
-
addComponentsDir({
|
|
131
|
+
await addComponentsDir({
|
|
128
132
|
path: join(runtimeDir, "components/layouts"),
|
|
129
133
|
extensions: ["vue"],
|
|
130
134
|
prefix: "Common"
|
|
131
135
|
});
|
|
132
|
-
addComponentsDir({
|
|
136
|
+
await addComponentsDir({
|
|
133
137
|
path: join(runtimeDir, "components/presenters"),
|
|
134
138
|
extensions: ["vue"],
|
|
135
139
|
prefix: "Common"
|
|
136
140
|
});
|
|
137
|
-
addComponentsDir({
|
|
141
|
+
await addComponentsDir({
|
|
138
142
|
path: join(runtimeDir, "components/profile"),
|
|
139
143
|
extensions: ["vue"],
|
|
140
144
|
prefix: "Common"
|
|
141
145
|
});
|
|
142
|
-
addComponentsDir({
|
|
146
|
+
await addComponentsDir({
|
|
143
147
|
path: join(runtimeDir, "components/support"),
|
|
144
148
|
extensions: ["vue"],
|
|
145
149
|
prefix: "Common"
|
|
146
150
|
});
|
|
147
|
-
addComponentsDir({
|
|
151
|
+
await addComponentsDir({
|
|
148
152
|
path: join(runtimeDir, "components/media"),
|
|
149
153
|
extensions: ["vue"],
|
|
150
154
|
prefix: "Common"
|
|
151
155
|
});
|
|
156
|
+
await addComponentsDir({
|
|
157
|
+
path: join(runtimeDir, "components/registration"),
|
|
158
|
+
extensions: ["vue"],
|
|
159
|
+
prefix: "Common"
|
|
160
|
+
});
|
|
161
|
+
await addComponentsDir({
|
|
162
|
+
path: join(runtimeDir, "components/chat"),
|
|
163
|
+
extensions: ["vue"],
|
|
164
|
+
prefix: "Common"
|
|
165
|
+
});
|
|
152
166
|
nuxt.hook("app:resolve", async (nuxt2) => {
|
|
153
167
|
let index = 0;
|
|
154
168
|
const piniaRuntime = nuxt2.plugins.find((object, i) => {
|
|
@@ -170,4 +184,4 @@ const module = defineNuxtModule({
|
|
|
170
184
|
}
|
|
171
185
|
});
|
|
172
186
|
|
|
173
|
-
export { ConferenceState, PresentationType, module as default };
|
|
187
|
+
export { ConferenceState, PAGE_LENGTH, PresentationType, module as default };
|
|
@@ -378,3 +378,25 @@ export type AttendeeListClassObj = {
|
|
|
378
378
|
chatButton?: string | null;
|
|
379
379
|
videoChatButton?: string | null;
|
|
380
380
|
};
|
|
381
|
+
export type NavigationClassObj = {
|
|
382
|
+
container?: string | null;
|
|
383
|
+
headerToggleContainer?: string | null;
|
|
384
|
+
toggleContainer?: string | null;
|
|
385
|
+
toggleButton?: string | null;
|
|
386
|
+
svgElement?: string | null;
|
|
387
|
+
menuContainer?: string | null;
|
|
388
|
+
navElement?: string | null;
|
|
389
|
+
listElement?: string | null;
|
|
390
|
+
liveEventLink?: string | null;
|
|
391
|
+
eventOverviewLink?: string | null;
|
|
392
|
+
agendaAnchorLink?: string | null;
|
|
393
|
+
presentersAnchorLink?: string | null;
|
|
394
|
+
navigationItemLink?: string | null;
|
|
395
|
+
attendeeListListItem?: string | null;
|
|
396
|
+
attendeeListLink?: string | null;
|
|
397
|
+
logOutListItem?: string | null;
|
|
398
|
+
logOutLink?: string | null;
|
|
399
|
+
profileLink?: string | null;
|
|
400
|
+
profileImg?: string | null;
|
|
401
|
+
loginListItem?: string | null;
|
|
402
|
+
};
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export type Analytics = {
|
|
3
|
-
readonly _analytics: AnalyticsInstance | null;
|
|
4
|
-
create: (id: any, userId: any) => void;
|
|
5
|
-
click: (event: string, label: string) => void;
|
|
6
|
-
};
|
|
1
|
+
import type { Analytics } from './models/analytics';
|
|
7
2
|
declare const _default: () => Analytics;
|
|
8
3
|
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "./_variables2.css";.agenda-tab-bg-color{background-color:var(--agenda-tab-bg-color)}.agenda-tab-active-bg-color{background-color:var(--agenda-tab-active-bg-color)}.agenda-tab-sponsor-bg-color{background-color:var(--agenda-tab-sponsor-bg-color)}.agenda-tab-color{color:var(--agenda-tab-color)}.agenda-track-bg-color{background-color:var(--agenda-track-bg-color)}.agenda-track-group-bg-color{background-color:var(--agenda-track-group-bg-color)}.agenda-grouped-track-color-1{background-color:var(--agenda-grouped-track-color-1)}.agenda-grouped-track-color-2{background-color:var(--agenda-grouped-track-color-2)}.agenda-grouped-track-color-3{background-color:var(--agenda-grouped-track-color-3)}.agenda-grouped-track-color-4{background-color:var(--agenda-grouped-track-color-4)}.agenda-grouped-track-text-color{color:var(--agenda-grouped-track-text-color)}.agenda-presenter-color{color:var(--agenda-presenter-color)}.agenda-presenter-color:hover{color:darken(var(--agenda-presenter-color),10)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@keyframes slideInRight{0%{opacity:0;transform:translateX(-20px)}to{opacity:1;transform:translate(0)}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.container-1\/2{width:100%}@screen sm{.container-1\/2{max-width:288px}}@screen md{.container-1\/2{max-width:384px}}@screen lg{.container-1\/2{max-width:496px}}@screen xl{.container-1\/2{max-width:600px}}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
@import "./_variables.css";.bg-color-white{background-color:#fff}.bg-color-white-darker{background-color:darken(#fff,3)}.bg-color-1{background-color:var(--global-color-1)}.bg-color-2{background-color:var(--global-color-2)}.bg-color-3{background-color:var(--global-color-3)}.bg-color-4{background-color:var(--global-color-4)}.bg-color-5{background-color:var(--global-color-5)}.bg-color-6{background-color:var(--global-color-6)}.bg-color-link{background-color:var(--link-color)}.bg-color-1-darker{background-color:darken(var(--global-color-1,10%))}.bg-color-2-darker{background-color:darken(var(--global-color-2,10%))}.bg-color-3-darker{background-color:darken(var(--global-color-3,10%))}.bg-color-4-darker{background-color:darken(var(--global-color-4,10%))}.bg-color-5-darker{background-color:darken(var(--global-color-5,10%))}.bg-color-6-darker{background-color:darken(var(--global-color-6,10%))}.heading-color-1{color:var(--heading-color-1)}.heading-color-2{color:var(--heading-color-2)}.heading-color-3{color:var(--heading-color-3)}.heading-color-4{color:var(--heading-color-4)}.heading-color-5{color:var(--heading-color-5)}.heading-color-6{color:var(--heading-color-6)}.body-color-1{color:var(--body-color-1)}.body-color-2{color:var(--body-color-2)}.body-color-3{color:var(--body-color-3)}.body-color-4{color:var(--body-color-4)}.body-color-5{color:var(--body-color-5)}.body-color-6{color:var(--body-color-6)}.paragraph-color-1{color:var(--paragraph-color-1)}.paragraph-color-2{color:var(--paragraph-color-2)}.nav-color-1{color:var(--nav-color-1)}.nav-color-2{color:var(--nav-color-2)}.nav-color-3{color:var(--nav-color-3)}.nav-color-4{color:var(--nav-color-4)}.nav-color-5{color:var(--nav-color-5)}.button-color-1{background-color:var(--button-color-1)}.button-color-1-darker{background-color:darken(var(--button-color-1,10%))}.button-color-2{background-color:var(--button-color-2)}.button-color-2-darker{background-color:darken(var(--button-color-2,10%))}.button-color-3{background-color:var(--button-color-3)}.button-color-3-darker{background-color:darken(var(--button-color-3,10%))}.accent-color-1{color:var(--accent-color-1)}.accent-color-2{color:var(--accent-color-2)}.accent-color-3{color:var(--accent-color-3)}.border-color-1{border-color:var(--global-color-1)}.border-color-2{border-color:var(--global-color-2)}.border-color-3{border-color:var(--global-color-3)}.border-color-4{border-color:var(--global-color-4)}.border-color-5{border-color:var(--global-color-5)}.border-color-accent-1{border-color:var(--accent-color-1)}.border-color-accent-2{border-color:var(--accent-color-2)}.border-color-accent-3{border-color:var(--accent-color-3)}.border-color-link{border-color:var(--link-color)}html{background-color:var(--global-color-1);color:var(--paragraph-color-1)}body{font-family:var(--font-body-1)}a{color:var(--link-color)}a:hover{color:var(--link-hover)}h1{font-family:var(--font-heading-1)}.font-body-1{font-family:var(--font-body-1)}.font-body-2{font-family:var(--font-body-2)}.font-heading-1{font-family:var(--font-heading-1)}.font-heading-2{font-family:var(--font-heading-2)}@if variable-exists(presenter-name-color){#page-presenters .presenter-name-color{color:var(--presenter-name-color)}}@if variable-exists(presenter-title-color){#page-presenters .presenter-title-color{color:var(--presenter-title-color)}}.grid{display:grid}.place-self-center{place-self:center}.text-xxs{font-size:.5rem}.section-header{@apply mb-0 uppercase tracking-wider}.section-subheader{@apply tracking-wider font-extralight}.contrast-border{border-color:saturate(mix(var(--global-color-1),desaturate(invert(var(--global-color-1)),100%),90%),5%)}.presenter-icon{@apply block mx-1}.presenter-icon svg{@apply w-6 h-auto}.presenter-icon-small{@apply block;margin:0 .2rem}.presenter-icon-small svg{@apply w-4 h-auto}.flex-basis-3{flex-basis:33%}.flex-basis-4{flex-basis:25%}.flex-basis-5{flex-basis:20%}.primary-link{@apply uppercase tracking-wider;font-size:.65rem}.body-copy{@apply paragraph-color-1 font-body-1 text-base leading-normal}.heading-primary{@apply heading-color-1 font-heading-1 leading-normal tracking-wider}.heading-secondary{@apply heading-color-2 font-heading-2 leading-normal tracking-wider}.heading-link{color:var(--body-color-3)}.heading-link:hover{color:saturate(mix(var(--body-color-3),desaturate(invert(var(--body-color-3)),100%),75%),0)}.presenter-name{@apply body-color-4 font-body-1}.presenter-title{@apply body-color-5 font-body-1}.hr-heading{align-items:center;display:grid;grid-template-columns:minmax(20px,1fr) auto minmax(20px,1fr);text-align:center;width:auto;grid-gap:.3em;color:var(--heading-color-5);margin-left:1em;margin-right:1em}.hr-heading:after,.hr-heading:before{border-top:1px solid;border-color:var(--accent-color-2);content:""}.tabs-details{max-height:523px;overflow-y:scroll}.tabs-details li:before{content:"—";@apply text-center mr-4 body-color-1;padding-bottom:.25rem}.conf-name-alignment{margin-top:-.2em}.invert{transform:rotate(180deg)}.span-no-spacing{margin-left:-3px}@if variable-exists(captions-font) and
|
|
2
|
+
variable-exists(captions-text-color) and
|
|
3
|
+
variable-exists(captions-bg-color){.jw-text-track-cue{background-color:var(--captions-bg-color)!important;color:var(--captions-text-color)!important;font-family:var(--captions-font)!important}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.form-input{@apply border rounded w-full py-2 px-3 text-gray-600 leading-tight}.form-input:focus{@apply outline-none shadow}.select-input{@apply border rounded w-full text-gray-600 leading-tight py-1 px-2 h-auto}.select-input:focus{@apply outline-none}.btn{@apply button-color-1 text-white tracking-wider font-bold uppercase py-2 px-4 rounded}.btn:hover{@apply button-color-1-darker}.btn-secondary{@apply text-white button-color-2}.btn-secondary:hover{@apply button-color-2-darker}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@tailwind base;@tailwind components;@import "./_variables.css";@import "./_variables2.css";@import "./_custom.css";@import "./_functions.css";@import "./_animations.css";@import "./_transitions.css";@import "./_header.css";@import "./_footer.css";@import "./_forms.css";@import "./_container_variants.css";@import "./_webcast.css";@import "./_agenda.css";*{box-sizing:border-box;margin:0;padding:0}body{font-size:14px;font-weight:400}h1,p{margin-bottom:1em}blockquote{display:block;margin:1em 40px}@tailwind utilities;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.page-enter-active,.page-leave-active{transition:opacity .25s}.page-enter,.page-leave-to{opacity:0}.fade-enter-active,.fade-leave-active{transition:opacity .5s}.fade-enter,.fade-leave-to{opacity:0}.slide-fade-enter-active{transition:all .3s ease}.slide-fade-leave-active{transition:all .3s cubic-bezier(1,.5,.8,1)}.slide-fade-enter,.slide-fade-leave-to{opacity:0;transform:translateY(-100px)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--global-color-1:#fbfbfb;--global-color-2:#fbfbfb;--global-color-3:#333;--global-color-4:#333;--global-color-5:#333;--global-color-6:#333;--heading-color-1:#fbfbfb;--heading-color-2:#fbfbfb;--heading-color-3:#000;--heading-color-4:#000;--heading-color-5:#000;--heading-color-6:#000;--body-color-1:#000;--body-color-2:teal;--body-color-3:#000;--body-color-4:#7b8fd8;--body-color-5:#febb01;--body-color-6:#febb01;--paragraph-color-1:#000;--paragraph-color-2:#000;--nav-color-1:#fbfbfb;--nav-color-2:#febb01;--nav-color-3:#fbfbfb;--nav-color-4:hsl(from var(--nav-color-3) h s 60%);--nav-color-5:#000;--accent-color-1:#febb01;--accent-color-2:#febb01;--accent-color-3:#000;--link-color:#7b8fd8;--link-hover:hsl(from var(--link-color) h s 60%);--button-color-1:#febb01;--button-color-2:#7b8fd8;--button-color-3:#7b8fd8;--font-body-1:"Arial","Helvetica",sans-serif;--font-body-2:"Arial","Helvetica",sans-serif;--font-heading-1:"Arial","Helvetica",sans-serif;--font-heading-2:"Arial","Helvetica",sans-serif;--captions-font:"Arial","Helvetica",sans-serif;--captions-text-color:#fff;--captions-bg-color:rgba(0,0,0,.5);--agenda-tab-bg-color:#0070ff;--agenda-tab-active-bg-color:#eb455a;--agenda-tab-sponsor-bg-color:#dedede;--agenda-tab-color:#fff;--agenda-track-bg-color:#cadffc;--agenda-track-group-bg-color:#aaa;--agenda-grouped-track-color-1:#cadffc;--agenda-grouped-track-color-2:#cadffc;--agenda-grouped-track-color-3:#cadffc;--agenda-grouped-track-color-4:#cadffc;--agenda-grouped-track-text-color:#000;--agenda-presenter-color:#eb455a}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--video-width:640px}.no-scrollbar{scrollbar-width:none;-ms-overflow-style:none}.no-scrollbar::-webkit-scrollbar{display:none}.expand-overlay>a{@apply cursor-pointer text-white rounded-sm p-1 bg-gray-500 inline-block}.pop-window{border-style:solid;border-width:1px;@apply border-gray-500}.pop-window-active{border-style:dashed!important;border-width:1px;@apply border-gray-600}.flex-ratio-container{@apply flex flex-col w-full md:relative md:flex-row lg:mb-8;@screen md{height:0;padding-top:calc(36.69% + .4rem)}@screen lg{padding-top:calc(36.69% + 2.65rem)}}.flex-ratio-audio-slide-container{@apply flex flex-col w-full xl:relative xl:flex-row xl:mb-8;@screen xl{height:0;padding-top:calc(36.69% + 2.9rem)}}.flex-ratio-audio-container{@apply flex flex-col w-full}.flex-ratio-slide-container{@apply flex flex-col w-full xl:relative xl:flex-row xl:mb-8;@screen xl{height:0;padding-top:calc(36.69% + 2.9rem)}}.player-ratio-outer{width:100%;@apply md:top-0 md:h-full md:absolute;@screen md{width:65%}}.player-ratio-inner{@apply block}.player-slide-ratio-outer{width:100%;@apply xl:top-0 xl:h-full xl:absolute;@screen xl{width:80%}}.player-audio-ratio-outer{width:100%}.content-ratio-outer{@apply no-scrollbar w-full overflow-y-scroll md:top-0 md:h-full md:max-h-full md:absolute;max-height:500px;@screen md{width:35%}}.content-slide-ratio-outer{@apply no-scrollbar w-full overflow-y-scroll xl:top-0 xl:h-full xl:max-h-full xl:absolute;max-height:500px;@screen xl{width:20%}}.content-audio-ratio-outer{@apply no-scrollbar w-full overflow-y-scroll;max-height:500px}.content-ratio-inner{@apply block h-full pb-2 px-2 no-scrollbar md:p-2}.bottom-tab-bar{@apply relative pr-8 z-50;margin-top:-54px;width:58%}.webcast-sponsor{max-height:3.5rem;@screen md{max-height:3rem}@screen xl{max-height:5rem}}
|