@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.
- 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 +16 -3
- 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
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { join, resolve } from 'path';
|
|
2
2
|
import { fileURLToPath } from 'url';
|
|
3
|
-
import { defineNuxtModule, useLogger, installModule, addPlugin,
|
|
3
|
+
import { defineNuxtModule, useLogger, installModule, addPlugin, addImportsDir, addComponentsDir } from '@nuxt/kit';
|
|
4
4
|
import svgLoader from 'vite-svg-loader';
|
|
5
5
|
|
|
6
|
+
|
|
7
|
+
|
|
6
8
|
// -- Unbuild CommonJS Shims --
|
|
7
9
|
import __cjs_url__ from 'url';
|
|
8
10
|
import __cjs_path__ from 'path';
|
|
@@ -10,8 +12,6 @@ import __cjs_mod__ from 'module';
|
|
|
10
12
|
const __filename = __cjs_url__.fileURLToPath(import.meta.url);
|
|
11
13
|
const __dirname = __cjs_path__.dirname(__filename);
|
|
12
14
|
const require = __cjs_mod__.createRequire(import.meta.url);
|
|
13
|
-
|
|
14
|
-
|
|
15
15
|
var ConferenceState = /* @__PURE__ */ ((ConferenceState2) => {
|
|
16
16
|
ConferenceState2["LIVE"] = "live";
|
|
17
17
|
ConferenceState2["MIXED"] = "mixed";
|
|
@@ -98,8 +98,8 @@ const module = defineNuxtModule({
|
|
|
98
98
|
include: ["nprogress", "date-fns-tz"]
|
|
99
99
|
};
|
|
100
100
|
}
|
|
101
|
-
|
|
102
|
-
|
|
101
|
+
addImportsDir(join(runtimeDir, "store"));
|
|
102
|
+
addImportsDir(join(runtimeDir, "composables"));
|
|
103
103
|
addComponentsDir({
|
|
104
104
|
path: join(runtimeDir, "components/core"),
|
|
105
105
|
extensions: ["vue"],
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type countdownTimerClassObj = {
|
|
2
2
|
container?: string | null;
|
|
3
3
|
countdownContainer?: string | null;
|
|
4
4
|
beginText?: string | null;
|
|
@@ -8,7 +8,7 @@ export declare type countdownTimerClassObj = {
|
|
|
8
8
|
unitContainer?: string | null;
|
|
9
9
|
unit?: string | null;
|
|
10
10
|
};
|
|
11
|
-
export
|
|
11
|
+
export type sponsorClassObj = {
|
|
12
12
|
container?: string | null;
|
|
13
13
|
sponsorContainer?: string | null;
|
|
14
14
|
labelImageContainer?: string | null;
|
|
@@ -17,13 +17,13 @@ export declare type sponsorClassObj = {
|
|
|
17
17
|
imageContainer?: string | null;
|
|
18
18
|
sponsorImage?: string | null;
|
|
19
19
|
};
|
|
20
|
-
export
|
|
20
|
+
export type listEventsCompObj = {
|
|
21
21
|
countdownTimer?: countdownTimerClassObj | null;
|
|
22
22
|
sponsor?: sponsorClassObj | null;
|
|
23
23
|
modal?: string | null;
|
|
24
24
|
login?: string | null;
|
|
25
25
|
};
|
|
26
|
-
export
|
|
26
|
+
export type listEventsClassObj = {
|
|
27
27
|
container?: string | null;
|
|
28
28
|
listContainer?: string | null;
|
|
29
29
|
eventContainer?: string | null;
|
|
@@ -45,7 +45,7 @@ export declare type listEventsClassObj = {
|
|
|
45
45
|
sponsorsContainer?: string | null;
|
|
46
46
|
components?: listEventsCompObj;
|
|
47
47
|
};
|
|
48
|
-
export
|
|
48
|
+
export type presenterListingClassObj = {
|
|
49
49
|
container?: string | null;
|
|
50
50
|
presenterImageContainer?: string | null;
|
|
51
51
|
presenterImage?: string | null;
|
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type ColorVariable = {
|
|
2
2
|
value: string;
|
|
3
3
|
class: string;
|
|
4
4
|
label: string;
|
|
5
5
|
name: string;
|
|
6
6
|
variable: string;
|
|
7
7
|
};
|
|
8
|
-
export
|
|
8
|
+
export type HTMLVariable = {
|
|
9
9
|
label: string;
|
|
10
10
|
name: string;
|
|
11
11
|
type: string;
|
|
12
12
|
value: string;
|
|
13
13
|
};
|
|
14
|
-
export
|
|
14
|
+
export type ToggleVariable = {
|
|
15
15
|
class: string;
|
|
16
16
|
label: string;
|
|
17
17
|
name: string;
|
|
18
18
|
type: string;
|
|
19
19
|
value: boolean;
|
|
20
20
|
};
|
|
21
|
-
export
|
|
21
|
+
export type SelectVariable = {
|
|
22
22
|
label: string;
|
|
23
23
|
name: string;
|
|
24
24
|
type: string;
|
|
25
25
|
value: string;
|
|
26
26
|
};
|
|
27
|
-
export
|
|
27
|
+
export type NumberVariable = {
|
|
28
28
|
label: string;
|
|
29
29
|
name: string;
|
|
30
30
|
note: string;
|
|
31
31
|
type: string;
|
|
32
32
|
value: string;
|
|
33
33
|
};
|
|
34
|
-
export
|
|
34
|
+
export type ImageVariable = {
|
|
35
35
|
label: string;
|
|
36
36
|
name: string;
|
|
37
37
|
type: string;
|
|
38
38
|
value: string;
|
|
39
39
|
};
|
|
40
|
-
export
|
|
40
|
+
export type TextVariable = {
|
|
41
41
|
label: string;
|
|
42
42
|
name: string;
|
|
43
43
|
type: string;
|
|
44
44
|
value: string;
|
|
45
45
|
};
|
|
46
|
-
export
|
|
46
|
+
export type TogglePlusLabelVariable = {
|
|
47
47
|
label: string;
|
|
48
48
|
name: string;
|
|
49
49
|
type: string;
|
|
@@ -52,7 +52,7 @@ export declare type TogglePlusLabelVariable = {
|
|
|
52
52
|
label: string;
|
|
53
53
|
};
|
|
54
54
|
};
|
|
55
|
-
export
|
|
55
|
+
export type DragPlusToggleVariable = {
|
|
56
56
|
label: string;
|
|
57
57
|
name: string;
|
|
58
58
|
type: string;
|
|
@@ -63,14 +63,14 @@ export declare type DragPlusToggleVariable = {
|
|
|
63
63
|
order: number;
|
|
64
64
|
}>;
|
|
65
65
|
};
|
|
66
|
-
export
|
|
66
|
+
export type FontVariable = {
|
|
67
67
|
label: string;
|
|
68
68
|
name: string;
|
|
69
69
|
type: string;
|
|
70
70
|
value: string;
|
|
71
71
|
variable: string;
|
|
72
72
|
};
|
|
73
|
-
export
|
|
73
|
+
export type TextAreaVariable = {
|
|
74
74
|
label: string;
|
|
75
75
|
name: string;
|
|
76
76
|
type: string;
|