@toolmain/components 1.2.22 → 1.2.24
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/dist/index.d.ts +4 -1
- package/dist/index.js +2287 -2259
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -117,11 +117,14 @@ provider?: ComponentProvider;
|
|
|
117
117
|
|
|
118
118
|
declare type __VLS_Props = {
|
|
119
119
|
/**
|
|
120
|
-
* 选择top
|
|
120
|
+
* 选择top时,如果元素滚动到[底部]消失或即将消失,会回到原位置
|
|
121
121
|
*
|
|
122
122
|
* 选择bottom时则是滚动到[顶部]时触发
|
|
123
123
|
*/
|
|
124
124
|
position?: "top" | "bottom";
|
|
125
|
+
/**
|
|
126
|
+
* element query selector
|
|
127
|
+
*/
|
|
125
128
|
target?: string;
|
|
126
129
|
offset?: number;
|
|
127
130
|
};
|