@saasquatch/mint-components 1.15.0 → 1.15.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.
- package/dist/cjs/sqm-banking-info-form_17.cjs.entry.js +6 -1
- package/dist/collection/components/tax-and-cash/sqm-tax-and-cash/sqm-tax-and-cash.js +7 -1
- package/dist/esm/sqm-banking-info-form_17.entry.js +6 -1
- package/dist/esm-es5/sqm-banking-info-form_17.entry.js +1 -1
- package/dist/mint-components/mint-components.esm.js +1 -1
- package/dist/mint-components/p-37996351.system.js +1 -1
- package/dist/mint-components/{p-d66b9a61.entry.js → p-457fb652.entry.js} +6 -6
- package/dist/mint-components/{p-7ec4ccd6.system.entry.js → p-b965147c.system.entry.js} +1 -1
- package/docs/docs.docx +0 -0
- package/package.json +1 -1
|
@@ -5591,7 +5591,12 @@ const TaxAndCashMonolith = class {
|
|
|
5591
5591
|
case "/dashboard":
|
|
5592
5592
|
return (index.h("sqm-tax-and-cash-dashboard", Object.assign({}, this.getGeneralStepTextProps("dashboard_"))));
|
|
5593
5593
|
case "/error":
|
|
5594
|
-
return (index.h(ErrorView.ErrorView, { loadingErrorAlertHeader: this.loadingErrorAlertHeader, loadingErrorAlertDescription:
|
|
5594
|
+
return (index.h(ErrorView.ErrorView, { loadingErrorAlertHeader: this.loadingErrorAlertHeader, loadingErrorAlertDescription: global.intl.formatMessage({
|
|
5595
|
+
id: "loadingErrorAlertDescription",
|
|
5596
|
+
defaultMessage: this.loadingErrorAlertDescription,
|
|
5597
|
+
}, {
|
|
5598
|
+
supportLink: (index.h("a", { target: "_blank", href: `mailto:advocate-support@impact.com` }, this.supportLink)),
|
|
5599
|
+
}) }));
|
|
5595
5600
|
}
|
|
5596
5601
|
return index.h(sqmInvoiceTableView.LoadingView, null);
|
|
5597
5602
|
}
|
|
@@ -8,6 +8,7 @@ import LoadingView from "./LoadingView";
|
|
|
8
8
|
import { TAX_CONTEXT_NAMESPACE } from "./data";
|
|
9
9
|
import { extractProps } from "./extractProps";
|
|
10
10
|
import { useTaxAndCash } from "./useTaxAndCash";
|
|
11
|
+
import { intl } from "../../../global/global";
|
|
11
12
|
/**
|
|
12
13
|
* @uiName Tax and Cash
|
|
13
14
|
* @exampleGroup Tax and Cash
|
|
@@ -1113,7 +1114,12 @@ export class TaxAndCashMonolith {
|
|
|
1113
1114
|
case "/dashboard":
|
|
1114
1115
|
return (h("sqm-tax-and-cash-dashboard", Object.assign({}, this.getGeneralStepTextProps("dashboard_"))));
|
|
1115
1116
|
case "/error":
|
|
1116
|
-
return (h(ErrorView, { loadingErrorAlertHeader: this.loadingErrorAlertHeader, loadingErrorAlertDescription:
|
|
1117
|
+
return (h(ErrorView, { loadingErrorAlertHeader: this.loadingErrorAlertHeader, loadingErrorAlertDescription: intl.formatMessage({
|
|
1118
|
+
id: "loadingErrorAlertDescription",
|
|
1119
|
+
defaultMessage: this.loadingErrorAlertDescription,
|
|
1120
|
+
}, {
|
|
1121
|
+
supportLink: (h("a", { target: "_blank", href: `mailto:advocate-support@impact.com` }, this.supportLink)),
|
|
1122
|
+
}) }));
|
|
1117
1123
|
}
|
|
1118
1124
|
return h(LoadingView, null);
|
|
1119
1125
|
}
|
|
@@ -5587,7 +5587,12 @@ const TaxAndCashMonolith = class {
|
|
|
5587
5587
|
case "/dashboard":
|
|
5588
5588
|
return (h("sqm-tax-and-cash-dashboard", Object.assign({}, this.getGeneralStepTextProps("dashboard_"))));
|
|
5589
5589
|
case "/error":
|
|
5590
|
-
return (h(ErrorView, { loadingErrorAlertHeader: this.loadingErrorAlertHeader, loadingErrorAlertDescription:
|
|
5590
|
+
return (h(ErrorView, { loadingErrorAlertHeader: this.loadingErrorAlertHeader, loadingErrorAlertDescription: intl.formatMessage({
|
|
5591
|
+
id: "loadingErrorAlertDescription",
|
|
5592
|
+
defaultMessage: this.loadingErrorAlertDescription,
|
|
5593
|
+
}, {
|
|
5594
|
+
supportLink: (h("a", { target: "_blank", href: `mailto:advocate-support@impact.com` }, this.supportLink)),
|
|
5595
|
+
}) }));
|
|
5591
5596
|
}
|
|
5592
5597
|
return h(LoadingView, null);
|
|
5593
5598
|
}
|