Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tax and cash/fast follows #394

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
18 changes: 17 additions & 1 deletion packages/mint-components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.8.2] - 2024-04-12

- \<sqm-tax-and-cash-dashboard>
- Changed direction of tooltip popover to prevent it from getting cut off

## [Unreleased]
zachharrison marked this conversation as resolved.
Show resolved Hide resolved

## [1.8.1] - 2024-04-10

### Fixed

- \<sqm-tax-and-cash>
- Fix issue where a non-US user in a non-US brand would skip step 4 of the Tax and Cash form.

## [1.8.0] - 2024-04-10

### Changed
Expand Down Expand Up @@ -899,7 +913,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- \<sqm-popup-container>
- \<sqm-stencilbook>

[unreleased]: https://github.com/saasquatch/program-tools/compare/mint-components@1.8.0...HEAD
[unreleased]: https://github.com/saasquatch/program-tools/compare/mint-components@1.8.2...HEAD
[1.8.2]: https://github.com/saasquatch/program-tools/releases/tag/%40saasquatch%2Fmint-components%401.8.2
[1.8.1]: https://github.com/saasquatch/program-tools/releases/tag/%40saasquatch%2Fmint-components%401.8.1
[1.8.0]: https://github.com/saasquatch/program-tools/releases/tag/%40saasquatch%2Fmint-components%401.8.0
[1.7.6]: https://github.com/saasquatch/program-tools/releases/tag/%40saasquatch%2Fmint-components%401.7.6
[1.7.5]: https://github.com/saasquatch/program-tools/releases/tag/%40saasquatch%2Fmint-components%401.7.5
Expand Down
4 changes: 2 additions & 2 deletions packages/mint-components/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/mint-components/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@saasquatch/mint-components",
"title": "Mint Components",
"version": "1.8.0",
"version": "1.8.2",
"description": "A minimal design library with components for referral and loyalty experiences. Built with Shoelace components by Saasquatch.",
"icon": "https://res.cloudinary.com/saasquatch/image/upload/v1652219900/squatch-assets/For_Mint.svg",
"raisins": "docs/raisins.json",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ type ConnectPartnerResult = {
impactConnection: {
connected: boolean;
publisher: {
brandedSignup: boolean;
requiredTaxDocumentType: TaxDocumentType | null;
currentTaxDocument: null | CurrentTaxDocument;
};
Expand Down Expand Up @@ -72,6 +73,7 @@ const CONNECT_PARTNER = gql`
impactConnection {
connected
publisher {
brandedSignup
requiredTaxDocumentType
currentTaxDocument {
type
Expand Down Expand Up @@ -264,7 +266,7 @@ export function useIndirectTaxForm(props: IndirectTaxForm) {
// Go to docusign form
setStep("/3");
} else {
if (publisher?.brandedSignup) {
if (resultPublisher?.brandedSignup) {
// Go to banking information form
setStep("/4");
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ export const TaxAndCashDashboardView = (props: TaxAndCashDashboardProps) => {
{text.indirectTaxInfoSectionHeader}
<sl-tooltip
trigger="hover"
placement="top"
placement="right"
content={text.indirectTaxTooltipSupport}
class={sheet.classes.TooltipContainer}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import editProfileTemplate from "../templates/EditProfile.html";
import activityTemplate from "../templates/Activity.html";
import resetPasswordEmailTemplate from "../templates/ResetPasswordEmail.html";
import verifyEmailTemplate from "../templates/VerifyEmail.html";
import taxPayoutReminderEmailTemplate from "../templates/taxPayoutReminderEmail.html";
import taxPayoutReminderEmailTemplate from "../templates/TaxPayoutReminderEmail.html";
import loginTemplate from "../templates/Login.html";
import registerTemplate from "../templates/Register.html";
import forgotPasswordTemplate from "../templates/ForgotPassword.html";
Expand Down