@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.
- package/esm2020/lib/smart-filter-editor/smart-filter-editor-content/smart-filter-editor-content.component.mjs +2 -2
- package/esm2020/lib/smart-form/api/model/smartWidgetDefinition.mjs +1 -1
- package/esm2020/lib/smart-form/services/smartform.layout-definition.service.mjs +2 -1
- package/fesm2015/smartbit4all-ng-client.mjs +2 -1
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +2 -1
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-form/api/model/smartWidgetDefinition.d.ts +1 -0
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.57.tgz +0 -0
- package/smartbit4all-ng-client-3.3.55.tgz +0 -0
|
@@ -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
|
});
|