@gooddata/sdk-ui-geo 11.41.0-alpha.1 → 11.41.0-alpha.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.
@@ -38,7 +38,6 @@ function planTooltipExecutions(layerExecutions, layerDataViews, backend, workspa
38
38
  planned.push({
39
39
  key: record.layerId,
40
40
  execution: built.execution,
41
- meta: built.meta,
42
41
  context: built.buildFeatureKey,
43
42
  });
44
43
  }
@@ -112,8 +112,7 @@ function buildAreaTooltipExecution(layer, context, mainDefinition) {
112
112
  }
113
113
  return buildKeySegment(areaAttrId, areaUri);
114
114
  };
115
- // Geo resolves per layer (no fan-out yet) — use the batched bundle.
116
- return { ...built.batch, buildFeatureKey };
115
+ return { execution: built, buildFeatureKey };
117
116
  }
118
117
  export const areaAdapter = {
119
118
  type: "area",
@@ -1,5 +1,5 @@
1
1
  import { type IAttribute, type IExecutionDefinition } from "@gooddata/sdk-model";
2
- import { type IResolvedReferenceValues, type ITooltipExecutionBundle } from "@gooddata/sdk-ui-vis-commons";
2
+ import { type IResolvedReferenceValues, type ITooltipExecution } from "@gooddata/sdk-ui-vis-commons";
3
3
  import { type JsonValue } from "../../utils/guards.js";
4
4
  /**
5
5
  * Returns the lookup key for a hovered feature in the same format
@@ -12,7 +12,8 @@ export type BuildFeatureKey = (properties: GeoJSON.GeoJsonProperties) => string
12
12
  /**
13
13
  * @internal
14
14
  */
15
- export interface IGeoLayerCustomTooltipExecution extends ITooltipExecutionBundle {
15
+ export interface IGeoLayerCustomTooltipExecution {
16
+ execution: ITooltipExecution;
16
17
  buildFeatureKey: BuildFeatureKey;
17
18
  }
18
19
  /**
@@ -234,8 +234,7 @@ function buildPushpinTooltipExecution(layer, context, mainDefinition) {
234
234
  }
235
235
  return joinKeySegments(parts);
236
236
  };
237
- // Geo resolves per layer (no fan-out yet) — use the batched bundle.
238
- return { ...built.batch, buildFeatureKey };
237
+ return { execution: built, buildFeatureKey };
239
238
  }
240
239
  export const pushpinAdapter = {
241
240
  type: "pushpin",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-ui-geo",
3
- "version": "11.41.0-alpha.1",
3
+ "version": "11.41.0-alpha.2",
4
4
  "description": "GoodData.UI SDK - Geo Charts",
5
5
  "license": "MIT",
6
6
  "author": "GoodData Corporation",
@@ -43,12 +43,12 @@
43
43
  "ts-invariant": "0.10.3",
44
44
  "tslib": "2.8.1",
45
45
  "uuid": "11.1.0",
46
- "@gooddata/sdk-backend-spi": "11.41.0-alpha.1",
47
- "@gooddata/sdk-ui": "11.41.0-alpha.1",
48
- "@gooddata/sdk-ui-kit": "11.41.0-alpha.1",
49
- "@gooddata/sdk-model": "11.41.0-alpha.1",
50
- "@gooddata/sdk-ui-theme-provider": "11.41.0-alpha.1",
51
- "@gooddata/sdk-ui-vis-commons": "11.41.0-alpha.1"
46
+ "@gooddata/sdk-backend-spi": "11.41.0-alpha.2",
47
+ "@gooddata/sdk-model": "11.41.0-alpha.2",
48
+ "@gooddata/sdk-ui": "11.41.0-alpha.2",
49
+ "@gooddata/sdk-ui-theme-provider": "11.41.0-alpha.2",
50
+ "@gooddata/sdk-ui-kit": "11.41.0-alpha.2",
51
+ "@gooddata/sdk-ui-vis-commons": "11.41.0-alpha.2"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@microsoft/api-documenter": "^7.17.0",
@@ -91,10 +91,10 @@
91
91
  "typescript": "5.9.3",
92
92
  "vitest": "4.1.8",
93
93
  "vitest-dom": "0.1.1",
94
- "@gooddata/eslint-config": "11.41.0-alpha.1",
95
- "@gooddata/oxlint-config": "11.41.0-alpha.1",
96
- "@gooddata/sdk-backend-mockingbird": "11.41.0-alpha.1",
97
- "@gooddata/stylelint-config": "11.41.0-alpha.1"
94
+ "@gooddata/eslint-config": "11.41.0-alpha.2",
95
+ "@gooddata/oxlint-config": "11.41.0-alpha.2",
96
+ "@gooddata/sdk-backend-mockingbird": "11.41.0-alpha.2",
97
+ "@gooddata/stylelint-config": "11.41.0-alpha.2"
98
98
  },
99
99
  "peerDependencies": {
100
100
  "react": "^18.0.0 || ^19.0.0",