udp-react-enterprise-component-library 25.18.1-beta.79 → 25.18.1-beta.80
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/dist/{UdpTransactionTypesPage-BS8Nji4M.js → UdpTransactionTypesPage-CksJs2fe.js} +16 -1
- package/dist/UdpTransactionTypesPage-CksJs2fe.js.map +1 -0
- package/dist/{UdpTransactionsPage-DXhT7CVV.js → UdpTransactionsPage-7r0fyOpo.js} +39 -13
- package/dist/UdpTransactionsPage-7r0fyOpo.js.map +1 -0
- package/dist/index.js +1 -1
- package/dist/types/src/maintenanceEngine/tableBrowser/TableColumnDefs.d.ts +1 -1
- package/dist/types/src/maintenanceEngine/tableBrowser/TableColumnDefs.d.ts.map +1 -1
- package/dist/types/src/udp/pages/UdpTransactionTypesPage/UdpTransactionTypesPage.d.ts.map +1 -1
- package/dist/types/src/udp/pages/UdpTransactionTypesPage/forms/UdpTransactionTypeForm.d.ts.map +1 -1
- package/dist/types/src/udp/pages/UdpTransactionsPage/UdpTransactionGrid.d.ts.map +1 -1
- package/dist/types/src/udp/utilities/useDateStringColumnDef.d.ts +1 -1
- package/dist/types/src/utilities/transactions/useTransactionEngine.d.ts +2 -0
- package/dist/types/src/utilities/transactions/useTransactionEngine.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/dist/udp/pages/UdpPages/index.js +2 -2
- package/dist/udp/pages/UdpTransactionTypesPage/index.js +1 -1
- package/dist/udp/pages/UdpTransactionsPage/index.js +1 -1
- package/export-map.json +1 -1
- package/package.json +1 -1
- package/dist/UdpTransactionTypesPage-BS8Nji4M.js.map +0 -1
- package/dist/UdpTransactionsPage-DXhT7CVV.js.map +0 -1
|
@@ -158,6 +158,14 @@ const UdpTransactionTypeForm = (props, ref) => {
|
|
|
158
158
|
options: domainFieldOptions || [],
|
|
159
159
|
getOptionLabelFunction: (option) => option,
|
|
160
160
|
helperText: t("Field property to be used in transaction page labels")
|
|
161
|
+
}), /* @__PURE__ */ React.createElement(LayoutUnit, { unit: "nudge" }), /* @__PURE__ */ React.createElement(FormControlLabel, {
|
|
162
|
+
control: /* @__PURE__ */ React.createElement(Field$1, {
|
|
163
|
+
component: Switch,
|
|
164
|
+
id: "archiveOnCancel",
|
|
165
|
+
name: "archiveOnCancel",
|
|
166
|
+
type: "checkbox"
|
|
167
|
+
}),
|
|
168
|
+
label: t("Archive on Cancel")
|
|
161
169
|
}), /* @__PURE__ */ React.createElement(LayoutUnit, { unit: "nudge" }), /* @__PURE__ */ React.createElement(FormControlLabel, {
|
|
162
170
|
control: /* @__PURE__ */ React.createElement(Field$1, {
|
|
163
171
|
component: Switch,
|
|
@@ -3421,6 +3429,13 @@ const UdpTransactionTypesPage = () => {
|
|
|
3421
3429
|
sortable: false,
|
|
3422
3430
|
cellDataType: "boolean"
|
|
3423
3431
|
},
|
|
3432
|
+
{
|
|
3433
|
+
headerName: t("Archived on Cancel"),
|
|
3434
|
+
field: "archiveOnCancel",
|
|
3435
|
+
resizable: true,
|
|
3436
|
+
sortable: false,
|
|
3437
|
+
cellDataType: "boolean"
|
|
3438
|
+
},
|
|
3424
3439
|
{
|
|
3425
3440
|
headerName: t("Field Label"),
|
|
3426
3441
|
field: "domainFieldLabel",
|
|
@@ -3719,4 +3734,4 @@ var UdpTransactionTypesPage_exports = /* @__PURE__ */ __exportAll({ default: ()
|
|
|
3719
3734
|
|
|
3720
3735
|
//#endregion
|
|
3721
3736
|
export { UdpTransactionTypesPage_default as n, UdpTransactionTypesPage_exports as t };
|
|
3722
|
-
//# sourceMappingURL=UdpTransactionTypesPage-
|
|
3737
|
+
//# sourceMappingURL=UdpTransactionTypesPage-CksJs2fe.js.map
|