@duffel/components 3.7.6 → 3.7.7--canary-2

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.
@@ -1,17 +1,17 @@
1
1
  import React from "react";
2
2
  declare const OPTIONS: {
3
- readonly "duration-asc": "Duration (shortest to longest)";
4
- readonly "duration-desc": "Duration (longest to shortest)";
5
- readonly "1-asc": "Price on Basic shelf (low to high)";
6
- readonly "1-desc": "Price on Basic shelf (high to low)";
7
- readonly "2-asc": "Price on Standard shelf (low to high)";
8
- readonly "2-desc": "Price on Standard shelf (high to low)";
9
- readonly "3-asc": "Price on Plus shelf (low to high)";
10
- readonly "3-desc": "Price on Plus shelf (high to low)";
11
- readonly "4-asc": "Price on Premium shelf (low to high)";
12
- readonly "4-desc": "Price on Premium shelf (high to low)";
13
- readonly "5-asc": "Price on Luxury shelf (low to high)";
14
- readonly "5-desc": "Price on Luxury shelf (high to low)";
3
+ readonly "duration-asc": "Duration Shortest to Longest";
4
+ readonly "duration-desc": "Duration Longest to Shortest";
5
+ readonly "1-asc": "Price (Basic) Low to High";
6
+ readonly "1-desc": "Price (Basic) High to Low";
7
+ readonly "2-asc": "Price (Standard) Low to High";
8
+ readonly "2-desc": "Price (Standard) High to Low";
9
+ readonly "3-asc": "Price (Plus) Low to High";
10
+ readonly "3-desc": "Price (Plus) High to Low";
11
+ readonly "4-asc": "Price (Premium) Low to High";
12
+ readonly "4-desc": "Price (Premium) High to Low";
13
+ readonly "5-asc": "Price (Luxury) Low to High";
14
+ readonly "5-desc": "Price (Luxury) High to Low";
15
15
  };
16
16
  export type SortOption = keyof typeof OPTIONS;
17
17
  interface StopsSelectorProps {
@@ -1,4 +1,3 @@
1
- import "rc-slider/assets/index.css";
2
1
  import React from "react";
3
2
  import { Filters } from "./lib/filter-results";
4
3
  interface TimeRangeSelectorProps {