@zextras/carbonio-shell-ui 0.4.14 → 0.4.15
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/dist/CHANGELOG.md +18 -0
- package/dist/PKGBUILD +6 -6
- package/dist/commit +1 -1
- package/dist/component.json +3 -3
- package/dist/i18n/de.json +82 -1
- package/dist/i18n/fr.json +64 -1
- package/dist/i18n/hi.json +138 -1
- package/dist/i18n/id.json +138 -1
- package/dist/i18n/it.json +35 -1
- package/dist/i18n/ja.json +138 -1
- package/dist/i18n/nl.json +138 -1
- package/dist/i18n/pl.json +7 -7
- package/dist/i18n/pt_BR.json +138 -1
- package/dist/i18n/th.json +138 -1
- package/dist/i18n/tr.json +138 -1
- package/dist/i18n/zh_Hans.json +138 -1
- package/dist/index.html +3 -3
- package/dist/{src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.19871cdd.chunk.js → src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.6dd85d32.chunk.js} +229 -202
- package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.6dd85d32.chunk.js.map +1 -0
- package/dist/{src_workers_folder_ts.6e00c930.chunk.js → src_workers_folder_ts.b953ead8.chunk.js} +2 -2
- package/dist/{src_workers_folder_ts.6e00c930.chunk.js.map → src_workers_folder_ts.b953ead8.chunk.js.map} +1 -1
- package/dist/{src_workers_tag_ts.275881ac.chunk.js → src_workers_tag_ts.f72cbbc5.chunk.js} +2 -2
- package/dist/{src_workers_tag_ts.275881ac.chunk.js.map → src_workers_tag_ts.f72cbbc5.chunk.js.map} +1 -1
- package/dist/{style.e1b357a2.css → style.b11f5282.css} +1 -1
- package/dist/{style.e1b357a2.css.map → style.b11f5282.css.map} +1 -1
- package/dist/{vendors-node_modules_reduxjs_toolkit_dist_redux-toolkit_esm_js-node_modules_sentry_browser_es-eb34a0.8b6b16b5.chunk.js → vendors-node_modules_reduxjs_toolkit_dist_redux-toolkit_esm_js-node_modules_sentry_browser_es-eb34a0.e0814547.chunk.js} +79 -38
- package/dist/{vendors-node_modules_reduxjs_toolkit_dist_redux-toolkit_esm_js-node_modules_sentry_browser_es-eb34a0.8b6b16b5.chunk.js.map → vendors-node_modules_reduxjs_toolkit_dist_redux-toolkit_esm_js-node_modules_sentry_browser_es-eb34a0.e0814547.chunk.js.map} +1 -1
- package/dist/zapp-shell.bundle.js +2 -2
- package/dist/zapp-shell.bundle.js.map +1 -1
- package/package.json +3 -3
- package/types/exports/index.d.ts +4 -0
- package/types/misc/index.d.ts +2 -2
- package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.19871cdd.chunk.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zextras/carbonio-shell-ui",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.15",
|
|
4
4
|
"description": "The Zextras Carbonio web client",
|
|
5
5
|
"main": "dist/zapp-shell.bundle.js",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -99,8 +99,8 @@
|
|
|
99
99
|
"dependencies": {
|
|
100
100
|
"@sentry/browser": "^6.17.7",
|
|
101
101
|
"@tinymce/tinymce-react": "^3.13.0",
|
|
102
|
-
"@zextras/carbonio-design-system": "
|
|
103
|
-
"@zextras/carbonio-ui-preview": "^0.1.
|
|
102
|
+
"@zextras/carbonio-design-system": "0.3.2",
|
|
103
|
+
"@zextras/carbonio-ui-preview": "^0.1.5",
|
|
104
104
|
"darkreader": "4.9.44",
|
|
105
105
|
"history": "^5.2.0",
|
|
106
106
|
"i18next": "21.6.10",
|
package/types/exports/index.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ import { Mods, TagActionResponse, CreateTagResponse, SoapNotify, SoapRefresh } f
|
|
|
34
34
|
import { HistoryParams, ShellModes } from '../misc';
|
|
35
35
|
import { Tag, Tags } from '../tags';
|
|
36
36
|
import { Folder, Folders } from '../folder';
|
|
37
|
+
import { QueryChip } from '../search';
|
|
37
38
|
|
|
38
39
|
export const getBridgedFunctions: () => {
|
|
39
40
|
addBoard: (path: string, context?: unknown | { app: string }) => void;
|
|
@@ -220,3 +221,6 @@ export const useFoldersAccordionByView: (
|
|
|
220
221
|
view: string,
|
|
221
222
|
CustomComponent: ComponentType<{ folder: Folder }>
|
|
222
223
|
) => Array<AccordionFolder>;
|
|
224
|
+
|
|
225
|
+
// Run Search
|
|
226
|
+
export const runSearch: (query: Array<QueryChip>, module: string) => void;
|
package/types/misc/index.d.ts
CHANGED
|
@@ -164,10 +164,10 @@ export type SoapPolicy = {
|
|
|
164
164
|
lifetime?: string;
|
|
165
165
|
};
|
|
166
166
|
|
|
167
|
-
export type SoapRetentionPolicy = {
|
|
167
|
+
export type SoapRetentionPolicy = Array<{
|
|
168
168
|
keep: Array<SoapPolicy>;
|
|
169
169
|
purge: Array<SoapPolicy>;
|
|
170
|
-
}
|
|
170
|
+
}>;
|
|
171
171
|
|
|
172
172
|
export type FolderView =
|
|
173
173
|
| 'search folder'
|