@luigi-project/container 1.6.0 → 1.7.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/LuigiCompoundContainer.svelte.d.ts +19 -0
- package/LuigiContainer.svelte.d.ts +19 -2
- package/bundle.js +1 -1
- package/bundle.js.map +1 -1
- package/constants/events.d.ts +37 -1
- package/constants/events.js +159 -0
- package/dist/custom-elements.json +46 -78
- package/package.json +1 -1
package/constants/events.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-unsafe-function-type */
|
|
1
2
|
export namespace Events {
|
|
2
3
|
/**
|
|
3
4
|
* Event fired when the micro frontend sends a custom message.
|
|
@@ -20,7 +21,8 @@ export namespace Events {
|
|
|
20
21
|
export const ALERT_REQUEST = 'show-alert-request';
|
|
21
22
|
|
|
22
23
|
/**
|
|
23
|
-
* Event
|
|
24
|
+
* Event left due to historical reasons - do not use.
|
|
25
|
+
* @deprecated
|
|
24
26
|
*/
|
|
25
27
|
export const ALERT_CLOSED = 'close-alert-request';
|
|
26
28
|
|
|
@@ -81,6 +83,7 @@ export namespace Events {
|
|
|
81
83
|
|
|
82
84
|
/**
|
|
83
85
|
* Event fired when the micro frontend requests to navigate back.
|
|
86
|
+
* @deprecated use GO_BACK_REQUEST
|
|
84
87
|
*/
|
|
85
88
|
export const BACK_NAVIGATION_REQUEST = 'navigate-back-request';
|
|
86
89
|
|
|
@@ -99,6 +102,11 @@ export namespace Events {
|
|
|
99
102
|
*/
|
|
100
103
|
export const UPDATE_MODAL_PATH_DATA_REQUEST = 'update-modal-path-data-request';
|
|
101
104
|
|
|
105
|
+
/**
|
|
106
|
+
* Event fired when the micro frontend requests to update the modal settings.
|
|
107
|
+
*/
|
|
108
|
+
export const UPDATE_MODAL_SETTINGS_REQUEST = 'update-modal-settings-request';
|
|
109
|
+
|
|
102
110
|
/**
|
|
103
111
|
* Event fired when the micro frontend requests to check the validity of a path.
|
|
104
112
|
*/
|
|
@@ -116,6 +124,7 @@ export namespace Events {
|
|
|
116
124
|
|
|
117
125
|
/**
|
|
118
126
|
* Event fired when the micro frontend requests to set the document title.
|
|
127
|
+
* @deprecated
|
|
119
128
|
*/
|
|
120
129
|
export const SET_DOCUMENT_TITLE_REQUEST = 'set-document-title-request';
|
|
121
130
|
|
|
@@ -141,6 +150,7 @@ export namespace Events {
|
|
|
141
150
|
|
|
142
151
|
/**
|
|
143
152
|
* Event fired when the micro frontend requests to check if the path exists.
|
|
153
|
+
* @deprecated use CHECK_PATH_EXISTS_REQUEST
|
|
144
154
|
*/
|
|
145
155
|
export const PATH_EXISTS_REQUEST = 'path-exists-request';
|
|
146
156
|
|
|
@@ -154,8 +164,34 @@ export namespace Events {
|
|
|
154
164
|
*/
|
|
155
165
|
export const HAS_BACK_REQUEST = 'has-back-request';
|
|
156
166
|
|
|
167
|
+
/**
|
|
168
|
+
* Event fired when the micro frontend requests to display the backdrop.
|
|
169
|
+
*/
|
|
170
|
+
export const ADD_BACKDROP_REQUEST = 'add-backdrop-request';
|
|
171
|
+
|
|
157
172
|
/**
|
|
158
173
|
* Event fired when the micro frontend requests to remove the backdrop.
|
|
159
174
|
*/
|
|
160
175
|
export const REMOVE_BACKDROP_REQUEST = 'remove-backdrop-request';
|
|
161
176
|
}
|
|
177
|
+
|
|
178
|
+
export class LuigiEvent extends Event {
|
|
179
|
+
payload?: unknown;
|
|
180
|
+
detail: unknown;
|
|
181
|
+
private callbackFn: Function;
|
|
182
|
+
|
|
183
|
+
constructor(type: string, data: unknown, payload?: unknown, callback?: Function) {
|
|
184
|
+
super(type);
|
|
185
|
+
this.detail = data;
|
|
186
|
+
this.payload = payload || data || {};
|
|
187
|
+
this.callbackFn = callback;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
callback(data: unknown): void {
|
|
191
|
+
if (this.callbackFn) {
|
|
192
|
+
this.callbackFn(data);
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
export { Events as LuigiEvents };
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-unsafe-function-type */
|
|
2
|
+
var Events;
|
|
3
|
+
(function (Events) {
|
|
4
|
+
/**
|
|
5
|
+
* Event fired when the micro frontend sends a custom message.
|
|
6
|
+
*/
|
|
7
|
+
Events.CUSTOM_MESSAGE = 'custom-message';
|
|
8
|
+
/**
|
|
9
|
+
* Event fired when the micro frontend requests the context data.
|
|
10
|
+
*/
|
|
11
|
+
Events.GET_CONTEXT_REQUEST = 'get-context-request';
|
|
12
|
+
/**
|
|
13
|
+
* Event fired when a navigation has been requested by the micro frontend.
|
|
14
|
+
*/
|
|
15
|
+
Events.NAVIGATION_REQUEST = 'navigation-request';
|
|
16
|
+
/**
|
|
17
|
+
* Event fired when the micro frontend requests to show an alert.
|
|
18
|
+
*/
|
|
19
|
+
Events.ALERT_REQUEST = 'show-alert-request';
|
|
20
|
+
/**
|
|
21
|
+
* Event left due to historical reasons - do not use.
|
|
22
|
+
* @deprecated
|
|
23
|
+
*/
|
|
24
|
+
Events.ALERT_CLOSED = 'close-alert-request';
|
|
25
|
+
/**
|
|
26
|
+
* Event fired when the micro frontend has been initialized.
|
|
27
|
+
*/
|
|
28
|
+
Events.INITIALIZED = 'initialized';
|
|
29
|
+
/**
|
|
30
|
+
* Event fired when the micro frontend requests the addition of search parameters to the URL.
|
|
31
|
+
*/
|
|
32
|
+
Events.ADD_SEARCH_PARAMS_REQUEST = 'add-search-params-request';
|
|
33
|
+
/**
|
|
34
|
+
* Event fired when the micro frontend requests the addition of node parameters to the URL.
|
|
35
|
+
*/
|
|
36
|
+
Events.ADD_NODE_PARAMS_REQUEST = 'add-node-params-request';
|
|
37
|
+
/**
|
|
38
|
+
* Event fired when the micro frontend requests to show a confirmation modal.
|
|
39
|
+
*/
|
|
40
|
+
Events.SHOW_CONFIRMATION_MODAL_REQUEST = 'show-confirmation-modal-request';
|
|
41
|
+
/**
|
|
42
|
+
* Event fired when the micro frontend requests to show a loading indicator.
|
|
43
|
+
*/
|
|
44
|
+
Events.SHOW_LOADING_INDICATOR_REQUEST = 'show-loading-indicator-request';
|
|
45
|
+
/**
|
|
46
|
+
* Event fired when the micro frontend requests to hide the loading indicator.
|
|
47
|
+
*/
|
|
48
|
+
Events.HIDE_LOADING_INDICATOR_REQUEST = 'hide-loading-indicator-request';
|
|
49
|
+
/**
|
|
50
|
+
* Event fired when the micro frontend requests to set the current locale.
|
|
51
|
+
*/
|
|
52
|
+
Events.SET_CURRENT_LOCALE_REQUEST = 'set-current-locale-request';
|
|
53
|
+
/**
|
|
54
|
+
* Event fired when the micro frontend requests to modify the local storage.
|
|
55
|
+
*/
|
|
56
|
+
Events.LOCAL_STORAGE_SET_REQUEST = 'set-storage-request';
|
|
57
|
+
/**
|
|
58
|
+
* Event fired when the micro frontend requests to handle errors that might happen during the runtime of the micro frontend.
|
|
59
|
+
*/
|
|
60
|
+
Events.RUNTIME_ERROR_HANDLING_REQUEST = 'runtime-error-handling-request';
|
|
61
|
+
/**
|
|
62
|
+
* Event fired when the micro frontend requests to set the anchor of the URL.
|
|
63
|
+
*/
|
|
64
|
+
Events.SET_ANCHOR_LINK_REQUEST = 'set-anchor-request';
|
|
65
|
+
/**
|
|
66
|
+
* Event fired when the micro frontend requests to set third-party cookies.
|
|
67
|
+
*/
|
|
68
|
+
Events.SET_THIRD_PARTY_COOKIES_REQUEST = 'set-third-party-cookies-request';
|
|
69
|
+
/**
|
|
70
|
+
* Event fired when the micro frontend requests to navigate back.
|
|
71
|
+
* @deprecated use GO_BACK_REQUEST
|
|
72
|
+
*/
|
|
73
|
+
Events.BACK_NAVIGATION_REQUEST = 'navigate-back-request';
|
|
74
|
+
/**
|
|
75
|
+
* Event fired when the micro frontend requests the current app route.
|
|
76
|
+
*/
|
|
77
|
+
Events.GET_CURRENT_ROUTE_REQUEST = 'get-current-route-request';
|
|
78
|
+
/**
|
|
79
|
+
* Event fired to report that the micro frontend's navigation has completed.
|
|
80
|
+
*/
|
|
81
|
+
Events.NAVIGATION_COMPLETED_REPORT = 'report-navigation-completed-request';
|
|
82
|
+
/**
|
|
83
|
+
* Event fired when the micro frontend requests to update the modal path parameters.
|
|
84
|
+
*/
|
|
85
|
+
Events.UPDATE_MODAL_PATH_DATA_REQUEST = 'update-modal-path-data-request';
|
|
86
|
+
/**
|
|
87
|
+
* Event fired when the micro frontend requests to update the modal settings.
|
|
88
|
+
*/
|
|
89
|
+
Events.UPDATE_MODAL_SETTINGS_REQUEST = 'update-modal-settings-request';
|
|
90
|
+
/**
|
|
91
|
+
* Event fired when the micro frontend requests to check the validity of a path.
|
|
92
|
+
*/
|
|
93
|
+
Events.CHECK_PATH_EXISTS_REQUEST = 'check-path-exists-request';
|
|
94
|
+
/**
|
|
95
|
+
* Event fired when the micro frontend requests to set the 'dirty status' which, for example, avoids closing when there are any unsaved changes.
|
|
96
|
+
*/
|
|
97
|
+
Events.SET_DIRTY_STATUS_REQUEST = 'set-dirty-status-request';
|
|
98
|
+
/**
|
|
99
|
+
* Event fired when the micro frontend requests to set the view group data.
|
|
100
|
+
*/
|
|
101
|
+
Events.SET_VIEW_GROUP_DATA_REQUEST = 'set-viewgroup-data-request';
|
|
102
|
+
/**
|
|
103
|
+
* Event fired when the micro frontend requests to set the document title.
|
|
104
|
+
* @deprecated
|
|
105
|
+
*/
|
|
106
|
+
Events.SET_DOCUMENT_TITLE_REQUEST = 'set-document-title-request';
|
|
107
|
+
/**
|
|
108
|
+
* Event fired when the micro frontend requests to open the user settings.
|
|
109
|
+
*/
|
|
110
|
+
Events.OPEN_USER_SETTINGS_REQUEST = 'open-user-settings-request';
|
|
111
|
+
/**
|
|
112
|
+
* Event fired when the micro frontend requests to close the user settings.
|
|
113
|
+
*/
|
|
114
|
+
Events.CLOSE_USER_SETTINGS_REQUEST = 'close-user-settings-request';
|
|
115
|
+
/**
|
|
116
|
+
* Event fired when the micro frontend requests to collapse left side navigation.
|
|
117
|
+
*/
|
|
118
|
+
Events.COLLAPSE_LEFT_NAV_REQUEST = 'collapse-leftnav-request';
|
|
119
|
+
/**
|
|
120
|
+
* Event fired when the micro frontend requests to update the top navigation.
|
|
121
|
+
*/
|
|
122
|
+
Events.UPDATE_TOP_NAVIGATION_REQUEST = 'update-top-navigation-request';
|
|
123
|
+
/**
|
|
124
|
+
* Event fired when the micro frontend requests to check if the path exists.
|
|
125
|
+
* @deprecated use CHECK_PATH_EXISTS_REQUEST
|
|
126
|
+
*/
|
|
127
|
+
Events.PATH_EXISTS_REQUEST = 'path-exists-request';
|
|
128
|
+
/**
|
|
129
|
+
* Event fired when the micro frontend requests to navigate back.
|
|
130
|
+
*/
|
|
131
|
+
Events.GO_BACK_REQUEST = 'go-back-request';
|
|
132
|
+
/**
|
|
133
|
+
* Event fired when the micro frontend requests to check if there are any preserved views.
|
|
134
|
+
*/
|
|
135
|
+
Events.HAS_BACK_REQUEST = 'has-back-request';
|
|
136
|
+
/**
|
|
137
|
+
* Event fired when the micro frontend requests to display the backdrop.
|
|
138
|
+
*/
|
|
139
|
+
Events.ADD_BACKDROP_REQUEST = 'add-backdrop-request';
|
|
140
|
+
/**
|
|
141
|
+
* Event fired when the micro frontend requests to remove the backdrop.
|
|
142
|
+
*/
|
|
143
|
+
Events.REMOVE_BACKDROP_REQUEST = 'remove-backdrop-request';
|
|
144
|
+
})(Events || (Events = {}));
|
|
145
|
+
class LuigiEvent extends Event {
|
|
146
|
+
constructor(type, data, payload, callback) {
|
|
147
|
+
super(type);
|
|
148
|
+
this.detail = data;
|
|
149
|
+
this.payload = payload || data || {};
|
|
150
|
+
this.callbackFn = callback;
|
|
151
|
+
}
|
|
152
|
+
callback(data) {
|
|
153
|
+
if (this.callbackFn) {
|
|
154
|
+
this.callbackFn(data);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
export { LuigiEvent, Events as LuigiEvents };
|
|
@@ -17,12 +17,7 @@
|
|
|
17
17
|
"kind": "field",
|
|
18
18
|
"name": "activeFeatureToggleList",
|
|
19
19
|
"type": {
|
|
20
|
-
"text": "Array<string>"
|
|
21
|
-
"references": [
|
|
22
|
-
{
|
|
23
|
-
"name": "string"
|
|
24
|
-
}
|
|
25
|
-
]
|
|
20
|
+
"text": "Array<string>"
|
|
26
21
|
},
|
|
27
22
|
"default": "undefined"
|
|
28
23
|
},
|
|
@@ -30,12 +25,7 @@
|
|
|
30
25
|
"kind": "field",
|
|
31
26
|
"name": "allowRules",
|
|
32
27
|
"type": {
|
|
33
|
-
"text": "Array<string>"
|
|
34
|
-
"references": [
|
|
35
|
-
{
|
|
36
|
-
"name": "string"
|
|
37
|
-
}
|
|
38
|
-
]
|
|
28
|
+
"text": "Array<string>"
|
|
39
29
|
},
|
|
40
30
|
"default": "undefined"
|
|
41
31
|
},
|
|
@@ -147,12 +137,7 @@
|
|
|
147
137
|
"kind": "field",
|
|
148
138
|
"name": "sandboxRules",
|
|
149
139
|
"type": {
|
|
150
|
-
"text": "Array<string>"
|
|
151
|
-
"references": [
|
|
152
|
-
{
|
|
153
|
-
"name": "string"
|
|
154
|
-
}
|
|
155
|
-
]
|
|
140
|
+
"text": "Array<string>"
|
|
156
141
|
},
|
|
157
142
|
"default": "undefined"
|
|
158
143
|
},
|
|
@@ -228,6 +213,14 @@
|
|
|
228
213
|
"kind": "method",
|
|
229
214
|
"name": "notifyAlertClosed"
|
|
230
215
|
},
|
|
216
|
+
{
|
|
217
|
+
"kind": "method",
|
|
218
|
+
"name": "notifyConfirmationModalClosed"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"kind": "method",
|
|
222
|
+
"name": "updateViewUrl"
|
|
223
|
+
},
|
|
231
224
|
{
|
|
232
225
|
"kind": "method",
|
|
233
226
|
"name": "init"
|
|
@@ -262,13 +255,6 @@
|
|
|
262
255
|
"text": "Event"
|
|
263
256
|
}
|
|
264
257
|
},
|
|
265
|
-
{
|
|
266
|
-
"name": "close-alert-request",
|
|
267
|
-
"description": "Event fired when the micro frontend requests to close an alert.",
|
|
268
|
-
"type": {
|
|
269
|
-
"text": "Event"
|
|
270
|
-
}
|
|
271
|
-
},
|
|
272
258
|
{
|
|
273
259
|
"name": "initialized",
|
|
274
260
|
"description": "Event fired when the micro frontend has been initialized.",
|
|
@@ -346,13 +332,6 @@
|
|
|
346
332
|
"text": "Event"
|
|
347
333
|
}
|
|
348
334
|
},
|
|
349
|
-
{
|
|
350
|
-
"name": "navigate-back-request",
|
|
351
|
-
"description": "Event fired when the micro frontend requests to navigate back.",
|
|
352
|
-
"type": {
|
|
353
|
-
"text": "Event"
|
|
354
|
-
}
|
|
355
|
-
},
|
|
356
335
|
{
|
|
357
336
|
"name": "get-current-route-request",
|
|
358
337
|
"description": "Event fired when the micro frontend requests the current app route.",
|
|
@@ -374,6 +353,13 @@
|
|
|
374
353
|
"text": "Event"
|
|
375
354
|
}
|
|
376
355
|
},
|
|
356
|
+
{
|
|
357
|
+
"name": "update-modal-settings-request",
|
|
358
|
+
"description": "Event fired when the micro frontend requests to update the modal settings.",
|
|
359
|
+
"type": {
|
|
360
|
+
"text": "Event"
|
|
361
|
+
}
|
|
362
|
+
},
|
|
377
363
|
{
|
|
378
364
|
"name": "check-path-exists-request",
|
|
379
365
|
"description": "Event fired when the micro frontend requests to check the validity of a path.",
|
|
@@ -395,13 +381,6 @@
|
|
|
395
381
|
"text": "Event"
|
|
396
382
|
}
|
|
397
383
|
},
|
|
398
|
-
{
|
|
399
|
-
"name": "set-document-title-request",
|
|
400
|
-
"description": "Event fired when the micro frontend requests to set the document title.",
|
|
401
|
-
"type": {
|
|
402
|
-
"text": "Event"
|
|
403
|
-
}
|
|
404
|
-
},
|
|
405
384
|
{
|
|
406
385
|
"name": "open-user-settings-request",
|
|
407
386
|
"description": "Event fired when the micro frontend requests to open the user settings.",
|
|
@@ -431,22 +410,22 @@
|
|
|
431
410
|
}
|
|
432
411
|
},
|
|
433
412
|
{
|
|
434
|
-
"name": "
|
|
435
|
-
"description": "Event fired when the micro frontend requests to
|
|
413
|
+
"name": "go-back-request",
|
|
414
|
+
"description": "Event fired when the micro frontend requests to navigate back.",
|
|
436
415
|
"type": {
|
|
437
416
|
"text": "Event"
|
|
438
417
|
}
|
|
439
418
|
},
|
|
440
419
|
{
|
|
441
|
-
"name": "
|
|
442
|
-
"description": "Event fired when the micro frontend requests to
|
|
420
|
+
"name": "has-back-request",
|
|
421
|
+
"description": "Event fired when the micro frontend requests to check if there are any preserved views.",
|
|
443
422
|
"type": {
|
|
444
423
|
"text": "Event"
|
|
445
424
|
}
|
|
446
425
|
},
|
|
447
426
|
{
|
|
448
|
-
"name": "
|
|
449
|
-
"description": "Event fired when the micro frontend requests to
|
|
427
|
+
"name": "add-backdrop-request",
|
|
428
|
+
"description": "Event fired when the micro frontend requests to display the backdrop.",
|
|
450
429
|
"type": {
|
|
451
430
|
"text": "Event"
|
|
452
431
|
}
|
|
@@ -495,12 +474,7 @@
|
|
|
495
474
|
"kind": "field",
|
|
496
475
|
"name": "activeFeatureToggleList",
|
|
497
476
|
"type": {
|
|
498
|
-
"text": "Array<string>"
|
|
499
|
-
"references": [
|
|
500
|
-
{
|
|
501
|
-
"name": "string"
|
|
502
|
-
}
|
|
503
|
-
]
|
|
477
|
+
"text": "Array<string>"
|
|
504
478
|
},
|
|
505
479
|
"default": "undefined"
|
|
506
480
|
},
|
|
@@ -652,6 +626,14 @@
|
|
|
652
626
|
"kind": "method",
|
|
653
627
|
"name": "updateContext"
|
|
654
628
|
},
|
|
629
|
+
{
|
|
630
|
+
"kind": "method",
|
|
631
|
+
"name": "notifyAlertClosed"
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
"kind": "method",
|
|
635
|
+
"name": "notifyConfirmationModalClosed"
|
|
636
|
+
},
|
|
655
637
|
{
|
|
656
638
|
"kind": "method",
|
|
657
639
|
"name": "init"
|
|
@@ -686,13 +668,6 @@
|
|
|
686
668
|
"text": "Event"
|
|
687
669
|
}
|
|
688
670
|
},
|
|
689
|
-
{
|
|
690
|
-
"name": "close-alert-request",
|
|
691
|
-
"description": "Event fired when the micro frontend requests to close an alert.",
|
|
692
|
-
"type": {
|
|
693
|
-
"text": "Event"
|
|
694
|
-
}
|
|
695
|
-
},
|
|
696
671
|
{
|
|
697
672
|
"name": "initialized",
|
|
698
673
|
"description": "Event fired when the micro frontend has been initialized.",
|
|
@@ -770,13 +745,6 @@
|
|
|
770
745
|
"text": "Event"
|
|
771
746
|
}
|
|
772
747
|
},
|
|
773
|
-
{
|
|
774
|
-
"name": "navigate-back-request",
|
|
775
|
-
"description": "Event fired when the micro frontend requests to navigate back.",
|
|
776
|
-
"type": {
|
|
777
|
-
"text": "Event"
|
|
778
|
-
}
|
|
779
|
-
},
|
|
780
748
|
{
|
|
781
749
|
"name": "get-current-route-request",
|
|
782
750
|
"description": "Event fired when the micro frontend requests the current app route.",
|
|
@@ -798,6 +766,13 @@
|
|
|
798
766
|
"text": "Event"
|
|
799
767
|
}
|
|
800
768
|
},
|
|
769
|
+
{
|
|
770
|
+
"name": "update-modal-settings-request",
|
|
771
|
+
"description": "Event fired when the micro frontend requests to update the modal settings.",
|
|
772
|
+
"type": {
|
|
773
|
+
"text": "Event"
|
|
774
|
+
}
|
|
775
|
+
},
|
|
801
776
|
{
|
|
802
777
|
"name": "check-path-exists-request",
|
|
803
778
|
"description": "Event fired when the micro frontend requests to check the validity of a path.",
|
|
@@ -819,13 +794,6 @@
|
|
|
819
794
|
"text": "Event"
|
|
820
795
|
}
|
|
821
796
|
},
|
|
822
|
-
{
|
|
823
|
-
"name": "set-document-title-request",
|
|
824
|
-
"description": "Event fired when the micro frontend requests to set the document title.",
|
|
825
|
-
"type": {
|
|
826
|
-
"text": "Event"
|
|
827
|
-
}
|
|
828
|
-
},
|
|
829
797
|
{
|
|
830
798
|
"name": "open-user-settings-request",
|
|
831
799
|
"description": "Event fired when the micro frontend requests to open the user settings.",
|
|
@@ -855,22 +823,22 @@
|
|
|
855
823
|
}
|
|
856
824
|
},
|
|
857
825
|
{
|
|
858
|
-
"name": "
|
|
859
|
-
"description": "Event fired when the micro frontend requests to
|
|
826
|
+
"name": "go-back-request",
|
|
827
|
+
"description": "Event fired when the micro frontend requests to navigate back.",
|
|
860
828
|
"type": {
|
|
861
829
|
"text": "Event"
|
|
862
830
|
}
|
|
863
831
|
},
|
|
864
832
|
{
|
|
865
|
-
"name": "
|
|
866
|
-
"description": "Event fired when the micro frontend requests to
|
|
833
|
+
"name": "has-back-request",
|
|
834
|
+
"description": "Event fired when the micro frontend requests to check if there are any preserved views.",
|
|
867
835
|
"type": {
|
|
868
836
|
"text": "Event"
|
|
869
837
|
}
|
|
870
838
|
},
|
|
871
839
|
{
|
|
872
|
-
"name": "
|
|
873
|
-
"description": "Event fired when the micro frontend requests to
|
|
840
|
+
"name": "add-backdrop-request",
|
|
841
|
+
"description": "Event fired when the micro frontend requests to display the backdrop.",
|
|
874
842
|
"type": {
|
|
875
843
|
"text": "Event"
|
|
876
844
|
}
|
package/package.json
CHANGED