taxforge 0.9.17__tar.gz → 0.9.18__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: taxforge
3
- Version: 0.9.17
3
+ Version: 0.9.18
4
4
  Summary: AI-powered tax preparation assistant
5
5
  Author: TaxForge Team
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "taxforge"
7
- version = "0.9.17"
7
+ version = "0.9.18"
8
8
  description = "AI-powered tax preparation assistant"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -488,13 +488,13 @@ def review_page() -> rx.Component:
488
488
  rx.hstack(
489
489
  rx.button(
490
490
  "Select All Pending",
491
- size="sm",
491
+ size="1",
492
492
  variant="outline",
493
493
  on_click=TaxAppState.select_all_pending,
494
494
  ),
495
495
  rx.button(
496
496
  "Clear",
497
- size="sm",
497
+ size="1",
498
498
  variant="ghost",
499
499
  on_click=TaxAppState.clear_selection,
500
500
  ),
@@ -673,7 +673,7 @@ def review_page() -> rx.Component:
673
673
  rx.text("🏠 Rental Properties (Schedule E)",
674
674
  color=COLORS["text_primary"], font_weight="600"),
675
675
  rx.spacer(),
676
- rx.button("+ Add", size="sm", on_click=TaxAppState.toggle_rental_form),
676
+ rx.button("+ Add", size="1", on_click=TaxAppState.toggle_rental_form),
677
677
  ),
678
678
  rx.cond(
679
679
  TaxAppState.rental_properties.length() > 0,
@@ -732,7 +732,7 @@ def review_page() -> rx.Component:
732
732
  rx.text("💼 Business Income (Schedule C)",
733
733
  color=COLORS["text_primary"], font_weight="600"),
734
734
  rx.spacer(),
735
- rx.button("+ Add", size="sm", on_click=TaxAppState.toggle_business_form),
735
+ rx.button("+ Add", size="1", on_click=TaxAppState.toggle_business_form),
736
736
  ),
737
737
  rx.cond(
738
738
  TaxAppState.business_income.length() > 0,
@@ -784,7 +784,7 @@ def review_page() -> rx.Component:
784
784
  rx.hstack(
785
785
  rx.text("📋 Other Income", color=COLORS["text_primary"], font_weight="600"),
786
786
  rx.spacer(),
787
- rx.button("+ Add", size="sm", on_click=TaxAppState.toggle_other_income_form),
787
+ rx.button("+ Add", size="1", on_click=TaxAppState.toggle_other_income_form),
788
788
  ),
789
789
  rx.cond(
790
790
  TaxAppState.other_income.length() > 0,
@@ -818,7 +818,7 @@ def review_page() -> rx.Component:
818
818
  rx.hstack(
819
819
  rx.text("📉 Other Deductions", color=COLORS["text_primary"], font_weight="600"),
820
820
  rx.spacer(),
821
- rx.button("+ Add", size="sm", on_click=TaxAppState.toggle_other_deduction_form),
821
+ rx.button("+ Add", size="1", on_click=TaxAppState.toggle_other_deduction_form),
822
822
  ),
823
823
  rx.cond(
824
824
  TaxAppState.other_deductions.length() > 0,
@@ -852,7 +852,7 @@ def review_page() -> rx.Component:
852
852
  rx.hstack(
853
853
  rx.text("👨‍👩‍👧‍👦 Dependents", color=COLORS["text_primary"], font_weight="600"),
854
854
  rx.spacer(),
855
- rx.button("+ Add", size="sm", on_click=TaxAppState.toggle_dependent_form),
855
+ rx.button("+ Add", size="1", on_click=TaxAppState.toggle_dependent_form),
856
856
  ),
857
857
  rx.cond(
858
858
  TaxAppState.dependents.length() > 0,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: taxforge
3
- Version: 0.9.17
3
+ Version: 0.9.18
4
4
  Summary: AI-powered tax preparation assistant
5
5
  Author: TaxForge Team
6
6
  License: MIT
File without changes
File without changes
File without changes
File without changes