@linzjs/step-ag-grid 7.11.1 → 7.11.2
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 +13 -16
- package/dist/index.js.map +1 -1
- package/dist/step-ag-grid.esm.js +13 -16
- package/dist/step-ag-grid.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/utils/testUtil.ts +0 -1
package/dist/step-ag-grid.esm.js
CHANGED
|
@@ -24580,25 +24580,22 @@ var selectCell = function (rowId, colId, within) { return __awaiter(void 0, void
|
|
|
24580
24580
|
var editCell = function (rowId, colId, within) { return __awaiter(void 0, void 0, void 0, function () {
|
|
24581
24581
|
return __generator(this, function (_a) {
|
|
24582
24582
|
switch (_a.label) {
|
|
24583
|
-
case 0: return [4 /*yield*/,
|
|
24583
|
+
case 0: return [4 /*yield*/, act(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
24584
|
+
var cell;
|
|
24585
|
+
return __generator(this, function (_a) {
|
|
24586
|
+
switch (_a.label) {
|
|
24587
|
+
case 0: return [4 /*yield*/, findCell(rowId, colId, within)];
|
|
24588
|
+
case 1:
|
|
24589
|
+
cell = _a.sent();
|
|
24590
|
+
userEvent.dblClick(cell);
|
|
24591
|
+
return [2 /*return*/];
|
|
24592
|
+
}
|
|
24593
|
+
});
|
|
24594
|
+
}); })];
|
|
24584
24595
|
case 1:
|
|
24585
|
-
_a.sent();
|
|
24586
|
-
return [4 /*yield*/, act(function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
24587
|
-
var cell;
|
|
24588
|
-
return __generator(this, function (_a) {
|
|
24589
|
-
switch (_a.label) {
|
|
24590
|
-
case 0: return [4 /*yield*/, findCell(rowId, colId, within)];
|
|
24591
|
-
case 1:
|
|
24592
|
-
cell = _a.sent();
|
|
24593
|
-
userEvent.dblClick(cell);
|
|
24594
|
-
return [2 /*return*/];
|
|
24595
|
-
}
|
|
24596
|
-
});
|
|
24597
|
-
}); })];
|
|
24598
|
-
case 2:
|
|
24599
24596
|
_a.sent();
|
|
24600
24597
|
return [4 /*yield*/, waitForWrapper(findOpenMenu)];
|
|
24601
|
-
case
|
|
24598
|
+
case 2:
|
|
24602
24599
|
_a.sent();
|
|
24603
24600
|
return [2 /*return*/];
|
|
24604
24601
|
}
|