@univerjs/sheets-ui 0.6.10-nightly.202504181606 → 0.6.10-nightly.202504191606
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 +24 -24
- package/lib/cjs/locale/en-US.js +1 -1
- package/lib/es/index.js +7652 -7642
- package/lib/es/locale/en-US.js +4 -4
- package/lib/index.js +7652 -7642
- package/lib/locale/en-US.js +4 -4
- package/lib/types/controllers/config.schema.d.ts +29 -0
- package/lib/types/controllers/shortcuts/value.shortcut.d.ts +1 -0
- package/lib/types/views/dropdown/list-dropdown/index.d.ts +1 -0
- package/lib/umd/index.js +24 -24
- package/lib/umd/locale/en-US.js +1 -1
- package/package.json +11 -11
package/lib/locale/en-US.js
CHANGED
|
@@ -192,16 +192,16 @@ const e = {
|
|
|
192
192
|
toBottomAdd: "Towards Bottom Add",
|
|
193
193
|
toLeftAdd: "Towards Left Add",
|
|
194
194
|
toRightAdd: "Towards Right Add",
|
|
195
|
-
deleteSelectedRow: "Delete Selected
|
|
196
|
-
deleteSelectedColumn: "Delete Selected
|
|
195
|
+
deleteSelectedRow: "Delete Selected Row",
|
|
196
|
+
deleteSelectedColumn: "Delete Selected Column",
|
|
197
197
|
hideSelectedRow: "Hide Selected Row",
|
|
198
|
-
showHideRow: "Show
|
|
198
|
+
showHideRow: "Show Hide Row",
|
|
199
199
|
rowHeight: "Row Height",
|
|
200
200
|
hideSelectedColumn: "Hide Selected Column",
|
|
201
201
|
showHideColumn: "Show Hide Column",
|
|
202
202
|
columnWidth: "Column Width",
|
|
203
203
|
moveLeft: "Move Left",
|
|
204
|
-
moveUp: "Move
|
|
204
|
+
moveUp: "Move Up",
|
|
205
205
|
moveRight: "Move Right",
|
|
206
206
|
moveDown: "Move Down",
|
|
207
207
|
add: "Add",
|
|
@@ -17,6 +17,35 @@ export interface IUniverSheetsUIConfig {
|
|
|
17
17
|
* Whether to show the formula bar.
|
|
18
18
|
*/
|
|
19
19
|
formulaBar?: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* The config of the footer.
|
|
22
|
+
* @default {}
|
|
23
|
+
*/
|
|
24
|
+
footer?: false | {
|
|
25
|
+
/**
|
|
26
|
+
* Sheet bar is the manager of sub sheets, including add/switch/delete sub sheets.
|
|
27
|
+
* @default true
|
|
28
|
+
*/
|
|
29
|
+
sheetBar?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* statistic bar including statistic info current selections, such as count, sum, average, etc.
|
|
32
|
+
* @default true
|
|
33
|
+
*/
|
|
34
|
+
statisticBar?: boolean;
|
|
35
|
+
/**
|
|
36
|
+
* Including the menus in the footer. such as highlight, gridlines, etc.
|
|
37
|
+
* @default true
|
|
38
|
+
*/
|
|
39
|
+
menus?: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Zoom slider is the zoom slider in the footer.
|
|
42
|
+
* @default true
|
|
43
|
+
*/
|
|
44
|
+
zoomSlider?: boolean;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* @deprecated Use `footer.statisticBar` instead.
|
|
48
|
+
*/
|
|
20
49
|
statusBarStatistic?: boolean;
|
|
21
50
|
clipboardConfig?: {
|
|
22
51
|
hidePasteOptions?: boolean;
|
|
@@ -2,3 +2,4 @@ import { IShortcutItem } from '@univerjs/ui';
|
|
|
2
2
|
export declare const ClearSelectionValueShortcutItem: IShortcutItem;
|
|
3
3
|
export declare const ClearSelectionValueShortcutItemMac: IShortcutItem;
|
|
4
4
|
export declare const ShiftClearSelectionValueShortcutItem: IShortcutItem;
|
|
5
|
+
export declare const ShiftDeleteSelectionValueShortcutItem: IShortcutItem;
|