@fileverse-dev/fortune-react 1.0.2-mod-3 → 1.0.2-mod-5
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/index.esm.js +31 -20
- package/dist/index.js +30 -19
- package/dist/index.umd.js +31 -20
- package/dist/index.umd.min.js +1 -1
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defaultContext, defaultSettings, getSheetIndex, colLocationByIndex, fixPositionOnFrozenCells, colLocation, getFlowdata, isAllowEdit, handleColumnHeaderMouseDown, handleColSizeHandleMouseDown, handleColFreezeHandleMouseDown, handleContextMenu, selectTitlesMap, selectTitlesRange, fixColumnStyleOverflowInFreeze, rowLocationByIndex, rowLocation, handleRowHeaderMouseDown, handleRowSizeHandleMouseDown, handleRowFreezeHandleMouseDown, fixRowStyleOverflowInFreeze, locale, getStyleByCell, getCellValue, createRangeHightlight, isInlineStringCell, getInlineStringHTML, valueShowEs,
|
|
1
|
+
import { defaultContext, defaultSettings, getSheetIndex, colLocationByIndex, fixPositionOnFrozenCells, colLocation, getFlowdata, isAllowEdit, handleColumnHeaderMouseDown, handleColSizeHandleMouseDown, handleColFreezeHandleMouseDown, handleContextMenu, selectTitlesMap, selectTitlesRange, fixColumnStyleOverflowInFreeze, rowLocationByIndex, rowLocation, handleRowHeaderMouseDown, handleRowSizeHandleMouseDown, handleRowFreezeHandleMouseDown, fixRowStyleOverflowInFreeze, locale, getStyleByCell, getCellValue, escapeHTMLTag, escapeScriptTag, createRangeHightlight, isInlineStringCell, getInlineStringHTML, valueShowEs, moveToEnd, isShowHidenCR, getrangeseleciton, cancelNormalSelected, moveHighlightCell, israngeseleciton, handleFormulaInput, onSearchDialogMoveStart, replaceAll, replace, searchAll, searchNext, normalizeSelection, scrollToHighlightCell, isLinkValid, getRangetxt, goToLink, replaceHtml, removeHyperlink, onRangeSelectionModalMoveStart, saveHyperlink, createFilterOptions, onImageMoveStart, onImageResizeStart, showComments, setEditingComment, onCommentBoxMoveStart, onCommentBoxResizeStart, confirmMessage, getRangeByTxt, getDropdownList, setCellValue, setConditionRules, mergeBorder, setDropcownValue, handleCellAreaMouseDown, handleCellAreaDoubleClick, selectAll, showLinkCard, getCellRowColumn, getCellHyperlink, handleOverlayMouseMove, handleOverlayMouseUp, handleKeydownForZoom, handleOverlayTouchStart, handleOverlayTouchMove, handleOverlayTouchEnd, insertRowCol, drawArrow, onCellsMoveStart, createDropCellRange, updateContextWithSheetData, updateContextWithCanvas, initFreeze, Canvas, handleGlobalWheel, setCaretPosition, getDataArr, updateMoreCell, getRegStr, getOptionValue, getSelectRange, applyLocation, updateItem, update, normalizedCellAttr, updateFormat, handleTextSize, handleHorizontalAlign, handleVerticalAlign, handleScreenShot, showImgChooser, insertImage, editComment, deleteComment, showHideComment, showHideAllComments, newComment, handleSum, autoSelectionFormula, handleMerge, handleBorder, handleFreeze, handleSort, createFilter, clearFilter, toolbarItemSelectedFunc, toolbarItemClickHandler, handleTextColor, handleTextBackground, getInlineStringNoStyle, rangeHightlightselected, updateCell, editSheetName, cancelActiveImgItem, MAX_ZOOM_RATIO, MIN_ZOOM_RATIO, addSheet, indexToColumnChar, sortSelection, handleCopy, deleteRowCol, hideSelected, showSelected, api, removeActiveImage, deleteSelectedCellText, jfrefreshgrid, handleLink, handlePasteByClick, deleteSheet, opToPatch, orderbydatafiler, getFilterColumnValues, getFilterColumnColors, saveFilter, calcSelectionInfo, patchToOp, filterPatch, inverseRowColOptions, ensureSheetIndex, initSheetIndex, handleGlobalKeyDown, handlePaste, groupValuesRefresh } from '@fileverse-dev/fortune-core';
|
|
2
2
|
import React, { useContext, useRef, useState, useMemo, useCallback, useEffect, useLayoutEffect, useImperativeHandle } from 'react';
|
|
3
3
|
import produce, { applyPatches, enablePatches, produceWithPatches } from 'immer';
|
|
4
4
|
import _ from 'lodash';
|
|
@@ -1082,12 +1082,20 @@ var InputBox = function InputBox() {
|
|
|
1082
1082
|
return {};
|
|
1083
1083
|
}, [context.luckysheetfile, context.currentSheetId, context.luckysheetCellUpdate, firstSelection]);
|
|
1084
1084
|
useLayoutEffect(function () {
|
|
1085
|
+
if (firstSelection.column_focus === 2 && firstSelection.row_focus === 4 && localStorage.getItem('onboardingComplete') !== 'true') {
|
|
1086
|
+
var _inputRef$current;
|
|
1087
|
+
if (((_inputRef$current = inputRef.current) === null || _inputRef$current === void 0 ? void 0 : _inputRef$current.innerHTML) !== "") return;
|
|
1088
|
+
var flowdata = getFlowdata(context);
|
|
1089
|
+
var value = getCellValue(row_index, col_index, flowdata, "f");
|
|
1090
|
+
inputRef.current.innerHTML = escapeHTMLTag(escapeScriptTag(value));
|
|
1091
|
+
return;
|
|
1092
|
+
}
|
|
1085
1093
|
if (!context.allowEdit) {
|
|
1086
1094
|
setContext(function (ctx) {
|
|
1087
1095
|
var flowdata = getFlowdata(ctx);
|
|
1088
1096
|
if (!_.isNil(flowdata) && ctx.forceFormulaRef) {
|
|
1089
|
-
var
|
|
1090
|
-
createRangeHightlight(ctx,
|
|
1097
|
+
var _value = getCellValue(row_index, col_index, flowdata, "f");
|
|
1098
|
+
createRangeHightlight(ctx, _value);
|
|
1091
1099
|
}
|
|
1092
1100
|
});
|
|
1093
1101
|
}
|
|
@@ -1100,26 +1108,26 @@ var InputBox = function InputBox() {
|
|
|
1100
1108
|
if (_.isEqual(prevCellUpdate, context.luckysheetCellUpdate) && prevSheetId === context.currentSheetId) {
|
|
1101
1109
|
return;
|
|
1102
1110
|
}
|
|
1103
|
-
var
|
|
1104
|
-
var cell =
|
|
1105
|
-
var
|
|
1111
|
+
var _flowdata = getFlowdata(context);
|
|
1112
|
+
var cell = _flowdata === null || _flowdata === void 0 ? void 0 : (_flowdata$row_index = _flowdata[row_index]) === null || _flowdata$row_index === void 0 ? void 0 : _flowdata$row_index[col_index];
|
|
1113
|
+
var _value2 = "";
|
|
1106
1114
|
if (cell && !refs.globalCache.overwriteCell) {
|
|
1107
1115
|
if (isInlineStringCell(cell)) {
|
|
1108
|
-
|
|
1116
|
+
_value2 = getInlineStringHTML(row_index, col_index, _flowdata);
|
|
1109
1117
|
} else if (cell.f) {
|
|
1110
|
-
|
|
1118
|
+
_value2 = getCellValue(row_index, col_index, _flowdata, "f");
|
|
1111
1119
|
setContext(function (ctx) {
|
|
1112
|
-
createRangeHightlight(ctx,
|
|
1120
|
+
createRangeHightlight(ctx, _value2);
|
|
1113
1121
|
});
|
|
1114
1122
|
} else {
|
|
1115
|
-
|
|
1123
|
+
_value2 = valueShowEs(row_index, col_index, _flowdata);
|
|
1116
1124
|
if (Number(cell.qp) === 1) {
|
|
1117
|
-
|
|
1125
|
+
_value2 = _value2 ? "".concat(_value2) : _value2;
|
|
1118
1126
|
}
|
|
1119
1127
|
}
|
|
1120
1128
|
}
|
|
1121
1129
|
refs.globalCache.overwriteCell = false;
|
|
1122
|
-
if (!refs.globalCache.ignoreWriteCell) inputRef.current.innerHTML = escapeHTMLTag(escapeScriptTag(
|
|
1130
|
+
if (!refs.globalCache.ignoreWriteCell) inputRef.current.innerHTML = escapeHTMLTag(escapeScriptTag(_value2));
|
|
1123
1131
|
refs.globalCache.ignoreWriteCell = false;
|
|
1124
1132
|
if (!refs.globalCache.doNotFocus) {
|
|
1125
1133
|
setTimeout(function () {
|
|
@@ -1191,6 +1199,9 @@ var InputBox = function InputBox() {
|
|
|
1191
1199
|
}
|
|
1192
1200
|
}, [getActiveFormula, setContext]);
|
|
1193
1201
|
var onKeyDown = useCallback(function (e) {
|
|
1202
|
+
if (e.key === "Backspace" && firstSelection.column_focus === 2 && firstSelection.row_focus === 4 && localStorage.getItem('onboardingComplete') !== 'true') {
|
|
1203
|
+
inputRef.current.innerHTML = "";
|
|
1204
|
+
}
|
|
1194
1205
|
lastKeyDownEventRef.current = new KeyboardEvent(e.type, e.nativeEvent);
|
|
1195
1206
|
preText.current = inputRef.current.innerText;
|
|
1196
1207
|
if (e.key === "Escape" && context.luckysheetCellUpdate.length > 0) {
|
|
@@ -1239,7 +1250,7 @@ var InputBox = function InputBox() {
|
|
|
1239
1250
|
}
|
|
1240
1251
|
e.preventDefault();
|
|
1241
1252
|
}
|
|
1242
|
-
}, [clearSearchItemActiveClass, context.luckysheetCellUpdate.length, selectActiveFormula, setContext]);
|
|
1253
|
+
}, [clearSearchItemActiveClass, context.luckysheetCellUpdate.length, selectActiveFormula, setContext, firstSelection]);
|
|
1243
1254
|
var onChange = useCallback(function (__, isBlur) {
|
|
1244
1255
|
var e = lastKeyDownEventRef.current;
|
|
1245
1256
|
if (!e) return;
|
|
@@ -1269,7 +1280,7 @@ var InputBox = function InputBox() {
|
|
|
1269
1280
|
style: firstSelection && !((_context$rangeDialog = context.rangeDialog) === null || _context$rangeDialog === void 0 ? void 0 : _context$rangeDialog.show) ? {
|
|
1270
1281
|
left: firstSelection.left,
|
|
1271
1282
|
top: firstSelection.top,
|
|
1272
|
-
zIndex: _.isEmpty(context.luckysheetCellUpdate) ? -1 : 19,
|
|
1283
|
+
zIndex: _.isEmpty(context.luckysheetCellUpdate) ? firstSelection.column_focus === 2 && firstSelection.row_focus === 4 && localStorage.getItem('onboardingComplete') !== 'true' ? 19 : -1 : 19,
|
|
1273
1284
|
display: "block"
|
|
1274
1285
|
} : {
|
|
1275
1286
|
left: -10000,
|
|
@@ -8863,7 +8874,7 @@ var SVGDefines = function SVGDefines(_ref) {
|
|
|
8863
8874
|
fill: "none",
|
|
8864
8875
|
id: "image"
|
|
8865
8876
|
}, /*#__PURE__*/React.createElement("g", {
|
|
8866
|
-
transform: "scale(0.
|
|
8877
|
+
transform: "scale(0.83) translate(1.5, 1.4)"
|
|
8867
8878
|
}, /*#__PURE__*/React.createElement("path", {
|
|
8868
8879
|
"fill-rule": "evenodd",
|
|
8869
8880
|
"clip-rule": "evenodd",
|
|
@@ -9229,7 +9240,7 @@ var SVGDefines = function SVGDefines(_ref) {
|
|
|
9229
9240
|
id: "formula-sum",
|
|
9230
9241
|
fill: "none"
|
|
9231
9242
|
}, /*#__PURE__*/React.createElement("g", {
|
|
9232
|
-
transform: "scale(0.
|
|
9243
|
+
transform: "scale(0.83) translate(1.2, 1.2)"
|
|
9233
9244
|
}, /*#__PURE__*/React.createElement("path", {
|
|
9234
9245
|
"fill-rule": "evenodd",
|
|
9235
9246
|
"clip-rule": "evenodd",
|
|
@@ -9424,7 +9435,7 @@ var SVGDefines = function SVGDefines(_ref) {
|
|
|
9424
9435
|
viewBox: "0 0 16 16",
|
|
9425
9436
|
fill: "none"
|
|
9426
9437
|
}, /*#__PURE__*/React.createElement("g", {
|
|
9427
|
-
transform: "scale(
|
|
9438
|
+
transform: "scale(0.9) translate(0, 0)"
|
|
9428
9439
|
}, /*#__PURE__*/React.createElement("path", {
|
|
9429
9440
|
"fill-rule": "evenodd",
|
|
9430
9441
|
"clip-rule": "evenodd",
|
|
@@ -9457,7 +9468,7 @@ var SVGDefines = function SVGDefines(_ref) {
|
|
|
9457
9468
|
id: "dataVerification",
|
|
9458
9469
|
fill: "none"
|
|
9459
9470
|
}, /*#__PURE__*/React.createElement("g", {
|
|
9460
|
-
transform: "scale(0.
|
|
9471
|
+
transform: "scale(0.84) translate(1.8, 1.4)"
|
|
9461
9472
|
}, /*#__PURE__*/React.createElement("path", {
|
|
9462
9473
|
d: "M10.4714 7.13807C10.7318 6.87772 10.7318 6.45561 10.4714 6.19526C10.2111 5.93491 9.78895 5.93491 9.5286 6.19526L7.33333 8.39052L6.4714 7.52859C6.21106 7.26825 5.78894 7.26825 5.5286 7.52859C5.26825 7.78894 5.26825 8.21105 5.5286 8.4714L6.86193 9.80474C7.12228 10.0651 7.54439 10.0651 7.80474 9.80474L10.4714 7.13807Z",
|
|
9463
9474
|
fill: "#363B3F"
|
|
@@ -9478,7 +9489,7 @@ var SVGDefines = function SVGDefines(_ref) {
|
|
|
9478
9489
|
viewBox: "0 0 16 16",
|
|
9479
9490
|
fill: "none"
|
|
9480
9491
|
}, /*#__PURE__*/React.createElement("g", {
|
|
9481
|
-
transform: "scale(
|
|
9492
|
+
transform: "scale(0.9) translate(0, 0)"
|
|
9482
9493
|
}, /*#__PURE__*/React.createElement("path", {
|
|
9483
9494
|
"fill-rule": "evenodd",
|
|
9484
9495
|
"clip-rule": "evenodd",
|
|
@@ -9536,7 +9547,7 @@ var SVGDefines = function SVGDefines(_ref) {
|
|
|
9536
9547
|
viewBox: "0 0 18 18",
|
|
9537
9548
|
fill: "none"
|
|
9538
9549
|
}, /*#__PURE__*/React.createElement("g", {
|
|
9539
|
-
transform: "scale(0.
|
|
9550
|
+
transform: "scale(0.85) translate(1.8, 1.4)"
|
|
9540
9551
|
}, /*#__PURE__*/React.createElement("path", {
|
|
9541
9552
|
"fill-rule": "evenodd",
|
|
9542
9553
|
"clip-rule": "evenodd",
|
package/dist/index.js
CHANGED
|
@@ -1093,12 +1093,20 @@ var InputBox = function InputBox() {
|
|
|
1093
1093
|
return {};
|
|
1094
1094
|
}, [context.luckysheetfile, context.currentSheetId, context.luckysheetCellUpdate, firstSelection]);
|
|
1095
1095
|
React.useLayoutEffect(function () {
|
|
1096
|
+
if (firstSelection.column_focus === 2 && firstSelection.row_focus === 4 && localStorage.getItem('onboardingComplete') !== 'true') {
|
|
1097
|
+
var _inputRef$current;
|
|
1098
|
+
if (((_inputRef$current = inputRef.current) === null || _inputRef$current === void 0 ? void 0 : _inputRef$current.innerHTML) !== "") return;
|
|
1099
|
+
var flowdata = fortuneCore.getFlowdata(context);
|
|
1100
|
+
var value = fortuneCore.getCellValue(row_index, col_index, flowdata, "f");
|
|
1101
|
+
inputRef.current.innerHTML = fortuneCore.escapeHTMLTag(fortuneCore.escapeScriptTag(value));
|
|
1102
|
+
return;
|
|
1103
|
+
}
|
|
1096
1104
|
if (!context.allowEdit) {
|
|
1097
1105
|
setContext(function (ctx) {
|
|
1098
1106
|
var flowdata = fortuneCore.getFlowdata(ctx);
|
|
1099
1107
|
if (!___default['default'].isNil(flowdata) && ctx.forceFormulaRef) {
|
|
1100
|
-
var
|
|
1101
|
-
fortuneCore.createRangeHightlight(ctx,
|
|
1108
|
+
var _value = fortuneCore.getCellValue(row_index, col_index, flowdata, "f");
|
|
1109
|
+
fortuneCore.createRangeHightlight(ctx, _value);
|
|
1102
1110
|
}
|
|
1103
1111
|
});
|
|
1104
1112
|
}
|
|
@@ -1111,26 +1119,26 @@ var InputBox = function InputBox() {
|
|
|
1111
1119
|
if (___default['default'].isEqual(prevCellUpdate, context.luckysheetCellUpdate) && prevSheetId === context.currentSheetId) {
|
|
1112
1120
|
return;
|
|
1113
1121
|
}
|
|
1114
|
-
var
|
|
1115
|
-
var cell =
|
|
1116
|
-
var
|
|
1122
|
+
var _flowdata = fortuneCore.getFlowdata(context);
|
|
1123
|
+
var cell = _flowdata === null || _flowdata === void 0 ? void 0 : (_flowdata$row_index = _flowdata[row_index]) === null || _flowdata$row_index === void 0 ? void 0 : _flowdata$row_index[col_index];
|
|
1124
|
+
var _value2 = "";
|
|
1117
1125
|
if (cell && !refs.globalCache.overwriteCell) {
|
|
1118
1126
|
if (fortuneCore.isInlineStringCell(cell)) {
|
|
1119
|
-
|
|
1127
|
+
_value2 = fortuneCore.getInlineStringHTML(row_index, col_index, _flowdata);
|
|
1120
1128
|
} else if (cell.f) {
|
|
1121
|
-
|
|
1129
|
+
_value2 = fortuneCore.getCellValue(row_index, col_index, _flowdata, "f");
|
|
1122
1130
|
setContext(function (ctx) {
|
|
1123
|
-
fortuneCore.createRangeHightlight(ctx,
|
|
1131
|
+
fortuneCore.createRangeHightlight(ctx, _value2);
|
|
1124
1132
|
});
|
|
1125
1133
|
} else {
|
|
1126
|
-
|
|
1134
|
+
_value2 = fortuneCore.valueShowEs(row_index, col_index, _flowdata);
|
|
1127
1135
|
if (Number(cell.qp) === 1) {
|
|
1128
|
-
|
|
1136
|
+
_value2 = _value2 ? "".concat(_value2) : _value2;
|
|
1129
1137
|
}
|
|
1130
1138
|
}
|
|
1131
1139
|
}
|
|
1132
1140
|
refs.globalCache.overwriteCell = false;
|
|
1133
|
-
if (!refs.globalCache.ignoreWriteCell) inputRef.current.innerHTML = fortuneCore.escapeHTMLTag(fortuneCore.escapeScriptTag(
|
|
1141
|
+
if (!refs.globalCache.ignoreWriteCell) inputRef.current.innerHTML = fortuneCore.escapeHTMLTag(fortuneCore.escapeScriptTag(_value2));
|
|
1134
1142
|
refs.globalCache.ignoreWriteCell = false;
|
|
1135
1143
|
if (!refs.globalCache.doNotFocus) {
|
|
1136
1144
|
setTimeout(function () {
|
|
@@ -1202,6 +1210,9 @@ var InputBox = function InputBox() {
|
|
|
1202
1210
|
}
|
|
1203
1211
|
}, [getActiveFormula, setContext]);
|
|
1204
1212
|
var onKeyDown = React.useCallback(function (e) {
|
|
1213
|
+
if (e.key === "Backspace" && firstSelection.column_focus === 2 && firstSelection.row_focus === 4 && localStorage.getItem('onboardingComplete') !== 'true') {
|
|
1214
|
+
inputRef.current.innerHTML = "";
|
|
1215
|
+
}
|
|
1205
1216
|
lastKeyDownEventRef.current = new KeyboardEvent(e.type, e.nativeEvent);
|
|
1206
1217
|
preText.current = inputRef.current.innerText;
|
|
1207
1218
|
if (e.key === "Escape" && context.luckysheetCellUpdate.length > 0) {
|
|
@@ -1250,7 +1261,7 @@ var InputBox = function InputBox() {
|
|
|
1250
1261
|
}
|
|
1251
1262
|
e.preventDefault();
|
|
1252
1263
|
}
|
|
1253
|
-
}, [clearSearchItemActiveClass, context.luckysheetCellUpdate.length, selectActiveFormula, setContext]);
|
|
1264
|
+
}, [clearSearchItemActiveClass, context.luckysheetCellUpdate.length, selectActiveFormula, setContext, firstSelection]);
|
|
1254
1265
|
var onChange = React.useCallback(function (__, isBlur) {
|
|
1255
1266
|
var e = lastKeyDownEventRef.current;
|
|
1256
1267
|
if (!e) return;
|
|
@@ -1280,7 +1291,7 @@ var InputBox = function InputBox() {
|
|
|
1280
1291
|
style: firstSelection && !((_context$rangeDialog = context.rangeDialog) === null || _context$rangeDialog === void 0 ? void 0 : _context$rangeDialog.show) ? {
|
|
1281
1292
|
left: firstSelection.left,
|
|
1282
1293
|
top: firstSelection.top,
|
|
1283
|
-
zIndex: ___default['default'].isEmpty(context.luckysheetCellUpdate) ? -1 : 19,
|
|
1294
|
+
zIndex: ___default['default'].isEmpty(context.luckysheetCellUpdate) ? firstSelection.column_focus === 2 && firstSelection.row_focus === 4 && localStorage.getItem('onboardingComplete') !== 'true' ? 19 : -1 : 19,
|
|
1284
1295
|
display: "block"
|
|
1285
1296
|
} : {
|
|
1286
1297
|
left: -10000,
|
|
@@ -8874,7 +8885,7 @@ var SVGDefines = function SVGDefines(_ref) {
|
|
|
8874
8885
|
fill: "none",
|
|
8875
8886
|
id: "image"
|
|
8876
8887
|
}, /*#__PURE__*/React__default['default'].createElement("g", {
|
|
8877
|
-
transform: "scale(0.
|
|
8888
|
+
transform: "scale(0.83) translate(1.5, 1.4)"
|
|
8878
8889
|
}, /*#__PURE__*/React__default['default'].createElement("path", {
|
|
8879
8890
|
"fill-rule": "evenodd",
|
|
8880
8891
|
"clip-rule": "evenodd",
|
|
@@ -9240,7 +9251,7 @@ var SVGDefines = function SVGDefines(_ref) {
|
|
|
9240
9251
|
id: "formula-sum",
|
|
9241
9252
|
fill: "none"
|
|
9242
9253
|
}, /*#__PURE__*/React__default['default'].createElement("g", {
|
|
9243
|
-
transform: "scale(0.
|
|
9254
|
+
transform: "scale(0.83) translate(1.2, 1.2)"
|
|
9244
9255
|
}, /*#__PURE__*/React__default['default'].createElement("path", {
|
|
9245
9256
|
"fill-rule": "evenodd",
|
|
9246
9257
|
"clip-rule": "evenodd",
|
|
@@ -9435,7 +9446,7 @@ var SVGDefines = function SVGDefines(_ref) {
|
|
|
9435
9446
|
viewBox: "0 0 16 16",
|
|
9436
9447
|
fill: "none"
|
|
9437
9448
|
}, /*#__PURE__*/React__default['default'].createElement("g", {
|
|
9438
|
-
transform: "scale(
|
|
9449
|
+
transform: "scale(0.9) translate(0, 0)"
|
|
9439
9450
|
}, /*#__PURE__*/React__default['default'].createElement("path", {
|
|
9440
9451
|
"fill-rule": "evenodd",
|
|
9441
9452
|
"clip-rule": "evenodd",
|
|
@@ -9468,7 +9479,7 @@ var SVGDefines = function SVGDefines(_ref) {
|
|
|
9468
9479
|
id: "dataVerification",
|
|
9469
9480
|
fill: "none"
|
|
9470
9481
|
}, /*#__PURE__*/React__default['default'].createElement("g", {
|
|
9471
|
-
transform: "scale(0.
|
|
9482
|
+
transform: "scale(0.84) translate(1.8, 1.4)"
|
|
9472
9483
|
}, /*#__PURE__*/React__default['default'].createElement("path", {
|
|
9473
9484
|
d: "M10.4714 7.13807C10.7318 6.87772 10.7318 6.45561 10.4714 6.19526C10.2111 5.93491 9.78895 5.93491 9.5286 6.19526L7.33333 8.39052L6.4714 7.52859C6.21106 7.26825 5.78894 7.26825 5.5286 7.52859C5.26825 7.78894 5.26825 8.21105 5.5286 8.4714L6.86193 9.80474C7.12228 10.0651 7.54439 10.0651 7.80474 9.80474L10.4714 7.13807Z",
|
|
9474
9485
|
fill: "#363B3F"
|
|
@@ -9489,7 +9500,7 @@ var SVGDefines = function SVGDefines(_ref) {
|
|
|
9489
9500
|
viewBox: "0 0 16 16",
|
|
9490
9501
|
fill: "none"
|
|
9491
9502
|
}, /*#__PURE__*/React__default['default'].createElement("g", {
|
|
9492
|
-
transform: "scale(
|
|
9503
|
+
transform: "scale(0.9) translate(0, 0)"
|
|
9493
9504
|
}, /*#__PURE__*/React__default['default'].createElement("path", {
|
|
9494
9505
|
"fill-rule": "evenodd",
|
|
9495
9506
|
"clip-rule": "evenodd",
|
|
@@ -9547,7 +9558,7 @@ var SVGDefines = function SVGDefines(_ref) {
|
|
|
9547
9558
|
viewBox: "0 0 18 18",
|
|
9548
9559
|
fill: "none"
|
|
9549
9560
|
}, /*#__PURE__*/React__default['default'].createElement("g", {
|
|
9550
|
-
transform: "scale(0.
|
|
9561
|
+
transform: "scale(0.85) translate(1.8, 1.4)"
|
|
9551
9562
|
}, /*#__PURE__*/React__default['default'].createElement("path", {
|
|
9552
9563
|
"fill-rule": "evenodd",
|
|
9553
9564
|
"clip-rule": "evenodd",
|