@recras/online-booking-js 2.0.4 → 2.0.5
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 +1 -1
- package/changelog.md +3 -0
- package/dist/onlinebooking.js +2 -2
- package/dist/onlinebooking.min.js +1 -1
- package/package.json +1 -1
- package/src/booking.js +1 -1
- package/src/contactForm.js +1 -1
- package/error_messages.patch +0 -2409
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[](https://travis-ci.org/Recras/online-booking-js)
|
|
2
2
|
|
|
3
3
|
# Recras JS Integration Library
|
|
4
|
-
Version: 2.0.
|
|
4
|
+
Version: 2.0.5
|
|
5
5
|
|
|
6
6
|
JS library for easy online booking, contact form, and voucher integration
|
|
7
7
|
|
package/changelog.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.0.5 (2023-01-30)
|
|
4
|
+
* Contact form time field only allowed time in 5-minute intervals, but browser time pickers don't show this in their UI. Removed this limitation.
|
|
5
|
+
|
|
3
6
|
## 2.0.4 (2022-10-07)
|
|
4
7
|
* Contact form/Voucher sales no longer shows error messages inline, but after the form
|
|
5
8
|
|
package/dist/onlinebooking.js
CHANGED
|
@@ -50,7 +50,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
|
50
50
|
|
|
51
51
|
/*******************************
|
|
52
52
|
* Recras integration library *
|
|
53
|
-
* v 2.0.
|
|
53
|
+
* v 2.0.5 *
|
|
54
54
|
*******************************/
|
|
55
55
|
var RecrasBooking = /*#__PURE__*/function () {
|
|
56
56
|
function RecrasBooking() {
|
|
@@ -2426,7 +2426,7 @@ var RecrasContactForm = /*#__PURE__*/function () {
|
|
|
2426
2426
|
|
|
2427
2427
|
case 'boeking.starttijd':
|
|
2428
2428
|
placeholder = this.languageHelper.translate('TIME_FORMAT');
|
|
2429
|
-
return label + "<input type=\"time\" ".concat(fixedAttributes, " placeholder=\"").concat(placeholder, "\" pattern=\"").concat(timePattern, "\"
|
|
2429
|
+
return label + "<input type=\"time\" ".concat(fixedAttributes, " placeholder=\"").concat(placeholder, "\" pattern=\"").concat(timePattern, "\">");
|
|
2430
2430
|
|
|
2431
2431
|
case 'boeking.arrangement':
|
|
2432
2432
|
var preFilledPackage = this.options.getPackageId();
|