@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@recras/online-booking-js",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "JS library for easy integration of Recras online booking and voucher sales",
5
5
  "main": "dist/onlinebooking.js",
6
6
  "scripts": {
package/src/booking.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*******************************
2
2
  * Recras integration library *
3
- * v 2.0.4 *
3
+ * v 2.0.5 *
4
4
  *******************************/
5
5
 
6
6
  class RecrasBooking {
@@ -344,7 +344,7 @@ class RecrasContactForm {
344
344
  return label + `<input type="number" ${ fixedAttributes } min="1">`;
345
345
  case 'boeking.starttijd':
346
346
  placeholder = this.languageHelper.translate('TIME_FORMAT');
347
- return label + `<input type="time" ${ fixedAttributes } placeholder="${ placeholder }" pattern="${ timePattern }" step="300">`;
347
+ return label + `<input type="time" ${ fixedAttributes } placeholder="${ placeholder }" pattern="${ timePattern }">`;
348
348
  case 'boeking.arrangement':
349
349
  const preFilledPackage = this.options.getPackageId();
350
350
  if (field.verplicht && this.packages.length === 1) {