@pisell/materials 1.0.274 → 1.0.276
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/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/meta.js +1 -1
- package/build/lowcode/render/default/view.js +1 -1
- package/build/lowcode/view.js +1 -1
- package/es/components/filter/components/FilterButton/index.js +7 -2
- package/lib/components/filter/components/FilterButton/index.js +3 -1
- package/package.json +3 -3
|
@@ -39,10 +39,15 @@ var Filter = function Filter(_ref) {
|
|
|
39
39
|
ref: ref
|
|
40
40
|
}, /*#__PURE__*/React.createElement(Popover, {
|
|
41
41
|
content: content,
|
|
42
|
-
arrow: false
|
|
42
|
+
arrow: false
|
|
43
|
+
// 渲染到当前元素上时页面会闪烁滚动条
|
|
44
|
+
// 渲染到body时内部form等无法继承
|
|
45
|
+
,
|
|
43
46
|
getPopupContainer: function getPopupContainer() {
|
|
44
47
|
return ref.current;
|
|
45
|
-
}
|
|
48
|
+
},
|
|
49
|
+
mouseEnterDelay: 0,
|
|
50
|
+
transitionName: "test"
|
|
46
51
|
}, /*#__PURE__*/React.createElement(Button, {
|
|
47
52
|
icon: /*#__PURE__*/React.createElement(FilterLines, null),
|
|
48
53
|
size: "large"
|
|
@@ -72,7 +72,9 @@ var Filter = ({
|
|
|
72
72
|
{
|
|
73
73
|
content,
|
|
74
74
|
arrow: false,
|
|
75
|
-
getPopupContainer: () => ref.current
|
|
75
|
+
getPopupContainer: () => ref.current,
|
|
76
|
+
mouseEnterDelay: 0,
|
|
77
|
+
transitionName: "test"
|
|
76
78
|
},
|
|
77
79
|
/* @__PURE__ */ import_react.default.createElement(import_antd.Button, { icon: /* @__PURE__ */ import_react.default.createElement(import_FilterLines.default, null), size: "large" }, isMobileBool ? null : (0, import_locales.getText)("table-action-filter-button"))
|
|
78
80
|
));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pisell/materials",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.276",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"module": "./es/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"react-window": "^1.8.10",
|
|
63
63
|
"react-virtualized-auto-sizer": "^1.0.20",
|
|
64
64
|
"crypto-js": "^4.2.0",
|
|
65
|
-
"@pisell/
|
|
65
|
+
"@pisell/utils": "1.0.25",
|
|
66
66
|
"@pisell/icon": "0.0.8",
|
|
67
|
-
"@pisell/
|
|
67
|
+
"@pisell/date-picker": "1.0.72"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"react": "^18.0.0",
|