btv-base-controls 0.1.25 → 0.1.27
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/esm2022/lib/btv-icon-button/btv-icon-button.component.mjs +5 -3
- package/esm2022/lib/btv-search/index.mjs +2 -0
- package/esm2022/lib/custom-tool-tip/custom-tool-tip.component.mjs +2 -2
- package/esm2022/lib/custom-tool-tip/tool-tip-renderer.directive.mjs +2 -8
- package/fesm2022/btv-base-controls.mjs +83 -88
- package/fesm2022/btv-base-controls.mjs.map +1 -1
- package/lib/btv-icon-button/btv-icon-button.component.d.ts +2 -0
- package/lib/btv-search/index.d.ts +1 -0
- package/lib/wm-panel-bar/wm-panel-bar.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ViewState } from '../btv-search';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export type ButtonSize = 'small' | 'medium' | 'large';
|
|
4
5
|
export declare class BtvIconButtonComponent {
|
|
@@ -18,6 +19,7 @@ export declare class BtvIconButtonComponent {
|
|
|
18
19
|
danger: boolean;
|
|
19
20
|
unavailableText: string;
|
|
20
21
|
isHover: boolean;
|
|
22
|
+
view: ViewState;
|
|
21
23
|
floor: (x: number) => number;
|
|
22
24
|
isInFullScreen: boolean;
|
|
23
25
|
get iconSize(): 16 | 20 | 24;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './btv-search.component';
|
|
@@ -17,8 +17,8 @@ export declare class WmPanelBarComponent {
|
|
|
17
17
|
directionBottom: boolean;
|
|
18
18
|
directionLeft: boolean;
|
|
19
19
|
private _direction;
|
|
20
|
-
get direction(): "
|
|
21
|
-
set direction(val: "
|
|
20
|
+
get direction(): "bottom" | "left";
|
|
21
|
+
set direction(val: "bottom" | "left");
|
|
22
22
|
onClick(): void;
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<WmPanelBarComponent, never>;
|
|
24
24
|
static ɵcmp: i0.ɵɵComponentDeclaration<WmPanelBarComponent, "wm-panel-bar", never, { "label": { "alias": "label"; "required": false; }; "labelClasses": { "alias": "labelClasses"; "required": false; }; "openedLabel": { "alias": "openedLabel"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "open": { "alias": "open"; "required": false; }; "collapseText": { "alias": "collapseText"; "required": false; }; "expandText": { "alias": "expandText"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; }, { "openChange": "openChange"; }, never, ["[headerLabel]", "[headerContent]", "*"], false, never>;
|