@atlante-ti/atlante-ui
v0.10.23
Published
[](https://www.npmjs.com/package/@atlante-ti/atlante-ui)
Readme
Atlante UI
React component library built on top of Ant Design, designed specifically for Next.js applications, following Atlante's design guidelines.
📦 Installation
npm install @atlante-ti/atlante-uiComponent Development Guidelines
Structure: Each component should have its own folder with:
ComponentName/ ├── index.tsx # Main component fileExport Pattern: Always export both the component and its props type:
export { ComponentName } from "./ComponentName"; export type { ComponentNameProps } from "./ComponentName";Required Props:
dataTestId: Every component must accept adataTestIdprop for testing- TypeScript: All components must be fully typed
Styling:
- Use Ant Design as the base
- Apply Atlante's design system (colors, spacing, etc.)
- Support custom styles via
styleprop
Testing: Test your components in the
ui-testenvironment
📋 Development Setup
Clone the repository:
git clone https://github.com/.../atlante-ui.git cd atlante-uiInstall dependencies:
yarn installTest locally:
cd ui-test yarn go
