Files
madbase/control-plane-ui/node_modules/@mui/x-data-grid/modern/models/params/gridRowParams.js
Vlad Durnea cffdf8af86
Some checks failed
CI/CD Pipeline / unit-tests (push) Failing after 1m16s
CI/CD Pipeline / integration-tests (push) Failing after 2m32s
CI/CD Pipeline / lint (push) Successful in 5m22s
CI/CD Pipeline / e2e-tests (push) Has been skipped
CI/CD Pipeline / build (push) Has been skipped
wip:milestone 0 fixes
2026-03-15 12:35:42 +02:00

44 lines
1.6 KiB
JavaScript

/**
* Object passed as parameter in the row callbacks.
* @demos
* - [Master detail](/x/react-data-grid/master-detail/)
*/
/**
* Object passed as parameter in the row `getRowClassName` callback prop.
* @demos
* - [Styling rows](/x/react-data-grid/style/#styling-rows)
*/
/**
* Object passed as parameter in the row `getRowHeight` callback prop.
*/
/**
* The getRowHeight return value.
*/
var GridRowEditStartReasons = /*#__PURE__*/function (GridRowEditStartReasons) {
GridRowEditStartReasons["enterKeyDown"] = "enterKeyDown";
GridRowEditStartReasons["cellDoubleClick"] = "cellDoubleClick";
GridRowEditStartReasons["printableKeyDown"] = "printableKeyDown";
GridRowEditStartReasons["deleteKeyDown"] = "deleteKeyDown";
return GridRowEditStartReasons;
}(GridRowEditStartReasons || {});
/**
* Params passed to the `rowEditStart` event.
*/
var GridRowEditStopReasons = /*#__PURE__*/function (GridRowEditStopReasons) {
GridRowEditStopReasons["rowFocusOut"] = "rowFocusOut";
GridRowEditStopReasons["escapeKeyDown"] = "escapeKeyDown";
GridRowEditStopReasons["enterKeyDown"] = "enterKeyDown";
GridRowEditStopReasons["tabKeyDown"] = "tabKeyDown";
GridRowEditStopReasons["shiftTabKeyDown"] = "shiftTabKeyDown";
return GridRowEditStopReasons;
}(GridRowEditStopReasons || {});
/**
* Object passed as parameter in the row `getRowSpacing` callback prop.
* @demos
* - [Row spacing](/x/react-data-grid/row-height/#row-spacing)
*/
/**
* The getRowSpacing return value.
*/
// https://github.com/mui/mui-x/pull/3738#discussion_r798504277
export { GridRowEditStartReasons, GridRowEditStopReasons };