Skip to content

Commit

Permalink
chore: update lib build with new features for listeners in stencil 4.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
colinscz committed Nov 6, 2023
1 parent 479d67f commit 0d63c52
Show file tree
Hide file tree
Showing 3 changed files with 422 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ export const proxyInputs = (Cmp: any, inputs: string[]) => {
set(val: any) {
this.z.runOutsideAngular(() => (this.el[item] = val));
},
/**
* In the event that proxyInputs is called
* multiple times re-defining these inputs
* will cause an error to be thrown. As a result
* we set configurable: true to indicate these
* properties can be changed.
*/
configurable: true,
});
});
};
Expand Down
Loading

0 comments on commit 0d63c52

Please sign in to comment.