@giteeteam/apps-team-components 1.3.0-alpha.3 → 1.3.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.
- package/README.md +24 -21
- package/dist/components/common/PriceTag.js +18 -18
- package/dist/components/common/expand-component/style.js +6 -6
- package/dist/components/common/overflow-tooltip/style/index.js +13 -13
- package/dist/components/common/style/global.js +2 -2
- package/dist/components/common/style/mixin.js +14 -14
- package/dist/components/common/user-field/style/index.js +21 -21
- package/dist/components/default-empty-icon/style.js +52 -52
- package/dist/components/fields/bind-workspace/style/index.js +3 -3
- package/dist/components/fields/dropdown/style.js +72 -72
- package/dist/components/fields/hyper-link/style/index.js +14 -14
- package/dist/components/fields/item-type/style/index.js +5 -5
- package/dist/components/fields/long-text/style/index.js +5 -5
- package/dist/components/fields/priority/style/index.js +50 -50
- package/dist/components/fields/status/style/index.js +297 -297
- package/dist/components/fields/tag/style/index.js +5 -5
- package/dist/components/fields/team/style/index.js +2 -2
- package/dist/components/fields/user/style/index.js +8 -8
- package/dist/components/table-components/style/index.js +5 -5
- package/dist/icons/empty-icon/workspace-empty.svg +126 -126
- package/dist/icons/style/index.js +21 -21
- package/dist/public/icons/BulbIcon.svg +1 -1
- package/dist/public/icons/Cloud.svg +1 -1
- package/dist/public/icons/ConsultIcon.svg +1 -1
- package/dist/public/icons/Demo.svg +1 -1
- package/dist/public/icons/ErrorTemplate.svg +1 -1
- package/dist/public/icons/Fail.svg +1 -1
- package/dist/public/icons/Flag.svg +1 -1
- package/dist/public/icons/GiteeIcon.svg +1 -1
- package/dist/public/icons/IntelligenceGradient.svg +1 -1
- package/dist/public/icons/Issue_Approval.svg +1 -1
- package/dist/public/icons/Issue_Bug.svg +1 -1
- package/dist/public/icons/Issue_Demand.svg +1 -1
- package/dist/public/icons/Issue_Doc.svg +1 -1
- package/dist/public/icons/Issue_Idea.svg +1 -1
- package/dist/public/icons/Issue_List.svg +1 -1
- package/dist/public/icons/Issue_Plan.svg +1 -1
- package/dist/public/icons/Issue_Product.svg +1 -1
- package/dist/public/icons/Issue_Risk.svg +1 -1
- package/dist/public/icons/Issue_Story.svg +1 -1
- package/dist/public/icons/Issue_Subtask.svg +1 -1
- package/dist/public/icons/Issue_Task.svg +1 -1
- package/dist/public/icons/Issue_Test.svg +1 -1
- package/dist/public/icons/Issue_TestExcution.svg +1 -1
- package/dist/public/icons/Issue_TestPlan.svg +1 -1
- package/dist/public/icons/Issue_Time.svg +1 -1
- package/dist/public/icons/Issue_develop.svg +1 -1
- package/dist/public/icons/KanbanCover.svg +7 -7
- package/dist/public/icons/ListCover.svg +117 -117
- package/dist/public/icons/ManHour.svg +1 -1
- package/dist/public/icons/MobileIcon.svg +1 -1
- package/dist/public/icons/NoItemType.svg +10 -10
- package/dist/public/icons/ProductIcon.svg +1 -1
- package/dist/public/icons/RedFlagIcon.svg +1 -1
- package/dist/public/icons/Safe.svg +1 -1
- package/dist/public/icons/StarIcon.svg +60 -60
- package/dist/public/icons/StructureCover.svg +1 -1
- package/dist/public/icons/Success.svg +1 -1
- package/dist/public/icons/TeamIcon.svg +1 -1
- package/dist/public/icons/WebIcon.svg +1 -1
- package/dist/public/icons/iconfont.svg +467 -467
- package/dist/public/icons/iconfont_single_color.css +912 -912
- package/dist/public/mockServiceWorker.js +284 -284
- package/dist/style/global.js +7 -7
- package/package.json +111 -111
package/package.json
CHANGED
|
@@ -1,111 +1,111 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@giteeteam/apps-team-components",
|
|
3
|
-
"version": "1.3.0
|
|
4
|
-
"description": "Gitee team components",
|
|
5
|
-
"main": "./dist/index.js",
|
|
6
|
-
"module": "./dist/index.js",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"prepare": "husky install && pnpm build",
|
|
9
|
-
"build": "rimraf dist && rollup -c",
|
|
10
|
-
"publish:alpha": "npm publish --tag alpha",
|
|
11
|
-
"prepack": "pnpm build",
|
|
12
|
-
"prepublish": "pnpm build",
|
|
13
|
-
"prepublishOnly": "pnpm build",
|
|
14
|
-
"lint": "eslint . --ext ts --ext tsx --ext js --ext json",
|
|
15
|
-
"pre-commit": "lint-staged",
|
|
16
|
-
"husky": "husky",
|
|
17
|
-
"storybook": "storybook dev -p 6006",
|
|
18
|
-
"build-storybook": "storybook build"
|
|
19
|
-
},
|
|
20
|
-
"files": [
|
|
21
|
-
"dist"
|
|
22
|
-
],
|
|
23
|
-
"lint-staged": {
|
|
24
|
-
"*.@(js|ts|tsx|json)": [
|
|
25
|
-
"prettier --write",
|
|
26
|
-
"pnpm lint --fix --quiet"
|
|
27
|
-
]
|
|
28
|
-
},
|
|
29
|
-
"publishConfig": {
|
|
30
|
-
"conventionalCommits": true,
|
|
31
|
-
"access": "public",
|
|
32
|
-
"registry": "https://registry.npmjs.org/"
|
|
33
|
-
},
|
|
34
|
-
"sideEffects": false,
|
|
35
|
-
"author": "",
|
|
36
|
-
"license": "ISC",
|
|
37
|
-
"devDependencies": {
|
|
38
|
-
"@chromatic-com/storybook": "^1.6.1",
|
|
39
|
-
"@rollup/plugin-commonjs": "^26.0.1",
|
|
40
|
-
"@rollup/plugin-image": "^3.0.3",
|
|
41
|
-
"@rollup/plugin-typescript": "^11.1.6",
|
|
42
|
-
"@storybook/addon-essentials": "^8.2.8",
|
|
43
|
-
"@storybook/addon-interactions": "^8.2.8",
|
|
44
|
-
"@storybook/addon-links": "^8.2.8",
|
|
45
|
-
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
|
|
46
|
-
"@storybook/blocks": "^8.2.8",
|
|
47
|
-
"@storybook/react": "^8.2.8",
|
|
48
|
-
"@storybook/react-webpack5": "^8.2.8",
|
|
49
|
-
"@storybook/test": "^8.2.8",
|
|
50
|
-
"@svgr/webpack": "^8.1.0",
|
|
51
|
-
"@types/js-cookie": "^3.0.6",
|
|
52
|
-
"@types/node": "18",
|
|
53
|
-
"@types/react": "18.2.23",
|
|
54
|
-
"@types/react-dom": "^18.2.14",
|
|
55
|
-
"@typescript-eslint/eslint-plugin": "^6.4.1",
|
|
56
|
-
"@typescript-eslint/parser": "^6.4.1",
|
|
57
|
-
"copy-webpack-plugin": "^12.0.2",
|
|
58
|
-
"dotenv": "^16.4.5",
|
|
59
|
-
"eslint": "^8.55.0",
|
|
60
|
-
"eslint-config-prettier": "^9.0.0",
|
|
61
|
-
"eslint-plugin-import": "^2.28.1",
|
|
62
|
-
"eslint-plugin-prettier": "^5.0.0",
|
|
63
|
-
"eslint-plugin-react": "^7.33.2",
|
|
64
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
65
|
-
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
66
|
-
"eslint-plugin-storybook": "^0.8.0",
|
|
67
|
-
"file-loader": "^6.2.0",
|
|
68
|
-
"husky": "^8.0.3",
|
|
69
|
-
"lint-staged": "^15.2.0",
|
|
70
|
-
"msw": "^2.3.5",
|
|
71
|
-
"msw-storybook-addon": "^2.0.3",
|
|
72
|
-
"prettier": "^3.0.3",
|
|
73
|
-
"react-base-table": "^1.13.5",
|
|
74
|
-
"rimraf": "^6.0.1",
|
|
75
|
-
"rollup": "^4.20.0",
|
|
76
|
-
"rollup-plugin-copy": "^3.5.0",
|
|
77
|
-
"storybook": "^8.2.8",
|
|
78
|
-
"typescript": "^5.2.2",
|
|
79
|
-
"url-loader": "^4.1.1",
|
|
80
|
-
"webpack": "^5.93.0"
|
|
81
|
-
},
|
|
82
|
-
"peerDependencies": {
|
|
83
|
-
"@ant-design/icons": "^5.2.6",
|
|
84
|
-
"@giteeteam/proxima-sdk-js": "^0.7.1",
|
|
85
|
-
"antd": "^5.7.3",
|
|
86
|
-
"axios": "^1.7.3",
|
|
87
|
-
"dayjs": "^1.11.10",
|
|
88
|
-
"react": "^17.0.2 || ^18.2.0",
|
|
89
|
-
"react-dom": "^17.0.2 || ^18.2.0",
|
|
90
|
-
"recoil": "^0.7.7",
|
|
91
|
-
"swr": "^1.1.0"
|
|
92
|
-
},
|
|
93
|
-
"dependencies": {
|
|
94
|
-
"@emotion/cache": "^11.11.0",
|
|
95
|
-
"@emotion/react": "^11.11.1",
|
|
96
|
-
"ahooks": "^3.8.0",
|
|
97
|
-
"classnames": "^2.5.1",
|
|
98
|
-
"compressed-json": "^1.0.16",
|
|
99
|
-
"debug": "^4.3.4",
|
|
100
|
-
"js-cookie": "^3.0.5",
|
|
101
|
-
"lodash-es": "^4.17.21",
|
|
102
|
-
"query-string": "^9.1.0",
|
|
103
|
-
"react-overlays": "^5.2.1",
|
|
104
|
-
"react-window": "^1.8.10"
|
|
105
|
-
},
|
|
106
|
-
"msw": {
|
|
107
|
-
"workerDirectory": [
|
|
108
|
-
"public"
|
|
109
|
-
]
|
|
110
|
-
}
|
|
111
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@giteeteam/apps-team-components",
|
|
3
|
+
"version": "1.3.0",
|
|
4
|
+
"description": "Gitee team components",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"prepare": "husky install && pnpm build",
|
|
9
|
+
"build": "rimraf dist && rollup -c",
|
|
10
|
+
"publish:alpha": "npm publish --tag alpha",
|
|
11
|
+
"prepack": "pnpm build",
|
|
12
|
+
"prepublish": "pnpm build",
|
|
13
|
+
"prepublishOnly": "pnpm build",
|
|
14
|
+
"lint": "eslint . --ext ts --ext tsx --ext js --ext json",
|
|
15
|
+
"pre-commit": "lint-staged",
|
|
16
|
+
"husky": "husky",
|
|
17
|
+
"storybook": "storybook dev -p 6006",
|
|
18
|
+
"build-storybook": "storybook build"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"lint-staged": {
|
|
24
|
+
"*.@(js|ts|tsx|json)": [
|
|
25
|
+
"prettier --write",
|
|
26
|
+
"pnpm lint --fix --quiet"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"conventionalCommits": true,
|
|
31
|
+
"access": "public",
|
|
32
|
+
"registry": "https://registry.npmjs.org/"
|
|
33
|
+
},
|
|
34
|
+
"sideEffects": false,
|
|
35
|
+
"author": "",
|
|
36
|
+
"license": "ISC",
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@chromatic-com/storybook": "^1.6.1",
|
|
39
|
+
"@rollup/plugin-commonjs": "^26.0.1",
|
|
40
|
+
"@rollup/plugin-image": "^3.0.3",
|
|
41
|
+
"@rollup/plugin-typescript": "^11.1.6",
|
|
42
|
+
"@storybook/addon-essentials": "^8.2.8",
|
|
43
|
+
"@storybook/addon-interactions": "^8.2.8",
|
|
44
|
+
"@storybook/addon-links": "^8.2.8",
|
|
45
|
+
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
|
|
46
|
+
"@storybook/blocks": "^8.2.8",
|
|
47
|
+
"@storybook/react": "^8.2.8",
|
|
48
|
+
"@storybook/react-webpack5": "^8.2.8",
|
|
49
|
+
"@storybook/test": "^8.2.8",
|
|
50
|
+
"@svgr/webpack": "^8.1.0",
|
|
51
|
+
"@types/js-cookie": "^3.0.6",
|
|
52
|
+
"@types/node": "18",
|
|
53
|
+
"@types/react": "18.2.23",
|
|
54
|
+
"@types/react-dom": "^18.2.14",
|
|
55
|
+
"@typescript-eslint/eslint-plugin": "^6.4.1",
|
|
56
|
+
"@typescript-eslint/parser": "^6.4.1",
|
|
57
|
+
"copy-webpack-plugin": "^12.0.2",
|
|
58
|
+
"dotenv": "^16.4.5",
|
|
59
|
+
"eslint": "^8.55.0",
|
|
60
|
+
"eslint-config-prettier": "^9.0.0",
|
|
61
|
+
"eslint-plugin-import": "^2.28.1",
|
|
62
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
63
|
+
"eslint-plugin-react": "^7.33.2",
|
|
64
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
65
|
+
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
66
|
+
"eslint-plugin-storybook": "^0.8.0",
|
|
67
|
+
"file-loader": "^6.2.0",
|
|
68
|
+
"husky": "^8.0.3",
|
|
69
|
+
"lint-staged": "^15.2.0",
|
|
70
|
+
"msw": "^2.3.5",
|
|
71
|
+
"msw-storybook-addon": "^2.0.3",
|
|
72
|
+
"prettier": "^3.0.3",
|
|
73
|
+
"react-base-table": "^1.13.5",
|
|
74
|
+
"rimraf": "^6.0.1",
|
|
75
|
+
"rollup": "^4.20.0",
|
|
76
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
77
|
+
"storybook": "^8.2.8",
|
|
78
|
+
"typescript": "^5.2.2",
|
|
79
|
+
"url-loader": "^4.1.1",
|
|
80
|
+
"webpack": "^5.93.0"
|
|
81
|
+
},
|
|
82
|
+
"peerDependencies": {
|
|
83
|
+
"@ant-design/icons": "^5.2.6",
|
|
84
|
+
"@giteeteam/proxima-sdk-js": "^0.7.1",
|
|
85
|
+
"antd": "^5.7.3",
|
|
86
|
+
"axios": "^1.7.3",
|
|
87
|
+
"dayjs": "^1.11.10",
|
|
88
|
+
"react": "^17.0.2 || ^18.2.0",
|
|
89
|
+
"react-dom": "^17.0.2 || ^18.2.0",
|
|
90
|
+
"recoil": "^0.7.7",
|
|
91
|
+
"swr": "^1.1.0"
|
|
92
|
+
},
|
|
93
|
+
"dependencies": {
|
|
94
|
+
"@emotion/cache": "^11.11.0",
|
|
95
|
+
"@emotion/react": "^11.11.1",
|
|
96
|
+
"ahooks": "^3.8.0",
|
|
97
|
+
"classnames": "^2.5.1",
|
|
98
|
+
"compressed-json": "^1.0.16",
|
|
99
|
+
"debug": "^4.3.4",
|
|
100
|
+
"js-cookie": "^3.0.5",
|
|
101
|
+
"lodash-es": "^4.17.21",
|
|
102
|
+
"query-string": "^9.1.0",
|
|
103
|
+
"react-overlays": "^5.2.1",
|
|
104
|
+
"react-window": "^1.8.10"
|
|
105
|
+
},
|
|
106
|
+
"msw": {
|
|
107
|
+
"workerDirectory": [
|
|
108
|
+
"public"
|
|
109
|
+
]
|
|
110
|
+
}
|
|
111
|
+
}
|