@yoobic/yobi 8.2.0-21 → 8.2.0-24

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.
@@ -399,13 +399,15 @@ const YooFormAutocompleteComponent = class {
399
399
  const search = ev.detail;
400
400
  const finalPageSize = 20;
401
401
  this.isLoading = true;
402
+ const formDynamic = findParent(this.host, 'yoo-form-dynamic');
402
403
  return this.customDataLoader({
403
404
  currentPage: search.currentPage,
404
405
  pageSize: finalPageSize,
405
406
  startDate: search.startDate,
406
407
  endDate: search.endDate,
407
408
  sortAndFilters: this.sortsAndFilters,
408
- search: search.search
409
+ search: search.search,
410
+ data: formDynamic.data
409
411
  }).then((ret) => {
410
412
  var _a, _b;
411
413
  if (search.currentPage === 0) {