New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@para-ui/core

Package Overview
Dependencies
Maintainers
5
Versions
454
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@para-ui/core

Powered by Para FED

npmnpm
Version
5.0.0-beta.9
Version published
Weekly downloads
2.2K
1290%
Maintainers
5
Weekly downloads
 
Created
Source

@para-ui/core

Para FED 出品的 React 17 组件库,基于 TypeScript 5 + SCSS,使用 Vite 构建(库模式,输出 ESM + CJS)。

安装

npm install @para-ui/core

快速开始

在应用入口包一层 ParauiProvider 提供国际化与全局上下文,然后按需导入组件:

import { ParauiProvider, Tabs, Button } from '@para-ui/core';

const App = () => (
    <ParauiProvider>
        <Tabs
            data={[
                { label: 'Tab1', value: 'a' },
                { label: 'Tab2', value: 'b' }
            ]}
        />
        <Button>Submit</Button>
    </ParauiProvider>
);

本地开发

npm install
npm start              # 启动文档站开发服务器
npm run build          # 构建组件库(输出到 dist/)
npm run build:docs     # 构建文档站
npm test               # 运行 Jest 测试
npm run lint           # 增量 lint(仅改动文件)
npm run lint:all       # 全量 lint

浏览器支持

BrowserMinimum Version
Chrome88+
Edge88+
Firefox78+
Safari14+

(不支持 IE)

FAQs

Package last updated on 27 Apr 2026

Related posts