@fle-ui/plus-table 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +19 -0
  2. package/package.json +48 -0
package/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # @fle-ui/plus-table
2
+
3
+ > @fle-ui/plus-choose-goods
4
+
5
+ ## Install
6
+
7
+ Using npm:
8
+
9
+ ```bash
10
+ $ npm install --save @fle-ui/plus-table
11
+ ```
12
+
13
+ or using yarn:
14
+
15
+ ```bash
16
+ $ yarn add @fle-ui/plus-table
17
+ ```
18
+
19
+
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@fle-ui/plus-table",
3
+ "version": "1.0.0",
4
+ "description": "@fle-ui/plus-table",
5
+ "keywords": [
6
+ "fle-ui",
7
+ "admin",
8
+ "fle-ui-pro"
9
+ ],
10
+ "sideEffects": [
11
+ "*.less"
12
+ ],
13
+ "homepage": "https://github.com/ant-design/pro-components/tree/master/packages/table#readme",
14
+ "bugs": {
15
+ "url": "http://github.com/umijs/plugins/issues"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/ant-design/pro-components.git"
20
+ },
21
+ "main": "lib/index.js",
22
+ "module": "es/index.js",
23
+ "types": "lib/index.d.ts",
24
+ "files": [
25
+ "lib",
26
+ "es",
27
+ "dist"
28
+ ],
29
+ "browserslist": [
30
+ "last 2 versions",
31
+ "Firefox ESR",
32
+ "> 1%",
33
+ "ie >= 11"
34
+ ],
35
+ "peerDependencies": {
36
+ "antd": ">=5.13.0",
37
+ "react": ">=17.0.0"
38
+ },
39
+ "authors": [],
40
+ "license": "MIT",
41
+ "publishConfig": {
42
+ "access": "public"
43
+ },
44
+ "scripts": {
45
+ "test": "echo \"Error: no test specified\" && exit 1"
46
+ },
47
+ "author": ""
48
+ }