@balby/booking-search 1.0.8 → 1.0.9

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/demo.tsx +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@balby/booking-search",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,7 +35,7 @@
35
35
  "bugs": {
36
36
  "url": "https://github.com/AlbertoBarrago/booking-search/issues"
37
37
  },
38
- "homepage": "https://github.com/AlbertoBarrago/booking-search#readme",
38
+ "homepage": "https://AlbertoBarrago.github.io/booking-search/",
39
39
  "keywords": [
40
40
  "react",
41
41
  "booking",
package/src/demo.tsx CHANGED
@@ -181,9 +181,12 @@ function App() {
181
181
 
182
182
  return (
183
183
  <BookingSearch
184
- locations={locations}
184
+ locations={sampleLocations}
185
185
  availability={availability}
186
186
  onSearch={handleSearch}
187
+ minNights={2}
188
+ maxAdults={10}
189
+ maxChildren={5}
187
190
  />
188
191
  )
189
192
  }`}</code>