@linzjs/step-ag-grid 31.2.3 → 31.2.4
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/README.md +2 -1
- package/dist/GridTheme.scss +5 -1
- package/package.json +1 -1
- package/src/styles/GridTheme.scss +5 -1
package/README.md
CHANGED
|
@@ -199,7 +199,7 @@ If you are editing a cell and tab out of the cell, the grid will edit the next e
|
|
|
199
199
|
|
|
200
200
|
At this point you can send the change to the back-end immediately and then wait for an update response
|
|
201
201
|
_OR_
|
|
202
|
-
you could cache the required change, update then cell locally, and then wait for the callback
|
|
202
|
+
you could cache the required change, update then cell locally, and then wait for the callback.
|
|
203
203
|
```<Grid onCellEditingComplete={fn}/>``` which will get invoked when the grid cannot find any
|
|
204
204
|
more editable cells on the grid row, which will speed up editing.
|
|
205
205
|
|
|
@@ -270,6 +270,7 @@ test("click Delete menu option removes row from the table", async () => {
|
|
|
270
270
|
});
|
|
271
271
|
```
|
|
272
272
|
|
|
273
|
+
|
|
273
274
|
## Playwright support
|
|
274
275
|
|
|
275
276
|
If your grid has a data-testid a global will be exposed in window with the helper scrollRowIntoViewById.
|
package/dist/GridTheme.scss
CHANGED
|
@@ -59,7 +59,11 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
|
|
|
59
59
|
);
|
|
60
60
|
|
|
61
61
|
.ag-theme-step-view-list-default,
|
|
62
|
-
.ag-theme-step-default.theme-specific
|
|
62
|
+
.ag-theme-step-default.theme-specific {
|
|
63
|
+
.ag-tooltip {
|
|
64
|
+
background-color: white !important;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
63
67
|
.ag-theme-step-compact.theme-specific {
|
|
64
68
|
// Don't hide the drag handle
|
|
65
69
|
.ag-drag-handle.ag-row-drag {
|
package/package.json
CHANGED
|
@@ -59,7 +59,11 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
|
|
|
59
59
|
);
|
|
60
60
|
|
|
61
61
|
.ag-theme-step-view-list-default,
|
|
62
|
-
.ag-theme-step-default.theme-specific
|
|
62
|
+
.ag-theme-step-default.theme-specific {
|
|
63
|
+
.ag-tooltip {
|
|
64
|
+
background-color: white !important;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
63
67
|
.ag-theme-step-compact.theme-specific {
|
|
64
68
|
// Don't hide the drag handle
|
|
65
69
|
.ag-drag-handle.ag-row-drag {
|