@keepeek/keepicker-react 1.4.1-beta.2 → 1.5.0-beta.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/README.md +8 -7
- package/dist/index.js +2 -2
- package/dist/license.txt +12 -0
- package/package.json +20 -4
package/dist/license.txt
CHANGED
|
@@ -4,6 +4,16 @@
|
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
+
/*!
|
|
8
|
+
* Cropper.js v1.6.1
|
|
9
|
+
* https://fengyuanchen.github.io/cropperjs
|
|
10
|
+
*
|
|
11
|
+
* Copyright 2015-present Chen Fengyuan
|
|
12
|
+
* Released under the MIT license
|
|
13
|
+
*
|
|
14
|
+
* Date: 2023-09-17T03:44:19.860Z
|
|
15
|
+
*/
|
|
16
|
+
|
|
7
17
|
/*!
|
|
8
18
|
* is-plain-object <https://github.com/jonschlinkert/is-plain-object>
|
|
9
19
|
*
|
|
@@ -110,3 +120,5 @@
|
|
|
110
120
|
* This source code is licensed under the MIT license found in the
|
|
111
121
|
* LICENSE file in the root directory of this source tree.
|
|
112
122
|
*/
|
|
123
|
+
|
|
124
|
+
/** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keepeek/keepicker-react",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0-beta.2",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist/index.js",
|
|
6
6
|
"dist/license.txt"
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"@braintree/sanitize-url": "6.0.2",
|
|
11
11
|
"@emotion/react": "11.8.2",
|
|
12
12
|
"@emotion/styled": "11.8.1",
|
|
13
|
-
"@keepeek/api-client": "2.
|
|
14
|
-
"@keepeek/commons": "3.
|
|
15
|
-
"@keepeek/refront-components": "7.
|
|
13
|
+
"@keepeek/api-client": "2.63.0-beta.2",
|
|
14
|
+
"@keepeek/commons": "3.3.0-beta.16",
|
|
15
|
+
"@keepeek/refront-components": "7.3.0-beta.26",
|
|
16
16
|
"@mui/icons-material": "5.5.0",
|
|
17
17
|
"@mui/lab": "5.0.0-alpha.72",
|
|
18
18
|
"@mui/material": "5.5.3",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"clsx": "1.1.1",
|
|
26
26
|
"copy-to-clipboard": "3.3.1",
|
|
27
27
|
"cra-template-typescript": "1.1.3",
|
|
28
|
+
"cropperjs": "1.6.1",
|
|
28
29
|
"dayjs": "1.10.8",
|
|
29
30
|
"dropzone": "6.0.0-beta.2",
|
|
30
31
|
"formik": "2.2.9",
|
|
@@ -39,6 +40,8 @@
|
|
|
39
40
|
"notistack": "2.0.3",
|
|
40
41
|
"react": "18.2.0",
|
|
41
42
|
"react-canvas-confetti": "1.3.0",
|
|
43
|
+
"react-dnd": "16.0.1",
|
|
44
|
+
"react-dnd-html5-backend": "16.0.1",
|
|
42
45
|
"react-dom": "18.2.0",
|
|
43
46
|
"react-error-boundary": "3.1.4",
|
|
44
47
|
"react-file-drop": "3.1.3",
|
|
@@ -46,6 +49,7 @@
|
|
|
46
49
|
"react-hook-form": "7.35.0",
|
|
47
50
|
"react-html-parser": "2.0.2",
|
|
48
51
|
"react-i18next": "13.0.1",
|
|
52
|
+
"react-lazy-load-image-component": "1.6.0",
|
|
49
53
|
"react-pdf": "5.7.1",
|
|
50
54
|
"react-router-dom": "6.14.1",
|
|
51
55
|
"react-scripts": "5.0.1",
|
|
@@ -147,6 +151,18 @@
|
|
|
147
151
|
],
|
|
148
152
|
"tagFormat": "${version}"
|
|
149
153
|
},
|
|
154
|
+
"jest": {
|
|
155
|
+
"moduleNameMapper": {
|
|
156
|
+
"@keepeek/refront-components": [
|
|
157
|
+
"<rootDir>/../refront-components/dist/index.cjs",
|
|
158
|
+
"<rootDir>/node_modules/@keepeek/refront-components/dist/index.cjs",
|
|
159
|
+
"<rootDir>/../node_modules/@keepeek/refront-components/dist/index.cjs"
|
|
160
|
+
]
|
|
161
|
+
},
|
|
162
|
+
"transformIgnorePatterns": [
|
|
163
|
+
"<rootDir>/node_modules/(?!@react-dnd|react-dnd|dnd-core|react-dnd-html5-backend)"
|
|
164
|
+
]
|
|
165
|
+
},
|
|
150
166
|
"eslintConfig": {
|
|
151
167
|
"extends": [
|
|
152
168
|
"react-app",
|