forked from vueComponent/pro-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
95 changed files
with
1,849 additions
and
6,701 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* eslint-env node */ | ||
require('@rushstack/eslint-patch/modern-module-resolution') | ||
|
||
module.exports = { | ||
root: true, | ||
extends: [ | ||
'plugin:vue/vue3-recommended', | ||
'eslint:recommended', | ||
'@vue/eslint-config-typescript/recommended', | ||
'@vue/eslint-config-prettier', | ||
], | ||
env: { | ||
'vue/setup-compiler-macros': true, | ||
}, | ||
rules: { | ||
'prettier/prettier': ['error', { semi: false, singleQuote: true, printWidth: 120 }], | ||
// 临时关掉 | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
}, | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,28 @@ | ||
|
||
# See https://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
node_modules/ | ||
|
||
# testing | ||
/coverage | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
package-lock.json* | ||
yarn.lock | ||
|
||
# IDE | ||
/.idea | ||
|
||
lib/ | ||
es/ | ||
dist/ | ||
build/ | ||
.vscode | ||
.history | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
# publish | ||
*.tgz | ||
|
||
/src/icons | ||
/*.js | ||
/*.d.ts | ||
!.jest.js | ||
!Icon.d.ts | ||
!.fatherrc.js | ||
!.eslintrc.js | ||
node_modules | ||
.DS_Store | ||
dist | ||
dist-ssr | ||
coverage | ||
*.local | ||
|
||
/cypress/videos/ | ||
/cypress/screenshots/ | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[简体中文](./README.zh-CN.md) | English | ||
|
||
# Pro Components | ||
|
||
The Pro Series components are placed here to support heavy-duty components. | ||
|
||
[![Vue Support](https://img.shields.io/badge/support-Vue3-green?style=flat)](./package.json) [![Vue Grammar Level](https://img.shields.io/badge/full-Composition%20API-blue?style=flat)](https://v3.vuejs.org/guide/composition-api-introduction.html) [![NPM downloads](http://img.shields.io/npm/dm/@ant-design-vue/pro-layout.svg?style=flat)](https://npmjs.org/package/@ant-design-vue/pro-layout) [![License](https://img.shields.io/github/license/vueComponent/pro-layout)](./LICENSE) | ||
|
||
## 🖥 Browser compatibility | ||
|
||
- Modern browsers. You can use [1.x](https://www.npmjs.com/package/@ant-design-vue/pro-layout/v/1.0.11) for Internet Explorer 11. | ||
- [Electron](https://www.electronjs.org/) | ||
|
||
| [![edge](https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png)](http://godban.github.io/browsers-support-badges/) | [![Edge](https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png)](http://godban.github.io/browsers-support-badges/) | [![chrome](https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png)](http://godban.github.io/browsers-support-badges/) | [![safari](https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png)](http://godban.github.io/browsers-support-badges/) | [![electron_48x48](https://raw.githubusercontent.com/alrra/browser-logos/master/src/electron/electron_48x48.png)](http://godban.github.io/browsers-support-badges/) | | ||
| --- | --- | --- | --- | --- | | ||
| Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions | | ||
|
||
|
||
## Contributing | ||
|
||
Any type of contribution is welcome, here are some examples of how you may contribute to this project 😃 : | ||
|
||
- Use Ant Design Vue、Pro and Pro Components in your daily work. | ||
- Submit [Issue](https://github.com/vueComponent/pro-components/issues) to report bugs or ask questions. | ||
- Propose [Pull Request](https://github.com/vueComponent/pro-components/pulls) to improve our code. | ||
|
||
## Component Kanban | ||
|
||
| Components | Downloads | Downloads a version | | ||
| --- | --- | --- | | ||
| pro-layout | [![layout](https://img.shields.io/npm/dw/@ant-design-vue/pro-layout.svg)](https://www.npmjs.com/package/@ant-design-vue/pro-layout) | [![npm package](https://img.shields.io/npm/v/@ant-design-vue/pro-layout.svg?style=flat-square?style=flat-square)](https://www.npmjs.com/package/@ant-design-vue/pro-layout) | | ||
|
||
## LICENSE | ||
|
||
MIT |
Oops, something went wrong.