gantt-task-react-v 1.1.17 → 1.1.18
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.
|
@@ -18001,9 +18001,9 @@ const useContextMenu = (wrapperRef, scrollToTask) => {
|
|
|
18001
18001
|
handleOpenContextMenu
|
|
18002
18002
|
};
|
|
18003
18003
|
};
|
|
18004
|
-
const menuOption = "
|
|
18005
|
-
const icon = "
|
|
18006
|
-
const label = "
|
|
18004
|
+
const menuOption = "_menuOption_1c3e3_3";
|
|
18005
|
+
const icon = "_icon_1c3e3_81";
|
|
18006
|
+
const label = "_label_1c3e3_89";
|
|
18007
18007
|
const styles$1 = {
|
|
18008
18008
|
menuOption,
|
|
18009
18009
|
icon,
|
|
@@ -18093,7 +18093,7 @@ function MenuOption(props) {
|
|
|
18093
18093
|
closeTimeoutRef.current = null;
|
|
18094
18094
|
}, 200);
|
|
18095
18095
|
},
|
|
18096
|
-
style: { position: "relative" },
|
|
18096
|
+
style: { position: "relative", width: "100%" },
|
|
18097
18097
|
children: [
|
|
18098
18098
|
/* @__PURE__ */ jsxs(
|
|
18099
18099
|
"button",
|
|
@@ -18018,9 +18018,9 @@
|
|
|
18018
18018
|
handleOpenContextMenu
|
|
18019
18019
|
};
|
|
18020
18020
|
};
|
|
18021
|
-
const menuOption = "
|
|
18022
|
-
const icon = "
|
|
18023
|
-
const label = "
|
|
18021
|
+
const menuOption = "_menuOption_1c3e3_3";
|
|
18022
|
+
const icon = "_icon_1c3e3_81";
|
|
18023
|
+
const label = "_label_1c3e3_89";
|
|
18024
18024
|
const styles$1 = {
|
|
18025
18025
|
menuOption,
|
|
18026
18026
|
icon,
|
|
@@ -18110,7 +18110,7 @@
|
|
|
18110
18110
|
closeTimeoutRef.current = null;
|
|
18111
18111
|
}, 200);
|
|
18112
18112
|
},
|
|
18113
|
-
style: { position: "relative" },
|
|
18113
|
+
style: { position: "relative", width: "100%" },
|
|
18114
18114
|
children: [
|
|
18115
18115
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
18116
18116
|
"button",
|
package/dist/style.css
CHANGED
|
@@ -636,7 +636,7 @@
|
|
|
636
636
|
cursor: grabbing;
|
|
637
637
|
}
|
|
638
638
|
/*noinspection CssUnresolvedCustomProperty*/
|
|
639
|
-
.
|
|
639
|
+
._menuOption_1c3e3_3 {
|
|
640
640
|
display: flex;
|
|
641
641
|
align-items: center;
|
|
642
642
|
text-align: left;
|
|
@@ -644,6 +644,7 @@
|
|
|
644
644
|
background-color: #fff;
|
|
645
645
|
cursor: pointer;
|
|
646
646
|
font-size: 16px;
|
|
647
|
+
width: 100%;
|
|
647
648
|
min-width: 120px;
|
|
648
649
|
border: none;
|
|
649
650
|
padding-block: unset;
|
|
@@ -653,32 +654,32 @@
|
|
|
653
654
|
fill: var(--gantt-table-action-color);
|
|
654
655
|
}
|
|
655
656
|
|
|
656
|
-
.
|
|
657
|
+
._menuOption_1c3e3_3 svg {
|
|
657
658
|
width: 20px;
|
|
658
659
|
height: 20px;
|
|
659
660
|
}
|
|
660
661
|
|
|
661
|
-
.
|
|
662
|
+
._menuOption_1c3e3_3:hover {
|
|
662
663
|
background-color: #eeeeee;
|
|
663
664
|
}
|
|
664
665
|
|
|
665
|
-
.
|
|
666
|
-
.
|
|
666
|
+
._menuOption_1c3e3_3[aria-disabled="true"],
|
|
667
|
+
._menuOption_1c3e3_3:disabled {
|
|
667
668
|
opacity: 0.6;
|
|
668
669
|
cursor: default;
|
|
669
670
|
background-color: transparent;
|
|
670
671
|
}
|
|
671
672
|
|
|
672
|
-
.
|
|
673
|
-
.
|
|
673
|
+
._menuOption_1c3e3_3[aria-disabled="true"]:hover,
|
|
674
|
+
._menuOption_1c3e3_3:disabled:hover {
|
|
674
675
|
background-color: transparent;
|
|
675
676
|
}
|
|
676
677
|
|
|
677
|
-
.
|
|
678
|
+
._icon_1c3e3_81 {
|
|
678
679
|
font-size: inherit;
|
|
679
680
|
}
|
|
680
681
|
|
|
681
|
-
.
|
|
682
|
+
._label_1c3e3_89 {
|
|
682
683
|
flex: 1;
|
|
683
684
|
}
|
|
684
685
|
/* HTML: <div class="loader"></div> */
|
package/package.json
CHANGED