@univerjs/sheets-conditional-formatting 0.1.11 → 0.1.13
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 +1 -1
- package/lib/es/index.js +643 -639
- package/lib/types/render/type.d.ts +2 -0
- package/lib/umd/index.js +1 -1
- package/package.json +18 -15
|
@@ -7,6 +7,7 @@ export interface IDataBarRenderParams {
|
|
|
7
7
|
startPoint: number;
|
|
8
8
|
isGradient: boolean;
|
|
9
9
|
isShowValue: boolean;
|
|
10
|
+
isSkip?: boolean;
|
|
10
11
|
}
|
|
11
12
|
export interface IDataBarCellData extends ICellData {
|
|
12
13
|
dataBar?: IDataBarRenderParams;
|
|
@@ -15,6 +16,7 @@ export interface IIconSetRenderParams {
|
|
|
15
16
|
iconId: string;
|
|
16
17
|
iconType: IIconType;
|
|
17
18
|
isShowValue: boolean;
|
|
19
|
+
isSkip?: boolean;
|
|
18
20
|
}
|
|
19
21
|
export interface IIconSetCellData extends ICellData {
|
|
20
22
|
iconSet?: IIconSetRenderParams;
|