gantt-task-react-powern 0.4.11 → 0.4.13
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.js +6 -4
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +6 -4
- package/dist/index.modern.js.map +1 -1
- package/dist/types/public-types.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -377,7 +377,7 @@ var TaskListTableDefault = function TaskListTableDefault(_ref) {
|
|
|
377
377
|
if (t.hideChildren === false) {
|
|
378
378
|
expanderSymbol = "▼";
|
|
379
379
|
} else if (t.hideChildren === true) {
|
|
380
|
-
expanderSymbol = "
|
|
380
|
+
expanderSymbol = "►";
|
|
381
381
|
}
|
|
382
382
|
|
|
383
383
|
return React__default.createElement("div", {
|
|
@@ -389,12 +389,14 @@ var TaskListTableDefault = function TaskListTableDefault(_ref) {
|
|
|
389
389
|
}, React__default.createElement("div", {
|
|
390
390
|
className: styles$1.taskListCell,
|
|
391
391
|
style: {
|
|
392
|
-
minWidth: parseInt(rowWidth) / 2
|
|
393
|
-
maxWidth: parseInt(rowWidth) / 2
|
|
392
|
+
minWidth: parseInt(rowWidth) / 2
|
|
394
393
|
},
|
|
395
394
|
title: t.id
|
|
396
395
|
}, React__default.createElement("div", {
|
|
397
|
-
className: styles$1.taskListNameWrapper
|
|
396
|
+
className: styles$1.taskListNameWrapper,
|
|
397
|
+
style: {
|
|
398
|
+
paddingLeft: t.depth * 4 + "px"
|
|
399
|
+
}
|
|
398
400
|
}, React__default.createElement("div", {
|
|
399
401
|
className: styles$1.taskListExpander,
|
|
400
402
|
onClick: function onClick() {
|