Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: filter refactor #627

Merged
merged 41 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
6a16d49
chore: search bar enhancement
sagarnaikjuspay Apr 15, 2024
01f9719
chore: code refactor
sagarnaikjuspay Apr 15, 2024
57bebda
chore: table filter comonent refactor
sagarnaikjuspay Apr 15, 2024
db34856
chore: ui revamp
sagarnaikjuspay Apr 18, 2024
b7a1142
Merge branch 'main' into filter-refactor-v1
sagarnaikjuspay Apr 18, 2024
474637c
chore: search bar ui enhancement
sagarnaikjuspay Apr 18, 2024
fa66f68
chore: filter date range button change design
sagarnaikjuspay Apr 18, 2024
c6698b0
chore: calander ui changed
sagarnaikjuspay Apr 23, 2024
a393694
chore: filter component refactor
sagarnaikjuspay Apr 24, 2024
2cc0aa8
Merge branch 'main' into filter-refactor-v1
sagarnaikjuspay Apr 29, 2024
6f4e0c5
chore: code refactor
sagarnaikjuspay Apr 29, 2024
6dd710f
chore: merged latest code
sagarnaikjuspay Apr 29, 2024
cd66edf
chore: code refactor
sagarnaikjuspay Apr 29, 2024
fdea0f1
chore: code refactor
sagarnaikjuspay Apr 29, 2024
b165efe
chore: filter drop down basic styling
sagarnaikjuspay Apr 29, 2024
cfdb91a
chore: drop dowm revamp
sagarnaikjuspay Apr 29, 2024
b462d93
chore: code refactor
sagarnaikjuspay Apr 30, 2024
8368c08
chore: code refactor
sagarnaikjuspay Apr 30, 2024
1d38bfc
chore: code refactor
sagarnaikjuspay Apr 30, 2024
b0929b9
chore: code refactor
sagarnaikjuspay Apr 30, 2024
6441163
chore: code refactor:
sagarnaikjuspay Apr 30, 2024
2a136d5
chore: some change
sagarnaikjuspay May 3, 2024
9079bc9
chore: code refactor'
sagarnaikjuspay May 3, 2024
5e40395
chore: filter buttons ui revamp
sagarnaikjuspay May 3, 2024
9818d0b
chore: some code
sagarnaikjuspay May 6, 2024
70a7df7
chore: filter add function
sagarnaikjuspay May 7, 2024
ab9c09e
chore: card delete feature
sagarnaikjuspay May 7, 2024
12ccac6
chore: code refactor
sagarnaikjuspay May 7, 2024
6700788
chore: base code
sagarnaikjuspay May 8, 2024
62b3bd3
chore: merged latest code
sagarnaikjuspay May 8, 2024
dc07e14
chore: code refactor
sagarnaikjuspay May 8, 2024
e574d98
chore: some edge cases handling
sagarnaikjuspay May 8, 2024
b594391
Merge branch 'main' into filter-refactor-v1
sagarnaikjuspay May 13, 2024
fb98226
chore: resolved warnings
sagarnaikjuspay May 13, 2024
0bf6dc8
chore: filter bug fix
sagarnaikjuspay May 13, 2024
98fef2f
chore: customize cols ui edit
sagarnaikjuspay May 13, 2024
7aab264
chore: filter component copid
sagarnaikjuspay May 13, 2024
559f245
chore: bug fixes
sagarnaikjuspay May 13, 2024
9645cac
chore: bugfix
sagarnaikjuspay May 14, 2024
5985927
chore: filter refactor
sagarnaikjuspay May 14, 2024
2b1e369
chore: remoed the filters from pmt page
sagarnaikjuspay May 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
35 changes: 35 additions & 0 deletions public/hyperswitch/icons/solid.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/CalendarList.res
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ let make = (

let dummyRow = Array.make(~length=count, 1)
<div
className={`flex flex-1 flex-row justify-center overflow-auto bg-jp-gray-50 dark:bg-jp-gray-950 rounded border border-jp-gray-500 dark:border-jp-gray-960 select-none ${calendarContaierStyle}`}>
className={`flex flex-1 flex-row justify-center overflow-auto bg-jp-gray-100 bg-opacity-20 rounded-md border select-none ${calendarContaierStyle}`}>
{dummyRow
->Array.mapWithIndex((_item, i) => {
let currDateTemp = Js.Date.fromFloat(Js.Date.valueOf(currDateIm))
Expand Down Expand Up @@ -121,7 +121,7 @@ let make = (
: React.null}
<AddDataAttributes attributes=[("data-calendar-date", monthAndYear)]>
<div
className="font-bold text-sm md:text-base text-jp-gray-800 dark:text-jp-gray-text_darktheme dark:text-opacity-75">
className="font-medium text-sm md:text-base text-jp-gray-900 dark:text-jp-gray-text_darktheme dark:text-opacity-75">
{React.string(monthAndYear)}
</div>
</AddDataAttributes>
Expand Down