gantt-task-react-powern 0.4.40 → 0.4.41
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.css +5 -0
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +5 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -327,7 +327,7 @@ var TaskListHeaderDefault = function TaskListHeaderDefault(_ref) {
|
|
|
327
327
|
}, "Finish")));
|
|
328
328
|
};
|
|
329
329
|
|
|
330
|
-
var styles$1 = {"taskListWrapper":"_3ZbQT","taskListTableRow":"_34SS0","taskListCell":"_3lLk3","taskListNameWrapper":"_nI1Xw","taskListExpander":"_2QjE6","taskListEmptyExpander":"_2TfEi","taskListText":"_2ZvXU"};
|
|
330
|
+
var styles$1 = {"taskListWrapper":"_3ZbQT","taskListTableRow":"_34SS0","taskListCell":"_3lLk3","taskListNameWrapper":"_nI1Xw","taskListExpander":"_2QjE6","taskListExpanderPlaceholder":"_1fnLB","taskListEmptyExpander":"_2TfEi","taskListText":"_2ZvXU"};
|
|
331
331
|
|
|
332
332
|
var localeDateStringCache = {};
|
|
333
333
|
|
|
@@ -400,12 +400,14 @@ var TaskListTableDefault = function TaskListTableDefault(_ref) {
|
|
|
400
400
|
style: {
|
|
401
401
|
paddingLeft: t.depth * 4 + "px"
|
|
402
402
|
}
|
|
403
|
-
}, t.childrenCount && t.childrenCount > 0
|
|
403
|
+
}, t.childrenCount && t.childrenCount > 0 ? React.createElement("div", {
|
|
404
404
|
className: styles$1.taskListExpander,
|
|
405
405
|
onClick: function onClick() {
|
|
406
406
|
return onExpanderClick(t);
|
|
407
407
|
}
|
|
408
|
-
}, expanderSymbol)
|
|
408
|
+
}, expanderSymbol) : React.createElement("div", {
|
|
409
|
+
className: styles$1.taskListExpanderPlaceholder
|
|
410
|
+
}), React.createElement("div", {
|
|
409
411
|
className: styles$1.taskListText
|
|
410
412
|
}, t.id))), React.createElement("div", {
|
|
411
413
|
className: styles$1.taskListCell,
|