@updog/data-editor 0.1.76 → 0.1.77
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/index.d.ts +2 -0
- package/index.js +2189 -2178
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2698,6 +2698,8 @@ declare class DataStore<TRow extends DataEditorRow = DataEditorRow> {
|
|
|
2698
2698
|
hasEmptyCells(rowId: TRowId): boolean;
|
|
2699
2699
|
hasRowMisplaced(rowId: TRowId): boolean;
|
|
2700
2700
|
getRowsWithMisplaced(): ReadonlySet<TRowId>;
|
|
2701
|
+
/** A column arriving or leaving invalidates every entry. See NOTES.md. */
|
|
2702
|
+
private recheckEmptyCellsAfterColumnsChange;
|
|
2701
2703
|
private checkRowEmptyCells;
|
|
2702
2704
|
getValidAndInvalidRows(): {
|
|
2703
2705
|
valid: TRow[];
|