chrv-components 1.12.101 → 1.12.102

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.
Binary file
@@ -5116,7 +5116,7 @@ class ChrButtonComponent {
5116
5116
  this.onAction = output();
5117
5117
  this.loading = model(false, /* @ts-ignore */
5118
5118
  ...(ngDevMode ? [{ debugName: "loading" }] : /* istanbul ignore next */ []));
5119
- this.handleClick = (event) => {
5119
+ this.handleClick = (event = null) => {
5120
5120
  this.loading.set(true);
5121
5121
  const click = this.action();
5122
5122
  const result = typeof click === 'function' ? click() : click;