@duffel/components 3.7.5 → 3.7.7--canary-1
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/components/DuffelNGSView/SortingControl.d.ts +12 -12
- package/custom-elements.js +2 -2
- package/custom-elements.js.map +2 -2
- package/index.js +3 -3
- package/index.js.map +3 -3
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
declare const OPTIONS: {
|
|
3
|
-
readonly "duration-asc": "Duration
|
|
4
|
-
readonly "duration-desc": "Duration
|
|
5
|
-
readonly "1-asc": "Price
|
|
6
|
-
readonly "1-desc": "Price
|
|
7
|
-
readonly "2-asc": "Price
|
|
8
|
-
readonly "2-desc": "Price
|
|
9
|
-
readonly "3-asc": "Price
|
|
10
|
-
readonly "3-desc": "Price
|
|
11
|
-
readonly "4-asc": "Price
|
|
12
|
-
readonly "4-desc": "Price
|
|
13
|
-
readonly "5-asc": "Price
|
|
14
|
-
readonly "5-desc": "Price
|
|
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 {
|