@magda/external-ui-plugin-sdk 4.2.1 → 4.2.2-alpha.0
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/index.d.ts +7 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1125,6 +1125,11 @@ declare type previewMapSettingsAspect = {
|
|
|
1125
1125
|
format?: string;
|
|
1126
1126
|
};
|
|
1127
1127
|
|
|
1128
|
+
declare type previewTabularDataSettingsAspect = {
|
|
1129
|
+
enableChart?: boolean;
|
|
1130
|
+
enableTable?: boolean;
|
|
1131
|
+
};
|
|
1132
|
+
|
|
1128
1133
|
declare type Provenance = {
|
|
1129
1134
|
mechanism?: string;
|
|
1130
1135
|
sourceSystem?: string;
|
|
@@ -1193,6 +1198,7 @@ declare type RawDataset = {
|
|
|
1193
1198
|
currency?: CurrencyData;
|
|
1194
1199
|
publishing?: PublishingAspect;
|
|
1195
1200
|
"preview-map-settings"?: previewMapSettingsAspect;
|
|
1201
|
+
"preview-tabular-data-settings"?: previewTabularDataSettingsAspect;
|
|
1196
1202
|
"access-control"?: AccessControlAspect;
|
|
1197
1203
|
};
|
|
1198
1204
|
};
|
|
@@ -1213,6 +1219,7 @@ declare type RawDistribution = {
|
|
|
1213
1219
|
compatiblePreviews: CompatiblePreviews;
|
|
1214
1220
|
};
|
|
1215
1221
|
"preview-map-settings"?: previewMapSettingsAspect;
|
|
1222
|
+
"preview-tabular-data-settings"?: previewTabularDataSettingsAspect;
|
|
1216
1223
|
"spatial-coverage": {
|
|
1217
1224
|
bbox?: number[];
|
|
1218
1225
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magda/external-ui-plugin-sdk",
|
|
3
3
|
"description": "MAGDA external UI plugin SDK",
|
|
4
|
-
"version": "4.2.
|
|
4
|
+
"version": "4.2.2-alpha.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"prebuild": "rimraf dist tsconfig.tsbuildinfo",
|
|
7
7
|
"build": "api-extractor run -l",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"directory": "packages/external-ui-plugin-sdk"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@magda/web-client": "^4.2.
|
|
21
|
+
"@magda/web-client": "^4.2.2-alpha.0",
|
|
22
22
|
"typescript": "~5.3.3"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|