@fileverse-dev/fortune-react 1.3.10-input-1 → 1.3.10-input-2

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.
@@ -294,6 +294,10 @@ var ConditionRules = function ConditionRules(_a) {
294
294
  text: "textContains",
295
295
  value: "()",
296
296
  label: "Text Contains"
297
+ }, {
298
+ text: "empty",
299
+ value: "",
300
+ label: "Empty"
297
301
  }, {
298
302
  text: "occurrenceDate",
299
303
  value: conditionformat.yesterday,
@@ -334,7 +338,7 @@ var ConditionRules = function ConditionRules(_a) {
334
338
  marginBottom: "16px"
335
339
  }
336
340
  }, matchedConditionFormatKey.map(function (key) {
337
- var _a, _b;
341
+ var _a, _b, _c;
338
342
  return /*#__PURE__*/React.createElement("div", {
339
343
  onClick: function onClick() {
340
344
  var _a;
@@ -385,10 +389,10 @@ var ConditionRules = function ConditionRules(_a) {
385
389
  }, /*#__PURE__*/React.createElement("h3", {
386
390
  className: "fortune-condition-rules__heading condition-list-type",
387
391
  "data-testid": "condition-rules-heading-".concat(key)
388
- }, conditionformat[allConditionFormats[key].conditionName], " ", (_a = allConditionFormats[key].conditionValue) === null || _a === void 0 ? void 0 : _a[0]), /*#__PURE__*/React.createElement("p", {
392
+ }, conditionformat[allConditionFormats[key].conditionName], allConditionFormats[key].conditionName !== "empty" && " ".concat((_b = (_a = allConditionFormats[key].conditionValue) === null || _a === void 0 ? void 0 : _a[0]) !== null && _b !== void 0 ? _b : "")), /*#__PURE__*/React.createElement("p", {
389
393
  className: "fortune-condition-rules__para condition-list-range",
390
394
  "data-testid": "condition-rules-para-".concat(key)
391
- }, (_b = allConditionFormats[key].cellrange) === null || _b === void 0 ? void 0 : _b.map(function (range) {
395
+ }, (_c = allConditionFormats[key].cellrange) === null || _c === void 0 ? void 0 : _c.map(function (range) {
392
396
  var startCol = numberToColumn(range.column[0] + 1);
393
397
  var endCol = numberToColumn(range.column[1] + 1);
394
398
  var startRow = range.row[0] + 1;
@@ -467,6 +471,12 @@ var ConditionRules = function ConditionRules(_a) {
467
471
  }, "Format cells if"), /*#__PURE__*/React.createElement(Select, {
468
472
  value: type,
469
473
  onValueChange: function onValueChange(value) {
474
+ if (value === "empty" || type === "empty") {
475
+ setContext(function (ctx) {
476
+ ctx.conditionRules.rulesValue = "";
477
+ });
478
+ setEditConditionFormatValue(null);
479
+ }
470
480
  setType(value);
471
481
  }
472
482
  }, /*#__PURE__*/React.createElement(SelectTrigger, null, /*#__PURE__*/React.createElement(SelectValue, null, /*#__PURE__*/React.createElement("div", {
@@ -804,7 +814,7 @@ var ConditionRules = function ConditionRules(_a) {
804
814
  },
805
815
  tabIndex: 0
806
816
  }, button.cancel), editConditionFormatKey !== null ? (/*#__PURE__*/React.createElement(Button, {
807
- disabled: context.conditionRules.rulesValue === "",
817
+ disabled: context.conditionRules.rulesValue === "" && type !== "empty",
808
818
  variant: "default",
809
819
  style: {
810
820
  minWidth: "80px"
@@ -814,7 +824,7 @@ var ConditionRules = function ConditionRules(_a) {
814
824
  },
815
825
  tabIndex: 0
816
826
  }, "Update rule")) : (/*#__PURE__*/React.createElement(Button, {
817
- disabled: context.conditionRules.rulesValue === "",
827
+ disabled: context.conditionRules.rulesValue === "" && type !== "empty",
818
828
  variant: "default",
819
829
  style: {
820
830
  minWidth: "80px"
@@ -107,6 +107,9 @@ var ConditionalFormat = function ConditionalFormat(_a) {
107
107
  }, {
108
108
  text: "textContains",
109
109
  value: "()"
110
+ }, {
111
+ text: "empty",
112
+ value: ""
110
113
  }, {
111
114
  text: "occurrenceDate",
112
115
  value: conditionformat.yesterday
@@ -17,50 +17,50 @@ import ContentEditable from "./ContentEditable";
17
17
  import FormulaSearch from "./FormulaSearch";
18
18
  import FormulaHint from "./FormulaHint";
19
19
  import usePrevious from "../../hooks/usePrevious";
20
- import { moveCursorToEnd, getCursorPosition, isLetterNumberPattern, removeLastSpan, incrementColumn, decrementColumn, incrementRow, decrementRow, countCommasBeforeCursor } from "./helper";
20
+ import { moveCursorToEnd, getCursorPosition, isLetterNumberPattern, removeLastSpan, countCommasBeforeCursor } from "./helper";
21
21
  import { LucideIcon } from "./LucideIcon";
22
22
  var InputBox = function InputBox() {
23
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
24
- var _m = useContext(WorkbookContext),
25
- context = _m.context,
26
- setContext = _m.setContext,
27
- refs = _m.refs;
23
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
24
+ var _o = useContext(WorkbookContext),
25
+ context = _o.context,
26
+ setContext = _o.setContext,
27
+ refs = _o.refs;
28
28
  var inputRef = useRef(null);
29
29
  var lastKeyDownEventRef = useRef(null);
30
30
  var prevCellUpdate = usePrevious(context.luckysheetCellUpdate);
31
31
  var prevSheetId = usePrevious(context.currentSheetId);
32
- var _o = useState(false),
33
- isHidenRC = _o[0],
34
- setIsHidenRC = _o[1];
35
32
  var _p = useState(false),
36
- isInputBoxActive = _p[0],
37
- setIsInputBoxActive = _p[1];
38
- var _q = useState(""),
39
- activeCell = _q[0],
40
- setActiveCell = _q[1];
33
+ isHidenRC = _p[0],
34
+ setIsHidenRC = _p[1];
35
+ var _q = useState(false),
36
+ isInputBoxActive = _q[0],
37
+ setIsInputBoxActive = _q[1];
41
38
  var _r = useState(""),
42
- activeRefCell = _r[0],
43
- setActiveRefCell = _r[1];
44
- var _s = useState({
39
+ activeCell = _r[0],
40
+ setActiveCell = _r[1];
41
+ var _s = useState(""),
42
+ activeRefCell = _s[0],
43
+ setActiveRefCell = _s[1];
44
+ var _t = useState({
45
45
  left: 0,
46
46
  top: 0
47
47
  }),
48
- frozenPosition = _s[0],
49
- setFrozenPosition = _s[1];
48
+ frozenPosition = _t[0],
49
+ setFrozenPosition = _t[1];
50
50
  var firstSelection = (_a = context.luckysheet_select_save) === null || _a === void 0 ? void 0 : _a[0];
51
- var _t = useState({}),
52
- firstSelectionActiveCell = _t[0],
53
- setFirstSelectionActiveCell = _t[1];
54
- var _u = useState(0),
55
- commaCount = _u[0],
56
- setCommaCount = _u[1];
51
+ var _u = useState({}),
52
+ firstSelectionActiveCell = _u[0],
53
+ setFirstSelectionActiveCell = _u[1];
54
+ var _v = useState(0),
55
+ commaCount = _v[0],
56
+ setCommaCount = _v[1];
57
57
  var hideFormulaHintLocal = localStorage.getItem("formulaMore") === "true";
58
- var _v = useState(!hideFormulaHintLocal),
59
- showFormulaHint = _v[0],
60
- setShowFormulaHint = _v[1];
61
- var _w = useState(false),
62
- showSearchHint = _w[0],
63
- setShowSearchHint = _w[1];
58
+ var _w = useState(!hideFormulaHintLocal),
59
+ showFormulaHint = _w[0],
60
+ setShowFormulaHint = _w[1];
61
+ var _x = useState(false),
62
+ showSearchHint = _x[0],
63
+ setShowSearchHint = _x[1];
64
64
  var row_index = firstSelection === null || firstSelection === void 0 ? void 0 : firstSelection.row_focus;
65
65
  var col_index = firstSelection === null || firstSelection === void 0 ? void 0 : firstSelection.column_focus;
66
66
  var preText = useRef("");
@@ -68,9 +68,9 @@ var InputBox = function InputBox() {
68
68
  var isComposingRef = useRef(false);
69
69
  var ZWSP = "\u200B";
70
70
  var inputBoxInnerRef = useRef(null);
71
- var _x = useState([]),
72
- linkSelectionHighlightRects = _x[0],
73
- setLinkSelectionHighlightRects = _x[1];
71
+ var _y = useState([]),
72
+ linkSelectionHighlightRects = _y[0],
73
+ setLinkSelectionHighlightRects = _y[1];
74
74
  var ensureNotEmpty = function ensureNotEmpty() {
75
75
  var el = inputRef.current;
76
76
  if (!el) return;
@@ -278,6 +278,54 @@ var InputBox = function InputBox() {
278
278
  event.stopPropagation();
279
279
  event.preventDefault();
280
280
  };
281
+ useEffect(function () {
282
+ var _a, _b;
283
+ var selection = (_a = context.luckysheet_select_save) === null || _a === void 0 ? void 0 : _a[0];
284
+ var editor = inputRef.current;
285
+ if (!selection || !editor || !isInputBoxActive || ((_b = context.rangeDialog) === null || _b === void 0 ? void 0 : _b.show)) {
286
+ return;
287
+ }
288
+ var rowSel = selection.row;
289
+ var colSel = selection.column;
290
+ if (!rowSel || !colSel || rowSel.length < 2 || colSel.length < 2) return;
291
+ var rowStart = Math.min(rowSel[0], rowSel[1]);
292
+ var rowEnd = Math.max(rowSel[0], rowSel[1]);
293
+ var colStart = Math.min(colSel[0], colSel[1]);
294
+ var colEnd = Math.max(colSel[0], colSel[1]);
295
+ var startRef = "".concat(indexToColumnChar(colStart)).concat(rowStart + 1);
296
+ var endRef = "".concat(indexToColumnChar(colEnd)).concat(rowEnd + 1);
297
+ var refText = startRef === endRef ? startRef : "".concat(startRef, ":").concat(endRef);
298
+ var editorText = editor.innerText || "";
299
+ if (!editorText.startsWith("=")) return;
300
+ var spans = editor.querySelectorAll("span");
301
+ var lastSpan = spans[spans.length - 1];
302
+ var lastSpanText = (lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText) || "";
303
+ var isA1RangePattern = /^[a-zA-Z]+\d+:[a-zA-Z]+\d+$/.test(lastSpanText);
304
+ var notFunctionInit = !editorText.includes("(");
305
+ var refNotAllowed = lastSpanText.includes(")") || notFunctionInit && /^[a-zA-Z]+$/.test(lastSpanText) && !_.includes(["="], lastSpanText);
306
+ var shouldHandleRef = (lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.classList.contains("fortune-formula-functionrange-cell")) || isLetterNumberPattern(lastSpanText) || isA1RangePattern || (lastSpanText === "(" || lastSpanText === "," || lastSpanText.includes(":") || lastSpanText === "=") && !lastSpanText.includes('"') && !refNotAllowed && !/^[a-zA-Z]+$/.test(lastSpanText);
307
+ if (!shouldHandleRef) return;
308
+ var refSpanHtml = "<span class=\"fortune-formula-functionrange-cell\" rangeindex=\"0\" dir=\"auto\" style=\"color:#c1232b;\">".concat(refText, "</span>");
309
+ if (lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.classList.contains("fortune-formula-functionrange-cell")) {
310
+ if (lastSpan.textContent !== refText) lastSpan.textContent = refText;
311
+ setTimeout(function () {
312
+ return moveCursorToEnd(editor);
313
+ }, 1);
314
+ return;
315
+ }
316
+ if (isLetterNumberPattern(lastSpanText) || isA1RangePattern) {
317
+ var htmlR = removeLastSpan(editor.innerHTML);
318
+ editor.innerHTML = "".concat(htmlR).concat(refSpanHtml);
319
+ setTimeout(function () {
320
+ return moveCursorToEnd(editor);
321
+ }, 1);
322
+ return;
323
+ }
324
+ editor.innerHTML = "".concat(editor.innerHTML).concat(refSpanHtml);
325
+ setTimeout(function () {
326
+ return moveCursorToEnd(editor);
327
+ }, 1);
328
+ }, [context.luckysheet_select_save, (_d = context.rangeDialog) === null || _d === void 0 ? void 0 : _d.show, isInputBoxActive]);
281
329
  var onKeyDown = useCallback(function (e) {
282
330
  var _a, _b;
283
331
  lastKeyDownEventRef.current = new KeyboardEvent(e.type, e.nativeEvent);
@@ -310,37 +358,18 @@ var InputBox = function InputBox() {
310
358
  }, 5);
311
359
  }
312
360
  }
313
- var refCell = placeRef.current;
314
- if (e.key === "ArrowUp") {
315
- refCell = decrementRow(placeRef.current);
316
- } else if (e.key === "ArrowDown") {
317
- refCell = incrementRow(placeRef.current);
318
- } else if (e.key === "ArrowLeft") {
319
- refCell = decrementColumn(placeRef.current);
320
- } else if (e.key === "ArrowRight") {
321
- refCell = incrementColumn(placeRef.current);
322
- }
323
- if ((e.key === "ArrowUp" || e.key === "ArrowDown" || e.key === "ArrowLeft" || e.key === "ArrowRight") && !(getCursorPosition(inputRef === null || inputRef === void 0 ? void 0 : inputRef.current) !== (inputRef === null || inputRef === void 0 ? void 0 : inputRef.current.innerText.length) && e.key === "ArrowRight")) {
324
- var parser = new DOMParser();
325
- var doc = parser.parseFromString("<div>".concat((_a = inputRef === null || inputRef === void 0 ? void 0 : inputRef.current) === null || _a === void 0 ? void 0 : _a.innerHTML, "</div>"), "text/html");
326
- var spans = doc.querySelectorAll("span");
327
- var lastSpan = spans[spans.length - 1];
328
- var notFunctionInit = !((_b = document.getElementById("luckysheet-rich-text-editor")) === null || _b === void 0 ? void 0 : _b.innerText.includes("("));
329
- var arrowRefNotAllowed = (lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText.includes(")")) || notFunctionInit && /^[a-zA-Z]+$/.test(lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText) && !_.includes(["="], lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText);
330
- if (((lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText) === "(" || (lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText) === "," || (lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText.includes(":")) || (lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText) !== ")") && !(lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText.includes('"')) && !isLetterNumberPattern(lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText) && !arrowRefNotAllowed && !/^[a-zA-Z]+$/.test(lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText)) {
331
- allowListNavigation = false;
332
- inputRef.current.innerHTML = "".concat(inputRef.current.innerHTML, "<span class=\"fortune-formula-functionrange-cell\" rangeindex=\"0\" dir=\"auto\" style=\"color:#c1232b;\">").concat(refCell, "</span>");
333
- setTimeout(function () {
334
- moveCursorToEnd(inputRef.current);
335
- }, 1);
336
- }
337
- if (isLetterNumberPattern(lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText)) {
361
+ var isArrowKey = e.key === "ArrowUp" || e.key === "ArrowDown" || e.key === "ArrowLeft" || e.key === "ArrowRight";
362
+ if (isArrowKey && !(getCursorPosition(inputRef === null || inputRef === void 0 ? void 0 : inputRef.current) !== (inputRef === null || inputRef === void 0 ? void 0 : inputRef.current.innerText.length) && e.key === "ArrowRight")) {
363
+ var editorText = ((_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.innerText) || "";
364
+ var lastSpanText = getLastInputSpanText() || "";
365
+ var isA1RangePattern = /^[a-zA-Z]+\d+:[a-zA-Z]+\d+$/.test(lastSpanText);
366
+ var notFunctionInit = !editorText.includes("(");
367
+ var refNotAllowed = lastSpanText.includes(")") || notFunctionInit && /^[a-zA-Z]+$/.test(lastSpanText) && !_.includes(["="], lastSpanText);
368
+ var shouldTreatAsRefNavigation = editorText.startsWith("=") && (Boolean((_b = inputRef.current) === null || _b === void 0 ? void 0 : _b.querySelector(".fortune-formula-functionrange-cell")) || isLetterNumberPattern(lastSpanText) || isA1RangePattern || (lastSpanText === "(" || lastSpanText === "," || lastSpanText.includes(":") || lastSpanText === "=") && !lastSpanText.includes('"') && !refNotAllowed && !/^[a-zA-Z]+$/.test(lastSpanText));
369
+ if (shouldTreatAsRefNavigation) {
338
370
  allowListNavigation = false;
339
- var htmlR = removeLastSpan(inputRef === null || inputRef === void 0 ? void 0 : inputRef.current.innerHTML);
340
- inputRef.current.innerHTML = "".concat(htmlR, "<span class=\"fortune-formula-functionrange-cell\" rangeindex=\"0\" dir=\"auto\" style=\"color:#c1232b;\">").concat(refCell, "</span>");
341
- moveCursorToEnd(inputRef.current);
342
371
  setTimeout(function () {
343
- moveCursorToEnd(inputRef.current);
372
+ if (inputRef.current) moveCursorToEnd(inputRef.current);
344
373
  }, 1);
345
374
  }
346
375
  }
@@ -398,7 +427,7 @@ var InputBox = function InputBox() {
398
427
  }
399
428
  e.preventDefault();
400
429
  }
401
- }, [clearSearchItemActiveClass, context.luckysheetCellUpdate.length, selectActiveFormula, setContext, firstSelection]);
430
+ }, [clearSearchItemActiveClass, context.luckysheetCellUpdate.length, selectActiveFormula, setContext]);
402
431
  var handleHideShowHint = function handleHideShowHint() {
403
432
  var _a, _b, _c, _d;
404
433
  var searchElFx = (_a = document.getElementsByClassName("fx-search")) === null || _a === void 0 ? void 0 : _a[0];
@@ -488,7 +517,7 @@ var InputBox = function InputBox() {
488
517
  zIndex: _.isEmpty(context.luckysheetCellUpdate) ? -1 : 19,
489
518
  display: "block"
490
519
  };
491
- }, [firstSelection, (_d = context.rangeDialog) === null || _d === void 0 ? void 0 : _d.show, context.luckysheetCellUpdate, refs.cellArea, isInputBoxActive, frozenPosition, context.scrollLeft, context.scrollTop]);
520
+ }, [firstSelection, (_e = context.rangeDialog) === null || _e === void 0 ? void 0 : _e.show, context.luckysheetCellUpdate, refs.cellArea, isInputBoxActive, frozenPosition, context.scrollLeft, context.scrollTop]);
492
521
  useEffect(function () {
493
522
  var _a;
494
523
  if (firstSelection && !((_a = context.rangeDialog) === null || _a === void 0 ? void 0 : _a.show) && !isInputBoxActive && !_.isEmpty(context.luckysheetCellUpdate)) {
@@ -504,7 +533,7 @@ var InputBox = function InputBox() {
504
533
  setIsInputBoxActive(true);
505
534
  }
506
535
  }
507
- }, [firstSelection, (_e = context.rangeDialog) === null || _e === void 0 ? void 0 : _e.show, context.luckysheetCellUpdate, isInputBoxActive, context.scrollLeft, context.scrollTop, refs.cellArea]);
536
+ }, [firstSelection, (_f = context.rangeDialog) === null || _f === void 0 ? void 0 : _f.show, context.luckysheetCellUpdate, isInputBoxActive, context.scrollLeft, context.scrollTop, refs.cellArea]);
508
537
  var getAddressIndicatorPosition = useCallback(function () {
509
538
  var _a;
510
539
  if (!firstSelection || ((_a = context.rangeDialog) === null || _a === void 0 ? void 0 : _a.show)) {
@@ -517,7 +546,7 @@ var InputBox = function InputBox() {
517
546
  left: "0",
518
547
  display: "block"
519
548
  };
520
- }, [firstSelection, (_f = context.rangeDialog) === null || _f === void 0 ? void 0 : _f.show]);
549
+ }, [firstSelection, (_g = context.rangeDialog) === null || _g === void 0 ? void 0 : _g.show]);
521
550
  var getCellAddress = useCallback(function () {
522
551
  if (!firstSelection) return "";
523
552
  var rowIndex = firstSelection.row_focus || 0;
@@ -567,7 +596,7 @@ var InputBox = function InputBox() {
567
596
  };
568
597
  });
569
598
  setLinkSelectionHighlightRects(relative);
570
- }, [(_g = context.linkCard) === null || _g === void 0 ? void 0 : _g.applyToSelection, (_h = context.linkCard) === null || _h === void 0 ? void 0 : _h.selectionOffsets, (_j = context.linkCard) === null || _j === void 0 ? void 0 : _j.r, (_k = context.linkCard) === null || _k === void 0 ? void 0 : _k.c, context.luckysheetCellUpdate]);
599
+ }, [(_h = context.linkCard) === null || _h === void 0 ? void 0 : _h.applyToSelection, (_j = context.linkCard) === null || _j === void 0 ? void 0 : _j.selectionOffsets, (_k = context.linkCard) === null || _k === void 0 ? void 0 : _k.r, (_l = context.linkCard) === null || _l === void 0 ? void 0 : _l.c, context.luckysheetCellUpdate]);
571
600
  var wraperGetCell = function wraperGetCell() {
572
601
  var cell = getCellAddress();
573
602
  placeRef.current = cell;
@@ -604,7 +633,7 @@ var InputBox = function InputBox() {
604
633
  onMouseUp: function onMouseUp(e) {
605
634
  return e.stopPropagation();
606
635
  }
607
- }, firstSelection && !((_l = context.rangeDialog) === null || _l === void 0 ? void 0 : _l.show) && (/*#__PURE__*/React.createElement("div", {
636
+ }, firstSelection && !((_m = context.rangeDialog) === null || _m === void 0 ? void 0 : _m.show) && (/*#__PURE__*/React.createElement("div", {
608
637
  className: "luckysheet-cell-address-indicator",
609
638
  style: getAddressIndicatorPosition()
610
639
  }, wraperGetCell())), /*#__PURE__*/React.createElement("div", {
@@ -728,6 +728,8 @@ export declare function generateAPIs(context: Context, setContext: (recipe: (ctx
728
728
  conditionformat_equal_title: string;
729
729
  conditionformat_textContains: string;
730
730
  conditionformat_textContains_title: string;
731
+ conditionformat_empty: string;
732
+ conditionformat_empty_title: string;
731
733
  conditionformat_occurrenceDate: string;
732
734
  conditionformat_occurrenceDate_title: string;
733
735
  conditionformat_duplicateValue: string;
@@ -830,6 +832,7 @@ export declare function generateAPIs(context: Context, setContext: (recipe: (ctx
830
832
  between2: string;
831
833
  contain: string;
832
834
  textContains: string;
835
+ empty: string;
833
836
  duplicateValue: string;
834
837
  uniqueValue: string;
835
838
  top: string;
@@ -735,6 +735,8 @@ declare const Workbook: React.ForwardRefExoticComponent<Settings & AdditionalPro
735
735
  conditionformat_equal_title: string;
736
736
  conditionformat_textContains: string;
737
737
  conditionformat_textContains_title: string;
738
+ conditionformat_empty: string;
739
+ conditionformat_empty_title: string;
738
740
  conditionformat_occurrenceDate: string;
739
741
  conditionformat_occurrenceDate_title: string;
740
742
  conditionformat_duplicateValue: string;
@@ -837,6 +839,7 @@ declare const Workbook: React.ForwardRefExoticComponent<Settings & AdditionalPro
837
839
  between2: string;
838
840
  contain: string;
839
841
  textContains: string;
842
+ empty: string;
840
843
  duplicateValue: string;
841
844
  uniqueValue: string;
842
845
  top: string;
@@ -303,6 +303,10 @@ var ConditionRules = function ConditionRules(_a) {
303
303
  text: "textContains",
304
304
  value: "()",
305
305
  label: "Text Contains"
306
+ }, {
307
+ text: "empty",
308
+ value: "",
309
+ label: "Empty"
306
310
  }, {
307
311
  text: "occurrenceDate",
308
312
  value: conditionformat.yesterday,
@@ -343,7 +347,7 @@ var ConditionRules = function ConditionRules(_a) {
343
347
  marginBottom: "16px"
344
348
  }
345
349
  }, matchedConditionFormatKey.map(function (key) {
346
- var _a, _b;
350
+ var _a, _b, _c;
347
351
  return /*#__PURE__*/_react.default.createElement("div", {
348
352
  onClick: function onClick() {
349
353
  var _a;
@@ -394,10 +398,10 @@ var ConditionRules = function ConditionRules(_a) {
394
398
  }, /*#__PURE__*/_react.default.createElement("h3", {
395
399
  className: "fortune-condition-rules__heading condition-list-type",
396
400
  "data-testid": "condition-rules-heading-".concat(key)
397
- }, conditionformat[allConditionFormats[key].conditionName], " ", (_a = allConditionFormats[key].conditionValue) === null || _a === void 0 ? void 0 : _a[0]), /*#__PURE__*/_react.default.createElement("p", {
401
+ }, conditionformat[allConditionFormats[key].conditionName], allConditionFormats[key].conditionName !== "empty" && " ".concat((_b = (_a = allConditionFormats[key].conditionValue) === null || _a === void 0 ? void 0 : _a[0]) !== null && _b !== void 0 ? _b : "")), /*#__PURE__*/_react.default.createElement("p", {
398
402
  className: "fortune-condition-rules__para condition-list-range",
399
403
  "data-testid": "condition-rules-para-".concat(key)
400
- }, (_b = allConditionFormats[key].cellrange) === null || _b === void 0 ? void 0 : _b.map(function (range) {
404
+ }, (_c = allConditionFormats[key].cellrange) === null || _c === void 0 ? void 0 : _c.map(function (range) {
401
405
  var startCol = (0, _helper.numberToColumn)(range.column[0] + 1);
402
406
  var endCol = (0, _helper.numberToColumn)(range.column[1] + 1);
403
407
  var startRow = range.row[0] + 1;
@@ -476,6 +480,12 @@ var ConditionRules = function ConditionRules(_a) {
476
480
  }, "Format cells if"), /*#__PURE__*/_react.default.createElement(_ui.Select, {
477
481
  value: type,
478
482
  onValueChange: function onValueChange(value) {
483
+ if (value === "empty" || type === "empty") {
484
+ setContext(function (ctx) {
485
+ ctx.conditionRules.rulesValue = "";
486
+ });
487
+ setEditConditionFormatValue(null);
488
+ }
479
489
  setType(value);
480
490
  }
481
491
  }, /*#__PURE__*/_react.default.createElement(_ui.SelectTrigger, null, /*#__PURE__*/_react.default.createElement(_ui.SelectValue, null, /*#__PURE__*/_react.default.createElement("div", {
@@ -813,7 +823,7 @@ var ConditionRules = function ConditionRules(_a) {
813
823
  },
814
824
  tabIndex: 0
815
825
  }, button.cancel), editConditionFormatKey !== null ? (/*#__PURE__*/_react.default.createElement(_ui.Button, {
816
- disabled: context.conditionRules.rulesValue === "",
826
+ disabled: context.conditionRules.rulesValue === "" && type !== "empty",
817
827
  variant: "default",
818
828
  style: {
819
829
  minWidth: "80px"
@@ -823,7 +833,7 @@ var ConditionRules = function ConditionRules(_a) {
823
833
  },
824
834
  tabIndex: 0
825
835
  }, "Update rule")) : (/*#__PURE__*/_react.default.createElement(_ui.Button, {
826
- disabled: context.conditionRules.rulesValue === "",
836
+ disabled: context.conditionRules.rulesValue === "" && type !== "empty",
827
837
  variant: "default",
828
838
  style: {
829
839
  minWidth: "80px"
@@ -116,6 +116,9 @@ var ConditionalFormat = function ConditionalFormat(_a) {
116
116
  }, {
117
117
  text: "textContains",
118
118
  value: "()"
119
+ }, {
120
+ text: "empty",
121
+ value: ""
119
122
  }, {
120
123
  text: "occurrenceDate",
121
124
  value: conditionformat.yesterday
@@ -29,47 +29,47 @@ var __assign = void 0 && (void 0).__assign || function () {
29
29
  return __assign.apply(this, arguments);
30
30
  };
31
31
  var InputBox = function InputBox() {
32
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
33
- var _m = (0, _react.useContext)(_context.default),
34
- context = _m.context,
35
- setContext = _m.setContext,
36
- refs = _m.refs;
32
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
33
+ var _o = (0, _react.useContext)(_context.default),
34
+ context = _o.context,
35
+ setContext = _o.setContext,
36
+ refs = _o.refs;
37
37
  var inputRef = (0, _react.useRef)(null);
38
38
  var lastKeyDownEventRef = (0, _react.useRef)(null);
39
39
  var prevCellUpdate = (0, _usePrevious.default)(context.luckysheetCellUpdate);
40
40
  var prevSheetId = (0, _usePrevious.default)(context.currentSheetId);
41
- var _o = (0, _react.useState)(false),
42
- isHidenRC = _o[0],
43
- setIsHidenRC = _o[1];
44
41
  var _p = (0, _react.useState)(false),
45
- isInputBoxActive = _p[0],
46
- setIsInputBoxActive = _p[1];
47
- var _q = (0, _react.useState)(""),
48
- activeCell = _q[0],
49
- setActiveCell = _q[1];
42
+ isHidenRC = _p[0],
43
+ setIsHidenRC = _p[1];
44
+ var _q = (0, _react.useState)(false),
45
+ isInputBoxActive = _q[0],
46
+ setIsInputBoxActive = _q[1];
50
47
  var _r = (0, _react.useState)(""),
51
- activeRefCell = _r[0],
52
- setActiveRefCell = _r[1];
53
- var _s = (0, _react.useState)({
48
+ activeCell = _r[0],
49
+ setActiveCell = _r[1];
50
+ var _s = (0, _react.useState)(""),
51
+ activeRefCell = _s[0],
52
+ setActiveRefCell = _s[1];
53
+ var _t = (0, _react.useState)({
54
54
  left: 0,
55
55
  top: 0
56
56
  }),
57
- frozenPosition = _s[0],
58
- setFrozenPosition = _s[1];
57
+ frozenPosition = _t[0],
58
+ setFrozenPosition = _t[1];
59
59
  var firstSelection = (_a = context.luckysheet_select_save) === null || _a === void 0 ? void 0 : _a[0];
60
- var _t = (0, _react.useState)({}),
61
- firstSelectionActiveCell = _t[0],
62
- setFirstSelectionActiveCell = _t[1];
63
- var _u = (0, _react.useState)(0),
64
- commaCount = _u[0],
65
- setCommaCount = _u[1];
60
+ var _u = (0, _react.useState)({}),
61
+ firstSelectionActiveCell = _u[0],
62
+ setFirstSelectionActiveCell = _u[1];
63
+ var _v = (0, _react.useState)(0),
64
+ commaCount = _v[0],
65
+ setCommaCount = _v[1];
66
66
  var hideFormulaHintLocal = localStorage.getItem("formulaMore") === "true";
67
- var _v = (0, _react.useState)(!hideFormulaHintLocal),
68
- showFormulaHint = _v[0],
69
- setShowFormulaHint = _v[1];
70
- var _w = (0, _react.useState)(false),
71
- showSearchHint = _w[0],
72
- setShowSearchHint = _w[1];
67
+ var _w = (0, _react.useState)(!hideFormulaHintLocal),
68
+ showFormulaHint = _w[0],
69
+ setShowFormulaHint = _w[1];
70
+ var _x = (0, _react.useState)(false),
71
+ showSearchHint = _x[0],
72
+ setShowSearchHint = _x[1];
73
73
  var row_index = firstSelection === null || firstSelection === void 0 ? void 0 : firstSelection.row_focus;
74
74
  var col_index = firstSelection === null || firstSelection === void 0 ? void 0 : firstSelection.column_focus;
75
75
  var preText = (0, _react.useRef)("");
@@ -77,9 +77,9 @@ var InputBox = function InputBox() {
77
77
  var isComposingRef = (0, _react.useRef)(false);
78
78
  var ZWSP = "\u200B";
79
79
  var inputBoxInnerRef = (0, _react.useRef)(null);
80
- var _x = (0, _react.useState)([]),
81
- linkSelectionHighlightRects = _x[0],
82
- setLinkSelectionHighlightRects = _x[1];
80
+ var _y = (0, _react.useState)([]),
81
+ linkSelectionHighlightRects = _y[0],
82
+ setLinkSelectionHighlightRects = _y[1];
83
83
  var ensureNotEmpty = function ensureNotEmpty() {
84
84
  var el = inputRef.current;
85
85
  if (!el) return;
@@ -287,6 +287,54 @@ var InputBox = function InputBox() {
287
287
  event.stopPropagation();
288
288
  event.preventDefault();
289
289
  };
290
+ (0, _react.useEffect)(function () {
291
+ var _a, _b;
292
+ var selection = (_a = context.luckysheet_select_save) === null || _a === void 0 ? void 0 : _a[0];
293
+ var editor = inputRef.current;
294
+ if (!selection || !editor || !isInputBoxActive || ((_b = context.rangeDialog) === null || _b === void 0 ? void 0 : _b.show)) {
295
+ return;
296
+ }
297
+ var rowSel = selection.row;
298
+ var colSel = selection.column;
299
+ if (!rowSel || !colSel || rowSel.length < 2 || colSel.length < 2) return;
300
+ var rowStart = Math.min(rowSel[0], rowSel[1]);
301
+ var rowEnd = Math.max(rowSel[0], rowSel[1]);
302
+ var colStart = Math.min(colSel[0], colSel[1]);
303
+ var colEnd = Math.max(colSel[0], colSel[1]);
304
+ var startRef = "".concat((0, _fortuneCore.indexToColumnChar)(colStart)).concat(rowStart + 1);
305
+ var endRef = "".concat((0, _fortuneCore.indexToColumnChar)(colEnd)).concat(rowEnd + 1);
306
+ var refText = startRef === endRef ? startRef : "".concat(startRef, ":").concat(endRef);
307
+ var editorText = editor.innerText || "";
308
+ if (!editorText.startsWith("=")) return;
309
+ var spans = editor.querySelectorAll("span");
310
+ var lastSpan = spans[spans.length - 1];
311
+ var lastSpanText = (lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText) || "";
312
+ var isA1RangePattern = /^[a-zA-Z]+\d+:[a-zA-Z]+\d+$/.test(lastSpanText);
313
+ var notFunctionInit = !editorText.includes("(");
314
+ var refNotAllowed = lastSpanText.includes(")") || notFunctionInit && /^[a-zA-Z]+$/.test(lastSpanText) && !_lodash.default.includes(["="], lastSpanText);
315
+ var shouldHandleRef = (lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.classList.contains("fortune-formula-functionrange-cell")) || (0, _helper.isLetterNumberPattern)(lastSpanText) || isA1RangePattern || (lastSpanText === "(" || lastSpanText === "," || lastSpanText.includes(":") || lastSpanText === "=") && !lastSpanText.includes('"') && !refNotAllowed && !/^[a-zA-Z]+$/.test(lastSpanText);
316
+ if (!shouldHandleRef) return;
317
+ var refSpanHtml = "<span class=\"fortune-formula-functionrange-cell\" rangeindex=\"0\" dir=\"auto\" style=\"color:#c1232b;\">".concat(refText, "</span>");
318
+ if (lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.classList.contains("fortune-formula-functionrange-cell")) {
319
+ if (lastSpan.textContent !== refText) lastSpan.textContent = refText;
320
+ setTimeout(function () {
321
+ return (0, _helper.moveCursorToEnd)(editor);
322
+ }, 1);
323
+ return;
324
+ }
325
+ if ((0, _helper.isLetterNumberPattern)(lastSpanText) || isA1RangePattern) {
326
+ var htmlR = (0, _helper.removeLastSpan)(editor.innerHTML);
327
+ editor.innerHTML = "".concat(htmlR).concat(refSpanHtml);
328
+ setTimeout(function () {
329
+ return (0, _helper.moveCursorToEnd)(editor);
330
+ }, 1);
331
+ return;
332
+ }
333
+ editor.innerHTML = "".concat(editor.innerHTML).concat(refSpanHtml);
334
+ setTimeout(function () {
335
+ return (0, _helper.moveCursorToEnd)(editor);
336
+ }, 1);
337
+ }, [context.luckysheet_select_save, (_d = context.rangeDialog) === null || _d === void 0 ? void 0 : _d.show, isInputBoxActive]);
290
338
  var onKeyDown = (0, _react.useCallback)(function (e) {
291
339
  var _a, _b;
292
340
  lastKeyDownEventRef.current = new KeyboardEvent(e.type, e.nativeEvent);
@@ -319,37 +367,18 @@ var InputBox = function InputBox() {
319
367
  }, 5);
320
368
  }
321
369
  }
322
- var refCell = placeRef.current;
323
- if (e.key === "ArrowUp") {
324
- refCell = (0, _helper.decrementRow)(placeRef.current);
325
- } else if (e.key === "ArrowDown") {
326
- refCell = (0, _helper.incrementRow)(placeRef.current);
327
- } else if (e.key === "ArrowLeft") {
328
- refCell = (0, _helper.decrementColumn)(placeRef.current);
329
- } else if (e.key === "ArrowRight") {
330
- refCell = (0, _helper.incrementColumn)(placeRef.current);
331
- }
332
- if ((e.key === "ArrowUp" || e.key === "ArrowDown" || e.key === "ArrowLeft" || e.key === "ArrowRight") && !((0, _helper.getCursorPosition)(inputRef === null || inputRef === void 0 ? void 0 : inputRef.current) !== (inputRef === null || inputRef === void 0 ? void 0 : inputRef.current.innerText.length) && e.key === "ArrowRight")) {
333
- var parser = new DOMParser();
334
- var doc = parser.parseFromString("<div>".concat((_a = inputRef === null || inputRef === void 0 ? void 0 : inputRef.current) === null || _a === void 0 ? void 0 : _a.innerHTML, "</div>"), "text/html");
335
- var spans = doc.querySelectorAll("span");
336
- var lastSpan = spans[spans.length - 1];
337
- var notFunctionInit = !((_b = document.getElementById("luckysheet-rich-text-editor")) === null || _b === void 0 ? void 0 : _b.innerText.includes("("));
338
- var arrowRefNotAllowed = (lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText.includes(")")) || notFunctionInit && /^[a-zA-Z]+$/.test(lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText) && !_lodash.default.includes(["="], lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText);
339
- if (((lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText) === "(" || (lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText) === "," || (lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText.includes(":")) || (lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText) !== ")") && !(lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText.includes('"')) && !(0, _helper.isLetterNumberPattern)(lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText) && !arrowRefNotAllowed && !/^[a-zA-Z]+$/.test(lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText)) {
340
- allowListNavigation = false;
341
- inputRef.current.innerHTML = "".concat(inputRef.current.innerHTML, "<span class=\"fortune-formula-functionrange-cell\" rangeindex=\"0\" dir=\"auto\" style=\"color:#c1232b;\">").concat(refCell, "</span>");
342
- setTimeout(function () {
343
- (0, _helper.moveCursorToEnd)(inputRef.current);
344
- }, 1);
345
- }
346
- if ((0, _helper.isLetterNumberPattern)(lastSpan === null || lastSpan === void 0 ? void 0 : lastSpan.innerText)) {
370
+ var isArrowKey = e.key === "ArrowUp" || e.key === "ArrowDown" || e.key === "ArrowLeft" || e.key === "ArrowRight";
371
+ if (isArrowKey && !((0, _helper.getCursorPosition)(inputRef === null || inputRef === void 0 ? void 0 : inputRef.current) !== (inputRef === null || inputRef === void 0 ? void 0 : inputRef.current.innerText.length) && e.key === "ArrowRight")) {
372
+ var editorText = ((_a = inputRef.current) === null || _a === void 0 ? void 0 : _a.innerText) || "";
373
+ var lastSpanText = getLastInputSpanText() || "";
374
+ var isA1RangePattern = /^[a-zA-Z]+\d+:[a-zA-Z]+\d+$/.test(lastSpanText);
375
+ var notFunctionInit = !editorText.includes("(");
376
+ var refNotAllowed = lastSpanText.includes(")") || notFunctionInit && /^[a-zA-Z]+$/.test(lastSpanText) && !_lodash.default.includes(["="], lastSpanText);
377
+ var shouldTreatAsRefNavigation = editorText.startsWith("=") && (Boolean((_b = inputRef.current) === null || _b === void 0 ? void 0 : _b.querySelector(".fortune-formula-functionrange-cell")) || (0, _helper.isLetterNumberPattern)(lastSpanText) || isA1RangePattern || (lastSpanText === "(" || lastSpanText === "," || lastSpanText.includes(":") || lastSpanText === "=") && !lastSpanText.includes('"') && !refNotAllowed && !/^[a-zA-Z]+$/.test(lastSpanText));
378
+ if (shouldTreatAsRefNavigation) {
347
379
  allowListNavigation = false;
348
- var htmlR = (0, _helper.removeLastSpan)(inputRef === null || inputRef === void 0 ? void 0 : inputRef.current.innerHTML);
349
- inputRef.current.innerHTML = "".concat(htmlR, "<span class=\"fortune-formula-functionrange-cell\" rangeindex=\"0\" dir=\"auto\" style=\"color:#c1232b;\">").concat(refCell, "</span>");
350
- (0, _helper.moveCursorToEnd)(inputRef.current);
351
380
  setTimeout(function () {
352
- (0, _helper.moveCursorToEnd)(inputRef.current);
381
+ if (inputRef.current) (0, _helper.moveCursorToEnd)(inputRef.current);
353
382
  }, 1);
354
383
  }
355
384
  }
@@ -407,7 +436,7 @@ var InputBox = function InputBox() {
407
436
  }
408
437
  e.preventDefault();
409
438
  }
410
- }, [clearSearchItemActiveClass, context.luckysheetCellUpdate.length, selectActiveFormula, setContext, firstSelection]);
439
+ }, [clearSearchItemActiveClass, context.luckysheetCellUpdate.length, selectActiveFormula, setContext]);
411
440
  var handleHideShowHint = function handleHideShowHint() {
412
441
  var _a, _b, _c, _d;
413
442
  var searchElFx = (_a = document.getElementsByClassName("fx-search")) === null || _a === void 0 ? void 0 : _a[0];
@@ -497,7 +526,7 @@ var InputBox = function InputBox() {
497
526
  zIndex: _lodash.default.isEmpty(context.luckysheetCellUpdate) ? -1 : 19,
498
527
  display: "block"
499
528
  };
500
- }, [firstSelection, (_d = context.rangeDialog) === null || _d === void 0 ? void 0 : _d.show, context.luckysheetCellUpdate, refs.cellArea, isInputBoxActive, frozenPosition, context.scrollLeft, context.scrollTop]);
529
+ }, [firstSelection, (_e = context.rangeDialog) === null || _e === void 0 ? void 0 : _e.show, context.luckysheetCellUpdate, refs.cellArea, isInputBoxActive, frozenPosition, context.scrollLeft, context.scrollTop]);
501
530
  (0, _react.useEffect)(function () {
502
531
  var _a;
503
532
  if (firstSelection && !((_a = context.rangeDialog) === null || _a === void 0 ? void 0 : _a.show) && !isInputBoxActive && !_lodash.default.isEmpty(context.luckysheetCellUpdate)) {
@@ -513,7 +542,7 @@ var InputBox = function InputBox() {
513
542
  setIsInputBoxActive(true);
514
543
  }
515
544
  }
516
- }, [firstSelection, (_e = context.rangeDialog) === null || _e === void 0 ? void 0 : _e.show, context.luckysheetCellUpdate, isInputBoxActive, context.scrollLeft, context.scrollTop, refs.cellArea]);
545
+ }, [firstSelection, (_f = context.rangeDialog) === null || _f === void 0 ? void 0 : _f.show, context.luckysheetCellUpdate, isInputBoxActive, context.scrollLeft, context.scrollTop, refs.cellArea]);
517
546
  var getAddressIndicatorPosition = (0, _react.useCallback)(function () {
518
547
  var _a;
519
548
  if (!firstSelection || ((_a = context.rangeDialog) === null || _a === void 0 ? void 0 : _a.show)) {
@@ -526,7 +555,7 @@ var InputBox = function InputBox() {
526
555
  left: "0",
527
556
  display: "block"
528
557
  };
529
- }, [firstSelection, (_f = context.rangeDialog) === null || _f === void 0 ? void 0 : _f.show]);
558
+ }, [firstSelection, (_g = context.rangeDialog) === null || _g === void 0 ? void 0 : _g.show]);
530
559
  var getCellAddress = (0, _react.useCallback)(function () {
531
560
  if (!firstSelection) return "";
532
561
  var rowIndex = firstSelection.row_focus || 0;
@@ -576,7 +605,7 @@ var InputBox = function InputBox() {
576
605
  };
577
606
  });
578
607
  setLinkSelectionHighlightRects(relative);
579
- }, [(_g = context.linkCard) === null || _g === void 0 ? void 0 : _g.applyToSelection, (_h = context.linkCard) === null || _h === void 0 ? void 0 : _h.selectionOffsets, (_j = context.linkCard) === null || _j === void 0 ? void 0 : _j.r, (_k = context.linkCard) === null || _k === void 0 ? void 0 : _k.c, context.luckysheetCellUpdate]);
608
+ }, [(_h = context.linkCard) === null || _h === void 0 ? void 0 : _h.applyToSelection, (_j = context.linkCard) === null || _j === void 0 ? void 0 : _j.selectionOffsets, (_k = context.linkCard) === null || _k === void 0 ? void 0 : _k.r, (_l = context.linkCard) === null || _l === void 0 ? void 0 : _l.c, context.luckysheetCellUpdate]);
580
609
  var wraperGetCell = function wraperGetCell() {
581
610
  var cell = getCellAddress();
582
611
  placeRef.current = cell;
@@ -613,7 +642,7 @@ var InputBox = function InputBox() {
613
642
  onMouseUp: function onMouseUp(e) {
614
643
  return e.stopPropagation();
615
644
  }
616
- }, firstSelection && !((_l = context.rangeDialog) === null || _l === void 0 ? void 0 : _l.show) && (/*#__PURE__*/_react.default.createElement("div", {
645
+ }, firstSelection && !((_m = context.rangeDialog) === null || _m === void 0 ? void 0 : _m.show) && (/*#__PURE__*/_react.default.createElement("div", {
617
646
  className: "luckysheet-cell-address-indicator",
618
647
  style: getAddressIndicatorPosition()
619
648
  }, wraperGetCell())), /*#__PURE__*/_react.default.createElement("div", {
@@ -728,6 +728,8 @@ export declare function generateAPIs(context: Context, setContext: (recipe: (ctx
728
728
  conditionformat_equal_title: string;
729
729
  conditionformat_textContains: string;
730
730
  conditionformat_textContains_title: string;
731
+ conditionformat_empty: string;
732
+ conditionformat_empty_title: string;
731
733
  conditionformat_occurrenceDate: string;
732
734
  conditionformat_occurrenceDate_title: string;
733
735
  conditionformat_duplicateValue: string;
@@ -830,6 +832,7 @@ export declare function generateAPIs(context: Context, setContext: (recipe: (ctx
830
832
  between2: string;
831
833
  contain: string;
832
834
  textContains: string;
835
+ empty: string;
833
836
  duplicateValue: string;
834
837
  uniqueValue: string;
835
838
  top: string;
@@ -735,6 +735,8 @@ declare const Workbook: React.ForwardRefExoticComponent<Settings & AdditionalPro
735
735
  conditionformat_equal_title: string;
736
736
  conditionformat_textContains: string;
737
737
  conditionformat_textContains_title: string;
738
+ conditionformat_empty: string;
739
+ conditionformat_empty_title: string;
738
740
  conditionformat_occurrenceDate: string;
739
741
  conditionformat_occurrenceDate_title: string;
740
742
  conditionformat_duplicateValue: string;
@@ -837,6 +839,7 @@ declare const Workbook: React.ForwardRefExoticComponent<Settings & AdditionalPro
837
839
  between2: string;
838
840
  contain: string;
839
841
  textContains: string;
842
+ empty: string;
840
843
  duplicateValue: string;
841
844
  uniqueValue: string;
842
845
  top: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fileverse-dev/fortune-react",
3
- "version": "1.3.10-input-1",
3
+ "version": "1.3.10-input-2",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "module": "es/index.js",
@@ -16,7 +16,7 @@
16
16
  "tsc": "tsc"
17
17
  },
18
18
  "dependencies": {
19
- "@fileverse-dev/fortune-core": "1.3.10-input-1",
19
+ "@fileverse-dev/fortune-core": "1.3.10-input-2",
20
20
  "@fileverse/ui": "5.0.0",
21
21
  "@tippyjs/react": "^4.2.6",
22
22
  "@types/regenerator-runtime": "^0.13.6",