3
3
* Copyright (c) The Caleydo Team. All rights reserved.
4
4
* Licensed under the new BSD license, available at http://caleydo.org/license
5
5
**************************************************************************** */
6
- import type { IRegistry } from 'visyn_core' ;
6
+ import type { IRegistry } from 'visyn_core/plugin ' ;
7
7
8
8
export default function ( registry : IRegistry ) {
9
9
// helper functions copied from tdp_core:
@@ -25,7 +25,7 @@ export default function (registry: IRegistry) {
25
25
/**
26
26
* Set the base data-set
27
27
*/
28
- actionFunction ( 'chtSetDataset' , 'setDatasetImpl' , ( ) => import ( './Provenance/General.js ' ) , {
28
+ actionFunction ( 'chtSetDataset' , 'setDatasetImpl' , ( ) => import ( './Provenance/General' ) , {
29
29
// setDatasetImpl = function that acutally sets the dataset
30
30
analytics : {
31
31
category : 'data' , // this one is a data operation (other options are visual, selections, layout, and analysis)
@@ -39,7 +39,7 @@ export default function (registry: IRegistry) {
39
39
/**
40
40
* Add Cohorts
41
41
*/
42
- actionFunction ( 'addCohorts' , 'addOverviewCohortImpl' , ( ) => import ( './Provenance/CohortEV.js ' ) . then ( ) , {
42
+ actionFunction ( 'addCohorts' , 'addOverviewCohortImpl' , ( ) => import ( './Provenance/CohortEV' ) . then ( ) , {
43
43
//
44
44
analytics : {
45
45
category : 'data' , // this one is a data operation (other options are visual, selections, layout, and analysis)
@@ -50,7 +50,7 @@ export default function (registry: IRegistry) {
50
50
/**
51
51
* Remove Cohorts
52
52
*/
53
- actionFunction ( 'removeCohorts' , 'removeOverviewCohortImpl' , ( ) => import ( './Provenance/CohortEV.js ' ) . then ( ) , {
53
+ actionFunction ( 'removeCohorts' , 'removeOverviewCohortImpl' , ( ) => import ( './Provenance/CohortEV' ) . then ( ) , {
54
54
//
55
55
analytics : {
56
56
category : 'data' , // this one is a data operation (other options are visual, selections, layout, and analysis)
0 commit comments