@luigi-project/client 2.3.0 → 2.3.1-dev.20230810033

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.
@@ -383,6 +383,11 @@ export declare interface Options {
383
383
  *if `true` shadowRoot mode is "open" otherwise shadowRoot mode is "closed".
384
384
  */
385
385
  openShadow: boolean;
386
+
387
+ /**
388
+ * if `true` LuigiClient initialization will be defered, until `LuigiClient.luigiClientInit()` will be called.
389
+ */
390
+ deferLuigiClientWCInit: boolean;
386
391
  }
387
392
 
388
393
  /**
package/luigi-element.js CHANGED
@@ -10,6 +10,7 @@ export class LuigiElement extends HTMLElement {
10
10
  delegatesFocus: false
11
11
  });
12
12
  this.__initialized = false;
13
+ this.deferLuigiClientWCInit = options ? options.deferLuigiClientWCInit : false;
13
14
  }
14
15
 
15
16
  /**
package/package.json CHANGED
@@ -17,5 +17,5 @@
17
17
  "micro-frontends",
18
18
  "microfrontends"
19
19
  ],
20
- "version": "2.3.0"
20
+ "version": "2.3.1-dev.20230810033"
21
21
  }