@smartbit4all/ng-client 3.3.55 → 3.3.57

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.
@@ -6673,6 +6673,7 @@ class SmartformLayoutDefinitionService {
6673
6673
  isPassword: layoutDefinition.isPassword,
6674
6674
  selection: layoutDefinition.selection,
6675
6675
  hint: layoutDefinition.hint,
6676
+ maxLength: layoutDefinition.maxLength,
6676
6677
  };
6677
6678
  return widget;
6678
6679
  }
@@ -13429,7 +13430,7 @@ class SmartFilterEditorContentComponent {
13429
13430
  this.saveFilter();
13430
13431
  });
13431
13432
  this.simpleFilterRef.instance.sophisticatedValueChange?.pipe(takeUntil(this._destroy$)).subscribe((change) => {
13432
- if (change.kind === 'selection') {
13433
+ if (change.kind === 'selection' && !change.key.includes('selectedValues')) {
13433
13434
  this.saveFilter();
13434
13435
  }
13435
13436
  });