dirk-cfx-react 1.1.84 → 1.1.85
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/components/index.cjs +10 -1
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +10 -1
- package/dist/components/index.js.map +1 -1
- package/dist/index.cjs +10 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +10 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7053,9 +7053,16 @@ function DiscordRoleSelect(props) {
|
|
|
7053
7053
|
{
|
|
7054
7054
|
size: "xs",
|
|
7055
7055
|
variant: "subtle",
|
|
7056
|
-
|
|
7056
|
+
onMouseDown: (e) => {
|
|
7057
|
+
e.stopPropagation();
|
|
7058
|
+
},
|
|
7059
|
+
onClick: (e) => {
|
|
7060
|
+
e.stopPropagation();
|
|
7061
|
+
refresh();
|
|
7062
|
+
},
|
|
7057
7063
|
title: t("Refresh", "Refresh"),
|
|
7058
7064
|
loading,
|
|
7065
|
+
"aria-label": t("Refresh", "Refresh"),
|
|
7059
7066
|
children: /* @__PURE__ */ jsx(RefreshCw, { size: "1.2vh" })
|
|
7060
7067
|
}
|
|
7061
7068
|
);
|
|
@@ -7074,6 +7081,7 @@ function DiscordRoleSelect(props) {
|
|
|
7074
7081
|
clearable: true,
|
|
7075
7082
|
disabled: disabled || loading && !roles,
|
|
7076
7083
|
rightSection: refreshButton,
|
|
7084
|
+
rightSectionPointerEvents: "all",
|
|
7077
7085
|
style,
|
|
7078
7086
|
styles,
|
|
7079
7087
|
nothingFoundMessage: errorCode ? `${t("Error", "Error")} (${errorCode})` : t("NoRoles", "No roles found")
|
|
@@ -7094,6 +7102,7 @@ function DiscordRoleSelect(props) {
|
|
|
7094
7102
|
clearable: true,
|
|
7095
7103
|
disabled: disabled || loading && !roles,
|
|
7096
7104
|
rightSection: refreshButton,
|
|
7105
|
+
rightSectionPointerEvents: "all",
|
|
7097
7106
|
style,
|
|
7098
7107
|
styles,
|
|
7099
7108
|
nothingFoundMessage: errorCode ? `${t("Error", "Error")} (${errorCode})` : t("NoRoles", "No roles found")
|