@abgov/jsonforms-components 2.12.1 → 2.13.1
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.
- package/index.esm.js +13 -14
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -8593,7 +8593,7 @@ const FileUploader = _ref => {
|
|
|
8593
8593
|
uischema
|
|
8594
8594
|
} = _ref,
|
|
8595
8595
|
props = _objectWithoutPropertiesLoose(_ref, _excluded$3);
|
|
8596
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u;
|
|
8596
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0;
|
|
8597
8597
|
const enumerators = useContext(JsonFormContext);
|
|
8598
8598
|
const uploadTriggerFunction = (_a = enumerators === null || enumerators === void 0 ? void 0 : enumerators.functions) === null || _a === void 0 ? void 0 : _a.get('upload-file');
|
|
8599
8599
|
const uploadTrigger = uploadTriggerFunction && uploadTriggerFunction();
|
|
@@ -8617,9 +8617,11 @@ const FileUploader = _ref => {
|
|
|
8617
8617
|
const propertyId = i18nKeyPrefix;
|
|
8618
8618
|
const variant = ((_d = uischema === null || uischema === void 0 ? void 0 : uischema.options) === null || _d === void 0 ? void 0 : _d.variant) || 'button';
|
|
8619
8619
|
const noDownloadButton = (_f = (_e = uischema === null || uischema === void 0 ? void 0 : uischema.options) === null || _e === void 0 ? void 0 : _e.format) === null || _f === void 0 ? void 0 : _f.noDownloadButton;
|
|
8620
|
+
const noDownloadButtonInReview = (_j = (_h = (_g = uischema === null || uischema === void 0 ? void 0 : uischema.options) === null || _g === void 0 ? void 0 : _g.format) === null || _h === void 0 ? void 0 : _h.review) === null || _j === void 0 ? void 0 : _j.noDownloadButton;
|
|
8621
|
+
const noDeleteButton = (_m = (_l = (_k = uischema === null || uischema === void 0 ? void 0 : uischema.options) === null || _k === void 0 ? void 0 : _k.format) === null || _l === void 0 ? void 0 : _l.review) === null || _m === void 0 ? void 0 : _m.noDeleteButton;
|
|
8620
8622
|
const [deleteHide, setDeleteHide] = useState(false);
|
|
8621
|
-
const fileListLength = fileList && ((
|
|
8622
|
-
const maxFiles = (
|
|
8623
|
+
const fileListLength = fileList && ((_o = fileList[props.i18nKeyPrefix]) === null || _o === void 0 ? void 0 : _o.length) || 0;
|
|
8624
|
+
const maxFiles = (_r = (_q = (_p = uischema === null || uischema === void 0 ? void 0 : uischema.options) === null || _p === void 0 ? void 0 : _p.componentProps) === null || _q === void 0 ? void 0 : _q.maximum) !== null && _r !== void 0 ? _r : 1;
|
|
8623
8625
|
const isMultiFile = maxFiles > 1;
|
|
8624
8626
|
function uploadFile(file) {
|
|
8625
8627
|
if (!uploadTrigger) return;
|
|
@@ -8678,13 +8680,13 @@ const FileUploader = _ref => {
|
|
|
8678
8680
|
const timeoutId = setTimeout(delayedFunction, 1);
|
|
8679
8681
|
return () => clearTimeout(timeoutId);
|
|
8680
8682
|
}, [handleChange, fileList, propertyId]);
|
|
8681
|
-
const readOnly = ((
|
|
8682
|
-
const maxFileSize = (
|
|
8683
|
-
const accept = (
|
|
8683
|
+
const readOnly = ((_t = (_s = uischema === null || uischema === void 0 ? void 0 : uischema.options) === null || _s === void 0 ? void 0 : _s.componentProps) === null || _t === void 0 ? void 0 : _t.readOnly) === true || (props === null || props === void 0 ? void 0 : props.isStepperReview) === true || user === null;
|
|
8684
|
+
const maxFileSize = (_w = (_v = (_u = uischema === null || uischema === void 0 ? void 0 : uischema.options) === null || _u === void 0 ? void 0 : _u.componentProps) === null || _v === void 0 ? void 0 : _v.maxFileSize) !== null && _w !== void 0 ? _w : '';
|
|
8685
|
+
const accept = (_z = (_y = (_x = uischema === null || uischema === void 0 ? void 0 : uischema.options) === null || _x === void 0 ? void 0 : _x.componentProps) === null || _y === void 0 ? void 0 : _y.accept) !== null && _z !== void 0 ? _z : '';
|
|
8684
8686
|
if (!enumerators) {
|
|
8685
8687
|
return jsx(Fragment, {});
|
|
8686
8688
|
}
|
|
8687
|
-
const helpText = (
|
|
8689
|
+
const helpText = (_0 = uischema === null || uischema === void 0 ? void 0 : uischema.options) === null || _0 === void 0 ? void 0 : _0.help;
|
|
8688
8690
|
const sentenceCaseLabel = convertToSentenceCase(label);
|
|
8689
8691
|
const DownloadFileWidget = ({
|
|
8690
8692
|
index
|
|
@@ -8693,7 +8695,7 @@ const FileUploader = _ref => {
|
|
|
8693
8695
|
const [showFileDeleteConfirmation, setShowFileDeleteConfirmation] = useState(false);
|
|
8694
8696
|
return jsx("div", {
|
|
8695
8697
|
children: readOnly ? jsxs(AttachmentBorderDisabled, {
|
|
8696
|
-
children: [getFileName(index), jsx(GoAContextMenuIcon, {
|
|
8698
|
+
children: [getFileName(index), noDownloadButtonInReview !== true && jsx(GoAContextMenuIcon, {
|
|
8697
8699
|
testId: "download-icon",
|
|
8698
8700
|
title: "Download",
|
|
8699
8701
|
type: "download",
|
|
@@ -8708,7 +8710,7 @@ const FileUploader = _ref => {
|
|
|
8708
8710
|
title: "Download",
|
|
8709
8711
|
type: "download",
|
|
8710
8712
|
onClick: () => downloadFile(getFile(index))
|
|
8711
|
-
}), jsx(GoAContextMenuIcon, {
|
|
8713
|
+
}), noDeleteButton !== true && jsx(GoAContextMenuIcon, {
|
|
8712
8714
|
"data-testid": "delete-icon",
|
|
8713
8715
|
title: "Delete",
|
|
8714
8716
|
type: "trash",
|
|
@@ -10289,7 +10291,6 @@ class ListWithDetailControl extends React.Component {
|
|
|
10289
10291
|
}
|
|
10290
10292
|
|
|
10291
10293
|
const ListWithDetailsControl = props => {
|
|
10292
|
-
var _a, _b;
|
|
10293
10294
|
const [open, setOpen] = useState(false);
|
|
10294
10295
|
const [path, setPath] = useState();
|
|
10295
10296
|
const [name, setName] = useState();
|
|
@@ -10322,9 +10323,7 @@ const ListWithDetailsControl = props => {
|
|
|
10322
10323
|
setOpen(false);
|
|
10323
10324
|
// eslint-disable-next-line
|
|
10324
10325
|
}, [setOpen, path, rowData, rowData]);
|
|
10325
|
-
|
|
10326
|
-
props.translations.deleteDialogTitle = '';
|
|
10327
|
-
}
|
|
10326
|
+
const deleteTitle = props.translations !== null && props.translations.deleteDialogTitle !== undefined ? props.translations.deleteDialogTitle : '';
|
|
10328
10327
|
return jsxs(Visible, {
|
|
10329
10328
|
visible: visible,
|
|
10330
10329
|
children: [jsx(ListWithDetailControl, Object.assign({}, props, {
|
|
@@ -10336,7 +10335,7 @@ const ListWithDetailsControl = props => {
|
|
|
10336
10335
|
open: open,
|
|
10337
10336
|
onCancel: deleteCancel,
|
|
10338
10337
|
onConfirm: deleteConfirm,
|
|
10339
|
-
title:
|
|
10338
|
+
title: deleteTitle,
|
|
10340
10339
|
message: `Are you sure you wish to delete ${name}`
|
|
10341
10340
|
})]
|
|
10342
10341
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abgov/jsonforms-components",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.13.1",
|
|
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",
|