ywana-core8 0.0.826 → 0.0.827
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 +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +7 -0
- package/dist/index.css.map +1 -1
- package/dist/index.modern.js +2 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +2 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/tree.css +1 -0
- package/src/widgets/kanban/Kanban.css +6 -0
- package/src/widgets/kanban/Kanban.js +3 -2
- package/src/widgets/kanban/Kanban.test.js +4 -3
package/dist/index.cjs
CHANGED
@@ -3156,6 +3156,7 @@ var Kanban = function Kanban(_ref) {
|
|
3156
3156
|
|
3157
3157
|
var KanbanColumn = function KanbanColumn(_ref2) {
|
3158
3158
|
var id = _ref2.id,
|
3159
|
+
actions = _ref2.actions,
|
3159
3160
|
icon = _ref2.icon,
|
3160
3161
|
title = _ref2.title,
|
3161
3162
|
subtitle = _ref2.subtitle,
|
@@ -3199,7 +3200,7 @@ var KanbanColumn = function KanbanColumn(_ref2) {
|
|
3199
3200
|
onIcon: "toggle_on",
|
3200
3201
|
clickable: true,
|
3201
3202
|
action: toggle
|
3202
|
-
})));
|
3203
|
+
}), actions));
|
3203
3204
|
};
|
3204
3205
|
/**
|
3205
3206
|
* Kanban Card
|