@agilemotion/oui-react-js 1.6.1 → 1.6.3
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/ApplicationManager.js +698 -421
- package/dist/BasicApp.js +5 -5
- package/dist/BasicAppHome.js +55 -26
- package/dist/DynamicJS.js +147 -65
- package/dist/InteractionPortalApp.css +1 -1
- package/dist/InteractionPortalApp.js +5 -5
- package/dist/InteractionPortalAppHome.js +57 -22
- package/dist/InteractionPortalApp_old.js +107 -61
- package/dist/RestUtils.js +339 -287
- package/dist/TypedValue.js +18 -15
- package/dist/Utils.js +375 -276
- package/dist/WithRouter.js +6 -6
- package/dist/assets/jss/components/authNavbarStyle.js +166 -164
- package/dist/assets/jss/components/buttonStyle.js +1 -1
- package/dist/assets/jss/components/cardAvatarStyle.js +1 -1
- package/dist/assets/jss/components/cardBodyStyle.js +1 -1
- package/dist/assets/jss/components/cardFooterStyle.js +1 -1
- package/dist/assets/jss/components/cardHeaderStyle.js +13 -13
- package/dist/assets/jss/components/cardIconStyle.js +1 -1
- package/dist/assets/jss/components/cardStyle.js +1 -1
- package/dist/assets/jss/components/cardTextStyle.js +1 -1
- package/dist/assets/jss/components/customDropdownStyle.js +168 -169
- package/dist/assets/jss/components/customInputStyle.js +9 -3
- package/dist/assets/jss/components/dropdownStyle.js +69 -69
- package/dist/assets/jss/components/footerStyle.js +19 -13
- package/dist/assets/jss/components/headerLinksStyle.js +45 -48
- package/dist/assets/jss/components/headerStyle.js +68 -65
- package/dist/assets/jss/components/navbarLinksStyle.js +66 -77
- package/dist/assets/jss/components/navbarStyle.js +79 -76
- package/dist/assets/jss/components/sidebarStyle.js +436 -436
- package/dist/assets/jss/components/typographyStyle.js +9 -3
- package/dist/assets/jss/rootStyle.js +96 -81
- package/dist/assets/jss/views/layoutStyle.js +44 -41
- package/dist/assets/jss/views/loginBasicStyle.js +1 -1
- package/dist/assets/jss/views/loginBusinessPortalStyle.js +1 -1
- package/dist/assets/jss/views/loginStyle.js +82 -77
- package/dist/components/AlertBar.js +50 -17
- package/dist/components/AlertItem.js +35 -12
- package/dist/components/AlertTemplate.js +30 -29
- package/dist/components/Button.js +62 -34
- package/dist/components/Calendar.js +140 -91
- package/dist/components/ConfirmationDialog.js +36 -11
- package/dist/components/DataGrid.js +512 -270
- package/dist/components/DataGridColumn.js +47 -22
- package/dist/components/DataGridFilter.js +186 -105
- package/dist/components/DataGridHeading.js +50 -32
- package/dist/components/Dialog.js +90 -35
- package/dist/components/DocumentTemplateDesigner.js +34 -16
- package/dist/components/DocumentTemplateDesignerComponent.js +124 -48
- package/dist/components/DocumentTemplatePlaceholderDialog.js +52 -30
- package/dist/components/DocumentViewer.js +34 -18
- package/dist/components/DocumentViewerComponent.js +26 -9
- package/dist/components/ElementResizeHandler.js +229 -207
- package/dist/components/FileThumb.js +32 -10
- package/dist/components/Graph.js +153 -85
- package/dist/components/GraphNode.js +58 -38
- package/dist/components/HtmlPanel.js +67 -39
- package/dist/components/Icon.js +206 -166
- package/dist/components/LoadingIndicator.js +3 -3
- package/dist/components/LottieIcon.js +1 -1
- package/dist/components/PopupView.js +39 -19
- package/dist/components/Portlet.js +32 -17
- package/dist/components/RegularButton.js +28 -32
- package/dist/components/SignaturePanel.js +37 -17
- package/dist/components/SocketManager.js +178 -119
- package/dist/components/StepperTitleBar.js +62 -42
- package/dist/components/TabPage.js +30 -25
- package/dist/components/TabPanel.js +86 -33
- package/dist/components/TableCellContent.js +51 -32
- package/dist/components/TemplateDesigner.js +173 -121
- package/dist/components/TemplateItemEventHandler.js +335 -221
- package/dist/components/TemplateTable.js +183 -118
- package/dist/components/TitleBar.js +26 -11
- package/dist/components/Toolbar.js +67 -38
- package/dist/components/Tooltip.js +43 -35
- package/dist/components/Tree.js +85 -44
- package/dist/components/UseIsVisible.js +25 -4
- package/dist/components/card/Card.js +27 -33
- package/dist/components/card/CardAvatar.js +20 -19
- package/dist/components/card/CardBody.js +24 -27
- package/dist/components/card/CardFooter.js +23 -24
- package/dist/components/card/CardHeader.js +24 -27
- package/dist/components/card/CardIcon.js +17 -13
- package/dist/components/card/CardText.js +17 -13
- package/dist/components/customInput/CustomInput.js +22 -36
- package/dist/components/dashboard/{BasicBusinessAppDashboard.js → FoldingSideTabDashboard.js} +111 -63
- package/dist/components/dashboard/SideMenuModuleDashboard.css +60 -0
- package/dist/components/dashboard/SideMenuModuleDashboard.js +423 -0
- package/dist/components/dashboard/TopMenuModuleDashboard.js +138 -0
- package/dist/components/dashboard/components/Header.js +29 -12
- package/dist/components/dashboard/components/LeftDrawer.js +3 -5
- package/dist/components/dashboard/components/UserIdentity.js +2 -2
- package/dist/components/dashboard/components/blackDashboard/fixedPlugin/FixedPlugin.js +131 -87
- package/dist/components/dashboard/components/blackDashboard/sidebar/FoldingTabSidebar.js +488 -0
- package/dist/components/dashboard/components/blackDashboard/sidebar/ModuleMenu.js +64 -0
- package/dist/components/dashboard/components/blackDashboard/sidebar/ModuleMenuSidebar.css +65 -0
- package/dist/components/dashboard/components/blackDashboard/sidebar/ModuleMenuSidebar.js +556 -0
- package/dist/components/dashboard/components/portal/Timeline.js +1 -1
- package/dist/components/dashboard/components/portal/Workspace.js +5 -11
- package/dist/components/footer/Footer.js +31 -24
- package/dist/components/footer/HomeFooter.js +68 -34
- package/dist/components/form/AddressSearch.js +78 -42
- package/dist/components/form/AutoComplete.js +136 -55
- package/dist/components/form/BaseField.js +108 -56
- package/dist/components/form/Checkbox.js +10 -8
- package/dist/components/form/DatePicker.js +47 -25
- package/dist/components/form/FieldSet.js +217 -84
- package/dist/components/form/Form.js +334 -200
- package/dist/components/form/GridField.js +185 -82
- package/dist/components/form/IconField.js +9 -7
- package/dist/components/form/ImageEditor.js +141 -92
- package/dist/components/form/LabelField.js +12 -10
- package/dist/components/form/LookupField.js +54 -32
- package/dist/components/form/MultiFileUploadField.js +101 -67
- package/dist/components/form/RadioGroup.js +33 -16
- package/dist/components/form/Section.js +84 -34
- package/dist/components/form/SelectItem.js +55 -33
- package/dist/components/form/SignatureTemplateDesignerField.js +11 -9
- package/dist/components/form/Switch.js +10 -8
- package/dist/components/form/TextField.js +34 -16
- package/dist/components/form/TimePicker.js +19 -15
- package/dist/components/form/TransferList.js +153 -75
- package/dist/components/form/UploadField.js +183 -128
- package/dist/components/grid/GridContainer.js +12 -8
- package/dist/components/grid/GridItem.js +12 -8
- package/dist/components/layout/CollapsiblePanel.js +44 -18
- package/dist/components/layout/Layout.js +81 -40
- package/dist/components/layout/VC.css +1 -1
- package/dist/components/layout/View.js +136 -62
- package/dist/components/layout/ViewContainer.js +13 -11
- package/dist/components/layout/ViewPort.js +25 -10
- package/dist/components/layout/Window.js +87 -53
- package/dist/components/layout/WindowViewPort.js +38 -16
- package/dist/components/media/ClosablePanel.js +7 -7
- package/dist/components/media/LobbyWaitingList.js +7 -9
- package/dist/components/media/MediaSoupHelper.js +379 -187
- package/dist/components/media/SideBarContent.js +22 -14
- package/dist/components/media/SocketRequest.js +5 -1
- package/dist/components/media/SocketResponse.js +5 -1
- package/dist/components/media/Timer.js +35 -15
- package/dist/components/media/Toolbar.css +5 -0
- package/dist/components/media/Toolbar.js +220 -102
- package/dist/components/media/ToolbarButton.js +82 -33
- package/dist/components/media/Toolbar_bck.js +142 -70
- package/dist/components/media/Tracks.js +31 -28
- package/dist/components/media/TrainingRoom.js +284 -121
- package/dist/components/media/Transports.js +27 -24
- package/dist/components/media/VCEventManager.js +95 -31
- package/dist/components/media/VCEventType.js +5 -1
- package/dist/components/media/VCParticipantList.js +40 -14
- package/dist/components/media/VCParticipantListItem.js +92 -41
- package/dist/components/media/VCRoom.js +29 -11
- package/dist/components/media/VCRoomParticipant.js +488 -242
- package/dist/components/media/VCRoomRecorder.js +236 -175
- package/dist/components/media/VCRoomWorkspace.js +505 -245
- package/dist/components/media/Video.js +89 -25
- package/dist/components/media/VideoPlayer.js +56 -22
- package/dist/components/media/chat/ChatRoom.js +255 -132
- package/dist/components/media/chat/ChatRoomItem.js +35 -14
- package/dist/components/media/chat/ChatRoomList.js +43 -13
- package/dist/components/menu/CollapsibleMenu.js +39 -20
- package/dist/components/menu/MenuBars.js +81 -48
- package/dist/components/menu/MenuButton.js +95 -60
- package/dist/components/menu/MenuItem.js +28 -9
- package/dist/components/menu/MenuLink.js +12 -10
- package/dist/components/menu/PopupMenu.js +16 -12
- package/dist/components/navbars/AuthNavbar.js +27 -18
- package/dist/components/navbars/HomeNavbar.js +243 -194
- package/dist/components/navbars/PortalNavbar.js +50 -26
- package/dist/components/signatures/AgilitySignaturePanel.js +96 -39
- package/dist/components/signatures/AlertItem.js +36 -13
- package/dist/components/signatures/Card.js +4 -4
- package/dist/components/signatures/DocumentContainer.js +141 -57
- package/dist/components/signatures/ImageSignatureInput.js +90 -59
- package/dist/components/signatures/MenuButton.js +53 -33
- package/dist/components/signatures/Prompt.js +26 -5
- package/dist/components/signatures/ResponsiveTable.js +302 -197
- package/dist/components/signatures/SearchView.js +77 -36
- package/dist/components/signatures/SignatorySearch.js +30 -10
- package/dist/components/signatures/SignatorySearchForm.js +35 -18
- package/dist/components/signatures/SignatureInput.js +56 -26
- package/dist/components/signatures/SignatureInputProps.js +107 -55
- package/dist/components/signatures/SignatureTemplateDesigner.js +340 -235
- package/dist/components/signatures/Toolbar.js +135 -94
- package/dist/components/signatures/ViewUtils.js +273 -224
- package/dist/components/typography/Danger.js +3 -5
- package/dist/components/typography/Info.js +3 -5
- package/dist/components/typography/Link.js +3 -5
- package/dist/event/ActionHandlers.js +57 -43
- package/dist/event/Event.js +16 -13
- package/dist/event/EventListener.js +39 -36
- package/dist/event/EventType.js +5 -1
- package/dist/event/LoadDataActionHandler.js +20 -8
- package/dist/event/Observable.js +323 -142
- package/dist/event/RouteActionHandler.js +139 -125
- package/dist/event/ScriptActionHandler.js +20 -8
- package/dist/event/ServiceCallActionHandler.js +51 -39
- package/dist/event/SignalGraphActionHandler.js +19 -7
- package/dist/js/Addresses.js +38 -24
- package/dist/js/Calendar.js +168 -161
- package/dist/js/DynamicLib.js +14 -11
- package/dist/js/Media.js +213 -120
- package/dist/js/Validators.js +6 -5
- package/dist/js/Windows.js +48 -47
- package/dist/redux/store/ConfigureStore.js +17 -9
- package/dist/redux/store/DashboardStore.js +110 -43
- package/dist/redux/store/History.js +1 -1
- package/dist/redux/store/SecurityStore.js +59 -20
- package/dist/security/TokenManager.js +44 -30
- package/dist/theme-default.js +1 -1
- package/dist/view/Dashboard.js +230 -137
- package/dist/view/PortalDashboard.js +4 -4
- package/dist/view/Settings.js +4 -2
- package/dist/view/Views.js +27 -14
- package/dist/view/security/ChangePasswordBasic.js +97 -40
- package/dist/view/security/ForgotPassword.js +59 -22
- package/dist/view/security/ForgotPasswordBasic.js +62 -21
- package/dist/view/security/Login.js +64 -24
- package/dist/view/security/LoginBasic.js +65 -26
- package/dist/view/security/LoginInteractionPortal.js +62 -25
- package/dist/view/security/ResetPassword.js +65 -23
- package/dist/view/security/ResetPasswordBasic.js +91 -37
- package/dist/view/security/Security.js +12 -12
- package/package.json +2 -3
- package/dist/components/dashboard/BusinessPortalAppDashboard.js +0 -115
- package/dist/components/dashboard/components/blackDashboard/sidebar/Sidebar.js +0 -447
- /package/dist/components/dashboard/{BusinessPortalAppDashboard.css → TopMenuModuleDashboard.css} +0 -0
- /package/dist/components/dashboard/components/blackDashboard/sidebar/{Sidebar.css → FoldingTabSidebar.css} +0 -0
|
@@ -25,40 +25,63 @@ var _SignatorySearch = _interopRequireDefault(require("./SignatorySearch"));
|
|
|
25
25
|
|
|
26
26
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
29
|
+
|
|
30
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
31
|
+
|
|
32
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
33
|
+
|
|
34
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
|
35
|
+
|
|
36
|
+
function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
|
37
|
+
|
|
38
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
39
|
+
|
|
40
|
+
var isNull = function isNull(val) {
|
|
29
41
|
return val === null || typeof val === 'undefined';
|
|
30
42
|
};
|
|
31
43
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}
|
|
44
|
+
var useStyles = (0, _core.makeStyles)(function (theme) {
|
|
45
|
+
return {
|
|
46
|
+
button: {
|
|
47
|
+
width: "100%",
|
|
48
|
+
height: "40px",
|
|
49
|
+
backgroundColor: "#e1e1e1",
|
|
50
|
+
marginTop: "4px",
|
|
51
|
+
marginBottom: "4px",
|
|
52
|
+
textAlign: "center",
|
|
53
|
+
padding: "28px 0",
|
|
54
|
+
borderRadius: "4px"
|
|
55
|
+
}
|
|
56
|
+
};
|
|
57
|
+
});
|
|
44
58
|
|
|
45
|
-
|
|
46
|
-
|
|
59
|
+
var SigPropsLookupField = /*#__PURE__*/_react.default.forwardRef(function (props) {
|
|
60
|
+
var _React$useState = _react.default.useState(null),
|
|
61
|
+
_React$useState2 = _slicedToArray(_React$useState, 2),
|
|
62
|
+
currentSelection = _React$useState2[0],
|
|
63
|
+
setCurrentSelection = _React$useState2[1];
|
|
47
64
|
|
|
48
|
-
|
|
65
|
+
var _React$useState3 = _react.default.useState(props.value),
|
|
66
|
+
_React$useState4 = _slicedToArray(_React$useState3, 2),
|
|
67
|
+
value = _React$useState4[0],
|
|
68
|
+
setValue = _React$useState4[1];
|
|
49
69
|
|
|
50
|
-
|
|
70
|
+
var _React$useState5 = _react.default.useState(false),
|
|
71
|
+
_React$useState6 = _slicedToArray(_React$useState5, 2),
|
|
72
|
+
open = _React$useState6[0],
|
|
73
|
+
setOpen = _React$useState6[1];
|
|
51
74
|
|
|
52
|
-
_react.default.useEffect(()
|
|
75
|
+
_react.default.useEffect(function () {
|
|
53
76
|
setValue(props.value);
|
|
54
77
|
}, [props.value]);
|
|
55
78
|
|
|
56
|
-
|
|
79
|
+
var handleClose = function handleClose() {
|
|
57
80
|
setOpen(false);
|
|
58
81
|
};
|
|
59
82
|
|
|
60
|
-
|
|
61
|
-
currentSelection.toString = ()
|
|
83
|
+
var setSelectionAsValue = function setSelectionAsValue() {
|
|
84
|
+
currentSelection.toString = function () {
|
|
62
85
|
return currentSelection.names + ' ' + currentSelection.lastName;
|
|
63
86
|
};
|
|
64
87
|
|
|
@@ -67,7 +90,7 @@ const SigPropsLookupField = /*#__PURE__*/_react.default.forwardRef(props => {
|
|
|
67
90
|
handleClose();
|
|
68
91
|
};
|
|
69
92
|
|
|
70
|
-
|
|
93
|
+
var openSearch = function openSearch() {
|
|
71
94
|
setOpen(true);
|
|
72
95
|
};
|
|
73
96
|
|
|
@@ -118,7 +141,9 @@ const SigPropsLookupField = /*#__PURE__*/_react.default.forwardRef(props => {
|
|
|
118
141
|
}, /*#__PURE__*/_react.default.createElement(_SignatorySearch.default, {
|
|
119
142
|
signatoryUrl: props.signatoryUrl,
|
|
120
143
|
signatoryService: props.signatoryService,
|
|
121
|
-
onLookupValueChange:
|
|
144
|
+
onLookupValueChange: function onLookupValueChange(value) {
|
|
145
|
+
return setCurrentSelection(value);
|
|
146
|
+
}
|
|
122
147
|
})), /*#__PURE__*/_react.default.createElement("div", {
|
|
123
148
|
style: {
|
|
124
149
|
paddingTop: "4px"
|
|
@@ -135,24 +160,45 @@ const SigPropsLookupField = /*#__PURE__*/_react.default.forwardRef(props => {
|
|
|
135
160
|
|
|
136
161
|
exports.SigPropsLookupField = SigPropsLookupField;
|
|
137
162
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
163
|
+
var SignatureInputProps = /*#__PURE__*/_react.default.memo( /*#__PURE__*/_react.default.forwardRef(function (props, ref) {
|
|
164
|
+
var classes = useStyles();
|
|
165
|
+
|
|
166
|
+
var _React$useState7 = _react.default.useState(props.value),
|
|
167
|
+
_React$useState8 = _slicedToArray(_React$useState7, 2),
|
|
168
|
+
value = _React$useState8[0],
|
|
169
|
+
setValue = _React$useState8[1];
|
|
170
|
+
|
|
171
|
+
var _React$useState9 = _react.default.useState(''),
|
|
172
|
+
_React$useState10 = _slicedToArray(_React$useState9, 2),
|
|
173
|
+
width = _React$useState10[0],
|
|
174
|
+
setWidth = _React$useState10[1];
|
|
175
|
+
|
|
176
|
+
var _React$useState11 = _react.default.useState(''),
|
|
177
|
+
_React$useState12 = _slicedToArray(_React$useState11, 2),
|
|
178
|
+
height = _React$useState12[0],
|
|
179
|
+
setHeight = _React$useState12[1];
|
|
180
|
+
|
|
181
|
+
var _React$useState13 = _react.default.useState(null),
|
|
182
|
+
_React$useState14 = _slicedToArray(_React$useState13, 2),
|
|
183
|
+
signatory = _React$useState14[0],
|
|
184
|
+
setSignatory = _React$useState14[1];
|
|
185
|
+
|
|
186
|
+
var _React$useState15 = _react.default.useState(true),
|
|
187
|
+
_React$useState16 = _slicedToArray(_React$useState15, 2),
|
|
188
|
+
widthValid = _React$useState16[0],
|
|
189
|
+
setWidthValid = _React$useState16[1];
|
|
190
|
+
|
|
191
|
+
var _React$useState17 = _react.default.useState(true),
|
|
192
|
+
_React$useState18 = _slicedToArray(_React$useState17, 2),
|
|
193
|
+
heightValid = _React$useState18[0],
|
|
194
|
+
setHeightValid = _React$useState18[1];
|
|
195
|
+
|
|
196
|
+
var _React$useState19 = _react.default.useState(isNull(props.value) || !isNull(props.value.signatory)),
|
|
197
|
+
_React$useState20 = _slicedToArray(_React$useState19, 2),
|
|
198
|
+
signatoryValid = _React$useState20[0],
|
|
199
|
+
setSignatoryValid = _React$useState20[1];
|
|
200
|
+
|
|
201
|
+
_react.default.useEffect(function () {
|
|
156
202
|
setValue(props.value);
|
|
157
203
|
|
|
158
204
|
if (props.value !== null) {
|
|
@@ -169,13 +215,13 @@ const SignatureInputProps = /*#__PURE__*/_react.default.memo( /*#__PURE__*/_reac
|
|
|
169
215
|
}
|
|
170
216
|
}, [props.value]);
|
|
171
217
|
|
|
172
|
-
_react.default.useEffect(()
|
|
218
|
+
_react.default.useEffect(function () {
|
|
173
219
|
if (!isNull(value)) {
|
|
174
|
-
|
|
220
|
+
var widthCheck = validateNumeric(width, 280);
|
|
175
221
|
setWidthValid(widthCheck);
|
|
176
|
-
|
|
222
|
+
var heightCheck = validateNumeric(height, 150);
|
|
177
223
|
setHeightValid(heightCheck);
|
|
178
|
-
|
|
224
|
+
var signatoryCheck = !isNull(signatory);
|
|
179
225
|
setSignatoryValid(signatoryCheck);
|
|
180
226
|
|
|
181
227
|
if (!isNull(value) && widthCheck && heightCheck && signatoryCheck) {
|
|
@@ -184,7 +230,7 @@ const SignatureInputProps = /*#__PURE__*/_react.default.memo( /*#__PURE__*/_reac
|
|
|
184
230
|
}
|
|
185
231
|
}, [width, height, signatory]);
|
|
186
232
|
|
|
187
|
-
|
|
233
|
+
var handleDelete = function handleDelete() {
|
|
188
234
|
props.deleteHandler(value.id);
|
|
189
235
|
setWidth('');
|
|
190
236
|
setHeight('');
|
|
@@ -193,16 +239,16 @@ const SignatureInputProps = /*#__PURE__*/_react.default.memo( /*#__PURE__*/_reac
|
|
|
193
239
|
setSignatoryValid(true);
|
|
194
240
|
};
|
|
195
241
|
|
|
196
|
-
|
|
242
|
+
var handleApplyToAllPages = function handleApplyToAllPages() {
|
|
197
243
|
props.dublicateHandler(value.id);
|
|
198
244
|
};
|
|
199
245
|
|
|
200
|
-
|
|
201
|
-
|
|
246
|
+
var validateNumeric = function validateNumeric(val, maxVal) {
|
|
247
|
+
var regex = new RegExp('^[0-9]+$');
|
|
202
248
|
return !isNull(val) && regex.test(val) && parseFloat(val) <= maxVal;
|
|
203
249
|
};
|
|
204
250
|
|
|
205
|
-
|
|
251
|
+
var valueChangeHandler = function valueChangeHandler(field, fieldValue) {
|
|
206
252
|
if ('width' === field) {
|
|
207
253
|
setWidth(fieldValue);
|
|
208
254
|
} else if ('height' === field) {
|
|
@@ -212,8 +258,8 @@ const SignatureInputProps = /*#__PURE__*/_react.default.memo( /*#__PURE__*/_reac
|
|
|
212
258
|
}
|
|
213
259
|
};
|
|
214
260
|
|
|
215
|
-
|
|
216
|
-
|
|
261
|
+
var save = function save() {
|
|
262
|
+
var values = {
|
|
217
263
|
width: width,
|
|
218
264
|
height: height,
|
|
219
265
|
signatory: signatory,
|
|
@@ -266,7 +312,9 @@ const SignatureInputProps = /*#__PURE__*/_react.default.memo( /*#__PURE__*/_reac
|
|
|
266
312
|
error: !widthValid,
|
|
267
313
|
size: "small",
|
|
268
314
|
margin: "dense",
|
|
269
|
-
onChange:
|
|
315
|
+
onChange: function onChange(e) {
|
|
316
|
+
return valueChangeHandler("width", e.target.value);
|
|
317
|
+
},
|
|
270
318
|
variant: "outlined"
|
|
271
319
|
}), /*#__PURE__*/_react.default.createElement(_TextField.default, {
|
|
272
320
|
style: {
|
|
@@ -279,14 +327,18 @@ const SignatureInputProps = /*#__PURE__*/_react.default.memo( /*#__PURE__*/_reac
|
|
|
279
327
|
error: !heightValid,
|
|
280
328
|
size: "small",
|
|
281
329
|
margin: "dense",
|
|
282
|
-
onChange:
|
|
330
|
+
onChange: function onChange(e) {
|
|
331
|
+
return valueChangeHandler("height", e.target.value);
|
|
332
|
+
},
|
|
283
333
|
variant: "outlined"
|
|
284
334
|
}), /*#__PURE__*/_react.default.createElement(_Button.default, {
|
|
285
335
|
variant: "contained",
|
|
286
336
|
component: "span",
|
|
287
337
|
className: classes.button,
|
|
288
338
|
disabled: value === null,
|
|
289
|
-
onClick: ()
|
|
339
|
+
onClick: function onClick() {
|
|
340
|
+
return handleDelete();
|
|
341
|
+
},
|
|
290
342
|
id: "signPaletteButton"
|
|
291
343
|
}, "DELETE ITEM")));
|
|
292
344
|
}));
|