@timum/booking 0.4.2 → 0.6.0
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/build/timum-booking.mjs +52637 -230
- package/build/timum-booking.umd.js +1199 -0
- package/examples/callbacks.htm +1 -1
- package/examples/fields.htm +1 -1
- package/examples/fullExample.htm +5 -1
- package/examples/group-bookings.htm +1 -1
- package/examples/list-view.htm +2 -2
- package/examples/local-language.htm +1 -1
- package/examples/local-preset.htm +1 -1
- package/examples/local-strings.htm +1 -1
- package/examples/multiple.htm +1 -1
- package/examples/selectable-product.htm +1 -1
- package/examples/usingChannelId.htm +1 -1
- package/examples/usingChannelKeyAndResourceRef.htm +1 -1
- package/examples/usingFullCalendar.htm +1 -1
- package/index.html +568 -0
- package/package.json +16 -24
- package/vite.config.js +29 -0
- package/build/asset-manifest.json +0 -10
- package/build/index.html +0 -1
- package/build/timum-booking.js +0 -3
- package/build/timum-booking.js.LICENSE.txt +0 -110
- package/build/timum-booking.js.map +0 -1
- package/build/timum-booking.mjs.map +0 -1
- package/build.js +0 -22
- package/public/index.html +0 -59
- package/rollup.config.js +0 -44
package/examples/callbacks.htm
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="bookingjs"></div>
|
|
13
|
-
<script type="text/javascript" src="../build/timum-booking.js"></script>
|
|
13
|
+
<script type="text/javascript" src="../build/timum-booking.umd.js"></script>
|
|
14
14
|
<script type="text/javascript"> timum.init({ref: "booking-widget-demo-resource@timum"}); </script>
|
|
15
15
|
</body>
|
|
16
16
|
</html>
|
package/examples/fields.htm
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="bookingjs"></div>
|
|
13
|
-
<script type="text/javascript" src="../build/timum-booking.js"></script>
|
|
13
|
+
<script type="text/javascript" src="../build/timum-booking.umd.js"></script>
|
|
14
14
|
<script type="text/javascript"> timum.init({ref: "booking-widget-demo-resource@timum"}); </script>
|
|
15
15
|
</body>
|
|
16
16
|
</html>
|
package/examples/fullExample.htm
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<div id="bookingjs" style="margin: 15px;"></div>
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
<script type="text/javascript" src="../build/timum-booking.js"></script>
|
|
14
|
+
<script type="text/javascript" src="../build/timum-booking.umd.js"></script>
|
|
15
15
|
<script type="text/javascript">
|
|
16
16
|
timum.init(
|
|
17
17
|
{
|
|
@@ -232,6 +232,10 @@
|
|
|
232
232
|
email_field_must_be_valid: 'Geben Sie eine valide E-Mail Adresse ein',
|
|
233
233
|
},
|
|
234
234
|
// Similarly to additional validation texts for your custom fields above,
|
|
235
|
+
// Similarly to additional validation texts for your custom fields above,
|
|
236
|
+
// Similarly to additional validation texts for your custom fields above,
|
|
237
|
+
// you can also add custom labels for them.
|
|
238
|
+
// you can also add custom labels for them.
|
|
235
239
|
// you can also add custom labels for them.
|
|
236
240
|
// e.g. add creditCard here and reference it in your custom field's 'title' with 'fields.creditCard'
|
|
237
241
|
fields: {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="bookingjs"></div>
|
|
13
|
-
<script type="text/javascript" src="../build/timum-booking.js"></script>
|
|
13
|
+
<script type="text/javascript" src="../build/timum-booking.umd.js"></script>
|
|
14
14
|
<script type="text/javascript"> timum.init({ref: "booking-widget-demo-resource@timum"}); </script>
|
|
15
15
|
</body>
|
|
16
16
|
</html>
|
package/examples/list-view.htm
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="bookingjs"></div>
|
|
13
|
-
<script type="text/javascript" src="../build/timum-booking.js"></script>
|
|
14
|
-
<script type="text/javascript"> timum.init({ref: "booking-widget-demo-resource@timum"}); </script>
|
|
13
|
+
<script type="text/javascript" src="../build/timum-booking.umd.js"></script>
|
|
14
|
+
<script type="text/javascript"> timum.init({ref: "booking-widget-demo-resource@timum", calendarFrontend: 'pureListView'}); </script>
|
|
15
15
|
</body>
|
|
16
16
|
</html>
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="bookingjs"></div>
|
|
13
|
-
<script type="text/javascript" src="../build/timum-booking.js"></script>
|
|
13
|
+
<script type="text/javascript" src="../build/timum-booking.umd.js"></script>
|
|
14
14
|
<script type="text/javascript"> timum.init({ref: "booking-widget-demo-resource@timum"}); </script>
|
|
15
15
|
</body>
|
|
16
16
|
</html>
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
<body>
|
|
11
11
|
<div id="bookingjs" style="margin: 15px"></div>
|
|
12
|
-
<script type="text/javascript" src="../build/timum-booking.js"></script>
|
|
12
|
+
<script type="text/javascript" src="../build/timum-booking.umd.js"></script>
|
|
13
13
|
<script
|
|
14
14
|
type="text/javascript"> timum.init({ ref: "123@5a5d4ef0-5178-11e8-8653-02c187e4c7f5@timum", pData: { personId: '12345', platform: 'timum' } }); </script>
|
|
15
15
|
</body>
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="bookingjs"></div>
|
|
13
|
-
<script type="text/javascript" src="../build/timum-booking.js"></script>
|
|
13
|
+
<script type="text/javascript" src="../build/timum-booking.umd.js"></script>
|
|
14
14
|
<script type="text/javascript"> timum.init({ref: "booking-widget-demo-resource@timum"}); </script>
|
|
15
15
|
</body>
|
|
16
16
|
</html>
|
package/examples/multiple.htm
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="bookingjs"></div>
|
|
13
|
-
<script type="text/javascript" src="../build/timum-booking.js"></script>
|
|
13
|
+
<script type="text/javascript" src="../build/timum-booking.umd.js"></script>
|
|
14
14
|
<script type="text/javascript"> timum.init({ref: "booking-widget-demo-resource@timum"}); </script>
|
|
15
15
|
</body>
|
|
16
16
|
</html>
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="bookingjs"></div>
|
|
13
|
-
<script type="text/javascript" src="../build/timum-booking.js"></script>
|
|
13
|
+
<script type="text/javascript" src="../build/timum-booking.umd.js"></script>
|
|
14
14
|
<script type="text/javascript"> timum.init({ref: "booking-widget-demo-resource@timum"}); </script>
|
|
15
15
|
</body>
|
|
16
16
|
</html>
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
<body>
|
|
11
11
|
<div id="bookingjs" style="margin: 15px"></div>
|
|
12
|
-
<script type="text/javascript" src="../build/timum-booking.js"></script>
|
|
12
|
+
<script type="text/javascript" src="../build/timum-booking.umd.js"></script>
|
|
13
13
|
<script
|
|
14
14
|
type="text/javascript"> timum.init({ ref: "404d4a2d-915c-11e7-b89c-02dc63cec5f7" /* <- Resource exclusive*/ }); </script>
|
|
15
15
|
</body>
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
<body>
|
|
11
11
|
<div id="bookingjs" style="margin: 15px"></div>
|
|
12
|
-
<script type="text/javascript" src="../build/timum-booking.js"></script>
|
|
12
|
+
<script type="text/javascript" src="../build/timum-booking.umd.js"></script>
|
|
13
13
|
<script
|
|
14
14
|
type="text/javascript"> timum.init({ ref: "booking-widget-demo-resource@timum", channelKey: "RESOURCE_EXCLUSIVE" }); </script>
|
|
15
15
|
</body>
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
<body>
|
|
11
11
|
<div id="bookingjs" style="margin: 15px"></div>
|
|
12
|
-
<script type="text/javascript" src="../build/timum-booking.js"></script>
|
|
12
|
+
<script type="text/javascript" src="../build/timum-booking.umd.js"></script>
|
|
13
13
|
<script
|
|
14
14
|
type="text/javascript">timum.init({ ref: "booking-widget-demo-resource@timum", calendarFrontend: "fullCalendar" }); </script>
|
|
15
15
|
</body>
|