1 /** 2 * The type of Redux action which closes a dialog 3 * 4 * { 5 * type: HIDE_DIALOG 6 * } 7 */ 8 export const HIDE_DIALOG = 'HIDE_DIALOG'; 9 10 /** 11 * The type of Redux action which closes a sheet. 12 * 13 * { 14 * type: HIDE_SHEET 15 * } 16 */ 17 export const HIDE_SHEET = 'HIDE_SHEET'; 18 19 /** 20 * The type of Redux action which begins a request to open a dialog. 21 * 22 * { 23 * type: OPEN_DIALOG, 24 * component: React.Component, 25 * props: PropTypes 26 * } 27 * 28 */ 29 export const OPEN_DIALOG = 'OPEN_DIALOG'; 30 31 /** 32 * The type of Redux action which begins a request to open a sheet. 33 * 34 * { 35 * type: OPEN_SHEET, 36 * component: React.Component, 37 * props: PropTypes 38 * } 39 * 40 */ 41 export const OPEN_SHEET = 'OPEN_SHEET';