• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

OneBusAway / wayfinder / 29559896664

17 Jul 2026 06:23AM UTC coverage: 84.483%. First build
29559896664

Pull #560

github

web-flow
Merge cb0fa7101 into 5894b956a
Pull Request #560: Stop bottom sheet at all viewport widths + calmer map route labels

2267 of 2502 branches covered (90.61%)

Branch coverage included in aggregate %.

315 of 342 new or added lines in 14 files covered. (92.11%)

13593 of 16271 relevant lines covered (83.54%)

4.73 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/components/search/CollapsedSearchField.svelte
NEW
1
<!--
×
2
    @component
3
    The collapsed, single-line stand-in for the full SearchPane shown on phones
4
    while a stop's bottom sheet is open. Tapping it re-opens the full search pane.
5

6
    @prop {Function} onclick - Called when the field is tapped
7
-->
8

9
<script>
10
        import { FontAwesomeIcon } from '@fortawesome/svelte-fontawesome';
11
        import { faMagnifyingGlass, faArrowRight } from '@fortawesome/free-solid-svg-icons';
12
        import '$lib/i18n.js';
13
        import { t } from 'svelte-i18n';
14

15
        let { onclick } = $props();
16
</script>
17

18
<button
19
        type="button"
20
        {onclick}
21
        class="pointer-events-auto flex w-full items-center gap-2.5 rounded-lg border border-gray-300 bg-white/95 px-3.5 py-2.5 text-sm text-gray-500 shadow-md backdrop-blur-sm dark:border-gray-600 dark:bg-surface-dark/95 dark:text-gray-400 md:hidden"
22
>
NEW
23
        <FontAwesomeIcon icon={faMagnifyingGlass} class="text-[13px]" />
×
NEW
24
        <span class="flex-1 truncate text-left">{$t('search.placeholder')}</span>
×
NEW
25
        <FontAwesomeIcon icon={faArrowRight} class="rotate-rtl text-black dark:text-white" />
×
26
</button>
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc