@gooddata/sdk-ui-dashboard 11.50.0-alpha.2 → 11.50.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.
Files changed (38) hide show
  1. package/esm/__version.d.ts +1 -1
  2. package/esm/__version.js +1 -1
  3. package/esm/_staging/dateFilterConfig/dateFilterConfigConverters.d.ts +1 -9
  4. package/esm/_staging/dateFilterConfig/dateFilterConfigConverters.d.ts.map +1 -1
  5. package/esm/_staging/dateFilterConfig/dateFilterConfigConverters.js +3 -88
  6. package/esm/_staging/dateFilterConfig/dateFilterOptionMapping.d.ts +1 -33
  7. package/esm/_staging/dateFilterConfig/dateFilterOptionMapping.d.ts.map +1 -1
  8. package/esm/_staging/dateFilterConfig/dateFilterOptionMapping.js +3 -260
  9. package/esm/_staging/dateFilterConfig/defaultConfig.d.ts +1 -11
  10. package/esm/_staging/dateFilterConfig/defaultConfig.d.ts.map +1 -1
  11. package/esm/_staging/dateFilterConfig/defaultConfig.js +3 -436
  12. package/esm/model/store/config/configSelectors.d.ts.map +1 -1
  13. package/esm/model/store/config/configSelectors.js +2 -9
  14. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.d.ts.map +1 -1
  15. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.js +9 -162
  16. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailEffectiveFilters.d.ts +7 -7
  17. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailEffectiveFilters.js +7 -7
  18. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailFilters.d.ts +35 -0
  19. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailFilters.d.ts.map +1 -0
  20. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailFilters.js +195 -0
  21. package/esm/presentation/automations/shared/dateFilterConfig/dateFilterConfigConverters.d.ts +1 -9
  22. package/esm/presentation/automations/shared/dateFilterConfig/dateFilterConfigConverters.d.ts.map +1 -1
  23. package/esm/presentation/automations/shared/dateFilterConfig/dateFilterConfigConverters.js +3 -88
  24. package/esm/presentation/automations/shared/dateFilterConfig/dateFilterOptionMapping.d.ts +1 -33
  25. package/esm/presentation/automations/shared/dateFilterConfig/dateFilterOptionMapping.d.ts.map +1 -1
  26. package/esm/presentation/automations/shared/dateFilterConfig/dateFilterOptionMapping.js +3 -260
  27. package/esm/presentation/automations/shared/dateFilterConfig/defaultConfig.d.ts +1 -11
  28. package/esm/presentation/automations/shared/dateFilterConfig/defaultConfig.d.ts.map +1 -1
  29. package/esm/presentation/automations/shared/dateFilterConfig/defaultConfig.js +3 -436
  30. package/esm/presentation/dashboardList/DashboardList.d.ts.map +1 -1
  31. package/esm/presentation/dashboardList/DashboardList.js +6 -0
  32. package/esm/presentation/widget/common/InsightDropdown.d.ts.map +1 -1
  33. package/esm/presentation/widget/common/InsightDropdown.js +14 -0
  34. package/esm/presentation/widget/common/configuration/ConfigurationBubble.d.ts.map +1 -1
  35. package/esm/presentation/widget/common/configuration/ConfigurationBubble.js +2 -0
  36. package/esm/presentation/widget/insightMenu/DefaultDashboardInsightMenu/DashboardInsightMenu/DashboardInsightMenuBubble.d.ts.map +1 -1
  37. package/esm/presentation/widget/insightMenu/DefaultDashboardInsightMenu/DashboardInsightMenu/DashboardInsightMenuBubble.js +1 -1
  38. package/package.json +21 -21
@@ -1,437 +1,4 @@
1
1
  // (C) 2021-2026 GoodData Corporation
2
- import { idRef } from "@gooddata/sdk-model";
3
- /**
4
- * Default date filter preset for standard calendar.
5
- */
6
- export const DEFAULT_DATE_FILTER_PRESET = "THIS_MONTH";
7
- /**
8
- * Default date filter preset for fiscal calendar.
9
- * Used when fiscal calendar is set as the default calendar type.
10
- */
11
- export const DEFAULT_FISCAL_DATE_FILTER_PRESET = "THIS_FISCAL_MONTH";
12
- export const defaultDateFilterConfig = {
13
- ref: idRef("defaultDateFilterProjectConfig"),
14
- selectedOption: DEFAULT_DATE_FILTER_PRESET,
15
- allTime: {
16
- localIdentifier: "ALL_TIME",
17
- type: "allTime",
18
- name: "",
19
- visible: true,
20
- },
21
- emptyValues: {
22
- localIdentifier: "EMPTY_VALUES",
23
- type: "emptyValues",
24
- name: "",
25
- visible: true,
26
- },
27
- absoluteForm: {
28
- localIdentifier: "ABSOLUTE_FORM",
29
- type: "absoluteForm",
30
- name: "",
31
- visible: true,
32
- },
33
- relativeForm: {
34
- type: "relativeForm",
35
- // month has to be the first as it should be the default selected option
36
- availableGranularities: [
37
- "GDC.time.month",
38
- "GDC.time.fiscal_month",
39
- "GDC.time.minute",
40
- "GDC.time.hour",
41
- "GDC.time.date",
42
- "GDC.time.week_us",
43
- "GDC.time.quarter",
44
- "GDC.time.fiscal_quarter",
45
- "GDC.time.year",
46
- "GDC.time.fiscal_year",
47
- ],
48
- localIdentifier: "RELATIVE_FORM",
49
- name: "",
50
- visible: true,
51
- },
52
- relativePresets: [
53
- {
54
- from: -14,
55
- to: 0,
56
- granularity: "GDC.time.minute",
57
- localIdentifier: "LAST_15_MINUTES",
58
- type: "relativePreset",
59
- visible: true,
60
- name: "",
61
- },
62
- {
63
- from: -29,
64
- to: 0,
65
- granularity: "GDC.time.minute",
66
- localIdentifier: "LAST_30_MINUTES",
67
- type: "relativePreset",
68
- visible: true,
69
- name: "",
70
- },
71
- {
72
- from: -44,
73
- to: 0,
74
- granularity: "GDC.time.minute",
75
- localIdentifier: "LAST_45_MINUTES",
76
- type: "relativePreset",
77
- visible: true,
78
- name: "",
79
- },
80
- {
81
- from: -59,
82
- to: 0,
83
- granularity: "GDC.time.minute",
84
- localIdentifier: "LAST_60_MINUTES",
85
- type: "relativePreset",
86
- visible: true,
87
- name: "",
88
- },
89
- {
90
- from: -1,
91
- to: -1,
92
- granularity: "GDC.time.hour",
93
- localIdentifier: "LAST_HOUR",
94
- type: "relativePreset",
95
- visible: true,
96
- name: "",
97
- },
98
- {
99
- from: -7,
100
- to: 0,
101
- granularity: "GDC.time.hour",
102
- localIdentifier: "LAST_8_HOURS",
103
- type: "relativePreset",
104
- visible: true,
105
- name: "",
106
- },
107
- {
108
- from: -11,
109
- to: 0,
110
- granularity: "GDC.time.hour",
111
- localIdentifier: "LAST_12_HOURS",
112
- type: "relativePreset",
113
- visible: true,
114
- name: "",
115
- },
116
- {
117
- from: -23,
118
- to: 0,
119
- granularity: "GDC.time.hour",
120
- localIdentifier: "LAST_24_HOURS",
121
- type: "relativePreset",
122
- visible: true,
123
- name: "",
124
- },
125
- {
126
- from: 0,
127
- to: 0,
128
- granularity: "GDC.time.week_us",
129
- localIdentifier: "THIS_WEEK",
130
- type: "relativePreset",
131
- visible: true,
132
- name: "",
133
- },
134
- {
135
- from: 0,
136
- to: 0,
137
- granularity: "GDC.time.week_us",
138
- localIdentifier: "THIS_WEEK_TO_DATE",
139
- type: "relativePreset",
140
- visible: true,
141
- name: "",
142
- boundedFilter: {
143
- granularity: "GDC.time.date",
144
- to: 0,
145
- },
146
- },
147
- {
148
- from: -1,
149
- to: -1,
150
- granularity: "GDC.time.week_us",
151
- localIdentifier: "LAST_WEEK",
152
- type: "relativePreset",
153
- visible: true,
154
- name: "",
155
- },
156
- {
157
- from: -1,
158
- to: 0,
159
- granularity: "GDC.time.week_us",
160
- localIdentifier: "LAST_2_WEEKS",
161
- type: "relativePreset",
162
- visible: true,
163
- name: "",
164
- },
165
- {
166
- from: 0,
167
- to: 0,
168
- granularity: "GDC.time.date",
169
- localIdentifier: "TODAY",
170
- type: "relativePreset",
171
- visible: true,
172
- name: "",
173
- },
174
- {
175
- from: -1,
176
- to: -1,
177
- granularity: "GDC.time.date",
178
- localIdentifier: "YESTERDAY",
179
- type: "relativePreset",
180
- visible: true,
181
- name: "",
182
- },
183
- {
184
- from: -6,
185
- to: 0,
186
- granularity: "GDC.time.date",
187
- localIdentifier: "LAST_7_DAYS",
188
- type: "relativePreset",
189
- visible: true,
190
- name: "",
191
- },
192
- {
193
- from: -29,
194
- to: 0,
195
- granularity: "GDC.time.date",
196
- localIdentifier: "LAST_30_DAYS",
197
- type: "relativePreset",
198
- visible: true,
199
- name: "",
200
- },
201
- {
202
- from: -89,
203
- to: 0,
204
- granularity: "GDC.time.date",
205
- localIdentifier: "LAST_90_DAYS",
206
- type: "relativePreset",
207
- visible: true,
208
- name: "",
209
- },
210
- {
211
- from: 0,
212
- to: 0,
213
- granularity: "GDC.time.month",
214
- localIdentifier: "THIS_MONTH_TO_DATE",
215
- type: "relativePreset",
216
- visible: true,
217
- name: "",
218
- boundedFilter: {
219
- granularity: "GDC.time.date",
220
- to: 0,
221
- },
222
- },
223
- {
224
- from: 0,
225
- to: 0,
226
- granularity: "GDC.time.month",
227
- localIdentifier: "THIS_MONTH",
228
- type: "relativePreset",
229
- visible: true,
230
- name: "",
231
- },
232
- {
233
- from: -1,
234
- to: -1,
235
- granularity: "GDC.time.month",
236
- localIdentifier: "LAST_MONTH",
237
- type: "relativePreset",
238
- visible: true,
239
- name: "",
240
- },
241
- {
242
- from: -11,
243
- to: 0,
244
- granularity: "GDC.time.month",
245
- localIdentifier: "LAST_12_MONTHS",
246
- type: "relativePreset",
247
- visible: true,
248
- name: "",
249
- },
250
- {
251
- from: 0,
252
- to: 0,
253
- granularity: "GDC.time.quarter",
254
- localIdentifier: "THIS_QUARTER_TO_DATE",
255
- type: "relativePreset",
256
- visible: true,
257
- name: "",
258
- boundedFilter: {
259
- granularity: "GDC.time.date",
260
- to: 0,
261
- },
262
- },
263
- {
264
- from: 0,
265
- to: 0,
266
- granularity: "GDC.time.quarter",
267
- localIdentifier: "THIS_QUARTER",
268
- type: "relativePreset",
269
- visible: true,
270
- name: "",
271
- },
272
- {
273
- from: -1,
274
- to: -1,
275
- granularity: "GDC.time.quarter",
276
- localIdentifier: "LAST_QUARTER",
277
- type: "relativePreset",
278
- visible: true,
279
- name: "",
280
- },
281
- {
282
- from: -3,
283
- to: 0,
284
- granularity: "GDC.time.quarter",
285
- localIdentifier: "LAST_4_QUARTERS",
286
- type: "relativePreset",
287
- visible: true,
288
- name: "",
289
- },
290
- {
291
- from: 0,
292
- to: 0,
293
- granularity: "GDC.time.year",
294
- localIdentifier: "THIS_YEAR_TO_DATE",
295
- type: "relativePreset",
296
- visible: true,
297
- name: "",
298
- boundedFilter: {
299
- granularity: "GDC.time.date",
300
- to: 0,
301
- },
302
- },
303
- {
304
- from: 0,
305
- to: 0,
306
- granularity: "GDC.time.year",
307
- localIdentifier: "THIS_YEAR",
308
- type: "relativePreset",
309
- visible: true,
310
- name: "",
311
- },
312
- {
313
- from: -1,
314
- to: -1,
315
- granularity: "GDC.time.year",
316
- localIdentifier: "LAST_YEAR",
317
- type: "relativePreset",
318
- visible: true,
319
- name: "",
320
- },
321
- // Fiscal Year presets
322
- {
323
- from: 0,
324
- to: 0,
325
- granularity: "GDC.time.fiscal_year",
326
- localIdentifier: "THIS_FISCAL_YEAR_TO_DATE",
327
- type: "relativePreset",
328
- visible: true,
329
- name: "",
330
- boundedFilter: {
331
- granularity: "GDC.time.date",
332
- to: 0,
333
- },
334
- },
335
- {
336
- from: 0,
337
- to: 0,
338
- granularity: "GDC.time.fiscal_year",
339
- localIdentifier: "THIS_FISCAL_YEAR",
340
- type: "relativePreset",
341
- visible: true,
342
- name: "",
343
- },
344
- {
345
- from: -1,
346
- to: -1,
347
- granularity: "GDC.time.fiscal_year",
348
- localIdentifier: "LAST_FISCAL_YEAR",
349
- type: "relativePreset",
350
- visible: true,
351
- name: "",
352
- },
353
- // Fiscal Quarter presets
354
- {
355
- from: 0,
356
- to: 0,
357
- granularity: "GDC.time.fiscal_quarter",
358
- localIdentifier: "THIS_FISCAL_QUARTER_TO_DATE",
359
- type: "relativePreset",
360
- visible: true,
361
- name: "",
362
- boundedFilter: {
363
- granularity: "GDC.time.date",
364
- to: 0,
365
- },
366
- },
367
- {
368
- from: 0,
369
- to: 0,
370
- granularity: "GDC.time.fiscal_quarter",
371
- localIdentifier: "THIS_FISCAL_QUARTER",
372
- type: "relativePreset",
373
- visible: true,
374
- name: "",
375
- },
376
- {
377
- from: -1,
378
- to: -1,
379
- granularity: "GDC.time.fiscal_quarter",
380
- localIdentifier: "LAST_FISCAL_QUARTER",
381
- type: "relativePreset",
382
- visible: true,
383
- name: "",
384
- },
385
- {
386
- from: -3,
387
- to: 0,
388
- granularity: "GDC.time.fiscal_quarter",
389
- localIdentifier: "LAST_4_FISCAL_QUARTERS",
390
- type: "relativePreset",
391
- visible: true,
392
- name: "",
393
- },
394
- // Fiscal Month (Period) presets
395
- {
396
- from: 0,
397
- to: 0,
398
- granularity: "GDC.time.fiscal_month",
399
- localIdentifier: "THIS_FISCAL_MONTH_TO_DATE",
400
- type: "relativePreset",
401
- visible: true,
402
- name: "",
403
- boundedFilter: {
404
- granularity: "GDC.time.date",
405
- to: 0,
406
- },
407
- },
408
- {
409
- from: 0,
410
- to: 0,
411
- granularity: "GDC.time.fiscal_month",
412
- localIdentifier: "THIS_FISCAL_MONTH",
413
- type: "relativePreset",
414
- visible: true,
415
- name: "",
416
- },
417
- {
418
- from: -1,
419
- to: -1,
420
- granularity: "GDC.time.fiscal_month",
421
- localIdentifier: "LAST_FISCAL_MONTH",
422
- type: "relativePreset",
423
- visible: true,
424
- name: "",
425
- },
426
- {
427
- from: -11,
428
- to: 0,
429
- granularity: "GDC.time.fiscal_month",
430
- localIdentifier: "LAST_12_FISCAL_MONTHS",
431
- type: "relativePreset",
432
- visible: true,
433
- name: "",
434
- },
435
- ],
436
- absolutePresets: [],
437
- };
2
+ /* oxlint-disable no-barrel-files/no-barrel-files */
3
+ // Was a byte-identical copy; re-export the _staging canonical instead.
4
+ export { DEFAULT_DATE_FILTER_PRESET, DEFAULT_FISCAL_DATE_FILTER_PRESET, defaultDateFilterConfig, } from "../../../../_staging/dateFilterConfig/defaultConfig.js";
@@ -1 +1 @@
1
- {"version":3,"file":"DashboardList.d.ts","sourceRoot":"","sources":["../../../src/presentation/dashboardList/DashboardList.tsx"],"names":[],"mappings":"AAaA,OAAO,EAAE,KAAK,mBAAmB,EAAE,MAAM,YAAY,CAAC;AAetD,wBAAgB,aAAa,CAAC,EAAE,QAAQ,EAAE,UAAU,EAAE,QAAQ,EAAE,EAAE,mBAAmB,2CA+EpF"}
1
+ {"version":3,"file":"DashboardList.d.ts","sourceRoot":"","sources":["../../../src/presentation/dashboardList/DashboardList.tsx"],"names":[],"mappings":"AAaA,OAAO,EAAE,KAAK,mBAAmB,EAAE,MAAM,YAAY,CAAC;AAqBtD,wBAAgB,aAAa,CAAC,EAAE,QAAQ,EAAE,UAAU,EAAE,QAAQ,EAAE,EAAE,mBAAmB,2CA+EpF"}
@@ -14,6 +14,12 @@ const alignPoints = [
14
14
  {
15
15
  align: "tl bl",
16
16
  },
17
+ {
18
+ align: "br tr",
19
+ },
20
+ {
21
+ align: "tr br",
22
+ },
17
23
  ];
18
24
  const ITEM_HEIGHT = 25;
19
25
  const DROPDOWN_BODY_WIDTH = 240;
@@ -1 +1 @@
1
- {"version":3,"file":"InsightDropdown.d.ts","sourceRoot":"","sources":["../../../../src/presentation/widget/common/InsightDropdown.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,QAAQ,EAAE,KAAK,MAAM,EAAE,MAAM,qBAAqB,CAAC;AA8BjE,MAAM,WAAW,qBAAqB;IAClC,OAAO,CAAC,EAAE,QAAQ,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,QAAQ,EAAE,CAAC,UAAU,EAAE,QAAQ,KAAK,IAAI,CAAC;CAC5C;AAED,wBAAgB,eAAe,CAAC,EAAE,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,QAAQ,EAAE,EAAE,qBAAqB,2CAsCpG"}
1
+ {"version":3,"file":"InsightDropdown.d.ts","sourceRoot":"","sources":["../../../../src/presentation/widget/common/InsightDropdown.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,QAAQ,EAAE,KAAK,MAAM,EAAE,MAAM,qBAAqB,CAAC;AA4CjE,MAAM,WAAW,qBAAqB;IAClC,OAAO,CAAC,EAAE,QAAQ,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,QAAQ,EAAE,CAAC,UAAU,EAAE,QAAQ,KAAK,IAAI,CAAC;CAC5C;AAED,wBAAgB,eAAe,CAAC,EAAE,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,QAAQ,EAAE,EAAE,qBAAqB,2CAsCpG"}
@@ -18,6 +18,20 @@ const DROPDOWN_ALIGN_POINTS = [
18
18
  y: -4,
19
19
  },
20
20
  },
21
+ {
22
+ align: "br tr",
23
+ offset: {
24
+ x: 0,
25
+ y: 4,
26
+ },
27
+ },
28
+ {
29
+ align: "tr br",
30
+ offset: {
31
+ x: 0,
32
+ y: -4,
33
+ },
34
+ },
21
35
  ];
22
36
  function getButtonValue(title, intl, ref) {
23
37
  if (!ref) {
@@ -1 +1 @@
1
- {"version":3,"file":"ConfigurationBubble.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/widget/common/configuration/ConfigurationBubble.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAIvC,OAAO,EACH,KAAK,eAAe,EACpB,KAAK,YAAY,EAEjB,KAAK,WAAW,EAChB,KAAK,0BAA0B,EAC/B,KAAK,mBAAmB,EAC3B,MAAM,sBAAsB,CAAC;AAI9B,UAAU,yBAAyB;IAC/B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,OAAO,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI,CAAC;IACrC,WAAW,CAAC,EAAE,WAAW,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,mBAAmB,CAAC,EAAE,mBAAmB,CAAC;IAC1C,eAAe,CAAC,EAAE,eAAe,CAAC;IAClC,mBAAmB,CAAC,EAAE,0BAA0B,CAAC;CACpD;AAED,eAAO,MAAM,kBAAkB,EAAE,WAAW,EAO3C,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,YAKzC,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,eAGpC,CAAC;AAEF,wBAAgB,mBAAmB,CAAC,EAChC,EAAE,EACF,QAAQ,EACR,UAAU,EACV,OAAO,EACP,aAAa,EACb,OAAO,EACP,WAAgC,EAChC,YAAY,EACZ,mBAAmB,EACnB,eAAwC,EACxC,mBAAmB,EACtB,EAAE,yBAAyB,2CA6B3B"}
1
+ {"version":3,"file":"ConfigurationBubble.d.ts","sourceRoot":"","sources":["../../../../../src/presentation/widget/common/configuration/ConfigurationBubble.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAIvC,OAAO,EACH,KAAK,eAAe,EACpB,KAAK,YAAY,EAEjB,KAAK,WAAW,EAChB,KAAK,0BAA0B,EAC/B,KAAK,mBAAmB,EAC3B,MAAM,sBAAsB,CAAC;AAI9B,UAAU,yBAAyB;IAC/B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,OAAO,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI,CAAC;IACrC,WAAW,CAAC,EAAE,WAAW,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,mBAAmB,CAAC,EAAE,mBAAmB,CAAC;IAC1C,eAAe,CAAC,EAAE,eAAe,CAAC;IAClC,mBAAmB,CAAC,EAAE,0BAA0B,CAAC;CACpD;AAED,eAAO,MAAM,kBAAkB,EAAE,WAAW,EAS3C,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,YAKzC,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,eAGpC,CAAC;AAEF,wBAAgB,mBAAmB,CAAC,EAChC,EAAE,EACF,QAAQ,EACR,UAAU,EACV,OAAO,EACP,aAAa,EACb,OAAO,EACP,WAAgC,EAChC,YAAY,EACZ,mBAAmB,EACnB,eAAwC,EACxC,mBAAmB,EACtB,EAAE,yBAAyB,2CA6B3B"}
@@ -9,6 +9,8 @@ export const defaultAlignPoints = [
9
9
  { align: "bl br" },
10
10
  { align: "tr tr" },
11
11
  { align: "br br" },
12
+ { align: "tr bl" },
13
+ { align: "tl br" },
12
14
  ];
13
15
  export const defaultFlexibleArrowOffsets = {
14
16
  "tr tl": [15, 16],
@@ -1 +1 @@
1
- {"version":3,"file":"DashboardInsightMenuBubble.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/widget/insightMenu/DefaultDashboardInsightMenu/DashboardInsightMenu/DashboardInsightMenuBubble.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAIvC,OAAO,EAAE,KAAK,OAAO,EAA6B,MAAM,qBAAqB,CAAC;AAiC9E,UAAU,gCAAgC;IACtC,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,SAAS,CAAC;CACxB;AAED,wBAAgB,0BAA0B,CAAC,EACvC,OAAO,EACP,SAAS,EACT,MAAM,EACN,QAAQ,EACX,EAAE,gCAAgC,2CAyBlC"}
1
+ {"version":3,"file":"DashboardInsightMenuBubble.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/widget/insightMenu/DefaultDashboardInsightMenu/DashboardInsightMenu/DashboardInsightMenuBubble.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAIvC,OAAO,EAAE,KAAK,OAAO,EAA6B,MAAM,qBAAqB,CAAC;AAiC9E,UAAU,gCAAgC;IACtC,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,CAAC,EAAE,SAAS,CAAC;CACxB;AAED,wBAAgB,0BAA0B,CAAC,EACvC,OAAO,EACP,SAAS,EACT,MAAM,EACN,QAAQ,EACX,EAAE,gCAAgC,2CA0BlC"}
@@ -30,5 +30,5 @@ const flexibleArrowOffsets = {
30
30
  };
31
31
  export function DashboardInsightMenuBubble({ onClose, isSubmenu, widget, children, }) {
32
32
  const widgetRefAsString = objRefToString(widgetRef(widget));
33
- return (_jsx(Bubble, { alignTo: `.dash-item-action-widget-options-${simplifyText(widgetRefAsString)}`, alignPoints: alignPoints, arrowDirections: arrowDirections, arrowOffsets: flexibleArrowOffsets, className: cx("bubble-light", "gd-configuration-bubble", "edit-insight-config", "s-edit-insight-config", "edit-insight-config-title-1-line", isSubmenu ? "edit-insight-config-arrow-submenu-color" : "edit-insight-config-arrow-color"), closeOnOutsideClick: true, onClose: onClose, overlayClassName: "gd-configuration-bubble-wrapper sdk-edit-mode-on", ignoreClicksOnByClass: [`.${IGNORED_CONFIGURATION_MENU_CLICK_CLASS}`], children: children }));
33
+ return (_jsx(Bubble, { alignTo: `.dash-item-action-widget-options-${simplifyText(widgetRefAsString)}`, alignPoints: alignPoints, arrowDirections: arrowDirections, arrowOffsets: flexibleArrowOffsets, className: cx("bubble-light", "gd-configuration-bubble", "edit-insight-config", "s-edit-insight-config", "edit-insight-config-title-1-line", isSubmenu ? "edit-insight-config-arrow-submenu-color" : "edit-insight-config-arrow-color"), closeOnOutsideClick: true, onClose: onClose, overlayClassName: "gd-configuration-bubble-wrapper sdk-edit-mode-on", ignoreClicksOnByClass: [`.${IGNORED_CONFIGURATION_MENU_CLICK_CLASS}`], ensureVisibility: true, children: children }));
34
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooddata/sdk-ui-dashboard",
3
- "version": "11.50.0-alpha.2",
3
+ "version": "11.50.0-alpha.3",
4
4
  "description": "GoodData SDK - Dashboard Component",
5
5
  "license": "LicenseRef-LICENSE",
6
6
  "author": "GoodData Corporation",
@@ -60,20 +60,20 @@
60
60
  "ts-invariant": "0.10.3",
61
61
  "tslib": "2.8.1",
62
62
  "uuid": "11.1.1",
63
- "@gooddata/sdk-backend-base": "11.50.0-alpha.2",
64
- "@gooddata/sdk-backend-spi": "11.50.0-alpha.2",
65
- "@gooddata/sdk-model": "11.50.0-alpha.2",
66
- "@gooddata/sdk-ui": "11.50.0-alpha.2",
67
- "@gooddata/sdk-ui-charts": "11.50.0-alpha.2",
68
- "@gooddata/sdk-ui-ext": "11.50.0-alpha.2",
69
- "@gooddata/sdk-ui-geo": "11.50.0-alpha.2",
70
- "@gooddata/sdk-ui-filters": "11.50.0-alpha.2",
71
- "@gooddata/sdk-ui-kit": "11.50.0-alpha.2",
72
- "@gooddata/sdk-ui-pivot": "11.50.0-alpha.2",
73
- "@gooddata/sdk-ui-semantic-search": "11.50.0-alpha.2",
74
- "@gooddata/sdk-ui-theme-provider": "11.50.0-alpha.2",
75
- "@gooddata/util": "11.50.0-alpha.2",
76
- "@gooddata/sdk-ui-vis-commons": "11.50.0-alpha.2"
63
+ "@gooddata/sdk-backend-base": "11.50.0-alpha.3",
64
+ "@gooddata/sdk-backend-spi": "11.50.0-alpha.3",
65
+ "@gooddata/sdk-model": "11.50.0-alpha.3",
66
+ "@gooddata/sdk-ui": "11.50.0-alpha.3",
67
+ "@gooddata/sdk-ui-charts": "11.50.0-alpha.3",
68
+ "@gooddata/sdk-ui-ext": "11.50.0-alpha.3",
69
+ "@gooddata/sdk-ui-filters": "11.50.0-alpha.3",
70
+ "@gooddata/sdk-ui-geo": "11.50.0-alpha.3",
71
+ "@gooddata/sdk-ui-kit": "11.50.0-alpha.3",
72
+ "@gooddata/sdk-ui-pivot": "11.50.0-alpha.3",
73
+ "@gooddata/sdk-ui-semantic-search": "11.50.0-alpha.3",
74
+ "@gooddata/sdk-ui-theme-provider": "11.50.0-alpha.3",
75
+ "@gooddata/sdk-ui-vis-commons": "11.50.0-alpha.3",
76
+ "@gooddata/util": "11.50.0-alpha.3"
77
77
  },
78
78
  "devDependencies": {
79
79
  "@microsoft/api-documenter": "^7.17.0",
@@ -119,12 +119,12 @@
119
119
  "typescript": "5.9.3",
120
120
  "vitest": "4.1.8",
121
121
  "vitest-dom": "0.1.1",
122
- "@gooddata/i18n-toolkit": "11.50.0-alpha.2",
123
- "@gooddata/eslint-config": "11.50.0-alpha.2",
124
- "@gooddata/oxlint-config": "11.50.0-alpha.2",
125
- "@gooddata/reference-workspace": "11.50.0-alpha.2",
126
- "@gooddata/sdk-backend-mockingbird": "11.50.0-alpha.2",
127
- "@gooddata/stylelint-config": "11.50.0-alpha.2"
122
+ "@gooddata/eslint-config": "11.50.0-alpha.3",
123
+ "@gooddata/i18n-toolkit": "11.50.0-alpha.3",
124
+ "@gooddata/oxlint-config": "11.50.0-alpha.3",
125
+ "@gooddata/reference-workspace": "11.50.0-alpha.3",
126
+ "@gooddata/stylelint-config": "11.50.0-alpha.3",
127
+ "@gooddata/sdk-backend-mockingbird": "11.50.0-alpha.3"
128
128
  },
129
129
  "peerDependencies": {
130
130
  "react": "^18.0.0 || ^19.0.0",