@zgfe/business-lib 1.1.19 → 1.1.21-alpha.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/es/assets/iconfont/demo_index.html +3 -3
- package/es/assets/iconfont/iconfont.css +3 -3
- package/es/assets/iconfont/iconfont.ttf +0 -0
- package/es/assets/iconfont/iconfont.woff +0 -0
- package/es/assets/iconfont/iconfont.woff2 +0 -0
- package/es/assets/styles/resetAntd.less +0 -3
- package/es/chart/index.js +1 -1
- package/es/select/index.js +2 -0
- package/package.json +2 -2
|
@@ -594,9 +594,9 @@
|
|
|
594
594
|
<pre><code class="language-css"
|
|
595
595
|
>@font-face {
|
|
596
596
|
font-family: 'bsicon';
|
|
597
|
-
src: url('iconfont.woff2?t=
|
|
598
|
-
url('iconfont.woff?t=
|
|
599
|
-
url('iconfont.ttf?t=
|
|
597
|
+
src: url('iconfont.woff2?t=1675760321752') format('woff2'),
|
|
598
|
+
url('iconfont.woff?t=1675760321752') format('woff'),
|
|
599
|
+
url('iconfont.ttf?t=1675760321752') format('truetype');
|
|
600
600
|
}
|
|
601
601
|
</code></pre>
|
|
602
602
|
<h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: "bsicon"; /* Project id 2545884 */
|
|
3
|
-
src: url('iconfont.woff2?t=
|
|
4
|
-
url('iconfont.woff?t=
|
|
5
|
-
url('iconfont.ttf?t=
|
|
3
|
+
src: url('iconfont.woff2?t=1675760321752') format('woff2'),
|
|
4
|
+
url('iconfont.woff?t=1675760321752') format('woff'),
|
|
5
|
+
url('iconfont.ttf?t=1675760321752') format('truetype');
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.bsicon {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/es/chart/index.js
CHANGED
|
@@ -86,7 +86,7 @@ var BizChart = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
86
86
|
setChartOption(function () {
|
|
87
87
|
return _objectSpread({}, eOption);
|
|
88
88
|
});
|
|
89
|
-
}, [data, showAll, showList, reverseXAxis]);
|
|
89
|
+
}, [data, showAll, showList, reverseXAxis, option]);
|
|
90
90
|
useImperativeHandle(ref, function () {
|
|
91
91
|
return {
|
|
92
92
|
instance: instance
|
package/es/select/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zgfe/business-lib",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.21-alpha.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "dumi dev",
|
|
6
6
|
"docs:build": "dumi build",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"react": "^16.12.0 || ^17.0.0",
|
|
61
61
|
"yorkie": "^2.0.0"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "a2d016a5e8ec1752aafbb1a721e802530c1e7fc0"
|
|
64
64
|
}
|