@univerjs/sheets-conditional-formatting 0.5.5-nightly.202501211606 → 0.5.5
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/LICENSE +176 -0
- package/lib/es/facade.js +271 -290
- package/lib/es/index.js +1199 -1217
- package/lib/types/facade/conditional-formatting-builder.d.ts +0 -9
- package/package.json +5 -5
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { IRange } from '@univerjs/core';
|
|
2
2
|
import { CFTimePeriodOperator, IAverageHighlightCell, IColorScale, IConditionalFormattingRuleConfig, IConditionFormattingRule, IIconSet, IValueConfig, CFRuleType } from '@univerjs/sheets-conditional-formatting';
|
|
3
|
-
/**
|
|
4
|
-
* @hideconstructor
|
|
5
|
-
*/
|
|
6
3
|
declare class ConditionalFormatRuleBaseBuilder {
|
|
7
4
|
protected _rule: Partial<IConditionFormattingRule>;
|
|
8
5
|
protected get _ruleConfig(): IConditionalFormattingRuleConfig | null;
|
|
@@ -40,9 +37,6 @@ declare class ConditionalFormatRuleBaseBuilder {
|
|
|
40
37
|
*/
|
|
41
38
|
setRanges(ranges: IRange[]): this;
|
|
42
39
|
}
|
|
43
|
-
/**
|
|
44
|
-
* @hideconstructor
|
|
45
|
-
*/
|
|
46
40
|
declare class ConditionalFormatHighlightRuleBuilder extends ConditionalFormatRuleBaseBuilder {
|
|
47
41
|
constructor(initConfig?: Partial<IConditionFormattingRule>);
|
|
48
42
|
copy(): ConditionalFormatHighlightRuleBuilder;
|
|
@@ -274,9 +268,6 @@ declare class ConditionalFormatIconSetRuleBuilder extends ConditionalFormatRuleB
|
|
|
274
268
|
isShowValue: boolean;
|
|
275
269
|
}): this;
|
|
276
270
|
}
|
|
277
|
-
/**
|
|
278
|
-
* @hideconstructor
|
|
279
|
-
*/
|
|
280
271
|
export declare class FConditionalFormattingBuilder {
|
|
281
272
|
private _initConfig;
|
|
282
273
|
constructor(_initConfig?: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@univerjs/sheets-conditional-formatting",
|
|
3
|
-
"version": "0.5.5
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Conditional formatting plugin for Univer Sheets",
|
|
6
6
|
"author": "DreamNum <developer@univer.ai>",
|
|
@@ -53,10 +53,10 @@
|
|
|
53
53
|
"rxjs": ">=7.0.0"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@univerjs/core": "0.5.5
|
|
57
|
-
"@univerjs/
|
|
58
|
-
"@univerjs/engine-render": "0.5.5
|
|
59
|
-
"@univerjs/
|
|
56
|
+
"@univerjs/core": "0.5.5",
|
|
57
|
+
"@univerjs/sheets": "0.5.5",
|
|
58
|
+
"@univerjs/engine-render": "0.5.5",
|
|
59
|
+
"@univerjs/engine-formula": "0.5.5"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@univerjs/icons-svg": "^0.2.12",
|