bhd-components 0.9.16 → 0.9.17

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.
@@ -30,9 +30,17 @@ const BhdSelect = (props)=>{
30
30
  const renderSuffixIcon = ()=>{
31
31
  switch(arrowType){
32
32
  case "table":
33
- return /*#__PURE__*/ _jsx(CaretDownOutlined, {});
33
+ return /*#__PURE__*/ _jsx(CaretDownOutlined, {
34
+ style: {
35
+ pointerEvents: 'none'
36
+ }
37
+ });
34
38
  default:
35
- return /*#__PURE__*/ _jsx(CustomArrow, {});
39
+ return /*#__PURE__*/ _jsx(CustomArrow, {
40
+ style: {
41
+ pointerEvents: 'none'
42
+ }
43
+ });
36
44
  }
37
45
  };
38
46
  const filterOption = ()=>{
@@ -1,6 +1,5 @@
1
1
  @import "../theme/variable.less";
2
2
  :global {
3
- /* 成功 */
4
3
  :local(.customSuccess) {
5
4
  &.bhd-message-notice {
6
5
  .bhd-message-notice-content {
@@ -27,7 +26,6 @@
27
26
  }
28
27
  }
29
28
  }
30
- /* 警告 */
31
29
 
32
30
  :local(.customWarning) {
33
31
  &.bhd-message-notice {
@@ -56,7 +54,6 @@
56
54
  }
57
55
  }
58
56
 
59
- /* 错误 */
60
57
 
61
58
  :local(.customError) {
62
59
  &.bhd-message-notice {
@@ -33,9 +33,17 @@ var BhdSelect = function(props) {
33
33
  var renderSuffixIcon = function() {
34
34
  switch(arrowType){
35
35
  case "table":
36
- return /*#__PURE__*/ _jsx(CaretDownOutlined, {});
36
+ return /*#__PURE__*/ _jsx(CaretDownOutlined, {
37
+ style: {
38
+ pointerEvents: "none"
39
+ }
40
+ });
37
41
  default:
38
- return /*#__PURE__*/ _jsx(CustomArrow, {});
42
+ return /*#__PURE__*/ _jsx(CustomArrow, {
43
+ style: {
44
+ pointerEvents: "none"
45
+ }
46
+ });
39
47
  }
40
48
  };
41
49
  var filterOption = function() {
@@ -1,6 +1,5 @@
1
1
  @import "../theme/variable.less";
2
2
  :global {
3
- /* 成功 */
4
3
  :local(.customSuccess) {
5
4
  &.bhd-message-notice {
6
5
  .bhd-message-notice-content {
@@ -27,7 +26,6 @@
27
26
  }
28
27
  }
29
28
  }
30
- /* 警告 */
31
29
 
32
30
  :local(.customWarning) {
33
31
  &.bhd-message-notice {
@@ -56,7 +54,6 @@
56
54
  }
57
55
  }
58
56
 
59
- /* 错误 */
60
57
 
61
58
  :local(.customError) {
62
59
  &.bhd-message-notice {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bhd-components",
3
- "version": "0.9.16",
3
+ "version": "0.9.17",
4
4
  "description": "组件功能描述",
5
5
  "config": {
6
6
  "commitizen": {
@@ -42,6 +42,7 @@
42
42
  "scripts": {
43
43
  "start": "ice-pkg start",
44
44
  "build": "ice-pkg build",
45
+ "build:esm": "cross-env NODE_TYPE=esm ice-pkg build",
45
46
  "build:online": "cross-env NODE_TYPE=online ice-pkg build ",
46
47
  "build:online_dev": "cross-env NODE_TYPE=online_dev ice-pkg build ",
47
48
  "prepublishOnly": "npm run build",
@@ -50,7 +51,9 @@
50
51
  "stylelint": "stylelint \"**/*.{css,scss,less}\"",
51
52
  "lint": "npm run eslint && npm run stylelint",
52
53
  "prepare": "husky install",
53
- "commit": "git add . && npx cz"
54
+ "commit": "git add . && npx cz",
55
+ "nodemon": "nodemon --config nodemon.json",
56
+ "proxy":"node lib/proxy/index.js"
54
57
  },
55
58
  "keywords": [
56
59
  "ice",
@@ -65,7 +68,6 @@
65
68
  "@rangermauve/fetch-event-source": "^1.0.3",
66
69
  "@swc/helpers": "^0.5.1",
67
70
  "antd": "5.6.1",
68
- "axios": "^1.6.0",
69
71
  "cross-env": "^7.0.3",
70
72
  "highlight.js": "^11.9.0",
71
73
  "html2canvas": "^1.4.1",
@@ -83,10 +85,14 @@
83
85
  "@iceworks/spec": "^1.0.0",
84
86
  "@types/react": "^18.0.0",
85
87
  "@types/react-dom": "^18.0.0",
88
+ "axios": "^1.6.0",
86
89
  "commitizen": "^4.3.0",
87
90
  "commitlint": "^19.4.0",
91
+ "cors": "^2.8.5",
88
92
  "cz-customizable": "^7.0.0",
89
93
  "eslint": "^7.0.0",
94
+ "express": "^4.21.1",
95
+ "http-proxy-middleware": "^3.0.3",
90
96
  "husky": "^9.0.11",
91
97
  "lint-staged": "^15.2.7",
92
98
  "react": "^18.0.0",