@ag_meq/rtc
Advanced tools
Comparing version 5.2.8 to 5.2.9
@@ -11,2 +11,3 @@ import * as React from 'react'; | ||
isLeaf?: boolean; | ||
joinNode?: boolean; | ||
key: string | number; | ||
@@ -13,0 +14,0 @@ title?: React.ReactNode; |
@@ -32,2 +32,3 @@ import * as React from 'react'; | ||
isLeaf?: boolean; | ||
joinNode?: boolean; | ||
checkable?: boolean; | ||
@@ -34,0 +35,0 @@ selectable?: boolean; |
@@ -10,3 +10,3 @@ import _extends from "@babel/runtime/helpers/esm/extends"; | ||
import _createSuper from "@babel/runtime/helpers/esm/createSuper"; | ||
var _excluded = ["eventKey", "className", "style", "dragOver", "dragOverGapTop", "dragOverGapBottom", "isLeaf", "isStart", "isEnd", "expanded", "selected", "checked", "halfChecked", "innerJoin", "leftJoin", "rightJoin", "fullJoin", "loading", "domRef", "active", "data", "onMouseMove"]; | ||
var _excluded = ["eventKey", "className", "style", "dragOver", "dragOverGapTop", "dragOverGapBottom", "isLeaf", "isStart", "isEnd", "expanded", "selected", "checked", "halfChecked", "innerJoin", "leftJoin", "rightJoin", "fullJoin", "joinNode", "loading", "domRef", "active", "data", "onMouseMove"]; | ||
import * as React from 'react'; | ||
@@ -318,3 +318,3 @@ import classNames from 'classnames'; // @ts-ignore | ||
var switcherCls = classNames("".concat(prefixCls, "-switcher"), "".concat(prefixCls, "-switcher_").concat(expanded ? ICON_OPEN : ICON_CLOSE)); | ||
var switcherCls = classNames("".concat(prefixCls, "-switcher"), "".concat(prefixCls, "-switcher_").concat(expanded ? ICON_OPEN : ICON_CLOSE), "".concat(prefixCls, "-switcher-").concat(_this.props.joinNode ? 'join' : 'vanilla')); | ||
@@ -402,7 +402,7 @@ var switcherIconDom = _this.renderSwitcherIconDom(false); | ||
var $title = /*#__PURE__*/React.createElement("span", { | ||
className: "".concat(prefixCls, "-title"), | ||
"data-placement": "right", | ||
"data-toggle": "tooltip", | ||
title: titleNode.toString().split('🔗')[1] | ||
}, titleNode.toString().split('🔗')[0], "\xA0\uD83D\uDD17"); | ||
className: "".concat(prefixCls, "-title") | ||
}, titleNode.toString().split('🔗')[0]); | ||
var $subtitle = /*#__PURE__*/React.createElement("span", { | ||
className: "".concat(prefixCls, "-subtitle badge badge-secondary") | ||
}, "\uD83D\uDD17\xA0\xA0\xA0\xA0", titleNode.toString().split('🔗')[1]); | ||
var $agg = /*#__PURE__*/React.createElement("span", { | ||
@@ -416,3 +416,3 @@ className: classNames(!disabled && selected && disableCheckbox && "".concat(prefixCls, "-node-selected"), !disabled && !selected && disableCheckbox && "".concat(prefixCls, "-node-unselected")), | ||
ref: _this.setSelectHandle, | ||
title: typeof title === 'string' ? title : '', | ||
title: titleNode.toString().split('🔗')[1], | ||
className: classNames("".concat(checkedClass), "".concat(wrapClass), "".concat(wrapClass, "-").concat(_this.getNodeState() || 'normal')), | ||
@@ -424,3 +424,3 @@ onMouseEnter: _this.onMouseEnter, | ||
onDoubleClick: _this.onSelectorDoubleClick | ||
}, $icon, $title, _this.renderDropIndicator()); | ||
}, $icon, $title, $subtitle, _this.renderDropIndicator()); | ||
}; | ||
@@ -551,2 +551,3 @@ | ||
fullJoin = _this$props8.fullJoin, | ||
joinNode = _this$props8.joinNode, | ||
loading = _this$props8.loading, | ||
@@ -596,3 +597,3 @@ domRef = _this$props8.domRef, | ||
isEnd: isEnd | ||
}), this.renderDragHandler(), this.renderSwitcher(), this.renderCheckbox(), this.renderSelector(), this.renderJoins()); | ||
}), this.renderDragHandler(), this.renderSwitcher(), this.renderCheckbox(), this.renderSelector(), joinNode ? this.renderJoins() : ''); | ||
} | ||
@@ -599,0 +600,0 @@ }]); |
@@ -11,2 +11,3 @@ import * as React from 'react'; | ||
isLeaf?: boolean; | ||
joinNode?: boolean; | ||
key: string | number; | ||
@@ -13,0 +14,0 @@ title?: React.ReactNode; |
@@ -32,2 +32,3 @@ import * as React from 'react'; | ||
isLeaf?: boolean; | ||
joinNode?: boolean; | ||
checkable?: boolean; | ||
@@ -34,0 +35,0 @@ selectable?: boolean; |
@@ -44,3 +44,3 @@ "use strict"; | ||
var _excluded = ["eventKey", "className", "style", "dragOver", "dragOverGapTop", "dragOverGapBottom", "isLeaf", "isStart", "isEnd", "expanded", "selected", "checked", "halfChecked", "innerJoin", "leftJoin", "rightJoin", "fullJoin", "loading", "domRef", "active", "data", "onMouseMove"]; | ||
var _excluded = ["eventKey", "className", "style", "dragOver", "dragOverGapTop", "dragOverGapBottom", "isLeaf", "isStart", "isEnd", "expanded", "selected", "checked", "halfChecked", "innerJoin", "leftJoin", "rightJoin", "fullJoin", "joinNode", "loading", "domRef", "active", "data", "onMouseMove"]; | ||
var ICON_OPEN = 'open'; | ||
@@ -344,3 +344,3 @@ var ICON_CLOSE = 'close'; | ||
var switcherCls = (0, _classnames.default)("".concat(prefixCls, "-switcher"), "".concat(prefixCls, "-switcher_").concat(expanded ? ICON_OPEN : ICON_CLOSE)); | ||
var switcherCls = (0, _classnames.default)("".concat(prefixCls, "-switcher"), "".concat(prefixCls, "-switcher_").concat(expanded ? ICON_OPEN : ICON_CLOSE), "".concat(prefixCls, "-switcher-").concat(_this.props.joinNode ? 'join' : 'vanilla')); | ||
@@ -428,7 +428,7 @@ var switcherIconDom = _this.renderSwitcherIconDom(false); | ||
var $title = /*#__PURE__*/React.createElement("span", { | ||
className: "".concat(prefixCls, "-title"), | ||
"data-placement": "right", | ||
"data-toggle": "tooltip", | ||
title: titleNode.toString().split('🔗')[1] | ||
}, titleNode.toString().split('🔗')[0], "\xA0\uD83D\uDD17"); | ||
className: "".concat(prefixCls, "-title") | ||
}, titleNode.toString().split('🔗')[0]); | ||
var $subtitle = /*#__PURE__*/React.createElement("span", { | ||
className: "".concat(prefixCls, "-subtitle badge badge-secondary") | ||
}, "\uD83D\uDD17\xA0\xA0\xA0\xA0", titleNode.toString().split('🔗')[1]); | ||
var $agg = /*#__PURE__*/React.createElement("span", { | ||
@@ -442,3 +442,3 @@ className: (0, _classnames.default)(!disabled && selected && disableCheckbox && "".concat(prefixCls, "-node-selected"), !disabled && !selected && disableCheckbox && "".concat(prefixCls, "-node-unselected")), | ||
ref: _this.setSelectHandle, | ||
title: typeof title === 'string' ? title : '', | ||
title: titleNode.toString().split('🔗')[1], | ||
className: (0, _classnames.default)("".concat(checkedClass), "".concat(wrapClass), "".concat(wrapClass, "-").concat(_this.getNodeState() || 'normal')), | ||
@@ -450,3 +450,3 @@ onMouseEnter: _this.onMouseEnter, | ||
onDoubleClick: _this.onSelectorDoubleClick | ||
}, $icon, $title, _this.renderDropIndicator()); | ||
}, $icon, $title, $subtitle, _this.renderDropIndicator()); | ||
}; | ||
@@ -577,2 +577,3 @@ | ||
fullJoin = _this$props8.fullJoin, | ||
joinNode = _this$props8.joinNode, | ||
loading = _this$props8.loading, | ||
@@ -621,3 +622,3 @@ domRef = _this$props8.domRef, | ||
isEnd: isEnd | ||
}), this.renderDragHandler(), this.renderSwitcher(), this.renderCheckbox(), this.renderSelector(), this.renderJoins()); | ||
}), this.renderDragHandler(), this.renderSwitcher(), this.renderCheckbox(), this.renderSelector(), joinNode ? this.renderJoins() : ''); | ||
} | ||
@@ -624,0 +625,0 @@ }]); |
{ | ||
"name": "@ag_meq/rtc", | ||
"version": "5.2.8", | ||
"version": "5.2.9", | ||
"engines": { | ||
@@ -5,0 +5,0 @@ "node": ">=10.x" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
324073
7897