{"id":22350992,"url":"https://github.com/amittksharma/element-react-ui-components","last_synced_at":"2025-12-30T23:24:34.935Z","repository":{"id":57155787,"uuid":"122594542","full_name":"amittkSharma/element-react-ui-components","owner":"amittkSharma","description":null,"archived":false,"fork":false,"pushed_at":"2018-06-15T09:01:29.000Z","size":1185,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-25T12:02:15.019Z","etag":null,"topics":["css","element-react-ui-components","element-ui","element-ui-components","react","react-component","react-components","react-ui-components","typescript","ui-components","ui-design"],"latest_commit_sha":null,"homepage":"https://amittksharma.github.io/element-react-ui-components/#/en-US/quick-start","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/amittkSharma.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-02-23T08:34:44.000Z","updated_at":"2018-06-15T09:01:31.000Z","dependencies_parsed_at":"2022-08-28T09:41:00.407Z","dependency_job_id":null,"html_url":"https://github.com/amittkSharma/element-react-ui-components","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amittkSharma%2Felement-react-ui-components","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amittkSharma%2Felement-react-ui-components/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amittkSharma%2Felement-react-ui-components/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amittkSharma%2Felement-react-ui-components/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amittkSharma","download_url":"https://codeload.github.com/amittkSharma/element-react-ui-components/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245650223,"owners_count":20650098,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","element-react-ui-components","element-ui","element-ui-components","react","react-component","react-components","react-ui-components","typescript","ui-components","ui-design"],"created_at":"2024-12-04T12:12:03.772Z","updated_at":"2025-12-30T23:24:34.908Z","avatar_url":"https://github.com/amittkSharma.png","language":"JavaScript","readme":"# Element React UI Components\n\n[![](https://travis-ci.org/eleme/element-react.svg?branch=master)](https://travis-ci.org/eleme/element-react)\n[![](https://img.shields.io/npm/v/element-react-ui-components.svg)](https://www.npmjs.com/package/element-react-ui-components)\n[![](https://img.shields.io/npm/dm/element-react-ui-components.svg)](https://www.npmjs.com/package/element-react-ui-components)\n\n[Element](https://github.com/ElemeFE/element) was initially written in [Vue](https://vuejs.org/), which has many elegant UI components, but we also love [React](https://facebook.github.io/react/), so we forked it for the React community.\n\n## Getting Started\n\n### Install\n\n```bash\nnpm install element-react-ui-components --save\n```\n\nBefore the building, you need a style theme, here we recommend you to pick up `element-theme-default`.\n\n```bash\nnpm install element-theme-default --save\n```\n\n### Usage\n\nWe are die hard fans of ECMAScript 6, so we recommend you writing code in modern javascript.\n\n```js\nimport { Button } from 'element-react-ui-components';\n```\n\nAlso we provide an advanced way to [tree shaking](https://blog.engineyard.com/2016/tree-shaking) the code with [Rollup.js](http://rollupjs.org/) and [Webpack 2](https://webpack.github.io/)\n\n```js\nimport { Button } from 'element-react-ui-components/next';\n```\n\n### Config\n\nWith webpack, you need additional loaders to build with `element-react-ui-components`.\n\n```js\nconst webpack = require('webpack');\n\nmodule.exports = {\n  entry: {\n    src: 'path/to/src'\n  },\n  output: {\n    path: 'path/to/output',\n    publicPath: '/public',\n    chunkFilename: '[chunkhash:12].js',\n    filename: '[chunkhash:12].js'\n  },\n  plugins: [\n    new webpack.DefinePlugin({ 'process.env.NODE_ENV': JSON.stringify('production') }),\n    new webpack.optimize.UglifyJsPlugin({\n      output: {\n        comments: false\n      }\n    })\n  ],\n  resolve: {\n    extensions: ['.js', '.jsx']\n  },\n  module: {\n    loaders: [\n      {\n        test: /\\.jsx?$/,\n        loader: 'babel-loader',\n        include: ['path/to/src']\n      },\n      {\n        test: /\\.css$/,\n        loaders: ['style-loader', 'css-loader']\n      },\n      {\n        test: /\\.(ttf|eot|svg|woff|woff2)(\\?.+)?$/,\n        loader: 'file-loader?name=[hash:12].[ext]'\n      }\n    ]\n  }\n}\n```\n\n## Contributing\n\nPlease make sure to read the [Contributing Guide](https://github.com/eleme/element-react/blob/master/CONTRIBUTING.md) before making a pull request.\n\n## Acknowledgments\n\n* [@doxiaodong](https://github.com/doxiaodong) for adding typescript ambient declarations.\n* [@cuining](https://github.com/cuining) for building the live code editor.\n\n## Credits\n\n* [Element](https://github.com/ElemeFE/element) Desktop UI elements for Vue.js 2.0.\n\n## License\n\nMIT\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famittksharma%2Felement-react-ui-components","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famittksharma%2Felement-react-ui-components","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famittksharma%2Felement-react-ui-components/lists"}