@dynect/base 0.18.0 → 0.18.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynect/base",
3
- "version": "0.18.0",
3
+ "version": "0.18.1",
4
4
  "description": "Reusable Nuxt base module — components, composables, utils, plugins and i18n from the Dynect design system.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -1,10 +1,7 @@
1
1
  <script setup lang="ts">
2
2
  import { computed } from 'vue';
3
3
  import type { CalendarEvent, ViewMode } from '../base/event-calendar/types';
4
-
5
- // Re-export types for convenience
6
- export type { CalendarEvent, ViewMode, EventColor, EventStatus, RecurringPattern } from '../base/event-calendar/types';
7
- export { default as BaseEventCalendar } from '../base/event-calendar/EventCalendar.vue';
4
+ import BaseEventCalendar from '../base/event-calendar/EventCalendar.vue';
8
5
 
9
6
  // ── Props ────────────────────────────────────────────────────────────────────
10
7
  interface Props {