@dynatrace/strato-geo 3.7.1 → 3.9.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/CHANGELOG.md +2087 -0
- package/esm/map/components/BubbleLayer/BubbleLayerTooltip.js +1 -7
- package/esm/map/components/BubbleLayer/BubbleLayerTooltip.js.map +2 -2
- package/esm/map/components/ChoroplethLayer/ChoroplethLayerTooltip.js +1 -7
- package/esm/map/components/ChoroplethLayer/ChoroplethLayerTooltip.js.map +2 -2
- package/esm/map/components/ConnectionLayer/ConnectionLayerTooltip.js +1 -7
- package/esm/map/components/ConnectionLayer/ConnectionLayerTooltip.js.map +2 -2
- package/esm/map/components/DotLayer/DotLayerTooltip.js +1 -7
- package/esm/map/components/DotLayer/DotLayerTooltip.js.map +2 -2
- package/esm/map/components/toolbar/MapToolbar.js +1 -1
- package/esm/map/components/toolbar/MapToolbar.js.map +1 -1
- package/esm/map/hooks/use-active-interaction.js +35 -20
- package/esm/map/hooks/use-active-interaction.js.map +2 -2
- package/esm/map/hooks/use-attach-symbol-to-map.js +7 -7
- package/esm/map/hooks/use-attach-symbol-to-map.js.map +2 -2
- package/esm/map/hooks/use-hover-interaction.js +12 -0
- package/esm/map/hooks/use-hover-interaction.js.map +2 -2
- package/esm/map/hooks/use-map-runtime-error.js +2 -1
- package/esm/map/hooks/use-map-runtime-error.js.map +2 -2
- package/esm/map/hooks/use-overlay-events.js +27 -15
- package/esm/map/hooks/use-overlay-events.js.map +2 -2
- package/esm/map/utils/get-scaled-symbol-size.js +1 -1
- package/esm/map/utils/get-scaled-symbol-size.js.map +2 -2
- package/lang/uncompiled/en.json +16 -16
- package/map/components/BubbleLayer/BubbleLayerTooltip.js +1 -7
- package/map/components/ChoroplethLayer/ChoroplethLayerTooltip.js +1 -7
- package/map/components/ConnectionLayer/ConnectionLayerTooltip.js +1 -7
- package/map/components/DotLayer/DotLayerTooltip.js +1 -7
- package/map/components/toolbar/MapToolbar.js +1 -1
- package/map/hooks/use-active-interaction.js +35 -20
- package/map/hooks/use-attach-symbol-to-map.d.ts +1 -1
- package/map/hooks/use-attach-symbol-to-map.js +6 -6
- package/map/hooks/use-hover-interaction.js +12 -0
- package/map/hooks/use-map-runtime-error.js +2 -1
- package/map/hooks/use-overlay-events.js +26 -14
- package/map/types/map-view-provider.d.ts +1 -1
- package/map/utils/get-scaled-symbol-size.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,2087 @@
|
|
|
1
|
+
# geo
|
|
2
|
+
|
|
3
|
+
## 3.9.0
|
|
4
|
+
|
|
5
|
+
### Dependency updates
|
|
6
|
+
|
|
7
|
+
- `@dynatrace/strato-components` was updated to version `3.9.0`.
|
|
8
|
+
|
|
9
|
+
### Updates
|
|
10
|
+
|
|
11
|
+
#### General
|
|
12
|
+
|
|
13
|
+
- Updated the `@vanilla-extract/css` dependency to `1.21.1`, which fixes non-deterministic style composition output. An empty composed style used in a selector (e.g. a `disabled` state combining `readOnly` and `ariaDisabled`) could intermittently drop a class, changing generated class names between builds and, in rare cases, leaving a selector-targeted state unstyled.
|
|
14
|
+
|
|
15
|
+
#### MapView
|
|
16
|
+
|
|
17
|
+
- Fixed a rare crash when rendering maps with large icon datasets. The error is now handled gracefully with automatic retry and fallback UI. (APPDEV-15440)
|
|
18
|
+
|
|
19
|
+
## 3.8.2
|
|
20
|
+
|
|
21
|
+
### Dependency updates
|
|
22
|
+
|
|
23
|
+
- `@dynatrace/strato-components` was updated to version `3.8.1`.
|
|
24
|
+
|
|
25
|
+
## 3.8.1
|
|
26
|
+
|
|
27
|
+
### Updates
|
|
28
|
+
|
|
29
|
+
#### MapView
|
|
30
|
+
|
|
31
|
+
- `MapViewProvider` add `OTHERS` as a neutral country code option. (APPDEV-18542)
|
|
32
|
+
|
|
33
|
+
## 3.8.0
|
|
34
|
+
|
|
35
|
+
### Dependency updates
|
|
36
|
+
|
|
37
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.5.1`.
|
|
38
|
+
- `@dynatrace/strato-icons` was updated to version `2.3.1`.
|
|
39
|
+
- `@dynatrace/strato-components` was updated to version `3.8.0`.
|
|
40
|
+
|
|
41
|
+
### Updates
|
|
42
|
+
|
|
43
|
+
#### General
|
|
44
|
+
|
|
45
|
+
- Changelog files are now included in the published packages for easier agentic access.
|
|
46
|
+
|
|
47
|
+
#### Charts
|
|
48
|
+
|
|
49
|
+
- Fixed the toolbar auto-collapse logic and added collapse button to `Map` toolbar. (APPDEV-18014)
|
|
50
|
+
|
|
51
|
+
#### DotLayer
|
|
52
|
+
|
|
53
|
+
- Fixed custom background color on `DotLayer` icons flashing to the default color when zooming in or out.
|
|
54
|
+
|
|
55
|
+
#### MapView
|
|
56
|
+
|
|
57
|
+
- Fixed the feature-state highlight persisting on map layers after tooltip dismissal, and the pinned tooltip not dismissing when clicking the same feature again. (APPDEV-17231)
|
|
58
|
+
- Fixed a crash that occurred at low zoom levels in browsers. (APPDEV-18220)
|
|
59
|
+
|
|
60
|
+
## 3.7.1
|
|
61
|
+
|
|
62
|
+
### Dependency updates
|
|
63
|
+
|
|
64
|
+
- `@dynatrace/strato-components` was updated to version `3.7.1`.
|
|
65
|
+
|
|
66
|
+
## 3.7.0
|
|
67
|
+
|
|
68
|
+
### Dependency updates
|
|
69
|
+
|
|
70
|
+
- `@dynatrace/strato-components` was updated to version `3.7.0`.
|
|
71
|
+
|
|
72
|
+
### Deprecations
|
|
73
|
+
|
|
74
|
+
#### MapView
|
|
75
|
+
|
|
76
|
+
- Deprecated `Tooltip` and `TooltipAtoms` exports. Instead, use `ChartTooltip` from `@dynatrace/strato-components/charts`.
|
|
77
|
+
|
|
78
|
+
### Updates
|
|
79
|
+
|
|
80
|
+
#### General
|
|
81
|
+
|
|
82
|
+
- Removed CodeSandbox preview links from use case examples. (APPDEV-16704)
|
|
83
|
+
|
|
84
|
+
#### MapView
|
|
85
|
+
|
|
86
|
+
- Fixed a crash when rendering maps with large datasets. Tooltip data, including properties with null values, is fully preserved. Fixed a coordinate swap bug in tooltip data where latitude and longitude values were reversed. (APPDEV-13365)
|
|
87
|
+
- Fixed an issue where certain rendering conditions could cause the map to crash the entire application. The map now recovers automatically from transient errors and only shows a fallback error state if it cannot recover after several attempts. (APPDEV-17938).
|
|
88
|
+
- Fixed an issue where hovering over the map could cause the application to crash when the map was loading or transitioning between data states. (APPDEV-17854)
|
|
89
|
+
- Fixed custom icons passed to the `DotLayer` `shape` prop from being cropped in Firefox. (APPDEV-17907)
|
|
90
|
+
|
|
91
|
+
## 3.6.0
|
|
92
|
+
|
|
93
|
+
### Dependency updates
|
|
94
|
+
|
|
95
|
+
- `@dynatrace/strato-components` was updated to version `3.6.0`.
|
|
96
|
+
|
|
97
|
+
### Updates
|
|
98
|
+
|
|
99
|
+
#### General
|
|
100
|
+
|
|
101
|
+
- Fix type signatures for `data-dt-value-content` and `data-dt-children-value-content` in `BehaviorTrackingProps` — both are now correctly typed as `boolean`.
|
|
102
|
+
|
|
103
|
+
#### MapView
|
|
104
|
+
|
|
105
|
+
- Now has MapViewProvider to configure countryCode and displayWorldMap. (APPDEV-17617)
|
|
106
|
+
- Layers use new overlay custom tooltip. (APPDEV-17763)
|
|
107
|
+
|
|
108
|
+
## 3.5.2
|
|
109
|
+
|
|
110
|
+
### Dependency updates
|
|
111
|
+
|
|
112
|
+
- `@dynatrace/strato-components` was updated to version `3.5.2`.
|
|
113
|
+
|
|
114
|
+
### Updates
|
|
115
|
+
|
|
116
|
+
#### General
|
|
117
|
+
|
|
118
|
+
- Fix type signatures for `data-dt-value-content` and `data-dt-children-value-content` in `BehaviorTrackingProps` — both are now correctly typed as `boolean`.
|
|
119
|
+
|
|
120
|
+
## 3.5.1
|
|
121
|
+
|
|
122
|
+
### Dependency updates
|
|
123
|
+
|
|
124
|
+
- `@dynatrace/strato-components` was updated to version `3.5.1`.
|
|
125
|
+
|
|
126
|
+
## 3.5.0
|
|
127
|
+
|
|
128
|
+
### Dependency updates
|
|
129
|
+
|
|
130
|
+
- `@dynatrace/strato-icons` was updated to version `2.3.0`.
|
|
131
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.5.0`.
|
|
132
|
+
- `@dynatrace/strato-components` was updated to version `3.5.0`.
|
|
133
|
+
|
|
134
|
+
## 3.4.1
|
|
135
|
+
|
|
136
|
+
### Dependency updates
|
|
137
|
+
|
|
138
|
+
- `@dynatrace/strato-components` was updated to version `3.4.1`.
|
|
139
|
+
|
|
140
|
+
### Updates
|
|
141
|
+
|
|
142
|
+
#### General
|
|
143
|
+
|
|
144
|
+
- Fix type signatures for `data-dt-value-content` and `data-dt-children-value-content` in `BehaviorTrackingProps` — both are now correctly typed as `boolean`.
|
|
145
|
+
|
|
146
|
+
## 3.4.0
|
|
147
|
+
|
|
148
|
+
### Dependency updates
|
|
149
|
+
|
|
150
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.4.0`.
|
|
151
|
+
- `@dynatrace/strato-components` was updated to version `3.4.0`.
|
|
152
|
+
|
|
153
|
+
## 3.3.3
|
|
154
|
+
|
|
155
|
+
### Dependency updates
|
|
156
|
+
|
|
157
|
+
- `@dynatrace/strato-components` was updated to version `3.3.3`.
|
|
158
|
+
|
|
159
|
+
## 3.3.2
|
|
160
|
+
|
|
161
|
+
### Dependency updates
|
|
162
|
+
|
|
163
|
+
- `@dynatrace/strato-components` was updated to version `3.3.2`.
|
|
164
|
+
|
|
165
|
+
## 3.3.1
|
|
166
|
+
|
|
167
|
+
### Dependency updates
|
|
168
|
+
|
|
169
|
+
- `@dynatrace/strato-components` was updated to version `3.3.1`.
|
|
170
|
+
|
|
171
|
+
## 3.3.0
|
|
172
|
+
|
|
173
|
+
### Dependency updates
|
|
174
|
+
|
|
175
|
+
- `@dynatrace/strato-icons` was updated to version `2.2.0`.
|
|
176
|
+
- `@dynatrace/strato-components` was updated to version `3.3.0`.
|
|
177
|
+
|
|
178
|
+
### Updates
|
|
179
|
+
|
|
180
|
+
#### MapView
|
|
181
|
+
|
|
182
|
+
- Default tooltip uses new tooltip for `MapView`. (APPDEV-16696)
|
|
183
|
+
|
|
184
|
+
## 3.2.2
|
|
185
|
+
|
|
186
|
+
### Dependency updates
|
|
187
|
+
|
|
188
|
+
- `@dynatrace/strato-components` was updated to version `3.2.2`.
|
|
189
|
+
|
|
190
|
+
## 3.2.1
|
|
191
|
+
|
|
192
|
+
### Dependency updates
|
|
193
|
+
|
|
194
|
+
- `@dynatrace/strato-components` was updated to version `3.2.1`.
|
|
195
|
+
|
|
196
|
+
## 3.2.0
|
|
197
|
+
|
|
198
|
+
### Dependency updates
|
|
199
|
+
|
|
200
|
+
- `@dynatrace/strato-icons` was updated to version `2.1.1`.
|
|
201
|
+
- `@dynatrace/strato-components` was updated to version `3.2.0`.
|
|
202
|
+
|
|
203
|
+
## 3.1.5
|
|
204
|
+
|
|
205
|
+
### Dependency updates
|
|
206
|
+
|
|
207
|
+
- `@dynatrace/strato-components` was updated to version `3.1.5`.
|
|
208
|
+
|
|
209
|
+
## 3.1.4
|
|
210
|
+
|
|
211
|
+
### Dependency updates
|
|
212
|
+
|
|
213
|
+
- `@dynatrace/strato-components` was updated to version `3.1.4`.
|
|
214
|
+
|
|
215
|
+
## 3.1.3
|
|
216
|
+
|
|
217
|
+
### Dependency updates
|
|
218
|
+
|
|
219
|
+
- `@dynatrace/strato-components` was updated to version `3.1.3`.
|
|
220
|
+
|
|
221
|
+
## 3.1.2
|
|
222
|
+
|
|
223
|
+
### Dependency updates
|
|
224
|
+
|
|
225
|
+
- `@dynatrace/strato-components` was updated to version `3.1.2`.
|
|
226
|
+
|
|
227
|
+
## 3.1.1
|
|
228
|
+
|
|
229
|
+
### Dependency updates
|
|
230
|
+
|
|
231
|
+
- `@dynatrace/strato-components` was updated to version `3.1.1`.
|
|
232
|
+
|
|
233
|
+
## 3.1.0
|
|
234
|
+
|
|
235
|
+
### Dependency updates
|
|
236
|
+
|
|
237
|
+
- `@dynatrace/strato-icons` was updated to version `2.1.0`.
|
|
238
|
+
- `@dynatrace/strato-components` was updated to version `3.1.0`.
|
|
239
|
+
|
|
240
|
+
### Updates
|
|
241
|
+
|
|
242
|
+
#### BubbleLayer
|
|
243
|
+
|
|
244
|
+
- Add behavioral tracking props support to geo map components. (APPDEV-16380)
|
|
245
|
+
|
|
246
|
+
#### ChoroplethLayer
|
|
247
|
+
|
|
248
|
+
- Add behavioral tracking props support to geo map components. (APPDEV-16380)
|
|
249
|
+
|
|
250
|
+
#### ConnectionLayer
|
|
251
|
+
|
|
252
|
+
- Add behavioral tracking props support to geo map components. (APPDEV-16380)
|
|
253
|
+
|
|
254
|
+
#### DotLayer
|
|
255
|
+
|
|
256
|
+
- Add behavioral tracking props support to geo map components. (APPDEV-16380)
|
|
257
|
+
|
|
258
|
+
#### MapView
|
|
259
|
+
|
|
260
|
+
- Add behavioral tracking props support to geo map components. (APPDEV-16380)
|
|
261
|
+
|
|
262
|
+
## 3.0.3
|
|
263
|
+
|
|
264
|
+
### Dependency updates
|
|
265
|
+
|
|
266
|
+
- `@dynatrace/strato-components` was updated to version `3.0.3`.
|
|
267
|
+
- `@dynatrace/strato-components-preview` was updated to version `3.0.3`.
|
|
268
|
+
|
|
269
|
+
## 3.0.2
|
|
270
|
+
|
|
271
|
+
### Dependency updates
|
|
272
|
+
|
|
273
|
+
- `@dynatrace/strato-components` was updated to version `3.0.2`.
|
|
274
|
+
- `@dynatrace/strato-components-preview` was updated to version `3.0.2`.
|
|
275
|
+
|
|
276
|
+
## 3.0.1
|
|
277
|
+
|
|
278
|
+
## 3.0.0
|
|
279
|
+
|
|
280
|
+
### Dependency updates
|
|
281
|
+
|
|
282
|
+
- Changed peerDependency version range for `@dynatrace-sdk/units` from `^1.4.2` to `^1.5.0`. (APPDEV-10467)
|
|
283
|
+
- `@dynatrace/strato-components` was updated to version `3.0.0`.
|
|
284
|
+
- `@dynatrace/strato-icons` was updated to version `2.0.0`.
|
|
285
|
+
- `@dynatrace/strato-components-preview` was updated to version `3.0.0`.
|
|
286
|
+
- Changed peerDependency version range for `@dynatrace-sdk/client-classic-environment-v2` from `^3.7.3 || ^4.0.0 || ^5.0.0` to `^5.1.0`. (APPDEV-10467)
|
|
287
|
+
|
|
288
|
+
### Updates
|
|
289
|
+
|
|
290
|
+
#### General
|
|
291
|
+
|
|
292
|
+
- Updated the documentation to reflect the merging of the Strato components and components preview packages. (PRODUCT-15188)
|
|
293
|
+
|
|
294
|
+
## 2.17.2
|
|
295
|
+
|
|
296
|
+
### Dependency updates
|
|
297
|
+
|
|
298
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.17.2`.
|
|
299
|
+
|
|
300
|
+
## 2.17.1
|
|
301
|
+
|
|
302
|
+
### Dependency updates
|
|
303
|
+
|
|
304
|
+
- `@dynatrace/strato-components` was updated to version `2.17.1`.
|
|
305
|
+
|
|
306
|
+
## 2.17.0
|
|
307
|
+
|
|
308
|
+
### Dependency updates
|
|
309
|
+
|
|
310
|
+
- `@dynatrace/strato-components` was updated to version `1.18.0`.
|
|
311
|
+
- `@dynatrace/strato-icons` was updated to version `1.13.0`.
|
|
312
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.17.0`.
|
|
313
|
+
|
|
314
|
+
## 2.16.1
|
|
315
|
+
|
|
316
|
+
### Dependency updates
|
|
317
|
+
|
|
318
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.16.1`.
|
|
319
|
+
|
|
320
|
+
## 2.16.0
|
|
321
|
+
|
|
322
|
+
### Dependency updates
|
|
323
|
+
|
|
324
|
+
- `@dynatrace/strato-components` was updated to version `1.17.0`.
|
|
325
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.16.0`.
|
|
326
|
+
|
|
327
|
+
## 2.15.1
|
|
328
|
+
|
|
329
|
+
### Dependency updates
|
|
330
|
+
|
|
331
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.15.1`.
|
|
332
|
+
|
|
333
|
+
## 2.15.0
|
|
334
|
+
|
|
335
|
+
### Dependency updates
|
|
336
|
+
|
|
337
|
+
- `@dynatrace/strato-components` was updated to version `1.16.1`.
|
|
338
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.15.0`.
|
|
339
|
+
|
|
340
|
+
### Updates
|
|
341
|
+
|
|
342
|
+
#### General
|
|
343
|
+
|
|
344
|
+
- Copy actions no longer fail when users lack clipboard permissions. (APPDEV-15973)
|
|
345
|
+
|
|
346
|
+
#### MapView
|
|
347
|
+
|
|
348
|
+
- Deprecated ChartToolbar component. (APPDEV-15303)
|
|
349
|
+
- `@dynatrace-sdk/client-classic-environment-v2` peer dependency now supports both v3 and v5 (`^3.7.3 || ^4.0.0 || ^5.0.0`), maintaining backward compatibility while allowing consumers to use either major version. (APPDEV-16016)
|
|
350
|
+
- Enable zoom slot as default. (APPDEV-15771)
|
|
351
|
+
- Deprecated ChartToolbar.DownloadData slot. (APPDEV-15304)
|
|
352
|
+
- Changed dependency version for `maplibre-gl` to `~5.16.0`. (APPDEV-15542)
|
|
353
|
+
- Deprecating ChartInteractions in favor of charts slots. (APPDEV-15611)
|
|
354
|
+
|
|
355
|
+
## 2.14.1
|
|
356
|
+
|
|
357
|
+
### Dependency updates
|
|
358
|
+
|
|
359
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.14.1`.
|
|
360
|
+
|
|
361
|
+
## 2.14.0
|
|
362
|
+
|
|
363
|
+
### Dependency updates
|
|
364
|
+
|
|
365
|
+
- `@dynatrace/strato-icons` was updated to version `1.12.0`.
|
|
366
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.3.1`.
|
|
367
|
+
- `@dynatrace/strato-components` was updated to version `1.16.0`.
|
|
368
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.14.0`.
|
|
369
|
+
|
|
370
|
+
## 2.13.2
|
|
371
|
+
|
|
372
|
+
### Dependency updates
|
|
373
|
+
|
|
374
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.13.2`.
|
|
375
|
+
|
|
376
|
+
## 2.13.1
|
|
377
|
+
|
|
378
|
+
### Dependency updates
|
|
379
|
+
|
|
380
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.13.1`.
|
|
381
|
+
|
|
382
|
+
## 2.13.0
|
|
383
|
+
|
|
384
|
+
### Dependency updates
|
|
385
|
+
|
|
386
|
+
- `@dynatrace/strato-components` was updated to version `1.15.0`.
|
|
387
|
+
- `@dynatrace/strato-icons` was updated to version `1.11.1`.
|
|
388
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.3.0`.
|
|
389
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.13.0`.
|
|
390
|
+
|
|
391
|
+
### Updates
|
|
392
|
+
|
|
393
|
+
#### MapView
|
|
394
|
+
|
|
395
|
+
- The chart now properly handles the error, when the WebGL context is lost. (APPDEV-15745)
|
|
396
|
+
|
|
397
|
+
## 2.12.3
|
|
398
|
+
|
|
399
|
+
### Dependency updates
|
|
400
|
+
|
|
401
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.12.3`.
|
|
402
|
+
|
|
403
|
+
## 2.12.2
|
|
404
|
+
|
|
405
|
+
### Dependency updates
|
|
406
|
+
|
|
407
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.12.2`.
|
|
408
|
+
|
|
409
|
+
## 2.12.1
|
|
410
|
+
|
|
411
|
+
### Dependency updates
|
|
412
|
+
|
|
413
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.12.1`.
|
|
414
|
+
|
|
415
|
+
## 2.12.0
|
|
416
|
+
|
|
417
|
+
### Dependency updates
|
|
418
|
+
|
|
419
|
+
- Changed peerDependency version range for `maplibre-gl` from `^5.0.0` to `>=5.0.0 <5.12.0`.' (APPDEV-15515)
|
|
420
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.12.0`.
|
|
421
|
+
|
|
422
|
+
### Updates
|
|
423
|
+
|
|
424
|
+
#### MapView
|
|
425
|
+
|
|
426
|
+
- Fixed a bug making the `MapView` unable to show DownloadCSV in a collapsed `Toolbar` (APPDEV-15424)
|
|
427
|
+
|
|
428
|
+
## 2.11.4
|
|
429
|
+
|
|
430
|
+
### Dependency updates
|
|
431
|
+
|
|
432
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.11.4`.
|
|
433
|
+
|
|
434
|
+
## 2.11.3
|
|
435
|
+
|
|
436
|
+
### Dependency updates
|
|
437
|
+
|
|
438
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.11.3`.
|
|
439
|
+
|
|
440
|
+
## 2.11.2
|
|
441
|
+
|
|
442
|
+
### Dependency updates
|
|
443
|
+
|
|
444
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.11.2`.
|
|
445
|
+
|
|
446
|
+
## 2.11.1
|
|
447
|
+
|
|
448
|
+
### Dependency updates
|
|
449
|
+
|
|
450
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.11.1`.
|
|
451
|
+
|
|
452
|
+
## 2.11.0
|
|
453
|
+
|
|
454
|
+
### Dependency updates
|
|
455
|
+
|
|
456
|
+
- `@dynatrace/strato-components` was updated to version `1.14.0`.
|
|
457
|
+
- `@dynatrace/strato-icons` was updated to version `1.11.0`.
|
|
458
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.11.0`.
|
|
459
|
+
|
|
460
|
+
### Updates
|
|
461
|
+
|
|
462
|
+
#### MapView
|
|
463
|
+
|
|
464
|
+
- The `MapView` now accepts `Toolbar`, `DownloadCSV` and `Zoom` as Slots. (APPDEV-15131)
|
|
465
|
+
|
|
466
|
+
## 2.10.2
|
|
467
|
+
|
|
468
|
+
### Dependency updates
|
|
469
|
+
|
|
470
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.10.2`.
|
|
471
|
+
|
|
472
|
+
## 2.10.1
|
|
473
|
+
|
|
474
|
+
### Dependency updates
|
|
475
|
+
|
|
476
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.10.1`.
|
|
477
|
+
|
|
478
|
+
## 2.10.0
|
|
479
|
+
|
|
480
|
+
### Dependency updates
|
|
481
|
+
|
|
482
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.2.0`.
|
|
483
|
+
- `@dynatrace/strato-icons` was updated to version `1.10.0`.
|
|
484
|
+
- `@dynatrace/strato-components` was updated to version `1.13.0`.
|
|
485
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.10.0`.
|
|
486
|
+
|
|
487
|
+
## 2.9.5
|
|
488
|
+
|
|
489
|
+
### Dependency updates
|
|
490
|
+
|
|
491
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.9.5`.
|
|
492
|
+
|
|
493
|
+
## 2.9.4
|
|
494
|
+
|
|
495
|
+
### Dependency updates
|
|
496
|
+
|
|
497
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.9.4`.
|
|
498
|
+
|
|
499
|
+
## 2.9.3
|
|
500
|
+
|
|
501
|
+
### Dependency updates
|
|
502
|
+
|
|
503
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.9.3`.
|
|
504
|
+
|
|
505
|
+
## 2.9.2
|
|
506
|
+
|
|
507
|
+
### Dependency updates
|
|
508
|
+
|
|
509
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.9.2`.
|
|
510
|
+
|
|
511
|
+
## 2.9.1
|
|
512
|
+
|
|
513
|
+
### Dependency updates
|
|
514
|
+
|
|
515
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.9.1`.
|
|
516
|
+
|
|
517
|
+
## 2.9.0
|
|
518
|
+
|
|
519
|
+
### Dependency updates
|
|
520
|
+
|
|
521
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.9.0`.
|
|
522
|
+
|
|
523
|
+
### Updates
|
|
524
|
+
|
|
525
|
+
#### MapView
|
|
526
|
+
|
|
527
|
+
- Fixes an error when `from` value is higher than the `to` for the legend coloring. (APPDEV-15154)
|
|
528
|
+
|
|
529
|
+
## 2.8.4
|
|
530
|
+
|
|
531
|
+
### Dependency updates
|
|
532
|
+
|
|
533
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.8.4`.
|
|
534
|
+
|
|
535
|
+
## 2.8.3
|
|
536
|
+
|
|
537
|
+
### Dependency updates
|
|
538
|
+
|
|
539
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.8.3`.
|
|
540
|
+
|
|
541
|
+
## 2.8.2
|
|
542
|
+
|
|
543
|
+
### Dependency updates
|
|
544
|
+
|
|
545
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.8.2`.
|
|
546
|
+
|
|
547
|
+
## 2.8.1
|
|
548
|
+
|
|
549
|
+
### Dependency updates
|
|
550
|
+
|
|
551
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.8.1`.
|
|
552
|
+
|
|
553
|
+
## 2.8.0
|
|
554
|
+
|
|
555
|
+
### Dependency updates
|
|
556
|
+
|
|
557
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.8.0`.
|
|
558
|
+
|
|
559
|
+
### Updates
|
|
560
|
+
|
|
561
|
+
#### ConnectionLayer
|
|
562
|
+
|
|
563
|
+
- Maintain props with null values for the Tooltip. (APPDEV-11707)
|
|
564
|
+
|
|
565
|
+
## 2.7.6
|
|
566
|
+
|
|
567
|
+
### Dependency updates
|
|
568
|
+
|
|
569
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.7.6`.
|
|
570
|
+
|
|
571
|
+
## 2.7.5
|
|
572
|
+
|
|
573
|
+
### Dependency updates
|
|
574
|
+
|
|
575
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.7.5`.
|
|
576
|
+
|
|
577
|
+
## 2.7.4
|
|
578
|
+
|
|
579
|
+
### Dependency updates
|
|
580
|
+
|
|
581
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.7.4`.
|
|
582
|
+
|
|
583
|
+
## 2.7.3
|
|
584
|
+
|
|
585
|
+
### Dependency updates
|
|
586
|
+
|
|
587
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.7.3`.
|
|
588
|
+
|
|
589
|
+
## 2.7.2
|
|
590
|
+
|
|
591
|
+
### Dependency updates
|
|
592
|
+
|
|
593
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.7.2`.
|
|
594
|
+
|
|
595
|
+
## 2.7.1
|
|
596
|
+
|
|
597
|
+
### Dependency updates
|
|
598
|
+
|
|
599
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.7.1`.
|
|
600
|
+
|
|
601
|
+
## 2.7.0
|
|
602
|
+
|
|
603
|
+
### Dependency updates
|
|
604
|
+
|
|
605
|
+
- `@dynatrace/strato-components` was updated to version `1.12.0`.
|
|
606
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.1.4`.
|
|
607
|
+
- `@dynatrace/strato-icons` was updated to version `1.9.0`.
|
|
608
|
+
- Changed peerDependency version range for `@dynatrace-sdk/units` from `^1.0.2` to `^1.3.1`. (APPDEV-14636)
|
|
609
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.7.0`.
|
|
610
|
+
|
|
611
|
+
## 2.6.2
|
|
612
|
+
|
|
613
|
+
### Dependency updates
|
|
614
|
+
|
|
615
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.6.2`.
|
|
616
|
+
|
|
617
|
+
## 2.6.1
|
|
618
|
+
|
|
619
|
+
### Dependency updates
|
|
620
|
+
|
|
621
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.6.1`.
|
|
622
|
+
|
|
623
|
+
## 2.6.0
|
|
624
|
+
|
|
625
|
+
### Dependency updates
|
|
626
|
+
|
|
627
|
+
- `@dynatrace/strato-components` was updated to version `1.11.0`.
|
|
628
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.1.3`.
|
|
629
|
+
- `@dynatrace/strato-icons` was updated to version `1.8.0`.
|
|
630
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.6.0`.
|
|
631
|
+
|
|
632
|
+
## 2.5.5
|
|
633
|
+
|
|
634
|
+
### Dependency updates
|
|
635
|
+
|
|
636
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.5.5`.
|
|
637
|
+
|
|
638
|
+
## 2.5.4
|
|
639
|
+
|
|
640
|
+
### Dependency updates
|
|
641
|
+
|
|
642
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.5.4`.
|
|
643
|
+
|
|
644
|
+
## 2.5.3
|
|
645
|
+
|
|
646
|
+
### Dependency updates
|
|
647
|
+
|
|
648
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.5.3`.
|
|
649
|
+
|
|
650
|
+
## 2.5.2
|
|
651
|
+
|
|
652
|
+
### Dependency updates
|
|
653
|
+
|
|
654
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.5.2`.
|
|
655
|
+
|
|
656
|
+
## 2.5.1
|
|
657
|
+
|
|
658
|
+
### Dependency updates
|
|
659
|
+
|
|
660
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.5.1`.
|
|
661
|
+
|
|
662
|
+
## 2.5.0
|
|
663
|
+
|
|
664
|
+
### Dependency updates
|
|
665
|
+
|
|
666
|
+
- `@dynatrace/strato-icons` was updated to version `1.7.0`.
|
|
667
|
+
- `@dynatrace/strato-components` was updated to version `1.10.0`.
|
|
668
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.1.2`.
|
|
669
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.5.0`.
|
|
670
|
+
|
|
671
|
+
## 2.4.6
|
|
672
|
+
|
|
673
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.4.6`.
|
|
674
|
+
|
|
675
|
+
## 2.4.5
|
|
676
|
+
|
|
677
|
+
### Dependency updates
|
|
678
|
+
|
|
679
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.4.5`.
|
|
680
|
+
|
|
681
|
+
## 2.4.4
|
|
682
|
+
|
|
683
|
+
### Dependency updates
|
|
684
|
+
|
|
685
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.4.4`.
|
|
686
|
+
|
|
687
|
+
## 2.4.3
|
|
688
|
+
|
|
689
|
+
### Dependency updates
|
|
690
|
+
|
|
691
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.4.3`.
|
|
692
|
+
|
|
693
|
+
## 2.4.2
|
|
694
|
+
|
|
695
|
+
### Dependency updates
|
|
696
|
+
|
|
697
|
+
- `@dynatrace/strato-components` was updated to version `1.9.2`.
|
|
698
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.4.2`.
|
|
699
|
+
|
|
700
|
+
## 2.4.1
|
|
701
|
+
|
|
702
|
+
### Dependency updates
|
|
703
|
+
|
|
704
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.4.1`.
|
|
705
|
+
|
|
706
|
+
## 2.4.0
|
|
707
|
+
|
|
708
|
+
### Dependency updates
|
|
709
|
+
|
|
710
|
+
- `@dynatrace/strato-components` was updated to version `1.9.1`.
|
|
711
|
+
- `@dynatrace/strato-icons` was updated to version `1.6.1`.
|
|
712
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.1.1`.
|
|
713
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.4.0`.
|
|
714
|
+
|
|
715
|
+
### Updates
|
|
716
|
+
|
|
717
|
+
#### BubbleLayer
|
|
718
|
+
|
|
719
|
+
- Added support for testId, style, classname, and mask properties. (APPDEV-14504)
|
|
720
|
+
|
|
721
|
+
#### ChoroplethLayer
|
|
722
|
+
|
|
723
|
+
- Added support for testId, style, classname, and mask properties. (APPDEV-14504)
|
|
724
|
+
|
|
725
|
+
#### ConnectionLayer
|
|
726
|
+
|
|
727
|
+
- Added support for testId, style, classname, and mask properties. (APPDEV-14504)
|
|
728
|
+
|
|
729
|
+
#### DotLayer
|
|
730
|
+
|
|
731
|
+
- Added support for testId, style, classname, and mask properties. (APPDEV-14504)
|
|
732
|
+
|
|
733
|
+
#### MapView
|
|
734
|
+
|
|
735
|
+
- Added support for testId, style, classname, and mask properties. (APPDEV-14504)
|
|
736
|
+
|
|
737
|
+
#### Tooltip
|
|
738
|
+
|
|
739
|
+
- Fixed overflow issue in the tooltip affecting the `MapView`. (APPDEV-14580)
|
|
740
|
+
|
|
741
|
+
## 2.3.3
|
|
742
|
+
|
|
743
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.3.3`.
|
|
744
|
+
|
|
745
|
+
## 2.3.2
|
|
746
|
+
|
|
747
|
+
### Dependency updates
|
|
748
|
+
|
|
749
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.3.2`.
|
|
750
|
+
|
|
751
|
+
## 2.3.1
|
|
752
|
+
|
|
753
|
+
### Dependency updates
|
|
754
|
+
|
|
755
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.3.1`.
|
|
756
|
+
|
|
757
|
+
## 2.3.0
|
|
758
|
+
|
|
759
|
+
### Dependency updates
|
|
760
|
+
|
|
761
|
+
- `@dynatrace/strato-components` was updated to version `1.9.0`.
|
|
762
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.3.0`.
|
|
763
|
+
|
|
764
|
+
## 2.2.2
|
|
765
|
+
|
|
766
|
+
### Dependency updates
|
|
767
|
+
|
|
768
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.2.2`.
|
|
769
|
+
|
|
770
|
+
## 2.2.1
|
|
771
|
+
|
|
772
|
+
### Dependency updates
|
|
773
|
+
|
|
774
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.2.1`.
|
|
775
|
+
|
|
776
|
+
## 2.2.0
|
|
777
|
+
|
|
778
|
+
### Dependency updates
|
|
779
|
+
|
|
780
|
+
- `@dynatrace/strato-components` was updated to version `1.8.1`.
|
|
781
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.2.0`.
|
|
782
|
+
|
|
783
|
+
## 2.1.1
|
|
784
|
+
|
|
785
|
+
### Dependency updates
|
|
786
|
+
|
|
787
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.1.1`.
|
|
788
|
+
|
|
789
|
+
## 2.1.0
|
|
790
|
+
|
|
791
|
+
### Dependency updates
|
|
792
|
+
|
|
793
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.1.0`.
|
|
794
|
+
|
|
795
|
+
## 2.0.1
|
|
796
|
+
|
|
797
|
+
### Dependency updates
|
|
798
|
+
|
|
799
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.0.1`.
|
|
800
|
+
|
|
801
|
+
## 2.0.0
|
|
802
|
+
|
|
803
|
+
### Breaking changes
|
|
804
|
+
|
|
805
|
+
#### General
|
|
806
|
+
|
|
807
|
+
- Removed deprecated testing subpackage. Please use the `@dynatrace/strato-geo-testing` package now. (APPDEV-11839)
|
|
808
|
+
|
|
809
|
+
#### MapView
|
|
810
|
+
|
|
811
|
+
- Removed deprecated `categories` from `CategoricalLegendProps`. (APPDEV-11805)
|
|
812
|
+
|
|
813
|
+
### Dependency updates
|
|
814
|
+
|
|
815
|
+
- `@dynatrace/strato-components-preview` was updated to version `2.0.0`.
|
|
816
|
+
- Changed peerDependency version range for `@dynatrace-sdk/client-platform-management-service` from `^1.6.0` to `^1.7.0`. (APPDEV-10464)
|
|
817
|
+
- Changed peerDependency version range for `@dynatrace-sdk/client-classic-environment-v2` from `^3.6.1` to `^3.7.3`. (APPDEV-10464)
|
|
818
|
+
|
|
819
|
+
## 1.11.6
|
|
820
|
+
|
|
821
|
+
:::note Dependency updates
|
|
822
|
+
|
|
823
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.11.6`.
|
|
824
|
+
|
|
825
|
+
:::
|
|
826
|
+
|
|
827
|
+
## 1.11.5
|
|
828
|
+
|
|
829
|
+
:::note Dependency updates
|
|
830
|
+
|
|
831
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.11.5`.
|
|
832
|
+
|
|
833
|
+
:::
|
|
834
|
+
|
|
835
|
+
## 1.11.4
|
|
836
|
+
|
|
837
|
+
:::note Dependency updates
|
|
838
|
+
|
|
839
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.11.4`.
|
|
840
|
+
|
|
841
|
+
:::
|
|
842
|
+
|
|
843
|
+
## 1.11.3
|
|
844
|
+
|
|
845
|
+
:::note Dependency updates
|
|
846
|
+
|
|
847
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.11.3`.
|
|
848
|
+
|
|
849
|
+
:::
|
|
850
|
+
|
|
851
|
+
## 1.11.2
|
|
852
|
+
|
|
853
|
+
:::note Dependency updates
|
|
854
|
+
|
|
855
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.11.2`.
|
|
856
|
+
|
|
857
|
+
:::
|
|
858
|
+
|
|
859
|
+
## 1.11.1
|
|
860
|
+
|
|
861
|
+
:::note Dependency updates
|
|
862
|
+
|
|
863
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.11.1`.
|
|
864
|
+
|
|
865
|
+
:::
|
|
866
|
+
|
|
867
|
+
## 1.11.0
|
|
868
|
+
|
|
869
|
+
:::note Dependency updates
|
|
870
|
+
|
|
871
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.1.0`.
|
|
872
|
+
- `@dynatrace/strato-icons` was updated to version `1.6.0`.
|
|
873
|
+
- `@dynatrace/strato-components` was updated to version `1.8.0`.
|
|
874
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.11.0`.
|
|
875
|
+
|
|
876
|
+
:::
|
|
877
|
+
|
|
878
|
+
### MapView
|
|
879
|
+
|
|
880
|
+
- Fixed countries with special characters and removed unnecessary region from getAllCountries method. (APPDEV-13755)
|
|
881
|
+
|
|
882
|
+
## 1.10.1
|
|
883
|
+
|
|
884
|
+
:::note Dependency updates
|
|
885
|
+
|
|
886
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.10.1`.
|
|
887
|
+
|
|
888
|
+
:::
|
|
889
|
+
|
|
890
|
+
## 1.10.0
|
|
891
|
+
|
|
892
|
+
:::note Dependency updates
|
|
893
|
+
|
|
894
|
+
- `@dynatrace/strato-components` was updated to version `1.7.3`.
|
|
895
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.10.0`.
|
|
896
|
+
|
|
897
|
+
:::
|
|
898
|
+
|
|
899
|
+
## 1.9.2
|
|
900
|
+
|
|
901
|
+
:::note Dependency updates
|
|
902
|
+
|
|
903
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.9.2`.
|
|
904
|
+
|
|
905
|
+
:::
|
|
906
|
+
|
|
907
|
+
## 1.9.1
|
|
908
|
+
|
|
909
|
+
:::note Dependency updates
|
|
910
|
+
|
|
911
|
+
- `@dynatrace/strato-components` was updated to version `1.7.2`.
|
|
912
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.9.1`.
|
|
913
|
+
|
|
914
|
+
:::
|
|
915
|
+
|
|
916
|
+
## 1.9.0
|
|
917
|
+
|
|
918
|
+
:::note Dependency updates
|
|
919
|
+
|
|
920
|
+
- `@dynatrace/strato-icons` was updated to version `1.5.1`.
|
|
921
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.9.0`.
|
|
922
|
+
- `@dynatrace/strato-components` was updated to version `1.7.1`.
|
|
923
|
+
|
|
924
|
+
:::
|
|
925
|
+
|
|
926
|
+
### MapView
|
|
927
|
+
|
|
928
|
+
- Updating worldmap geoJSON to one that include rivers. (APPDEV-13412)
|
|
929
|
+
- Exposing a method for getting all the available countries given the user's configuration. (APPDEV-13430)
|
|
930
|
+
|
|
931
|
+
## 1.8.0
|
|
932
|
+
|
|
933
|
+
:::note Dependency updates
|
|
934
|
+
|
|
935
|
+
- `@dynatrace/strato-components` was updated to version `1.7.0`.
|
|
936
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.8.0`.
|
|
937
|
+
|
|
938
|
+
:::
|
|
939
|
+
|
|
940
|
+
### MapView
|
|
941
|
+
|
|
942
|
+
- Provide workaround for `ThresholdLegend` range coloring error (APPDEV-13228)
|
|
943
|
+
|
|
944
|
+
### TextEllipsis
|
|
945
|
+
|
|
946
|
+
- `TruncationMode` is now available as a public type. (APPDEV-12065)
|
|
947
|
+
|
|
948
|
+
## 1.7.2
|
|
949
|
+
|
|
950
|
+
:::note Dependency updates
|
|
951
|
+
|
|
952
|
+
- `@dynatrace/strato-components` was updated to version `1.6.2`.
|
|
953
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.7.2`.
|
|
954
|
+
|
|
955
|
+
:::
|
|
956
|
+
|
|
957
|
+
## 1.7.1
|
|
958
|
+
|
|
959
|
+
:::note Dependency updates
|
|
960
|
+
|
|
961
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.7.1`.
|
|
962
|
+
|
|
963
|
+
:::
|
|
964
|
+
|
|
965
|
+
## 1.7.0
|
|
966
|
+
|
|
967
|
+
:::note Dependency updates
|
|
968
|
+
|
|
969
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.7.0`.
|
|
970
|
+
- `@dynatrace/strato-components` was updated to version `1.6.1`.
|
|
971
|
+
|
|
972
|
+
:::
|
|
973
|
+
|
|
974
|
+
### BubbleLayer
|
|
975
|
+
|
|
976
|
+
- Tooltip within the `BubbleLayer` shows the smallest bubble in a group instead of the first that appears in the data. (APPDEV-13072)
|
|
977
|
+
|
|
978
|
+
## 1.6.1
|
|
979
|
+
|
|
980
|
+
:::note Dependency updates
|
|
981
|
+
|
|
982
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.6.1`.
|
|
983
|
+
|
|
984
|
+
:::
|
|
985
|
+
|
|
986
|
+
## 1.6.0
|
|
987
|
+
|
|
988
|
+
:::note Dependency updates
|
|
989
|
+
|
|
990
|
+
- `@dynatrace/strato-icons` was updated to version `1.5.0`.
|
|
991
|
+
- `@dynatrace/strato-components` was updated to version `1.6.0`.
|
|
992
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.6.0`.
|
|
993
|
+
|
|
994
|
+
:::
|
|
995
|
+
|
|
996
|
+
### MapView
|
|
997
|
+
|
|
998
|
+
- `MapView` now has a aria-label attribute value. (APPDEV-12893)
|
|
999
|
+
|
|
1000
|
+
## 1.5.0
|
|
1001
|
+
|
|
1002
|
+
:::note Dependency updates
|
|
1003
|
+
|
|
1004
|
+
- Changed peerDependency version range for `react-intl` from `^6.0.8` to `^6.0.8 || ^7.0.0`.
|
|
1005
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.0.1`.
|
|
1006
|
+
- `@dynatrace/strato-components` was updated to version `1.5.0`.
|
|
1007
|
+
- `@dynatrace/strato-icons` was updated to version `1.4.0`.
|
|
1008
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.5.0`.
|
|
1009
|
+
|
|
1010
|
+
:::
|
|
1011
|
+
|
|
1012
|
+
### DotLayer
|
|
1013
|
+
|
|
1014
|
+
- Fixed pin shape background in the DotLayer when bearing is set. (APPDEV-12720)
|
|
1015
|
+
|
|
1016
|
+
## 1.4.2
|
|
1017
|
+
|
|
1018
|
+
:::note Dependency updates
|
|
1019
|
+
|
|
1020
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.4.2`.
|
|
1021
|
+
|
|
1022
|
+
:::
|
|
1023
|
+
|
|
1024
|
+
## 1.4.1
|
|
1025
|
+
|
|
1026
|
+
:::note Dependency updates
|
|
1027
|
+
|
|
1028
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.4.1`.
|
|
1029
|
+
|
|
1030
|
+
:::
|
|
1031
|
+
|
|
1032
|
+
## 1.4.0
|
|
1033
|
+
|
|
1034
|
+
:::note Dependency updates
|
|
1035
|
+
|
|
1036
|
+
- `@dynatrace/strato-icons` was updated to version `1.3.0`.
|
|
1037
|
+
- `@dynatrace/strato-components` was updated to version `1.4.0`.
|
|
1038
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.4.0`.
|
|
1039
|
+
|
|
1040
|
+
:::
|
|
1041
|
+
|
|
1042
|
+
### MapView
|
|
1043
|
+
|
|
1044
|
+
- Added disabled state to toolbar buttons. (APPDEV-11680)
|
|
1045
|
+
- Fixing unexpected console errors by adding a condition for undefined values in map layers. (APPDEV-12689)
|
|
1046
|
+
|
|
1047
|
+
## 1.3.4
|
|
1048
|
+
|
|
1049
|
+
:::note Dependency updates
|
|
1050
|
+
|
|
1051
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.3.4`.
|
|
1052
|
+
|
|
1053
|
+
:::
|
|
1054
|
+
|
|
1055
|
+
## 1.3.3
|
|
1056
|
+
|
|
1057
|
+
:::note Dependency updates
|
|
1058
|
+
|
|
1059
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.3.3`.
|
|
1060
|
+
|
|
1061
|
+
:::
|
|
1062
|
+
|
|
1063
|
+
## 1.3.2
|
|
1064
|
+
|
|
1065
|
+
:::note Dependency updates
|
|
1066
|
+
|
|
1067
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.3.2`.
|
|
1068
|
+
|
|
1069
|
+
:::
|
|
1070
|
+
|
|
1071
|
+
## 1.3.1
|
|
1072
|
+
|
|
1073
|
+
:::note Dependency updates
|
|
1074
|
+
|
|
1075
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.3.1`.
|
|
1076
|
+
|
|
1077
|
+
:::
|
|
1078
|
+
|
|
1079
|
+
## 1.3.0
|
|
1080
|
+
|
|
1081
|
+
:::note Dependency updates
|
|
1082
|
+
|
|
1083
|
+
- `@dynatrace/strato-icons` was updated to version `1.2.0`.
|
|
1084
|
+
- `@dynatrace/strato-components` was updated to version `1.3.0`.
|
|
1085
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.3.0`.
|
|
1086
|
+
|
|
1087
|
+
:::
|
|
1088
|
+
|
|
1089
|
+
## 1.2.1
|
|
1090
|
+
|
|
1091
|
+
:::note Dependency updates
|
|
1092
|
+
|
|
1093
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.2.1`.
|
|
1094
|
+
|
|
1095
|
+
:::
|
|
1096
|
+
|
|
1097
|
+
## 1.2.0
|
|
1098
|
+
|
|
1099
|
+
:::note Dependency updates
|
|
1100
|
+
|
|
1101
|
+
- `@dynatrace/strato-components` was updated to version `1.2.0`.
|
|
1102
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.2.0`.
|
|
1103
|
+
|
|
1104
|
+
:::
|
|
1105
|
+
|
|
1106
|
+
### MapView
|
|
1107
|
+
|
|
1108
|
+
- Fix categorical legend display of values that don't match legend custom color palette. (APPDEV-12367)
|
|
1109
|
+
- Fixed tooltip showing an incorrect value for latitude and longitude in `ConnectionLayer`. (APPDEV-12383)
|
|
1110
|
+
|
|
1111
|
+
## 1.1.4
|
|
1112
|
+
|
|
1113
|
+
:::note Dependency updates
|
|
1114
|
+
|
|
1115
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.1.4`.
|
|
1116
|
+
|
|
1117
|
+
:::
|
|
1118
|
+
|
|
1119
|
+
## 1.1.3
|
|
1120
|
+
|
|
1121
|
+
:::note Dependency updates
|
|
1122
|
+
|
|
1123
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.1.3`.
|
|
1124
|
+
|
|
1125
|
+
:::
|
|
1126
|
+
|
|
1127
|
+
## 1.1.2
|
|
1128
|
+
|
|
1129
|
+
:::note Dependency updates
|
|
1130
|
+
|
|
1131
|
+
- Changed peerDependency version range for `@dynatrace-sdk/units` from `>= 0.18.11 < 1` to `^1.0.2`. This is a correction patch that fixes a bug introduced in version 1.0.0. (APPDEV-12365)
|
|
1132
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.1.2`.
|
|
1133
|
+
|
|
1134
|
+
:::
|
|
1135
|
+
|
|
1136
|
+
## 1.1.1
|
|
1137
|
+
|
|
1138
|
+
:::note Dependency updates
|
|
1139
|
+
|
|
1140
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.1.1`.
|
|
1141
|
+
|
|
1142
|
+
:::
|
|
1143
|
+
|
|
1144
|
+
## 1.1.0
|
|
1145
|
+
|
|
1146
|
+
:::note Dependency updates
|
|
1147
|
+
|
|
1148
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.1.0`.
|
|
1149
|
+
- `@dynatrace/strato-components` was updated to version `1.1.0`.
|
|
1150
|
+
- `@dynatrace/strato-icons` was updated to version `1.1.0`.
|
|
1151
|
+
|
|
1152
|
+
:::
|
|
1153
|
+
|
|
1154
|
+
### General
|
|
1155
|
+
|
|
1156
|
+
- No longer crashes a Map when images are loaded during component unmount.
|
|
1157
|
+
|
|
1158
|
+
### MapView
|
|
1159
|
+
|
|
1160
|
+
- Worldmap: Skip entries with `undefined` or `null` values. (APPDEV-11886)
|
|
1161
|
+
- The `SequentialLegend` now uses data `min` and `max` values as default. (APPDEV-11445)
|
|
1162
|
+
- Updating geoJSON files version which now takes into account more regions from some countries (e.g.: France, Italy, South Africa, etc). (APPDEV-12125)
|
|
1163
|
+
- Added CategoricalLegend coloring to ConnectionLayer. (APPDEV-12037)
|
|
1164
|
+
|
|
1165
|
+
## 1.0.3
|
|
1166
|
+
|
|
1167
|
+
:::note Dependency updates
|
|
1168
|
+
|
|
1169
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.0.3`.
|
|
1170
|
+
|
|
1171
|
+
:::
|
|
1172
|
+
|
|
1173
|
+
## 1.0.2
|
|
1174
|
+
|
|
1175
|
+
:::note Dependency updates
|
|
1176
|
+
|
|
1177
|
+
- Changed peerDependency version range for `@dynatrace-sdk/units` from `>= 0.18.11 < 1` to `^1.0.2`. This is a correction patch that fixes a mistake introduced in version 1.0.0. (APPDEV-12365)
|
|
1178
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.0.2`.
|
|
1179
|
+
|
|
1180
|
+
:::
|
|
1181
|
+
|
|
1182
|
+
## 1.0.1
|
|
1183
|
+
|
|
1184
|
+
:::note Dependency updates
|
|
1185
|
+
|
|
1186
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.0.1`.
|
|
1187
|
+
|
|
1188
|
+
:::
|
|
1189
|
+
|
|
1190
|
+
## 1.0.0
|
|
1191
|
+
|
|
1192
|
+
:::note Dependency updates
|
|
1193
|
+
|
|
1194
|
+
- `@dynatrace/strato-components` was updated to version `1.0.0`.
|
|
1195
|
+
- `@dynatrace/strato-design-tokens` was updated to version `1.0.0`.
|
|
1196
|
+
- `@dynatrace/strato-icons` was updated to version `1.0.0`.
|
|
1197
|
+
- `@dynatrace/strato-components-preview` was updated to version `1.0.0`.
|
|
1198
|
+
- Changed peerDependency version range for `@dynatrace-sdk/client-classic-environment-v2` from `^3.5.0` to `^3.6.1`. (APPDEV-11243)
|
|
1199
|
+
- Changed peerDependency version range for `@dynatrace-sdk/client-platform-management-service` from `^1.0.0` to `^1.6.0`. (APPDEV-11243)
|
|
1200
|
+
|
|
1201
|
+
## 0.11.73
|
|
1202
|
+
|
|
1203
|
+
:::note Dependency updates
|
|
1204
|
+
|
|
1205
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.73`.
|
|
1206
|
+
|
|
1207
|
+
:::
|
|
1208
|
+
|
|
1209
|
+
## 0.11.72
|
|
1210
|
+
|
|
1211
|
+
:::note Dependency updates
|
|
1212
|
+
|
|
1213
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.72`.
|
|
1214
|
+
|
|
1215
|
+
:::
|
|
1216
|
+
|
|
1217
|
+
## 0.11.71
|
|
1218
|
+
|
|
1219
|
+
:::note Dependency updates
|
|
1220
|
+
|
|
1221
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.71`.
|
|
1222
|
+
|
|
1223
|
+
:::
|
|
1224
|
+
|
|
1225
|
+
## 0.11.70
|
|
1226
|
+
|
|
1227
|
+
:::note Dependency updates
|
|
1228
|
+
|
|
1229
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.70`.
|
|
1230
|
+
|
|
1231
|
+
## 0.11.67
|
|
1232
|
+
|
|
1233
|
+
:::note Dependency updates
|
|
1234
|
+
|
|
1235
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.67`.
|
|
1236
|
+
|
|
1237
|
+
:::
|
|
1238
|
+
|
|
1239
|
+
## 0.11.66
|
|
1240
|
+
|
|
1241
|
+
:::note Dependency updates
|
|
1242
|
+
|
|
1243
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.66`.
|
|
1244
|
+
|
|
1245
|
+
:::
|
|
1246
|
+
|
|
1247
|
+
## 0.11.65
|
|
1248
|
+
|
|
1249
|
+
:::note Dependency updates
|
|
1250
|
+
|
|
1251
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.65`.
|
|
1252
|
+
|
|
1253
|
+
:::
|
|
1254
|
+
|
|
1255
|
+
### MapView
|
|
1256
|
+
|
|
1257
|
+
- The `MapView` now supports value `Formatters`. (APPDEV-11557)
|
|
1258
|
+
- `MapView` is now able to pick the `TruncationMode` applied to legend and tooltip. (APPDEV-11831)
|
|
1259
|
+
- Create categorical legend colors irrespective of casing. (APPDEV-11443)
|
|
1260
|
+
- Enable zoom to fit for selected countries and regions in `ChoroplethLayer`.(APPDEV-11490)
|
|
1261
|
+
|
|
1262
|
+
## 0.11.64
|
|
1263
|
+
|
|
1264
|
+
:::note Dependency updates
|
|
1265
|
+
|
|
1266
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.64`.
|
|
1267
|
+
|
|
1268
|
+
:::
|
|
1269
|
+
|
|
1270
|
+
## 0.11.63
|
|
1271
|
+
|
|
1272
|
+
:::note Dependency updates
|
|
1273
|
+
|
|
1274
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.63`.
|
|
1275
|
+
|
|
1276
|
+
:::
|
|
1277
|
+
|
|
1278
|
+
## 0.11.62
|
|
1279
|
+
|
|
1280
|
+
:::note Dependency updates
|
|
1281
|
+
|
|
1282
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.62`.
|
|
1283
|
+
|
|
1284
|
+
:::
|
|
1285
|
+
|
|
1286
|
+
## 0.11.61
|
|
1287
|
+
|
|
1288
|
+
:::note Dependency updates
|
|
1289
|
+
|
|
1290
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.61`.
|
|
1291
|
+
|
|
1292
|
+
:::
|
|
1293
|
+
|
|
1294
|
+
## 0.11.60
|
|
1295
|
+
|
|
1296
|
+
:::note Dependency updates
|
|
1297
|
+
|
|
1298
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.60`.
|
|
1299
|
+
|
|
1300
|
+
:::
|
|
1301
|
+
|
|
1302
|
+
:::note Deprecations
|
|
1303
|
+
|
|
1304
|
+
**General**
|
|
1305
|
+
|
|
1306
|
+
- Testing subpackage exports are now marked as deprecated. Please use `@dynatrace/strato-geo-testing` instead. (APPDEV-11344)
|
|
1307
|
+
|
|
1308
|
+
:::
|
|
1309
|
+
|
|
1310
|
+
### MapView
|
|
1311
|
+
|
|
1312
|
+
- Get category array for Categorical Coloring from layer `valueAccessor`. (APPDEV-11674)
|
|
1313
|
+
- Changed fallback color for `SequentialLegend`. (APPDEV-11419)
|
|
1314
|
+
- Enabling color palettes for every categorical value in the Map. (APPDEV-8343)
|
|
1315
|
+
- Supporting multiple emojis with multiple characters in the `DotLayer`. (APPDEV-11552)
|
|
1316
|
+
- Add categorical coloring using key-value `colorPalette` object. (APPDEV-11551)
|
|
1317
|
+
|
|
1318
|
+
## 0.11.53
|
|
1319
|
+
|
|
1320
|
+
:::note Dependency updates
|
|
1321
|
+
|
|
1322
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.53`.
|
|
1323
|
+
|
|
1324
|
+
:::
|
|
1325
|
+
|
|
1326
|
+
## 0.11.52
|
|
1327
|
+
|
|
1328
|
+
:::note Dependency updates
|
|
1329
|
+
|
|
1330
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.52`.
|
|
1331
|
+
|
|
1332
|
+
:::
|
|
1333
|
+
|
|
1334
|
+
## 0.11.51
|
|
1335
|
+
|
|
1336
|
+
:::note Dependency updates
|
|
1337
|
+
|
|
1338
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.51`.
|
|
1339
|
+
|
|
1340
|
+
:::
|
|
1341
|
+
|
|
1342
|
+
## 0.11.50
|
|
1343
|
+
|
|
1344
|
+
:::note Dependency updates
|
|
1345
|
+
|
|
1346
|
+
- `@dynatrace/strato-icons` was updated to version `0.39.4`.
|
|
1347
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.50`.
|
|
1348
|
+
|
|
1349
|
+
:::
|
|
1350
|
+
|
|
1351
|
+
### DotLayer
|
|
1352
|
+
|
|
1353
|
+
- Set minimal value for `DotLayer` `shapeSize`. (APPDEV-11336)
|
|
1354
|
+
|
|
1355
|
+
## 0.11.41
|
|
1356
|
+
|
|
1357
|
+
:::note Dependency updates
|
|
1358
|
+
|
|
1359
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.41`.
|
|
1360
|
+
|
|
1361
|
+
:::
|
|
1362
|
+
|
|
1363
|
+
## 0.11.40
|
|
1364
|
+
|
|
1365
|
+
:::note Dependency updates
|
|
1366
|
+
|
|
1367
|
+
- Added `@dynatrace/strato-design-tokens` as a peer dependency with version range `~0.20.0`.
|
|
1368
|
+
- Added `@dynatrace/strato-icons` as a peer dependency with version range `~0.39.0`.
|
|
1369
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.40`.
|
|
1370
|
+
|
|
1371
|
+
:::
|
|
1372
|
+
|
|
1373
|
+
### General
|
|
1374
|
+
|
|
1375
|
+
- Moved `@dynatrace/strato-design-tokens` and `@dynatrace/strato-icons` to peerDependencies and relaxed the version range. (APPDEV-9911)
|
|
1376
|
+
- Classnames for components now contain a version number to avoid conflicts if apps happen to have more than one version of the design system running.
|
|
1377
|
+
|
|
1378
|
+
### MapView
|
|
1379
|
+
|
|
1380
|
+
- Fixed map not loading when outside of Dynatrace Environment. (APPDEV-11301)
|
|
1381
|
+
- Fixed cache issue which prevented the Map from loading in some circumstances. (APPDEV-11301)
|
|
1382
|
+
|
|
1383
|
+
## 0.11.31
|
|
1384
|
+
|
|
1385
|
+
### MapView
|
|
1386
|
+
|
|
1387
|
+
- Fixed map not loading when outside of Dynatrace Environment.
|
|
1388
|
+
|
|
1389
|
+
## 0.11.30
|
|
1390
|
+
|
|
1391
|
+
:::note Dependency updates
|
|
1392
|
+
|
|
1393
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.30`.
|
|
1394
|
+
|
|
1395
|
+
:::
|
|
1396
|
+
|
|
1397
|
+
## 0.11.21
|
|
1398
|
+
|
|
1399
|
+
### MapView
|
|
1400
|
+
|
|
1401
|
+
- Fixed map not loading when outside of Dynatrace Environment.
|
|
1402
|
+
|
|
1403
|
+
## 0.11.20
|
|
1404
|
+
|
|
1405
|
+
:::note Dependency updates
|
|
1406
|
+
|
|
1407
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.20`.
|
|
1408
|
+
|
|
1409
|
+
:::
|
|
1410
|
+
|
|
1411
|
+
### MapView
|
|
1412
|
+
|
|
1413
|
+
- Introduce a cache solution to avoid repeating requests.
|
|
1414
|
+
|
|
1415
|
+
## 0.11.12
|
|
1416
|
+
|
|
1417
|
+
:::note Dependency updates
|
|
1418
|
+
|
|
1419
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.12`.
|
|
1420
|
+
|
|
1421
|
+
:::
|
|
1422
|
+
|
|
1423
|
+
## 0.11.11
|
|
1424
|
+
|
|
1425
|
+
:::note Dependency updates
|
|
1426
|
+
|
|
1427
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.11`.
|
|
1428
|
+
|
|
1429
|
+
:::
|
|
1430
|
+
|
|
1431
|
+
## 0.11.10
|
|
1432
|
+
|
|
1433
|
+
:::note Dependency updates
|
|
1434
|
+
|
|
1435
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.117.10`.
|
|
1436
|
+
|
|
1437
|
+
:::
|
|
1438
|
+
|
|
1439
|
+
## 0.11.3
|
|
1440
|
+
|
|
1441
|
+
:::note Dependency updates
|
|
1442
|
+
|
|
1443
|
+
- `@dynatrace/strato-components-preview` was updated to `0.117.3`.
|
|
1444
|
+
|
|
1445
|
+
:::
|
|
1446
|
+
|
|
1447
|
+
## 0.11.2
|
|
1448
|
+
|
|
1449
|
+
:::note Dependency updates
|
|
1450
|
+
|
|
1451
|
+
- `@dynatrace/strato-components-preview` was updated to `0.117.2`.
|
|
1452
|
+
|
|
1453
|
+
:::
|
|
1454
|
+
|
|
1455
|
+
## 0.11.1
|
|
1456
|
+
|
|
1457
|
+
:::note Dependency updates
|
|
1458
|
+
|
|
1459
|
+
- `@dynatrace/strato-components-preview` was updated to `0.117.1`.
|
|
1460
|
+
|
|
1461
|
+
:::
|
|
1462
|
+
|
|
1463
|
+
## 0.11.0
|
|
1464
|
+
|
|
1465
|
+
:::note Dependency updates
|
|
1466
|
+
|
|
1467
|
+
- `@dynatrace/strato-components-preview` was updated to `0.117.0`.
|
|
1468
|
+
- `@dynatrace/strato-icons` was updated to `0.39.3`.
|
|
1469
|
+
- `@dynatrace-sdk/client-classic-environment-v2` peer dependency range was updated to `^3.0.0`.
|
|
1470
|
+
- `@dynatrace-sdk/client-platform-management-service` peer dependency range was updated to `^1.0.0`.
|
|
1471
|
+
|
|
1472
|
+
:::
|
|
1473
|
+
|
|
1474
|
+
### MapView
|
|
1475
|
+
|
|
1476
|
+
- Now avoids repeated range legend ticks.
|
|
1477
|
+
- Now supports `zoomIn` and `zoomOut` via code.
|
|
1478
|
+
- Now supports `zoomToFit` and `reset` via code.
|
|
1479
|
+
- Now updates map regions on demand, to prevent clearing map on update.
|
|
1480
|
+
|
|
1481
|
+
## 0.10.73
|
|
1482
|
+
|
|
1483
|
+
:::note Dependency updates
|
|
1484
|
+
|
|
1485
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.73`.
|
|
1486
|
+
|
|
1487
|
+
:::
|
|
1488
|
+
|
|
1489
|
+
## 0.10.72
|
|
1490
|
+
|
|
1491
|
+
:::note Dependency updates
|
|
1492
|
+
|
|
1493
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.72`.
|
|
1494
|
+
|
|
1495
|
+
:::
|
|
1496
|
+
|
|
1497
|
+
## 0.10.71
|
|
1498
|
+
|
|
1499
|
+
:::note Dependency updates
|
|
1500
|
+
|
|
1501
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.71`.
|
|
1502
|
+
|
|
1503
|
+
:::
|
|
1504
|
+
|
|
1505
|
+
## 0.10.70
|
|
1506
|
+
|
|
1507
|
+
:::note Dependency updates
|
|
1508
|
+
|
|
1509
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.70`.
|
|
1510
|
+
|
|
1511
|
+
:::
|
|
1512
|
+
|
|
1513
|
+
## 0.10.60
|
|
1514
|
+
|
|
1515
|
+
:::note Dependency updates
|
|
1516
|
+
|
|
1517
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.60`.
|
|
1518
|
+
|
|
1519
|
+
:::
|
|
1520
|
+
|
|
1521
|
+
### MapView
|
|
1522
|
+
|
|
1523
|
+
- Rotating the map on touch devices is now disabled.
|
|
1524
|
+
|
|
1525
|
+
## 0.10.53
|
|
1526
|
+
|
|
1527
|
+
:::note Dependency updates
|
|
1528
|
+
|
|
1529
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.53`.
|
|
1530
|
+
|
|
1531
|
+
:::
|
|
1532
|
+
|
|
1533
|
+
## 0.10.52
|
|
1534
|
+
|
|
1535
|
+
:::note Dependency updates
|
|
1536
|
+
|
|
1537
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.52`.
|
|
1538
|
+
|
|
1539
|
+
:::
|
|
1540
|
+
|
|
1541
|
+
## 0.10.51
|
|
1542
|
+
|
|
1543
|
+
:::note Dependency updates
|
|
1544
|
+
|
|
1545
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.51`.
|
|
1546
|
+
|
|
1547
|
+
:::
|
|
1548
|
+
|
|
1549
|
+
## 0.10.50
|
|
1550
|
+
|
|
1551
|
+
:::note Dependency updates
|
|
1552
|
+
|
|
1553
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.50`.
|
|
1554
|
+
|
|
1555
|
+
:::
|
|
1556
|
+
|
|
1557
|
+
### General
|
|
1558
|
+
|
|
1559
|
+
- The series unmatching colors are now consistent in all charts.
|
|
1560
|
+
|
|
1561
|
+
## 0.10.43
|
|
1562
|
+
|
|
1563
|
+
:::note Dependency updates
|
|
1564
|
+
|
|
1565
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.43`.
|
|
1566
|
+
|
|
1567
|
+
:::
|
|
1568
|
+
|
|
1569
|
+
## 0.10.42
|
|
1570
|
+
|
|
1571
|
+
:::note Dependency updates
|
|
1572
|
+
|
|
1573
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.42`.
|
|
1574
|
+
|
|
1575
|
+
:::
|
|
1576
|
+
|
|
1577
|
+
## 0.10.41
|
|
1578
|
+
|
|
1579
|
+
:::note Dependency updates
|
|
1580
|
+
|
|
1581
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.41`.
|
|
1582
|
+
|
|
1583
|
+
:::
|
|
1584
|
+
|
|
1585
|
+
## 0.10.40
|
|
1586
|
+
|
|
1587
|
+
:::note Dependency updates
|
|
1588
|
+
|
|
1589
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.40`.
|
|
1590
|
+
- `@dynatrace/strato-icons` was updated to `0.39.2`.
|
|
1591
|
+
|
|
1592
|
+
:::
|
|
1593
|
+
|
|
1594
|
+
## 0.10.30
|
|
1595
|
+
|
|
1596
|
+
:::note Dependency updates
|
|
1597
|
+
|
|
1598
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.30`.
|
|
1599
|
+
|
|
1600
|
+
:::
|
|
1601
|
+
|
|
1602
|
+
## 0.10.24
|
|
1603
|
+
|
|
1604
|
+
:::note Dependency updates
|
|
1605
|
+
|
|
1606
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.24`.
|
|
1607
|
+
|
|
1608
|
+
:::
|
|
1609
|
+
|
|
1610
|
+
## 0.10.23
|
|
1611
|
+
|
|
1612
|
+
:::note Dependency updates
|
|
1613
|
+
|
|
1614
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.23`.
|
|
1615
|
+
|
|
1616
|
+
:::
|
|
1617
|
+
|
|
1618
|
+
- Documentation update
|
|
1619
|
+
|
|
1620
|
+
## 0.10.22
|
|
1621
|
+
|
|
1622
|
+
:::note Dependency updates
|
|
1623
|
+
|
|
1624
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.22`.
|
|
1625
|
+
|
|
1626
|
+
:::
|
|
1627
|
+
|
|
1628
|
+
### MapView
|
|
1629
|
+
|
|
1630
|
+
- Region name is correctly shown in Choropleth Layer tooltip.
|
|
1631
|
+
|
|
1632
|
+
## 0.10.21
|
|
1633
|
+
|
|
1634
|
+
:::note Dependency updates
|
|
1635
|
+
|
|
1636
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.21`.
|
|
1637
|
+
- `@dynatrace-sdk/client-platform-management-service` peer dependency range was expanded to `>= 0.0.6 < 1`
|
|
1638
|
+
|
|
1639
|
+
:::
|
|
1640
|
+
|
|
1641
|
+
## 0.10.20
|
|
1642
|
+
|
|
1643
|
+
:::note Dependency updates
|
|
1644
|
+
|
|
1645
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.20`.
|
|
1646
|
+
|
|
1647
|
+
:::
|
|
1648
|
+
|
|
1649
|
+
## 0.10.14
|
|
1650
|
+
|
|
1651
|
+
:::note Dependency updates
|
|
1652
|
+
|
|
1653
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.14`.
|
|
1654
|
+
|
|
1655
|
+
:::
|
|
1656
|
+
|
|
1657
|
+
## 0.10.13
|
|
1658
|
+
|
|
1659
|
+
:::note Dependency updates
|
|
1660
|
+
|
|
1661
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.13`.
|
|
1662
|
+
|
|
1663
|
+
:::
|
|
1664
|
+
|
|
1665
|
+
## 0.10.12
|
|
1666
|
+
|
|
1667
|
+
:::note Dependency updates
|
|
1668
|
+
|
|
1669
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.12`.
|
|
1670
|
+
|
|
1671
|
+
:::
|
|
1672
|
+
|
|
1673
|
+
## 0.10.11
|
|
1674
|
+
|
|
1675
|
+
:::note Dependency updates
|
|
1676
|
+
|
|
1677
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.11`.
|
|
1678
|
+
|
|
1679
|
+
:::
|
|
1680
|
+
|
|
1681
|
+
## 0.10.10
|
|
1682
|
+
|
|
1683
|
+
:::note Dependency updates
|
|
1684
|
+
|
|
1685
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.10`.
|
|
1686
|
+
- `@dynatrace/strato-icons` was updated to `0.39.1`.
|
|
1687
|
+
- `@dynatrace/strato-design-tokens` was updated to `0.20.40`.
|
|
1688
|
+
|
|
1689
|
+
:::
|
|
1690
|
+
|
|
1691
|
+
### MapView
|
|
1692
|
+
|
|
1693
|
+
- When the map is unable to load data, the message shown is clearer now.
|
|
1694
|
+
|
|
1695
|
+
## 0.10.3
|
|
1696
|
+
|
|
1697
|
+
:::note Dependency updates
|
|
1698
|
+
|
|
1699
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.3`.
|
|
1700
|
+
|
|
1701
|
+
:::
|
|
1702
|
+
|
|
1703
|
+
## 0.10.2
|
|
1704
|
+
|
|
1705
|
+
:::note Dependency updates
|
|
1706
|
+
|
|
1707
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.2`.
|
|
1708
|
+
|
|
1709
|
+
:::
|
|
1710
|
+
|
|
1711
|
+
## 0.10.1
|
|
1712
|
+
|
|
1713
|
+
:::note Dependency updates
|
|
1714
|
+
|
|
1715
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.1`.
|
|
1716
|
+
|
|
1717
|
+
:::
|
|
1718
|
+
|
|
1719
|
+
## 0.10.0
|
|
1720
|
+
|
|
1721
|
+
:::note Dependency updates
|
|
1722
|
+
|
|
1723
|
+
- `@dynatrace/strato-components-preview` was updated to `0.116.0`.
|
|
1724
|
+
- `@dynatrace/strato-icons` was updated to `0.39.0`.
|
|
1725
|
+
|
|
1726
|
+
:::
|
|
1727
|
+
|
|
1728
|
+
### DotLayer
|
|
1729
|
+
|
|
1730
|
+
- Added support for background color customization using a callback function.
|
|
1731
|
+
|
|
1732
|
+
### MapView
|
|
1733
|
+
|
|
1734
|
+
- Introduce Base Layer subcomponent.
|
|
1735
|
+
|
|
1736
|
+
## 0.9.27
|
|
1737
|
+
|
|
1738
|
+
### Patch Changes
|
|
1739
|
+
|
|
1740
|
+
:::note Dependency updates
|
|
1741
|
+
|
|
1742
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.27`.
|
|
1743
|
+
|
|
1744
|
+
:::
|
|
1745
|
+
|
|
1746
|
+
## 0.9.26
|
|
1747
|
+
|
|
1748
|
+
:::note Dependency updates
|
|
1749
|
+
|
|
1750
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.26`.
|
|
1751
|
+
|
|
1752
|
+
:::
|
|
1753
|
+
|
|
1754
|
+
## 0.9.25
|
|
1755
|
+
|
|
1756
|
+
:::note Dependency updates
|
|
1757
|
+
|
|
1758
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.25`.
|
|
1759
|
+
|
|
1760
|
+
:::
|
|
1761
|
+
|
|
1762
|
+
## 0.9.24
|
|
1763
|
+
|
|
1764
|
+
:::note Dependency updates
|
|
1765
|
+
|
|
1766
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.24`.
|
|
1767
|
+
|
|
1768
|
+
:::
|
|
1769
|
+
|
|
1770
|
+
## 0.9.23
|
|
1771
|
+
|
|
1772
|
+
:::note Dependency updates
|
|
1773
|
+
|
|
1774
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.23`.
|
|
1775
|
+
|
|
1776
|
+
:::
|
|
1777
|
+
|
|
1778
|
+
## 0.9.22
|
|
1779
|
+
|
|
1780
|
+
:::note Dependency updates
|
|
1781
|
+
|
|
1782
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.22`.
|
|
1783
|
+
|
|
1784
|
+
:::
|
|
1785
|
+
|
|
1786
|
+
## 0.9.21
|
|
1787
|
+
|
|
1788
|
+
:::note Dependency updates
|
|
1789
|
+
|
|
1790
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.21`.
|
|
1791
|
+
|
|
1792
|
+
:::
|
|
1793
|
+
|
|
1794
|
+
## 0.9.20
|
|
1795
|
+
|
|
1796
|
+
:::note Dependency updates
|
|
1797
|
+
|
|
1798
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.20`.
|
|
1799
|
+
- `@dynatrace/strato-icons` was updated to `0.38.0`.
|
|
1800
|
+
|
|
1801
|
+
:::
|
|
1802
|
+
|
|
1803
|
+
## 0.9.17
|
|
1804
|
+
|
|
1805
|
+
:::note Dependency updates
|
|
1806
|
+
|
|
1807
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.17`.
|
|
1808
|
+
|
|
1809
|
+
:::
|
|
1810
|
+
|
|
1811
|
+
## 0.9.16
|
|
1812
|
+
|
|
1813
|
+
:::note Dependency updates
|
|
1814
|
+
|
|
1815
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.16`.
|
|
1816
|
+
|
|
1817
|
+
:::
|
|
1818
|
+
|
|
1819
|
+
## 0.9.15
|
|
1820
|
+
|
|
1821
|
+
:::note Dependency updates
|
|
1822
|
+
|
|
1823
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.15`.
|
|
1824
|
+
|
|
1825
|
+
:::
|
|
1826
|
+
|
|
1827
|
+
## 0.9.14
|
|
1828
|
+
|
|
1829
|
+
:::note Dependency updates
|
|
1830
|
+
|
|
1831
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.14`.
|
|
1832
|
+
|
|
1833
|
+
:::
|
|
1834
|
+
|
|
1835
|
+
## 0.9.13
|
|
1836
|
+
|
|
1837
|
+
:::note Dependency updates
|
|
1838
|
+
|
|
1839
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.13`.
|
|
1840
|
+
|
|
1841
|
+
:::
|
|
1842
|
+
|
|
1843
|
+
## 0.9.12
|
|
1844
|
+
|
|
1845
|
+
:::note Dependency updates
|
|
1846
|
+
|
|
1847
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.12`.
|
|
1848
|
+
|
|
1849
|
+
:::
|
|
1850
|
+
|
|
1851
|
+
## 0.9.11
|
|
1852
|
+
|
|
1853
|
+
:::note Dependency updates
|
|
1854
|
+
|
|
1855
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.11`.
|
|
1856
|
+
|
|
1857
|
+
:::
|
|
1858
|
+
|
|
1859
|
+
## 0.9.10
|
|
1860
|
+
|
|
1861
|
+
:::note Dependency updates
|
|
1862
|
+
|
|
1863
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.10`.
|
|
1864
|
+
- `@dynatrace/strato-design-tokens` was updated to `0.20.30`.
|
|
1865
|
+
|
|
1866
|
+
:::
|
|
1867
|
+
|
|
1868
|
+
### General
|
|
1869
|
+
|
|
1870
|
+
- Exposed shared legend props in the map legend.
|
|
1871
|
+
- Fixed dynamic layers creation.
|
|
1872
|
+
|
|
1873
|
+
### ConnectionLayer
|
|
1874
|
+
|
|
1875
|
+
- Changed the direction indicator size.
|
|
1876
|
+
|
|
1877
|
+
### MapView
|
|
1878
|
+
|
|
1879
|
+
- Default height of the `MapView` component changed to 400px.
|
|
1880
|
+
|
|
1881
|
+
## 0.9.2
|
|
1882
|
+
|
|
1883
|
+
:::note Dependency updates
|
|
1884
|
+
|
|
1885
|
+
- `@dynatrace/strato-components-preview` was updated to `0.115.1`.
|
|
1886
|
+
|
|
1887
|
+
:::
|
|
1888
|
+
|
|
1889
|
+
## 0.9.1
|
|
1890
|
+
|
|
1891
|
+
:::note Dependency updates
|
|
1892
|
+
|
|
1893
|
+
- Added `@dynatrace-sdk/client-platform-management-service` as peer dependency.
|
|
1894
|
+
|
|
1895
|
+
:::
|
|
1896
|
+
|
|
1897
|
+
## 0.9.0
|
|
1898
|
+
|
|
1899
|
+
:::note Dependency updates
|
|
1900
|
+
|
|
1901
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.115.0`.
|
|
1902
|
+
- `@dynatrace/strato-design-tokens` was updated to version `0.20.20`.
|
|
1903
|
+
|
|
1904
|
+
:::
|
|
1905
|
+
|
|
1906
|
+
### DotLayer
|
|
1907
|
+
|
|
1908
|
+
- Change default dot shape in DotLayer to pin shape.
|
|
1909
|
+
|
|
1910
|
+
## 0.8.15
|
|
1911
|
+
|
|
1912
|
+
:::note Dependency updates
|
|
1913
|
+
|
|
1914
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.114.14`.
|
|
1915
|
+
|
|
1916
|
+
:::
|
|
1917
|
+
|
|
1918
|
+
## 0.8.14
|
|
1919
|
+
|
|
1920
|
+
## 0.8.12
|
|
1921
|
+
|
|
1922
|
+
:::note Dependency updates
|
|
1923
|
+
|
|
1924
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.114.12`.
|
|
1925
|
+
|
|
1926
|
+
:::
|
|
1927
|
+
|
|
1928
|
+
## 0.8.11
|
|
1929
|
+
|
|
1930
|
+
:::note Dependency updates
|
|
1931
|
+
|
|
1932
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.114.11`.
|
|
1933
|
+
|
|
1934
|
+
:::
|
|
1935
|
+
|
|
1936
|
+
## 0.8.10
|
|
1937
|
+
|
|
1938
|
+
:::note Dependency updates
|
|
1939
|
+
|
|
1940
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.114.10`.
|
|
1941
|
+
|
|
1942
|
+
:::
|
|
1943
|
+
|
|
1944
|
+
## 0.8.3
|
|
1945
|
+
|
|
1946
|
+
:::note Dependency updates
|
|
1947
|
+
|
|
1948
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.114.3`.
|
|
1949
|
+
|
|
1950
|
+
:::
|
|
1951
|
+
|
|
1952
|
+
## 0.8.2
|
|
1953
|
+
|
|
1954
|
+
:::note Dependency updates
|
|
1955
|
+
|
|
1956
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.114.2`.
|
|
1957
|
+
|
|
1958
|
+
:::
|
|
1959
|
+
|
|
1960
|
+
## 0.8.1
|
|
1961
|
+
|
|
1962
|
+
:::note Dependency updates
|
|
1963
|
+
|
|
1964
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.114.1`.
|
|
1965
|
+
|
|
1966
|
+
:::
|
|
1967
|
+
|
|
1968
|
+
## 0.8.0
|
|
1969
|
+
|
|
1970
|
+
:::caution Breaking changes
|
|
1971
|
+
|
|
1972
|
+
- `@dynatrace/strato-geo` now requires react 18 in your application.
|
|
1973
|
+
|
|
1974
|
+
:::
|
|
1975
|
+
|
|
1976
|
+
:::note Dependency updates
|
|
1977
|
+
|
|
1978
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.114.0`.
|
|
1979
|
+
- `@dynatrace/strato-design-tokens` was updated to version `0.20.10`.
|
|
1980
|
+
- `@dynatrace/strato-icons` was updated to version `0.37.0`.
|
|
1981
|
+
|
|
1982
|
+
:::
|
|
1983
|
+
|
|
1984
|
+
## 0.7.11
|
|
1985
|
+
|
|
1986
|
+
:::note Dependency updates
|
|
1987
|
+
|
|
1988
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.113.11`.
|
|
1989
|
+
|
|
1990
|
+
:::
|
|
1991
|
+
|
|
1992
|
+
## 0.7.10
|
|
1993
|
+
|
|
1994
|
+
### MapView
|
|
1995
|
+
|
|
1996
|
+
- An issue whilst filtering with the categorical legend in the map was solved.
|
|
1997
|
+
|
|
1998
|
+
:::note Dependency updates
|
|
1999
|
+
|
|
2000
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.113.10`.
|
|
2001
|
+
- `@dynatrace/strato-design-tokens` was updated to version `0.20.9`.
|
|
2002
|
+
- `@dynatrace/strato-icons` was updated to version `0.36.2`.
|
|
2003
|
+
|
|
2004
|
+
:::
|
|
2005
|
+
|
|
2006
|
+
## 0.7.2
|
|
2007
|
+
|
|
2008
|
+
:::note Dependency updates
|
|
2009
|
+
|
|
2010
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.113.2`.
|
|
2011
|
+
|
|
2012
|
+
:::
|
|
2013
|
+
|
|
2014
|
+
## 0.7.1
|
|
2015
|
+
|
|
2016
|
+
:::note Dependency updates
|
|
2017
|
+
|
|
2018
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.113.1`.
|
|
2019
|
+
|
|
2020
|
+
:::
|
|
2021
|
+
|
|
2022
|
+
## 0.7.0
|
|
2023
|
+
|
|
2024
|
+
:::note Dependency updates
|
|
2025
|
+
|
|
2026
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.113.0`.
|
|
2027
|
+
|
|
2028
|
+
:::
|
|
2029
|
+
|
|
2030
|
+
### MapView
|
|
2031
|
+
|
|
2032
|
+
- Rework map layer tooltip types and provide a way of strongly typing.
|
|
2033
|
+
|
|
2034
|
+
## 0.6.32
|
|
2035
|
+
|
|
2036
|
+
:::note Dependency updates
|
|
2037
|
+
|
|
2038
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.112.22`.
|
|
2039
|
+
|
|
2040
|
+
:::
|
|
2041
|
+
|
|
2042
|
+
## 0.6.31
|
|
2043
|
+
|
|
2044
|
+
:::note Dependency updates
|
|
2045
|
+
|
|
2046
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.112.21`.
|
|
2047
|
+
|
|
2048
|
+
:::
|
|
2049
|
+
|
|
2050
|
+
## 0.6.30
|
|
2051
|
+
|
|
2052
|
+
:::note Dependency updates
|
|
2053
|
+
|
|
2054
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.112.11`.
|
|
2055
|
+
- `@dynatrace/strato-design-tokens` was updated to version `0.20.8`.
|
|
2056
|
+
- `@dynatrace/strato-icons` was updated to version `0.36.2`.
|
|
2057
|
+
|
|
2058
|
+
:::
|
|
2059
|
+
|
|
2060
|
+
### General
|
|
2061
|
+
|
|
2062
|
+
- Enabled toggle functionality for active state and tooltip pinning on multiple clicks of the same datapoint.
|
|
2063
|
+
- Color palette now has lighter color at the bottom when legend is aside in the Map [Charts-Honeycomb] Color palette now has lighter color at the bottom when legend is aside in the Honeycomb chart
|
|
2064
|
+
|
|
2065
|
+
### BubbleLayer
|
|
2066
|
+
|
|
2067
|
+
- Added autoscaling and stick to distance feature for BubbleLayer radius.
|
|
2068
|
+
|
|
2069
|
+
### ChoroplethLayer
|
|
2070
|
+
|
|
2071
|
+
- Improved choropleth borders on active state for consistent rendering.
|
|
2072
|
+
|
|
2073
|
+
## 0.6.20
|
|
2074
|
+
|
|
2075
|
+
:::note Dependency updates
|
|
2076
|
+
|
|
2077
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.112.11`.
|
|
2078
|
+
|
|
2079
|
+
:::
|
|
2080
|
+
|
|
2081
|
+
## 0.6.19
|
|
2082
|
+
|
|
2083
|
+
:::note Dependency updates
|
|
2084
|
+
|
|
2085
|
+
- `@dynatrace/strato-components-preview` was updated to version `0.112.10`.
|
|
2086
|
+
|
|
2087
|
+
:::
|