@vcmap/module-selector 2.0.3 → 2.0.5
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/CHANGELOG.md +9 -0
- package/README.md +2 -1
- package/dist/index.js +1534 -1084
- package/package.json +3 -3
- package/src/ModuleSelector.vue +122 -16
- package/src/config/CloudModuleSelector.vue +128 -76
- package/src/config/ModuleEditor.vue +17 -1
- package/src/config/ModuleSelectorConfigEditor.vue +241 -156
- package/src/defaultOptions.ts +1 -0
- package/src/index.ts +20 -5
package/src/index.ts
CHANGED
|
@@ -19,6 +19,7 @@ import { startApplication, windowIdModuleSelector } from './moduleHelper';
|
|
|
19
19
|
export type BasisModule = {
|
|
20
20
|
title: string;
|
|
21
21
|
icon: string;
|
|
22
|
+
description?: string;
|
|
22
23
|
};
|
|
23
24
|
|
|
24
25
|
export type ModuleType = 'group' | 'url';
|
|
@@ -91,6 +92,7 @@ export default function plugin(
|
|
|
91
92
|
slot: WindowSlot.DETACHED,
|
|
92
93
|
position: this.config.position,
|
|
93
94
|
state: {
|
|
95
|
+
headerIcon: 'mdi-view-grid',
|
|
94
96
|
headerTitle: this.config.windowTitle,
|
|
95
97
|
infoUrlCallback: app.getHelpUrlCallback('/tools/moduleSelector.html'),
|
|
96
98
|
},
|
|
@@ -249,6 +251,7 @@ export default function plugin(
|
|
|
249
251
|
updatedBy: 'Aktualisiert von',
|
|
250
252
|
},
|
|
251
253
|
},
|
|
254
|
+
TooltipAddCloudModule: 'Modul aus Projekt hinzufügen',
|
|
252
255
|
TooltipAddModule: 'Modul hinzufügen',
|
|
253
256
|
TooltipEditModule: 'Modul bearbeiten',
|
|
254
257
|
TooltipEditGroup: 'Modul-Gruppe bearbeiten',
|
|
@@ -257,14 +260,18 @@ export default function plugin(
|
|
|
257
260
|
editorError: 'Bitte füllen Sie das Feld aus',
|
|
258
261
|
breadcrumbs: { overview: 'Übersicht', group: 'Gruppe' },
|
|
259
262
|
heading: 'Themen- & Modulzuordnung',
|
|
263
|
+
heading2: 'Modulzuordnung',
|
|
264
|
+
groupHeading: 'Gruppeneinstellungen',
|
|
260
265
|
baseModule: 'Basismodul',
|
|
261
266
|
baseModuleCheckbox: 'Basismodul anzeigen',
|
|
262
267
|
title: 'Titel',
|
|
263
|
-
add: '
|
|
264
|
-
addGroup: '
|
|
265
|
-
moduleName: '
|
|
268
|
+
add: 'Modul hinzufügen',
|
|
269
|
+
addGroup: 'Gruppe hinzufügen',
|
|
270
|
+
moduleName: 'Modul Name',
|
|
266
271
|
moduleIcon: 'Icon Name',
|
|
267
|
-
moduleUrl: '
|
|
272
|
+
moduleUrl: 'Modul URL',
|
|
273
|
+
moduleDescription: 'Modul Beschreibung',
|
|
274
|
+
groupDescription: 'Gruppen Beschreibung',
|
|
268
275
|
groupName: 'Gruppen Name',
|
|
269
276
|
back: 'Zurück',
|
|
270
277
|
general: 'Allgemeine Einstellungen',
|
|
@@ -272,6 +279,7 @@ export default function plugin(
|
|
|
272
279
|
requireModuleSelection: 'Modulauswahl erforderlich machen',
|
|
273
280
|
windowTitle: 'Fenster Titel',
|
|
274
281
|
windowPosition: 'Fenster Position',
|
|
282
|
+
moduleSettings: 'Modul Einstellungen',
|
|
275
283
|
},
|
|
276
284
|
},
|
|
277
285
|
},
|
|
@@ -296,6 +304,7 @@ export default function plugin(
|
|
|
296
304
|
updatedBy: 'Updated by',
|
|
297
305
|
},
|
|
298
306
|
},
|
|
307
|
+
TooltipAddCloudModule: 'Add module from project',
|
|
299
308
|
TooltipAddModule: 'Add module',
|
|
300
309
|
TooltipEditModule: 'Edit module',
|
|
301
310
|
TooltipEditGroup: 'Edit module group',
|
|
@@ -304,14 +313,18 @@ export default function plugin(
|
|
|
304
313
|
editorError: 'Please fill in the field',
|
|
305
314
|
breadcrumbs: { overview: 'Overview', group: 'Group' },
|
|
306
315
|
heading: 'Topic & module assignment',
|
|
316
|
+
heading2: 'Module assignment',
|
|
317
|
+
groupHeading: 'Group settings',
|
|
307
318
|
baseModule: 'Base module',
|
|
308
319
|
baseModuleCheckbox: 'Show base module',
|
|
309
320
|
title: 'Title',
|
|
310
321
|
add: 'Add module',
|
|
311
|
-
addGroup: 'Add
|
|
322
|
+
addGroup: 'Add group',
|
|
312
323
|
moduleName: 'Module name',
|
|
313
324
|
moduleIcon: 'Icon name',
|
|
314
325
|
moduleUrl: 'Module URL',
|
|
326
|
+
moduleDescription: 'Module description',
|
|
327
|
+
groupDescription: 'Group description',
|
|
315
328
|
groupName: 'Group name',
|
|
316
329
|
back: 'Back',
|
|
317
330
|
general: 'General settings',
|
|
@@ -319,10 +332,12 @@ export default function plugin(
|
|
|
319
332
|
requireModuleSelection: 'Require module selection',
|
|
320
333
|
windowTitle: 'Window title',
|
|
321
334
|
windowPosition: 'Window position',
|
|
335
|
+
moduleSettings: 'Module settings',
|
|
322
336
|
},
|
|
323
337
|
},
|
|
324
338
|
},
|
|
325
339
|
},
|
|
340
|
+
|
|
326
341
|
destroy(): void {},
|
|
327
342
|
};
|
|
328
343
|
}
|