slickgrid-react
Version:
Slickgrid components made available in React
16 lines (12 loc) • 667 B
text/typescript
import type { RowDetailView as UniversalRowDetailView } from '@slickgrid-universal/common';
export interface RowDetailView extends UniversalRowDetailView {
/**
* Optionally pass your Parent Component reference to your Child Component (row detail component).
* note:: If anyone finds a better way of passing the parent to the row detail extension, please reach out and/or create a PR
*/
parentRef?: any;
/** View Model of the preload template which shows after opening row detail & before row detail data shows up */
preloadComponent?: any;
/** View Model template that will be loaded once the async function finishes */
viewComponent?: any;
}