@linzjs/step-ag-grid 7.19.3 → 7.19.5

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.
@@ -3709,9 +3709,9 @@ var GridFormMultiSelect = function (props) {
3709
3709
  }), popoverWrapper = _e.popoverWrapper, triggerSave = _e.triggerSave;
3710
3710
  return popoverWrapper(jsx(ComponentLoadingWrapper, __assign({ loading: !options, className: "GridFormMultiSelect-container" }, { children: options && (jsxs(Fragment$1, { children: [props.filtered && (jsx(FilterInput, __assign({}, { headerGroups: headerGroups, options: options, setOptions: setOptions, filter: filter, setFilter: setFilter, triggerSave: triggerSave }, { filterHelpText: props.filterHelpText, onSelectFilter: props.onSelectFilter, filterPlaceholder: props.filterPlaceholder }))), headerGroups && (jsx("div", __assign({ className: "GridFormMultiSelect-options" }, { children: headers.map(function (header, index) {
3711
3711
  var subOptions = headerGroups["".concat(header.filter)];
3712
- return (!isEmpty(subOptions) && (jsxs(Fragment$1, { children: [header.header && jsx(MenuHeader, { children: header.header }, "header_".concat(index)), subOptions.map(function (item, index) {
3712
+ return (!isEmpty(subOptions) && (jsxs(Fragment, { children: [header.header && jsx(MenuHeader, { children: header.header }), subOptions.map(function (item, index) {
3713
3713
  return item.value === MenuSeparatorString ? (jsx(MenuDivider, {}, "div_".concat(index))) : (jsxs(Fragment, { children: [jsx(MenuRadioItem, { item: item, options: options, setOptions: setOptions }), item.checked && item.subComponent && (jsx(MenuSubComponent, __assign({}, { item: item, options: options, setOptions: setOptions, data: data, triggerSave: triggerSave }, { subComponentIsValid: subComponentIsValidRef.current })))] }, "val_".concat(item.value)));
3714
- })] })));
3714
+ })] }, "group_".concat(index))));
3715
3715
  }) })))] })) })));
3716
3716
  };
3717
3717
  var FilterInput = function (props) {
@@ -24498,8 +24498,23 @@ var countRows = function (within) { return __awaiter(void 0, void 0, void 0, fun
24498
24498
  });
24499
24499
  }); };
24500
24500
  var findRow = function (rowId, within) { return __awaiter(void 0, void 0, void 0, function () {
24501
+ var row;
24501
24502
  return __generator(this, function (_a) {
24502
- return [2 /*return*/, findQuick({ tagName: "div[row-id='".concat(rowId, "']:not(:empty)") }, within)];
24503
+ switch (_a.label) {
24504
+ case 0: return [4 /*yield*/, act(function () { return __awaiter(void 0, void 0, void 0, function () {
24505
+ return __generator(this, function (_a) {
24506
+ switch (_a.label) {
24507
+ case 0: return [4 /*yield*/, findQuick({ tagName: "div[row-id='".concat(rowId, "']:not(:empty)") }, within)];
24508
+ case 1:
24509
+ row = _a.sent();
24510
+ return [2 /*return*/];
24511
+ }
24512
+ });
24513
+ }); })];
24514
+ case 1:
24515
+ _a.sent();
24516
+ return [2 /*return*/, row];
24517
+ }
24503
24518
  });
24504
24519
  }); };
24505
24520
  var queryRow = function (rowId, within) { return __awaiter(void 0, void 0, void 0, function () {