@linzjs/step-ag-grid 7.3.2 → 7.4.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/dist/index.js CHANGED
@@ -24375,6 +24375,11 @@ var findQuick = function (filter, container) { return __awaiter(void 0, void 0,
24375
24375
  });
24376
24376
  }); };
24377
24377
 
24378
+ var countRows = function (within) { return __awaiter(void 0, void 0, void 0, function () {
24379
+ return __generator(this, function (_a) {
24380
+ return [2 /*return*/, getAllQuick({ tagName: "div[row-id]:not(:empty)" }, within).length];
24381
+ });
24382
+ }); };
24378
24383
  var findRow = function (rowId, within) { return __awaiter(void 0, void 0, void 0, function () {
24379
24384
  return __generator(this, function (_a) {
24380
24385
  return [2 /*return*/, findQuick({ tagName: "div[row-id='".concat(rowId, "']:not(:empty)") }, within)];
@@ -24427,7 +24432,7 @@ var findCell = function (rowId, colId, within) { return __awaiter(void 0, void 0
24427
24432
  }
24428
24433
  });
24429
24434
  }); };
24430
- var cellContains = function (rowId, colId, text, within) { return __awaiter(void 0, void 0, void 0, function () {
24435
+ var findCellContains = function (rowId, colId, text, within) { return __awaiter(void 0, void 0, void 0, function () {
24431
24436
  return __generator(this, function (_a) {
24432
24437
  switch (_a.label) {
24433
24438
  case 0: return [4 /*yield*/, waitForWrapper(function () { return __awaiter(void 0, void 0, void 0, function () {
@@ -24721,16 +24726,17 @@ exports.bearingCorrectionValueFormatter = bearingCorrectionValueFormatter;
24721
24726
  exports.bearingNumberParser = bearingNumberParser;
24722
24727
  exports.bearingStringValidator = bearingStringValidator;
24723
24728
  exports.bearingValueFormatter = bearingValueFormatter;
24724
- exports.cellContains = cellContains;
24725
24729
  exports.clickActionButton = clickActionButton;
24726
24730
  exports.clickMenuOption = clickMenuOption;
24727
24731
  exports.clickMultiSelectOption = clickMultiSelectOption;
24728
24732
  exports.closeMenu = closeMenu;
24729
24733
  exports.convertDDToDMS = convertDDToDMS;
24734
+ exports.countRows = countRows;
24730
24735
  exports.deselectRow = deselectRow;
24731
24736
  exports.editCell = editCell;
24732
24737
  exports.findActionButton = findActionButton;
24733
24738
  exports.findCell = findCell;
24739
+ exports.findCellContains = findCellContains;
24734
24740
  exports.findMenuOption = findMenuOption;
24735
24741
  exports.findMultiSelectOption = findMultiSelectOption;
24736
24742
  exports.findRow = findRow;