@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/dist/cli.js +1 -1
- package/dist/cli.js.map +2 -2
- package/package.json +1 -1
- package/services/frontend/src/orchestrator/components/dataTable/BaseDataTable.vue +6 -6
- package/services/frontend/src/orchestrator/components/index.ts +6 -0
- /package/services/frontend/src/orchestrator/components/{dataTable/SelectionDialog.vue → dataImport/ImportSelectionDialog.vue} +0 -0
- /package/services/frontend/src/orchestrator/components/{dataTable/SummaryDialog.vue → dataImport/ImportSummaryDialog.vue} +0 -0
- /package/services/frontend/src/orchestrator/components/{dataTable → input}/FileUpload.vue +0 -0
package/package.json
CHANGED
|
@@ -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 "
|
|
216
|
-
import DataExporter from "
|
|
217
|
-
import FileUpload from "
|
|
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 "
|
|
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
|
-
|
|
396
|
-
|
|
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,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|