@univerjs/sheets 0.1.0-beta.5 → 0.1.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/lib/types/index.d.ts
CHANGED
|
@@ -83,7 +83,7 @@ export type { ISetRangeValuesMutationParams } from './commands/mutations/set-ran
|
|
|
83
83
|
export { SetRangeValuesMutation } from './commands/mutations/set-range-values.mutation';
|
|
84
84
|
export { SetRangeValuesUndoMutationFactory } from './commands/mutations/set-range-values.mutation';
|
|
85
85
|
export { type ISetRangeValuesRangeMutationParams } from './commands/mutations/set-range-values.mutation';
|
|
86
|
-
export { SetRowHiddenMutation, SetRowVisibleMutation } from './commands/mutations/set-row-visible.mutation';
|
|
86
|
+
export { type ISetRowHiddenMutationParams, type ISetRowVisibleMutationParams, SetRowHiddenMutation, SetRowVisibleMutation } from './commands/mutations/set-row-visible.mutation';
|
|
87
87
|
export { SetTabColorMutation } from './commands/mutations/set-tab-color.mutation';
|
|
88
88
|
export { type ISetTabColorMutationParams } from './commands/mutations/set-tab-color.mutation';
|
|
89
89
|
export { type ISetWorksheetColWidthMutationParams, SetWorksheetColWidthMutation, SetWorksheetColWidthMutationFactory, } from './commands/mutations/set-worksheet-col-width.mutation';
|
|
@@ -13,10 +13,6 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
sheet: string;
|
|
20
|
-
};
|
|
21
|
-
};
|
|
22
|
-
export default _default;
|
|
16
|
+
import type zhCN from './zh-CN';
|
|
17
|
+
declare const locale: typeof zhCN;
|
|
18
|
+
export default locale;
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
declare const
|
|
16
|
+
declare const locale: {
|
|
17
17
|
sheets: {
|
|
18
18
|
sheetCopy: string;
|
|
19
19
|
sheet: string;
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
|
-
export default
|
|
22
|
+
export default locale;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/sheets",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "UniverSheet normal base-sheets",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"peerDependencies": {
|
|
51
51
|
"@wendellhu/redi": "^0.13.0",
|
|
52
52
|
"rxjs": ">=7.0.0",
|
|
53
|
-
"@univerjs/core": "0.1.
|
|
54
|
-
"@univerjs/engine-formula": "0.1.
|
|
55
|
-
"@univerjs/engine-render": "0.1.
|
|
53
|
+
"@univerjs/core": "0.1.1",
|
|
54
|
+
"@univerjs/engine-formula": "0.1.1",
|
|
55
|
+
"@univerjs/engine-render": "0.1.1"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {},
|
|
58
58
|
"devDependencies": {
|
|
@@ -62,10 +62,10 @@
|
|
|
62
62
|
"typescript": "^5.3.3",
|
|
63
63
|
"vite": "^5.1.4",
|
|
64
64
|
"vitest": "^1.3.1",
|
|
65
|
-
"@univerjs/core": "0.1.
|
|
66
|
-
"@univerjs/
|
|
67
|
-
"@univerjs/
|
|
68
|
-
"@univerjs/engine-formula": "0.1.
|
|
65
|
+
"@univerjs/core": "0.1.1",
|
|
66
|
+
"@univerjs/engine-render": "0.1.1",
|
|
67
|
+
"@univerjs/shared": "0.1.1",
|
|
68
|
+
"@univerjs/engine-formula": "0.1.1"
|
|
69
69
|
},
|
|
70
70
|
"scripts": {
|
|
71
71
|
"test": "vitest run",
|