@timum/booking 1.3.1 → 1.3.3
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 +7 -7
- package/build/booking.js +1 -1
- package/build/booking.umd.cjs +41 -41
- package/build/{index-8a94e46d.js → index-121e850f.js} +1 -1
- package/build/{index-ecb46392.js → index-1da71c1e.js} +1 -1
- package/build/{index-6df16bb2.js → index-25997521.js} +1 -1
- package/build/{index-356f483c.js → index-55733a63.js} +1 -1
- package/build/{index-832f173a.js → index-8428bcb4.js} +1 -1
- package/build/{index-628aaacf.js → index-97c5e513.js} +805 -798
- package/build/{index-8352ceb4.js → index-b3e26fa8.js} +1 -1
- package/build/{index-5e17393f.js → index-b9348629.js} +1 -1
- package/build/{index-d8836ffe.js → index-bf98fdfb.js} +1 -1
- package/build/{index-a50b4f1d.js → index-cbcb0d60.js} +1 -1
- package/build/{index-3fa2925e.js → index-cc65004c.js} +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -47,9 +47,9 @@ This documentation guides you through all the customization capabilities.
|
|
|
47
47
|
- Prebooking period option - prevents booking if appointment is too soon from now
|
|
48
48
|
- Double booking prevention
|
|
49
49
|
- Cancelling appointment by customer with proper authentication
|
|
50
|
-
- Fully customizable look and feel with mui theming (available with
|
|
51
|
-
- Customizable wording across languages (availabe with
|
|
52
|
-
- Dynamic definition of input fields with localized labels and validation (available with
|
|
50
|
+
- Fully customizable look and feel with mui theming (available with professional plans)
|
|
51
|
+
- Customizable wording across languages (availabe with professional plans)
|
|
52
|
+
- Dynamic definition of input fields with localized labels and validation (available with professional plans)
|
|
53
53
|
- Therefore, ability to request additional information from customers during booking process
|
|
54
54
|
- Support for multiple languages (English and German included) - add your own language
|
|
55
55
|
- Callbacks for custom code execution and event response (e.g. booking created, appointments loaded, booking canceled)
|
|
@@ -212,7 +212,7 @@ See [here](https://mui.com/) for a general overview. <br> See [here](https://mui
|
|
|
212
212
|
|
|
213
213
|
When you open the file `config.js` in [this](https://stackblitz.com/edit/react-8q6r8b?file=src/index.js) example, you can find an elaborate custom configuration which includes a redesign of the standard timum theme.
|
|
214
214
|
|
|
215
|
-
Needs
|
|
215
|
+
Needs professional plan.
|
|
216
216
|
|
|
217
217
|
<a name=”fc_config”></a>
|
|
218
218
|
|
|
@@ -290,7 +290,7 @@ This object's options directly affect timum's behaviour or allow you to react to
|
|
|
290
290
|
</tr>
|
|
291
291
|
<tr>
|
|
292
292
|
<td>hideTimumFooter</td>
|
|
293
|
-
<td>boolean, whether 'powered by timum' can be hidden or not. Needs
|
|
293
|
+
<td>boolean, whether 'powered by timum' can be hidden or not. Needs professional plan.</td>
|
|
294
294
|
</tr>
|
|
295
295
|
<tr>
|
|
296
296
|
<td>sendCustomValuesInMessage</td>
|
|
@@ -332,14 +332,14 @@ This object's options directly affect timum's behaviour or allow you to react to
|
|
|
332
332
|
<td>fields</td>
|
|
333
333
|
<td>object, You can customise what information is demanded of your customers prior to booking. timum requires certain fields to work and has some optional fields it can parse. Fields other than those supported by timum can be evaluated in a callback (see the callback guide below for further info). All fields (yours too!) support localization and input validation.
|
|
334
334
|
<br>
|
|
335
|
-
Needs
|
|
335
|
+
Needs professional plan.
|
|
336
336
|
</td>
|
|
337
337
|
</tr>
|
|
338
338
|
<tr>
|
|
339
339
|
<td>localization</td>
|
|
340
340
|
<td>object. Contains all localization variables and their standard texts. timum nativly supports English and German. Use this to override the standard text and/or add translations for your custom field labels and input validations (see the localisation guide for mor info.)
|
|
341
341
|
<br>
|
|
342
|
-
Needs
|
|
342
|
+
Needs professional plan.
|
|
343
343
|
</td>
|
|
344
344
|
</tr>
|
|
345
345
|
</table>
|
package/build/booking.js
CHANGED