@ixo/editor 6.9.0 → 6.9.1
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.
|
@@ -24911,7 +24911,7 @@ var MemberSearch = ({ members, onAdd, isDisabled }) => {
|
|
|
24911
24911
|
return /* @__PURE__ */ React252.createElement(Stack168, { gap: "xs" }, /* @__PURE__ */ React252.createElement(
|
|
24912
24912
|
TextInput7,
|
|
24913
24913
|
{
|
|
24914
|
-
placeholder: "Search by name or @user:matrix.ixo.world",
|
|
24914
|
+
placeholder: handlers.searchUsers ? "Search by name, or paste a domain DID or ixo1\u2026 address" : "Search by name or @user:matrix.ixo.world",
|
|
24915
24915
|
leftSection: /* @__PURE__ */ React252.createElement(IconSearch8, { size: 16 }),
|
|
24916
24916
|
rightSection: searching ? /* @__PURE__ */ React252.createElement(Loader37, { size: 14 }) : null,
|
|
24917
24917
|
value: query,
|
|
@@ -25937,7 +25937,7 @@ var UserSearch = ({ onPick, isPicked, isDisabled, placeholder }) => {
|
|
|
25937
25937
|
return /* @__PURE__ */ React259.createElement(Stack175, { gap: "xs" }, /* @__PURE__ */ React259.createElement(
|
|
25938
25938
|
TextInput9,
|
|
25939
25939
|
{
|
|
25940
|
-
placeholder: placeholder || "Search by name or @user:matrix.ixo.world",
|
|
25940
|
+
placeholder: placeholder || (handlers.searchUsers ? "Search by name, or paste a domain DID or ixo1\u2026 address" : "Search by name or @user:matrix.ixo.world"),
|
|
25941
25941
|
leftSection: /* @__PURE__ */ React259.createElement(IconSearch9, { size: 16 }),
|
|
25942
25942
|
rightSection: searching ? /* @__PURE__ */ React259.createElement(Loader40, { size: 14 }) : null,
|
|
25943
25943
|
value: query,
|
|
@@ -26832,7 +26832,7 @@ var RecipientInput = ({ value, onChange, isDisabled, placeholder }) => {
|
|
|
26832
26832
|
return /* @__PURE__ */ React268.createElement(Stack183, { gap: "xs" }, /* @__PURE__ */ React268.createElement(
|
|
26833
26833
|
TextInput10,
|
|
26834
26834
|
{
|
|
26835
|
-
placeholder: placeholder || "Search by matrix handle, or paste an ixo1\u2026 address",
|
|
26835
|
+
placeholder: placeholder || (handlers.searchUsers ? "Search by name, or paste an ixo1\u2026 address or domain DID" : "Search by matrix handle, or paste an ixo1\u2026 address"),
|
|
26836
26836
|
leftSection: /* @__PURE__ */ React268.createElement(IconSearch10, { size: 16 }),
|
|
26837
26837
|
rightSection: searching ? /* @__PURE__ */ React268.createElement(Loader44, { size: 14 }) : null,
|
|
26838
26838
|
value: query,
|
|
@@ -30123,7 +30123,7 @@ var ActAsGroupSection = ({ value, onChange, isDisabled, actionLabel }) => {
|
|
|
30123
30123
|
};
|
|
30124
30124
|
}, []);
|
|
30125
30125
|
const available = groups.length > 0 && typeof handlers?.createGroupExecutionProposal === "function";
|
|
30126
|
-
if (!available
|
|
30126
|
+
if (!available) return null;
|
|
30127
30127
|
const update = (patch) => onChange({ ...value, ...patch });
|
|
30128
30128
|
return /* @__PURE__ */ React304.createElement(Stack199, { gap: "sm" }, /* @__PURE__ */ React304.createElement(Stack199, { gap: 4 }, /* @__PURE__ */ React304.createElement(Text187, { size: "sm", fw: 500 }, "Acting as"), /* @__PURE__ */ React304.createElement(
|
|
30129
30129
|
SegmentedControl13,
|
|
@@ -51302,4 +51302,4 @@ export {
|
|
|
51302
51302
|
ixoGraphQLClient,
|
|
51303
51303
|
getEntity
|
|
51304
51304
|
};
|
|
51305
|
-
//# sourceMappingURL=chunk-
|
|
51305
|
+
//# sourceMappingURL=chunk-3P2DGFGF.js.map
|