@ozdao/prometheus-framework 0.2.331 → 0.2.332

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ozdao/prometheus-framework",
3
- "version": "0.2.331",
3
+ "version": "0.2.332",
4
4
  "description": "Web3 Framework focused on user experience and ease of development.",
5
5
  "author": "OZ DAO <hello@ozdao.dev>",
6
6
  "license": "GPL-3.0-or-later",
@@ -10,8 +10,8 @@ import Feed from './components/sections/Feed.vue';
10
10
  import List from './components/sections/List.vue';
11
11
  import FeaturedEvents from './components/sections/FeaturedEvents.vue';
12
12
  import EventsLayout from './components/layouts/layoutEvents.vue';
13
+ import Event from './components/pages/Event.vue';
13
14
  import EditEvent from './components/pages/EditEvent.vue';
14
- import EventPage from './components/pages/Event.vue';
15
15
  import EventsPage from './components/pages/Events.vue';
16
16
 
17
17
  // Пример функции инициализации для модуля событий
@@ -46,10 +46,31 @@ const ModuleEvents = {
46
46
  EventsLayout,
47
47
  // Pages
48
48
  EditEvent,
49
- EventPage,
49
+ Event,
50
50
  EventsPage
51
51
  }
52
52
  }
53
53
  }
54
54
 
55
+ export {
56
+ initializeEvents,
57
+
58
+ storeEvents,
59
+
60
+ createEventRoutes,
61
+
62
+ // Blocks
63
+ CardEvent,
64
+
65
+ Feed,
66
+ List,
67
+ FeaturedEvents,
68
+
69
+ EventsLayout,
70
+
71
+ EditEvent,
72
+ Event,
73
+ EventsPage
74
+ }
75
+
55
76
  export default ModuleEvents;