@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.
Files changed (65) hide show
  1. package/README.md +24 -21
  2. package/dist/components/common/PriceTag.js +18 -18
  3. package/dist/components/common/expand-component/style.js +6 -6
  4. package/dist/components/common/overflow-tooltip/style/index.js +13 -13
  5. package/dist/components/common/style/global.js +2 -2
  6. package/dist/components/common/style/mixin.js +14 -14
  7. package/dist/components/common/user-field/style/index.js +21 -21
  8. package/dist/components/default-empty-icon/style.js +52 -52
  9. package/dist/components/fields/bind-workspace/style/index.js +3 -3
  10. package/dist/components/fields/dropdown/style.js +72 -72
  11. package/dist/components/fields/hyper-link/style/index.js +14 -14
  12. package/dist/components/fields/item-type/style/index.js +5 -5
  13. package/dist/components/fields/long-text/style/index.js +5 -5
  14. package/dist/components/fields/priority/style/index.js +50 -50
  15. package/dist/components/fields/status/style/index.js +297 -297
  16. package/dist/components/fields/tag/style/index.js +5 -5
  17. package/dist/components/fields/team/style/index.js +2 -2
  18. package/dist/components/fields/user/style/index.js +8 -8
  19. package/dist/components/table-components/style/index.js +5 -5
  20. package/dist/icons/empty-icon/workspace-empty.svg +126 -126
  21. package/dist/icons/style/index.js +21 -21
  22. package/dist/public/icons/BulbIcon.svg +1 -1
  23. package/dist/public/icons/Cloud.svg +1 -1
  24. package/dist/public/icons/ConsultIcon.svg +1 -1
  25. package/dist/public/icons/Demo.svg +1 -1
  26. package/dist/public/icons/ErrorTemplate.svg +1 -1
  27. package/dist/public/icons/Fail.svg +1 -1
  28. package/dist/public/icons/Flag.svg +1 -1
  29. package/dist/public/icons/GiteeIcon.svg +1 -1
  30. package/dist/public/icons/IntelligenceGradient.svg +1 -1
  31. package/dist/public/icons/Issue_Approval.svg +1 -1
  32. package/dist/public/icons/Issue_Bug.svg +1 -1
  33. package/dist/public/icons/Issue_Demand.svg +1 -1
  34. package/dist/public/icons/Issue_Doc.svg +1 -1
  35. package/dist/public/icons/Issue_Idea.svg +1 -1
  36. package/dist/public/icons/Issue_List.svg +1 -1
  37. package/dist/public/icons/Issue_Plan.svg +1 -1
  38. package/dist/public/icons/Issue_Product.svg +1 -1
  39. package/dist/public/icons/Issue_Risk.svg +1 -1
  40. package/dist/public/icons/Issue_Story.svg +1 -1
  41. package/dist/public/icons/Issue_Subtask.svg +1 -1
  42. package/dist/public/icons/Issue_Task.svg +1 -1
  43. package/dist/public/icons/Issue_Test.svg +1 -1
  44. package/dist/public/icons/Issue_TestExcution.svg +1 -1
  45. package/dist/public/icons/Issue_TestPlan.svg +1 -1
  46. package/dist/public/icons/Issue_Time.svg +1 -1
  47. package/dist/public/icons/Issue_develop.svg +1 -1
  48. package/dist/public/icons/KanbanCover.svg +7 -7
  49. package/dist/public/icons/ListCover.svg +117 -117
  50. package/dist/public/icons/ManHour.svg +1 -1
  51. package/dist/public/icons/MobileIcon.svg +1 -1
  52. package/dist/public/icons/NoItemType.svg +10 -10
  53. package/dist/public/icons/ProductIcon.svg +1 -1
  54. package/dist/public/icons/RedFlagIcon.svg +1 -1
  55. package/dist/public/icons/Safe.svg +1 -1
  56. package/dist/public/icons/StarIcon.svg +60 -60
  57. package/dist/public/icons/StructureCover.svg +1 -1
  58. package/dist/public/icons/Success.svg +1 -1
  59. package/dist/public/icons/TeamIcon.svg +1 -1
  60. package/dist/public/icons/WebIcon.svg +1 -1
  61. package/dist/public/icons/iconfont.svg +467 -467
  62. package/dist/public/icons/iconfont_single_color.css +912 -912
  63. package/dist/public/mockServiceWorker.js +284 -284
  64. package/dist/style/global.js +7 -7
  65. 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-alpha.3",
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
+ }