@mirai/core 0.3.381 → 0.3.383
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 +24 -0
- package/__tests__/Booking/__mocks__/booking-delete.json +1 -0
- package/__tests__/Booking/__mocks__/booking-get.json +105 -0
- package/__tests__/Booking/booking.constants.js +8 -0
- package/__tests__/Booking/workflows/cancel.workflow.js +20 -0
- package/__tests__/Booking/workflows/index.js +5 -0
- package/__tests__/Booking/workflows/openMobileMenu.workflow.js +4 -0
- package/__tests__/Booking/workflows/print.workflow.js +13 -0
- package/__tests__/Booking/workflows/resend.workflow.js +18 -0
- package/__tests__/Booking/workflows/review.workflow.js +17 -0
- package/__tests__/Checkout/workflows/form.workflow.js +1 -1
- package/__tests__/Checkout/workflows/review.workflow.js +1 -1
- package/__tests__/Session/workflows/bookings.workflow.js +3 -3
- package/__tests__/Session/workflows/logout.workflow.js +3 -3
- package/__tests__/Session/workflows/profile.workflow.js +3 -3
- package/__tests__/Signup/workflows/index.js +1 -0
- package/__tests__/Signup/workflows/signup.workflow.js +3 -3
- package/__tests__/Signup/workflows/signupError.workflow.js +22 -0
- package/__tests__/booking.spec.jsx +34 -0
- package/__tests__/{bookingQuery/bookingQuey._spec.js → bookingQuey._spec.js} +1 -2
- package/__tests__/buttonFinder.spec.js +16 -0
- package/__tests__/{Checkout/checkout.spec.jsx → checkout.spec.jsx} +6 -4
- package/__tests__/constants.js +3 -1
- package/__tests__/{Finder/finder.spec.js → finder.spec.js} +14 -13
- package/__tests__/{Rates/rates.spec.jsx → rates.spec.jsx} +1 -1
- package/__tests__/session.spec.js +32 -0
- package/__tests__/{Signup/signup.spec.js → signup.spec.js} +8 -4
- package/build/components/Booking/Booking.js +1 -0
- package/build/components/Booking/Booking.js.map +1 -1
- package/build/components/Booking/partials/Booking.Menu.js +4 -2
- package/build/components/Booking/partials/Booking.Menu.js.map +1 -1
- package/build/components/Booking/partials/Booking.Modal.js +4 -2
- package/build/components/Booking/partials/Booking.Modal.js.map +1 -1
- package/build/components/Booking/partials/__tests__/__snapshots__/Booking.Menu.test.js.snap +20 -0
- package/build/components/Booking/partials/__tests__/__snapshots__/Booking.Modal.test.js.snap +8 -0
- package/build/components/BookingQuery/BookingQuery.js +1 -1
- package/build/components/BookingQuery/BookingQuery.js.map +1 -1
- package/build/components/ButtonFinder/ButtonFinder.js +59 -0
- package/build/components/ButtonFinder/ButtonFinder.js.map +1 -0
- package/build/components/ButtonFinder/ButtonFinder.l10n.js +13 -0
- package/build/components/ButtonFinder/ButtonFinder.l10n.js.map +1 -0
- package/build/components/ButtonFinder/ButtonFinder.module.css +17 -0
- package/build/components/ButtonFinder/__tests__/__snapshots__/ButtonFinder.test.js.snap +8380 -0
- package/build/components/ButtonFinder/index.js +13 -0
- package/build/components/ButtonFinder/index.js.map +1 -0
- package/build/components/Session/Session.Account.js +2 -3
- package/build/components/Session/Session.Account.js.map +1 -1
- package/build/components/Session/__tests__/__snapshots__/Session.test.js.snap +2 -2
- package/build/components/__shared__/ButtonPayment/components/FormSipay/__tests__/__snapshots__/FormSipay.test.js.snap +6 -6
- package/build/components/__shared__/Occupation/__tests__/__snapshots__/Occupation.test.js.snap +4 -4
- package/build/components/index.js +2 -0
- package/build/components/index.js.map +1 -1
- package/build/helpers/sanitizeComponent.js +1 -0
- package/build/helpers/sanitizeComponent.js.map +1 -1
- package/package.json +1 -1
- package/public/routes/Home.jsx +2 -1
- package/public/routes/routes.module.css +4 -1
- package/public/themes/monalisa.theme.css +11 -30
- package/__tests__/Session/session.spec.js +0 -17
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.button {
|
|
2
|
+
border-radius: var(--mirai-finder-border-radius);
|
|
3
|
+
font-family: var(--mirai-finder-button-font-family);
|
|
4
|
+
font-size: var(--mirai-finder-button-font-size);
|
|
5
|
+
font-weight: var(--mirai-finder-button-font-weight);
|
|
6
|
+
height: var(--mirai-finder-field-height);
|
|
7
|
+
max-height: var(--mirai-finder-field-height);
|
|
8
|
+
min-height: var(--mirai-finder-field-height);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.button:not(:hover) {
|
|
12
|
+
background: var(--mirai-finder-button-background) !important;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.button:hover {
|
|
16
|
+
background: var(--mirai-finder-button-focus-color) !important;
|
|
17
|
+
}
|