import { IPublicTypeComponentMetadata, IPublicTypeSnippet } from '@alilc/lowcode-types'; /** * PisellSuperTabs 组件元数据 * @description 通用导航框架封装的全能型 Tab 组件 */ const PisellSuperTabsMeta: IPublicTypeComponentMetadata = { componentName: 'PisellTabbar', title: 'PisellTabbar', category: '导航', group: 'Pro 组件', docUrl: '', screenshot: '', devMode: 'proCode', npm: { package: '@pisell/materials', version: '1.0.3', exportName: 'PisellTabbar', main: 'src/index.tsx', destructuring: true, subName: '', }, configure: { component: { isContainer: false, }, props: [], supports: { className: true, style: true, }, }, }; /** * Snippets */ const snippets: IPublicTypeSnippet[] = [ { title: 'PisellTabbar', screenshot: '', schema: { componentName: 'PisellTabbar', props: { }, }, }, ]; export default { ...PisellSuperTabsMeta, snippets, };