@visactor/vchart-types 1.11.4 → 1.11.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/package.json +3 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/types/component/tooltip/interface/theme.d.ts +1 -0
- package/types/plugin/components/tooltip-handler/dom/interface.d.ts +1 -0
- package/types/plugin/components/tooltip-handler/dom/model/content-model.d.ts +1 -3
- package/types/plugin/components/tooltip-handler/interface/style.d.ts +1 -0
|
@@ -16,6 +16,7 @@ export interface IDomTooltipStyle {
|
|
|
16
16
|
shapeColumn: TooltipColumnStyle<IShapeStyle>;
|
|
17
17
|
keyColumn: TooltipColumnStyle<ILabelStyle>;
|
|
18
18
|
valueColumn: TooltipColumnStyle<ILabelStyle>;
|
|
19
|
+
align?: 'left' | 'right';
|
|
19
20
|
}
|
|
20
21
|
export type TooltipColumnStyle<T> = IMargin & {
|
|
21
22
|
width?: string;
|
|
@@ -6,9 +6,7 @@ export declare class ContentModel extends BaseTooltipModel {
|
|
|
6
6
|
keyBox: Maybe<ContentColumnModel>;
|
|
7
7
|
valueBox: Maybe<ContentColumnModel>;
|
|
8
8
|
init(): void;
|
|
9
|
-
private
|
|
10
|
-
private _initKeyBox;
|
|
11
|
-
private _initValueBox;
|
|
9
|
+
private _initBox;
|
|
12
10
|
setStyle(style?: Partial<CSSStyleDeclaration>): void;
|
|
13
11
|
setContent(): void;
|
|
14
12
|
protected _getContentContainerStyle(): Partial<CSSStyleDeclaration>;
|