@fox-js/foxui-pad 4.1.1-18 → 4.1.1-19
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 +1 -1
- package/dist/index.esm.js +2590 -2574
- package/dist/index.umd.js +1 -1
- package/dist/style.js +1 -1
- package/dist/types/index.d.ts +10 -0
- package/package.json +1 -1
package/dist/style.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -124,6 +124,7 @@ import { UnwrapNestedRefs } from 'vue';
|
|
|
124
124
|
import { UnwrapRef } from 'vue';
|
|
125
125
|
import { ValidateMessages } from '@fox-js/validator';
|
|
126
126
|
import { ValidateResult } from '@fox-js/validator';
|
|
127
|
+
import { VNode } from 'vue';
|
|
127
128
|
|
|
128
129
|
/**
|
|
129
130
|
* abstract page scope key(虚拟页面,不生成page、headerBar、footerBar、content,直接reader content内部组件)
|
|
@@ -1916,6 +1917,15 @@ export declare const useRect: (elementRef: (Element | Window) | Ref<Element | Wi
|
|
|
1916
1917
|
*/
|
|
1917
1918
|
export declare function useSize(elementRef: Element | Ref<Element>): Size;
|
|
1918
1919
|
|
|
1920
|
+
/**
|
|
1921
|
+
* 获取child slot
|
|
1922
|
+
* @param slot
|
|
1923
|
+
* @returns
|
|
1924
|
+
*/
|
|
1925
|
+
export declare function useSlotChildren(slot?: () => VNode[]): {
|
|
1926
|
+
getChildren: () => VNode[];
|
|
1927
|
+
};
|
|
1928
|
+
|
|
1919
1929
|
/**
|
|
1920
1930
|
* 获取响应式touch对象
|
|
1921
1931
|
* @returns
|