@dazhicheng/ui 1.5.46 → 1.5.47

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.
@@ -7,6 +7,8 @@ export declare const TtNavAnchor: import('../../../../utils/src').SFCWithInstall
7
7
  }>, {
8
8
  title: string;
9
9
  top: number | string;
10
+ bottom: number | string;
11
+ left: number | string;
10
12
  right: number | string;
11
13
  modelValue: string;
12
14
  position: "fixed" | "static" | "sticky";
@@ -8,6 +8,8 @@ declare const _default: import('vue').DefineComponent<TtNavAnchorProps, {}, {},
8
8
  }>, {
9
9
  title: string;
10
10
  top: number | string;
11
+ bottom: number | string;
12
+ left: number | string;
11
13
  right: number | string;
12
14
  modelValue: string;
13
15
  position: "fixed" | "static" | "sticky";
@@ -26,4 +26,8 @@ export interface TtNavAnchorProps {
26
26
  top?: number | string;
27
27
  /** fixed/sticky 时距右侧的距离 */
28
28
  right?: number | string;
29
+ /** fixed/sticky 时距左侧的距离 */
30
+ left?: number | string;
31
+ /** fixed/sticky 时距底部的距离 */
32
+ bottom?: number | string;
29
33
  }