@timum/booking 0.6.0 → 0.6.2
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/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.umd.
|
|
14
|
+
<script type="text/javascript" src="../build/timum-booking.umd.cjs"></script>
|
|
15
15
|
<script type="text/javascript">
|
|
16
16
|
timum.init(
|
|
17
17
|
{
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@timum/booking",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"license": "CC-BY-ND-4.0",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "build/timum-booking.umd.cjs",
|
|
7
|
+
"module": "build/timum-booking.js",
|
|
7
8
|
"exports": {
|
|
8
9
|
".": {
|
|
9
|
-
"import": "./build/timum-booking.
|
|
10
|
-
"require": "./build/timum-booking.umd.
|
|
10
|
+
"import": "./build/timum-booking.js",
|
|
11
|
+
"require": "./build/timum-booking.umd.cjs"
|
|
11
12
|
}
|
|
12
13
|
},
|
|
13
14
|
"publishConfig": {
|
|
@@ -15,23 +16,11 @@
|
|
|
15
16
|
},
|
|
16
17
|
"dependencies": {
|
|
17
18
|
"@date-io/luxon": "^2.11.1",
|
|
18
|
-
"@emotion/react": "^11.8.2",
|
|
19
|
-
"@emotion/styled": "^11.8.1",
|
|
20
|
-
"@fortawesome/fontawesome-svg-core": "^6.1.1",
|
|
21
|
-
"@fortawesome/free-solid-svg-icons": "^6.1.1",
|
|
22
|
-
"@fortawesome/react-fontawesome": "^0.1.18",
|
|
23
19
|
"@fullcalendar/core": "^6.0.1",
|
|
24
20
|
"@fullcalendar/daygrid": "^6.0.1",
|
|
25
21
|
"@fullcalendar/list": "^6.0.1",
|
|
26
22
|
"@fullcalendar/react": "^6.0.1",
|
|
27
23
|
"@fullcalendar/timegrid": "^6.0.1",
|
|
28
|
-
"@hookform/devtools": "^4.2.2",
|
|
29
|
-
"@hookform/resolvers": "^2.9.3",
|
|
30
|
-
"@mui/icons-material": "^5.8.3",
|
|
31
|
-
"@mui/lab": "^5.0.0-alpha.87",
|
|
32
|
-
"@mui/material": "^5.8.3",
|
|
33
|
-
"@mui/system": "^5.8.3",
|
|
34
|
-
"@reduxjs/toolkit": "^1.8.0",
|
|
35
24
|
"@testing-library/jest-dom": "^5.16.4",
|
|
36
25
|
"@testing-library/react": "^13.3.0",
|
|
37
26
|
"@testing-library/user-event": "^13.5.0",
|
|
@@ -41,16 +30,9 @@
|
|
|
41
30
|
"i18next-browser-languagedetector": "^6.1.5",
|
|
42
31
|
"lodash": "4.17.21",
|
|
43
32
|
"luxon": "^2.3.1",
|
|
44
|
-
"material-ui-confirm": "^3.0.4",
|
|
45
33
|
"mui-tel-input": "^2.1.0",
|
|
46
|
-
"notistack": "v3.0.0-alpha.11",
|
|
47
|
-
"react": "^18.2.0",
|
|
48
34
|
"react-bootstrap-icons": "^1.8.4",
|
|
49
35
|
"react-countdown": "^2.3.5",
|
|
50
|
-
"react-dom": "^18.2.0",
|
|
51
|
-
"react-hook-form": "^7.36.1",
|
|
52
|
-
"react-i18next": "^11.18.6",
|
|
53
|
-
"react-redux": "^8.0.2",
|
|
54
36
|
"react-router": "^5.3.3",
|
|
55
37
|
"react-router-dom": "^5.3.3",
|
|
56
38
|
"react-scripts": "5.0.0",
|
|
@@ -61,6 +43,27 @@
|
|
|
61
43
|
"web-vitals": "^2.1.4",
|
|
62
44
|
"yup": "^0.32.11"
|
|
63
45
|
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"@emotion/react": ">=11.8.2",
|
|
48
|
+
"@emotion/styled": ">=11.8.1",
|
|
49
|
+
"@fortawesome/fontawesome-svg-core": ">=6.1.1",
|
|
50
|
+
"@fortawesome/free-solid-svg-icons": ">=6.1.1",
|
|
51
|
+
"@fortawesome/react-fontawesome": ">=0.1.18",
|
|
52
|
+
"@hookform/devtools": ">=4.2.2",
|
|
53
|
+
"@hookform/resolvers": ">=2.9.10",
|
|
54
|
+
"@mui/icons-material": ">=5.10.9",
|
|
55
|
+
"@mui/lab": ">=5.0.0-alpha.100",
|
|
56
|
+
"@mui/material": ">=5.10.9",
|
|
57
|
+
"@mui/system": ">=5.10.9",
|
|
58
|
+
"@reduxjs/toolkit": ">=1.9.1",
|
|
59
|
+
"material-ui-confirm": ">=3.0.4",
|
|
60
|
+
"notistack": ">=v3.0.0-alpha.11",
|
|
61
|
+
"react": ">=18.2.0",
|
|
62
|
+
"react-dom": ">=18.2.0",
|
|
63
|
+
"react-hook-form": ">=7.33.1",
|
|
64
|
+
"react-i18next": ">=11.18.6",
|
|
65
|
+
"react-redux": ">=8.0.2"
|
|
66
|
+
},
|
|
64
67
|
"scripts": {
|
|
65
68
|
"start": "vite",
|
|
66
69
|
"build": "vite build",
|
|
@@ -105,7 +108,19 @@
|
|
|
105
108
|
]
|
|
106
109
|
},
|
|
107
110
|
"devDependencies": {
|
|
111
|
+
"@emotion/react": ">=11.8.2",
|
|
112
|
+
"@emotion/styled": ">=11.8.1",
|
|
108
113
|
"@faker-js/faker": "^7.5.0",
|
|
114
|
+
"@fortawesome/fontawesome-svg-core": ">=6.1.1",
|
|
115
|
+
"@fortawesome/free-solid-svg-icons": ">=6.1.1",
|
|
116
|
+
"@fortawesome/react-fontawesome": ">=0.1.18",
|
|
117
|
+
"@hookform/devtools": ">=4.2.2",
|
|
118
|
+
"@hookform/resolvers": ">=2.9.10",
|
|
119
|
+
"@mui/icons-material": ">=5.10.9",
|
|
120
|
+
"@mui/lab": ">=5.0.0-alpha.100",
|
|
121
|
+
"@mui/material": ">=5.10.9",
|
|
122
|
+
"@mui/system": ">=5.10.9",
|
|
123
|
+
"@reduxjs/toolkit": ">=1.9.1",
|
|
109
124
|
"@storybook/addon-actions": "^6.5.7",
|
|
110
125
|
"@storybook/addon-essentials": "^6.5.7",
|
|
111
126
|
"@storybook/addon-interactions": "^6.5.7",
|
|
@@ -121,9 +136,16 @@
|
|
|
121
136
|
"eslint-plugin-prettier": "^4.0.0",
|
|
122
137
|
"eslint-plugin-react": "^7.30.0",
|
|
123
138
|
"eslint-plugin-storybook": "^0.5.12",
|
|
139
|
+
"material-ui-confirm": ">=3.0.4",
|
|
124
140
|
"mini-css-extract-plugin": "^1.2.0",
|
|
125
141
|
"msw": "^0.39.2",
|
|
126
142
|
"msw-storybook-addon": "^1.6.3",
|
|
143
|
+
"notistack": ">=2.0.3",
|
|
144
|
+
"react": ">=18.0.0",
|
|
145
|
+
"react-dom": ">=18.2.0",
|
|
146
|
+
"react-hook-form": ">=7.33.1",
|
|
147
|
+
"react-i18next": ">=11.18.6",
|
|
148
|
+
"react-redux": ">=8.0.2",
|
|
127
149
|
"vite": "^4.1.1",
|
|
128
150
|
"vite-plugin-svgr": "^2.4.0"
|
|
129
151
|
},
|