@univerjs/sheets-formula 0.20.1 → 0.21.0

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.
Files changed (44) hide show
  1. package/lib/cjs/facade.js +252 -1
  2. package/lib/cjs/index.js +16436 -1
  3. package/lib/cjs/locale/ca-ES.js +12 -1
  4. package/lib/cjs/locale/en-US.js +27 -1
  5. package/lib/cjs/locale/es-ES.js +12 -1
  6. package/lib/cjs/locale/fa-IR.js +12 -1
  7. package/lib/cjs/locale/fr-FR.js +12 -1
  8. package/lib/cjs/locale/ja-JP.js +12 -1
  9. package/lib/cjs/locale/ko-KR.js +12 -1
  10. package/lib/cjs/locale/ru-RU.js +12 -1
  11. package/lib/cjs/locale/sk-SK.js +12 -1
  12. package/lib/cjs/locale/vi-VN.js +12 -1
  13. package/lib/cjs/locale/zh-CN.js +12 -1
  14. package/lib/cjs/locale/zh-TW.js +12 -1
  15. package/lib/es/facade.js +253 -1
  16. package/lib/es/index.js +16362 -1
  17. package/lib/es/locale/ca-ES.js +11 -1
  18. package/lib/es/locale/en-US.js +26 -1
  19. package/lib/es/locale/es-ES.js +11 -1
  20. package/lib/es/locale/fa-IR.js +11 -1
  21. package/lib/es/locale/fr-FR.js +11 -1
  22. package/lib/es/locale/ja-JP.js +11 -1
  23. package/lib/es/locale/ko-KR.js +11 -1
  24. package/lib/es/locale/ru-RU.js +11 -1
  25. package/lib/es/locale/sk-SK.js +11 -1
  26. package/lib/es/locale/vi-VN.js +11 -1
  27. package/lib/es/locale/zh-CN.js +11 -1
  28. package/lib/es/locale/zh-TW.js +11 -1
  29. package/lib/facade.js +253 -1
  30. package/lib/index.js +16362 -1
  31. package/lib/locale/ca-ES.js +11 -1
  32. package/lib/locale/en-US.js +26 -1
  33. package/lib/locale/es-ES.js +11 -1
  34. package/lib/locale/fa-IR.js +11 -1
  35. package/lib/locale/fr-FR.js +11 -1
  36. package/lib/locale/ja-JP.js +11 -1
  37. package/lib/locale/ko-KR.js +11 -1
  38. package/lib/locale/ru-RU.js +11 -1
  39. package/lib/locale/sk-SK.js +11 -1
  40. package/lib/locale/vi-VN.js +11 -1
  41. package/lib/locale/zh-CN.js +11 -1
  42. package/lib/locale/zh-TW.js +11 -1
  43. package/lib/umd/index.js +1 -1
  44. package/package.json +9 -9
@@ -1 +1,11 @@
1
- const e={formula:{progress:{analyzing:`Analitzant`,calculating:`Calculant`,"array-analysis":`Anàlisi de matriu`,"array-calculation":`Càlcul de matriu`,done:`Fet`}}};export{e as default};
1
+ //#region src/locale/ca-ES.ts
2
+ const locale = { formula: { progress: {
3
+ analyzing: "Analitzant",
4
+ calculating: "Calculant",
5
+ "array-analysis": "Anàlisi de matriu",
6
+ "array-calculation": "Càlcul de matriu",
7
+ done: "Fet"
8
+ } } };
9
+
10
+ //#endregion
11
+ export { locale as default };
@@ -1 +1,26 @@
1
- const e={formula:{progress:{analyzing:`Analyzing`,calculating:`Calculating`,"array-analysis":`Array Analysis`,"array-calculation":`Array Calculation`,done:`Done`}}};export{e as default};
1
+ //#region src/locale/en-US.ts
2
+ /**
3
+ * Copyright 2023-present DreamNum Co., Ltd.
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ const locale = { formula: { progress: {
18
+ analyzing: "Analyzing",
19
+ calculating: "Calculating",
20
+ "array-analysis": "Array Analysis",
21
+ "array-calculation": "Array Calculation",
22
+ done: "Done"
23
+ } } };
24
+
25
+ //#endregion
26
+ export { locale as default };
@@ -1 +1,11 @@
1
- const e={formula:{progress:{analyzing:`Analizando`,calculating:`Calculando`,"array-analysis":`Análisis de matriz`,"array-calculation":`Cálculo de matriz`,done:`Hecho`}}};export{e as default};
1
+ //#region src/locale/es-ES.ts
2
+ const locale = { formula: { progress: {
3
+ analyzing: "Analizando",
4
+ calculating: "Calculando",
5
+ "array-analysis": "Análisis de matriz",
6
+ "array-calculation": "Cálculo de matriz",
7
+ done: "Hecho"
8
+ } } };
9
+
10
+ //#endregion
11
+ export { locale as default };
@@ -1 +1,11 @@
1
- const e={formula:{progress:{analyzing:`در حال تحلیل`,calculating:`در حال محاسبه`,"array-analysis":`تحلیل آرایه`,"array-calculation":`محاسبه آرایه`,done:`تمام`}}};export{e as default};
1
+ //#region src/locale/fa-IR.ts
2
+ const locale = { formula: { progress: {
3
+ analyzing: "در حال تحلیل",
4
+ calculating: "در حال محاسبه",
5
+ "array-analysis": "تحلیل آرایه",
6
+ "array-calculation": "محاسبه آرایه",
7
+ done: "تمام"
8
+ } } };
9
+
10
+ //#endregion
11
+ export { locale as default };
@@ -1 +1,11 @@
1
- const e={formula:{progress:{analyzing:`Analyse en cours`,calculating:`Calcul en cours`,"array-analysis":`Analyse de tableau`,"array-calculation":`Calcul de tableau`,done:`Terminé`}}};export{e as default};
1
+ //#region src/locale/fr-FR.ts
2
+ const locale = { formula: { progress: {
3
+ analyzing: "Analyse en cours",
4
+ calculating: "Calcul en cours",
5
+ "array-analysis": "Analyse de tableau",
6
+ "array-calculation": "Calcul de tableau",
7
+ done: "Terminé"
8
+ } } };
9
+
10
+ //#endregion
11
+ export { locale as default };
@@ -1 +1,11 @@
1
- const e={formula:{progress:{analyzing:`解析中`,calculating:`計算中`,"array-analysis":`配列の解析`,"array-calculation":`配列の計算`,done:`完了`}}};export{e as default};
1
+ //#region src/locale/ja-JP.ts
2
+ const locale = { formula: { progress: {
3
+ analyzing: "解析中",
4
+ calculating: "計算中",
5
+ "array-analysis": "配列の解析",
6
+ "array-calculation": "配列の計算",
7
+ done: "完了"
8
+ } } };
9
+
10
+ //#endregion
11
+ export { locale as default };
@@ -1 +1,11 @@
1
- const e={formula:{progress:{analyzing:`분석 중`,calculating:`계산 중`,"array-analysis":`배열 분석`,"array-calculation":`배열 계산`,done:`완료`}}};export{e as default};
1
+ //#region src/locale/ko-KR.ts
2
+ const locale = { formula: { progress: {
3
+ analyzing: "분석 중",
4
+ calculating: "계산 중",
5
+ "array-analysis": "배열 분석",
6
+ "array-calculation": "배열 계산",
7
+ done: "완료"
8
+ } } };
9
+
10
+ //#endregion
11
+ export { locale as default };
@@ -1 +1,11 @@
1
- const e={formula:{progress:{analyzing:`Анализ`,calculating:`Вычисление`,"array-analysis":`Анализ массива`,"array-calculation":`Вычисление массива`,done:`Готово`}}};export{e as default};
1
+ //#region src/locale/ru-RU.ts
2
+ const locale = { formula: { progress: {
3
+ analyzing: "Анализ",
4
+ calculating: "Вычисление",
5
+ "array-analysis": "Анализ массива",
6
+ "array-calculation": "Вычисление массива",
7
+ done: "Готово"
8
+ } } };
9
+
10
+ //#endregion
11
+ export { locale as default };
@@ -1 +1,11 @@
1
- const e={formula:{progress:{analyzing:`Analyzovanie`,calculating:`Výpočet`,"array-analysis":`Analýza poľa`,"array-calculation":`Výpočet poľa`,done:`Hotovo`}}};export{e as default};
1
+ //#region src/locale/sk-SK.ts
2
+ const locale = { formula: { progress: {
3
+ analyzing: "Analyzovanie",
4
+ calculating: "Výpočet",
5
+ "array-analysis": "Analýza poľa",
6
+ "array-calculation": "Výpočet poľa",
7
+ done: "Hotovo"
8
+ } } };
9
+
10
+ //#endregion
11
+ export { locale as default };
@@ -1 +1,11 @@
1
- const e={formula:{progress:{analyzing:`Đang phân tích`,calculating:`Đang tính toán`,"array-analysis":`Phân tích mảng`,"array-calculation":`Tính toán mảng`,done:`Hoàn tất`}}};export{e as default};
1
+ //#region src/locale/vi-VN.ts
2
+ const locale = { formula: { progress: {
3
+ analyzing: "Đang phân tích",
4
+ calculating: "Đang tính toán",
5
+ "array-analysis": "Phân tích mảng",
6
+ "array-calculation": "Tính toán mảng",
7
+ done: "Hoàn tất"
8
+ } } };
9
+
10
+ //#endregion
11
+ export { locale as default };
@@ -1 +1,11 @@
1
- const e={formula:{progress:{analyzing:`分析中`,calculating:`计算中`,"array-analysis":`数组分析`,"array-calculation":`数组计算`,done:`完成`}}};export{e as default};
1
+ //#region src/locale/zh-CN.ts
2
+ const locale = { formula: { progress: {
3
+ analyzing: "分析中",
4
+ calculating: "计算中",
5
+ "array-analysis": "数组分析",
6
+ "array-calculation": "数组计算",
7
+ done: "完成"
8
+ } } };
9
+
10
+ //#endregion
11
+ export { locale as default };
@@ -1 +1,11 @@
1
- const e={formula:{progress:{analyzing:`分析中`,calculating:`計算中`,"array-analysis":`陣列分析`,"array-calculation":`陣列計算`,done:`完成`}}};export{e as default};
1
+ //#region src/locale/zh-TW.ts
2
+ const locale = { formula: { progress: {
3
+ analyzing: "分析中",
4
+ calculating: "計算中",
5
+ "array-analysis": "陣列分析",
6
+ "array-calculation": "陣列計算",
7
+ done: "完成"
8
+ } } };
9
+
10
+ //#endregion
11
+ export { locale as default };