@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/style.js ADDED
@@ -0,0 +1,3 @@
1
+ /*!
2
+ * @fox-js/foxui-desktop v4.0.0 2026-03-24T11:07:34.282Z
3
+ */
@@ -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
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fox-js/foxui-pc",
3
3
  "type": "module",
4
- "version": "4.1.1-25",
4
+ "version": "4.1.1-26",
5
5
  "description": "FoxUI PC端组件库",
6
6
  "author": "jiangcheng",
7
7
  "main": "./dist/index.umd.js",