authscape 1.0.508 → 1.0.512
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.js
CHANGED
|
@@ -3889,24 +3889,7 @@ function AssignMapping(_ref) {
|
|
|
3889
3889
|
advanceQuery: advanceQuery,
|
|
3890
3890
|
currentUser: currentUser,
|
|
3891
3891
|
hideToolbar: true,
|
|
3892
|
-
loadedUser: true
|
|
3893
|
-
onFocusLocationChanged: function onFocusLocationChanged(rowId, columnId) {
|
|
3894
|
-
|
|
3895
|
-
// apiService().post("/SpreadSheet/FocusLocationChanged", {
|
|
3896
|
-
// userId: currentUser.id,
|
|
3897
|
-
// rowId: rowId,
|
|
3898
|
-
// column: columnId
|
|
3899
|
-
// });
|
|
3900
|
-
},
|
|
3901
|
-
onChange: function onChange(row, rowId, fieldName, value) {
|
|
3902
|
-
|
|
3903
|
-
// apiService().put("/SpreadSheet/CellChanged", {
|
|
3904
|
-
// id: row.Id,
|
|
3905
|
-
// rowId: rowId,
|
|
3906
|
-
// fieldName: fieldName,
|
|
3907
|
-
// value: value.toString()
|
|
3908
|
-
// });
|
|
3909
|
-
}
|
|
3892
|
+
loadedUser: true
|
|
3910
3893
|
})), /*#__PURE__*/_react["default"].createElement(_DialogActions["default"], null, /*#__PURE__*/_react["default"].createElement(_material.Button, {
|
|
3911
3894
|
onClick: function onClick() {
|
|
3912
3895
|
setShowPreviewDialog(false);
|
|
@@ -5344,7 +5327,11 @@ function MatchExistingMappedColumn(_ref) {
|
|
|
5344
5327
|
}
|
|
5345
5328
|
}, /*#__PURE__*/_react["default"].createElement(SelectedExistingColumns, {
|
|
5346
5329
|
toOptions: toOptions
|
|
5347
|
-
})), /*#__PURE__*/_react["default"].createElement(_system.Box,
|
|
5330
|
+
})), /*#__PURE__*/_react["default"].createElement(_system.Box, {
|
|
5331
|
+
sx: {
|
|
5332
|
+
paddingTop: 2
|
|
5333
|
+
}
|
|
5334
|
+
}, /*#__PURE__*/_react["default"].createElement(_FormControlLabel["default"], {
|
|
5348
5335
|
value: "end",
|
|
5349
5336
|
control: /*#__PURE__*/_react["default"].createElement(_Checkbox["default"], _extends({}, checkboxRememberLabel, {
|
|
5350
5337
|
defaultChecked: true,
|
|
@@ -5352,7 +5339,7 @@ function MatchExistingMappedColumn(_ref) {
|
|
|
5352
5339
|
setRememberForNextTime(event.target.checked);
|
|
5353
5340
|
}
|
|
5354
5341
|
})),
|
|
5355
|
-
label: "
|
|
5342
|
+
label: "Remember match for next time",
|
|
5356
5343
|
labelPlacement: "end"
|
|
5357
5344
|
}))), /*#__PURE__*/_react["default"].createElement(_DialogActions["default"], null, /*#__PURE__*/_react["default"].createElement(_Button["default"], {
|
|
5358
5345
|
onClick: handleClose
|
package/package.json
CHANGED
|
@@ -165,25 +165,7 @@ export function AssignMapping({currentUser, documentComponentId, onCancel = null
|
|
|
165
165
|
</Box>
|
|
166
166
|
|
|
167
167
|
{spreadSheetAddress != null &&
|
|
168
|
-
<SpreadsheetViewer ref={spreadSheetRef} url={spreadSheetAddress} advanceQuery={advanceQuery} currentUser={currentUser} hideToolbar={true} loadedUser={true}
|
|
169
|
-
onFocusLocationChanged={(rowId, columnId) => {
|
|
170
|
-
|
|
171
|
-
// apiService().post("/SpreadSheet/FocusLocationChanged", {
|
|
172
|
-
// userId: currentUser.id,
|
|
173
|
-
// rowId: rowId,
|
|
174
|
-
// column: columnId
|
|
175
|
-
// });
|
|
176
|
-
}}
|
|
177
|
-
onChange={(row, rowId, fieldName, value) => {
|
|
178
|
-
|
|
179
|
-
// apiService().put("/SpreadSheet/CellChanged", {
|
|
180
|
-
// id: row.Id,
|
|
181
|
-
// rowId: rowId,
|
|
182
|
-
// fieldName: fieldName,
|
|
183
|
-
// value: value.toString()
|
|
184
|
-
// });
|
|
185
|
-
|
|
186
|
-
}} />
|
|
168
|
+
<SpreadsheetViewer ref={spreadSheetRef} url={spreadSheetAddress} advanceQuery={advanceQuery} currentUser={currentUser} hideToolbar={true} loadedUser={true} />
|
|
187
169
|
}
|
|
188
170
|
|
|
189
171
|
</DialogContent>
|
|
@@ -86,10 +86,7 @@ export function MatchExistingMappedColumn({companyId, documentId, documentMappin
|
|
|
86
86
|
<SelectedExistingColumns toOptions={toOptions} />
|
|
87
87
|
</Box>
|
|
88
88
|
|
|
89
|
-
<Box>
|
|
90
|
-
Remember match for next time
|
|
91
|
-
</Box>
|
|
92
|
-
<Box>
|
|
89
|
+
<Box sx={{paddingTop:2}}>
|
|
93
90
|
|
|
94
91
|
<FormControlLabel
|
|
95
92
|
value="end"
|
|
@@ -98,7 +95,7 @@ export function MatchExistingMappedColumn({companyId, documentId, documentMappin
|
|
|
98
95
|
setRememberForNextTime(event.target.checked);
|
|
99
96
|
}} />
|
|
100
97
|
}
|
|
101
|
-
label="
|
|
98
|
+
label="Remember match for next time"
|
|
102
99
|
labelPlacement="end"
|
|
103
100
|
/>
|
|
104
101
|
|