🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@para-ui/core

Package Overview
Dependencies
Maintainers
5
Versions
448
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.8
Version published
Weekly downloads
71
-65.37%
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)

更新日志

CHANGELOG.md

FAQs

Package last updated on 27 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts