@adaptabletools/adaptable 16.2.0-canary.1 → 16.2.0-canary.3
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/base.css +2 -0
- package/base.css.map +1 -1
- package/bundle.cjs.js +101 -101
- package/index.css +4 -0
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableOptions/DataImportOptions.d.ts +30 -8
- package/src/AdaptableOptions/MenuOptions.d.ts +21 -6
- package/src/Api/Events/DataImported.d.ts +6 -9
- package/src/Api/Internal/DataImportInternalApi.d.ts +2 -1
- package/src/Api/Internal/DataImportInternalApi.js +12 -10
- package/src/Strategy/Fdc3Module.js +1 -0
- package/src/View/DataImport/DataImportWizard/DataImportWizard.js +29 -4
- package/src/View/DataImport/DataImportWizard/sections/DataPreview.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +36 -10
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -915,6 +915,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
915
915
|
name: string;
|
|
916
916
|
kind: string;
|
|
917
917
|
desc: string;
|
|
918
|
+
props: {
|
|
919
|
+
name: string;
|
|
920
|
+
kind: string;
|
|
921
|
+
desc: string;
|
|
922
|
+
}[];
|
|
918
923
|
};
|
|
919
924
|
AdaptableTheme: {
|
|
920
925
|
name: string;
|
|
@@ -980,6 +985,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
980
985
|
name: string;
|
|
981
986
|
kind: string;
|
|
982
987
|
desc: string;
|
|
988
|
+
props: {
|
|
989
|
+
name: string;
|
|
990
|
+
kind: string;
|
|
991
|
+
desc: string;
|
|
992
|
+
}[];
|
|
983
993
|
};
|
|
984
994
|
AlertButton: {
|
|
985
995
|
name: string;
|
|
@@ -2261,16 +2271,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2261
2271
|
kind: string;
|
|
2262
2272
|
desc: string;
|
|
2263
2273
|
};
|
|
2264
|
-
DataImportApplyImportContext: {
|
|
2265
|
-
name: string;
|
|
2266
|
-
kind: string;
|
|
2267
|
-
desc: string;
|
|
2268
|
-
props: {
|
|
2269
|
-
name: string;
|
|
2270
|
-
kind: string;
|
|
2271
|
-
desc: string;
|
|
2272
|
-
}[];
|
|
2273
|
-
};
|
|
2274
2274
|
DataImportFileHandler: {
|
|
2275
2275
|
name: string;
|
|
2276
2276
|
kind: string;
|
|
@@ -3489,6 +3489,32 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3489
3489
|
ref: string;
|
|
3490
3490
|
}[];
|
|
3491
3491
|
};
|
|
3492
|
+
HandleImportedDataContext: {
|
|
3493
|
+
name: string;
|
|
3494
|
+
kind: string;
|
|
3495
|
+
desc: string;
|
|
3496
|
+
props: {
|
|
3497
|
+
name: string;
|
|
3498
|
+
kind: string;
|
|
3499
|
+
desc: string;
|
|
3500
|
+
}[];
|
|
3501
|
+
};
|
|
3502
|
+
HandleImportedDataResolution: {
|
|
3503
|
+
name: string;
|
|
3504
|
+
kind: string;
|
|
3505
|
+
desc: string;
|
|
3506
|
+
props: ({
|
|
3507
|
+
name: string;
|
|
3508
|
+
kind: string;
|
|
3509
|
+
desc: string;
|
|
3510
|
+
isOpt?: undefined;
|
|
3511
|
+
} | {
|
|
3512
|
+
name: string;
|
|
3513
|
+
kind: string;
|
|
3514
|
+
desc: string;
|
|
3515
|
+
isOpt: boolean;
|
|
3516
|
+
})[];
|
|
3517
|
+
};
|
|
3492
3518
|
IAdaptableNoCodeWizard: {
|
|
3493
3519
|
name: string;
|
|
3494
3520
|
kind: string;
|