mautourco-components 0.2.94 → 0.2.96
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/dist/components/organisms/DateTimePicker/DateTimePicker.js +0 -1
- package/dist/components/organisms/RoundTrip/RoundTrip.js +0 -3
- package/dist/components/organisms/SearchBarTransfer/SearchBarTransfer.js +1 -3
- package/dist/styles/components/organism/round-trip.css +37 -3
- package/dist/styles/components/organism/transfer-line.css +40 -4
- package/package.json +1 -1
- package/src/components/organisms/DateTimePicker/DateTimePicker.tsx +0 -2
- package/src/components/organisms/RoundTrip/RoundTrip.tsx +0 -4
- package/src/components/organisms/SearchBarTransfer/SearchBarTransfer.tsx +1 -4
- package/src/styles/components/organism/round-trip.css +36 -2
- package/src/styles/components/organism/transfer-line.css +39 -3
|
@@ -38,7 +38,6 @@ var DateTimePicker = function (_a) {
|
|
|
38
38
|
var date = new Date(defaultValue);
|
|
39
39
|
var dateRange = { from: date, to: date };
|
|
40
40
|
var displayValue = format(date, 'dd/MM/yyyy');
|
|
41
|
-
console.log('defaultValue', defaultValue, selectionMode, displayValue);
|
|
42
41
|
return { value: displayValue, dateRange: dateRange };
|
|
43
42
|
}
|
|
44
43
|
}
|
|
@@ -168,7 +168,6 @@ var RoundTrip = function (_a) {
|
|
|
168
168
|
onPaxChange === null || onPaxChange === void 0 ? void 0 : onPaxChange(newPaxData);
|
|
169
169
|
};
|
|
170
170
|
var handleDateRangeChange = function (dates) {
|
|
171
|
-
console.log({ dates: dates });
|
|
172
171
|
if (Array.isArray(dates)) {
|
|
173
172
|
setInternalArrivalDate(dates === null || dates === void 0 ? void 0 : dates[0]);
|
|
174
173
|
setInternalDepartureDate(dates === null || dates === void 0 ? void 0 : dates[1]);
|
|
@@ -222,7 +221,6 @@ var RoundTrip = function (_a) {
|
|
|
222
221
|
internalArrivalDate === '' || internalDepartureDate === '');
|
|
223
222
|
// Check if user filled one date but not the other (even without checkEmpty)
|
|
224
223
|
var hasPartialDates = function () {
|
|
225
|
-
console.log({ checkEmpty: checkEmpty, internalArrivalDate: internalArrivalDate, internalDepartureDate: internalDepartureDate });
|
|
226
224
|
if (!checkEmpty)
|
|
227
225
|
return false;
|
|
228
226
|
if (!internalArrivalDate || !internalDepartureDate)
|
|
@@ -230,7 +228,6 @@ var RoundTrip = function (_a) {
|
|
|
230
228
|
return internalArrivalDate === internalDepartureDate;
|
|
231
229
|
};
|
|
232
230
|
var isDateError = function () {
|
|
233
|
-
console.log('isDateEmpty', isDateEmpty, hasPartialDates());
|
|
234
231
|
return isDateEmpty || hasPartialDates();
|
|
235
232
|
};
|
|
236
233
|
var isPickupDropoffEmpty = checkEmpty && !internalPickupDropoffPoint;
|
|
@@ -157,7 +157,6 @@ var SearchBarTransfer = function (_a) {
|
|
|
157
157
|
// Find the last transfer line that has pax data
|
|
158
158
|
for (var i = transferLines.length - 1; i >= 0; i--) {
|
|
159
159
|
if (transferLines[i].paxData) {
|
|
160
|
-
console.log({ i: i });
|
|
161
160
|
return transferLines[i].paxData;
|
|
162
161
|
}
|
|
163
162
|
}
|
|
@@ -328,8 +327,7 @@ var SearchBarTransfer = function (_a) {
|
|
|
328
327
|
}
|
|
329
328
|
// Check if required fields are filled
|
|
330
329
|
if (!roundTripData.paxData ||
|
|
331
|
-
|
|
332
|
-
!roundTripData.departureDate ||
|
|
330
|
+
roundTripData.arrivalDate === roundTripData.departureDate ||
|
|
333
331
|
!roundTripData.pickupDropoffPoint ||
|
|
334
332
|
!roundTripData.accommodation) {
|
|
335
333
|
setError("Please fill in all the transfer details.");
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
.round-trip {
|
|
8
8
|
width: 100%;
|
|
9
|
+
container-type: inline-size;
|
|
9
10
|
}
|
|
10
11
|
|
|
11
12
|
.round-trip__content {
|
|
@@ -37,7 +38,7 @@
|
|
|
37
38
|
line-height: 20px; /* Matches other label styles */
|
|
38
39
|
}
|
|
39
40
|
|
|
40
|
-
/*
|
|
41
|
+
/* Fallback for older browsers - use media queries */
|
|
41
42
|
|
|
42
43
|
@media (max-width: 768px) {
|
|
43
44
|
.round-trip__row {
|
|
@@ -54,8 +55,6 @@
|
|
|
54
55
|
}
|
|
55
56
|
}
|
|
56
57
|
|
|
57
|
-
/* Tablet layout */
|
|
58
|
-
|
|
59
58
|
@media (min-width: 769px) and (max-width: 1024px) {
|
|
60
59
|
.round-trip__row--first {
|
|
61
60
|
flex-wrap: wrap;
|
|
@@ -70,6 +69,41 @@
|
|
|
70
69
|
}
|
|
71
70
|
}
|
|
72
71
|
|
|
72
|
+
/* Modern browsers with container query support */
|
|
73
|
+
|
|
74
|
+
@supports (container-type: inline-size) {
|
|
75
|
+
/* Responsive layout for mobile */
|
|
76
|
+
@container (max-width: 768px) {
|
|
77
|
+
.round-trip__row {
|
|
78
|
+
flex-direction: column;
|
|
79
|
+
gap: 12px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.round-trip__field--pax,
|
|
83
|
+
.round-trip__field--dates,
|
|
84
|
+
.round-trip__field--pickup-dropoff,
|
|
85
|
+
.round-trip__field--accommodation {
|
|
86
|
+
width: 100%;
|
|
87
|
+
flex: 1 1 100%;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/* Tablet layout */
|
|
92
|
+
@container (min-width: 769px) and (max-width: 1024px) {
|
|
93
|
+
.round-trip__row--first {
|
|
94
|
+
flex-wrap: wrap;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.round-trip__field--pax {
|
|
98
|
+
flex: 0 0 calc(50% - 6px);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.round-trip__field--dates {
|
|
102
|
+
flex: 0 0 calc(50% - 6px);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
73
107
|
.round-trip__date-picker--input {
|
|
74
108
|
height: 2.75rem !important;
|
|
75
109
|
}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
width: 100%;
|
|
10
10
|
flex-direction: column;
|
|
11
11
|
gap: 0.75rem;
|
|
12
|
+
container-type: inline-size;
|
|
12
13
|
}
|
|
13
14
|
|
|
14
15
|
/* Header with icon and label */
|
|
@@ -58,7 +59,7 @@
|
|
|
58
59
|
line-height: 1.5;
|
|
59
60
|
}
|
|
60
61
|
|
|
61
|
-
/*
|
|
62
|
+
/* Fallback for older browsers - use media queries */
|
|
62
63
|
|
|
63
64
|
@media (max-width: 768px) {
|
|
64
65
|
.transfer-line__content {
|
|
@@ -78,8 +79,6 @@
|
|
|
78
79
|
}
|
|
79
80
|
}
|
|
80
81
|
|
|
81
|
-
/* Tablet layout - 2 columns */
|
|
82
|
-
|
|
83
82
|
@media (min-width: 769px) and (max-width: 1024px) {
|
|
84
83
|
.transfer-line__content {
|
|
85
84
|
flex-wrap: wrap;
|
|
@@ -93,6 +92,43 @@
|
|
|
93
92
|
}
|
|
94
93
|
}
|
|
95
94
|
|
|
95
|
+
/* Modern browsers with container query support */
|
|
96
|
+
|
|
97
|
+
@supports (container-type: inline-size) {
|
|
98
|
+
/* Mobile layout - stack fields vertically */
|
|
99
|
+
@container (max-width: 768px) {
|
|
100
|
+
.transfer-line__content {
|
|
101
|
+
flex-direction: column;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.transfer-line__field--pax,
|
|
105
|
+
.transfer-line__field--date,
|
|
106
|
+
.transfer-line__field--pickup,
|
|
107
|
+
.transfer-line__field--dropoff {
|
|
108
|
+
width: 100%;
|
|
109
|
+
flex: 1 1 100%;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.transfer-line__delete {
|
|
113
|
+
justify-content: center;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/* Tablet layout - 2 columns */
|
|
118
|
+
@container (min-width: 769px) and (max-width: 1024px) {
|
|
119
|
+
.transfer-line__content {
|
|
120
|
+
flex-wrap: wrap;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.transfer-line__field--pax,
|
|
124
|
+
.transfer-line__field--date,
|
|
125
|
+
.transfer-line__field--pickup,
|
|
126
|
+
.transfer-line__field--dropoff {
|
|
127
|
+
flex: 0 0 calc(50% - 0.25rem);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
96
132
|
.transfer-line__field-label {
|
|
97
133
|
font-size: 0.875rem;
|
|
98
134
|
line-height: 1.25rem;
|
|
@@ -136,7 +172,7 @@
|
|
|
136
172
|
}
|
|
137
173
|
|
|
138
174
|
.transfer-line__date-picker {
|
|
139
|
-
height: 2.75rem;
|
|
175
|
+
height: 2.75rem !important;
|
|
140
176
|
}
|
|
141
177
|
|
|
142
178
|
/* Disabled state */
|
package/package.json
CHANGED
|
@@ -80,8 +80,6 @@ const DateTimePicker: React.FC<DateTimePickerProps> = ({
|
|
|
80
80
|
const date = new Date(defaultValue);
|
|
81
81
|
const dateRange = { from: date, to: date };
|
|
82
82
|
const displayValue = format(date, 'dd/MM/yyyy');
|
|
83
|
-
console.log('defaultValue', defaultValue, selectionMode, displayValue);
|
|
84
|
-
|
|
85
83
|
return { value: displayValue, dateRange };
|
|
86
84
|
}
|
|
87
85
|
} catch (error) {
|
|
@@ -271,8 +271,6 @@ const RoundTrip: React.FC<RoundTripProps> = ({
|
|
|
271
271
|
};
|
|
272
272
|
|
|
273
273
|
const handleDateRangeChange = (dates: string | string[]) => {
|
|
274
|
-
console.log({dates});
|
|
275
|
-
|
|
276
274
|
if (Array.isArray(dates)) {
|
|
277
275
|
setInternalArrivalDate(dates?.[0]);
|
|
278
276
|
setInternalDepartureDate(dates?.[1]);
|
|
@@ -332,14 +330,12 @@ const RoundTrip: React.FC<RoundTripProps> = ({
|
|
|
332
330
|
|
|
333
331
|
// Check if user filled one date but not the other (even without checkEmpty)
|
|
334
332
|
const hasPartialDates = (): boolean => {
|
|
335
|
-
console.log({checkEmpty, internalArrivalDate, internalDepartureDate});
|
|
336
333
|
if (!checkEmpty) return false;
|
|
337
334
|
if (!internalArrivalDate || !internalDepartureDate) return true;
|
|
338
335
|
return internalArrivalDate === internalDepartureDate;
|
|
339
336
|
};
|
|
340
337
|
|
|
341
338
|
const isDateError = (): boolean => {
|
|
342
|
-
console.log('isDateEmpty', isDateEmpty, hasPartialDates());
|
|
343
339
|
return isDateEmpty || hasPartialDates();
|
|
344
340
|
};
|
|
345
341
|
|
|
@@ -208,8 +208,6 @@ const SearchBarTransfer: React.FC<SearchBarTransferProps> = ({
|
|
|
208
208
|
|
|
209
209
|
for (let i = transferLines.length - 1; i >= 0; i--) {
|
|
210
210
|
if (transferLines[i].paxData) {
|
|
211
|
-
console.log({i});
|
|
212
|
-
|
|
213
211
|
return transferLines[i].paxData;
|
|
214
212
|
}
|
|
215
213
|
}
|
|
@@ -426,8 +424,7 @@ const SearchBarTransfer: React.FC<SearchBarTransferProps> = ({
|
|
|
426
424
|
// Check if required fields are filled
|
|
427
425
|
if (
|
|
428
426
|
!roundTripData.paxData ||
|
|
429
|
-
|
|
430
|
-
!roundTripData.departureDate ||
|
|
427
|
+
roundTripData.arrivalDate === roundTripData.departureDate ||
|
|
431
428
|
!roundTripData.pickupDropoffPoint ||
|
|
432
429
|
!roundTripData.accommodation
|
|
433
430
|
) {
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
.round-trip {
|
|
4
4
|
@apply w-full;
|
|
5
|
+
container-type: inline-size;
|
|
5
6
|
}
|
|
6
7
|
|
|
7
8
|
.round-trip__content {
|
|
@@ -23,7 +24,7 @@
|
|
|
23
24
|
line-height: 20px; /* Matches other label styles */
|
|
24
25
|
}
|
|
25
26
|
|
|
26
|
-
/*
|
|
27
|
+
/* Fallback for older browsers - use media queries */
|
|
27
28
|
@media (max-width: 768px) {
|
|
28
29
|
.round-trip__row {
|
|
29
30
|
@apply flex-col;
|
|
@@ -39,7 +40,6 @@
|
|
|
39
40
|
}
|
|
40
41
|
}
|
|
41
42
|
|
|
42
|
-
/* Tablet layout */
|
|
43
43
|
@media (min-width: 769px) and (max-width: 1024px) {
|
|
44
44
|
.round-trip__row--first {
|
|
45
45
|
@apply flex-wrap;
|
|
@@ -54,6 +54,40 @@
|
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
+
/* Modern browsers with container query support */
|
|
58
|
+
@supports (container-type: inline-size) {
|
|
59
|
+
/* Responsive layout for mobile */
|
|
60
|
+
@container (max-width: 768px) {
|
|
61
|
+
.round-trip__row {
|
|
62
|
+
@apply flex-col;
|
|
63
|
+
gap: 12px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.round-trip__field--pax,
|
|
67
|
+
.round-trip__field--dates,
|
|
68
|
+
.round-trip__field--pickup-dropoff,
|
|
69
|
+
.round-trip__field--accommodation {
|
|
70
|
+
@apply w-full;
|
|
71
|
+
flex: 1 1 100%;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/* Tablet layout */
|
|
76
|
+
@container (min-width: 769px) and (max-width: 1024px) {
|
|
77
|
+
.round-trip__row--first {
|
|
78
|
+
@apply flex-wrap;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.round-trip__field--pax {
|
|
82
|
+
flex: 0 0 calc(50% - 6px);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.round-trip__field--dates {
|
|
86
|
+
flex: 0 0 calc(50% - 6px);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
57
91
|
.round-trip__date-picker--input {
|
|
58
92
|
@apply !h-11;
|
|
59
93
|
}
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
.transfer-line {
|
|
4
4
|
@apply w-full flex flex-col gap-3;
|
|
5
|
+
container-type: inline-size;
|
|
5
6
|
}
|
|
6
7
|
|
|
7
8
|
/* Header with icon and label */
|
|
@@ -35,7 +36,7 @@
|
|
|
35
36
|
line-height: 1.5;
|
|
36
37
|
}
|
|
37
38
|
|
|
38
|
-
/*
|
|
39
|
+
/* Fallback for older browsers - use media queries */
|
|
39
40
|
@media (max-width: 768px) {
|
|
40
41
|
.transfer-line__content {
|
|
41
42
|
@apply flex-col;
|
|
@@ -54,7 +55,6 @@
|
|
|
54
55
|
}
|
|
55
56
|
}
|
|
56
57
|
|
|
57
|
-
/* Tablet layout - 2 columns */
|
|
58
58
|
@media (min-width: 769px) and (max-width: 1024px) {
|
|
59
59
|
.transfer-line__content {
|
|
60
60
|
@apply flex-wrap;
|
|
@@ -68,6 +68,42 @@
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
+
/* Modern browsers with container query support */
|
|
72
|
+
@supports (container-type: inline-size) {
|
|
73
|
+
/* Mobile layout - stack fields vertically */
|
|
74
|
+
@container (max-width: 768px) {
|
|
75
|
+
.transfer-line__content {
|
|
76
|
+
@apply flex-col;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.transfer-line__field--pax,
|
|
80
|
+
.transfer-line__field--date,
|
|
81
|
+
.transfer-line__field--pickup,
|
|
82
|
+
.transfer-line__field--dropoff {
|
|
83
|
+
@apply w-full;
|
|
84
|
+
flex: 1 1 100%;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.transfer-line__delete {
|
|
88
|
+
@apply justify-center;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/* Tablet layout - 2 columns */
|
|
93
|
+
@container (min-width: 769px) and (max-width: 1024px) {
|
|
94
|
+
.transfer-line__content {
|
|
95
|
+
@apply flex-wrap;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.transfer-line__field--pax,
|
|
99
|
+
.transfer-line__field--date,
|
|
100
|
+
.transfer-line__field--pickup,
|
|
101
|
+
.transfer-line__field--dropoff {
|
|
102
|
+
flex: 0 0 calc(50% - 0.25rem);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
71
107
|
.transfer-line__field-label {
|
|
72
108
|
@apply text-[var(--color-neutral-800)] text-sm font-normal;
|
|
73
109
|
}
|
|
@@ -86,7 +122,7 @@
|
|
|
86
122
|
}
|
|
87
123
|
|
|
88
124
|
.transfer-line__date-picker {
|
|
89
|
-
@apply h-11;
|
|
125
|
+
@apply !h-11;
|
|
90
126
|
}
|
|
91
127
|
|
|
92
128
|
/* Disabled state */
|