@univerjs/sheets-conditional-formatting-ui 0.2.4 → 0.2.6
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 +4 -4
- package/lib/es/index.js +5538 -5260
- package/lib/types/controllers/cf.auto-fill.controller.d.ts +1 -2
- package/lib/types/controllers/cf.clear.controller.d.ts +1 -2
- package/lib/types/controllers/cf.copy-paste.controller.d.ts +1 -2
- package/lib/types/controllers/cf.menu.controller.d.ts +1 -2
- package/lib/types/controllers/cf.ref-range.controller.d.ts +1 -2
- package/lib/types/menu/manage-rule.d.ts +1 -1
- package/lib/types/mobile-plugin.d.ts +1 -2
- package/lib/types/plugin.d.ts +1 -2
- package/lib/umd/index.js +4 -4
- package/package.json +23 -25
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { Disposable, IUniverInstanceService } from '@univerjs/core';
|
|
1
|
+
import { Disposable, Injector, IUniverInstanceService } from '@univerjs/core';
|
|
2
2
|
import { IAutoFillService } from '@univerjs/sheets-ui';
|
|
3
|
-
import { Injector } from '@wendellhu/redi';
|
|
4
3
|
import { ConditionalFormattingRuleModel, ConditionalFormattingViewModel } from '@univerjs/sheets-conditional-formatting';
|
|
5
4
|
|
|
6
5
|
export declare class ConditionalFormattingAutoFillController extends Disposable {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { Disposable, IUniverInstanceService } from '@univerjs/core';
|
|
1
|
+
import { Disposable, Injector, IUniverInstanceService } from '@univerjs/core';
|
|
2
2
|
import { SheetInterceptorService, SheetsSelectionsService } from '@univerjs/sheets';
|
|
3
|
-
import { Injector } from '@wendellhu/redi';
|
|
4
3
|
import { ConditionalFormattingRuleModel } from '@univerjs/sheets-conditional-formatting';
|
|
5
4
|
|
|
6
5
|
export declare class ConditionalFormattingClearController extends Disposable {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { Disposable, IUniverInstanceService } from '@univerjs/core';
|
|
1
|
+
import { Disposable, Injector, IUniverInstanceService } from '@univerjs/core';
|
|
2
2
|
import { ISheetClipboardService } from '@univerjs/sheets-ui';
|
|
3
|
-
import { Injector } from '@wendellhu/redi';
|
|
4
3
|
import { ConditionalFormattingRuleModel, ConditionalFormattingViewModel } from '@univerjs/sheets-conditional-formatting';
|
|
5
4
|
|
|
6
5
|
export declare class ConditionalFormattingCopyPasteController extends Disposable {
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { Injector } from '@
|
|
2
|
-
import { Disposable, IUniverInstanceService, LocaleService } from '@univerjs/core';
|
|
1
|
+
import { Disposable, Injector, IUniverInstanceService, LocaleService } from '@univerjs/core';
|
|
3
2
|
import { MenuConfig, ComponentManager, IMenuService, ISidebarService } from '@univerjs/ui';
|
|
4
3
|
import { IConditionFormattingRule } from '@univerjs/sheets-conditional-formatting';
|
|
5
4
|
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { Disposable, IUniverInstanceService } from '@univerjs/core';
|
|
1
|
+
import { Disposable, Injector, IUniverInstanceService } from '@univerjs/core';
|
|
2
2
|
import { RefRangeService } from '@univerjs/sheets';
|
|
3
|
-
import { Injector } from '@wendellhu/redi';
|
|
4
3
|
import { ConditionalFormattingRuleModel } from '@univerjs/sheets-conditional-formatting';
|
|
5
4
|
|
|
6
5
|
export declare class SheetsCfRefRangeController extends Disposable {
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { ICommandService, Plugin, UniverInstanceType } from '@univerjs/core';
|
|
2
|
-
import { Injector } from '@wendellhu/redi';
|
|
1
|
+
import { ICommandService, Injector, Plugin, UniverInstanceType } from '@univerjs/core';
|
|
3
2
|
import { IUniverSheetsConditionalFormattingUIConfig } from './controllers/cf.menu.controller';
|
|
4
3
|
|
|
5
4
|
export declare class UniverSheetsConditionalFormattingMobileUIPlugin extends Plugin {
|
package/lib/types/plugin.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { ICommandService, Plugin, UniverInstanceType } from '@univerjs/core';
|
|
2
|
-
import { Injector } from '@wendellhu/redi';
|
|
1
|
+
import { ICommandService, Injector, Plugin, UniverInstanceType } from '@univerjs/core';
|
|
3
2
|
import { IUniverSheetsConditionalFormattingUIConfig } from './controllers/cf.menu.controller';
|
|
4
3
|
|
|
5
4
|
export declare class UniverSheetsConditionalFormattingUIPlugin extends Plugin {
|