@xiaou66/u-web-ui 0.106.0 → 0.108.0
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 -4
- package/dist/index.es.js +322 -339
- package/dist/u-web-ui.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -891,10 +891,10 @@ export { WebBaseLayout }
|
|
|
891
891
|
export { WebLayout }
|
|
892
892
|
|
|
893
893
|
export declare interface WebLayoutSlot {
|
|
894
|
-
/**
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
894
|
+
/**
|
|
895
|
+
* 头部插槽 - 用于自定义头部内容
|
|
896
|
+
*/
|
|
897
|
+
header?(): JSX.Element;
|
|
898
898
|
/** 左侧菜单插槽 - 用于自定义左侧菜单内容 */
|
|
899
899
|
left?(): JSX.Element;
|
|
900
900
|
/** 默认插槽 - 主要内容区域 */
|