@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
37 lines (35 loc) • 934 B
JavaScript
// eslint-disable-next-line import/prefer-default-export
const actionTemplates = {
refresh: {
id: 'dpr-button-refresh',
disabled: false,
text: 'Refresh',
ariaLabelText: 'Refresh report',
},
printable: {
id: 'dpr-button-printable',
disabled: false,
text: 'Print screen',
ariaLabelText: 'Print screen',
},
sharable: {
id: 'dpr-button-sharable',
disabled: true,
text: 'Email report link',
ariaLabelText: 'Email report link',
},
copy: {
id: 'dpr-button-copy',
disabled: false,
text: 'Copy report link',
ariaLabelText: 'Copy report link',
},
downloadable: {
id: 'dpr-button-downloadable',
disabled: false,
text: 'Download',
ariaLabelText: 'Download report',
},
};
export { actionTemplates };
//# sourceMappingURL=actionsTemplate.js.map