@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.
Files changed (70) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc +30 -0
  3. package/.idea/BookingJS.iml +9 -0
  4. package/.idea/compiler.xml +15 -0
  5. package/.idea/encodings.xml +6 -0
  6. package/.idea/inspectionProfiles/profiles_settings.xml +5 -0
  7. package/.idea/misc.xml +4 -0
  8. package/.idea/modules.xml +8 -0
  9. package/.idea/vcs.xml +6 -0
  10. package/LICENSE.md +0 -0
  11. package/README.md +1 -0
  12. package/build/index.html +60 -0
  13. package/build/robots.txt +3 -0
  14. package/build/static/css/main.ef2ccb8b.css +2 -0
  15. package/build/static/css/main.ef2ccb8b.css.map +1 -0
  16. package/build/timum-booking.js +3 -0
  17. package/build/timum-booking.js.LICENSE.txt +119 -0
  18. package/build/timum-booking.js.map +1 -0
  19. package/build.js +22 -0
  20. package/examples/callbacks.htm +16 -0
  21. package/examples/fields.htm +16 -0
  22. package/examples/group-bookings.htm +16 -0
  23. package/examples/list-view.htm +16 -0
  24. package/examples/local-language.htm +16 -0
  25. package/examples/local-preset.htm +17 -0
  26. package/examples/local-strings.htm +16 -0
  27. package/examples/multiple.htm +16 -0
  28. package/examples/selectable-product.htm +16 -0
  29. package/examples/single.htm +31 -0
  30. package/examples/usingChannelId.htm +17 -0
  31. package/examples/usingChannelKeyAndResourceRef.htm +17 -0
  32. package/examples/usingFullCalendar.htm +17 -0
  33. package/package.json +132 -0
  34. package/public/android-chrome-144x144.png +0 -0
  35. package/public/android-chrome-192x192.png +0 -0
  36. package/public/android-chrome-36x36.png +0 -0
  37. package/public/android-chrome-48x48.png +0 -0
  38. package/public/android-chrome-72x72.png +0 -0
  39. package/public/android-chrome-96x96.png +0 -0
  40. package/public/apple-touch-icon-114x114.png +0 -0
  41. package/public/apple-touch-icon-120x120.png +0 -0
  42. package/public/apple-touch-icon-144x144.png +0 -0
  43. package/public/apple-touch-icon-152x152.png +0 -0
  44. package/public/apple-touch-icon-180x180.png +0 -0
  45. package/public/apple-touch-icon-57x57.png +0 -0
  46. package/public/apple-touch-icon-60x60.png +0 -0
  47. package/public/apple-touch-icon-72x72.png +0 -0
  48. package/public/apple-touch-icon-76x76.png +0 -0
  49. package/public/apple-touch-icon-precomposed.png +0 -0
  50. package/public/apple-touch-icon.png +0 -0
  51. package/public/browserconfig.xml +12 -0
  52. package/public/favicon-16x16.png +0 -0
  53. package/public/favicon-194x194.png +0 -0
  54. package/public/favicon-32x32.png +0 -0
  55. package/public/favicon-96x96.png +0 -0
  56. package/public/favicon.ico +0 -0
  57. package/public/index.html +59 -0
  58. package/public/logo192.png +0 -0
  59. package/public/logo512.png +0 -0
  60. package/public/manifest.json +46 -0
  61. package/public/mockServiceWorker.js +338 -0
  62. package/public/mstile-144x144.png +0 -0
  63. package/public/mstile-150x150.png +0 -0
  64. package/public/mstile-310x150.png +0 -0
  65. package/public/mstile-310x310.png +0 -0
  66. package/public/mstile-70x70.png +0 -0
  67. package/public/robots.txt +3 -0
  68. package/public/timum-bg-large.png +0 -0
  69. package/public/timum-logo-bright.svg +63 -0
  70. package/public/timum-logo-white.svg +63 -0
package/build.js ADDED
@@ -0,0 +1,22 @@
1
+ const rewire = require('rewire');
2
+ const defaults = rewire('react-scripts/scripts/build.js');
3
+ const config = defaults.__get__('config');
4
+ // const MiniCssExtractPlugin = require('mini-css-extract-plugin')
5
+
6
+ // monkey patching create-react-app std webpack config
7
+ config.output.filename = 'timum-booking.js';
8
+ config.output.library = {
9
+ name: 'timum',
10
+ type: 'umd',
11
+ };
12
+
13
+ // config.module.rules.push({
14
+ // test: /\.css$/,
15
+ // use: [
16
+ // { loader: MiniCssExtractPlugin.loader },
17
+ // { loader: 'css-loader', options: { importLoaders: 1 } }
18
+ // ]
19
+ // })
20
+
21
+ // config.plugins[0].userOptions.minify.minifyCSS = false;
22
+ // config.plugins.push(new MiniCssExtractPlugin())
@@ -0,0 +1,16 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta
6
+ name="viewport"
7
+ content="initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=0.6"
8
+ />
9
+ <title>timum single instance example</title>
10
+ </head>
11
+ <body>
12
+ <div id="bookingjs"></div>
13
+ <script type="text/javascript" src="../build/timum-booking.js"></script>
14
+ <script type="text/javascript"> timum.init({resourceId: "booking-widget-demo-resource@timum"}); </script>
15
+ </body>
16
+ </html>
@@ -0,0 +1,16 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta
6
+ name="viewport"
7
+ content="initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=0.6"
8
+ />
9
+ <title>timum single instance example</title>
10
+ </head>
11
+ <body>
12
+ <div id="bookingjs"></div>
13
+ <script type="text/javascript" src="../build/timum-booking.js"></script>
14
+ <script type="text/javascript"> timum.init({resourceId: "booking-widget-demo-resource@timum"}); </script>
15
+ </body>
16
+ </html>
@@ -0,0 +1,16 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta
6
+ name="viewport"
7
+ content="initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=0.6"
8
+ />
9
+ <title>timum single instance example</title>
10
+ </head>
11
+ <body>
12
+ <div id="bookingjs"></div>
13
+ <script type="text/javascript" src="../build/timum-booking.js"></script>
14
+ <script type="text/javascript"> timum.init({resourceId: "booking-widget-demo-resource@timum"}); </script>
15
+ </body>
16
+ </html>
@@ -0,0 +1,16 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta
6
+ name="viewport"
7
+ content="initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=0.6"
8
+ />
9
+ <title>timum single instance example</title>
10
+ </head>
11
+ <body>
12
+ <div id="bookingjs"></div>
13
+ <script type="text/javascript" src="../build/timum-booking.js"></script>
14
+ <script type="text/javascript"> timum.init({resourceId: "booking-widget-demo-resource@timum"}); </script>
15
+ </body>
16
+ </html>
@@ -0,0 +1,16 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta
6
+ name="viewport"
7
+ content="initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=0.6"
8
+ />
9
+ <title>timum single instance example</title>
10
+ </head>
11
+ <body>
12
+ <div id="bookingjs"></div>
13
+ <script type="text/javascript" src="../build/timum-booking.js"></script>
14
+ <script type="text/javascript"> timum.init({resourceId: "booking-widget-demo-resource@timum"}); </script>
15
+ </body>
16
+ </html>
@@ -0,0 +1,17 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+
4
+ <head>
5
+ <meta charset="UTF-8" />
6
+ <meta name="viewport" content="initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=0.6" />
7
+ <title>timum single instance example</title>
8
+ </head>
9
+
10
+ <body>
11
+ <div id="bookingjs" style="margin: 15px"></div>
12
+ <script type="text/javascript" src="../build/timum-booking.js"></script>
13
+ <script
14
+ type="text/javascript"> timum.init({ channelOrResourceId: "123@5a5d4ef0-5178-11e8-8653-02c187e4c7f5@timum", pData: { personId: '12345', platform: 'timum' } }); </script>
15
+ </body>
16
+
17
+ </html>
@@ -0,0 +1,16 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta
6
+ name="viewport"
7
+ content="initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=0.6"
8
+ />
9
+ <title>timum single instance example</title>
10
+ </head>
11
+ <body>
12
+ <div id="bookingjs"></div>
13
+ <script type="text/javascript" src="../build/timum-booking.js"></script>
14
+ <script type="text/javascript"> timum.init({resourceId: "booking-widget-demo-resource@timum"}); </script>
15
+ </body>
16
+ </html>
@@ -0,0 +1,16 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta
6
+ name="viewport"
7
+ content="initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=0.6"
8
+ />
9
+ <title>timum single instance example</title>
10
+ </head>
11
+ <body>
12
+ <div id="bookingjs"></div>
13
+ <script type="text/javascript" src="../build/timum-booking.js"></script>
14
+ <script type="text/javascript"> timum.init({resourceId: "booking-widget-demo-resource@timum"}); </script>
15
+ </body>
16
+ </html>
@@ -0,0 +1,16 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta
6
+ name="viewport"
7
+ content="initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=0.6"
8
+ />
9
+ <title>timum single instance example</title>
10
+ </head>
11
+ <body>
12
+ <div id="bookingjs"></div>
13
+ <script type="text/javascript" src="../build/timum-booking.js"></script>
14
+ <script type="text/javascript"> timum.init({resourceId: "booking-widget-demo-resource@timum"}); </script>
15
+ </body>
16
+ </html>
@@ -0,0 +1,31 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+
4
+ <head>
5
+ <meta charset="UTF-8" />
6
+ <meta name="viewport" content="initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=0.6" />
7
+ <title>timum single instance example</title>
8
+ </head>
9
+
10
+ <body>
11
+ <div id="bookingjs"></div>
12
+ <script type="text/javascript" src="../build/timum-booking.js"></script>
13
+ <script type="text/javascript">
14
+ timum.init({
15
+ appConfig: {
16
+ resourceId: "booking-widget-demo-resource@timum",
17
+ fields: {
18
+ // shows
19
+ // 1. how to create a custom field
20
+ // 2. how to use re-exported yup validation lib to set custom form validation on custom fields
21
+ yolo: {
22
+ title: 'Yolo',
23
+ validation: Timum.getYup().string().required(),
24
+ }
25
+ },
26
+ }
27
+ });
28
+ </script>
29
+ </body>
30
+
31
+ </html>
@@ -0,0 +1,17 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+
4
+ <head>
5
+ <meta charset="UTF-8" />
6
+ <meta name="viewport" content="initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=0.6" />
7
+ <title>timum single instance example</title>
8
+ </head>
9
+
10
+ <body>
11
+ <div id="bookingjs" style="margin: 15px"></div>
12
+ <script type="text/javascript" src="../build/timum-booking.js"></script>
13
+ <script
14
+ type="text/javascript"> timum.init({ channelOrResourceId: "404d4a2d-915c-11e7-b89c-02dc63cec5f7" /* <- Resource exclusive*/ }); </script>
15
+ </body>
16
+
17
+ </html>
@@ -0,0 +1,17 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+
4
+ <head>
5
+ <meta charset="UTF-8" />
6
+ <meta name="viewport" content="initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=0.6" />
7
+ <title>timum single instance example</title>
8
+ </head>
9
+
10
+ <body>
11
+ <div id="bookingjs" style="margin: 15px"></div>
12
+ <script type="text/javascript" src="../build/timum-booking.js"></script>
13
+ <script
14
+ type="text/javascript"> timum.init({ channelOrResourceId: "booking-widget-demo-resource@timum", channelKey: "RESOURCE_EXCLUSIVE" }); </script>
15
+ </body>
16
+
17
+ </html>
@@ -0,0 +1,17 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+
4
+ <head>
5
+ <meta charset="UTF-8" />
6
+ <meta name="viewport" content="initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=0.6" />
7
+ <title>timum single instance example</title>
8
+ </head>
9
+
10
+ <body>
11
+ <div id="bookingjs" style="margin: 15px"></div>
12
+ <script type="text/javascript" src="../build/timum-booking.js"></script>
13
+ <script
14
+ type="text/javascript">timum.init({ channelOrResourceId: "booking-widget-demo-resource@timum", calendarFrontend: "fullCalendar" }); </script>
15
+ </body>
16
+
17
+ </html>
package/package.json ADDED
@@ -0,0 +1,132 @@
1
+ {
2
+ "name": "@timum/booking",
3
+ "version": "0.1.1",
4
+ "license": "CC-BY-ND-4.0",
5
+ "main": "build/timum-booking.js",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
9
+ "dependencies": {
10
+ "@date-io/luxon": "^2.11.1",
11
+ "@emotion/react": "^11.8.2",
12
+ "@emotion/styled": "^11.8.1",
13
+ "@fortawesome/fontawesome-svg-core": "^6.1.1",
14
+ "@fortawesome/free-solid-svg-icons": "^6.1.1",
15
+ "@fortawesome/react-fontawesome": "^0.1.18",
16
+ "@fullcalendar/core": "^5.11.3",
17
+ "@fullcalendar/daygrid": "^5.11.3",
18
+ "@fullcalendar/list": "^5.11.3",
19
+ "@fullcalendar/react": "^5.11.2",
20
+ "@fullcalendar/timegrid": "^5.11.3",
21
+ "@hookform/devtools": "^4.2.2",
22
+ "@hookform/resolvers": "^2.9.3",
23
+ "@mui/icons-material": "^5.8.3",
24
+ "@mui/lab": "^5.0.0-alpha.87",
25
+ "@mui/material": "^5.8.3",
26
+ "@mui/system": "^5.8.3",
27
+ "@reduxjs/toolkit": "^1.8.0",
28
+ "@testing-library/jest-dom": "^5.16.4",
29
+ "@testing-library/react": "^13.3.0",
30
+ "@testing-library/user-event": "^13.5.0",
31
+ "@timum-private/timum-react-components": "^1.2.22",
32
+ "@timum/timum_pdk": "^1.0.13",
33
+ "add-to-calendar-button": "^1.18.8",
34
+ "create-react-app": "^5.0.1",
35
+ "i18next": "^21.10.0",
36
+ "i18next-browser-languagedetector": "^6.1.5",
37
+ "lodash": "4.17.21",
38
+ "luxon": "^2.3.1",
39
+ "material-ui-confirm": "^3.0.4",
40
+ "mui-tel-input": "^2.1.0",
41
+ "notistack": "^2.0.3",
42
+ "react": "^18.2.0",
43
+ "react-bootstrap-icons": "^1.8.4",
44
+ "react-countdown": "^2.3.5",
45
+ "react-dom": "^18.2.0",
46
+ "react-hook-form": "^7.36.1",
47
+ "react-i18next": "^11.18.6",
48
+ "react-redux": "^8.0.2",
49
+ "react-router": "^5.3.3",
50
+ "react-router-dom": "^5.3.3",
51
+ "react-scripts": "5.0.0",
52
+ "react-virtualized-auto-sizer": "^1.0.6",
53
+ "react-window": "^1.8.6",
54
+ "reactjs-localstorage": "^1.0.1",
55
+ "rewire": "^6.0.0",
56
+ "uuid": "^8.3.2",
57
+ "web-vitals": "^2.1.4",
58
+ "yup": "^0.32.11"
59
+ },
60
+ "scripts": {
61
+ "start": "react-scripts start",
62
+ "build": "node ./build.js",
63
+ "np:preview": "np --no-cleanup --preview",
64
+ "np:publish": "np --no-cleanup",
65
+ "co:login": "aws codeartifact login --tool npm --repository timum --domain timum --domain-owner 075866820991 --namespace @timum-private",
66
+ "test": "echo \"No tests yet\"",
67
+ "eject": "react-scripts eject",
68
+ "storybook": "start-storybook -p 6006 -s public",
69
+ "build-storybook": "build-storybook -s public",
70
+ "lint": "eslint .",
71
+ "lint:fix": "eslint --fix ."
72
+ },
73
+ "eslintConfig": {
74
+ "extends": [
75
+ "react-app",
76
+ "react-app/jest"
77
+ ],
78
+ "overrides": [
79
+ {
80
+ "files": [
81
+ "**/*.stories.*"
82
+ ],
83
+ "rules": {
84
+ "import/no-anonymous-default-export": "off"
85
+ }
86
+ }
87
+ ]
88
+ },
89
+ "browserslist": {
90
+ "production": [
91
+ ">0.2%",
92
+ "not dead",
93
+ "not op_mini all"
94
+ ],
95
+ "development": [
96
+ "last 1 chrome version",
97
+ "last 1 firefox version",
98
+ "last 1 safari version"
99
+ ]
100
+ },
101
+ "devDependencies": {
102
+ "@babel/plugin-transform-modules-amd": "^7.16.7",
103
+ "@faker-js/faker": "^7.5.0",
104
+ "@storybook/addon-actions": "^6.5.7",
105
+ "@storybook/addon-essentials": "^6.5.7",
106
+ "@storybook/addon-interactions": "^6.5.7",
107
+ "@storybook/addon-links": "^6.5.7",
108
+ "@storybook/builder-webpack5": "^6.5.7",
109
+ "@storybook/manager-webpack5": "^6.5.7",
110
+ "@storybook/node-logger": "^6.5.7",
111
+ "@storybook/preset-create-react-app": "^4.1.2",
112
+ "@storybook/react": "^6.5.7",
113
+ "@storybook/testing-library": "^0.0.13",
114
+ "css-loader": "^6.7.1",
115
+ "eslint": "^8.17.0",
116
+ "eslint-config-prettier": "^8.5.0",
117
+ "eslint-plugin-prettier": "^4.0.0",
118
+ "eslint-plugin-react": "^7.30.0",
119
+ "eslint-plugin-storybook": "^0.5.12",
120
+ "mini-css-extract-plugin": "^1.2.0",
121
+ "msw": "^0.39.2",
122
+ "msw-storybook-addon": "^1.6.3"
123
+ },
124
+ "babel": {
125
+ "presets": [
126
+ "@babel/preset-env"
127
+ ]
128
+ },
129
+ "msw": {
130
+ "workerDirectory": "public"
131
+ }
132
+ }
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <browserconfig>
3
+ <msapplication>
4
+ <tile>
5
+ <square70x70logo src="/public/mstile-70x70.png"/>
6
+ <square150x150logo src="/public/mstile-150x150.png"/>
7
+ <square310x310logo src="/public/mstile-310x310.png"/>
8
+ <wide310x150logo src="/public/mstile-310x150.png"/>
9
+ <TileColor>#2b5797</TileColor>
10
+ </tile>
11
+ </msapplication>
12
+ </browserconfig>
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,59 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta
6
+ name="viewport"
7
+ content="width=1080, initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=0.6"
8
+ />
9
+ <meta name="theme-color" content="#000000" />
10
+ <meta name="description" content="Web site created using create-react-app" />
11
+ <link rel="apple-touch-icon" sizes="57x57" href="%PUBLIC_URL%/apple-touch-icon-57x57.png" />
12
+ <link rel="apple-touch-icon" sizes="60x60" href="%PUBLIC_URL%/apple-touch-icon-60x60.png" />
13
+ <link rel="apple-touch-icon" sizes="72x72" href="%PUBLIC_URL%/apple-touch-icon-72x72.png" />
14
+ <link rel="apple-touch-icon" sizes="76x76" href="%PUBLIC_URL%/apple-touch-icon-76x76.png" />
15
+ <link rel="apple-touch-icon" sizes="114x114" href="%PUBLIC_URL%/apple-touch-icon-114x114.png" />
16
+ <link rel="apple-touch-icon" sizes="120x120" href="%PUBLIC_URL%/apple-touch-icon-120x120.png" />
17
+ <link rel="apple-touch-icon" sizes="144x144" href="%PUBLIC_URL%/apple-touch-icon-144x144.png" />
18
+ <link rel="apple-touch-icon" sizes="152x152" href="%PUBLIC_URL%/apple-touch-icon-152x152.png" />
19
+ <link rel="apple-touch-icon" sizes="180x180" href="%PUBLIC_URL%/apple-touch-icon-180x180.png" />
20
+ <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
21
+ <link rel="icon" type="image/png" href="%PUBLIC_URL%/favicon-32x32.png" sizes="32x32" />
22
+ <link rel="icon" type="image/png" href="%PUBLIC_URL%/favicon-194x194.png" sizes="194x194" />
23
+ <link rel="icon" type="image/png" href="%PUBLIC_URL%/favicon-96x96.png" sizes="96x96" />
24
+ <link rel="icon" type="image/png" href="%PUBLIC_URL%/android-chrome-192x192.png" sizes="192x192" />
25
+ <link rel="icon" type="image/png" href="%PUBLIC_URL%/favicon-16x16.png" sizes="16x16" />
26
+
27
+ <meta name="msapplication-TileColor" content="#2b5797" />
28
+ <meta name="msapplication-TileImage" content="%PUBLIC_URL%/mstile-144x144.png" />
29
+ <meta name="theme-color" content="#ffffff" />
30
+ <!--
31
+ manifest.json provides metadata used when your web app is installed on a
32
+ user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
33
+ -->
34
+ <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
35
+ <!--
36
+ Notice the use of %PUBLIC_URL% in the tags above.
37
+ It will be replaced with the URL of the `public` folder during the build.
38
+ Only files inside the `public` folder can be referenced from the HTML.
39
+
40
+ Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
41
+ work correctly both with client-side routing and a non-root public URL.
42
+ Learn how to configure a non-root public URL by running `npm run build`.
43
+ -->
44
+ <title>timum für Flowfact</title>
45
+ </head>
46
+ <body>
47
+ <noscript>You need to enable JavaScript to run this app.</noscript>
48
+ <div id="root"></div>
49
+ <!--
50
+ This HTML file is a template.
51
+ If you open it directly in the browser, you will see an empty page.
52
+
53
+ You can add webfonts, meta tags, or analytics to this file.
54
+ The build step will place the bundled scripts into the <body> tag.
55
+
56
+ To begin the development, run `npm start` or `yarn start`.
57
+ To create a production bundle, use `npm run build` or `yarn build`.
58
+ --></body>
59
+ </html>
Binary file
Binary file
@@ -0,0 +1,46 @@
1
+ {
2
+ "short_name": "Timum for Flowfact",
3
+ "name": "Flowfact Widget to organize timum appointments",
4
+ "icons": [
5
+ {
6
+ "src": "android-chrome-36x36.png",
7
+ "sizes": "36x36",
8
+ "type": "image/png",
9
+ "density": "0.75"
10
+ },
11
+ {
12
+ "src": "android-chrome-48x48.png",
13
+ "sizes": "48x48",
14
+ "type": "image/png",
15
+ "density": "1.0"
16
+ },
17
+ {
18
+ "src": "android-chrome-72x72.png",
19
+ "sizes": "72x72",
20
+ "type": "image/png",
21
+ "density": "1.5"
22
+ },
23
+ {
24
+ "src": "android-chrome-96x96.png",
25
+ "sizes": "96x96",
26
+ "type": "image/png",
27
+ "density": "2.0"
28
+ },
29
+ {
30
+ "src": "android-chrome-144x144.png",
31
+ "sizes": "144x144",
32
+ "type": "image/png",
33
+ "density": "3.0"
34
+ },
35
+ {
36
+ "src": "android-chrome-192x192.png",
37
+ "sizes": "192x192",
38
+ "type": "image/png",
39
+ "density": "4.0"
40
+ }
41
+ ],
42
+ "background_color":"#FFFFFF",
43
+ "theme_color":"#555555",
44
+ "start_url": ".",
45
+ "display": "standalone"
46
+ }