hazo_files 3.3.0 → 3.4.0
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/CHANGE_LOG.md +16 -0
- package/dist/background-upload/react/index.js +114 -5
- package/dist/background-upload/react/index.mjs +114 -5
- package/dist/ui/index.js +235 -109
- package/dist/ui/index.mjs +235 -109
- package/package.json +17 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hazo_files",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"description": "File management including integration to cloud files",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"@dnd-kit/core": "^6.0.0",
|
|
90
90
|
"@dnd-kit/sortable": "^8.0.0",
|
|
91
91
|
"@dnd-kit/utilities": "^3.0.0",
|
|
92
|
-
"googleapis": "^140",
|
|
92
|
+
"googleapis": "^140.0.0",
|
|
93
93
|
"ini": "^4.1.3",
|
|
94
94
|
"mime-types": "^2.1.35"
|
|
95
95
|
},
|
|
@@ -105,9 +105,9 @@
|
|
|
105
105
|
"@types/react": "^18.3.3",
|
|
106
106
|
"@types/react-dom": "^18.3.0",
|
|
107
107
|
"dropbox": "^10.34.0",
|
|
108
|
-
"hazo_core": "^2.
|
|
109
|
-
"hazo_jobs": "^0.
|
|
110
|
-
"hazo_llm_api": "^2.
|
|
108
|
+
"hazo_core": "^2.4.0",
|
|
109
|
+
"hazo_jobs": "^0.19.0",
|
|
110
|
+
"hazo_llm_api": "^2.6.0",
|
|
111
111
|
"jsdom": "^28.1.0",
|
|
112
112
|
"react": "^18.2.0",
|
|
113
113
|
"react-dom": "^18.2.0",
|
|
@@ -120,14 +120,15 @@
|
|
|
120
120
|
"peerDependencies": {
|
|
121
121
|
"dropbox": "^10.0.0",
|
|
122
122
|
"googleapis": "^140.0.0",
|
|
123
|
-
"hazo_connect": "^4.0
|
|
124
|
-
"hazo_core": "^2.
|
|
125
|
-
"hazo_debug": "^3.
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
123
|
+
"hazo_connect": "^4.3.0",
|
|
124
|
+
"hazo_core": "^2.4.0",
|
|
125
|
+
"hazo_debug": "^3.3.0",
|
|
126
|
+
"hazo_i18n": "^0.5.0",
|
|
127
|
+
"hazo_jobs": "^0.19.0",
|
|
128
|
+
"hazo_llm_api": "^2.6.0",
|
|
129
|
+
"hazo_logs": "^2.3.0",
|
|
130
|
+
"hazo_secure": "^1.8.1",
|
|
131
|
+
"hazo_ui": "^6.12.0",
|
|
131
132
|
"react": "^18.0.0 || ^19.0.0",
|
|
132
133
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
133
134
|
"server-only": "^0.0.1",
|
|
@@ -150,6 +151,9 @@
|
|
|
150
151
|
"hazo_debug": {
|
|
151
152
|
"optional": true
|
|
152
153
|
},
|
|
154
|
+
"hazo_i18n": {
|
|
155
|
+
"optional": true
|
|
156
|
+
},
|
|
153
157
|
"hazo_logs": {
|
|
154
158
|
"optional": true
|
|
155
159
|
},
|