@timum/booking 1.6.9 → 1.7.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/package.json CHANGED
@@ -1,183 +1,186 @@
1
- {
2
- "name": "@timum/booking",
3
- "version": "1.6.9",
4
- "next_version": "1.6.9",
5
- "current_major_version": "1",
6
- "license": "CC-BY-ND-4.0",
7
- "type": "module",
8
- "main": "build/booking.umd.cjs",
9
- "module": "build/booking.js",
10
- "packageManager": "yarn@1.22.5",
11
- "exports": {
12
- ".": {
13
- "import": "./build/booking.js",
14
- "require": "./build/booking.umd.cjs"
15
- },
16
- "./component": {
17
- "import": "./build/component/booking.js",
18
- "require": "./build/component/booking.umd.cjs"
19
- }
20
- },
21
- "publishConfig": {
22
- "access": "public"
23
- },
24
- "dependencies": {
25
- "@date-io/luxon": "^2.11.1",
26
- "@fullcalendar/core": "^6.0.1",
27
- "@fullcalendar/daygrid": "^6.0.1",
28
- "@fullcalendar/list": "^6.0.1",
29
- "@fullcalendar/multimonth": "^6.1.4",
30
- "@fullcalendar/react": "^6.0.1",
31
- "@fullcalendar/timegrid": "^6.0.1",
32
- "@testing-library/jest-dom": "^5.16.4",
33
- "@testing-library/react": "^13.3.0",
34
- "@testing-library/user-event": "^13.5.0",
35
- "@timum/timum_pdk": "^2.2.0",
36
- "add-to-calendar-button": "^1.18.8",
37
- "framer-motion": "^11.0.3",
38
- "i18next": "^21.10.0",
39
- "i18next-browser-languagedetector": "^6.1.5",
40
- "i18next-locize-backend": "^6.4.1",
41
- "locize": "^3.2.1",
42
- "lodash": "4.17.21",
43
- "luxon": "^2.3.1",
44
- "markdown-to-jsx": "^7.1.9",
45
- "mui-markdown": "^1.1.9",
46
- "mui-tel-input": "^4.0.0",
47
- "prism-react-renderer": "^1.3.5",
48
- "react-bootstrap-icons": "^1.8.4",
49
- "react-countdown": "^2.3.5",
50
- "react-router": "^5.3.3",
51
- "react-router-dom": "^5.3.3",
52
- "react-scripts": "5.0.0",
53
- "react-transition-group": "^4.4.5",
54
- "react-virtualized-auto-sizer": "^1.0.6",
55
- "react-window": "^1.8.10",
56
- "reactjs-localstorage": "^1.0.1",
57
- "use-deep-compare-effect": "^1.8.1",
58
- "uuid": "^8.3.2",
59
- "web-vitals": "^2.1.4",
60
- "yup": "^0.32.11"
61
- },
62
- "peerDependencies": {
63
- "@emotion/react": ">=11.8.2",
64
- "@emotion/styled": ">=11.8.1",
65
- "@fortawesome/fontawesome-svg-core": ">=6.1.1",
66
- "@fortawesome/free-solid-svg-icons": ">=6.1.1",
67
- "@fortawesome/react-fontawesome": ">=0.1.18",
68
- "@hookform/devtools": ">=4.2.2",
69
- "@hookform/resolvers": ">=2.9.10",
70
- "@mui/icons-material": ">=5.10.9",
71
- "@mui/lab": ">=5.0.0-alpha.100",
72
- "@mui/material": ">=5.10.9",
73
- "@mui/system": ">=5.10.9",
74
- "@reduxjs/toolkit": ">=1.9.1",
75
- "material-ui-confirm": ">=3.0.4",
76
- "notistack": ">=v3.0.0-alpha.11",
77
- "react": ">=18.2.0",
78
- "react-dom": ">=18.2.0",
79
- "react-hook-form": ">=7.33.1",
80
- "react-i18next": ">=11.18.6",
81
- "react-redux": ">=8.0.2"
82
- },
83
- "resolutions": {
84
- "jest-mock": "^28.1.0"
85
- },
86
- "scripts": {
87
- "start": "vite",
88
- "build": "vite build --config vite.config.embed.js && vite build --config vite.config.component.js",
89
- "buildDev": "vite build --config vite.config.embed.js && vite build --config vite.config.component.js && ./moveBundle.bat",
90
- "serve": "vite preview",
91
- "np:preview": "np --no-cleanup --preview",
92
- "np:publish": "yarn build && np --no-cleanup",
93
- "s3:deleteCurrentVersionStage": "aws s3 rm \"s3://cdn.timum/bookingjs/%npm_package_current_major_version%/%npm_package_next_version%-rc\" --recursive",
94
- "s3:publishToStage": "yarn build && yarn s3:deleteCurrentVersionStage && aws s3 sync ./build/ \"s3://cdn.timum/bookingjs/%npm_package_current_major_version%/%npm_package_next_version%-rc/\"",
95
- "s3:deleteLatestProd": "aws s3 rm \"s3://cdn.timum/bookingjs/%npm_package_current_major_version%\" --exclude \"*\" --include \"*.*\" --exclude \"*/*\" --recursive",
96
- "s3:publishToProd": "yarn build && np --no-yarn --no-cleanup && aws s3 sync ./build/ \"s3://cdn.timum/bookingjs/%npm_package_current_major_version%/%npm_package_version%/\" && yarn s3:deleteLatestProd && aws s3 sync ./build/ \"s3://cdn.timum/bookingjs/%npm_package_current_major_version%/\"",
97
- "s3:publishToProdWithoutBuild": "np --no-yarn --no-cleanup && aws s3 sync ./build/ \"s3://cdn.timum/bookingjs/%npm_package_current_major_version%/%npm_package_version%/\" && yarn s3:deleteLatestProd && aws s3 sync ./build/ \"s3://cdn.timum/bookingjs/%npm_package_current_major_version%/\"",
98
- "s3:publishToProdWithoutNP": "yarn build && aws s3 sync ./build/ \"s3://cdn.timum/bookingjs/%npm_package_current_major_version%/%npm_package_version%/\" && yarn s3:deleteLatestProd && aws s3 sync ./build/ \"s3://cdn.timum/bookingjs/%npm_package_current_major_version%/\"",
99
- "test": "echo \"No tests yet\"",
100
- "eject": "react-scripts eject",
101
- "storybook": "storybook dev -p 6006",
102
- "removeLastVersionTag": "git tag -d v%npm_package_next_version%",
103
- "build-storybook": "storybook build",
104
- "lint": "eslint .",
105
- "lint:fix": "eslint --fix ."
106
- },
107
- "eslintConfig": {
108
- "extends": [
109
- "react-app",
110
- "react-app/jest"
111
- ],
112
- "overrides": [
113
- {
114
- "files": [
115
- "**/*.stories.*"
116
- ],
117
- "rules": {
118
- "import/no-anonymous-default-export": "off"
119
- }
120
- }
121
- ]
122
- },
123
- "browserslist": {
124
- "production": [
125
- ">0.2%",
126
- "not dead",
127
- "not op_mini all"
128
- ],
129
- "development": [
130
- "last 1 chrome version",
131
- "last 1 firefox version",
132
- "last 1 safari version"
133
- ]
134
- },
135
- "devDependencies": {
136
- "@emotion/react": ">=11.8.2",
137
- "@emotion/styled": ">=11.8.1",
138
- "@faker-js/faker": "^7.5.0",
139
- "@fortawesome/fontawesome-svg-core": ">=6.1.1",
140
- "@fortawesome/free-solid-svg-icons": ">=6.1.1",
141
- "@fortawesome/react-fontawesome": ">=0.1.18",
142
- "@hookform/devtools": ">=4.2.2",
143
- "@hookform/resolvers": ">=2.9.10",
144
- "@mui/icons-material": ">=5.10.9",
145
- "@mui/lab": ">=5.0.0-alpha.100",
146
- "@mui/material": ">=5.10.9",
147
- "@mui/system": ">=5.10.9",
148
- "@reduxjs/toolkit": ">=1.9.1",
149
- "@storybook/addon-actions": "^7.6.17",
150
- "@storybook/addon-essentials": "^7.6.17",
151
- "@storybook/addon-interactions": "^7.6.17",
152
- "@storybook/addon-links": "^7.6.17",
153
- "@storybook/node-logger": "^7.6.17",
154
- "@storybook/react": "^7.6.17",
155
- "@storybook/react-vite": "7.6.17",
156
- "@vitejs/plugin-react": "^4.2.1",
157
- "css-loader": "^6.7.1",
158
- "eslint": "^8.17.0",
159
- "eslint-config-prettier": "^8.5.0",
160
- "eslint-plugin-prettier": "^4.0.0",
161
- "eslint-plugin-react": "^7.30.0",
162
- "eslint-plugin-react-hooks": "^4.6.0",
163
- "eslint-plugin-storybook": "^0.5.12",
164
- "material-ui-confirm": ">=3.0.4",
165
- "mini-css-extract-plugin": "^1.2.0",
166
- "msw": "^1.2.5",
167
- "msw-storybook-addon": "^1.10.0",
168
- "notistack": ">=2.0.3",
169
- "np": "^10.0.2",
170
- "react": ">=18.0.0",
171
- "react-dom": ">=18.2.0",
172
- "react-hook-form": ">=7.33.1",
173
- "react-i18next": ">=11.18.6",
174
- "react-redux": ">=8.0.2",
175
- "rollup-plugin-sourcemaps": "^0.6.3",
176
- "storybook": "7.6.17",
177
- "vite": "^4.5.1",
178
- "vite-plugin-svgr": "^2.4.0"
179
- },
180
- "msw": {
181
- "workerDirectory": "public"
182
- }
183
- }
1
+ {
2
+ "name": "@timum/booking",
3
+ "version": "1.7.1",
4
+ "next_version": "1.7.1",
5
+ "current_major_version": "1",
6
+ "license": "CC-BY-ND-4.0",
7
+ "type": "module",
8
+ "main": "build/booking.umd.cjs",
9
+ "module": "build/booking.js",
10
+ "packageManager": "yarn@4.2.2",
11
+ "exports": {
12
+ ".": {
13
+ "import": "./build/booking.js",
14
+ "require": "./build/booking.umd.cjs"
15
+ },
16
+ "./component": {
17
+ "import": "./build/component/booking.js",
18
+ "require": "./build/component/booking.umd.cjs"
19
+ }
20
+ },
21
+ "publishConfig": {
22
+ "access": "public"
23
+ },
24
+ "dependencies": {
25
+ "@date-io/luxon": "^2.11.1",
26
+ "@fullcalendar/core": "^6.0.1",
27
+ "@fullcalendar/daygrid": "^6.0.1",
28
+ "@fullcalendar/list": "^6.0.1",
29
+ "@fullcalendar/multimonth": "^6.1.4",
30
+ "@fullcalendar/react": "^6.0.1",
31
+ "@fullcalendar/timegrid": "^6.0.1",
32
+ "@testing-library/jest-dom": "^5.16.4",
33
+ "@testing-library/react": "^13.3.0",
34
+ "@testing-library/user-event": "^13.5.0",
35
+ "@timum/timum_pdk": "^2.2.1",
36
+ "add-to-calendar-button": "^1.18.8",
37
+ "framer-motion": "^11.0.3",
38
+ "i18next": "^21.10.0",
39
+ "i18next-browser-languagedetector": "^6.1.5",
40
+ "i18next-locize-backend": "^6.4.1",
41
+ "locize": "^3.2.1",
42
+ "lodash": "4.17.21",
43
+ "luxon": "^2.3.1",
44
+ "markdown-to-jsx": "^7.1.9",
45
+ "mui-markdown": "^1.1.9",
46
+ "mui-tel-input": "^4.0.0",
47
+ "prism-react-renderer": "^1.3.5",
48
+ "react-bootstrap-icons": "^1.8.4",
49
+ "react-countdown": "^2.3.5",
50
+ "react-router": "^5.3.3",
51
+ "react-router-dom": "^5.3.3",
52
+ "react-scripts": "5.0.0",
53
+ "react-transition-group": "^4.4.5",
54
+ "react-virtualized-auto-sizer": "^1.0.6",
55
+ "react-window": "^1.8.10",
56
+ "reactjs-localstorage": "^1.0.1",
57
+ "use-deep-compare-effect": "^1.8.1",
58
+ "uuid": "^8.3.2",
59
+ "web-vitals": "^2.1.4",
60
+ "yup": "^0.32.11"
61
+ },
62
+ "peerDependencies": {
63
+ "@emotion/react": ">=11.8.2",
64
+ "@emotion/styled": ">=11.8.1",
65
+ "@fortawesome/fontawesome-svg-core": ">=6.1.1",
66
+ "@fortawesome/free-solid-svg-icons": ">=6.1.1",
67
+ "@fortawesome/react-fontawesome": ">=0.1.18",
68
+ "@hookform/devtools": ">=4.2.2",
69
+ "@hookform/resolvers": ">=2.9.10",
70
+ "@mui/icons-material": ">=5.10.9",
71
+ "@mui/lab": ">=5.0.0-alpha.100",
72
+ "@mui/material": ">=5.10.9",
73
+ "@mui/system": ">=5.10.9",
74
+ "@reduxjs/toolkit": ">=1.9.1",
75
+ "material-ui-confirm": ">=3.0.4",
76
+ "notistack": ">=v3.0.0-alpha.11",
77
+ "react": ">=18.2.0",
78
+ "react-dom": ">=18.2.0",
79
+ "react-hook-form": ">=7.33.1",
80
+ "react-i18next": ">=11.18.6",
81
+ "react-redux": ">=8.0.2"
82
+ },
83
+ "resolutions": {
84
+ "jest-mock": "^28.1.0"
85
+ },
86
+ "scripts": {
87
+ "start": "vite",
88
+ "build": "vite build --config vite.config.embed.js && vite build --config vite.config.component.js",
89
+ "buildDev": "vite build --config vite.config.embed.js && vite build --config vite.config.component.js && ./moveBundle.bat",
90
+ "serve": "vite preview",
91
+ "np:preview": "np --no-cleanup --preview",
92
+ "np:publish": "yarn build && np --no-cleanup",
93
+ "s3:deleteCurrentVersionStage": "aws s3 rm \"s3://cdn.timum/bookingjs/${npm_package_current_major_version}/${npm_package_next_version}-rc\" --recursive",
94
+ "s3:deleteLatestStage": "aws s3 rm \"s3://cdn.timum/bookingjs/${npm_package_current_major_version}/latest-rc\" --exclude \"*\" --include \"*.*\" --recursive",
95
+ "s3:publishToStage": "yarn build && yarn s3:deleteCurrentVersionStage && aws s3 sync ./build/ \"s3://cdn.timum/bookingjs/${npm_package_current_major_version}/${npm_package_next_version}-rc/\" && yarn s3:deleteLatestStage && aws s3 sync ./build/ \"s3://cdn.timum/bookingjs/${npm_package_current_major_version}/latest-rc/\"",
96
+ "s3:deleteLatestProd": "aws s3 rm \"s3://cdn.timum/bookingjs/${npm_package_current_major_version}\" --exclude \"*\" --include \"*.*\" --exclude \"*/*\" --recursive",
97
+ "s3:publishToProd": "yarn build && np --no-yarn --no-cleanup && aws s3 sync ./build/ \"s3://cdn.timum/bookingjs/${npm_package_current_major_version}/${npm_package_version}/\" && yarn s3:deleteLatestProd && aws s3 sync ./build/ \"s3://cdn.timum/bookingjs/${npm_package_current_major_version}/\"",
98
+ "s3:publishToProdWithoutBuild": "np --no-yarn --no-cleanup && aws s3 sync ./build/ \"s3://cdn.timum/bookingjs/${npm_package_current_major_version}/${npm_package_version}/\" && yarn s3:deleteLatestProd && aws s3 sync ./build/ \"s3://cdn.timum/bookingjs/${npm_package_current_major_version}/\"",
99
+ "s3:publishToProdWithoutNP": "yarn build && aws s3 sync ./build/ \"s3://cdn.timum/bookingjs/${npm_package_current_major_version}/${npm_package_version}/\" && yarn s3:deleteLatestProd && aws s3 sync ./build/ \"s3://cdn.timum/bookingjs/${npm_package_current_major_version}/\"",
100
+ "test": "echo \"No tests yet\"",
101
+ "eject": "react-scripts eject",
102
+ "storybook": "storybook dev -p 6006",
103
+ "removeLastVersionTag": "git tag -d v${npm_package_next_version}",
104
+ "build-storybook": "storybook build",
105
+ "lint": "eslint .",
106
+ "lint:fix": "eslint --fix ."
107
+ },
108
+ "eslintConfig": {
109
+ "extends": [
110
+ "react-app",
111
+ "react-app/jest"
112
+ ],
113
+ "overrides": [
114
+ {
115
+ "files": [
116
+ "**/*.stories.*"
117
+ ],
118
+ "rules": {
119
+ "import/no-anonymous-default-export": "off"
120
+ }
121
+ }
122
+ ]
123
+ },
124
+ "browserslist": {
125
+ "production": [
126
+ ">0.2%",
127
+ "not dead",
128
+ "not op_mini all"
129
+ ],
130
+ "development": [
131
+ "last 1 chrome version",
132
+ "last 1 firefox version",
133
+ "last 1 safari version"
134
+ ]
135
+ },
136
+ "devDependencies": {
137
+ "@emotion/react": ">=11.8.2",
138
+ "@emotion/styled": ">=11.8.1",
139
+ "@faker-js/faker": "^7.5.0",
140
+ "@fortawesome/fontawesome-svg-core": ">=6.1.1",
141
+ "@fortawesome/free-solid-svg-icons": ">=6.1.1",
142
+ "@fortawesome/react-fontawesome": ">=0.1.18",
143
+ "@hookform/devtools": ">=4.2.2",
144
+ "@hookform/resolvers": ">=2.9.10",
145
+ "@mui/icons-material": ">=5.15.20",
146
+ "@mui/lab": ">=5.0.0-alpha.100",
147
+ "@mui/material": ">=5.15.20",
148
+ "@mui/system": ">=5.15.20",
149
+ "@reduxjs/toolkit": ">=1.9.1",
150
+ "@storybook/addon-actions": "^7.6.17",
151
+ "@storybook/addon-essentials": "^7.6.17",
152
+ "@storybook/addon-interactions": "^7.6.17",
153
+ "@storybook/addon-links": "^7.6.17",
154
+ "@storybook/node-logger": "^7.6.17",
155
+ "@storybook/react": "^7.6.17",
156
+ "@storybook/react-vite": "7.6.17",
157
+ "@vitejs/plugin-react": "^4.2.1",
158
+ "css-loader": "^6.7.1",
159
+ "eslint": "^8.52.0",
160
+ "eslint-config-prettier": "^8.5.0",
161
+ "eslint-plugin-prettier": "^5.0.0",
162
+ "eslint-plugin-react": "^7.30.0",
163
+ "eslint-plugin-react-hooks": "^4.6.0",
164
+ "eslint-plugin-storybook": "^0.5.12",
165
+ "material-ui-confirm": ">=3.0.4",
166
+ "mini-css-extract-plugin": "^1.2.0",
167
+ "msw": "^1.2.5",
168
+ "msw-storybook-addon": "^1.10.0",
169
+ "notistack": ">=2.0.3",
170
+ "np": "^10.0.2",
171
+ "prettier": "^3.3.1",
172
+ "prettier-eslint": "^16.3.0",
173
+ "react": ">=18.0.0",
174
+ "react-dom": ">=18.2.0",
175
+ "react-hook-form": ">=7.33.1",
176
+ "react-i18next": ">=11.18.6",
177
+ "react-redux": ">=8.0.2",
178
+ "rollup-plugin-sourcemaps": "^0.6.3",
179
+ "storybook": "7.6.17",
180
+ "vite": "^4.5.1",
181
+ "vite-plugin-svgr": "^2.4.0"
182
+ },
183
+ "msw": {
184
+ "workerDirectory": "public"
185
+ }
186
+ }
@@ -1,12 +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>
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>
@@ -1,46 +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
- }
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
+ }
package/public/robots.txt CHANGED
@@ -1,3 +1,3 @@
1
- # https://www.robotstxt.org/robotstxt.html
2
- User-agent: *
3
- Disallow:
1
+ # https://www.robotstxt.org/robotstxt.html
2
+ User-agent: *
3
+ Disallow: