@univerjs/sheets-formula-ui 0.7.0 → 0.8.0-beta.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.
- package/lib/cjs/index.js +7 -7
- package/lib/cjs/locale/en-US.js +1 -1
- package/lib/cjs/locale/fa-IR.js +1 -1
- package/lib/cjs/locale/fr-FR.js +1 -1
- package/lib/cjs/locale/ru-RU.js +1 -1
- package/lib/cjs/locale/vi-VN.js +1 -1
- package/lib/cjs/locale/zh-CN.js +1 -1
- package/lib/cjs/locale/zh-TW.js +1 -1
- package/lib/es/index.js +1434 -1359
- package/lib/es/locale/en-US.js +5 -0
- package/lib/es/locale/fa-IR.js +5 -0
- package/lib/es/locale/fr-FR.js +5 -0
- package/lib/es/locale/ru-RU.js +5 -0
- package/lib/es/locale/vi-VN.js +5 -0
- package/lib/es/locale/zh-CN.js +5 -0
- package/lib/es/locale/zh-TW.js +5 -0
- package/lib/index.css +1 -1
- package/lib/index.js +1434 -1359
- package/lib/locale/en-US.js +5 -0
- package/lib/locale/fa-IR.js +5 -0
- package/lib/locale/fr-FR.js +5 -0
- package/lib/locale/ru-RU.js +5 -0
- package/lib/locale/vi-VN.js +5 -0
- package/lib/locale/zh-CN.js +5 -0
- package/lib/locale/zh-TW.js +5 -0
- package/lib/types/controllers/menu.d.ts +6 -0
- package/lib/types/controllers/shortcuts/quick-sum.shortcut.d.ts +2 -0
- package/lib/types/locale/en-US.d.ts +5 -0
- package/lib/types/locale/fa-IR.d.ts +5 -0
- package/lib/types/locale/fr-FR.d.ts +5 -0
- package/lib/types/locale/ru-RU.d.ts +5 -0
- package/lib/types/locale/vi-VN.d.ts +5 -0
- package/lib/types/locale/zh-CN.d.ts +5 -0
- package/lib/types/locale/zh-TW.d.ts +5 -0
- package/lib/umd/index.js +7 -7
- package/lib/umd/locale/en-US.js +1 -1
- package/lib/umd/locale/fa-IR.js +1 -1
- package/lib/umd/locale/fr-FR.js +1 -1
- package/lib/umd/locale/ru-RU.js +1 -1
- package/lib/umd/locale/vi-VN.js +1 -1
- package/lib/umd/locale/zh-CN.js +1 -1
- package/lib/umd/locale/zh-TW.js +1 -1
- package/package.json +13 -13
package/lib/locale/en-US.js
CHANGED
|
@@ -7821,6 +7821,11 @@ COUNTIF uses only a single criteria. Use COUNTIFS if you want to use multiple cr
|
|
|
7821
7821
|
}
|
|
7822
7822
|
}
|
|
7823
7823
|
}, p = {
|
|
7824
|
+
shortcut: {
|
|
7825
|
+
"sheets-formula-ui": {
|
|
7826
|
+
"quick-sum": "Quick Sum"
|
|
7827
|
+
}
|
|
7828
|
+
},
|
|
7824
7829
|
formula: {
|
|
7825
7830
|
insert: {
|
|
7826
7831
|
tooltip: "Functions",
|
package/lib/locale/fa-IR.js
CHANGED
|
@@ -7821,6 +7821,11 @@ COUNTIF uses only a single criteria. Use COUNTIFS if you want to use multiple cr
|
|
|
7821
7821
|
}
|
|
7822
7822
|
}
|
|
7823
7823
|
}, p = {
|
|
7824
|
+
shortcut: {
|
|
7825
|
+
"sheets-formula-ui": {
|
|
7826
|
+
"quick-sum": "جمع سریع"
|
|
7827
|
+
}
|
|
7828
|
+
},
|
|
7824
7829
|
formula: {
|
|
7825
7830
|
insert: {
|
|
7826
7831
|
tooltip: "توابع",
|
package/lib/locale/fr-FR.js
CHANGED
|
@@ -7821,6 +7821,11 @@ COUNTIF uses only a single criteria. Use COUNTIFS if you want to use multiple cr
|
|
|
7821
7821
|
}
|
|
7822
7822
|
}
|
|
7823
7823
|
}, p = {
|
|
7824
|
+
shortcut: {
|
|
7825
|
+
"sheets-formula-ui": {
|
|
7826
|
+
"quick-sum": "Somme rapide"
|
|
7827
|
+
}
|
|
7828
|
+
},
|
|
7824
7829
|
formula: {
|
|
7825
7830
|
insert: {
|
|
7826
7831
|
tooltip: "Fonctions",
|
package/lib/locale/ru-RU.js
CHANGED
|
@@ -7821,6 +7821,11 @@ COUNTIF uses only a single criteria. Use COUNTIFS if you want to use multiple cr
|
|
|
7821
7821
|
}
|
|
7822
7822
|
}
|
|
7823
7823
|
}, p = {
|
|
7824
|
+
shortcut: {
|
|
7825
|
+
"sheets-formula-ui": {
|
|
7826
|
+
"quick-sum": "Быстрая сумма"
|
|
7827
|
+
}
|
|
7828
|
+
},
|
|
7824
7829
|
formula: {
|
|
7825
7830
|
insert: {
|
|
7826
7831
|
tooltip: "Функции",
|
package/lib/locale/vi-VN.js
CHANGED
package/lib/locale/zh-CN.js
CHANGED
package/lib/locale/zh-TW.js
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import { IAccessor } from '@univerjs/core';
|
|
2
2
|
import { IMenuItem } from '@univerjs/ui';
|
|
3
|
+
/** @deprecated */
|
|
3
4
|
export declare function InsertFunctionMenuItemFactory(accessor: IAccessor): IMenuItem;
|
|
5
|
+
export declare function InsertSUMFunctionMenuItemFactory(accessor: IAccessor): IMenuItem;
|
|
6
|
+
export declare function InsertCOUNTFunctionMenuItemFactory(accessor: IAccessor): IMenuItem;
|
|
7
|
+
export declare function InsertAVERAGEFunctionMenuItemFactory(accessor: IAccessor): IMenuItem;
|
|
8
|
+
export declare function InsertMAXFunctionMenuItemFactory(accessor: IAccessor): IMenuItem;
|
|
9
|
+
export declare function InsertMINFunctionMenuItemFactory(accessor: IAccessor): IMenuItem;
|
|
4
10
|
export declare function MoreFunctionsMenuItemFactory(accessor: IAccessor): IMenuItem;
|
|
5
11
|
export declare function PasteFormulaMenuItemFactory(accessor: IAccessor): IMenuItem;
|