@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
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<vue-draggable-resizable
|
|
3
|
-
:w="startSize.width"
|
|
4
|
-
:h="startSize.height"
|
|
5
|
-
:x="startPosition.x"
|
|
6
|
-
:y="startPosition.y"
|
|
7
|
-
:min-width="200"
|
|
8
|
-
:min-height="200"
|
|
9
|
-
:z="zIndex"
|
|
10
|
-
:active="true"
|
|
11
|
-
class-name="pop-window"
|
|
12
|
-
class-name-active="pop-window-active"
|
|
13
|
-
@activated="onActivated"
|
|
14
|
-
@deactivated="onDeActivated"
|
|
15
|
-
class="bg-white shadow-lg cursor-move"
|
|
16
|
-
>
|
|
17
|
-
<div :style="overlayStyle" class="expand-overlay">
|
|
18
|
-
<a @click.prevent="closeClick">
|
|
19
|
-
<i class="fas fa-compress-arrows-alt"></i>
|
|
20
|
-
</a>
|
|
21
|
-
</div>
|
|
22
|
-
|
|
23
|
-
<div class="outer-container max-h-full p-1">
|
|
24
|
-
<content-area class="h-auto max-h-full" :current-presentation="currentPresentation"></content-area>
|
|
25
|
-
</div>
|
|
26
|
-
</vue-draggable-resizable>
|
|
27
|
-
</template>
|
|
28
|
-
|
|
29
|
-
<script>
|
|
30
|
-
import Vue from "vue";
|
|
31
|
-
import VueDraggableResizable from "vue-draggable-resizable";
|
|
32
|
-
import "vue-draggable-resizable/dist/VueDraggableResizable.css";
|
|
33
|
-
|
|
34
|
-
import ContentTabs from "./ContentTabs";
|
|
35
|
-
import ContentArea from "./ContentArea";
|
|
36
|
-
|
|
37
|
-
Vue.component("vue-draggable-resizable", VueDraggableResizable);
|
|
38
|
-
|
|
39
|
-
export default {
|
|
40
|
-
components: {
|
|
41
|
-
ContentTabs,
|
|
42
|
-
ContentArea
|
|
43
|
-
},
|
|
44
|
-
data() {
|
|
45
|
-
return {
|
|
46
|
-
zIndex: 300,
|
|
47
|
-
active: true
|
|
48
|
-
};
|
|
49
|
-
},
|
|
50
|
-
props: {
|
|
51
|
-
tabArray: {
|
|
52
|
-
type: Array,
|
|
53
|
-
default: []
|
|
54
|
-
},
|
|
55
|
-
startSize: {
|
|
56
|
-
type: Object,
|
|
57
|
-
default: () => {
|
|
58
|
-
return { width: 640, height: 480 };
|
|
59
|
-
}
|
|
60
|
-
},
|
|
61
|
-
startPosition: {
|
|
62
|
-
type: Object,
|
|
63
|
-
default: () => {
|
|
64
|
-
return { x: 0, y: 0 };
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
|
-
currentPresentation: {
|
|
68
|
-
type: Object,
|
|
69
|
-
default: () => {
|
|
70
|
-
return {};
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
|
-
computed: {
|
|
75
|
-
overlayStyle() {
|
|
76
|
-
return this.active ? "opacity: .7;" : "opacity: 0";
|
|
77
|
-
}
|
|
78
|
-
},
|
|
79
|
-
methods: {
|
|
80
|
-
closeClick(e) {
|
|
81
|
-
this.$emit("closeClick", this);
|
|
82
|
-
},
|
|
83
|
-
onActivated(e) {
|
|
84
|
-
this.zIndex = 500;
|
|
85
|
-
this.active = true;
|
|
86
|
-
},
|
|
87
|
-
onDeActivated(e) {
|
|
88
|
-
this.zIndex = 100;
|
|
89
|
-
this.active = false;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
};
|
|
93
|
-
</script>
|
|
94
|
-
|
|
95
|
-
<style scoped>
|
|
96
|
-
.outer-container {
|
|
97
|
-
position: relative;
|
|
98
|
-
overflow: auto;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.expand-overlay {
|
|
102
|
-
display: block;
|
|
103
|
-
font-size: 1em;
|
|
104
|
-
line-height: 1em;
|
|
105
|
-
opacity: 0;
|
|
106
|
-
width: 50px;
|
|
107
|
-
height: 50px;
|
|
108
|
-
top: -30px;
|
|
109
|
-
right: 0;
|
|
110
|
-
z-index: 100;
|
|
111
|
-
position: absolute;
|
|
112
|
-
transition: 0.6s ease;
|
|
113
|
-
text-align: right;
|
|
114
|
-
}
|
|
115
|
-
.expand-overlay:hover {
|
|
116
|
-
opacity: 0.7 !important;
|
|
117
|
-
}
|
|
118
|
-
</style>
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
declare namespace _default {
|
|
2
|
-
namespace components {
|
|
3
|
-
export { ContentTabs };
|
|
4
|
-
export { ContentArea };
|
|
5
|
-
}
|
|
6
|
-
function data(): {
|
|
7
|
-
zIndex: number;
|
|
8
|
-
active: boolean;
|
|
9
|
-
};
|
|
10
|
-
namespace props {
|
|
11
|
-
namespace tabArray {
|
|
12
|
-
export let type: ArrayConstructor;
|
|
13
|
-
let _default: never[];
|
|
14
|
-
export { _default as default };
|
|
15
|
-
}
|
|
16
|
-
namespace startSize {
|
|
17
|
-
let type_1: ObjectConstructor;
|
|
18
|
-
export { type_1 as type };
|
|
19
|
-
function _default_1(): {
|
|
20
|
-
width: number;
|
|
21
|
-
height: number;
|
|
22
|
-
};
|
|
23
|
-
export { _default_1 as default };
|
|
24
|
-
}
|
|
25
|
-
namespace startPosition {
|
|
26
|
-
let type_2: ObjectConstructor;
|
|
27
|
-
export { type_2 as type };
|
|
28
|
-
function _default_2(): {
|
|
29
|
-
x: number;
|
|
30
|
-
y: number;
|
|
31
|
-
};
|
|
32
|
-
export { _default_2 as default };
|
|
33
|
-
}
|
|
34
|
-
namespace currentPresentation {
|
|
35
|
-
let type_3: ObjectConstructor;
|
|
36
|
-
export { type_3 as type };
|
|
37
|
-
function _default_3(): {};
|
|
38
|
-
export { _default_3 as default };
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
namespace computed {
|
|
42
|
-
function overlayStyle(): "opacity: .7;" | "opacity: 0";
|
|
43
|
-
}
|
|
44
|
-
namespace methods {
|
|
45
|
-
function closeClick(e: any): void;
|
|
46
|
-
function onActivated(e: any): void;
|
|
47
|
-
function onDeActivated(e: any): void;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
export default _default;
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<vue-draggable-resizable
|
|
3
|
-
:w="startSize.width"
|
|
4
|
-
:h="startSize.height"
|
|
5
|
-
:x="startPosition.x"
|
|
6
|
-
:y="startPosition.y"
|
|
7
|
-
:handles="['tl','tr','br','bl']"
|
|
8
|
-
:min-width="200"
|
|
9
|
-
:lock-aspect-ratio="true"
|
|
10
|
-
:z="zIndex"
|
|
11
|
-
:active="true"
|
|
12
|
-
class-name="pop-window"
|
|
13
|
-
class-name-active="pop-window-active"
|
|
14
|
-
@activated="onActivated"
|
|
15
|
-
@deactivated="onDeActivated"
|
|
16
|
-
class="bg-white shadow-lg cursor-move"
|
|
17
|
-
>
|
|
18
|
-
<div>
|
|
19
|
-
<div class="expand-overlay">
|
|
20
|
-
<a @click.prevent="closeClick">
|
|
21
|
-
<i class="fas fa-compress-arrows-alt"></i>
|
|
22
|
-
</a>
|
|
23
|
-
</div>
|
|
24
|
-
|
|
25
|
-
<img :src="slide" class="w-full h-auto max-h-full" />
|
|
26
|
-
</div>
|
|
27
|
-
</vue-draggable-resizable>
|
|
28
|
-
</template>
|
|
29
|
-
|
|
30
|
-
<script>
|
|
31
|
-
import Vue from "vue";
|
|
32
|
-
import VueDraggableResizable from "vue-draggable-resizable";
|
|
33
|
-
import "vue-draggable-resizable/dist/VueDraggableResizable.css";
|
|
34
|
-
|
|
35
|
-
Vue.component("vue-draggable-resizable", VueDraggableResizable);
|
|
36
|
-
|
|
37
|
-
export default {
|
|
38
|
-
data() {
|
|
39
|
-
return {
|
|
40
|
-
zIndex: 200
|
|
41
|
-
};
|
|
42
|
-
},
|
|
43
|
-
props: {
|
|
44
|
-
slide: {
|
|
45
|
-
type: String,
|
|
46
|
-
default: ""
|
|
47
|
-
},
|
|
48
|
-
startSize: {
|
|
49
|
-
type: Object,
|
|
50
|
-
default: () => {
|
|
51
|
-
return { width: 640, height: 480 };
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
|
-
startPosition: {
|
|
55
|
-
type: Object,
|
|
56
|
-
default: () => {
|
|
57
|
-
return { width: 0, height: 0 };
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
},
|
|
61
|
-
methods: {
|
|
62
|
-
closeClick(e) {
|
|
63
|
-
this.$emit("closeClick", this);
|
|
64
|
-
},
|
|
65
|
-
onActivated(e) {
|
|
66
|
-
this.zIndex = 500;
|
|
67
|
-
},
|
|
68
|
-
onDeActivated(e) {
|
|
69
|
-
this.zIndex = 100;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
};
|
|
73
|
-
</script>
|
|
74
|
-
|
|
75
|
-
<style scoped>
|
|
76
|
-
.expand-overlay {
|
|
77
|
-
@apply p-2;
|
|
78
|
-
display: block;
|
|
79
|
-
font-size: 1em;
|
|
80
|
-
line-height: 1em;
|
|
81
|
-
opacity: 0;
|
|
82
|
-
width: 100%;
|
|
83
|
-
height: 100%;
|
|
84
|
-
z-index: 100;
|
|
85
|
-
position: absolute;
|
|
86
|
-
transition: 0.6s ease;
|
|
87
|
-
text-align: right;
|
|
88
|
-
}
|
|
89
|
-
.expand-overlay:hover {
|
|
90
|
-
opacity: 0.7;
|
|
91
|
-
}
|
|
92
|
-
</style>
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
declare namespace _default {
|
|
2
|
-
function data(): {
|
|
3
|
-
zIndex: number;
|
|
4
|
-
};
|
|
5
|
-
namespace props {
|
|
6
|
-
namespace slide {
|
|
7
|
-
export let type: StringConstructor;
|
|
8
|
-
let _default: string;
|
|
9
|
-
export { _default as default };
|
|
10
|
-
}
|
|
11
|
-
namespace startSize {
|
|
12
|
-
let type_1: ObjectConstructor;
|
|
13
|
-
export { type_1 as type };
|
|
14
|
-
function _default_1(): {
|
|
15
|
-
width: number;
|
|
16
|
-
height: number;
|
|
17
|
-
};
|
|
18
|
-
export { _default_1 as default };
|
|
19
|
-
}
|
|
20
|
-
namespace startPosition {
|
|
21
|
-
let type_2: ObjectConstructor;
|
|
22
|
-
export { type_2 as type };
|
|
23
|
-
function _default_2(): {
|
|
24
|
-
width: number;
|
|
25
|
-
height: number;
|
|
26
|
-
};
|
|
27
|
-
export { _default_2 as default };
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
namespace methods {
|
|
31
|
-
function closeClick(e: any): void;
|
|
32
|
-
function onActivated(e: any): void;
|
|
33
|
-
function onDeActivated(e: any): void;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
export default _default;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export type AuthUser = {
|
|
2
|
-
id?: string;
|
|
3
|
-
email?: string;
|
|
4
|
-
name?: string;
|
|
5
|
-
uuid?: string;
|
|
6
|
-
company?: string | null;
|
|
7
|
-
linkedin_url?: string | null;
|
|
8
|
-
twitter_url?: string | null;
|
|
9
|
-
online?: boolean;
|
|
10
|
-
profile_image?: string | null;
|
|
11
|
-
title?: string | null;
|
|
12
|
-
video_chat?: boolean | null;
|
|
13
|
-
token?: string;
|
|
14
|
-
expires_at?: string;
|
|
15
|
-
token_type?: string;
|
|
16
|
-
};
|
|
File without changes
|