tenjin-ui-kit 0.2.131 → 0.2.132
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.
|
@@ -27,7 +27,8 @@ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
|
27
27
|
var BrowsingTestCaseLayout = function BrowsingTestCaseLayout(_ref) {
|
|
28
28
|
var collapse = _ref.collapse,
|
|
29
29
|
hasExtraContent = _ref.hasExtraContent,
|
|
30
|
-
children = _ref.children
|
|
30
|
+
children = _ref.children,
|
|
31
|
+
leftHandle = _ref.leftHandle;
|
|
31
32
|
// return <div className="browsing-test-case-layout">{children}</div>;
|
|
32
33
|
// console.log("Browser", children);
|
|
33
34
|
var _useState = (0, _react.useState)(false),
|
|
@@ -157,10 +158,10 @@ var BrowsingTestCaseLayout = function BrowsingTestCaseLayout(_ref) {
|
|
|
157
158
|
width: "20px",
|
|
158
159
|
height: "20px"
|
|
159
160
|
}
|
|
160
|
-
})
|
|
161
|
-
onClick
|
|
162
|
-
|
|
163
|
-
|
|
161
|
+
})
|
|
162
|
+
// onClick={() => setExpand(!expand)}
|
|
163
|
+
,
|
|
164
|
+
onClick: leftHandle
|
|
164
165
|
})), /*#__PURE__*/_react.default.createElement("div", {
|
|
165
166
|
class: "handler",
|
|
166
167
|
onMouseDown: handleMouseDown
|
package/dist/package.json
CHANGED