willba-component-library 0.3.6 → 0.3.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "willba-component-library",
3
- "version": "0.3.6",
3
+ "version": "0.3.8",
4
4
  "description": "A custom UI component library",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.esm.js",
@@ -9,7 +9,7 @@ import {
9
9
  useCloseFilterSection,
10
10
  useUpdateTranslations,
11
11
  } from '../../core/hooks'
12
- import { Calendar, SubmitButton, CloseButton } from '../../core/components'
12
+ import { SubmitButton } from '../../core/components'
13
13
  import { parseDates } from '../../core/components/calendar/utils'
14
14
 
15
15
  import { parseGuests, parseLocations } from './utils'
@@ -215,7 +215,7 @@ export default function FilterBar({
215
215
  style={(!tabs || tabs.length < 2) && !isMobile ? { top: 66 } : {}}
216
216
  >
217
217
  {selectedFilter === FilterSections.CALENDAR && (
218
- <div id="will-calendar-filter">
218
+ <div id="will-dates-filter">
219
219
  <Dates
220
220
  autoFocus
221
221
  ref={filtersRef}
@@ -1,3 +1,5 @@
1
+ import React from 'react'
2
+
1
3
  import { DateRange } from 'react-day-picker'
2
4
  import { Calendar } from '../../../../core/components'
3
5
  import { DisableCalendarDates } from '../../../../core/components/calendar/CalendarTypes'