Skip to content

Commit

Permalink
Merge branch 'main' into 3927-theme-property-in-luigicompoundcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
walmazacn authored Sep 24, 2024
2 parents 8377d59 + cdd4f4d commit 833e249
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
6 changes: 6 additions & 0 deletions container/typings/LuigiCompoundContainer.svelte.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ export default class LuigiCompoundContainer extends HTMLElement {
*/
deferInit: boolean;

/**
* The parameters to be passed to the compound micro frontend. Will not be passed to the compound children.
* @since 1.0.0
*/
nodeParams: Object;

/**
* If set to true, the Luigi compound container webcomponent will not use the shadow DOM for rendering.
* @since 1.2.0
Expand Down
2 changes: 1 addition & 1 deletion container/typings/LuigiContainer.svelte.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default class LuigiContainer extends HTMLElement {
skipInitCheck: boolean;

/**
* The parameters to be passed to the web-component-based micro frontend. Will not be passed to the compound children.
* The parameters to be passed to the web-component-based micro frontend.
* @since 1.0.0
*/
nodeParams: Object;
Expand Down
10 changes: 10 additions & 0 deletions docs/luigi-compound-container-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,16 @@ Type: [boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Glob

* **since**: 1.0.0

### nodeParams

The parameters to be passed to the compound micro frontend. Will not be passed to the compound children.

Type: [Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)

**Meta**

* **since**: 1.0.0

### noShadow

If set to true, the Luigi compound container webcomponent will not use the shadow DOM for rendering.
Expand Down
2 changes: 1 addition & 1 deletion docs/luigi-container-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Type: [boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Glob

### nodeParams

The parameters to be passed to the web-component-based micro frontend. Will not be passed to the compound children.
The parameters to be passed to the web-component-based micro frontend.

Type: [Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)

Expand Down

0 comments on commit 833e249

Please sign in to comment.