react-big-schedule 5.2.0 → 5.3.0-beta.0
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/components/AgendaEventItem.js +1 -1
- package/dist/components/AgendaResourceEvents.js +1 -1
- package/dist/components/EventItem.js +0 -1
- package/dist/components/EventItemPopover.js +1 -1
- package/dist/components/ResourceView.js +3 -4
- package/dist/css/style.css +1 -7
- package/package.json +1 -1
|
@@ -58,7 +58,7 @@ function AgendaEventItem(props) {
|
|
|
58
58
|
};
|
|
59
59
|
var eventLink = /*#__PURE__*/(0, _jsxRuntime.jsx)("button", {
|
|
60
60
|
type: "button",
|
|
61
|
-
className: "day-event txt-btn-dis",
|
|
61
|
+
className: "day-event rbs-txt-btn-dis",
|
|
62
62
|
onClick: handleClick,
|
|
63
63
|
children: eventItemTemplate
|
|
64
64
|
});
|
|
@@ -49,7 +49,7 @@ function AgendaResourceEvents(props) {
|
|
|
49
49
|
return [];
|
|
50
50
|
});
|
|
51
51
|
var slotItemContent = slotClickedFunc ? /*#__PURE__*/(0, _jsxRuntime.jsx)("button", {
|
|
52
|
-
className: "txt-btn-dis",
|
|
52
|
+
className: "rbs-txt-btn-dis",
|
|
53
53
|
type: "button",
|
|
54
54
|
onClick: function onClick() {
|
|
55
55
|
return slotClickedFunc(schedulerData, resourceEvents);
|
|
@@ -678,7 +678,6 @@ var EventItem = /*#__PURE__*/function (_Component) {
|
|
|
678
678
|
placement: isPopoverPlacementMousePosition ? mousePositionPlacement : popoverPlacement,
|
|
679
679
|
content: content,
|
|
680
680
|
trigger: config.eventItemPopoverTrigger,
|
|
681
|
-
overlayClassName: "scheduler-event-item-popover",
|
|
682
681
|
children: aItem
|
|
683
682
|
});
|
|
684
683
|
}
|
|
@@ -34,7 +34,7 @@ function EventItemPopover(_ref) {
|
|
|
34
34
|
var renderViewEvent = function renderViewEvent(text, clickHandler) {
|
|
35
35
|
var marginLeft = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
|
|
36
36
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("button", {
|
|
37
|
-
className: "header2-text txt-btn-dis",
|
|
37
|
+
className: "header2-text rbs-txt-btn-dis",
|
|
38
38
|
type: "button",
|
|
39
39
|
style: {
|
|
40
40
|
color: '#108EE9',
|
|
@@ -36,13 +36,12 @@ function ResourceView(_ref) {
|
|
|
36
36
|
className: "expander-space"
|
|
37
37
|
}, "es".concat(item.indent));
|
|
38
38
|
var iconProps = {
|
|
39
|
-
key: "es".concat(item.indent),
|
|
40
39
|
onClick: function onClick() {
|
|
41
40
|
return handleToggleExpand(item);
|
|
42
41
|
}
|
|
43
42
|
};
|
|
44
43
|
if (item.hasChildren) {
|
|
45
|
-
indent = item.expanded ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.MinusSquareOutlined, _objectSpread({}, iconProps)) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.PlusSquareOutlined, _objectSpread({}, iconProps));
|
|
44
|
+
indent = item.expanded ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.MinusSquareOutlined, _objectSpread({}, iconProps), "es".concat(item.indent)) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.PlusSquareOutlined, _objectSpread({}, iconProps), "es".concat(item.indent));
|
|
46
45
|
}
|
|
47
46
|
indents.push(indent);
|
|
48
47
|
var slotCell = slotClickedFunc ? /*#__PURE__*/(0, _jsxRuntime.jsxs)("span", {
|
|
@@ -52,7 +51,7 @@ function ResourceView(_ref) {
|
|
|
52
51
|
style: {
|
|
53
52
|
cursor: 'pointer'
|
|
54
53
|
},
|
|
55
|
-
className: "slot-text txt-btn-dis",
|
|
54
|
+
className: "slot-text rbs-txt-btn-dis",
|
|
56
55
|
onClick: function onClick() {
|
|
57
56
|
return slotClickedFunc(schedulerData, item);
|
|
58
57
|
},
|
|
@@ -62,7 +61,7 @@ function ResourceView(_ref) {
|
|
|
62
61
|
className: "slot-cell",
|
|
63
62
|
children: [indents, /*#__PURE__*/(0, _jsxRuntime.jsx)("button", {
|
|
64
63
|
type: "button",
|
|
65
|
-
className: "slot-text txt-btn-dis",
|
|
64
|
+
className: "slot-text rbs-txt-btn-dis",
|
|
66
65
|
style: {
|
|
67
66
|
cursor: slotClickedFunc === undefined ? undefined : 'pointer'
|
|
68
67
|
},
|
package/dist/css/style.css
CHANGED
|
@@ -209,12 +209,6 @@
|
|
|
209
209
|
display: inline-block;
|
|
210
210
|
}
|
|
211
211
|
|
|
212
|
-
/* ANT Design Components */
|
|
213
|
-
.rbs .ant-radio-button-wrapper-checked {
|
|
214
|
-
background-color: #108ee9;
|
|
215
|
-
color: #ffffff;
|
|
216
|
-
}
|
|
217
|
-
|
|
218
212
|
.rbs .icon-nav:hover {
|
|
219
213
|
color: #1e90ff !important;
|
|
220
214
|
box-shadow: 0 0 0 !important;
|
|
@@ -256,7 +250,7 @@
|
|
|
256
250
|
}
|
|
257
251
|
|
|
258
252
|
/* Buttons */
|
|
259
|
-
.rbs
|
|
253
|
+
.rbs-txt-btn-dis {
|
|
260
254
|
border: none;
|
|
261
255
|
background-color: transparent;
|
|
262
256
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-big-schedule",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.0-beta.0",
|
|
4
4
|
"description": "React Big Schedule is a powerful and intuitive scheduler and resource planning solution built with React. Seamlessly integrate this modern browser-compatible component into your applications to effectively manage time, appointments, and resources. With drag-and-drop functionality, interactive UI, and granular views, react-big-schedule empowers users to effortlessly schedule and allocate resources with precision. Enhance productivity and streamline your workflow with this React-based solution, designed to optimize time management and simplify calendar-based operations. Perfect for applications requiring advanced scheduling capabilities, react-big-schedule offers a seamless and intuitive experience for managing appointments, resource allocation, and time slots. Unlock the potential of your React projects with react-big-schedule and revolutionize the way you handle scheduling and resource planning. It is the updated version of react-big-scheduler",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react-big-schedule",
|