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

Website 38 investigate adding the ability to navigate via calendar in hours view #319

Merged
Show file tree
Hide file tree
Changes from 49 commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
978b313
changed heading level for locations (currently skipping level)
SalazarJosh Oct 21, 2024
d4c6e98
added calendar view
SalazarJosh Oct 29, 2024
d35ffc1
Merge remote-tracking branch 'origin/master' into WEBSITE-38-Investig…
SalazarJosh Nov 7, 2024
529ab02
made calendar expandable
SalazarJosh Nov 7, 2024
40114e6
new component for previous / next week, sticky
SalazarJosh Nov 8, 2024
97b20c1
Update previous-next-week-calendar-view.js
SalazarJosh Nov 11, 2024
73db816
Merge branch 'master' into WEBSITE-38-Investigate-adding-the-ability-…
SalazarJosh Nov 14, 2024
edfbc5b
updated icons. no longer using html character icons
SalazarJosh Nov 18, 2024
278b2a2
updated calendar positioning
SalazarJosh Nov 18, 2024
c0f45ba
Merge branch 'master' into WEBSITE-38-Investigate-adding-the-ability-…
SalazarJosh Dec 10, 2024
55239fd
Week selection implemented
SalazarJosh Dec 13, 2024
236cbe0
Update previous-next-week-calendar-view.js
SalazarJosh Dec 13, 2024
9527c5c
Merge branch 'master' into WEBSITE-38-Investigate-adding-the-ability-…
SalazarJosh Dec 13, 2024
e6e8fb1
Naming and accessibility
SalazarJosh Dec 16, 2024
794eddd
Merge branch 'WEBSITE-38-Investigate-adding-the-ability-to-navigate-v…
SalazarJosh Dec 16, 2024
4eaf98c
Removed table element and added aria-live to calendar heading
SalazarJosh Dec 16, 2024
c83a01c
Update hours-panel-date-viewer.js
SalazarJosh Dec 17, 2024
4373f77
Update hours-panel-date-viewer.js
SalazarJosh Dec 17, 2024
551b0ee
Update hours-panel-date-viewer.js
SalazarJosh Dec 17, 2024
9dba1df
Update hours-panel-date-viewer.js
SalazarJosh Dec 18, 2024
ec36206
Update hours-panel-date-viewer.js
SalazarJosh Jan 8, 2025
414920a
Update hours-panel-date-viewer.js
SalazarJosh Jan 9, 2025
c69eb16
Merge branch 'master' into WEBSITE-38-Investigate-adding-the-ability-…
SalazarJosh Jan 9, 2025
de54ac0
Update hours-panel-date-viewer.js
SalazarJosh Jan 13, 2025
9d4cdf3
Merge branch 'WEBSITE-38-Investigate-adding-the-ability-to-navigate-v…
SalazarJosh Jan 13, 2025
cf35a67
added offset to hash scrolling if sticky header is present
SalazarJosh Jan 13, 2025
f4aabbb
made the scrolled element focusable
SalazarJosh Jan 13, 2025
89c4bd1
Update package-lock.json
SalazarJosh Jan 13, 2025
e702bba
Update package-lock.json
SalazarJosh Jan 13, 2025
e35d86e
Update package-lock.json
SalazarJosh Jan 13, 2025
dc22be4
Merge branch 'master' into WEBSITE-38-Investigate-adding-the-ability-…
SalazarJosh Jan 13, 2025
3b81d07
Update gatsby-browser.js
SalazarJosh Jan 14, 2025
706c567
Update hours-panel-date-viewer.js
SalazarJosh Jan 16, 2025
44e36d0
Update hours-panel-date-viewer.js
SalazarJosh Jan 17, 2025
dc15572
Update src/components/panels/hours-panel-date-viewer.js
SalazarJosh Jan 22, 2025
be01811
Update src/components/panels/hours-panel-date-viewer.js
SalazarJosh Jan 22, 2025
0aedace
Update src/components/panels/hours-panel-date-viewer.js
SalazarJosh Jan 22, 2025
7b67c75
Update src/components/panels/hours-panel-date-viewer.js
SalazarJosh Jan 22, 2025
a1439ee
Update src/components/panels/hours-panel-date-viewer.js
SalazarJosh Jan 22, 2025
d0f3946
Update src/components/panels/hours-panel-date-viewer.js
SalazarJosh Jan 22, 2025
cadfb82
Removed IconWrapper and redundant styles
SalazarJosh Jan 22, 2025
7115c2f
Replaced hidden element css with visually-hidden class
SalazarJosh Jan 22, 2025
776f8c9
Added Kbd component
SalazarJosh Jan 28, 2025
13c4783
Function for isEnterOrSpace
SalazarJosh Jan 28, 2025
c5b9961
Alignment fixes and consistent icon sizes
SalazarJosh Jan 28, 2025
03b9806
Forgot to pass event to isEnterOrSpace function
SalazarJosh Jan 30, 2025
a778384
added aria-live to date range label
SalazarJosh Jan 31, 2025
c5970ee
Handled esc key close announcement
SalazarJosh Jan 31, 2025
a924e24
anchors to buttons
SalazarJosh Jan 31, 2025
2fbba88
Merge branch 'master' into WEBSITE-38-Investigate-adding-the-ability-…
SalazarJosh Feb 3, 2025
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
6 changes: 4 additions & 2 deletions gatsby-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,11 @@ export const onRouteUpdate = ({ location, prevLocation }) => {
const element = document.querySelector(`${location.hash}`);

if (element) {
const stickyHeader = document.querySelector('#dateViewerBar');
const headerHeight = stickyHeader ? stickyHeader.offsetHeight : 0;
window.scrollTo({
top: element.offsetTop,
behavior: 'smooth'
behavior: 'smooth',
top: element.offsetTop - headerHeight
});
}
}
Expand Down
622 changes: 330 additions & 292 deletions package-lock.json

Large diffs are not rendered by default.

Loading