ui-kit-ck-consultant 0.6.67 → 0.6.69
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/index.css +8 -0
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2001,6 +2001,14 @@
|
|
|
2001
2001
|
padding-right: 10px;
|
|
2002
2002
|
}
|
|
2003
2003
|
|
|
2004
|
+
/* Optional custom actions rendered on the tabs line (between the tabs and
|
|
2005
|
+
the "+" add button), vertically centered with the tabs. */
|
|
2006
|
+
._2D1bS {
|
|
2007
|
+
display: flex;
|
|
2008
|
+
align-items: center;
|
|
2009
|
+
flex-shrink: 0;
|
|
2010
|
+
}
|
|
2011
|
+
|
|
2004
2012
|
._2cxzo {
|
|
2005
2013
|
display: flex;
|
|
2006
2014
|
width: 100%;
|
package/dist/index.js
CHANGED
|
@@ -1582,7 +1582,7 @@ var TabsCustomArrowMenu = /*#__PURE__*/function (_React$Component) {
|
|
|
1582
1582
|
return TabsCustomArrowMenu;
|
|
1583
1583
|
}(React__default.Component);
|
|
1584
1584
|
|
|
1585
|
-
var style$i = {"tabs_edit":"_23a7-","tabs_edit_header":"_3zdac","tabs_edit_body":"_2cxzo","noCard":"_2WKxa","tabs_edit_menu":"_MFel7","active":"_32WLP","disabled":"_Eq4pW","tabs_edit_item":"_1lUyF"};
|
|
1585
|
+
var style$i = {"tabs_edit":"_23a7-","tabs_edit_header":"_3zdac","tabs_edit_header_actions":"_2D1bS","tabs_edit_body":"_2cxzo","noCard":"_2WKxa","tabs_edit_menu":"_MFel7","active":"_32WLP","disabled":"_Eq4pW","tabs_edit_item":"_1lUyF"};
|
|
1586
1586
|
|
|
1587
1587
|
var TabsEdit = /*#__PURE__*/function (_React$Component) {
|
|
1588
1588
|
function TabsEdit() {
|
|
@@ -1608,7 +1608,9 @@ var TabsEditHeader = /*#__PURE__*/function (_React$Component) {
|
|
|
1608
1608
|
var _this = this;
|
|
1609
1609
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
1610
1610
|
className: classNames$1(style$i.tabs_edit_header, this.props.className)
|
|
1611
|
-
}, /*#__PURE__*/React__default.createElement("div", null, this.props.children),
|
|
1611
|
+
}, /*#__PURE__*/React__default.createElement("div", null, this.props.children), this.props.actions ? /*#__PURE__*/React__default.createElement("div", {
|
|
1612
|
+
className: style$i.tabs_edit_header_actions
|
|
1613
|
+
}, this.props.actions) : null, /*#__PURE__*/React__default.createElement("div", null, /*#__PURE__*/React__default.createElement("div", {
|
|
1612
1614
|
className: "cursor-pointer",
|
|
1613
1615
|
style: {
|
|
1614
1616
|
backgroundColor: 'var(--primary-color)',
|