Update from Vibe Studio

This commit is contained in:
Vibe Studio
2026-01-12 09:12:41 +00:00
parent a4605e311a
commit a6ae5199b0
29756 changed files with 2526222 additions and 278 deletions

View File

@@ -0,0 +1,21 @@
import React from 'react';
import type { AppItemProps, AppListProps } from './types';
/**
* 默认渲染logo的方式如果是个string用img。否则直接返回
*
* @param logo
* @returns
*/
export declare const defaultRenderLogo: (logo: React.ReactNode | (() => React.ReactNode)) => React.ReactNode;
/**
* 相关品牌额icon 列表。用于展示相关的品牌
*
* @param props
* @returns
*/
export declare const AppsLogoComponents: React.FC<{
appList?: AppListProps;
appListRender?: (props: AppListProps, defaultDom: React.ReactNode) => React.ReactNode;
onItemClick?: (item: AppItemProps, popoverRef?: React.RefObject<HTMLSpanElement>) => void;
prefixCls?: string;
}>;