@timum/booking 1.1.1 → 1.2.4
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 +11 -1
- package/build/{index-c564ec08.js → index-096ba280.js} +1 -1
- package/build/{index-5f1e0d22.js → index-2d3cfe43.js} +1 -1
- package/build/{index-00e04420.js → index-374c45a4.js} +1 -1
- package/build/{index-b56f9efc.js → index-3c163e3e.js} +2994 -2967
- package/build/{index-232715a0.js → index-4f27fdac.js} +1 -1
- package/build/{index-65abb96b.js → index-737289ce.js} +1 -1
- package/build/{index-ae10ccfe.js → index-7d869fd2.js} +1 -1
- package/build/{index-835d69ce.js → index-843a8ec0.js} +1 -1
- package/build/{index-5ee52b61.js → index-8501adbc.js} +1 -1
- package/build/{index-a6fb8ba7.js → index-93362bc3.js} +1 -1
- package/build/{index-b8937704.js → index-b488cda9.js} +1 -1
- package/build/timum-booking.js +1 -1
- package/build/timum-booking.umd.cjs +66 -66
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -249,6 +249,10 @@ This object's options directly affect timum's behaviour or allow you to react to
|
|
|
249
249
|
<tr>
|
|
250
250
|
<td>hideTimumFooter</td>
|
|
251
251
|
<td>boolean, whether 'powered by timum' can be hidden or not. Needs premium plan.</td>
|
|
252
|
+
</tr>
|
|
253
|
+
<tr>
|
|
254
|
+
<td>sendCustomValuesInMessage</td>
|
|
255
|
+
<td>boolean, whether values of custom fields are concatenated and comma-separated into a single string which is then sent to the backend as <code>message</code>. If field <code>message</code> is defined its input is concatenated to the generated string as well.</td>
|
|
252
256
|
</tr>
|
|
253
257
|
<tr>
|
|
254
258
|
<td>channelKey</td>
|
|
@@ -627,7 +631,13 @@ The standard configuration can be overridden except for the aforementioned field
|
|
|
627
631
|
title: string or JSXElement;
|
|
628
632
|
validation: yup based validation. See https://github.com/jquense/yup. Re-exported and accessible via timum.yup
|
|
629
633
|
type: string; either 'text' (default), 'phoneNumber', 'textarea', 'checkbox' or 'select',
|
|
630
|
-
prefilled: string; value a fiels is initiated with.
|
|
634
|
+
prefilled: string; value a fiels is initiated with.
|
|
635
|
+
Note that for fields of type 'select' you must use the 'key' of on of it's options.
|
|
636
|
+
preventRendering: boolean, default false;
|
|
637
|
+
if true the field is not visible to the user.
|
|
638
|
+
Useful in conjunction with sendCustomValuesInMessage allowing you to
|
|
639
|
+
enrich booked appointments with internal data
|
|
640
|
+
without the customer becoming aware of your internal processes.
|
|
631
641
|
}
|
|
632
642
|
```
|
|
633
643
|
|