@axos-web-dev/shared-components 1.0.100-dev.71 → 1.0.100-dev.72
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.
|
@@ -365,6 +365,9 @@ const menuData = {
|
|
|
365
365
|
),
|
|
366
366
|
"Non-Profit Money Market": findMoreAxosDomains(
|
|
367
367
|
"{AXOSBANK}/business/savings/business-money-market-accounts/non-profit-money-market"
|
|
368
|
+
),
|
|
369
|
+
"Business CDs": findMoreAxosDomains(
|
|
370
|
+
"{AXOSBANK}/business/savings/business-cds"
|
|
368
371
|
)
|
|
369
372
|
},
|
|
370
373
|
Bundles: {
|
|
@@ -2167,6 +2167,15 @@ function SubNavBar() {
|
|
|
2167
2167
|
),
|
|
2168
2168
|
children: "Non-Profit Money Market"
|
|
2169
2169
|
}
|
|
2170
|
+
) }),
|
|
2171
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2172
|
+
Link,
|
|
2173
|
+
{
|
|
2174
|
+
href: findMoreAxosDomains(
|
|
2175
|
+
"{AXOSBANK}/business/savings/business-cds"
|
|
2176
|
+
),
|
|
2177
|
+
children: "Business CDs"
|
|
2178
|
+
}
|
|
2170
2179
|
) })
|
|
2171
2180
|
] })
|
|
2172
2181
|
] }),
|
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