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