@adaptabletools/adaptable 16.0.3-canary.0 → 16.0.3-canary.2
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/bundle.cjs.js +177 -168
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableOptions/Fdc3Options.d.ts +68 -60
- package/src/Api/Fdc3Api.d.ts +14 -14
- package/src/Api/GridApi.d.ts +11 -1
- package/src/Api/Implementation/Fdc3ApiImpl.d.ts +13 -13
- package/src/Api/Implementation/Fdc3ApiImpl.js +2 -4
- package/src/Api/Implementation/GridApiImpl.d.ts +2 -0
- package/src/Api/Implementation/GridApiImpl.js +6 -0
- package/src/Api/Internal/Fdc3InternalApi.d.ts +16 -9
- package/src/Api/Internal/Fdc3InternalApi.js +85 -191
- package/src/PredefinedConfig/Common/Fdc3Context.d.ts +14 -6
- package/src/PredefinedConfig/Common/Fdc3Intent.d.ts +6 -2
- package/src/Strategy/Fdc3Module.d.ts +0 -1
- package/src/Strategy/Fdc3Module.js +10 -40
- package/src/Utilities/Services/Fdc3Service.d.ts +1 -0
- package/src/Utilities/Services/Fdc3Service.js +45 -24
- package/src/Utilities/Services/MetamodelService.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +17 -6
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -2656,19 +2656,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2656
2656
|
name: string;
|
|
2657
2657
|
kind: string;
|
|
2658
2658
|
desc: string;
|
|
2659
|
+
ref: string;
|
|
2659
2660
|
isOpt?: undefined;
|
|
2660
|
-
ref?: undefined;
|
|
2661
2661
|
} | {
|
|
2662
2662
|
name: string;
|
|
2663
2663
|
kind: string;
|
|
2664
2664
|
desc: string;
|
|
2665
2665
|
isOpt: boolean;
|
|
2666
|
-
ref
|
|
2666
|
+
ref: string;
|
|
2667
2667
|
} | {
|
|
2668
2668
|
name: string;
|
|
2669
2669
|
kind: string;
|
|
2670
2670
|
desc: string;
|
|
2671
|
-
ref
|
|
2671
|
+
ref?: undefined;
|
|
2672
2672
|
isOpt?: undefined;
|
|
2673
2673
|
})[];
|
|
2674
2674
|
};
|
|
@@ -2677,7 +2677,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2677
2677
|
kind: string;
|
|
2678
2678
|
desc: string;
|
|
2679
2679
|
};
|
|
2680
|
-
|
|
2680
|
+
Fdc3CustomContext: {
|
|
2681
2681
|
name: string;
|
|
2682
2682
|
kind: string;
|
|
2683
2683
|
desc: string;
|
|
@@ -2719,6 +2719,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2719
2719
|
ref?: undefined;
|
|
2720
2720
|
})[];
|
|
2721
2721
|
};
|
|
2722
|
+
Fdc3StandardContextType: {
|
|
2723
|
+
name: string;
|
|
2724
|
+
kind: string;
|
|
2725
|
+
desc: string;
|
|
2726
|
+
};
|
|
2727
|
+
Fdc3StandardIntentType: {
|
|
2728
|
+
name: string;
|
|
2729
|
+
kind: string;
|
|
2730
|
+
desc: string;
|
|
2731
|
+
};
|
|
2722
2732
|
FilterActionOnDataChange: {
|
|
2723
2733
|
name: string;
|
|
2724
2734
|
kind: string;
|
|
@@ -3282,6 +3292,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3282
3292
|
name: string;
|
|
3283
3293
|
kind: string;
|
|
3284
3294
|
desc: string;
|
|
3295
|
+
ref: string;
|
|
3285
3296
|
}[];
|
|
3286
3297
|
};
|
|
3287
3298
|
HandleFdc3IntentResolutionContext: {
|
|
@@ -4065,14 +4076,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4065
4076
|
name: string;
|
|
4066
4077
|
kind: string;
|
|
4067
4078
|
desc: string;
|
|
4079
|
+
ref: string;
|
|
4068
4080
|
isOpt?: undefined;
|
|
4069
|
-
ref?: undefined;
|
|
4070
4081
|
} | {
|
|
4071
4082
|
name: string;
|
|
4072
4083
|
kind: string;
|
|
4073
4084
|
desc: string;
|
|
4074
|
-
ref: string;
|
|
4075
4085
|
isOpt?: undefined;
|
|
4086
|
+
ref?: undefined;
|
|
4076
4087
|
})[];
|
|
4077
4088
|
};
|
|
4078
4089
|
RowHighlightInfo: {
|