@raclettejs/core 0.1.32-nightly → 0.1.32-nightly-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": "@raclettejs/core",
3
- "version": "0.1.32-nightly",
3
+ "version": "0.1.32-nightly-1",
4
4
  "description": "racletteJS core package",
5
5
  "repository": "https://gitlab.com/raclettejs/core",
6
6
  "author": "Pacifico Digital Explorations GmbH <info@raclettejs.com>",
@@ -212,13 +212,13 @@
212
212
 
213
213
  <script setup lang="ts" generic="T extends Record<string, any>">
214
214
  import { computed, ref, useSlots, useTemplateRef } from "vue"
215
- import { useRouteState } from "@raclettejs/core/orchestrator/composables"
216
- import DataExporter from "@raclettejs/core/orchestrator/components/dataExport/DataExporter.vue"
217
- import FileUpload from "@raclettejs/core/orchestrator/components/dataTable/FileUpload.vue"
215
+ import { useRouteState } from "../../composables"
216
+ import { DataExporter } from "../../components"
217
+ import FileUpload from "../input/FileUpload.vue"
218
218
  import type {
219
219
  ExportPayload,
220
220
  FormatEntry,
221
- } from "@racletteOrchestrator/composables/useExport/types"
221
+ } from "../../composables/useExport/types"
222
222
 
223
223
  export interface BaseDataTableProps<T> {
224
224
  uuid?: string
@@ -392,8 +392,8 @@ const exportPayloadData = computed<ExportPayload>(() => {
392
392
  }
393
393
 
394
394
  const selectedExportRows = selectedIds
395
- .map((id) => idToRow.get(toKey(id)))
396
- .filter((row): row is Record<string, unknown> => row !== undefined)
395
+ .map((id) => idToRow.get(toKey(id)))
396
+ .filter((row): row is Record<string, unknown> => row !== undefined)
397
397
 
398
398
  return {
399
399
  items: projectRowsToVisibleColumns(selectedExportRows),
@@ -15,10 +15,16 @@ import UserMenu from "./menu/UserMenu.vue"
15
15
  import UserNotifications from "./menu/UserNotifications.vue"
16
16
  import WidgetsLayoutLoader from "./composition/WidgetsLayoutLoader.vue"
17
17
  import DataExporter from "./dataExport/DataExporter.vue"
18
+ import BaseDataTable from "./dataTable/BaseDataTable.vue"
19
+ import ImportSelectionDialog from "./dataImport/ImportSelectionDialog.vue"
20
+ import ImportSummaryDialog from "./dataImport/ImportSummaryDialog.vue"
18
21
 
19
22
  export {
23
+ ImportSummaryDialog,
24
+ ImportSelectionDialog,
20
25
  CompositionOverlay,
21
26
  DataExporter,
27
+ BaseDataTable,
22
28
  DefaultModal,
23
29
  DraggableElement,
24
30
  DropzoneElement,