@mediusinc/mng-commons 7.2.1 → 7.3.0

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.
Files changed (23) hide show
  1. package/fesm2022/mediusinc-mng-commons-core.mjs +48 -10
  2. package/fesm2022/mediusinc-mng-commons-core.mjs.map +1 -1
  3. package/fesm2022/mediusinc-mng-commons-form.mjs +2 -4
  4. package/fesm2022/mediusinc-mng-commons-form.mjs.map +1 -1
  5. package/fesm2022/mediusinc-mng-commons-table-api.mjs.map +1 -1
  6. package/fesm2022/{mediusinc-mng-commons-table-column-toggle.component-BZU9-ZJV.mjs → mediusinc-mng-commons-table-column-toggle.component-4BDcYyDd.mjs} +2 -2
  7. package/fesm2022/{mediusinc-mng-commons-table-column-toggle.component-BZU9-ZJV.mjs.map → mediusinc-mng-commons-table-column-toggle.component-4BDcYyDd.mjs.map} +1 -1
  8. package/fesm2022/{mediusinc-mng-commons-table-mediusinc-mng-commons-table-D-cGtZ6e.mjs → mediusinc-mng-commons-table-mediusinc-mng-commons-table-DoXp48ZT.mjs} +28 -12
  9. package/fesm2022/mediusinc-mng-commons-table-mediusinc-mng-commons-table-DoXp48ZT.mjs.map +1 -0
  10. package/fesm2022/mediusinc-mng-commons-table.mjs +1 -1
  11. package/fesm2022/mediusinc-mng-commons-tableview-api.mjs +18 -0
  12. package/fesm2022/mediusinc-mng-commons-tableview-api.mjs.map +1 -1
  13. package/fesm2022/mediusinc-mng-commons-tableview.mjs +27 -11
  14. package/fesm2022/mediusinc-mng-commons-tableview.mjs.map +1 -1
  15. package/i18n/en.json +2 -1
  16. package/i18n/sl.json +2 -1
  17. package/package.json +1 -1
  18. package/types/mediusinc-mng-commons-core.d.ts +5 -0
  19. package/types/mediusinc-mng-commons-table.d.ts +5 -2
  20. package/types/mediusinc-mng-commons-tableview-api.d.ts +12 -2
  21. package/types/mediusinc-mng-commons-tableview.d.ts +4 -1
  22. package/version-info.json +5 -5
  23. package/fesm2022/mediusinc-mng-commons-table-mediusinc-mng-commons-table-D-cGtZ6e.mjs.map +0 -1
@@ -1008,10 +1008,8 @@ class DropdownComponent {
1008
1008
  .subscribe(v => this.searchItems(v));
1009
1009
  this.fetchItems();
1010
1010
  effect(() => {
1011
- if (this.allowInput()) {
1012
- if (this.optionsLabelProperty() && !this.optionsValueProperty()) {
1013
- throw new CommonsInternalError(`allowInput is not supported when optionsLabelProperty is defined but optionsValueProperty is missing. Set optionsValueProperty to enable allowInput.`);
1014
- }
1011
+ if (this.allowInput() && this.optionsLabelProperty() && !this.optionsValueProperty()) {
1012
+ throw new CommonsInternalError(`allowInput is not supported when optionsLabelProperty is defined but optionsValueProperty is missing. Set optionsValueProperty to enable allowInput.`);
1015
1013
  }
1016
1014
  });
1017
1015
  }