@luigi-project/container 1.7.0-dev.20250850039 → 1.7.0-dev.20250860039
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.
|
@@ -107,7 +107,6 @@ export default class LuigiContainer extends HTMLElement {
|
|
|
107
107
|
/**
|
|
108
108
|
* If set to true, skips handshake and ready event is fired immediately.
|
|
109
109
|
* @since 1.0.0
|
|
110
|
-
* TODO: https://developer.mozilla.org/en-US/docs/Glossary/Boolean/HTML says booleans should not use "true"/"false", find a consistent style for our docs.
|
|
111
110
|
* @example <luigi-container viewurl="/index.html" skipInitCheck></luigi-container>
|
|
112
111
|
* @example myContainer.skipInitCheck = true
|
|
113
112
|
*/
|
|
@@ -280,7 +279,7 @@ export default class LuigiContainer extends HTMLElement {
|
|
|
280
279
|
* @param {Object} internal Luigi legacy data (optional)
|
|
281
280
|
* @since 1.5.0
|
|
282
281
|
*/
|
|
283
|
-
updateViewUrl(viewurl: string, internal?:
|
|
282
|
+
updateViewUrl(viewurl: string, internal?: Object): void;
|
|
284
283
|
|
|
285
284
|
/**
|
|
286
285
|
* Manually triggers the micro frontend rendering process when using defer-init attribute.
|
package/package.json
CHANGED