@fox-js/foxui-pc 4.1.1-25 → 4.1.1-26
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 +8838 -11321
- package/dist/index.umd.js +1 -1
- package/dist/style.css +3502 -1
- package/dist/style.js +3 -0
- package/dist/types/index.d.ts +10 -0
- package/package.json +1 -1
package/dist/style.js
ADDED
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内部组件)
|
|
@@ -1884,6 +1885,15 @@ export declare const useRect: (elementRef: (Element | Window) | Ref<Element | Wi
|
|
|
1884
1885
|
*/
|
|
1885
1886
|
export declare function useSize(elementRef: Element | Ref<Element>): Size;
|
|
1886
1887
|
|
|
1888
|
+
/**
|
|
1889
|
+
* 获取child slot
|
|
1890
|
+
* @param slot
|
|
1891
|
+
* @returns
|
|
1892
|
+
*/
|
|
1893
|
+
export declare function useSlotChildren(slot?: () => VNode[]): {
|
|
1894
|
+
getChildren: () => VNode[];
|
|
1895
|
+
};
|
|
1896
|
+
|
|
1887
1897
|
/**
|
|
1888
1898
|
* 获取响应式touch对象
|
|
1889
1899
|
* @returns
|