@luigi-project/container 1.7.10-dev.20260870125 → 1.7.10-dev.20260890030
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.
|
@@ -272,7 +272,7 @@ export default class LuigiCompoundContainer extends HTMLElement {
|
|
|
272
272
|
* @example containerElement.updateContext({newContextData: 'some data'})
|
|
273
273
|
* @returns {void} no explicit return type
|
|
274
274
|
*/
|
|
275
|
-
updateContext(contextObj: Object): void
|
|
275
|
+
updateContext(contextObj: Object): void;
|
|
276
276
|
|
|
277
277
|
/**
|
|
278
278
|
* A function that notifies the microfrontend that the opened alert has been closed.
|
|
@@ -283,7 +283,7 @@ export default class LuigiCompoundContainer extends HTMLElement {
|
|
|
283
283
|
* @example containerElement.notifyAlertClosed('my-alert-id', 'my-dismiss-key')
|
|
284
284
|
* @returns {void} no explicit return type
|
|
285
285
|
*/
|
|
286
|
-
notifyAlertClosed(id: string, dismissKey?: string): void
|
|
286
|
+
notifyAlertClosed(id: string, dismissKey?: string): void;
|
|
287
287
|
|
|
288
288
|
/**
|
|
289
289
|
* A function that notifies the microfrontend if the confirmation modal was confirmed or declined.
|
|
@@ -293,7 +293,7 @@ export default class LuigiCompoundContainer extends HTMLElement {
|
|
|
293
293
|
* @example containerElement.notifyAlertClosed(true)
|
|
294
294
|
* @returns {void} no explicit return type
|
|
295
295
|
*/
|
|
296
|
-
notifyConfirmationModalClosed(confirmed: boolean): void
|
|
296
|
+
notifyConfirmationModalClosed(confirmed: boolean): void;
|
|
297
297
|
|
|
298
298
|
/**
|
|
299
299
|
* Manually triggers the micro frontend rendering process when using the defer-init attribute.
|
|
@@ -302,5 +302,5 @@ export default class LuigiCompoundContainer extends HTMLElement {
|
|
|
302
302
|
* @example containerElement.init()
|
|
303
303
|
* @returns {void} no explicit return type
|
|
304
304
|
*/
|
|
305
|
-
init(): void
|
|
305
|
+
init(): void;
|
|
306
306
|
}
|
|
@@ -335,7 +335,7 @@ export default class LuigiContainer extends HTMLElement {
|
|
|
335
335
|
* @example containerElement.updateContext({newContextData: 'some data'})
|
|
336
336
|
* @returns {void} no explicit return type
|
|
337
337
|
*/
|
|
338
|
-
updateContext(contextObj: object, internal?: object): void
|
|
338
|
+
updateContext(contextObj: object, internal?: object): void;
|
|
339
339
|
|
|
340
340
|
/**
|
|
341
341
|
* Send a custom message to the microfronted.
|
|
@@ -346,7 +346,7 @@ export default class LuigiContainer extends HTMLElement {
|
|
|
346
346
|
* @example containerElement.sendCustomMessage('my-message-id', {dataToSend: 'some data'})
|
|
347
347
|
* @returns {void} no explicit return type
|
|
348
348
|
*/
|
|
349
|
-
sendCustomMessage(id: string, data?: object): void
|
|
349
|
+
sendCustomMessage(id: string, data?: object): void;
|
|
350
350
|
|
|
351
351
|
/**
|
|
352
352
|
* A function that notifies the microfrontend that the opened alert has been closed.
|
|
@@ -359,7 +359,7 @@ export default class LuigiContainer extends HTMLElement {
|
|
|
359
359
|
* @returns {void} no explicit return type
|
|
360
360
|
* @deprecated this is deprecated
|
|
361
361
|
*/
|
|
362
|
-
closeAlert(id: string, dismissKey?: string): void
|
|
362
|
+
closeAlert(id: string, dismissKey?: string): void;
|
|
363
363
|
|
|
364
364
|
/**
|
|
365
365
|
* A function that notifies the microfrontend that the opened alert has been closed.
|
|
@@ -370,7 +370,7 @@ export default class LuigiContainer extends HTMLElement {
|
|
|
370
370
|
* @example containerElement.notifyAlertClosed('my-alert-id', 'my-dismiss-key')
|
|
371
371
|
* @returns {void} no explicit return type
|
|
372
372
|
*/
|
|
373
|
-
notifyAlertClosed(id: string, dismissKey?: string): void
|
|
373
|
+
notifyAlertClosed(id: string, dismissKey?: string): void;
|
|
374
374
|
|
|
375
375
|
/**
|
|
376
376
|
* A function that notifies the microfrontend that the opened confirmation modal has been closed.
|
|
@@ -380,7 +380,7 @@ export default class LuigiContainer extends HTMLElement {
|
|
|
380
380
|
* @example containerElement.notifyConfirmationModalClosed(true)
|
|
381
381
|
* @returns {void} no explicit return type
|
|
382
382
|
*/
|
|
383
|
-
notifyConfirmationModalClosed(result: boolean): void
|
|
383
|
+
notifyConfirmationModalClosed(result: boolean): void;
|
|
384
384
|
|
|
385
385
|
/**
|
|
386
386
|
* Updates route of the microfrontend by sending a message to the iframe that sets new view URL.
|
|
@@ -390,7 +390,7 @@ export default class LuigiContainer extends HTMLElement {
|
|
|
390
390
|
* @memberof LuigiContainer
|
|
391
391
|
* @returns {void} no explicit return type
|
|
392
392
|
*/
|
|
393
|
-
updateViewUrl(viewurl: string, internal?: object): void
|
|
393
|
+
updateViewUrl(viewurl: string, internal?: object): void;
|
|
394
394
|
|
|
395
395
|
/**
|
|
396
396
|
* Manually triggers the micro frontend rendering process when using defer-init attribute.
|
|
@@ -399,5 +399,5 @@ export default class LuigiContainer extends HTMLElement {
|
|
|
399
399
|
* @example containerElement.init()
|
|
400
400
|
* @returns {void} no explicit return type
|
|
401
401
|
*/
|
|
402
|
-
init(): void
|
|
402
|
+
init(): void;
|
|
403
403
|
}
|
package/package.json
CHANGED