taxforge 0.9.18__tar.gz → 0.9.20__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.
- {taxforge-0.9.18 → taxforge-0.9.20}/PKG-INFO +1 -1
- {taxforge-0.9.18 → taxforge-0.9.20}/pyproject.toml +1 -1
- {taxforge-0.9.18 → taxforge-0.9.20}/ui/aitax/__init__.py +1 -1
- {taxforge-0.9.18 → taxforge-0.9.20}/ui/aitax/aitax.py +3 -3
- {taxforge-0.9.18 → taxforge-0.9.20}/ui/aitax/cli.py +1 -1
- {taxforge-0.9.18 → taxforge-0.9.20}/ui/taxforge.egg-info/PKG-INFO +1 -1
- {taxforge-0.9.18 → taxforge-0.9.20}/README.md +0 -0
- {taxforge-0.9.18 → taxforge-0.9.20}/setup.cfg +0 -0
- {taxforge-0.9.18 → taxforge-0.9.20}/tests/test_fact_graph.py +0 -0
- {taxforge-0.9.18 → taxforge-0.9.20}/tests/test_investments.py +0 -0
- {taxforge-0.9.18 → taxforge-0.9.20}/tests/test_tax_engine.py +0 -0
- {taxforge-0.9.18 → taxforge-0.9.20}/ui/aitax/components.py +0 -0
- {taxforge-0.9.18 → taxforge-0.9.20}/ui/aitax/document_extractor.py +0 -0
- {taxforge-0.9.18 → taxforge-0.9.20}/ui/aitax/state.py +0 -0
- {taxforge-0.9.18 → taxforge-0.9.20}/ui/taxforge.egg-info/SOURCES.txt +0 -0
- {taxforge-0.9.18 → taxforge-0.9.20}/ui/taxforge.egg-info/dependency_links.txt +0 -0
- {taxforge-0.9.18 → taxforge-0.9.20}/ui/taxforge.egg-info/entry_points.txt +0 -0
- {taxforge-0.9.18 → taxforge-0.9.20}/ui/taxforge.egg-info/requires.txt +0 -0
- {taxforge-0.9.18 → taxforge-0.9.20}/ui/taxforge.egg-info/top_level.txt +0 -0
|
@@ -658,7 +658,7 @@ def review_page() -> rx.Component:
|
|
|
658
658
|
fintech_card(
|
|
659
659
|
rx.vstack(
|
|
660
660
|
rx.hstack(
|
|
661
|
-
rx.icon("
|
|
661
|
+
rx.icon("pencil", size=20, color=COLORS["accent_primary"]),
|
|
662
662
|
rx.text("Manual Entry", color=COLORS["text_primary"],
|
|
663
663
|
font_size="18px", font_weight="600"),
|
|
664
664
|
rx.spacer(),
|
|
@@ -682,7 +682,7 @@ def review_page() -> rx.Component:
|
|
|
682
682
|
lambda p, idx: rx.hstack(
|
|
683
683
|
rx.text(p["address"], flex="1"),
|
|
684
684
|
rx.text(f"Net: ${p['net_income']:,.2f}",
|
|
685
|
-
color=rx.cond(p["net_income"] >= 0, COLORS["success"], COLORS["error"])),
|
|
685
|
+
color=rx.cond(p["net_income"].to(float) >= 0, COLORS["success"], COLORS["error"])),
|
|
686
686
|
rx.icon("x", size=14, cursor="pointer",
|
|
687
687
|
on_click=lambda: TaxAppState.remove_rental_property(idx)),
|
|
688
688
|
width="100%", padding="8px",
|
|
@@ -741,7 +741,7 @@ def review_page() -> rx.Component:
|
|
|
741
741
|
lambda b, idx: rx.hstack(
|
|
742
742
|
rx.text(b["name"], flex="1"),
|
|
743
743
|
rx.text(f"Net: ${b['net_profit']:,.2f}",
|
|
744
|
-
color=rx.cond(b["net_profit"] >= 0, COLORS["success"], COLORS["error"])),
|
|
744
|
+
color=rx.cond(b["net_profit"].to(float) >= 0, COLORS["success"], COLORS["error"])),
|
|
745
745
|
rx.icon("x", size=14, cursor="pointer",
|
|
746
746
|
on_click=lambda: TaxAppState.remove_business(idx)),
|
|
747
747
|
width="100%", padding="8px",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|