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.umd.js
CHANGED
@@ -3149,6 +3149,7 @@
|
|
3149
3149
|
|
3150
3150
|
var KanbanColumn = function KanbanColumn(_ref2) {
|
3151
3151
|
var id = _ref2.id,
|
3152
|
+
actions = _ref2.actions,
|
3152
3153
|
icon = _ref2.icon,
|
3153
3154
|
title = _ref2.title,
|
3154
3155
|
subtitle = _ref2.subtitle,
|
@@ -3192,7 +3193,7 @@
|
|
3192
3193
|
onIcon: "toggle_on",
|
3193
3194
|
clickable: true,
|
3194
3195
|
action: toggle
|
3195
|
-
})));
|
3196
|
+
}), actions));
|
3196
3197
|
};
|
3197
3198
|
/**
|
3198
3199
|
* Kanban Card
|