@caseparts-org/caseblocks 0.0.181 → 0.0.182
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.
|
@@ -5,6 +5,9 @@ export type FooterNavLink = {
|
|
|
5
5
|
target?: React.HTMLAttributeAnchorTarget;
|
|
6
6
|
rel?: string;
|
|
7
7
|
};
|
|
8
|
+
export type FooterCustomerCareLink = Omit<FooterNavLink, 'href'> & {
|
|
9
|
+
href?: string;
|
|
10
|
+
};
|
|
8
11
|
export type FooterBranch = {
|
|
9
12
|
office: string;
|
|
10
13
|
phone: string;
|
|
@@ -15,16 +18,16 @@ export type FooterBranch = {
|
|
|
15
18
|
mapUrl: string;
|
|
16
19
|
};
|
|
17
20
|
export type FooterCustomerCareLinks = {
|
|
18
|
-
customerService
|
|
19
|
-
accounting
|
|
20
|
-
about
|
|
21
|
-
contact
|
|
22
|
-
faq
|
|
23
|
-
orderStatus
|
|
24
|
-
paymentMethods
|
|
25
|
-
returnsPolicy
|
|
26
|
-
shippingAndDelivery
|
|
27
|
-
salesTaxCertificates
|
|
21
|
+
customerService?: FooterCustomerCareLink;
|
|
22
|
+
accounting?: FooterCustomerCareLink;
|
|
23
|
+
about?: FooterCustomerCareLink;
|
|
24
|
+
contact?: FooterCustomerCareLink;
|
|
25
|
+
faq?: FooterCustomerCareLink;
|
|
26
|
+
orderStatus?: FooterCustomerCareLink;
|
|
27
|
+
paymentMethods?: FooterCustomerCareLink;
|
|
28
|
+
returnsPolicy?: FooterCustomerCareLink;
|
|
29
|
+
shippingAndDelivery?: FooterCustomerCareLink;
|
|
30
|
+
salesTaxCertificates?: FooterCustomerCareLink;
|
|
28
31
|
};
|
|
29
32
|
export type FooterCustomPartsLinks = {
|
|
30
33
|
title: FooterNavLink;
|
|
@@ -7,9 +7,9 @@ import { Logo as $ } from "../../molecules/Logo/Logo.js";
|
|
|
7
7
|
import { Text as l } from "../../atoms/Text/Text.js";
|
|
8
8
|
import { Tooltip as K } from "../../atoms/Tooltip/Tooltip.js";
|
|
9
9
|
import { c as m } from "../../clsx-OuTLNxxd.js";
|
|
10
|
-
import '../../assets/Footer.css';const
|
|
11
|
-
footer:
|
|
12
|
-
grid:
|
|
10
|
+
import '../../assets/Footer.css';const B = "_footer_1uyfm_2", I = "_grid_1uyfm_18", j = "_title_1uyfm_31", q = "_columnContent_1uyfm_40", G = "_history_1uyfm_48", R = "_logo_1uyfm_62", Q = "_location_1uyfm_72", r = {
|
|
11
|
+
footer: B,
|
|
12
|
+
grid: I,
|
|
13
13
|
"bottom-grid": "_bottom-grid_1uyfm_19",
|
|
14
14
|
title: j,
|
|
15
15
|
"title-help": "_title-help_1uyfm_36",
|
|
@@ -114,7 +114,7 @@ function se({
|
|
|
114
114
|
i.returnsPolicy,
|
|
115
115
|
i.shippingAndDelivery,
|
|
116
116
|
i.salesTaxCertificates
|
|
117
|
-
], O = (t) => {
|
|
117
|
+
].filter((t) => !!(t != null && t.href)), O = (t) => {
|
|
118
118
|
u || t.preventDefault(), d == null || d(t);
|
|
119
119
|
}, F = (t) => {
|
|
120
120
|
p || t.preventDefault(), f == null || f(t);
|