@linzjs/step-ag-grid 7.19.4 → 7.19.6

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.
@@ -4387,7 +4387,7 @@ var GridFormTextInput = function (props) {
4387
4387
  invalid: invalid,
4388
4388
  save: save
4389
4389
  }).popoverWrapper;
4390
- return popoverWrapper(jsx("div", __assign({ style: { display: "flex", flexDirection: "row", width: (_b = props.width) !== null && _b !== void 0 ? _b : 240 }, className: "FormTest subComponent" }, { children: jsx(TextInputFormatted, { value: value, onChange: function (e) { return setValue(e.target.value); }, error: invalid(), formatted: props.units, style: { width: "100%" }, placeholder: props.placeholder, helpText: helpText }) })));
4390
+ return popoverWrapper(jsx("div", __assign({ style: { display: "flex", flexDirection: "row" }, className: "FormTest subComponent" }, { children: jsx(TextInputFormatted, { value: value, onChange: function (e) { return setValue(e.target.value); }, error: invalid(), formatted: props.units, style: { width: (_b = props.width) !== null && _b !== void 0 ? _b : 240 }, placeholder: props.placeholder, helpText: helpText }) })));
4391
4391
  };
4392
4392
 
4393
4393
  var GridPopoverTextInput = function (colDef, params) {
@@ -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 () {