Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
179f43b
feat: add masked input components for date/time widgets
Jan 8, 2026
7bdebe9
chore: add storybook cases for testing
mguellsegarra Jan 8, 2026
351f8a4
feat: add double-click handler and improved storybook docs
cjsys-ux Jan 8, 2026
ffff844
fix: autocomplete to current date on enter with empty input, integrat…
cjsys-ux Jan 8, 2026
18f2045
feat: new approach for date with masked inputs
mguellsegarra Jan 8, 2026
aa7b109
Merge branch 'claude/masked-datetime-input' of github.com:gisce/react…
mguellsegarra Jan 8, 2026
abde828
feat: tests and date masked input
mguellsegarra Jan 8, 2026
5ee3c61
fix: more improvements
mguellsegarra Jan 8, 2026
bd6222c
fix: more adjustmetns
mguellsegarra Jan 8, 2026
f6435ad
fix: more tests
mguellsegarra Jan 9, 2026
51ba92c
chore: add tests check
mguellsegarra Jan 9, 2026
0459614
fix: improve code quality
mguellsegarra Jan 9, 2026
b9e08ed
fix: add locale cases
mguellsegarra Jan 9, 2026
b3d2cc5
fix: revert old behaviour in dateinput
mguellsegarra Jan 9, 2026
6f0860d
fix: adjust meta a mac keyboard issue
mguellsegarra Jan 9, 2026
49b7764
fix: tests and footer ok button visibility issues
mguellsegarra Jan 9, 2026
9de878d
fix: picker container placement bug
mguellsegarra Jan 9, 2026
c7b4fee
feat: two way sync and other improvements
mguellsegarra Jan 12, 2026
08fe60f
Merge pull request #85 from gisce/claude/masked-datetime-input
mguellsegarra Jan 13, 2026
5fedde5
chore(release): 1.20.0 [skip ci]
semantic-release-bot Jan 13, 2026
1c682b9
Merge remote-tracking branch 'origin/main' into sync/main-to-develop-…
github-actions[bot] Jan 13, 2026
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
7 changes: 7 additions & 0 deletions .github/workflows/build_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,10 @@ jobs:

- name: Run build
run: npm run build

- name: Install Playwright browsers
run: npx playwright install --with-deps chromium

- name: Run Playwright tests
timeout-minutes: 30
run: npm run test:playwright
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@

# testing
/coverage
/test-results/
/playwright-report/
/playwright/.cache/

# production
/build
Expand Down
Loading