@icvdeveloper/common-module 0.0.75 → 0.0.78

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.
Files changed (41) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +5 -0
  3. package/dist/runtime/@types/components.d.ts +89 -1
  4. package/dist/runtime/components/agenda/AgendaList.vue +149 -19
  5. package/dist/runtime/components/agenda/AgendaTabbed.vue +9 -0
  6. package/dist/runtime/components/agenda/components/AgendaListAccordion.vue +31 -4
  7. package/dist/runtime/components/agenda/components/Calendar.vue +89 -0
  8. package/dist/runtime/components/media/PlayerAndContentContainer.vue +170 -0
  9. package/dist/runtime/components/media/WebcastVideoPlayer.vue +167 -0
  10. package/dist/runtime/components/media/components/AgendaPanel.vue +53 -0
  11. package/dist/runtime/components/media/components/CeCreditNotification.vue +99 -0
  12. package/dist/runtime/components/media/components/CeCreditNotification.vue.d.ts +28 -0
  13. package/dist/runtime/components/media/components/ContentAccordion.vue +65 -0
  14. package/dist/runtime/components/media/components/ContentAccordion.vue.d.ts +29 -0
  15. package/dist/runtime/components/media/components/ContentArea.vue +175 -0
  16. package/dist/runtime/components/media/components/ContentTabs.vue +263 -0
  17. package/dist/runtime/components/media/components/DocumentsPanel.vue +52 -0
  18. package/dist/runtime/components/media/components/DocumentsPanel.vue.d.ts +7 -0
  19. package/dist/runtime/components/media/components/JsonApi.vue +33 -0
  20. package/dist/runtime/components/media/components/JsonApi.vue.d.ts +16 -0
  21. package/dist/runtime/components/media/components/MediaContainer.vue +104 -0
  22. package/dist/runtime/components/media/components/OverviewPanel.vue +51 -0
  23. package/dist/runtime/components/media/components/PresentersPanel.vue +65 -0
  24. package/dist/runtime/components/media/components/PresentersPanel.vue.d.ts +32 -0
  25. package/dist/runtime/components/media/components/SessionReporting.vue +96 -0
  26. package/dist/runtime/components/media/components/SessionReporting.vue.d.ts +35 -0
  27. package/dist/runtime/components/media/components/SponsorsPanel.vue +85 -0
  28. package/dist/runtime/components/media/components/SponsorsPanel.vue.d.ts +27 -0
  29. package/dist/runtime/components/media/components/WindowContent.vue +118 -0
  30. package/dist/runtime/components/media/components/WindowContent.vue.d.ts +50 -0
  31. package/dist/runtime/components/media/components/WindowSlide.vue +92 -0
  32. package/dist/runtime/components/media/components/WindowSlide.vue.d.ts +36 -0
  33. package/dist/runtime/composables/useStream.d.ts +15 -0
  34. package/dist/runtime/composables/useStream.mjs +89 -0
  35. package/dist/runtime/enums/general.d.ts +7 -0
  36. package/dist/runtime/enums/general.mjs +8 -0
  37. package/dist/runtime/models/conference.d.ts +17 -0
  38. package/dist/runtime/models/pagesConfig.d.ts +2 -0
  39. package/dist/runtime/store/presentations.d.ts +11 -0
  40. package/dist/runtime/store/presentations.mjs +10 -0
  41. package/package.json +3 -1
@@ -41,6 +41,8 @@ export type AgendaPlayerPageConfigs = {
41
41
  use_accordion: ToggleVariable;
42
42
  use_presenter_modal: ToggleVariable;
43
43
  sponsors: ToggleVariable;
44
+ add_to_google_calendar: ToggleVariable;
45
+ add_to_microsoft_calendar: ToggleVariable;
44
46
  group_tracks: SelectVariable;
45
47
  use_zoom_icon: ToggleVariable;
46
48
  use_play_icon: ToggleVariable;
@@ -0,0 +1,11 @@
1
+ import { Presentation } from "../models/conference";
2
+ import { SelectedContent } from "../enums/general";
3
+ export interface PresentationsState {
4
+ currentPresentation: Presentation;
5
+ selectedContent: {
6
+ label: string;
7
+ type: SelectedContent;
8
+ content: string;
9
+ };
10
+ }
11
+ export declare const usePresentationsStore: import("pinia").StoreDefinition<"presentations", PresentationsState, {}, {}>;
@@ -0,0 +1,10 @@
1
+ import { defineStore } from "pinia";
2
+ import { SelectedContent } from "../enums/general.mjs";
3
+ export const usePresentationsStore = defineStore("presentations", {
4
+ state: () => ({
5
+ currentPresentation: {},
6
+ selectedContent: { label: "", type: SelectedContent.OVERVIEW, content: "" }
7
+ }),
8
+ getters: {},
9
+ actions: {}
10
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icvdeveloper/common-module",
3
- "version": "0.0.75",
3
+ "version": "0.0.78",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "exports": {
@@ -26,10 +26,12 @@
26
26
  "@nuxt/kit": "^3.0.0",
27
27
  "@nuxtjs/tailwindcss": "^6.1.3",
28
28
  "@pinia/nuxt": "^0.3.1",
29
+ "add-to-calendar-button": "^2.1.1",
29
30
  "analytics": "^0.8.1",
30
31
  "date-fns": "^2.29.1",
31
32
  "date-fns-tz": "^1.3.6",
32
33
  "lodash-es": "^4.17.21",
34
+ "luxon": "^3.2.1",
33
35
  "nprogress": "^0.2.0",
34
36
  "pinia": "^2.0.17",
35
37
  "pinia-plugin-persistedstate": "^2.1.1",