@luminati-io/uikit 6.3.50 → 6.3.51
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.js +24 -24
- package/dist/index.js.map +1 -1
- package/dist/umd/uikit.development.js +27 -4
- package/dist/umd/uikit.development.js.map +1 -1
- package/dist/umd/uikit.production.min.js +24 -24
- package/package.json +1 -1
@@ -44753,6 +44753,11 @@ var CustomSelectDropdown = function CustomSelectDropdown(_ref4) {
|
|
44753
44753
|
fontSize: t.font_size.sm
|
44754
44754
|
});
|
44755
44755
|
},
|
44756
|
+
valueContainer: function valueContainer(baseStyles) {
|
44757
|
+
return _objectSpread(_objectSpread({}, baseStyles), {}, {
|
44758
|
+
padding: '0 4px 0 0'
|
44759
|
+
});
|
44760
|
+
},
|
44756
44761
|
menuPortal: function menuPortal(baseStyles) {
|
44757
44762
|
return _objectSpread(_objectSpread({}, baseStyles), {}, {
|
44758
44763
|
zIndex: _constants__WEBPACK_IMPORTED_MODULE_7__.Z_INDEX.dropdown
|
@@ -44779,6 +44784,12 @@ var YearsDropdown = function YearsDropdown(_ref5) {
|
|
44779
44784
|
})
|
44780
44785
|
}, rest));
|
44781
44786
|
};
|
44787
|
+
var chevrons = {
|
44788
|
+
up: 'ChevronUp',
|
44789
|
+
down: 'ChevronDown',
|
44790
|
+
left: 'ChevronLeft',
|
44791
|
+
right: 'ChevronRight'
|
44792
|
+
};
|
44782
44793
|
var StyledDayPicker = styled_components__WEBPACK_IMPORTED_MODULE_3___default()(react_day_picker__WEBPACK_IMPORTED_MODULE_2__.DayPicker).attrs({
|
44783
44794
|
components: {
|
44784
44795
|
DayButton: function DayButton(_ref6) {
|
@@ -44793,7 +44804,17 @@ var StyledDayPicker = styled_components__WEBPACK_IMPORTED_MODULE_3___default()(r
|
|
44793
44804
|
}));
|
44794
44805
|
},
|
44795
44806
|
Dropdown: CustomSelectDropdown,
|
44796
|
-
YearsDropdown: YearsDropdown
|
44807
|
+
YearsDropdown: YearsDropdown,
|
44808
|
+
Chevron: function Chevron(_ref7) {
|
44809
|
+
var orientation = _ref7.orientation,
|
44810
|
+
disabled = _ref7.disabled;
|
44811
|
+
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1___default().createElement(_icon__WEBPACK_IMPORTED_MODULE_4__.Icon, {
|
44812
|
+
name: chevrons[orientation],
|
44813
|
+
disabled: disabled,
|
44814
|
+
color: "icon",
|
44815
|
+
size: "sm"
|
44816
|
+
});
|
44817
|
+
}
|
44797
44818
|
},
|
44798
44819
|
fixedWeeks: true
|
44799
44820
|
}).withConfig({
|
@@ -56291,13 +56312,15 @@ var RowHoverActions = /*#__PURE__*/(0,react__WEBPACK_IMPORTED_MODULE_0__.forward
|
|
56291
56312
|
}, wrapperProps, {
|
56292
56313
|
$direction: hoverActionsDirection,
|
56293
56314
|
$visible: visible
|
56294
|
-
}), hoverActions === null || hoverActions === void 0 ? void 0 : hoverActions.map(function (p) {
|
56315
|
+
}), hoverActions === null || hoverActions === void 0 ? void 0 : hoverActions.map(function (p, i) {
|
56295
56316
|
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default().createElement("li", {
|
56296
|
-
key: p.icon
|
56317
|
+
key: p.icon + '_' + (p.tooltip || '') + i
|
56297
56318
|
}, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_icon_button__WEBPACK_IMPORTED_MODULE_2__.IconButton, _extends({}, p, {
|
56298
56319
|
size: "xs"
|
56299
56320
|
})));
|
56300
|
-
}), draggableRows && /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default().createElement("li",
|
56321
|
+
}), draggableRows && /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default().createElement("li", {
|
56322
|
+
key: "_DragAndDrop"
|
56323
|
+
}, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0___default().createElement(_icon_button__WEBPACK_IMPORTED_MODULE_2__.IconButton, _extends({
|
56301
56324
|
disabled: !(draggable !== null && draggable !== void 0 ? draggable : true),
|
56302
56325
|
size: "xs",
|
56303
56326
|
icon: "DragAndDrop"
|