@abgov/jsonforms-components 2.13.1 → 2.13.2

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.
Files changed (2) hide show
  1. package/index.esm.js +5 -2
  2. package/package.json +1 -1
package/index.esm.js CHANGED
@@ -10323,7 +10323,10 @@ const ListWithDetailsControl = props => {
10323
10323
  setOpen(false);
10324
10324
  // eslint-disable-next-line
10325
10325
  }, [setOpen, path, rowData, rowData]);
10326
- const deleteTitle = props.translations !== null && props.translations.deleteDialogTitle !== undefined ? props.translations.deleteDialogTitle : '';
10326
+ // const deleteTitle =
10327
+ // props.translations !== null && props.translations.deleteDialogTitle !== undefined
10328
+ // ? props.translations.deleteDialogTitle
10329
+ // : '';
10327
10330
  return jsxs(Visible, {
10328
10331
  visible: visible,
10329
10332
  children: [jsx(ListWithDetailControl, Object.assign({}, props, {
@@ -10335,7 +10338,7 @@ const ListWithDetailsControl = props => {
10335
10338
  open: open,
10336
10339
  onCancel: deleteCancel,
10337
10340
  onConfirm: deleteConfirm,
10338
- title: deleteTitle,
10341
+ title: 'Delete confirmation',
10339
10342
  message: `Are you sure you wish to delete ${name}`
10340
10343
  })]
10341
10344
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abgov/jsonforms-components",
3
- "version": "2.13.1",
3
+ "version": "2.13.2",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Government of Alberta - React renderers for JSON Forms based on the design system.",
6
6
  "repository": "https://github.com/GovAlta/adsp-monorepo",