taxforge 0.9.17__py3-none-any.whl → 0.9.19__py3-none-any.whl
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.
- aitax/__init__.py +1 -1
- aitax/aitax.py +7 -7
- aitax/cli.py +1 -1
- {taxforge-0.9.17.dist-info → taxforge-0.9.19.dist-info}/METADATA +1 -1
- taxforge-0.9.19.dist-info/RECORD +11 -0
- taxforge-0.9.17.dist-info/RECORD +0 -11
- {taxforge-0.9.17.dist-info → taxforge-0.9.19.dist-info}/WHEEL +0 -0
- {taxforge-0.9.17.dist-info → taxforge-0.9.19.dist-info}/entry_points.txt +0 -0
- {taxforge-0.9.17.dist-info → taxforge-0.9.19.dist-info}/top_level.txt +0 -0
aitax/__init__.py
CHANGED
aitax/aitax.py
CHANGED
|
@@ -488,13 +488,13 @@ def review_page() -> rx.Component:
|
|
|
488
488
|
rx.hstack(
|
|
489
489
|
rx.button(
|
|
490
490
|
"Select All Pending",
|
|
491
|
-
size="
|
|
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="
|
|
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="
|
|
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="
|
|
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="
|
|
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="
|
|
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="
|
|
855
|
+
rx.button("+ Add", size="1", on_click=TaxAppState.toggle_dependent_form),
|
|
856
856
|
),
|
|
857
857
|
rx.cond(
|
|
858
858
|
TaxAppState.dependents.length() > 0,
|
aitax/cli.py
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
aitax/__init__.py,sha256=BDnKPr26GHvzEDjvHDTx5SRgPcb8H_qH8qgtjmInRi4,68
|
|
2
|
+
aitax/aitax.py,sha256=z0cgklS3tVZIctpvUbreC1-8PdekEYh5UpgAENKEI5U,63623
|
|
3
|
+
aitax/cli.py,sha256=9KW0MLrkmhi9FkECpYoPt7nZ3IDQDTfNRww2WFyVL2w,2651
|
|
4
|
+
aitax/components.py,sha256=pi4wKOtNsw0ju1cN3ivY7UWF0Q32rshijeklFnxVt5U,21056
|
|
5
|
+
aitax/document_extractor.py,sha256=gArprV9JkIXCUsjUdbmbBobcAIzhHPZMcpUY4VKcGtA,14104
|
|
6
|
+
aitax/state.py,sha256=vr5hlK2Dv3a4fhMntK6NUTnQdBjILpewoWGaq8DRQAw,45779
|
|
7
|
+
taxforge-0.9.19.dist-info/METADATA,sha256=0Ebaz5iI3ieeC95rhuMP8nk4UrOrMorHZf4p5sU3KD8,4874
|
|
8
|
+
taxforge-0.9.19.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
9
|
+
taxforge-0.9.19.dist-info/entry_points.txt,sha256=2dG4U_m3yvQaVeD8LeEGm1v8szyNGQtXUZOvbwH75Gg,44
|
|
10
|
+
taxforge-0.9.19.dist-info/top_level.txt,sha256=H7DuLZSRzSwHT5STc7uQa0oTOsKcNYUz2Pn4a4C5Q0Y,6
|
|
11
|
+
taxforge-0.9.19.dist-info/RECORD,,
|
taxforge-0.9.17.dist-info/RECORD
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
aitax/__init__.py,sha256=l2Os-WDmdC962LQuemEbe_NvuUInlH7r3pkudOaV_cI,68
|
|
2
|
-
aitax/aitax.py,sha256=3V3LdjT5q64eZoFgdsiTqWV9aZLgWD3NUtKzBPCfQ2w,63630
|
|
3
|
-
aitax/cli.py,sha256=2HlOOXVh1rJixJbGhVGKOPtiLlLD_NzsAhrun5FLHyU,2651
|
|
4
|
-
aitax/components.py,sha256=pi4wKOtNsw0ju1cN3ivY7UWF0Q32rshijeklFnxVt5U,21056
|
|
5
|
-
aitax/document_extractor.py,sha256=gArprV9JkIXCUsjUdbmbBobcAIzhHPZMcpUY4VKcGtA,14104
|
|
6
|
-
aitax/state.py,sha256=vr5hlK2Dv3a4fhMntK6NUTnQdBjILpewoWGaq8DRQAw,45779
|
|
7
|
-
taxforge-0.9.17.dist-info/METADATA,sha256=5IZl8glC-RMm07SwkY-1EQlDQZxtfm82a7zPo1PH_c0,4874
|
|
8
|
-
taxforge-0.9.17.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
9
|
-
taxforge-0.9.17.dist-info/entry_points.txt,sha256=2dG4U_m3yvQaVeD8LeEGm1v8szyNGQtXUZOvbwH75Gg,44
|
|
10
|
-
taxforge-0.9.17.dist-info/top_level.txt,sha256=H7DuLZSRzSwHT5STc7uQa0oTOsKcNYUz2Pn4a4C5Q0Y,6
|
|
11
|
-
taxforge-0.9.17.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|