Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion packages/mint-components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.0.5] - 2025-12-02

### Changed

- \<sqm-user-info-form-view>

- Fix bug that caused previously unset fields to be disabled

## [2.0.4] - 2025-11-20

### Changed
Expand Down Expand Up @@ -1423,7 +1431,8 @@ This major release represents a significant advancement in the theming capabilit
- \<sqm-popup-container>
- \<sqm-stencilbook>

[unreleased]: https://github.com/saasquatch/program-tools/compare/[email protected]
[unreleased]: https://github.com/saasquatch/program-tools/compare/[email protected]
[2.0.5]: https://github.com/saasquatch/program-tools/releases/tag/%40saasquatch%2Fmint-components%402.0.5
[2.0.4]: https://github.com/saasquatch/program-tools/releases/tag/%40saasquatch%2Fmint-components%402.0.4
[2.0.3]: https://github.com/saasquatch/program-tools/releases/tag/%40saasquatch%2Fmint-components%402.0.3
[2.0.2]: https://github.com/saasquatch/program-tools/releases/tag/%40saasquatch%2Fmint-components%402.0.2
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": "2.0.4",
"version": "2.0.5",
"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 @@ -101,13 +101,15 @@ import * as LeadForm from "../sqm-lead-form/LeadForm.stories";
import * as LeadInputField from "../sqm-lead-form/LeadInputField.stories";
import * as LeadFormDropdownField from "../sqm-lead-form/LeadFormDropdownField.stories";
import * as LeadCheckboxField from "../sqm-lead-form/LeadCheckboxField.stories";
import * as UserInfoFormView from "../tax-and-cash/sqm-user-info-form/UserInfoFormView.stories";

import { ShadowViewAddon } from "../../ShadowViewAddon";
import { CucumberAddon } from "./CucumberAddon";
import { HookStoryAddon } from "./HookStoryAddon";
import * as Themes from "./Themes";

const stories = [
UserInfoFormView,
InvoiceTable,
InvoiceTableCells,
UseInvoiceTableCells,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,10 @@ const stepOneProps: StoryDemoData<UseUserInfoFormResult> = {
displayName: "USD",
},
],
userData: {
firstName: "",
lastName: "",
},
},
refs: {
formRef: { current: null },
Expand Down
9 changes: 5 additions & 4 deletions packages/mint-components/src/components/tax-and-cash/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,10 @@ export type ImpactPublisher = {
balance: string;
};
};
export type ImpactUser = {
firstName: string;
lastName: string;
};
export type UserQuery = {
user: {
firstName?: string;
Expand All @@ -186,10 +190,7 @@ export type UserQuery = {
} | null;
impactConnection: null | {
connected: boolean;
user: {
firstName: string;
lastName: string;
} | null;
user: null | ImpactUser;
publisher: null | ImpactPublisher;
};
};
Expand Down
Loading
Loading