ywana-core8 0.0.565 → 0.0.566
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.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +3 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/widgets/kanban/Kanban.js +2 -2
package/dist/index.modern.js
CHANGED
@@ -2565,10 +2565,11 @@ var KanbanColumn = function KanbanColumn(_ref2) {
|
|
2565
2565
|
*/
|
2566
2566
|
|
2567
2567
|
var KanbanCard = function KanbanCard(_ref3) {
|
2568
|
-
var
|
2568
|
+
var className = _ref3.className,
|
2569
|
+
color = _ref3.color,
|
2569
2570
|
children = _ref3.children;
|
2570
2571
|
return /*#__PURE__*/React.createElement("div", {
|
2571
|
-
className: "kanban-card " + color
|
2572
|
+
className: "kanban-card " + className + " " + color
|
2572
2573
|
}, children);
|
2573
2574
|
};
|
2574
2575
|
|