@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.
- package/fesm2022/mediusinc-mng-commons-core.mjs +48 -10
- package/fesm2022/mediusinc-mng-commons-core.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons-form.mjs +2 -4
- package/fesm2022/mediusinc-mng-commons-form.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons-table-api.mjs.map +1 -1
- package/fesm2022/{mediusinc-mng-commons-table-column-toggle.component-BZU9-ZJV.mjs → mediusinc-mng-commons-table-column-toggle.component-4BDcYyDd.mjs} +2 -2
- 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
- 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
- package/fesm2022/mediusinc-mng-commons-table-mediusinc-mng-commons-table-DoXp48ZT.mjs.map +1 -0
- package/fesm2022/mediusinc-mng-commons-table.mjs +1 -1
- package/fesm2022/mediusinc-mng-commons-tableview-api.mjs +18 -0
- package/fesm2022/mediusinc-mng-commons-tableview-api.mjs.map +1 -1
- package/fesm2022/mediusinc-mng-commons-tableview.mjs +27 -11
- package/fesm2022/mediusinc-mng-commons-tableview.mjs.map +1 -1
- package/i18n/en.json +2 -1
- package/i18n/sl.json +2 -1
- package/package.json +1 -1
- package/types/mediusinc-mng-commons-core.d.ts +5 -0
- package/types/mediusinc-mng-commons-table.d.ts +5 -2
- package/types/mediusinc-mng-commons-tableview-api.d.ts +12 -2
- package/types/mediusinc-mng-commons-tableview.d.ts +4 -1
- package/version-info.json +5 -5
- 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
|
-
|
|
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
|
}
|