@univerjs/sheets-conditional-formatting-ui 0.6.1 → 0.6.2

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-conditional-formatting-ui",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "private": false,
5
5
  "description": "Conditional formatting plugin for Univer Sheets",
6
6
  "author": "DreamNum <developer@univer.ai>",
@@ -56,18 +56,17 @@
56
56
  },
57
57
  "dependencies": {
58
58
  "@univerjs/icons": "^0.2.20",
59
- "clsx": "^2.1.1",
60
59
  "react-grid-layout": "^1.4.4",
61
60
  "react-resizable": "^3.0.5",
62
- "@univerjs/design": "0.6.1",
63
- "@univerjs/engine-formula": "0.6.1",
64
- "@univerjs/engine-render": "0.6.1",
65
- "@univerjs/sheets": "0.6.1",
66
- "@univerjs/sheets-conditional-formatting": "0.6.1",
67
- "@univerjs/ui": "0.6.1",
68
- "@univerjs/sheets-formula-ui": "0.6.1",
69
- "@univerjs/core": "0.6.1",
70
- "@univerjs/sheets-ui": "0.6.1"
61
+ "@univerjs/core": "0.6.2",
62
+ "@univerjs/design": "0.6.2",
63
+ "@univerjs/engine-formula": "0.6.2",
64
+ "@univerjs/engine-render": "0.6.2",
65
+ "@univerjs/sheets": "0.6.2",
66
+ "@univerjs/sheets-conditional-formatting": "0.6.2",
67
+ "@univerjs/sheets-ui": "0.6.2",
68
+ "@univerjs/sheets-formula-ui": "0.6.2",
69
+ "@univerjs/ui": "0.6.2"
71
70
  },
72
71
  "devDependencies": {
73
72
  "@types/react-grid-layout": "^1.3.5",
@@ -77,9 +76,9 @@
77
76
  "rxjs": "^7.8.1",
78
77
  "tailwindcss": "^3.4.17",
79
78
  "typescript": "^5.7.3",
80
- "vite": "^6.1.1",
81
- "vitest": "^3.0.6",
82
- "@univerjs-infra/shared": "0.6.1"
79
+ "vite": "^6.2.0",
80
+ "vitest": "^3.0.7",
81
+ "@univerjs-infra/shared": "0.6.2"
83
82
  },
84
83
  "scripts": {
85
84
  "test": "vitest run",
@@ -1,8 +0,0 @@
1
- import { ICommand } from '@univerjs/core';
2
- import { IConditionFormattingRule, MakePropertyOptional } from '@univerjs/sheets-conditional-formatting';
3
- export interface IAddCfCommandParams {
4
- unitId?: string;
5
- subUnitId?: string;
6
- rule: MakePropertyOptional<IConditionFormattingRule, 'cfId'>;
7
- }
8
- export declare const AddCfCommand: ICommand<IAddCfCommandParams>;
@@ -1,7 +0,0 @@
1
- import { ICommand, IRange } from '@univerjs/core';
2
- export interface IClearRangeCfParams {
3
- ranges?: IRange[];
4
- unitId?: string;
5
- subUnitId?: string;
6
- }
7
- export declare const ClearRangeCfCommand: ICommand<IClearRangeCfParams>;
@@ -1,6 +0,0 @@
1
- import { ICommand } from '@univerjs/core';
2
- export interface IClearWorksheetCfParams {
3
- unitId?: string;
4
- subUnitId?: string;
5
- }
6
- export declare const ClearWorksheetCfCommand: ICommand<IClearWorksheetCfParams>;
@@ -1,7 +0,0 @@
1
- import { ICommand } from '@univerjs/core';
2
- export interface IDeleteCfCommandParams {
3
- unitId?: string;
4
- subUnitId?: string;
5
- cfId: string;
6
- }
7
- export declare const DeleteCfCommand: ICommand<IDeleteCfCommandParams>;
@@ -1,9 +0,0 @@
1
- import { ICommand } from '@univerjs/core';
2
- import { IAnchor } from '@univerjs/sheets-conditional-formatting';
3
- export interface IMoveCfCommand {
4
- unitId?: string;
5
- subUnitId?: string;
6
- start: IAnchor;
7
- end: IAnchor;
8
- }
9
- export declare const MoveCfCommand: ICommand<IMoveCfCommand>;
@@ -1,8 +0,0 @@
1
- import { ICommand } from '@univerjs/core';
2
- import { IConditionFormattingRule } from '@univerjs/sheets-conditional-formatting';
3
- export interface ISetCfCommandParams {
4
- unitId?: string;
5
- subUnitId?: string;
6
- rule: IConditionFormattingRule;
7
- }
8
- export declare const SetCfCommand: ICommand<ISetCfCommandParams>;