related-ui-components 2.7.4 → 2.7.6

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 (31) hide show
  1. package/lib/module/app.js +3 -19
  2. package/lib/module/app.js.map +1 -1
  3. package/lib/module/components/Card/templates/SelaDealCard.js +16 -13
  4. package/lib/module/components/Card/templates/SelaDealCard.js.map +1 -1
  5. package/lib/module/components/TravelBooking/FlightSummary.js +219 -112
  6. package/lib/module/components/TravelBooking/FlightSummary.js.map +1 -1
  7. package/lib/module/components/TravelBooking/SummaryBar.js +239 -172
  8. package/lib/module/components/TravelBooking/SummaryBar.js.map +1 -1
  9. package/lib/module/components/TravelBooking/TravelBooking.js +407 -241
  10. package/lib/module/components/TravelBooking/TravelBooking.js.map +1 -1
  11. package/lib/module/components/TravelBooking/index.js +5 -4
  12. package/lib/module/components/TravelBooking/index.js.map +1 -1
  13. package/lib/module/index.js +2 -2
  14. package/lib/typescript/src/app.d.ts.map +1 -1
  15. package/lib/typescript/src/components/Card/templates/SelaDealCard.d.ts.map +1 -1
  16. package/lib/typescript/src/components/TravelBooking/FlightSummary.d.ts +25 -11
  17. package/lib/typescript/src/components/TravelBooking/FlightSummary.d.ts.map +1 -1
  18. package/lib/typescript/src/components/TravelBooking/SummaryBar.d.ts +1 -16
  19. package/lib/typescript/src/components/TravelBooking/SummaryBar.d.ts.map +1 -1
  20. package/lib/typescript/src/components/TravelBooking/TravelBooking.d.ts +1 -83
  21. package/lib/typescript/src/components/TravelBooking/TravelBooking.d.ts.map +1 -1
  22. package/lib/typescript/src/components/TravelBooking/index.d.ts +0 -4
  23. package/lib/typescript/src/components/TravelBooking/index.d.ts.map +1 -1
  24. package/package.json +1 -1
  25. package/src/app.tsx +14 -3
  26. package/src/components/Card/templates/SelaDealCard.tsx +12 -9
  27. package/src/components/TravelBooking/FlightSummary.tsx +264 -164
  28. package/src/components/TravelBooking/SummaryBar.tsx +239 -239
  29. package/src/components/TravelBooking/TravelBooking.tsx +407 -407
  30. package/src/components/TravelBooking/index.ts +4 -4
  31. package/src/index.ts +3 -3
@@ -1,6 +1,6 @@
1
1
 
2
- export { default, type TravelBookingProps } from "./TravelBooking";
3
- export * from "./TravelBooking"
2
+ // export { default, type TravelBookingProps } from "./TravelBooking";
3
+ // export * from "./TravelBooking"
4
4
 
5
5
  export { default as CarRentalForm, type CarRentalFormProps } from "./CarRentalForm";
6
6
  export * from "./CarRentalForm"
@@ -8,8 +8,8 @@ export { default as FlightForm, type FlightFormProps } from "./FlightForm";
8
8
  export * from "./FlightForm";
9
9
  export { default as HotelForm, type HotelFormProps } from "./HotelForm";
10
10
  export * from "./HotelForm";
11
- export { default as SummaryBar, type SummaryBarProps, type SelectionCallbackDataType } from "./SummaryBar";
12
- export * from "./SummaryBar";
11
+ // export { default as SummaryBar, type SummaryBarProps, type SelectionCallbackDataType } from "./SummaryBar";
12
+ // export * from "./SummaryBar";
13
13
  export { default as TabSelector, type TabSelectorProps } from "./TabSelector";
14
14
  export * from "./TabSelector"
15
15
  export { default as FlightSummary, type FlightSummaryProps, type FlightSelection } from "./FlightSummary";
package/src/index.ts CHANGED
@@ -3,10 +3,10 @@
3
3
 
4
4
  // import App from "./app";
5
5
  // import { I18nManager } from "react-native";
6
- // I18nManager.allowRTL(true);
7
- // I18nManager.forceRTL(true);
6
+ // I18nManager.allowRTL(false);
7
+ // I18nManager.forceRTL(false);
8
8
  // registerRootComponent(App);
9
9
 
10
10
  export * from "./theme";
11
11
  export * from "./components";
12
- export * from "./contexts";
12
+ export * from "./contexts";