@fileverse-dev/dsheet 2.0.5 → 2.0.7-importExport-fix-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.
@@ -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: "Expresión Regular",
11125
- wholeTextbox: "Palabra entera",
11126
- distinguishTextbox: "Distingue mayúsculas y minúsculas",
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: "सभी खोजें",