bhd-components 0.5.7 → 0.5.8
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/dist/5764783e.esm.es5.production.js +468 -0
- package/dist/{535fc6c5.esm.es5.development.js → f2b01b9c.esm.es5.development.js} +98068 -25721
- package/dist/index.esm.es5.development.css +8467 -0
- package/dist/index.esm.es5.development.js +5835 -0
- package/dist/index.esm.es5.production.css +1 -0
- package/dist/index.esm.es5.production.js +1 -0
- package/es2017/customerService/contactsList/index.d.ts +3 -2
- package/es2017/customerService/contactsList/index.js +93 -90
- package/es2017/customerService/contactsList/index.module.less +32 -13
- package/es2017/customerService/function.js +18 -13
- package/es2017/customerService/historyFun/index.d.ts +2 -1
- package/es2017/customerService/historyFun/index.js +121 -86
- package/es2017/customerService/historyFun/index.module.less +40 -6
- package/es2017/customerService/index.js +771 -577
- package/es2017/customerService/index.module.less +747 -684
- package/es2017/icons/components/custom-duihao.js +1 -1
- package/esm/customerService/contactsList/index.d.ts +3 -2
- package/esm/customerService/contactsList/index.js +104 -97
- package/esm/customerService/contactsList/index.module.less +32 -13
- package/esm/customerService/function.js +18 -13
- package/esm/customerService/historyFun/index.d.ts +2 -1
- package/esm/customerService/historyFun/index.js +127 -94
- package/esm/customerService/historyFun/index.module.less +40 -6
- package/esm/customerService/index.js +836 -619
- package/esm/customerService/index.module.less +747 -684
- package/esm/icons/components/custom-duihao.js +1 -1
- package/package.json +4 -3
- package/dist/1bddec89.esm.es5.production.js +0 -72
- package/dist/CustomerService.esm.es5.development.css +0 -2827
- package/dist/CustomerService.esm.es5.development.js +0 -3823
- package/dist/CustomerService.esm.es5.production.css +0 -1
- package/dist/CustomerService.esm.es5.production.js +0 -1
|
@@ -9,7 +9,7 @@ var CustomDuihaoSvg = function() {
|
|
|
9
9
|
height: "1em",
|
|
10
10
|
"shape-rendering": "geometricPrecision",
|
|
11
11
|
fill: "currentColor",
|
|
12
|
-
viewBox: "0 0
|
|
12
|
+
viewBox: "0 0 12 7",
|
|
13
13
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14
14
|
children: /*#__PURE__*/ _jsx("path", {
|
|
15
15
|
d: "M11.2242 0.375687C11.4586 0.610002 11.4586 0.989901 11.2242 1.22422L4.82424 7.62422C4.58992 7.85853 4.21003 7.85853 3.97571 7.62422L0.775712 4.42422C0.541397 4.1899 0.541397 3.81 0.775712 3.57569C1.01003 3.34137 1.38993 3.34137 1.62424 3.57569L4.39998 6.35142L10.3757 0.375687C10.61 0.141373 10.9899 0.141373 11.2242 0.375687Z"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bhd-components",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.8",
|
|
4
4
|
"description": "组件功能描述",
|
|
5
5
|
"files": [
|
|
6
6
|
"esm",
|
|
@@ -33,7 +33,8 @@
|
|
|
33
33
|
"scripts": {
|
|
34
34
|
"start": "ice-pkg start",
|
|
35
35
|
"build": "ice-pkg build",
|
|
36
|
-
"build:online":"cross-env NODE_TYPE=online ice-pkg build ",
|
|
36
|
+
"build:online": "cross-env NODE_TYPE=online ice-pkg build ",
|
|
37
|
+
"build:online_dev": "cross-env NODE_TYPE=online_dev ice-pkg build ",
|
|
37
38
|
"prepublishOnly": "npm run build",
|
|
38
39
|
"eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx ./",
|
|
39
40
|
"eslint:fix": "npm run eslint -- --fix",
|
|
@@ -55,7 +56,6 @@
|
|
|
55
56
|
"antd": "5.6.1",
|
|
56
57
|
"axios": "^1.6.0",
|
|
57
58
|
"cross-env": "^7.0.3",
|
|
58
|
-
"dayjs": "^1.11.10",
|
|
59
59
|
"highlight.js": "^11.9.0",
|
|
60
60
|
"less": "^4.1.3",
|
|
61
61
|
"less-loader": "^11.1.0",
|
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
"eslint": "^7.0.0",
|
|
72
72
|
"react": "^18.0.0",
|
|
73
73
|
"react-dom": "^18.0.0",
|
|
74
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
74
75
|
"stylelint": "^13.7.2"
|
|
75
76
|
},
|
|
76
77
|
"peerDependencies": {
|