@fileverse-dev/dsheet 2.0.5 → 2.0.7
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/utils/xlsx-hyperlink-inline.d.ts +16 -0
- package/dist/{es-DqFXH9BK.js → es-BlJgGKjh.js} +20 -3
- package/dist/{hi-cBN4FoX2.js → hi-D1Y_nSHB.js} +20 -3
- package/dist/index.es.js +20133 -18731
- package/dist/sheet-engine/core/context.d.ts +26 -0
- package/dist/sheet-engine/core/index.d.ts +2 -1
- package/dist/sheet-engine/core/locale/en.d.ts +27 -0
- package/dist/sheet-engine/core/locale/es.d.ts +17 -0
- package/dist/sheet-engine/core/locale/hi.d.ts +17 -0
- package/dist/sheet-engine/core/locale/zh.d.ts +17 -0
- package/dist/sheet-engine/core/locale/zh_tw.d.ts +17 -0
- package/dist/sheet-engine/core/modules/index.d.ts +2 -1
- package/dist/sheet-engine/core/modules/searchReplace.d.ts +118 -26
- package/dist/sheet-engine/core/types.d.ts +2 -0
- package/dist/sheet-engine/react/components/QuickSearch/index.d.ts +4 -0
- package/dist/style.css +1 -1
- package/dist/{zh-UJov73Dl.js → zh-CI0obLTH.js} +20 -3
- package/dist/{zh_tw-DTGOcDTq.js → zh_tw-CbdDuByE.js} +20 -3
- package/package.json +2 -2
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/** Legacy single entry or multi-link array — XLSX round-trip uses the first link only. */
|
|
2
|
+
export declare function getFirstHyperlinkEntry(raw: unknown): {
|
|
3
|
+
linkType: string;
|
|
4
|
+
linkAddress: string;
|
|
5
|
+
} | undefined;
|
|
6
|
+
/** Plain text from `ct.s` — fast path when a single run (e.g. post-import normalization). */
|
|
7
|
+
export declare function concatInlineStrRunsText(runs: unknown[]): string;
|
|
8
|
+
export type HyperlinkEntryLite = {
|
|
9
|
+
linkType: string;
|
|
10
|
+
linkAddress: string;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* After Excel import: one `ct.s` run with link + typography; strip root/ct fc/un so the grid
|
|
14
|
+
* reads styles from segments only (matches native hyperlink cells).
|
|
15
|
+
*/
|
|
16
|
+
export declare function normalizeImportedHyperlinkCellV(cellV: Record<string, unknown>, hyperlink: HyperlinkEntryLite): void;
|
|
@@ -11119,11 +11119,28 @@ If the value is FALSE, return the accrued interest from the first interest accru
|
|
|
11119
11119
|
locationExample: "Ubicación",
|
|
11120
11120
|
lessTwoRowTip: "Selecciona al menos dos filas",
|
|
11121
11121
|
lessTwoColumnTip: "Selecciona al menos dos columnas",
|
|
11122
|
+
quickSearchDialogAria: "Búsqueda rápida",
|
|
11123
|
+
quickSearchPlaceholder: "Buscar",
|
|
11124
|
+
quickSearchSearching: "Buscando…",
|
|
11125
|
+
quickSearchNoResults: "Sin resultados",
|
|
11126
|
+
quickSearchCounterTemplate: "{current} de {total}",
|
|
11127
|
+
quickSearchMatchCountAria: "{current} de {total} coincidencias",
|
|
11128
|
+
quickSearchPrevAria: "Coincidencia anterior",
|
|
11129
|
+
quickSearchNextAria: "Siguiente coincidencia",
|
|
11130
|
+
quickSearchMoreOptionsTitle: "Más opciones",
|
|
11131
|
+
quickSearchOpenFindReplaceAria: "Abrir buscar y reemplazar",
|
|
11132
|
+
quickSearchCloseAria: "Cerrar búsqueda rápida",
|
|
11122
11133
|
findTextbox: "Encontrar Contenido",
|
|
11123
11134
|
replaceTextbox: "Reemplazar Contenido",
|
|
11124
|
-
regexTextbox: "
|
|
11125
|
-
wholeTextbox: "
|
|
11126
|
-
distinguishTextbox: "
|
|
11135
|
+
regexTextbox: "Buscar con expresión regular",
|
|
11136
|
+
wholeTextbox: "Coincidir con todo el contenido de la celda",
|
|
11137
|
+
distinguishTextbox: "Coincidir mayúsculas y minúsculas",
|
|
11138
|
+
formulaTextbox: "Buscar dentro de fórmulas",
|
|
11139
|
+
linkTextbox: "Buscar dentro de enlaces",
|
|
11140
|
+
allSheetsTextbox: "Todas las hojas",
|
|
11141
|
+
searchScopeLabel: "Buscar en",
|
|
11142
|
+
searchScopeAllSheets: "Todas las hojas",
|
|
11143
|
+
searchScopeThisSheet: "Esta hoja",
|
|
11127
11144
|
allReplaceBtn: "Reemplazar Todo",
|
|
11128
11145
|
replaceBtn: "Reemplazar",
|
|
11129
11146
|
allFindBtn: "Encontrar Todo",
|
|
@@ -11169,11 +11169,28 @@ If the value is FALSE, return the accrued interest from the first interest accru
|
|
|
11169
11169
|
locationExample: "स्थान",
|
|
11170
11170
|
lessTwoRowTip: "कृपया कम से कम दो पंक्तियाँ चुनें",
|
|
11171
11171
|
lessTwoColumnTip: "कृपया कम से कम दो स्तंभ चुनें",
|
|
11172
|
+
quickSearchDialogAria: "त्वरित खोज",
|
|
11173
|
+
quickSearchPlaceholder: "खोजें",
|
|
11174
|
+
quickSearchSearching: "खोज रहे हैं…",
|
|
11175
|
+
quickSearchNoResults: "कोई परिणाम नहीं",
|
|
11176
|
+
quickSearchCounterTemplate: "{current} / {total}",
|
|
11177
|
+
quickSearchMatchCountAria: "{total} में से {current} मिलान",
|
|
11178
|
+
quickSearchPrevAria: "पिछला मिलान",
|
|
11179
|
+
quickSearchNextAria: "अगला मिलान",
|
|
11180
|
+
quickSearchMoreOptionsTitle: "और विकल्प",
|
|
11181
|
+
quickSearchOpenFindReplaceAria: "खोजें और बदलें खोलें",
|
|
11182
|
+
quickSearchCloseAria: "त्वरित खोज बंद करें",
|
|
11172
11183
|
findTextbox: "खोज सामग्री",
|
|
11173
11184
|
replaceTextbox: "सामग्री बदलें",
|
|
11174
|
-
regexTextbox: "नियमित अभिव्यक्ति",
|
|
11175
|
-
wholeTextbox: "
|
|
11176
|
-
distinguishTextbox: "केस
|
|
11185
|
+
regexTextbox: "नियमित अभिव्यक्ति से खोजें",
|
|
11186
|
+
wholeTextbox: "पूरी सेल सामग्री से मिलाएँ",
|
|
11187
|
+
distinguishTextbox: "केस मिलाएँ",
|
|
11188
|
+
formulaTextbox: "सूत्रों में खोजें",
|
|
11189
|
+
linkTextbox: "लिंक में खोजें",
|
|
11190
|
+
allSheetsTextbox: "सभी शीट",
|
|
11191
|
+
searchScopeLabel: "खोज सीमा",
|
|
11192
|
+
searchScopeAllSheets: "सभी शीट",
|
|
11193
|
+
searchScopeThisSheet: "यह शीट",
|
|
11177
11194
|
allReplaceBtn: "सभी बदलें",
|
|
11178
11195
|
replaceBtn: "बदलें",
|
|
11179
11196
|
allFindBtn: "सभी खोजें",
|