@textbus/xnote 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/bundles/components/color-picker/color-picker.d.ts +1 -0
- package/bundles/components/dropdown/dropdown.d.ts +1 -0
- package/bundles/index.css +2 -2
- package/bundles/index.esm.css +2 -2
- package/bundles/index.esm.js +276 -247
- package/bundles/index.js +276 -246
- package/bundles/plugins/tools/_api.d.ts +2 -1
- package/bundles/plugins/tools/_common/tool.service.d.ts +1 -0
- package/bundles/plugins/tools/text-background-color.tool.d.ts +11 -0
- package/bundles/plugins/tools/{color.tool.d.ts → text-color.tool.d.ts} +2 -2
- package/bundles/textbus/components/table/table.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -3,7 +3,6 @@ export * from './block.tool';
|
|
|
3
3
|
export * from './bold.tool';
|
|
4
4
|
export * from './clean-formats.tool';
|
|
5
5
|
export * from './code.tool';
|
|
6
|
-
export * from './color.tool';
|
|
7
6
|
export * from './font-family.tool';
|
|
8
7
|
export * from './font-size.tool';
|
|
9
8
|
export * from './insert.tool';
|
|
@@ -14,6 +13,8 @@ export * from './redo.tool';
|
|
|
14
13
|
export * from './strike-through.tool';
|
|
15
14
|
export * from './subscript.tool';
|
|
16
15
|
export * from './superscript.tool';
|
|
16
|
+
export * from './text-background-color.tool';
|
|
17
|
+
export * from './text-color.tool';
|
|
17
18
|
export * from './underline.tool';
|
|
18
19
|
export * from './undo.tool';
|
|
19
20
|
export * from './table/_api';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Props } from '@viewfly/core';
|
|
2
|
+
import { Slot } from '@textbus/core';
|
|
3
|
+
import { HTMLAttributes } from '@viewfly/platform-browser';
|
|
4
|
+
import { DropdownProps } from '../../components/dropdown/dropdown';
|
|
5
|
+
export interface TextBackgroundColorToolProps extends Props {
|
|
6
|
+
abreast?: DropdownProps['abreast'];
|
|
7
|
+
style?: HTMLAttributes<HTMLElement>['style'];
|
|
8
|
+
slot?: Slot | null;
|
|
9
|
+
applyBefore?(): void;
|
|
10
|
+
}
|
|
11
|
+
export declare function TextBackgroundColorTool(props: TextBackgroundColorToolProps): () => import("@viewfly/core/jsx-runtime").JSX.Element;
|
|
@@ -2,10 +2,10 @@ import { Props } from '@viewfly/core';
|
|
|
2
2
|
import { Slot } from '@textbus/core';
|
|
3
3
|
import { HTMLAttributes } from '@viewfly/platform-browser';
|
|
4
4
|
import { DropdownProps } from '../../components/dropdown/dropdown';
|
|
5
|
-
export interface
|
|
5
|
+
export interface TextColorToolProps extends Props {
|
|
6
6
|
abreast?: DropdownProps['abreast'];
|
|
7
7
|
style?: HTMLAttributes<HTMLElement>['style'];
|
|
8
8
|
slot?: Slot | null;
|
|
9
9
|
applyBefore?(): void;
|
|
10
10
|
}
|
|
11
|
-
export declare function
|
|
11
|
+
export declare function TextColorTool(props: TextColorToolProps): () => import("@viewfly/core/jsx-runtime").JSX.Element;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { Subject } from '@textbus/core';
|
|
2
|
+
import { TableComponent } from './table.component';
|
|
2
3
|
export declare class TableService {
|
|
3
4
|
onInsertRowBefore: Subject<number | null>;
|
|
4
5
|
onInsertColumnBefore: Subject<number | null>;
|
|
5
6
|
onScroll: Subject<number>;
|
|
6
7
|
}
|
|
8
|
+
export declare function isShowMask(component: TableComponent): boolean | null;
|
package/package.json
CHANGED