@timum/booking 0.1.1
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/.eslintignore +5 -0
- package/.eslintrc +30 -0
- package/.idea/BookingJS.iml +9 -0
- package/.idea/compiler.xml +15 -0
- package/.idea/encodings.xml +6 -0
- package/.idea/inspectionProfiles/profiles_settings.xml +5 -0
- package/.idea/misc.xml +4 -0
- package/.idea/modules.xml +8 -0
- package/.idea/vcs.xml +6 -0
- package/LICENSE.md +0 -0
- package/README.md +1 -0
- package/build/index.html +60 -0
- package/build/robots.txt +3 -0
- package/build/static/css/main.ef2ccb8b.css +2 -0
- package/build/static/css/main.ef2ccb8b.css.map +1 -0
- package/build/timum-booking.js +3 -0
- package/build/timum-booking.js.LICENSE.txt +119 -0
- package/build/timum-booking.js.map +1 -0
- package/build.js +22 -0
- package/examples/callbacks.htm +16 -0
- package/examples/fields.htm +16 -0
- package/examples/group-bookings.htm +16 -0
- package/examples/list-view.htm +16 -0
- package/examples/local-language.htm +16 -0
- package/examples/local-preset.htm +17 -0
- package/examples/local-strings.htm +16 -0
- package/examples/multiple.htm +16 -0
- package/examples/selectable-product.htm +16 -0
- package/examples/single.htm +31 -0
- package/examples/usingChannelId.htm +17 -0
- package/examples/usingChannelKeyAndResourceRef.htm +17 -0
- package/examples/usingFullCalendar.htm +17 -0
- package/package.json +132 -0
- package/public/android-chrome-144x144.png +0 -0
- package/public/android-chrome-192x192.png +0 -0
- package/public/android-chrome-36x36.png +0 -0
- package/public/android-chrome-48x48.png +0 -0
- package/public/android-chrome-72x72.png +0 -0
- package/public/android-chrome-96x96.png +0 -0
- package/public/apple-touch-icon-114x114.png +0 -0
- package/public/apple-touch-icon-120x120.png +0 -0
- package/public/apple-touch-icon-144x144.png +0 -0
- package/public/apple-touch-icon-152x152.png +0 -0
- package/public/apple-touch-icon-180x180.png +0 -0
- package/public/apple-touch-icon-57x57.png +0 -0
- package/public/apple-touch-icon-60x60.png +0 -0
- package/public/apple-touch-icon-72x72.png +0 -0
- package/public/apple-touch-icon-76x76.png +0 -0
- package/public/apple-touch-icon-precomposed.png +0 -0
- package/public/apple-touch-icon.png +0 -0
- package/public/browserconfig.xml +12 -0
- package/public/favicon-16x16.png +0 -0
- package/public/favicon-194x194.png +0 -0
- package/public/favicon-32x32.png +0 -0
- package/public/favicon-96x96.png +0 -0
- package/public/favicon.ico +0 -0
- package/public/index.html +59 -0
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +46 -0
- package/public/mockServiceWorker.js +338 -0
- package/public/mstile-144x144.png +0 -0
- package/public/mstile-150x150.png +0 -0
- package/public/mstile-310x150.png +0 -0
- package/public/mstile-310x310.png +0 -0
- package/public/mstile-70x70.png +0 -0
- package/public/robots.txt +3 -0
- package/public/timum-bg-large.png +0 -0
- package/public/timum-logo-bright.svg +63 -0
- package/public/timum-logo-white.svg +63 -0
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* @preserve
|
|
3
|
+
*
|
|
4
|
+
* ++++++++++++++++++++++
|
|
5
|
+
* Add to Calendar Button
|
|
6
|
+
* ++++++++++++++++++++++
|
|
7
|
+
*
|
|
8
|
+
* Version: 1.18.8
|
|
9
|
+
* Creator: Jens Kuerschner (https://jenskuerschner.de)
|
|
10
|
+
* Project: https://github.com/add2cal/add-to-calendar-button
|
|
11
|
+
* License: Apache-2.0 with “Commons Clause” License Condition v1.0
|
|
12
|
+
* Note: DO NOT REMOVE THE COPYRIGHT NOTICE ABOVE!
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* @license
|
|
20
|
+
* Lodash <https://lodash.com/>
|
|
21
|
+
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
22
|
+
* Released under MIT license <https://lodash.com/license>
|
|
23
|
+
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
|
24
|
+
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
25
|
+
*/
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* @license React
|
|
29
|
+
* react-dom.production.min.js
|
|
30
|
+
*
|
|
31
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
32
|
+
*
|
|
33
|
+
* This source code is licensed under the MIT license found in the
|
|
34
|
+
* LICENSE file in the root directory of this source tree.
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* @license React
|
|
39
|
+
* react-is.production.min.js
|
|
40
|
+
*
|
|
41
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
42
|
+
*
|
|
43
|
+
* This source code is licensed under the MIT license found in the
|
|
44
|
+
* LICENSE file in the root directory of this source tree.
|
|
45
|
+
*/
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @license React
|
|
49
|
+
* react-jsx-runtime.production.min.js
|
|
50
|
+
*
|
|
51
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
52
|
+
*
|
|
53
|
+
* This source code is licensed under the MIT license found in the
|
|
54
|
+
* LICENSE file in the root directory of this source tree.
|
|
55
|
+
*/
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* @license React
|
|
59
|
+
* react.production.min.js
|
|
60
|
+
*
|
|
61
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
62
|
+
*
|
|
63
|
+
* This source code is licensed under the MIT license found in the
|
|
64
|
+
* LICENSE file in the root directory of this source tree.
|
|
65
|
+
*/
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* @license React
|
|
69
|
+
* scheduler.production.min.js
|
|
70
|
+
*
|
|
71
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
72
|
+
*
|
|
73
|
+
* This source code is licensed under the MIT license found in the
|
|
74
|
+
* LICENSE file in the root directory of this source tree.
|
|
75
|
+
*/
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* @license React
|
|
79
|
+
* use-sync-external-store-shim.production.min.js
|
|
80
|
+
*
|
|
81
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
82
|
+
*
|
|
83
|
+
* This source code is licensed under the MIT license found in the
|
|
84
|
+
* LICENSE file in the root directory of this source tree.
|
|
85
|
+
*/
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* @license React
|
|
89
|
+
* use-sync-external-store-shim/with-selector.production.min.js
|
|
90
|
+
*
|
|
91
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
92
|
+
*
|
|
93
|
+
* This source code is licensed under the MIT license found in the
|
|
94
|
+
* LICENSE file in the root directory of this source tree.
|
|
95
|
+
*/
|
|
96
|
+
|
|
97
|
+
/** @license MUI v5.11.0
|
|
98
|
+
*
|
|
99
|
+
* This source code is licensed under the MIT license found in the
|
|
100
|
+
* LICENSE file in the root directory of this source tree.
|
|
101
|
+
*/
|
|
102
|
+
|
|
103
|
+
/** @license React v16.13.1
|
|
104
|
+
* react-is.development.js
|
|
105
|
+
*
|
|
106
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
107
|
+
*
|
|
108
|
+
* This source code is licensed under the MIT license found in the
|
|
109
|
+
* LICENSE file in the root directory of this source tree.
|
|
110
|
+
*/
|
|
111
|
+
|
|
112
|
+
/** @license React v16.13.1
|
|
113
|
+
* react-is.production.min.js
|
|
114
|
+
*
|
|
115
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
116
|
+
*
|
|
117
|
+
* This source code is licensed under the MIT license found in the
|
|
118
|
+
* LICENSE file in the root directory of this source tree.
|
|
119
|
+
*/
|