@elderbyte/ngx-starter 19.1.25 → 19.1.27

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.
@@ -18183,9 +18183,12 @@ class ElderTableActivationDirective {
18183
18183
  * *
18184
18184
  **************************************************************************/
18185
18185
  set activationOptions(options) {
18186
- this._activationOptions = InputUtils.isNoInputArgs(options)
18187
- ? options
18188
- : {};
18186
+ if (InputUtils.isNoInputArgs(options)) {
18187
+ this._activationOptions = {};
18188
+ }
18189
+ else {
18190
+ this._activationOptions = options;
18191
+ }
18189
18192
  }
18190
18193
  get activationOptions() {
18191
18194
  return this._activationOptions;