@fileverse-dev/dsheet 2.0.0 → 2.0.1-search-1
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/editor/components/import-button-ui.d.ts +1 -1
- package/dist/editor/open-find-and-replace.d.ts +11 -0
- package/dist/editor/utils/csv-import.d.ts +1 -1
- package/dist/editor/utils/custom-toolbar-item.d.ts +1 -1
- package/dist/editor/utils/export-filename.d.ts +1 -0
- package/dist/{es-DHiiPgkU.js → es-BJ3y6kL2.js} +38 -5
- package/dist/{hi-DgkuC9mD.js → hi-BLJfbm0w.js} +38 -5
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +20289 -18395
- package/dist/sheet-engine/core/api/cell.d.ts +1 -1
- package/dist/sheet-engine/core/context.d.ts +36 -0
- package/dist/sheet-engine/core/events/mouse.d.ts +1 -1
- package/dist/sheet-engine/core/index.d.ts +2 -1
- package/dist/sheet-engine/core/locale/en.d.ts +33 -0
- package/dist/sheet-engine/core/locale/es.d.ts +33 -0
- package/dist/sheet-engine/core/locale/hi.d.ts +33 -0
- package/dist/sheet-engine/core/locale/zh.d.ts +33 -0
- package/dist/sheet-engine/core/locale/zh_tw.d.ts +33 -0
- package/dist/sheet-engine/core/modules/cell.d.ts +5 -0
- package/dist/sheet-engine/core/modules/formula.d.ts +13 -4
- package/dist/sheet-engine/core/modules/index.d.ts +5 -4
- package/dist/sheet-engine/core/modules/inline-string.d.ts +6 -6
- package/dist/sheet-engine/core/modules/rowcol.d.ts +7 -3
- package/dist/sheet-engine/core/modules/searchReplace.d.ts +118 -26
- package/dist/sheet-engine/core/modules/selection.d.ts +12 -6
- package/dist/sheet-engine/core/modules/validation.d.ts +11 -0
- package/dist/sheet-engine/core/types.d.ts +4 -2
- package/dist/sheet-engine/core/utils/patch.d.ts +2 -0
- package/dist/sheet-engine/react/components/QuickSearch/index.d.ts +4 -0
- package/dist/sheet-engine/react/components/ResetRowHeight/index.d.ts +3 -0
- package/dist/sheet-engine/react/components/Workbook/api.d.ts +6 -0
- package/dist/sheet-engine/react/components/Workbook/index.d.ts +4 -0
- package/dist/sheet-engine/react/hooks/useFormulaEditorHistory.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/{zh-ForBOJJx.js → zh-DNw41bZD.js} +38 -5
- package/dist/{zh_tw-CjJceJE_.js → zh_tw-MZjDyZzy.js} +38 -5
- package/package.json +1 -1
|
@@ -11773,7 +11773,7 @@ field 可以是与 database 第一行中某个列标题对应的文本标签,
|
|
|
11773
11773
|
{ text: "", value: "split", example: "" },
|
|
11774
11774
|
{
|
|
11775
11775
|
text: "会计",
|
|
11776
|
-
value:
|
|
11776
|
+
value: `_("${e}"* #,##0.00_);_("${e}"* \\(#,##0.00\\);_("${e}"* "-"??_);_(@_)`,
|
|
11777
11777
|
example: `${e}(1200.09)`
|
|
11778
11778
|
},
|
|
11779
11779
|
// { "text": "财务", "value": "(#.####)", "example": "(1200.09)" },
|
|
@@ -12096,6 +12096,14 @@ field 可以是与 database 第一行中某个列标题对应的文本标签,
|
|
|
12096
12096
|
cannotDeleteColumnReadOnly: "无法删除只读列",
|
|
12097
12097
|
cannotInsertOnRowReadOnly: "无法对只读行插入",
|
|
12098
12098
|
cannotInsertOnColumnReadOnly: "无法对只读列插入",
|
|
12099
|
+
insertRowAboveOne: "在上方插入行",
|
|
12100
|
+
insertRowsAboveN: "在上方插入 {n} 行",
|
|
12101
|
+
insertRowBelowOne: "在下方插入行",
|
|
12102
|
+
insertRowsBelowN: "在下方插入 {n} 行",
|
|
12103
|
+
insertColumnLeftOne: "在左侧插入列",
|
|
12104
|
+
insertColumnsLeftN: "在左侧插入 {n} 列",
|
|
12105
|
+
insertColumnRightOne: "在右侧插入列",
|
|
12106
|
+
insertColumnsRightN: "在右侧插入 {n} 列",
|
|
12099
12107
|
rowOverLimit: "超出10000行限制",
|
|
12100
12108
|
columnOverLimit: "超出1000列限制",
|
|
12101
12109
|
conditionFormat: "条件格式"
|
|
@@ -12180,9 +12188,23 @@ field 可以是与 database 第一行中某个列标题对应的文本标签,
|
|
|
12180
12188
|
lessTwoColumnTip: "请选择最少两行",
|
|
12181
12189
|
findTextbox: "查找内容",
|
|
12182
12190
|
replaceTextbox: "替换内容",
|
|
12183
|
-
regexTextbox: "
|
|
12184
|
-
wholeTextbox: "
|
|
12185
|
-
distinguishTextbox: "
|
|
12191
|
+
regexTextbox: "使用正则表达式搜索",
|
|
12192
|
+
wholeTextbox: "匹配整个单元格内容",
|
|
12193
|
+
distinguishTextbox: "区分大小写",
|
|
12194
|
+
formulaTextbox: "在公式中搜索",
|
|
12195
|
+
linkTextbox: "在链接中搜索",
|
|
12196
|
+
allSheetsTextbox: "所有工作表",
|
|
12197
|
+
searchScopeLabel: "搜索范围",
|
|
12198
|
+
searchScopeAllSheets: "整个工作簿",
|
|
12199
|
+
searchScopeThisSheet: "当前工作表",
|
|
12200
|
+
searchScopeSpecificRange: "指定区域",
|
|
12201
|
+
rangeInputPlaceholder: "例如 A1:D10",
|
|
12202
|
+
rangeInputInvalidError: "无效区域,请使用如 A1:D10 的格式",
|
|
12203
|
+
rangeSelectOnSheetTitle: "在表格中选择区域",
|
|
12204
|
+
selectDataRangeTitle: "选择数据范围",
|
|
12205
|
+
replaceAllWithSkippedTip: "已替换 ${n} 处。有 ${skipped} 处因单元格含公式而被跳过。",
|
|
12206
|
+
replaceAllSuccessInfotext: "已将 ${n} 处「${find}」替换为「${replace}」",
|
|
12207
|
+
replaceAllSuccessWithSkippedInfotext: "已将 ${n} 处「${find}」替换为「${replace}」。另有 ${skipped} 处因单元格含公式而被跳过。",
|
|
12186
12208
|
allReplaceBtn: "全部替换",
|
|
12187
12209
|
replaceBtn: "替换",
|
|
12188
12210
|
allFindBtn: "查找全部",
|
|
@@ -12209,7 +12231,18 @@ field 可以是与 database 第一行中某个列标题对应的文本标签,
|
|
|
12209
12231
|
locationColumnSpan: "间隔列",
|
|
12210
12232
|
locationTiplessTwoRow: "请选择最少两行",
|
|
12211
12233
|
locationTiplessTwoColumn: "请选择最少两列",
|
|
12212
|
-
locationTipNotFindCell: "未找到单元格"
|
|
12234
|
+
locationTipNotFindCell: "未找到单元格",
|
|
12235
|
+
quickSearchPlaceholder: "在工作表中查找",
|
|
12236
|
+
quickSearchDialogAria: "在工作表中查找",
|
|
12237
|
+
quickSearchMoreOptionsTitle: "更多选项",
|
|
12238
|
+
quickSearchOpenFindReplaceAria: "打开查找和替换",
|
|
12239
|
+
quickSearchNextAria: "下一处匹配",
|
|
12240
|
+
quickSearchPrevAria: "上一处匹配",
|
|
12241
|
+
quickSearchCloseAria: "关闭查找",
|
|
12242
|
+
quickSearchNoResults: "无结果",
|
|
12243
|
+
quickSearchSearching: "正在搜索…",
|
|
12244
|
+
quickSearchCounterTemplate: "第 {current} 项,共 {total} 项",
|
|
12245
|
+
quickSearchMatchCountAria: "第 {current} 项,共 {total} 项匹配"
|
|
12213
12246
|
},
|
|
12214
12247
|
sheetconfig: {
|
|
12215
12248
|
delete: "删除",
|
|
@@ -11760,7 +11760,7 @@ field可以是與database第一行中某個列標題對應的文字標籤,也可
|
|
|
11760
11760
|
{ text: "", value: "split", example: "" },
|
|
11761
11761
|
{
|
|
11762
11762
|
text: "會計",
|
|
11763
|
-
value:
|
|
11763
|
+
value: `_("${e}"* #,##0.00_);_("${e}"* \\(#,##0.00\\);_("${e}"* "-"??_);_(@_)`,
|
|
11764
11764
|
example: `${e}(1200.09)`
|
|
11765
11765
|
},
|
|
11766
11766
|
// { "text": "財務", "value": "(#.####)", "example": "(1200.09)" },
|
|
@@ -12076,6 +12076,14 @@ field可以是與database第一行中某個列標題對應的文字標籤,也可
|
|
|
12076
12076
|
cannotDeleteColumnReadOnly: "無法刪除只讀列",
|
|
12077
12077
|
cannotInsertOnRowReadOnly: "無法對只讀行插入",
|
|
12078
12078
|
cannotInsertOnColumnReadOnly: "無法對只讀列插入",
|
|
12079
|
+
insertRowAboveOne: "在上方插入行",
|
|
12080
|
+
insertRowsAboveN: "在上方插入 {n} 行",
|
|
12081
|
+
insertRowBelowOne: "在下方插入行",
|
|
12082
|
+
insertRowsBelowN: "在下方插入 {n} 行",
|
|
12083
|
+
insertColumnLeftOne: "在左側插入欄",
|
|
12084
|
+
insertColumnsLeftN: "在左側插入 {n} 欄",
|
|
12085
|
+
insertColumnRightOne: "在右側插入欄",
|
|
12086
|
+
insertColumnsRightN: "在右側插入 {n} 欄",
|
|
12079
12087
|
rowOverLimit: "超出10000行限制",
|
|
12080
12088
|
columnOverLimit: "超出1000列限制"
|
|
12081
12089
|
},
|
|
@@ -12159,9 +12167,23 @@ field可以是與database第一行中某個列標題對應的文字標籤,也可
|
|
|
12159
12167
|
lessTwoColumnTip: "請選擇最少兩行",
|
|
12160
12168
|
findTextbox: "查找内容",
|
|
12161
12169
|
replaceTextbox: "替換內容",
|
|
12162
|
-
regexTextbox: "
|
|
12163
|
-
wholeTextbox: "
|
|
12164
|
-
distinguishTextbox: "
|
|
12170
|
+
regexTextbox: "使用規則運算式搜尋",
|
|
12171
|
+
wholeTextbox: "符合整個儲存格內容",
|
|
12172
|
+
distinguishTextbox: "大小寫須相符",
|
|
12173
|
+
formulaTextbox: "在公式中搜尋",
|
|
12174
|
+
linkTextbox: "在連結中搜尋",
|
|
12175
|
+
allSheetsTextbox: "所有工作表",
|
|
12176
|
+
searchScopeLabel: "搜尋範圍",
|
|
12177
|
+
searchScopeAllSheets: "整個活頁簿",
|
|
12178
|
+
searchScopeThisSheet: "目前工作表",
|
|
12179
|
+
searchScopeSpecificRange: "指定範圍",
|
|
12180
|
+
rangeInputPlaceholder: "例如 A1:D10",
|
|
12181
|
+
rangeInputInvalidError: "無效範圍,請使用如 A1:D10 的格式",
|
|
12182
|
+
rangeSelectOnSheetTitle: "在試算表中選擇範圍",
|
|
12183
|
+
selectDataRangeTitle: "選取資料範圍",
|
|
12184
|
+
replaceAllWithSkippedTip: "已取代 ${n} 筆。有 ${skipped} 筆因儲存格含公式而略過。",
|
|
12185
|
+
replaceAllSuccessInfotext: "已將 ${n} 處「${find}」取代為「${replace}」",
|
|
12186
|
+
replaceAllSuccessWithSkippedInfotext: "已將 ${n} 處「${find}」取代為「${replace}」。另有 ${skipped} 處因儲存格含公式而略過。",
|
|
12165
12187
|
allReplaceBtn: "全部替換",
|
|
12166
12188
|
replaceBtn: "替換",
|
|
12167
12189
|
allFindBtn: "查找全部",
|
|
@@ -12188,7 +12210,18 @@ field可以是與database第一行中某個列標題對應的文字標籤,也可
|
|
|
12188
12210
|
locationColumnSpan: "間隔列",
|
|
12189
12211
|
locationTiplessTwoRow: "請選擇最少兩行",
|
|
12190
12212
|
locationTiplessTwoColumn: "請選擇最少兩列",
|
|
12191
|
-
locationTipNotFindCell: "未找到儲存格"
|
|
12213
|
+
locationTipNotFindCell: "未找到儲存格",
|
|
12214
|
+
quickSearchPlaceholder: "在工作表中尋找",
|
|
12215
|
+
quickSearchDialogAria: "在工作表中尋找",
|
|
12216
|
+
quickSearchMoreOptionsTitle: "更多選項",
|
|
12217
|
+
quickSearchOpenFindReplaceAria: "開啟尋找與取代",
|
|
12218
|
+
quickSearchNextAria: "下一個相符項目",
|
|
12219
|
+
quickSearchPrevAria: "上一個相符項目",
|
|
12220
|
+
quickSearchCloseAria: "關閉尋找",
|
|
12221
|
+
quickSearchNoResults: "找不到結果",
|
|
12222
|
+
quickSearchSearching: "正在搜尋…",
|
|
12223
|
+
quickSearchCounterTemplate: "第 {current} 項,共 {total} 項",
|
|
12224
|
+
quickSearchMatchCountAria: "第 {current} 項,共 {total} 項相符"
|
|
12192
12225
|
},
|
|
12193
12226
|
sheetconfig: {
|
|
12194
12227
|
delete: "删除",
|