riku
2026-01-16 1f9e43b7bbb848c7ee2aaa89ffece17002b2c915
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { SuperComponent } from '../common/src/index';
export default class Navbar extends SuperComponent {
    externalClasses: string[];
    timer: any;
    options: {
        multipleSlots: boolean;
    };
    properties: import("./type").TdNavbarProps;
    observers: {
        visible(this: Navbar, visible: any): void;
        'title,titleMaxLength'(this: any): void;
    };
    data: {
        prefix: string;
        classPrefix: string;
        boxStyle: string;
        showTitle: string;
        hideLeft: boolean;
        hideCenter: boolean;
        _menuRect: any;
        _leftRect: any;
        _boxStyle: {};
    };
    attached(): void;
    detached(): void;
    methods: {
        initStyle(): void;
        calcCenterStyle(leftRect: WechatMiniprogram.BoundingClientRectResult, menuRect: WechatMiniprogram.BoundingClientRectResult, defaultStyle: object): void;
        getLeftRect(): void;
        getMenuRect(): void;
        onMenuButtonBoundingClientRectWeightChange(): void;
        offMenuButtonBoundingClientRectWeightChange(): void;
        queryElements(capsuleRect: WechatMiniprogram.OnMenuButtonBoundingClientRectWeightChangeListenerResult): void;
        goBack(): void;
    };
}