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

🪟 🎉 Add datepicker for date/date-time fields in connector form #19678

Merged
merged 42 commits into from
Dec 7, 2022
Merged
Show file tree
Hide file tree
Changes from 41 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
26cc516
First implementation of DatePicker
timroes Nov 1, 2022
4d8da56
Merge branch 'master' into tim/datepicker
timroes Nov 2, 2022
b2a5971
styling pass
josephkmh Nov 21, 2022
6776ca1
Merge branch 'master' into joey/datepicker
josephkmh Nov 21, 2022
3937e52
regenerate lockfile after merge conflict
josephkmh Nov 21, 2022
f47c77f
add tests to dayjs timezone trickery
josephkmh Nov 21, 2022
ce11b18
disable stylelint on library css classnames
josephkmh Nov 22, 2022
a8afdba
fix out of month day styling
josephkmh Nov 23, 2022
4103239
add another test strategy
josephkmh Nov 23, 2022
12fc269
set touched on change
josephkmh Nov 23, 2022
da405fe
remove debug output
josephkmh Nov 23, 2022
2c3e617
remove debugging condition
josephkmh Nov 23, 2022
b537755
move datepicker to button trigger
josephkmh Nov 23, 2022
743a157
position datepicker button inside input
josephkmh Nov 24, 2022
50263b9
add feature flag for datepicker
josephkmh Nov 24, 2022
ffde1a8
remove fb marketin debugging condition
josephkmh Nov 24, 2022
aaf871a
adjust styling
josephkmh Nov 24, 2022
00c4803
avoid undefined initial value
josephkmh Nov 24, 2022
5db59f9
add pattern for registering locales
josephkmh Nov 24, 2022
e392762
clean up props
josephkmh Nov 25, 2022
20802bf
swap icon
josephkmh Nov 25, 2022
5ff2c1d
add some test cases for whole component
josephkmh Nov 25, 2022
db44e6f
udpate comment
josephkmh Nov 25, 2022
2a8b78b
use experiment instead of feature
josephkmh Nov 25, 2022
e785315
add automatic open on input focus
josephkmh Nov 25, 2022
72406b3
revert hiding example value
josephkmh Nov 25, 2022
6b9b49d
remove comment
josephkmh Nov 25, 2022
95264da
account for dayjs initializing invalid date
josephkmh Nov 28, 2022
0401893
simplify equivalent date function
josephkmh Nov 28, 2022
6c97808
add test descriptions
josephkmh Nov 28, 2022
f2e7bca
fix text overflow
josephkmh Nov 28, 2022
16884e7
add datepicker story
josephkmh Nov 28, 2022
400ff19
Merge branch 'master' into joey/datepicker
josephkmh Nov 28, 2022
9022e82
use setupTests
josephkmh Nov 29, 2022
7d69401
fix button width
josephkmh Nov 30, 2022
d4109aa
forward ref in Input
josephkmh Nov 30, 2022
01380f1
focus input on datepicker change
josephkmh Nov 30, 2022
7a57ca7
Update airbyte-webapp/src/components/ui/DatePicker/DatePicker.module.…
josephkmh Nov 30, 2022
d00f94b
fix blur event type
josephkmh Dec 3, 2022
86e95e1
remove unnecessary event arg
josephkmh Dec 3, 2022
e0226b1
add utc to time caption
josephkmh Dec 5, 2022
1751d79
Merge branch 'master' into joey/datepicker
josephkmh Dec 7, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions airbyte-webapp/.storybook/preview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { withProviders } from "./withProvider";

import "!style-loader!css-loader!sass-loader!../public/index.css";
import "../src/scss/global.scss";
import "../src/globals";

addDecorator(withProviders);

Expand Down
170 changes: 170 additions & 0 deletions airbyte-webapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions airbyte-webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"mdast": "^3.0.0",
"query-string": "^6.13.1",
"react": "^17.0.2",
"react-datepicker": "^4.8.0",
"react-dom": "^17.0.2",
"react-helmet-async": "^1.3.0",
"react-intl": "^6.1.1",
Expand Down Expand Up @@ -100,6 +101,7 @@
"@types/node": "^17.0.40",
"@types/query-string": "^6.3.0",
"@types/react": "^17.0.39",
"@types/react-datepicker": "^4.8.0",
"@types/react-dom": "^17.0.11",
"@types/react-helmet": "^6.1.5",
"@types/react-lazylog": "^4.5.1",
Expand Down Expand Up @@ -137,6 +139,7 @@
"stylelint-config-standard": "^26.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"tar": "^6.1.11",
"timezone-mock": "^1.3.4",
"tmpl": "^1.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
Expand Down
Loading