chore(env): update application version to 2.2.2 in production environment

feat(checkbox): enhance Checkbox component with animation and new icon options

- Added GSAP animations for checkbox state changes to improve user interaction.
- Introduced a new "none" icon option for the Checkbox component.
- Updated Checkbox component to support additional props and improved styling.
- Refactored Checkbox rendering logic for better performance and maintainability.

feat(tender-filters): add document state filter to TenderListFilters

- Integrated a new checkbox filter for "Documents scraped" in the TenderListFilters component.
- Enhanced the UI for the filter section to improve user experience.
This commit is contained in:
AmirReza Jamali
2026-05-20 16:17:44 +03:30
parent 4779662d63
commit 44897aba5d
4 changed files with 245 additions and 59 deletions
+3 -3
View File
@@ -113,9 +113,9 @@ export default function FormElementsPage() {
title="Checkbox and radio"
className="space-y-5.5 !p-6.5"
>
{/* <Checkbox label="Checkbox Text" />
<Checkbox label="Checkbox Text" withIcon="check" />
<Checkbox label="Checkbox Text" withIcon="x" /> */}
<Checkbox label="Checkbox Text" withIcon="check" withBg />
<Checkbox label="With check icon" withIcon="check" withBg />
<Checkbox label="With X icon" withIcon="x" withBg />
<RadioInput label="Checkbox Text" />
<RadioInput label="Checkbox Text" variant="circle" />
</ShowcaseSection>