@fox-js/foxui-pc 4.0.1-37 → 4.0.1-38
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.cjs.js +2 -2
- package/dist/index.esm.js +806 -792
- package/dist/index.umd.js +2 -2
- package/dist/style.esm.js +1 -1
- package/dist/types/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/style.esm.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -260,6 +260,13 @@ export declare const DateItem: DefineComponent<unknown, object, {}, ComputedOpti
|
|
|
260
260
|
*/
|
|
261
261
|
export declare function debounce(func: GenericFunction, delay: number): GenericFunction;
|
|
262
262
|
|
|
263
|
+
/**
|
|
264
|
+
* 防抖Ref
|
|
265
|
+
* @param value
|
|
266
|
+
* @param delay
|
|
267
|
+
*/
|
|
268
|
+
export declare function debounceRef<T>(value: T, delay: number): Ref<T>;
|
|
269
|
+
|
|
263
270
|
/**
|
|
264
271
|
* 获取小数长度
|
|
265
272
|
* @param value
|