@toolmain/components 1.2.21 → 1.2.23

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +4 -4
  2. package/dist/index.js +3836 -3832
  3. package/package.json +8 -8
package/dist/index.d.ts CHANGED
@@ -113,18 +113,18 @@ provider?: ComponentProvider;
113
113
  [x: string]: ((props: {
114
114
  [x: string]: unknown;
115
115
  }) => any) | undefined;
116
- [x: number]: ((props: {
117
- [x: string]: unknown;
118
- }) => any) | undefined;
119
116
  }>;
120
117
 
121
118
  declare type __VLS_Props = {
122
119
  /**
123
- * 选择top时,如果元素滚动到[底部]消失或即将消失,会回到原位置
120
+ * 选择top时,如果元素滚动到[底部]消失或即将消失,会回到原位置
124
121
  *
125
122
  * 选择bottom时则是滚动到[顶部]时触发
126
123
  */
127
124
  position?: "top" | "bottom";
125
+ /**
126
+ * element query selector
127
+ */
128
128
  target?: string;
129
129
  offset?: number;
130
130
  };