@gooddata/sdk-ui-loaders 10.22.0-alpha.2 → 10.22.0-alpha.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/esm/dashboard/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IDashboardBaseProps, IDashboardPluginContract_V1 } from "@gooddata/sdk-ui-dashboard";
|
|
1
|
+
import { DashboardItem, IDashboardBaseProps, IDashboardPluginContract_V1 } from "@gooddata/sdk-ui-dashboard";
|
|
2
2
|
import { IClientWorkspaceIdentifiers } from "@gooddata/sdk-ui";
|
|
3
3
|
import { IDashboard, ObjRef } from "@gooddata/sdk-model";
|
|
4
4
|
/**
|
|
@@ -119,6 +119,11 @@ export interface IDashboardLoadOptions extends IDashboardBasePropsForLoader {
|
|
|
119
119
|
* Default allowUnfinishedFeatures is `alwaysPrevent`.
|
|
120
120
|
*/
|
|
121
121
|
allowUnfinishedFeatures?: "staticOnly" | "alwaysAllow" | "alwaysPrevent";
|
|
122
|
+
/**
|
|
123
|
+
* List of ad-hoc items to render in the dashboard. These items are not part of the dashboard
|
|
124
|
+
* definition and are not persisted, it will be rendered into empty layout.
|
|
125
|
+
*/
|
|
126
|
+
adhocItems?: DashboardItem[];
|
|
122
127
|
}
|
|
123
128
|
/**
|
|
124
129
|
* Adaptive loading requires additional options passed by the client.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/dashboard/types.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,2BAA2B,EAAE,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/dashboard/types.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,mBAAmB,EAAE,2BAA2B,EAAE,MAAM,4BAA4B,CAAC;AAC7G,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAC/D,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAEzD;;;;;;;GAOG;AACH,MAAM,WAAW,eAAe;IAC5B;;OAEG;IACH,OAAO,EAAE,MAAM,2BAA2B,CAAC;IAE3C;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;;;GAKG;AACH,MAAM,WAAW,4BAA6B,SAAQ,IAAI,CAAC,mBAAmB,EAAE,WAAW,CAAC;IACxF;;;;;;;;OAQG;IACH,SAAS,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,GAAG,UAAU,CAAC;CACvD;AAED;;;;;;;GAOG;AACH,MAAM,MAAM,oBAAoB,GAAG,UAAU,GAAG,YAAY,CAAC;AAE7D;;;;GAIG;AACH,MAAM,WAAW,qBAAsB,SAAQ,4BAA4B;IACvE;;;;;;;;;;;;;;;;;;;;;;;;;;OA0BG;IACH,WAAW,CAAC,EAAE,oBAAoB,CAAC;IAEnC;;;;;;;;;;;;OAYG;IACH,eAAe,CAAC,EAAE,2BAA2B,CAAC;IAE9C;;;;;OAKG;IACH,YAAY,CAAC,EAAE,eAAe,GAAG,eAAe,EAAE,CAAC;IAEnD;;;;;OAKG;IACH,mBAAmB,CAAC,EAAE,mBAAmB,CAAC;IAE1C;;;;;;;;;OASG;IACH,uBAAuB,CAAC,EAAE,YAAY,GAAG,aAAa,GAAG,eAAe,CAAC;IAEzE;;;OAGG;IACH,UAAU,CAAC,EAAE,aAAa,EAAE,CAAC;CAChC;AAED;;;;;;;;;;;GAWG;AACH,MAAM,MAAM,mBAAmB,GAAG;IAC9B;;;;;OAKG;IACH,2BAA2B,EAAE,2BAA2B,CAAC;CAC5D,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,MAAM,MAAM,2BAA2B,GAAG;IACtC,wBAAwB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAC3D,wBAAwB,EAAE,GAAG,CAAC;CACjC,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,YAAY,GAAG;IACvB,MAAM,EAAE,2BAA2B,CAAC;IACpC,UAAU,EAAE,MAAM,GAAG,SAAS,CAAC;CAClC,CAAC;AAEF;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC,oBAAoB,EAAE,MAAM,CAAC;CAChC;AAED;;GAEG;AACH,MAAM,MAAM,2BAA2B,GAAG,CAAC,MAAM,EAAE,0BAA0B,KAAK,IAAI,CAAC;AAEvF;;GAEG;AACH,MAAM,WAAW,8BAA8B;IAC3C,mBAAmB,EAAE,2BAA2B,CAAC;CACpD"}
|
package/esm/sdk-ui-loaders.d.ts
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
import { DashboardContext } from '@gooddata/sdk-ui-dashboard';
|
|
12
|
+
import { DashboardItem } from '@gooddata/sdk-ui-dashboard';
|
|
12
13
|
import { IAnalyticalBackend } from '@gooddata/sdk-backend-spi';
|
|
13
14
|
import { IClientWorkspaceIdentifiers } from '@gooddata/sdk-ui';
|
|
14
15
|
import { IDashboard } from '@gooddata/sdk-model';
|
|
@@ -334,6 +335,11 @@ export declare interface IDashboardLoadOptions extends IDashboardBasePropsForLoa
|
|
|
334
335
|
* Default allowUnfinishedFeatures is `alwaysPrevent`.
|
|
335
336
|
*/
|
|
336
337
|
allowUnfinishedFeatures?: "staticOnly" | "alwaysAllow" | "alwaysPrevent";
|
|
338
|
+
/**
|
|
339
|
+
* List of ad-hoc items to render in the dashboard. These items are not part of the dashboard
|
|
340
|
+
* definition and are not persisted, it will be rendered into empty layout.
|
|
341
|
+
*/
|
|
342
|
+
adhocItems?: DashboardItem[];
|
|
337
343
|
}
|
|
338
344
|
|
|
339
345
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/sdk-ui-loaders",
|
|
3
|
-
"version": "10.22.0-alpha.
|
|
3
|
+
"version": "10.22.0-alpha.3",
|
|
4
4
|
"description": "GoodData SDK Runtime Component Loaders",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"semver": "^7.3.5",
|
|
33
33
|
"ts-invariant": "^0.7.5",
|
|
34
34
|
"tslib": "^2.5.0",
|
|
35
|
-
"@gooddata/sdk-
|
|
36
|
-
"@gooddata/sdk-ui": "10.22.0-alpha.
|
|
37
|
-
"@gooddata/sdk-ui-dashboard": "10.22.0-alpha.
|
|
38
|
-
"@gooddata/sdk-
|
|
35
|
+
"@gooddata/sdk-backend-spi": "10.22.0-alpha.3",
|
|
36
|
+
"@gooddata/sdk-ui": "10.22.0-alpha.3",
|
|
37
|
+
"@gooddata/sdk-ui-dashboard": "10.22.0-alpha.3",
|
|
38
|
+
"@gooddata/sdk-model": "10.22.0-alpha.3"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"react": "^16.10.0 || ^17.0.0 || ^18.0.0",
|