@mirai/core 0.3.326 → 0.3.328
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/README.md +5 -1
- package/build/components/BannerLoyalty/BannerLoyalty.js +22 -8
- package/build/components/BannerLoyalty/BannerLoyalty.js.map +1 -1
- package/build/components/BannerLoyalty/BannerLoyalty.l10n.js +9 -0
- package/build/components/BannerLoyalty/BannerLoyalty.l10n.js.map +1 -1
- package/build/components/Booking/Booking.js +1 -0
- package/build/components/Booking/Booking.js.map +1 -1
- package/build/components/Booking/__tests__/__snapshots__/Booking.test.js.snap +10 -10
- package/build/components/Booking/components/Hotelverse/Hotelverse.js +0 -1
- package/build/components/Booking/components/Hotelverse/Hotelverse.js.map +1 -1
- package/build/components/Booking/partials/Booking.Information.js +0 -1
- package/build/components/Booking/partials/Booking.Information.js.map +1 -1
- package/build/components/Booking/partials/Booking.Payment.js +0 -1
- package/build/components/Booking/partials/Booking.Payment.js.map +1 -1
- package/build/components/Booking/partials/__tests__/__snapshots__/Booking.Details.test.js.snap +8 -8
- package/build/components/Checkout/Checkout.js +0 -1
- package/build/components/Checkout/Checkout.js.map +1 -1
- package/build/components/Checkout/__tests__/__snapshots__/Checkout.test.js.snap +16 -16
- package/build/components/Checkout/helpers/getFieldProps.js +0 -2
- package/build/components/Checkout/helpers/getFieldProps.js.map +1 -1
- package/build/components/Deals/Deals.js +4 -5
- package/build/components/Deals/Deals.js.map +1 -1
- package/build/components/Deals/Deals.module.css +0 -9
- package/build/components/Deals/__tests__/__snapshots__/Deals.test.js.snap +40 -20
- package/build/components/Finder/Finder.compact.js +2 -2
- package/build/components/Finder/Finder.compact.js.map +1 -1
- package/build/components/Finder/Finder.module.css +2 -1
- package/build/components/Finder/__tests__/__snapshots__/Finder.test.js.snap +126 -56
- package/build/components/Profile/components/Bookings/Bookings.js +2 -3
- package/build/components/Profile/components/Bookings/Bookings.js.map +1 -1
- package/build/components/Profile/components/Settings/Settings.Signout.js +2 -1
- package/build/components/Profile/components/Settings/Settings.Signout.js.map +1 -1
- package/build/components/Rates/Rates.Header.js +8 -100
- package/build/components/Rates/Rates.Header.js.map +1 -1
- package/build/components/Rates/Rates.RoomSelector.js +1 -1
- package/build/components/Rates/Rates.RoomSelector.js.map +1 -1
- package/build/components/Rates/Rates.Unavailability.js +0 -2
- package/build/components/Rates/Rates.Unavailability.js.map +1 -1
- package/build/components/Rates/Rates.constants.js +8 -2
- package/build/components/Rates/Rates.constants.js.map +1 -1
- package/build/components/Rates/Rates.js +65 -23
- package/build/components/Rates/Rates.js.map +1 -1
- package/build/components/Rates/Rates.l10n.js +3 -30
- package/build/components/Rates/Rates.l10n.js.map +1 -1
- package/build/components/Rates/Rates.module.css +22 -63
- package/build/components/Rates/components/CardHotel/CardHotel.js +0 -1
- package/build/components/Rates/components/CardHotel/CardHotel.js.map +1 -1
- package/build/components/Rates/components/ClubRate/ClubRate.js +7 -4
- package/build/components/Rates/components/ClubRate/ClubRate.js.map +1 -1
- package/build/components/Rates/components/Filters/Filters.Amenity.js +33 -0
- package/build/components/Rates/components/Filters/Filters.Amenity.js.map +1 -0
- package/build/components/Rates/components/Filters/Filters.BookingOption.js +50 -0
- package/build/components/Rates/components/Filters/Filters.BookingOption.js.map +1 -0
- package/build/components/Rates/components/Filters/Filters.Button.js +47 -0
- package/build/components/Rates/components/Filters/Filters.Button.js.map +1 -0
- package/build/components/Rates/components/Filters/Filters.constants.js +36 -0
- package/build/components/Rates/components/Filters/Filters.constants.js.map +1 -0
- package/build/components/Rates/components/Filters/Filters.js +370 -0
- package/build/components/Rates/components/Filters/Filters.js.map +1 -0
- package/build/components/Rates/components/Filters/Filters.l10n.js +78 -0
- package/build/components/Rates/components/Filters/Filters.l10n.js.map +1 -0
- package/build/components/Rates/components/Filters/Filters.module.css +107 -0
- package/build/components/Rates/components/Filters/components/InputRange/InputRange.js +132 -0
- package/build/components/Rates/components/Filters/components/InputRange/InputRange.js.map +1 -0
- package/build/components/Rates/components/Filters/components/InputRange/InputRange.l10n.js +15 -0
- package/build/components/Rates/components/Filters/components/InputRange/InputRange.l10n.js.map +1 -0
- package/build/components/Rates/components/Filters/components/InputRange/InputRange.module.css +95 -0
- package/build/components/Rates/components/Filters/components/InputRange/helpers/getHistogram.js +50 -0
- package/build/components/Rates/components/Filters/components/InputRange/helpers/getHistogram.js.map +1 -0
- package/build/components/Rates/components/Filters/components/InputRange/helpers/index.js +17 -0
- package/build/components/Rates/components/Filters/components/InputRange/helpers/index.js.map +1 -0
- package/build/components/Rates/components/Filters/components/InputRange/index.js +17 -0
- package/build/components/Rates/components/Filters/components/InputRange/index.js.map +1 -0
- package/build/components/Rates/components/Filters/components/index.js +17 -0
- package/build/components/Rates/components/Filters/components/index.js.map +1 -0
- package/build/components/Rates/components/Filters/helpers/countFilters.js +17 -0
- package/build/components/Rates/components/Filters/helpers/countFilters.js.map +1 -0
- package/build/components/Rates/components/Filters/helpers/getAvailableFilters.js +113 -0
- package/build/components/Rates/components/Filters/helpers/getAvailableFilters.js.map +1 -0
- package/build/components/Rates/components/Filters/helpers/getStrictSearch.js +16 -0
- package/build/components/Rates/components/Filters/helpers/getStrictSearch.js.map +1 -0
- package/build/components/Rates/components/Filters/helpers/index.js +27 -0
- package/build/components/Rates/components/Filters/helpers/index.js.map +1 -0
- package/build/components/Rates/components/Filters/index.js +17 -0
- package/build/components/Rates/components/Filters/index.js.map +1 -0
- package/build/components/Rates/components/Hotelverse/Hotelverse.js +6 -15
- package/build/components/Rates/components/Hotelverse/Hotelverse.js.map +1 -1
- package/build/components/Rates/components/Item/Item.Preview.js +2 -2
- package/build/components/Rates/components/Item/Item.Preview.js.map +1 -1
- package/build/components/Rates/components/Item/Item.Rates.js +2 -2
- package/build/components/Rates/components/Item/Item.Rates.js.map +1 -1
- package/build/components/Rates/components/Item/Item.js +17 -9
- package/build/components/Rates/components/Item/Item.js.map +1 -1
- package/build/components/Rates/components/Item/Item.module.css +1 -1
- package/build/components/Rates/components/Item/components/Features/Features.js +1 -2
- package/build/components/Rates/components/Item/components/Features/Features.js.map +1 -1
- package/build/components/Rates/components/Item/components/ModalInfo/ModalInfo.js +2 -1
- package/build/components/Rates/components/Item/components/ModalInfo/ModalInfo.js.map +1 -1
- package/build/components/Rates/components/Item/components/ModalInfo/ModalInfo.module.css +3 -0
- package/build/components/Rates/components/Item/components/Option/Option.js +7 -1
- package/build/components/Rates/components/Item/components/Option/Option.js.map +1 -1
- package/build/components/Rates/components/Item/components/PriceDetails/PriceDetails.js +1 -1
- package/build/components/Rates/components/Item/components/PriceDetails/PriceDetails.js.map +1 -1
- package/build/components/Rates/components/Item/components/RateDetails/RateDetails.js +2 -2
- package/build/components/Rates/components/Item/components/RateDetails/RateDetails.js.map +1 -1
- package/build/components/Rates/components/Item/components/TooltipDates/TooltipDates.js +1 -4
- package/build/components/Rates/components/Item/components/TooltipDates/TooltipDates.js.map +1 -1
- package/build/components/Rates/components/ModalExtras/ModalExtras.module.css +2 -1
- package/build/components/Rates/components/ModalMapView/ModalMapView.js +1 -1
- package/build/components/Rates/components/ModalMapView/ModalMapView.js.map +1 -1
- package/build/components/Rates/components/index.js +11 -0
- package/build/components/Rates/components/index.js.map +1 -1
- package/build/components/Rates/helpers/fetchRates.js +62 -0
- package/build/components/Rates/helpers/fetchRates.js.map +1 -0
- package/build/components/Rates/helpers/filterItem.js +95 -0
- package/build/components/Rates/helpers/filterItem.js.map +1 -0
- package/build/components/Rates/helpers/index.js +33 -0
- package/build/components/Rates/helpers/index.js.map +1 -1
- package/build/components/Rates/helpers/select.js +57 -0
- package/build/components/Rates/helpers/select.js.map +1 -0
- package/build/components/Session/Session.Login.Modal.js +8 -8
- package/build/components/Session/Session.Login.Modal.js.map +1 -1
- package/build/components/Session/Session.module.css +6 -1
- package/build/components/Session/__tests__/__snapshots__/Session.test.js.snap +12 -12
- package/build/components/__shared__/BookingSummary/BookingSummary.js +4 -4
- package/build/components/__shared__/BookingSummary/BookingSummary.js.map +1 -1
- package/build/components/__shared__/BookingTerms/BookingTerms.js +0 -2
- package/build/components/__shared__/BookingTerms/BookingTerms.js.map +1 -1
- package/build/components/__shared__/BookingTerms/__tests__/__snapshots__/BookingTerms.test.js.snap +4 -4
- package/build/components/__shared__/ButtonMore/ButtonMore.js +4 -3
- package/build/components/__shared__/ButtonMore/ButtonMore.js.map +1 -1
- package/build/components/__shared__/ButtonMore/__tests__/__snapshots__/ButtonMore.test.js.snap +6 -6
- package/build/components/__shared__/FieldOccupation/__tests__/__snapshots__/FieldOccupation.test.js.snap +36 -36
- package/build/components/__shared__/FieldPromocode/FieldPromocode.constants.js +8 -0
- package/build/components/__shared__/FieldPromocode/FieldPromocode.constants.js.map +1 -0
- package/build/components/__shared__/FieldPromocode/FieldPromocode.js +12 -4
- package/build/components/__shared__/FieldPromocode/FieldPromocode.js.map +1 -1
- package/build/components/__shared__/FieldPromocode/FieldPromocode.l10n.js +5 -1
- package/build/components/__shared__/FieldPromocode/FieldPromocode.l10n.js.map +1 -1
- package/build/components/__shared__/FieldPromocode/FieldPromocode.module.css +1 -1
- package/build/components/__shared__/FieldPromocode/__tests__/__snapshots__/FieldPromocode.test.jsx.snap +20 -0
- package/build/components/__shared__/Footer/Footer.js +0 -3
- package/build/components/__shared__/Footer/Footer.js.map +1 -1
- package/build/components/__shared__/Footer/__tests__/__snapshots__/Footer.test.js.snap +8 -8
- package/build/components/__shared__/NotificationRequiredFields/NotificationRequiredFields.js +0 -1
- package/build/components/__shared__/NotificationRequiredFields/NotificationRequiredFields.js.map +1 -1
- package/build/components/__shared__/Occupation/Occupation.js +0 -1
- package/build/components/__shared__/Occupation/Occupation.js.map +1 -1
- package/build/components/__shared__/Occupation/__tests__/__snapshots__/Occupation.test.js.snap +66 -66
- package/build/components/helpers/ICON.js +2 -0
- package/build/components/helpers/ICON.js.map +1 -1
- package/build/components/helpers/__tests__/__snapshots__/parseHtml.test.js.snap +4 -4
- package/build/components/helpers/constants.js +1 -0
- package/build/components/helpers/constants.js.map +1 -1
- package/build/helpers/consolidateStore.js +1 -1
- package/build/helpers/consolidateStore.js.map +1 -1
- package/package.json +1 -1
- package/public/App.Container.jsx +2 -7
- package/public/themes/monalisa.theme.css +10 -3
package/build/components/__shared__/Occupation/__tests__/__snapshots__/Occupation.test.js.snap
CHANGED
|
@@ -57,7 +57,7 @@ exports[` 1`] = `
|
|
|
57
57
|
count.room
|
|
58
58
|
</span>
|
|
59
59
|
<button
|
|
60
|
-
class="pressable action
|
|
60
|
+
class="pressable action small"
|
|
61
61
|
>
|
|
62
62
|
finder.action.remove
|
|
63
63
|
</button>
|
|
@@ -80,7 +80,7 @@ exports[` 1`] = `
|
|
|
80
80
|
</span>
|
|
81
81
|
</div>
|
|
82
82
|
<button
|
|
83
|
-
class="pressable disabled button squared disabled"
|
|
83
|
+
class="pressable disabled button small squared disabled"
|
|
84
84
|
disabled=""
|
|
85
85
|
>
|
|
86
86
|
<span
|
|
@@ -111,7 +111,7 @@ exports[` 1`] = `
|
|
|
111
111
|
2
|
|
112
112
|
</span>
|
|
113
113
|
<button
|
|
114
|
-
class="pressable button squared secondary"
|
|
114
|
+
class="pressable button small squared secondary"
|
|
115
115
|
>
|
|
116
116
|
<span
|
|
117
117
|
class="icon headline-3"
|
|
@@ -160,7 +160,7 @@ exports[` 1`] = `
|
|
|
160
160
|
</span>
|
|
161
161
|
</div>
|
|
162
162
|
<button
|
|
163
|
-
class="pressable button squared secondary"
|
|
163
|
+
class="pressable button small squared secondary"
|
|
164
164
|
>
|
|
165
165
|
<span
|
|
166
166
|
class="icon headline-3"
|
|
@@ -190,7 +190,7 @@ exports[` 1`] = `
|
|
|
190
190
|
2
|
|
191
191
|
</span>
|
|
192
192
|
<button
|
|
193
|
-
class="pressable disabled button squared disabled"
|
|
193
|
+
class="pressable disabled button small squared disabled"
|
|
194
194
|
disabled=""
|
|
195
195
|
>
|
|
196
196
|
<span
|
|
@@ -516,7 +516,7 @@ exports[` 1`] = `
|
|
|
516
516
|
count.room
|
|
517
517
|
</span>
|
|
518
518
|
<button
|
|
519
|
-
class="pressable action
|
|
519
|
+
class="pressable action small"
|
|
520
520
|
>
|
|
521
521
|
finder.action.remove
|
|
522
522
|
</button>
|
|
@@ -539,7 +539,7 @@ exports[` 1`] = `
|
|
|
539
539
|
</span>
|
|
540
540
|
</div>
|
|
541
541
|
<button
|
|
542
|
-
class="pressable disabled button squared disabled"
|
|
542
|
+
class="pressable disabled button small squared disabled"
|
|
543
543
|
disabled=""
|
|
544
544
|
>
|
|
545
545
|
<span
|
|
@@ -570,7 +570,7 @@ exports[` 1`] = `
|
|
|
570
570
|
2
|
|
571
571
|
</span>
|
|
572
572
|
<button
|
|
573
|
-
class="pressable button squared secondary"
|
|
573
|
+
class="pressable button small squared secondary"
|
|
574
574
|
>
|
|
575
575
|
<span
|
|
576
576
|
class="icon headline-3"
|
|
@@ -619,7 +619,7 @@ exports[` 1`] = `
|
|
|
619
619
|
</span>
|
|
620
620
|
</div>
|
|
621
621
|
<button
|
|
622
|
-
class="pressable disabled button squared disabled"
|
|
622
|
+
class="pressable disabled button small squared disabled"
|
|
623
623
|
disabled=""
|
|
624
624
|
>
|
|
625
625
|
<span
|
|
@@ -650,7 +650,7 @@ exports[` 1`] = `
|
|
|
650
650
|
0
|
|
651
651
|
</span>
|
|
652
652
|
<button
|
|
653
|
-
class="pressable button squared secondary"
|
|
653
|
+
class="pressable button small squared secondary"
|
|
654
654
|
>
|
|
655
655
|
<span
|
|
656
656
|
class="icon headline-3"
|
|
@@ -736,7 +736,7 @@ exports[`component:<Occupation> adding a new room 1`] = `
|
|
|
736
736
|
</span>
|
|
737
737
|
</div>
|
|
738
738
|
<button
|
|
739
|
-
class="pressable disabled button squared disabled"
|
|
739
|
+
class="pressable disabled button small squared disabled"
|
|
740
740
|
disabled=""
|
|
741
741
|
>
|
|
742
742
|
<span
|
|
@@ -767,7 +767,7 @@ exports[`component:<Occupation> adding a new room 1`] = `
|
|
|
767
767
|
2
|
|
768
768
|
</span>
|
|
769
769
|
<button
|
|
770
|
-
class="pressable button squared secondary"
|
|
770
|
+
class="pressable button small squared secondary"
|
|
771
771
|
>
|
|
772
772
|
<span
|
|
773
773
|
class="icon headline-3"
|
|
@@ -816,7 +816,7 @@ exports[`component:<Occupation> adding a new room 1`] = `
|
|
|
816
816
|
</span>
|
|
817
817
|
</div>
|
|
818
818
|
<button
|
|
819
|
-
class="pressable disabled button squared disabled"
|
|
819
|
+
class="pressable disabled button small squared disabled"
|
|
820
820
|
disabled=""
|
|
821
821
|
>
|
|
822
822
|
<span
|
|
@@ -847,7 +847,7 @@ exports[`component:<Occupation> adding a new room 1`] = `
|
|
|
847
847
|
0
|
|
848
848
|
</span>
|
|
849
849
|
<button
|
|
850
|
-
class="pressable button squared secondary"
|
|
850
|
+
class="pressable button small squared secondary"
|
|
851
851
|
>
|
|
852
852
|
<span
|
|
853
853
|
class="icon headline-3"
|
|
@@ -933,7 +933,7 @@ exports[`component:<Occupation> inherit:className 1`] = `
|
|
|
933
933
|
</span>
|
|
934
934
|
</div>
|
|
935
935
|
<button
|
|
936
|
-
class="pressable disabled button squared disabled"
|
|
936
|
+
class="pressable disabled button small squared disabled"
|
|
937
937
|
disabled=""
|
|
938
938
|
>
|
|
939
939
|
<span
|
|
@@ -964,7 +964,7 @@ exports[`component:<Occupation> inherit:className 1`] = `
|
|
|
964
964
|
2
|
|
965
965
|
</span>
|
|
966
966
|
<button
|
|
967
|
-
class="pressable button squared secondary"
|
|
967
|
+
class="pressable button small squared secondary"
|
|
968
968
|
>
|
|
969
969
|
<span
|
|
970
970
|
class="icon headline-3"
|
|
@@ -1013,7 +1013,7 @@ exports[`component:<Occupation> inherit:className 1`] = `
|
|
|
1013
1013
|
</span>
|
|
1014
1014
|
</div>
|
|
1015
1015
|
<button
|
|
1016
|
-
class="pressable disabled button squared disabled"
|
|
1016
|
+
class="pressable disabled button small squared disabled"
|
|
1017
1017
|
disabled=""
|
|
1018
1018
|
>
|
|
1019
1019
|
<span
|
|
@@ -1044,7 +1044,7 @@ exports[`component:<Occupation> inherit:className 1`] = `
|
|
|
1044
1044
|
0
|
|
1045
1045
|
</span>
|
|
1046
1046
|
<button
|
|
1047
|
-
class="pressable button squared secondary"
|
|
1047
|
+
class="pressable button small squared secondary"
|
|
1048
1048
|
>
|
|
1049
1049
|
<span
|
|
1050
1050
|
class="icon headline-3"
|
|
@@ -1129,7 +1129,7 @@ exports[`component:<Occupation> prop:dataSource 1`] = `
|
|
|
1129
1129
|
</span>
|
|
1130
1130
|
</div>
|
|
1131
1131
|
<button
|
|
1132
|
-
class="pressable disabled button squared disabled"
|
|
1132
|
+
class="pressable disabled button small squared disabled"
|
|
1133
1133
|
disabled=""
|
|
1134
1134
|
>
|
|
1135
1135
|
<span
|
|
@@ -1160,7 +1160,7 @@ exports[`component:<Occupation> prop:dataSource 1`] = `
|
|
|
1160
1160
|
2
|
|
1161
1161
|
</span>
|
|
1162
1162
|
<button
|
|
1163
|
-
class="pressable button squared secondary"
|
|
1163
|
+
class="pressable button small squared secondary"
|
|
1164
1164
|
>
|
|
1165
1165
|
<span
|
|
1166
1166
|
class="icon headline-3"
|
|
@@ -1209,7 +1209,7 @@ exports[`component:<Occupation> prop:dataSource 1`] = `
|
|
|
1209
1209
|
</span>
|
|
1210
1210
|
</div>
|
|
1211
1211
|
<button
|
|
1212
|
-
class="pressable disabled button squared disabled"
|
|
1212
|
+
class="pressable disabled button small squared disabled"
|
|
1213
1213
|
disabled=""
|
|
1214
1214
|
>
|
|
1215
1215
|
<span
|
|
@@ -1240,7 +1240,7 @@ exports[`component:<Occupation> prop:dataSource 1`] = `
|
|
|
1240
1240
|
0
|
|
1241
1241
|
</span>
|
|
1242
1242
|
<button
|
|
1243
|
-
class="pressable button squared secondary"
|
|
1243
|
+
class="pressable button small squared secondary"
|
|
1244
1244
|
>
|
|
1245
1245
|
<span
|
|
1246
1246
|
class="icon headline-3"
|
|
@@ -1324,7 +1324,7 @@ exports[`component:<Occupation> prop:maxRooms 1`] = `
|
|
|
1324
1324
|
</span>
|
|
1325
1325
|
</div>
|
|
1326
1326
|
<button
|
|
1327
|
-
class="pressable button squared secondary"
|
|
1327
|
+
class="pressable button small squared secondary"
|
|
1328
1328
|
>
|
|
1329
1329
|
<span
|
|
1330
1330
|
class="icon headline-3"
|
|
@@ -1354,7 +1354,7 @@ exports[`component:<Occupation> prop:maxRooms 1`] = `
|
|
|
1354
1354
|
2
|
|
1355
1355
|
</span>
|
|
1356
1356
|
<button
|
|
1357
|
-
class="pressable button squared secondary"
|
|
1357
|
+
class="pressable button small squared secondary"
|
|
1358
1358
|
>
|
|
1359
1359
|
<span
|
|
1360
1360
|
class="icon headline-3"
|
|
@@ -1403,7 +1403,7 @@ exports[`component:<Occupation> prop:maxRooms 1`] = `
|
|
|
1403
1403
|
</span>
|
|
1404
1404
|
</div>
|
|
1405
1405
|
<button
|
|
1406
|
-
class="pressable disabled button squared disabled"
|
|
1406
|
+
class="pressable disabled button small squared disabled"
|
|
1407
1407
|
disabled=""
|
|
1408
1408
|
>
|
|
1409
1409
|
<span
|
|
@@ -1434,7 +1434,7 @@ exports[`component:<Occupation> prop:maxRooms 1`] = `
|
|
|
1434
1434
|
0
|
|
1435
1435
|
</span>
|
|
1436
1436
|
<button
|
|
1437
|
-
class="pressable button squared secondary"
|
|
1437
|
+
class="pressable button small squared secondary"
|
|
1438
1438
|
>
|
|
1439
1439
|
<span
|
|
1440
1440
|
class="icon headline-3"
|
|
@@ -1519,7 +1519,7 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
|
|
|
1519
1519
|
</span>
|
|
1520
1520
|
</div>
|
|
1521
1521
|
<button
|
|
1522
|
-
class="pressable button squared secondary"
|
|
1522
|
+
class="pressable button small squared secondary"
|
|
1523
1523
|
>
|
|
1524
1524
|
<span
|
|
1525
1525
|
class="icon headline-3"
|
|
@@ -1549,7 +1549,7 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
|
|
|
1549
1549
|
2
|
|
1550
1550
|
</span>
|
|
1551
1551
|
<button
|
|
1552
|
-
class="pressable button squared secondary"
|
|
1552
|
+
class="pressable button small squared secondary"
|
|
1553
1553
|
>
|
|
1554
1554
|
<span
|
|
1555
1555
|
class="icon headline-3"
|
|
@@ -1598,7 +1598,7 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
|
|
|
1598
1598
|
</span>
|
|
1599
1599
|
</div>
|
|
1600
1600
|
<button
|
|
1601
|
-
class="pressable disabled button squared disabled"
|
|
1601
|
+
class="pressable disabled button small squared disabled"
|
|
1602
1602
|
disabled=""
|
|
1603
1603
|
>
|
|
1604
1604
|
<span
|
|
@@ -1629,7 +1629,7 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
|
|
|
1629
1629
|
0
|
|
1630
1630
|
</span>
|
|
1631
1631
|
<button
|
|
1632
|
-
class="pressable button squared secondary"
|
|
1632
|
+
class="pressable button small squared secondary"
|
|
1633
1633
|
>
|
|
1634
1634
|
<span
|
|
1635
1635
|
class="icon headline-3"
|
|
@@ -1691,7 +1691,7 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
|
|
|
1691
1691
|
</span>
|
|
1692
1692
|
</div>
|
|
1693
1693
|
<button
|
|
1694
|
-
class="pressable button squared secondary"
|
|
1694
|
+
class="pressable button small squared secondary"
|
|
1695
1695
|
>
|
|
1696
1696
|
<span
|
|
1697
1697
|
class="icon headline-3"
|
|
@@ -1721,7 +1721,7 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
|
|
|
1721
1721
|
2
|
|
1722
1722
|
</span>
|
|
1723
1723
|
<button
|
|
1724
|
-
class="pressable button squared secondary"
|
|
1724
|
+
class="pressable button small squared secondary"
|
|
1725
1725
|
>
|
|
1726
1726
|
<span
|
|
1727
1727
|
class="icon headline-3"
|
|
@@ -1770,7 +1770,7 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
|
|
|
1770
1770
|
</span>
|
|
1771
1771
|
</div>
|
|
1772
1772
|
<button
|
|
1773
|
-
class="pressable disabled button squared disabled"
|
|
1773
|
+
class="pressable disabled button small squared disabled"
|
|
1774
1774
|
disabled=""
|
|
1775
1775
|
>
|
|
1776
1776
|
<span
|
|
@@ -1801,7 +1801,7 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
|
|
|
1801
1801
|
0
|
|
1802
1802
|
</span>
|
|
1803
1803
|
<button
|
|
1804
|
-
class="pressable button squared secondary"
|
|
1804
|
+
class="pressable button small squared secondary"
|
|
1805
1805
|
>
|
|
1806
1806
|
<span
|
|
1807
1807
|
class="icon headline-3"
|
|
@@ -1885,7 +1885,7 @@ exports[`component:<Occupation> prop:text 1`] = `
|
|
|
1885
1885
|
</span>
|
|
1886
1886
|
</div>
|
|
1887
1887
|
<button
|
|
1888
|
-
class="pressable button squared secondary"
|
|
1888
|
+
class="pressable button small squared secondary"
|
|
1889
1889
|
>
|
|
1890
1890
|
<span
|
|
1891
1891
|
class="icon headline-3"
|
|
@@ -1915,7 +1915,7 @@ exports[`component:<Occupation> prop:text 1`] = `
|
|
|
1915
1915
|
2
|
|
1916
1916
|
</span>
|
|
1917
1917
|
<button
|
|
1918
|
-
class="pressable button squared secondary"
|
|
1918
|
+
class="pressable button small squared secondary"
|
|
1919
1919
|
>
|
|
1920
1920
|
<span
|
|
1921
1921
|
class="icon headline-3"
|
|
@@ -1964,7 +1964,7 @@ exports[`component:<Occupation> prop:text 1`] = `
|
|
|
1964
1964
|
</span>
|
|
1965
1965
|
</div>
|
|
1966
1966
|
<button
|
|
1967
|
-
class="pressable disabled button squared disabled"
|
|
1967
|
+
class="pressable disabled button small squared disabled"
|
|
1968
1968
|
disabled=""
|
|
1969
1969
|
>
|
|
1970
1970
|
<span
|
|
@@ -1995,7 +1995,7 @@ exports[`component:<Occupation> prop:text 1`] = `
|
|
|
1995
1995
|
0
|
|
1996
1996
|
</span>
|
|
1997
1997
|
<button
|
|
1998
|
-
class="pressable button squared secondary"
|
|
1998
|
+
class="pressable button small squared secondary"
|
|
1999
1999
|
>
|
|
2000
2000
|
<span
|
|
2001
2001
|
class="icon headline-3"
|
|
@@ -2102,7 +2102,7 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
|
|
|
2102
2102
|
count.room
|
|
2103
2103
|
</span>
|
|
2104
2104
|
<button
|
|
2105
|
-
class="pressable action
|
|
2105
|
+
class="pressable action small"
|
|
2106
2106
|
>
|
|
2107
2107
|
finder.action.remove
|
|
2108
2108
|
</button>
|
|
@@ -2125,7 +2125,7 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
|
|
|
2125
2125
|
</span>
|
|
2126
2126
|
</div>
|
|
2127
2127
|
<button
|
|
2128
|
-
class="pressable disabled button squared disabled"
|
|
2128
|
+
class="pressable disabled button small squared disabled"
|
|
2129
2129
|
disabled=""
|
|
2130
2130
|
>
|
|
2131
2131
|
<span
|
|
@@ -2156,7 +2156,7 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
|
|
|
2156
2156
|
2
|
|
2157
2157
|
</span>
|
|
2158
2158
|
<button
|
|
2159
|
-
class="pressable button squared secondary"
|
|
2159
|
+
class="pressable button small squared secondary"
|
|
2160
2160
|
>
|
|
2161
2161
|
<span
|
|
2162
2162
|
class="icon headline-3"
|
|
@@ -2205,7 +2205,7 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
|
|
|
2205
2205
|
</span>
|
|
2206
2206
|
</div>
|
|
2207
2207
|
<button
|
|
2208
|
-
class="pressable button squared secondary"
|
|
2208
|
+
class="pressable button small squared secondary"
|
|
2209
2209
|
>
|
|
2210
2210
|
<span
|
|
2211
2211
|
class="icon headline-3"
|
|
@@ -2235,7 +2235,7 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
|
|
|
2235
2235
|
2
|
|
2236
2236
|
</span>
|
|
2237
2237
|
<button
|
|
2238
|
-
class="pressable disabled button squared disabled"
|
|
2238
|
+
class="pressable disabled button small squared disabled"
|
|
2239
2239
|
disabled=""
|
|
2240
2240
|
>
|
|
2241
2241
|
<span
|
|
@@ -2561,7 +2561,7 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
|
|
|
2561
2561
|
count.room
|
|
2562
2562
|
</span>
|
|
2563
2563
|
<button
|
|
2564
|
-
class="pressable action
|
|
2564
|
+
class="pressable action small"
|
|
2565
2565
|
>
|
|
2566
2566
|
finder.action.remove
|
|
2567
2567
|
</button>
|
|
@@ -2584,7 +2584,7 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
|
|
|
2584
2584
|
</span>
|
|
2585
2585
|
</div>
|
|
2586
2586
|
<button
|
|
2587
|
-
class="pressable disabled button squared disabled"
|
|
2587
|
+
class="pressable disabled button small squared disabled"
|
|
2588
2588
|
disabled=""
|
|
2589
2589
|
>
|
|
2590
2590
|
<span
|
|
@@ -2615,7 +2615,7 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
|
|
|
2615
2615
|
2
|
|
2616
2616
|
</span>
|
|
2617
2617
|
<button
|
|
2618
|
-
class="pressable button squared secondary"
|
|
2618
|
+
class="pressable button small squared secondary"
|
|
2619
2619
|
>
|
|
2620
2620
|
<span
|
|
2621
2621
|
class="icon headline-3"
|
|
@@ -2664,7 +2664,7 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
|
|
|
2664
2664
|
</span>
|
|
2665
2665
|
</div>
|
|
2666
2666
|
<button
|
|
2667
|
-
class="pressable disabled button squared disabled"
|
|
2667
|
+
class="pressable disabled button small squared disabled"
|
|
2668
2668
|
disabled=""
|
|
2669
2669
|
>
|
|
2670
2670
|
<span
|
|
@@ -2695,7 +2695,7 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
|
|
|
2695
2695
|
0
|
|
2696
2696
|
</span>
|
|
2697
2697
|
<button
|
|
2698
|
-
class="pressable button squared secondary"
|
|
2698
|
+
class="pressable button small squared secondary"
|
|
2699
2699
|
>
|
|
2700
2700
|
<span
|
|
2701
2701
|
class="icon headline-3"
|
|
@@ -2763,7 +2763,7 @@ exports[`component:<Occupation> removing a room 1`] = `
|
|
|
2763
2763
|
count.room
|
|
2764
2764
|
</span>
|
|
2765
2765
|
<button
|
|
2766
|
-
class="pressable action
|
|
2766
|
+
class="pressable action small"
|
|
2767
2767
|
data-testid="occupation-remove-room-0"
|
|
2768
2768
|
>
|
|
2769
2769
|
finder.action.remove
|
|
@@ -2787,7 +2787,7 @@ exports[`component:<Occupation> removing a room 1`] = `
|
|
|
2787
2787
|
</span>
|
|
2788
2788
|
</div>
|
|
2789
2789
|
<button
|
|
2790
|
-
class="pressable disabled button squared disabled"
|
|
2790
|
+
class="pressable disabled button small squared disabled"
|
|
2791
2791
|
disabled=""
|
|
2792
2792
|
>
|
|
2793
2793
|
<span
|
|
@@ -2818,7 +2818,7 @@ exports[`component:<Occupation> removing a room 1`] = `
|
|
|
2818
2818
|
2
|
|
2819
2819
|
</span>
|
|
2820
2820
|
<button
|
|
2821
|
-
class="pressable button squared secondary"
|
|
2821
|
+
class="pressable button small squared secondary"
|
|
2822
2822
|
>
|
|
2823
2823
|
<span
|
|
2824
2824
|
class="icon headline-3"
|
|
@@ -2867,7 +2867,7 @@ exports[`component:<Occupation> removing a room 1`] = `
|
|
|
2867
2867
|
</span>
|
|
2868
2868
|
</div>
|
|
2869
2869
|
<button
|
|
2870
|
-
class="pressable button squared secondary"
|
|
2870
|
+
class="pressable button small squared secondary"
|
|
2871
2871
|
>
|
|
2872
2872
|
<span
|
|
2873
2873
|
class="icon headline-3"
|
|
@@ -2897,7 +2897,7 @@ exports[`component:<Occupation> removing a room 1`] = `
|
|
|
2897
2897
|
2
|
|
2898
2898
|
</span>
|
|
2899
2899
|
<button
|
|
2900
|
-
class="pressable disabled button squared disabled"
|
|
2900
|
+
class="pressable disabled button small squared disabled"
|
|
2901
2901
|
disabled=""
|
|
2902
2902
|
>
|
|
2903
2903
|
<span
|
|
@@ -3223,7 +3223,7 @@ exports[`component:<Occupation> removing a room 1`] = `
|
|
|
3223
3223
|
count.room
|
|
3224
3224
|
</span>
|
|
3225
3225
|
<button
|
|
3226
|
-
class="pressable action
|
|
3226
|
+
class="pressable action small"
|
|
3227
3227
|
data-testid="occupation-remove-room-1"
|
|
3228
3228
|
>
|
|
3229
3229
|
finder.action.remove
|
|
@@ -3247,7 +3247,7 @@ exports[`component:<Occupation> removing a room 1`] = `
|
|
|
3247
3247
|
</span>
|
|
3248
3248
|
</div>
|
|
3249
3249
|
<button
|
|
3250
|
-
class="pressable disabled button squared disabled"
|
|
3250
|
+
class="pressable disabled button small squared disabled"
|
|
3251
3251
|
disabled=""
|
|
3252
3252
|
>
|
|
3253
3253
|
<span
|
|
@@ -3278,7 +3278,7 @@ exports[`component:<Occupation> removing a room 1`] = `
|
|
|
3278
3278
|
2
|
|
3279
3279
|
</span>
|
|
3280
3280
|
<button
|
|
3281
|
-
class="pressable button squared secondary"
|
|
3281
|
+
class="pressable button small squared secondary"
|
|
3282
3282
|
>
|
|
3283
3283
|
<span
|
|
3284
3284
|
class="icon headline-3"
|
|
@@ -3327,7 +3327,7 @@ exports[`component:<Occupation> removing a room 1`] = `
|
|
|
3327
3327
|
</span>
|
|
3328
3328
|
</div>
|
|
3329
3329
|
<button
|
|
3330
|
-
class="pressable disabled button squared disabled"
|
|
3330
|
+
class="pressable disabled button small squared disabled"
|
|
3331
3331
|
disabled=""
|
|
3332
3332
|
>
|
|
3333
3333
|
<span
|
|
@@ -3358,7 +3358,7 @@ exports[`component:<Occupation> removing a room 1`] = `
|
|
|
3358
3358
|
0
|
|
3359
3359
|
</span>
|
|
3360
3360
|
<button
|
|
3361
|
-
class="pressable button squared secondary"
|
|
3361
|
+
class="pressable button small squared secondary"
|
|
3362
3362
|
>
|
|
3363
3363
|
<span
|
|
3364
3364
|
class="icon headline-3"
|
|
@@ -3444,7 +3444,7 @@ exports[`component:<Occupation> renders 1`] = `
|
|
|
3444
3444
|
</span>
|
|
3445
3445
|
</div>
|
|
3446
3446
|
<button
|
|
3447
|
-
class="pressable button squared secondary"
|
|
3447
|
+
class="pressable button small squared secondary"
|
|
3448
3448
|
>
|
|
3449
3449
|
<span
|
|
3450
3450
|
class="icon headline-3"
|
|
@@ -3474,7 +3474,7 @@ exports[`component:<Occupation> renders 1`] = `
|
|
|
3474
3474
|
2
|
|
3475
3475
|
</span>
|
|
3476
3476
|
<button
|
|
3477
|
-
class="pressable button squared secondary"
|
|
3477
|
+
class="pressable button small squared secondary"
|
|
3478
3478
|
>
|
|
3479
3479
|
<span
|
|
3480
3480
|
class="icon headline-3"
|
|
@@ -3523,7 +3523,7 @@ exports[`component:<Occupation> renders 1`] = `
|
|
|
3523
3523
|
</span>
|
|
3524
3524
|
</div>
|
|
3525
3525
|
<button
|
|
3526
|
-
class="pressable disabled button squared disabled"
|
|
3526
|
+
class="pressable disabled button small squared disabled"
|
|
3527
3527
|
disabled=""
|
|
3528
3528
|
>
|
|
3529
3529
|
<span
|
|
@@ -3554,7 +3554,7 @@ exports[`component:<Occupation> renders 1`] = `
|
|
|
3554
3554
|
0
|
|
3555
3555
|
</span>
|
|
3556
3556
|
<button
|
|
3557
|
-
class="pressable button squared secondary"
|
|
3557
|
+
class="pressable button small squared secondary"
|
|
3558
3558
|
>
|
|
3559
3559
|
<span
|
|
3560
3560
|
class="icon headline-3"
|
|
@@ -3640,7 +3640,7 @@ exports[`component:<Occupation> testID 1`] = `
|
|
|
3640
3640
|
</span>
|
|
3641
3641
|
</div>
|
|
3642
3642
|
<button
|
|
3643
|
-
class="pressable disabled button squared disabled"
|
|
3643
|
+
class="pressable disabled button small squared disabled"
|
|
3644
3644
|
disabled=""
|
|
3645
3645
|
>
|
|
3646
3646
|
<span
|
|
@@ -3671,7 +3671,7 @@ exports[`component:<Occupation> testID 1`] = `
|
|
|
3671
3671
|
2
|
|
3672
3672
|
</span>
|
|
3673
3673
|
<button
|
|
3674
|
-
class="pressable button squared secondary"
|
|
3674
|
+
class="pressable button small squared secondary"
|
|
3675
3675
|
>
|
|
3676
3676
|
<span
|
|
3677
3677
|
class="icon headline-3"
|
|
@@ -3720,7 +3720,7 @@ exports[`component:<Occupation> testID 1`] = `
|
|
|
3720
3720
|
</span>
|
|
3721
3721
|
</div>
|
|
3722
3722
|
<button
|
|
3723
|
-
class="pressable disabled button squared disabled"
|
|
3723
|
+
class="pressable disabled button small squared disabled"
|
|
3724
3724
|
disabled=""
|
|
3725
3725
|
>
|
|
3726
3726
|
<span
|
|
@@ -3751,7 +3751,7 @@ exports[`component:<Occupation> testID 1`] = `
|
|
|
3751
3751
|
0
|
|
3752
3752
|
</span>
|
|
3753
3753
|
<button
|
|
3754
|
-
class="pressable button squared secondary"
|
|
3754
|
+
class="pressable button small squared secondary"
|
|
3755
3755
|
>
|
|
3756
3756
|
<span
|
|
3757
3757
|
class="icon headline-3"
|
|
@@ -36,6 +36,7 @@ var _MdOutlinePhone = require("@react-icons/all-files/md/MdOutlinePhone");
|
|
|
36
36
|
var _MdOutlinePlayCircle = require("@react-icons/all-files/md/MdOutlinePlayCircle");
|
|
37
37
|
var _MdOutlinePrint = require("@react-icons/all-files/md/MdOutlinePrint");
|
|
38
38
|
var _MdOutlineSchedule = require("@react-icons/all-files/md/MdOutlineSchedule");
|
|
39
|
+
var _MdOutlineTune = require("@react-icons/all-files/md/MdOutlineTune");
|
|
39
40
|
var _MdOutlineWorkspacePremium = require("@react-icons/all-files/md/MdOutlineWorkspacePremium");
|
|
40
41
|
var _MdPersonOutline = require("@react-icons/all-files/md/MdPersonOutline");
|
|
41
42
|
var _MdPhotoSizeSelectSmall = require("@react-icons/all-files/md/MdPhotoSizeSelectSmall");
|
|
@@ -80,6 +81,7 @@ const ICON = exports.ICON = {
|
|
|
80
81
|
PRINT: _MdOutlinePrint.MdOutlinePrint,
|
|
81
82
|
SCHEDULE: _MdOutlineSchedule.MdOutlineSchedule,
|
|
82
83
|
SEND: _MdSend.MdSend,
|
|
84
|
+
TUNE: _MdOutlineTune.MdOutlineTune,
|
|
83
85
|
// SUPPORT_AGENT,
|
|
84
86
|
SITE: _MdOutlinePageview.MdOutlinePageview,
|
|
85
87
|
SIZE: _MdPhotoSizeSelectSmall.MdPhotoSizeSelectSmall,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ICON.js","names":["_ui","require","_GrThreeD","_LuBedDouble","_LuBedSingle","_MdAccessAlarm","_MdMailOutline","_MdMoreVert","_MdOutlineAccountCircle","_MdOutlineAddToPhotos","_MdOutlineAutorenew","_MdOutlineCalendarToday","_MdOutlineCurrencyExchange","_MdOutlineEditCalendar","_MdOutlineEventBusy","_MdOutlineFreeCancellation","_MdOutlineGroup","_MdOutlineGroups","_MdOutlineLanguage","_MdOutlineLink","_MdOutlineListAlt","_MdOutlineLocationOn","_MdOutlineLock","_MdOutlineLogout","_MdOutlineMinimize","_MdOutlineOutput","_MdOutlinePageview","_MdOutlinePeopleAlt","_MdOutlinePersonOff","_MdOutlinePhone","_MdOutlinePlayCircle","_MdOutlinePrint","_MdOutlineSchedule","_MdOutlineWorkspacePremium","_MdPersonOutline","_MdPhotoSizeSelectSmall","_MdSend","_MdUnfoldMore","_TbDiscount","_TbDiscountCheck","_ICON","ICON","exports","ICON_BASE","THREE_D","ACCOUNT","ADD_EXTRAS","ALARM","BED_DOUBLE","BED_SINGLE","CALENDAR","CALENDAR_BUSY","CALENDAR_CANCEL","CALENDAR_EDIT","CLEAR","CURRENCY","DISCOUNT","GROUP","GROUPS","LANGUAGE","LINK","LIST","LOCATION","LOCK","LOGOUT","MAIL","MINIMIZE","MORE","OFFER","PEOPLE","PERSON","PERSON_OFF","PHONE","PLAY","PREMIUM","PRINT","SCHEDULE","SEND","SITE","SIZE","UNFOLD","URL","ICON_AMENITIES"],"sources":["../../../src/components/helpers/ICON.js"],"sourcesContent":["import { ICON as ICON_BASE } from '@mirai/ui';\nimport { GrThreeD as THREE_D } from '@react-icons/all-files/gr/GrThreeD';\nimport { LuBedDouble as BED_DOUBLE } from '@react-icons/all-files/lu/LuBedDouble';\nimport { LuBedSingle as BED_SINGLE } from '@react-icons/all-files/lu/LuBedSingle';\nimport { MdAccessAlarm as ALARM } from '@react-icons/all-files/md/MdAccessAlarm';\nimport { MdMailOutline as MAIL } from '@react-icons/all-files/md/MdMailOutline';\nimport { MdMoreVert as MORE } from '@react-icons/all-files/md/MdMoreVert';\nimport { MdOutlineAccountCircle as ACCOUNT } from '@react-icons/all-files/md/MdOutlineAccountCircle';\nimport { MdOutlineAddToPhotos as ADD_EXTRAS } from '@react-icons/all-files/md/MdOutlineAddToPhotos';\nimport { MdOutlineAutorenew as CLEAR } from '@react-icons/all-files/md/MdOutlineAutorenew';\nimport { MdOutlineCalendarToday as CALENDAR } from '@react-icons/all-files/md/MdOutlineCalendarToday';\nimport { MdOutlineCurrencyExchange as CURRENCY } from '@react-icons/all-files/md/MdOutlineCurrencyExchange';\nimport { MdOutlineEditCalendar as CALENDAR_EDIT } from '@react-icons/all-files/md/MdOutlineEditCalendar';\nimport { MdOutlineEventBusy as CALENDAR_BUSY } from '@react-icons/all-files/md/MdOutlineEventBusy';\nimport { MdOutlineFreeCancellation as CALENDAR_CANCEL } from '@react-icons/all-files/md/MdOutlineFreeCancellation';\nimport { MdOutlineGroup as GROUP } from '@react-icons/all-files/md/MdOutlineGroup';\nimport { MdOutlineGroups as GROUPS } from '@react-icons/all-files/md/MdOutlineGroups';\nimport { MdOutlineLanguage as LANGUAGE } from '@react-icons/all-files/md/MdOutlineLanguage';\nimport { MdOutlineLink as LINK } from '@react-icons/all-files/md/MdOutlineLink';\nimport { MdOutlineListAlt as LIST } from '@react-icons/all-files/md/MdOutlineListAlt';\nimport { MdOutlineLocationOn as LOCATION } from '@react-icons/all-files/md/MdOutlineLocationOn';\nimport { MdOutlineLock as LOCK } from '@react-icons/all-files/md/MdOutlineLock';\nimport { MdOutlineLogout as LOGOUT } from '@react-icons/all-files/md/MdOutlineLogout';\nimport { MdOutlineMinimize as MINIMIZE } from '@react-icons/all-files/md/MdOutlineMinimize';\nimport { MdOutlineOutput as URL } from '@react-icons/all-files/md/MdOutlineOutput';\nimport { MdOutlinePageview as SITE } from '@react-icons/all-files/md/MdOutlinePageview';\nimport { MdOutlinePeopleAlt as PEOPLE } from '@react-icons/all-files/md/MdOutlinePeopleAlt';\nimport { MdOutlinePersonOff as PERSON_OFF } from '@react-icons/all-files/md/MdOutlinePersonOff';\nimport { MdOutlinePhone as PHONE } from '@react-icons/all-files/md/MdOutlinePhone';\nimport { MdOutlinePlayCircle as PLAY } from '@react-icons/all-files/md/MdOutlinePlayCircle';\nimport { MdOutlinePrint as PRINT } from '@react-icons/all-files/md/MdOutlinePrint';\nimport { MdOutlineSchedule as SCHEDULE } from '@react-icons/all-files/md/MdOutlineSchedule';\nimport { MdOutlineWorkspacePremium as PREMIUM } from '@react-icons/all-files/md/MdOutlineWorkspacePremium';\nimport { MdPersonOutline as PERSON } from '@react-icons/all-files/md/MdPersonOutline';\nimport { MdPhotoSizeSelectSmall as SIZE } from '@react-icons/all-files/md/MdPhotoSizeSelectSmall';\nimport { MdSend as SEND } from '@react-icons/all-files/md/MdSend';\nimport { MdUnfoldMore as UNFOLD } from '@react-icons/all-files/md/MdUnfoldMore';\nimport { TbDiscount as DISCOUNT } from '@react-icons/all-files/tb/TbDiscount.mjs';\nimport { TbDiscountCheck as OFFER } from '@react-icons/all-files/tb/TbDiscountCheck';\n\nimport { ICON_AMENITIES } from './ICON.AMENITIES';\n\nexport const ICON = {\n ...ICON_BASE,\n THREE_D,\n ACCOUNT,\n ADD_EXTRAS,\n ALARM,\n BED_DOUBLE,\n BED_SINGLE,\n CALENDAR,\n CALENDAR_BUSY,\n CALENDAR_CANCEL,\n CALENDAR_EDIT,\n CLEAR,\n CURRENCY,\n DISCOUNT,\n GROUP,\n GROUPS,\n LANGUAGE,\n LINK,\n LIST,\n LOCATION,\n LOCK,\n LOGOUT,\n MAIL,\n MINIMIZE,\n MORE,\n OFFER,\n PEOPLE,\n PERSON,\n PERSON_OFF,\n PHONE,\n PLAY,\n PREMIUM,\n PRINT,\n SCHEDULE,\n SEND,\n // SUPPORT_AGENT,\n SITE,\n SIZE,\n UNFOLD,\n URL,\n // Amenities & Features,\n ...ICON_AMENITIES,\n};\n"],"mappings":";;;;;;AAAA,IAAAA,GAAA,GAAAC,OAAA;AACA,IAAAC,SAAA,GAAAD,OAAA;AACA,IAAAE,YAAA,GAAAF,OAAA;AACA,IAAAG,YAAA,GAAAH,OAAA;AACA,IAAAI,cAAA,GAAAJ,OAAA;AACA,IAAAK,cAAA,GAAAL,OAAA;AACA,IAAAM,WAAA,GAAAN,OAAA;AACA,IAAAO,uBAAA,GAAAP,OAAA;AACA,IAAAQ,qBAAA,GAAAR,OAAA;AACA,IAAAS,mBAAA,GAAAT,OAAA;AACA,IAAAU,uBAAA,GAAAV,OAAA;AACA,IAAAW,0BAAA,GAAAX,OAAA;AACA,IAAAY,sBAAA,GAAAZ,OAAA;AACA,IAAAa,mBAAA,GAAAb,OAAA;AACA,IAAAc,0BAAA,GAAAd,OAAA;AACA,IAAAe,eAAA,GAAAf,OAAA;AACA,IAAAgB,gBAAA,GAAAhB,OAAA;AACA,IAAAiB,kBAAA,GAAAjB,OAAA;AACA,IAAAkB,cAAA,GAAAlB,OAAA;AACA,IAAAmB,iBAAA,GAAAnB,OAAA;AACA,IAAAoB,oBAAA,GAAApB,OAAA;AACA,IAAAqB,cAAA,GAAArB,OAAA;AACA,IAAAsB,gBAAA,GAAAtB,OAAA;AACA,IAAAuB,kBAAA,GAAAvB,OAAA;AACA,IAAAwB,gBAAA,GAAAxB,OAAA;AACA,IAAAyB,kBAAA,GAAAzB,OAAA;AACA,IAAA0B,mBAAA,GAAA1B,OAAA;AACA,IAAA2B,mBAAA,GAAA3B,OAAA;AACA,IAAA4B,eAAA,GAAA5B,OAAA;AACA,IAAA6B,oBAAA,GAAA7B,OAAA;AACA,IAAA8B,eAAA,GAAA9B,OAAA;AACA,IAAA+B,kBAAA,GAAA/B,OAAA;AACA,IAAAgC,
|
|
1
|
+
{"version":3,"file":"ICON.js","names":["_ui","require","_GrThreeD","_LuBedDouble","_LuBedSingle","_MdAccessAlarm","_MdMailOutline","_MdMoreVert","_MdOutlineAccountCircle","_MdOutlineAddToPhotos","_MdOutlineAutorenew","_MdOutlineCalendarToday","_MdOutlineCurrencyExchange","_MdOutlineEditCalendar","_MdOutlineEventBusy","_MdOutlineFreeCancellation","_MdOutlineGroup","_MdOutlineGroups","_MdOutlineLanguage","_MdOutlineLink","_MdOutlineListAlt","_MdOutlineLocationOn","_MdOutlineLock","_MdOutlineLogout","_MdOutlineMinimize","_MdOutlineOutput","_MdOutlinePageview","_MdOutlinePeopleAlt","_MdOutlinePersonOff","_MdOutlinePhone","_MdOutlinePlayCircle","_MdOutlinePrint","_MdOutlineSchedule","_MdOutlineTune","_MdOutlineWorkspacePremium","_MdPersonOutline","_MdPhotoSizeSelectSmall","_MdSend","_MdUnfoldMore","_TbDiscount","_TbDiscountCheck","_ICON","ICON","exports","ICON_BASE","THREE_D","ACCOUNT","ADD_EXTRAS","ALARM","BED_DOUBLE","BED_SINGLE","CALENDAR","CALENDAR_BUSY","CALENDAR_CANCEL","CALENDAR_EDIT","CLEAR","CURRENCY","DISCOUNT","GROUP","GROUPS","LANGUAGE","LINK","LIST","LOCATION","LOCK","LOGOUT","MAIL","MINIMIZE","MORE","OFFER","PEOPLE","PERSON","PERSON_OFF","PHONE","PLAY","PREMIUM","PRINT","SCHEDULE","SEND","TUNE","SITE","SIZE","UNFOLD","URL","ICON_AMENITIES"],"sources":["../../../src/components/helpers/ICON.js"],"sourcesContent":["import { ICON as ICON_BASE } from '@mirai/ui';\nimport { GrThreeD as THREE_D } from '@react-icons/all-files/gr/GrThreeD';\nimport { LuBedDouble as BED_DOUBLE } from '@react-icons/all-files/lu/LuBedDouble';\nimport { LuBedSingle as BED_SINGLE } from '@react-icons/all-files/lu/LuBedSingle';\nimport { MdAccessAlarm as ALARM } from '@react-icons/all-files/md/MdAccessAlarm';\nimport { MdMailOutline as MAIL } from '@react-icons/all-files/md/MdMailOutline';\nimport { MdMoreVert as MORE } from '@react-icons/all-files/md/MdMoreVert';\nimport { MdOutlineAccountCircle as ACCOUNT } from '@react-icons/all-files/md/MdOutlineAccountCircle';\nimport { MdOutlineAddToPhotos as ADD_EXTRAS } from '@react-icons/all-files/md/MdOutlineAddToPhotos';\nimport { MdOutlineAutorenew as CLEAR } from '@react-icons/all-files/md/MdOutlineAutorenew';\nimport { MdOutlineCalendarToday as CALENDAR } from '@react-icons/all-files/md/MdOutlineCalendarToday';\nimport { MdOutlineCurrencyExchange as CURRENCY } from '@react-icons/all-files/md/MdOutlineCurrencyExchange';\nimport { MdOutlineEditCalendar as CALENDAR_EDIT } from '@react-icons/all-files/md/MdOutlineEditCalendar';\nimport { MdOutlineEventBusy as CALENDAR_BUSY } from '@react-icons/all-files/md/MdOutlineEventBusy';\nimport { MdOutlineFreeCancellation as CALENDAR_CANCEL } from '@react-icons/all-files/md/MdOutlineFreeCancellation';\nimport { MdOutlineGroup as GROUP } from '@react-icons/all-files/md/MdOutlineGroup';\nimport { MdOutlineGroups as GROUPS } from '@react-icons/all-files/md/MdOutlineGroups';\nimport { MdOutlineLanguage as LANGUAGE } from '@react-icons/all-files/md/MdOutlineLanguage';\nimport { MdOutlineLink as LINK } from '@react-icons/all-files/md/MdOutlineLink';\nimport { MdOutlineListAlt as LIST } from '@react-icons/all-files/md/MdOutlineListAlt';\nimport { MdOutlineLocationOn as LOCATION } from '@react-icons/all-files/md/MdOutlineLocationOn';\nimport { MdOutlineLock as LOCK } from '@react-icons/all-files/md/MdOutlineLock';\nimport { MdOutlineLogout as LOGOUT } from '@react-icons/all-files/md/MdOutlineLogout';\nimport { MdOutlineMinimize as MINIMIZE } from '@react-icons/all-files/md/MdOutlineMinimize';\nimport { MdOutlineOutput as URL } from '@react-icons/all-files/md/MdOutlineOutput';\nimport { MdOutlinePageview as SITE } from '@react-icons/all-files/md/MdOutlinePageview';\nimport { MdOutlinePeopleAlt as PEOPLE } from '@react-icons/all-files/md/MdOutlinePeopleAlt';\nimport { MdOutlinePersonOff as PERSON_OFF } from '@react-icons/all-files/md/MdOutlinePersonOff';\nimport { MdOutlinePhone as PHONE } from '@react-icons/all-files/md/MdOutlinePhone';\nimport { MdOutlinePlayCircle as PLAY } from '@react-icons/all-files/md/MdOutlinePlayCircle';\nimport { MdOutlinePrint as PRINT } from '@react-icons/all-files/md/MdOutlinePrint';\nimport { MdOutlineSchedule as SCHEDULE } from '@react-icons/all-files/md/MdOutlineSchedule';\nimport { MdOutlineTune as TUNE } from '@react-icons/all-files/md/MdOutlineTune';\nimport { MdOutlineWorkspacePremium as PREMIUM } from '@react-icons/all-files/md/MdOutlineWorkspacePremium';\nimport { MdPersonOutline as PERSON } from '@react-icons/all-files/md/MdPersonOutline';\nimport { MdPhotoSizeSelectSmall as SIZE } from '@react-icons/all-files/md/MdPhotoSizeSelectSmall';\nimport { MdSend as SEND } from '@react-icons/all-files/md/MdSend';\nimport { MdUnfoldMore as UNFOLD } from '@react-icons/all-files/md/MdUnfoldMore';\nimport { TbDiscount as DISCOUNT } from '@react-icons/all-files/tb/TbDiscount.mjs';\nimport { TbDiscountCheck as OFFER } from '@react-icons/all-files/tb/TbDiscountCheck';\n\nimport { ICON_AMENITIES } from './ICON.AMENITIES';\n\nexport const ICON = {\n ...ICON_BASE,\n THREE_D,\n ACCOUNT,\n ADD_EXTRAS,\n ALARM,\n BED_DOUBLE,\n BED_SINGLE,\n CALENDAR,\n CALENDAR_BUSY,\n CALENDAR_CANCEL,\n CALENDAR_EDIT,\n CLEAR,\n CURRENCY,\n DISCOUNT,\n GROUP,\n GROUPS,\n LANGUAGE,\n LINK,\n LIST,\n LOCATION,\n LOCK,\n LOGOUT,\n MAIL,\n MINIMIZE,\n MORE,\n OFFER,\n PEOPLE,\n PERSON,\n PERSON_OFF,\n PHONE,\n PLAY,\n PREMIUM,\n PRINT,\n SCHEDULE,\n SEND,\n TUNE,\n // SUPPORT_AGENT,\n SITE,\n SIZE,\n UNFOLD,\n URL,\n // Amenities & Features,\n ...ICON_AMENITIES,\n};\n"],"mappings":"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"}
|