@topconsultnpm/sdkui-react-beta 6.8.64 → 6.8.65
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/lib/components/query/TMQueryEditor.js +0 -9
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/package.json +1 -1
|
@@ -573,15 +573,6 @@ const TMQueryEditor = ({ formMode, inputData, onQDChanged, runQdImmediately = fa
|
|
|
573
573
|
// #endregion
|
|
574
574
|
// #region Ricerca
|
|
575
575
|
const renderResultSearchForm = _jsx(TMQueryResultForm, { context: SearchResultContext.METADATA_SEARCH, onClose: () => { setShowResultSearch(false); }, isModal: isModal, result1: resultSearch, elapsedTime: elapsedTime, searchText: searchText });
|
|
576
|
-
const addHiddenSelectItem = (select, tid, mid) => {
|
|
577
|
-
if (select.findIndex(o => o.mid == mid) >= 0)
|
|
578
|
-
return;
|
|
579
|
-
let si = new SelectItem();
|
|
580
|
-
si.tid = tid;
|
|
581
|
-
si.mid = mid;
|
|
582
|
-
si.visibility = SelectItemVisibilities.Hidden;
|
|
583
|
-
select.push(si);
|
|
584
|
-
};
|
|
585
576
|
const onSearchAsync = async () => {
|
|
586
577
|
try {
|
|
587
578
|
const startTime = new Date().getTime();
|
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED