Antd 2.0 released in English - the best React components library 👍

Awesome!!! The best in class

Awesome, way more better than Material UI!

1 Like

I agree. Antd is definitely the most mature React components library.

Still wish semantic-ui was react-style.
Anyway, Ant seems more flexible than material (but poor colors ._. )

1 Like

@gothicmage There is already the project for new color system as well as separation of icons:
https://github.com/ant-design/ant-design/projects/2

this is how i can successfully install Ant Design in Meteor 1.4.2

meteor npm install --save antd
meteor npm install --save-dev babel-plugin-import

then create .babelrc in you meteor project root directory:

{
 "plugins": [["import", { "libraryName": "antd", "style": "css" }]]
}
2 Likes

Why is babel-plugin-import needed?

It looks rock solid!

Hope the Ant Design Mobile of React section will be translated soon, too.

The documentation said that babel plugin will convert

import { Button } from 'antd';

to

import Button from 'antd/lib/button';

It means meteor packager will only bundle specific used components, not all antd components. And it will also load css style needed by this Button component only.

2 Likes

Ah, gotcha. Thanks! This looks really slick!

Thanks for the babel config!

I’m already using antd extensively in production and must say I’m very happy with its performance and flexibility. Very happy that I switch from the bootstrap mix I was running before, still in the process of phasing out all bootstrap modules. I did a antd package for uniforms. I’m running my uniforms of https://www.npmjs.com/package/uniforms-antd-extended but its still a work in progress, I think most of the standard components are stable for now which will hopefully be published under uniforms-antd in the near future (I’m just having a hard time writing the required tests).

Look great, But I would like to config to English for default.

you can use <LocaleProvider locale={enUS}> as root component to make english default

@theara I have proposed Ebglish default PR https://github.com/ant-design/ant-design/pull/3768
But it will be added probably in 3.0.0 version. Feel free to use my code proposal.

thanks, now it work fine.

@mrmsupport, when you release uniforms-antd?

Hi @theara. Hoping very soon. As far as I find the development is done. I’ve had conversations with the developers of uniforms and they are in the process of merging the pull request. If I’m correct, its only documentation and testing that needs to be implemented. @radekmie might be able to give a more details.

1 Like

Yes it is. I’m even writing these tests now.

1 Like

Update: uniforms-antd is ready and will be published tomorrow!

3 Likes