@axos-web-dev/shared-components 1.0.100-dev.55 → 1.0.100-dev.56
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/Chatbot/Chatbot.js
CHANGED
|
@@ -78,7 +78,7 @@ const Chatbot = ({
|
|
|
78
78
|
const onChatMessageHandler = async (message) => {
|
|
79
79
|
console.log("Received message:", message);
|
|
80
80
|
addMessage(message);
|
|
81
|
-
if (message.$userType
|
|
81
|
+
if (!["virtual_agent", "system"].includes(message.$userType)) {
|
|
82
82
|
addMessage(typingMessage);
|
|
83
83
|
}
|
|
84
84
|
};
|
|
@@ -163,15 +163,6 @@ const AxosFooterSiteMap = ({
|
|
|
163
163
|
children: "Savings"
|
|
164
164
|
}
|
|
165
165
|
) }),
|
|
166
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
167
|
-
"a",
|
|
168
|
-
{
|
|
169
|
-
href: findMoreAxosDomains(
|
|
170
|
-
"{AXOSBANK}/personal/bank/savings-accounts/certificates-of-deposit"
|
|
171
|
-
),
|
|
172
|
-
children: "CDs"
|
|
173
|
-
}
|
|
174
|
-
) }),
|
|
175
166
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
176
167
|
"a",
|
|
177
168
|
{
|
|
@@ -567,22 +558,13 @@ const AxosFooterSiteMap = ({
|
|
|
567
558
|
children: "Savings"
|
|
568
559
|
}
|
|
569
560
|
) }),
|
|
570
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
571
|
-
"a",
|
|
572
|
-
{
|
|
573
|
-
href: findMoreAxosDomains(
|
|
574
|
-
"{AXOSBANK}/personal/bank/savings-accounts/certificates-of-deposit"
|
|
575
|
-
),
|
|
576
|
-
children: "CDs"
|
|
577
|
-
}
|
|
578
|
-
) }),
|
|
579
561
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
580
562
|
"a",
|
|
581
563
|
{
|
|
582
564
|
href: findMoreAxosDomains(
|
|
583
565
|
"{AXOSBANK}/personal/bank/premier"
|
|
584
566
|
),
|
|
585
|
-
children: "
|
|
567
|
+
children: "Premier"
|
|
586
568
|
}
|
|
587
569
|
) })
|
|
588
570
|
] }),
|
package/dist/Table/Table.d.ts
CHANGED
|
@@ -61,7 +61,7 @@ export declare const TableCell: ({ children, as, variant, highlighted, colSpan,
|
|
|
61
61
|
is?: string | undefined;
|
|
62
62
|
exportparts?: string | undefined;
|
|
63
63
|
part?: string | undefined;
|
|
64
|
-
popover?: "" | "auto" | "manual" |
|
|
64
|
+
popover?: "" | "auto" | "manual" | undefined;
|
|
65
65
|
popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
|
|
66
66
|
popoverTarget?: string | undefined;
|
|
67
67
|
onToggle?: import('react').ToggleEventHandler<HTMLTableCellElement> | undefined;
|
package/package.json
CHANGED