@univerjs/sheets-crosshair-highlight 0.4.1-nightly.202410291304 → 0.4.2-nightly.202410291606

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/sheets-crosshair-highlight",
3
- "version": "0.4.1-nightly.202410291304",
3
+ "version": "0.4.2-nightly.202410291606",
4
4
  "private": false,
5
5
  "description": "",
6
6
  "author": "DreamNum <developer@univer.ai>",
@@ -51,11 +51,11 @@
51
51
  "dependencies": {
52
52
  "@univerjs/icons": "^0.1.84",
53
53
  "clsx": "^2.1.1",
54
- "@univerjs/core": "0.4.1-nightly.202410291304",
55
- "@univerjs/engine-render": "0.4.1-nightly.202410291304",
56
- "@univerjs/sheets": "0.4.1-nightly.202410291304",
57
- "@univerjs/ui": "0.4.1-nightly.202410291304",
58
- "@univerjs/sheets-ui": "0.4.1-nightly.202410291304"
54
+ "@univerjs/core": "0.4.2-nightly.202410291606",
55
+ "@univerjs/engine-render": "0.4.2-nightly.202410291606",
56
+ "@univerjs/sheets-ui": "0.4.2-nightly.202410291606",
57
+ "@univerjs/ui": "0.4.2-nightly.202410291606",
58
+ "@univerjs/sheets": "0.4.2-nightly.202410291606"
59
59
  },
60
60
  "devDependencies": {
61
61
  "less": "^4.2.0",
@@ -64,7 +64,7 @@
64
64
  "typescript": "^5.6.3",
65
65
  "vite": "^5.4.8",
66
66
  "vitest": "^2.1.2",
67
- "@univerjs-infra/shared": "0.4.1"
67
+ "@univerjs-infra/shared": "0.4.2"
68
68
  },
69
69
  "univerSpace": {
70
70
  ".": {
@@ -1,32 +0,0 @@
1
- /**
2
- * Copyright 2023-present DreamNum Inc.
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- interface IFUniverCrosshairHighlightMixin {
17
- /**
18
- * Enable or disable crosshair highlight.
19
- * @param {boolean} enabled if crosshair highlight should be enabled
20
- */
21
- setCrosshairHighlightEnabled(enabled: boolean): void;
22
- /**
23
- * Set the color of the crosshair highlight.
24
- * @param {string} color the color of the crosshair highlight
25
- */
26
- setCrosshairHighlightColor(color: string): void;
27
- }
28
- declare module '@univerjs/core' {
29
- interface FUniver extends IFUniverCrosshairHighlightMixin {
30
- }
31
- }
32
- export {};
File without changes