gantt-task-react-powern 0.4.7 → 0.4.8
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 +21 -9
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +21 -9
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -285,9 +285,10 @@ var TaskListHeaderDefault = function TaskListHeaderDefault(_ref) {
|
|
|
285
285
|
}, React.createElement("div", {
|
|
286
286
|
className: styles.ganttTable_HeaderItem,
|
|
287
287
|
style: {
|
|
288
|
-
minWidth: rowWidth
|
|
288
|
+
minWidth: parseInt(rowWidth) / 2,
|
|
289
|
+
maxWidth: parseInt(rowWidth) / 2
|
|
289
290
|
}
|
|
290
|
-
}, "\
|
|
291
|
+
}, "\xA0WBSGetitemgyrg"), React.createElement("div", {
|
|
291
292
|
className: styles.ganttTable_HeaderSeparator,
|
|
292
293
|
style: {
|
|
293
294
|
height: headerHeight * 0.5,
|
|
@@ -296,7 +297,8 @@ var TaskListHeaderDefault = function TaskListHeaderDefault(_ref) {
|
|
|
296
297
|
}), React.createElement("div", {
|
|
297
298
|
className: styles.ganttTable_HeaderItem,
|
|
298
299
|
style: {
|
|
299
|
-
minWidth: rowWidth
|
|
300
|
+
minWidth: parseInt(rowWidth) * 1.5,
|
|
301
|
+
maxWidth: parseInt(rowWidth) * 1.5
|
|
300
302
|
}
|
|
301
303
|
}, "\xA0Task"), React.createElement("div", {
|
|
302
304
|
className: styles.ganttTable_HeaderSeparator,
|
|
@@ -386,12 +388,16 @@ var TaskListTableDefault = function TaskListTableDefault(_ref) {
|
|
|
386
388
|
}, React.createElement("div", {
|
|
387
389
|
className: styles$1.taskListCell,
|
|
388
390
|
style: {
|
|
389
|
-
minWidth: rowWidth,
|
|
390
|
-
maxWidth: rowWidth
|
|
391
|
+
minWidth: parseInt(rowWidth) / 2,
|
|
392
|
+
maxWidth: parseInt(rowWidth) / 2
|
|
391
393
|
},
|
|
392
394
|
title: t.id
|
|
393
395
|
}, React.createElement("div", {
|
|
394
|
-
className: styles$1.taskListNameWrapper
|
|
396
|
+
className: styles$1.taskListNameWrapper,
|
|
397
|
+
style: {
|
|
398
|
+
minWidth: parseInt(rowWidth) / 2,
|
|
399
|
+
maxWidth: parseInt(rowWidth) / 2
|
|
400
|
+
}
|
|
395
401
|
}, React.createElement("div", {
|
|
396
402
|
className: styles$1.taskListExpander,
|
|
397
403
|
onClick: function onClick() {
|
|
@@ -400,10 +406,16 @@ var TaskListTableDefault = function TaskListTableDefault(_ref) {
|
|
|
400
406
|
}, expanderSymbol), React.createElement("div", null, t.id))), React.createElement("div", {
|
|
401
407
|
className: styles$1.taskListCell,
|
|
402
408
|
style: {
|
|
403
|
-
minWidth: rowWidth,
|
|
404
|
-
maxWidth: rowWidth
|
|
409
|
+
minWidth: parseInt(rowWidth) * 1.5,
|
|
410
|
+
maxWidth: parseInt(rowWidth) * 1.5
|
|
411
|
+
}
|
|
412
|
+
}, React.createElement("div", {
|
|
413
|
+
style: {
|
|
414
|
+
minWidth: parseInt(rowWidth) * 1.3,
|
|
415
|
+
maxWidth: parseInt(rowWidth) * 1.3,
|
|
416
|
+
overflow: "hidden"
|
|
405
417
|
}
|
|
406
|
-
}, taskLabelRenderer(t)), React.createElement("div", {
|
|
418
|
+
}, taskLabelRenderer(t))), React.createElement("div", {
|
|
407
419
|
className: styles$1.taskListCell,
|
|
408
420
|
style: {
|
|
409
421
|
minWidth: rowWidth,
|