@univerjs/sheets-conditional-formatting-ui 0.16.1 → 0.17.0
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 +3 -1
- package/lib/es/index.js +1519 -1529
- package/lib/index.css +1 -1
- package/lib/index.js +1519 -1529
- package/lib/types/index.d.ts +1 -1
- package/lib/types/mobile-plugin.d.ts +3 -1
- package/lib/types/plugin.d.ts +3 -1
- package/lib/umd/index.js +3 -1
- package/package.json +13 -13
- /package/lib/types/{controllers/config.schema.d.ts → config/config.d.ts} +0 -0
- /package/lib/types/{controllers → menu}/cf.menu.controller.d.ts +0 -0
- /package/lib/types/{controllers/menu.schema.d.ts → menu/schema.d.ts} +0 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export { AddTextCfCommand } from './commands/commands/add-text-cf.command';
|
|
|
24
24
|
export { AddTimePeriodCfCommand } from './commands/commands/add-time-period-cf.command';
|
|
25
25
|
export { AddUniqueValuesCfCommand } from './commands/commands/add-unique-values-cf.command';
|
|
26
26
|
export { OpenConditionalFormattingOperator } from './commands/operations/open-conditional-formatting-panel';
|
|
27
|
+
export type { IUniverSheetsConditionalFormattingUIConfig } from './config/config';
|
|
27
28
|
export { ConditionalFormattingClearController } from './controllers/cf.clear.controller';
|
|
28
|
-
export type { IUniverSheetsConditionalFormattingUIConfig } from './controllers/config.schema';
|
|
29
29
|
export { UniverSheetsConditionalFormattingMobileUIPlugin } from './mobile-plugin';
|
|
30
30
|
export { UniverSheetsConditionalFormattingUIPlugin } from './plugin';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IUniverSheetsConditionalFormattingUIConfig } from './
|
|
1
|
+
import { IUniverSheetsConditionalFormattingUIConfig } from './config/config';
|
|
2
2
|
import { ICommandService, IConfigService, Injector, Plugin, UniverInstanceType } from '@univerjs/core';
|
|
3
3
|
export declare class UniverSheetsConditionalFormattingMobileUIPlugin extends Plugin {
|
|
4
4
|
private readonly _config;
|
|
@@ -6,6 +6,8 @@ export declare class UniverSheetsConditionalFormattingMobileUIPlugin extends Plu
|
|
|
6
6
|
private _commandService;
|
|
7
7
|
private readonly _configService;
|
|
8
8
|
static pluginName: string;
|
|
9
|
+
static packageName: string;
|
|
10
|
+
static version: string;
|
|
9
11
|
static type: UniverInstanceType;
|
|
10
12
|
constructor(_config: Partial<IUniverSheetsConditionalFormattingUIConfig> | undefined, _injector: Injector, _commandService: ICommandService, _configService: IConfigService);
|
|
11
13
|
private _initCommand;
|
package/lib/types/plugin.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IUniverSheetsConditionalFormattingUIConfig } from './
|
|
1
|
+
import { IUniverSheetsConditionalFormattingUIConfig } from './config/config';
|
|
2
2
|
import { ICommandService, IConfigService, Injector, Plugin, UniverInstanceType } from '@univerjs/core';
|
|
3
3
|
export declare class UniverSheetsConditionalFormattingUIPlugin extends Plugin {
|
|
4
4
|
private readonly _config;
|
|
@@ -6,6 +6,8 @@ export declare class UniverSheetsConditionalFormattingUIPlugin extends Plugin {
|
|
|
6
6
|
private _commandService;
|
|
7
7
|
private readonly _configService;
|
|
8
8
|
static pluginName: string;
|
|
9
|
+
static packageName: string;
|
|
10
|
+
static version: string;
|
|
9
11
|
static type: UniverInstanceType;
|
|
10
12
|
constructor(_config: Partial<IUniverSheetsConditionalFormattingUIConfig> | undefined, _injector: Injector, _commandService: ICommandService, _configService: IConfigService);
|
|
11
13
|
onStarting(): void;
|