@zextras/carbonio-shell-ui 6.0.0 → 7.0.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/lib/boot/app/app-context-provider.d.ts +7 -0
- package/lib/boot/app/app-context-provider.js +17 -0
- package/lib/boot/app/app-context-provider.js.map +1 -0
- package/lib/boot/app/app-error-catcher.d.ts +3 -0
- package/lib/boot/app/app-error-catcher.js +41 -0
- package/lib/boot/app/app-error-catcher.js.map +1 -0
- package/lib/boot/app/app-loader-functions.d.ts +37 -0
- package/lib/boot/app/app-loader-functions.js +121 -0
- package/lib/boot/app/app-loader-functions.js.map +1 -0
- package/lib/boot/app/app-loader-setters.d.ts +38 -0
- package/lib/boot/app/app-loader-setters.js +46 -0
- package/lib/boot/app/app-loader-setters.js.map +1 -0
- package/lib/boot/matomo.d.ts +12 -0
- package/lib/boot/matomo.js +22 -0
- package/lib/boot/matomo.js.map +1 -0
- package/lib/boot/module-i18next-provider.d.ts +7 -0
- package/lib/boot/module-i18next-provider.js +22 -0
- package/lib/boot/module-i18next-provider.js.map +1 -0
- package/lib/boot/tracker.d.ts +11 -0
- package/lib/boot/tracker.js +57 -0
- package/lib/boot/tracker.js.map +1 -0
- package/lib/constants/index.d.ts +146 -0
- package/lib/constants/index.js +160 -0
- package/lib/constants/index.js.map +1 -0
- package/lib/constants/locales.d.ts +83 -0
- package/lib/constants/locales.js +86 -0
- package/lib/constants/locales.js.map +1 -0
- package/lib/history/hooks.d.ts +12 -0
- package/lib/history/hooks.js +69 -0
- package/lib/history/hooks.js.map +1 -0
- package/lib/lib.d.ts +74 -0
- package/lib/lib.js +134 -0
- package/lib/lib.js.map +1 -0
- package/lib/network/edit-settings.d.ts +14 -0
- package/lib/network/edit-settings.js +144 -0
- package/lib/network/edit-settings.js.map +1 -0
- package/lib/network/fetch.d.ts +4 -0
- package/lib/network/fetch.js +175 -0
- package/lib/network/fetch.js.map +1 -0
- package/lib/network/tags.d.ts +27 -0
- package/lib/network/tags.js +31 -0
- package/lib/network/tags.js.map +1 -0
- package/lib/network/user-agent.d.ts +1 -0
- package/lib/network/user-agent.js +15 -0
- package/lib/network/user-agent.js.map +1 -0
- package/lib/network/utils.d.ts +2 -0
- package/lib/network/utils.js +17 -0
- package/lib/network/utils.js.map +1 -0
- package/lib/notification/NotificationManager.d.ts +22 -0
- package/lib/notification/NotificationManager.js +153 -0
- package/lib/notification/NotificationManager.js.map +1 -0
- package/lib/reporting/functions.d.ts +2 -0
- package/lib/reporting/functions.js +14 -0
- package/lib/reporting/functions.js.map +1 -0
- package/lib/reporting/store.d.ts +8 -0
- package/lib/reporting/store.js +43 -0
- package/lib/reporting/store.js.map +1 -0
- package/lib/search/run-search.d.ts +2 -0
- package/lib/search/run-search.js +17 -0
- package/lib/search/run-search.js.map +1 -0
- package/lib/search/search-store.d.ts +2 -0
- package/lib/search/search-store.js +20 -0
- package/lib/search/search-store.js.map +1 -0
- package/lib/search/useSearchModule.d.ts +3 -0
- package/lib/search/useSearchModule.js +21 -0
- package/lib/search/useSearchModule.js.map +1 -0
- package/lib/settings/components/settings-header.d.ts +9 -0
- package/lib/settings/components/settings-header.js +86 -0
- package/lib/settings/components/settings-header.js.map +1 -0
- package/lib/shell/hooks/useIsMobile.d.ts +4 -0
- package/lib/shell/hooks/useIsMobile.js +22 -0
- package/lib/shell/hooks/useIsMobile.js.map +1 -0
- package/lib/shell/hooks/useLocalStorage.d.ts +14 -0
- package/lib/shell/hooks/useLocalStorage.js +77 -0
- package/lib/shell/hooks/useLocalStorage.js.map +1 -0
- package/lib/shell/shell-context.d.ts +4 -0
- package/lib/shell/shell-context.js +11 -0
- package/lib/shell/shell-context.js.map +1 -0
- package/lib/store/account/hooks.d.ts +14 -0
- package/lib/store/account/hooks.js +51 -0
- package/lib/store/account/hooks.js.map +1 -0
- package/lib/store/account/index.d.ts +2 -0
- package/lib/store/account/index.js +24 -0
- package/lib/store/account/index.js.map +1 -0
- package/lib/store/account/store.d.ts +2 -0
- package/lib/store/account/store.js +23 -0
- package/lib/store/account/store.js.map +1 -0
- package/lib/store/app/hooks.d.ts +14 -0
- package/lib/store/app/hooks.js +41 -0
- package/lib/store/app/hooks.js.map +1 -0
- package/lib/store/app/index.d.ts +2 -0
- package/lib/store/app/index.js +24 -0
- package/lib/store/app/index.js.map +1 -0
- package/lib/store/app/store.d.ts +44 -0
- package/lib/store/app/store.js +265 -0
- package/lib/store/app/store.js.map +1 -0
- package/lib/store/app/utils.d.ts +10 -0
- package/lib/store/app/utils.js +123 -0
- package/lib/store/app/utils.js.map +1 -0
- package/lib/store/boards/hooks.d.ts +31 -0
- package/lib/store/boards/hooks.js +82 -0
- package/lib/store/boards/hooks.js.map +1 -0
- package/lib/store/boards/index.d.ts +2 -0
- package/lib/store/boards/index.js +24 -0
- package/lib/store/boards/index.js.map +1 -0
- package/lib/store/boards/store.d.ts +23 -0
- package/lib/store/boards/store.js +124 -0
- package/lib/store/boards/store.js.map +1 -0
- package/lib/store/context-bridge.d.ts +11 -0
- package/lib/store/context-bridge.js +34 -0
- package/lib/store/context-bridge.js.map +1 -0
- package/lib/store/folder/hooks.d.ts +21 -0
- package/lib/store/folder/hooks.js +77 -0
- package/lib/store/folder/hooks.js.map +1 -0
- package/lib/store/folder/index.d.ts +2 -0
- package/lib/store/folder/index.js +24 -0
- package/lib/store/folder/index.js.map +1 -0
- package/lib/store/folder/store.d.ts +2 -0
- package/lib/store/folder/store.js +20 -0
- package/lib/store/folder/store.js.map +1 -0
- package/lib/store/folder/utils.d.ts +16 -0
- package/lib/store/folder/utils.js +53 -0
- package/lib/store/folder/utils.js.map +1 -0
- package/lib/store/i18n/hooks.d.ts +4 -0
- package/lib/store/i18n/hooks.js +21 -0
- package/lib/store/i18n/hooks.js.map +1 -0
- package/lib/store/i18n/store.d.ts +13 -0
- package/lib/store/i18n/store.js +104 -0
- package/lib/store/i18n/store.js.map +1 -0
- package/lib/store/integrations/composer.d.ts +49 -0
- package/lib/store/integrations/composer.js +233 -0
- package/lib/store/integrations/composer.js.map +1 -0
- package/lib/store/integrations/getters.d.ts +9 -0
- package/lib/store/integrations/getters.js +41 -0
- package/lib/store/integrations/getters.js.map +1 -0
- package/lib/store/integrations/hooks.d.ts +9 -0
- package/lib/store/integrations/hooks.js +42 -0
- package/lib/store/integrations/hooks.js.map +1 -0
- package/lib/store/integrations/store.d.ts +41 -0
- package/lib/store/integrations/store.js +65 -0
- package/lib/store/integrations/store.js.map +1 -0
- package/lib/store/integrations/utils.d.ts +8 -0
- package/lib/store/integrations/utils.js +50 -0
- package/lib/store/integrations/utils.js.map +1 -0
- package/lib/store/login/getters.d.ts +2 -0
- package/lib/store/login/getters.js +18 -0
- package/lib/store/login/getters.js.map +1 -0
- package/lib/store/login/store.d.ts +12 -0
- package/lib/store/login/store.js +18 -0
- package/lib/store/login/store.js.map +1 -0
- package/lib/store/network/hooks.d.ts +3 -0
- package/lib/store/network/hooks.js +14 -0
- package/lib/store/network/hooks.js.map +1 -0
- package/lib/store/network/index.d.ts +2 -0
- package/lib/store/network/index.js +24 -0
- package/lib/store/network/index.js.map +1 -0
- package/lib/store/network/store.d.ts +2 -0
- package/lib/store/network/store.js +15 -0
- package/lib/store/network/store.js.map +1 -0
- package/lib/store/network/utils.d.ts +13 -0
- package/lib/store/network/utils.js +94 -0
- package/lib/store/network/utils.js.map +1 -0
- package/lib/store/tags/hooks.d.ts +3 -0
- package/lib/store/tags/hooks.js +15 -0
- package/lib/store/tags/hooks.js.map +1 -0
- package/lib/store/tags/index.d.ts +2 -0
- package/lib/store/tags/index.js +24 -0
- package/lib/store/tags/index.js.map +1 -0
- package/lib/store/tags/store.d.ts +2 -0
- package/lib/store/tags/store.js +18 -0
- package/lib/store/tags/store.js.map +1 -0
- package/lib/tsdoc-metadata.json +11 -0
- package/lib/types/account/index.d.ts +140 -0
- package/lib/types/account/index.js +8 -0
- package/lib/types/account/index.js.map +1 -0
- package/lib/types/apps/index.d.ts +120 -0
- package/lib/types/apps/index.js +9 -0
- package/lib/types/apps/index.js.map +1 -0
- package/lib/types/boards/index.d.ts +10 -0
- package/lib/types/boards/index.js +3 -0
- package/lib/types/boards/index.js.map +1 -0
- package/lib/types/folder/index.d.ts +29 -0
- package/lib/types/folder/index.js +8 -0
- package/lib/types/folder/index.js.map +1 -0
- package/lib/types/integrations/index.d.ts +8 -0
- package/lib/types/integrations/index.js +8 -0
- package/lib/types/integrations/index.js.map +1 -0
- package/lib/types/misc/index.d.ts +156 -0
- package/lib/types/misc/index.js +8 -0
- package/lib/types/misc/index.js.map +1 -0
- package/lib/types/network/entities.d.ts +47 -0
- package/lib/types/network/entities.js +3 -0
- package/lib/types/network/entities.js.map +1 -0
- package/lib/types/network/index.d.ts +171 -0
- package/lib/types/network/index.js +23 -0
- package/lib/types/network/index.js.map +1 -0
- package/lib/types/network/soap.d.ts +102 -0
- package/lib/types/network/soap.js +8 -0
- package/lib/types/network/soap.js.map +1 -0
- package/lib/types/search/index.d.ts +11 -0
- package/lib/types/search/index.js +23 -0
- package/lib/types/search/index.js.map +1 -0
- package/lib/types/search/items.d.ts +6 -0
- package/lib/types/search/items.js +3 -0
- package/lib/types/search/items.js.map +1 -0
- package/lib/types/tags/index.d.ts +12 -0
- package/lib/types/tags/index.js +9 -0
- package/lib/types/tags/index.js.map +1 -0
- package/lib/types/workers/index.d.ts +17 -0
- package/lib/types/workers/index.js +3 -0
- package/lib/types/workers/index.js.map +1 -0
- package/lib/ui-extras/app-link.d.ts +6 -0
- package/lib/ui-extras/app-link.js +40 -0
- package/lib/ui-extras/app-link.js.map +1 -0
- package/lib/ui-extras/nav-guard.d.ts +9 -0
- package/lib/ui-extras/nav-guard.js +96 -0
- package/lib/ui-extras/nav-guard.js.map +1 -0
- package/lib/ui-extras/spinner.d.ts +2 -0
- package/lib/ui-extras/spinner.js +18 -0
- package/lib/ui-extras/spinner.js.map +1 -0
- package/lib/utils/typeUtils.d.ts +14 -0
- package/lib/utils/typeUtils.js +3 -0
- package/lib/utils/typeUtils.js.map +1 -0
- package/lib/utils/utils.d.ts +20 -0
- package/lib/utils/utils.js +39 -0
- package/lib/utils/utils.js.map +1 -0
- package/lib/workers/index.d.ts +2 -0
- package/lib/workers/index.js +15 -0
- package/lib/workers/index.js.map +1 -0
- package/package.json +34 -37
- package/dist/20d012c938e8d0dcc703.mp3 +0 -0
- package/dist/2d9c9ae572663301cb7d.js +0 -75391
- package/dist/CHANGELOG.md +0 -701
- package/dist/carbonio-head.svg +0 -200
- package/dist/carbonio.svg +0 -10
- package/dist/commit +0 -1
- package/dist/component.json +0 -13
- package/dist/favicon.png +0 -0
- package/dist/files/roboto-cyrillic-300-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-300-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-400-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-400-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-500-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-500-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-700-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-700-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-ext-300-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-ext-300-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-ext-400-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-ext-400-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-ext-500-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-ext-500-normal.woff2 +0 -0
- package/dist/files/roboto-cyrillic-ext-700-normal.woff +0 -0
- package/dist/files/roboto-cyrillic-ext-700-normal.woff2 +0 -0
- package/dist/files/roboto-greek-300-normal.woff +0 -0
- package/dist/files/roboto-greek-300-normal.woff2 +0 -0
- package/dist/files/roboto-greek-400-normal.woff +0 -0
- package/dist/files/roboto-greek-400-normal.woff2 +0 -0
- package/dist/files/roboto-greek-500-normal.woff +0 -0
- package/dist/files/roboto-greek-500-normal.woff2 +0 -0
- package/dist/files/roboto-greek-700-normal.woff +0 -0
- package/dist/files/roboto-greek-700-normal.woff2 +0 -0
- package/dist/files/roboto-greek-ext-300-normal.woff +0 -0
- package/dist/files/roboto-greek-ext-300-normal.woff2 +0 -0
- package/dist/files/roboto-greek-ext-400-normal.woff +0 -0
- package/dist/files/roboto-greek-ext-400-normal.woff2 +0 -0
- package/dist/files/roboto-greek-ext-500-normal.woff +0 -0
- package/dist/files/roboto-greek-ext-500-normal.woff2 +0 -0
- package/dist/files/roboto-greek-ext-700-normal.woff +0 -0
- package/dist/files/roboto-greek-ext-700-normal.woff2 +0 -0
- package/dist/files/roboto-latin-300-normal.woff +0 -0
- package/dist/files/roboto-latin-300-normal.woff2 +0 -0
- package/dist/files/roboto-latin-400-normal.woff +0 -0
- package/dist/files/roboto-latin-400-normal.woff2 +0 -0
- package/dist/files/roboto-latin-500-normal.woff +0 -0
- package/dist/files/roboto-latin-500-normal.woff2 +0 -0
- package/dist/files/roboto-latin-700-normal.woff +0 -0
- package/dist/files/roboto-latin-700-normal.woff2 +0 -0
- package/dist/files/roboto-latin-ext-300-normal.woff +0 -0
- package/dist/files/roboto-latin-ext-300-normal.woff2 +0 -0
- package/dist/files/roboto-latin-ext-400-normal.woff +0 -0
- package/dist/files/roboto-latin-ext-400-normal.woff2 +0 -0
- package/dist/files/roboto-latin-ext-500-normal.woff +0 -0
- package/dist/files/roboto-latin-ext-500-normal.woff2 +0 -0
- package/dist/files/roboto-latin-ext-700-normal.woff +0 -0
- package/dist/files/roboto-latin-ext-700-normal.woff2 +0 -0
- package/dist/files/roboto-vietnamese-300-normal.woff +0 -0
- package/dist/files/roboto-vietnamese-300-normal.woff2 +0 -0
- package/dist/files/roboto-vietnamese-400-normal.woff +0 -0
- package/dist/files/roboto-vietnamese-400-normal.woff2 +0 -0
- package/dist/files/roboto-vietnamese-500-normal.woff +0 -0
- package/dist/files/roboto-vietnamese-500-normal.woff2 +0 -0
- package/dist/files/roboto-vietnamese-700-normal.woff +0 -0
- package/dist/files/roboto-vietnamese-700-normal.woff2 +0 -0
- package/dist/i18n/ar.json +0 -1
- package/dist/i18n/de.json +0 -438
- package/dist/i18n/en-US.json +0 -1
- package/dist/i18n/en.json +0 -438
- package/dist/i18n/es-419.json +0 -1
- package/dist/i18n/es.json +0 -438
- package/dist/i18n/fa.json +0 -1
- package/dist/i18n/fi.json +0 -12
- package/dist/i18n/fr.json +0 -438
- package/dist/i18n/hi.json +0 -438
- package/dist/i18n/hr.json +0 -1
- package/dist/i18n/hu.json +0 -31
- package/dist/i18n/id.json +0 -438
- package/dist/i18n/it.json +0 -438
- package/dist/i18n/ja.json +0 -438
- package/dist/i18n/ky.json +0 -6
- package/dist/i18n/nl.json +0 -438
- package/dist/i18n/pl.json +0 -438
- package/dist/i18n/pt-PT.json +0 -1
- package/dist/i18n/pt.json +0 -438
- package/dist/i18n/pt_BR.json +0 -438
- package/dist/i18n/ro.json +0 -9
- package/dist/i18n/ru.json +0 -438
- package/dist/i18n/th.json +0 -438
- package/dist/i18n/tr.json +0 -438
- package/dist/i18n/uk.json +0 -186
- package/dist/i18n/vi.json +0 -396
- package/dist/i18n/zh_Hans.json +0 -412
- package/dist/index.html +0 -25
- package/dist/notification.mp3 +0 -0
- package/dist/package/PKGBUILD +0 -45
- package/dist/plugins/help/js/i18n/keynav/de.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/en.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/es.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/fr_FR.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/hi.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/it.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/ja.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/nl.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/pl.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/pt_BR.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/ro.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/ru.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/th_TH.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/tr.js +0 -90
- package/dist/plugins/help/js/i18n/keynav/vi.js +0 -90
- package/dist/skins/content/dark/content.css +0 -59
- package/dist/skins/content/dark/content.min.css +0 -8
- package/dist/skins/content/default/content.css +0 -49
- package/dist/skins/content/default/content.min.css +0 -8
- package/dist/skins/content/document/content.css +0 -53
- package/dist/skins/content/document/content.min.css +0 -8
- package/dist/skins/content/writer/content.css +0 -50
- package/dist/skins/content/writer/content.min.css +0 -8
- package/dist/skins/ui/oxide/content.css +0 -615
- package/dist/skins/ui/oxide/content.inline.css +0 -608
- package/dist/skins/ui/oxide/content.inline.min.css +0 -8
- package/dist/skins/ui/oxide/content.min.css +0 -8
- package/dist/skins/ui/oxide/content.mobile.css +0 -29
- package/dist/skins/ui/oxide/content.mobile.min.css +0 -8
- package/dist/skins/ui/oxide/fonts/tinymce-mobile.woff +0 -0
- package/dist/skins/ui/oxide/skin.css +0 -2884
- package/dist/skins/ui/oxide/skin.min.css +0 -8
- package/dist/skins/ui/oxide/skin.mobile.css +0 -673
- package/dist/skins/ui/oxide/skin.mobile.min.css +0 -8
- package/dist/skins/ui/oxide-dark/content.css +0 -596
- package/dist/skins/ui/oxide-dark/content.inline.css +0 -608
- package/dist/skins/ui/oxide-dark/content.inline.min.css +0 -8
- package/dist/skins/ui/oxide-dark/content.min.css +0 -8
- package/dist/skins/ui/oxide-dark/content.mobile.css +0 -29
- package/dist/skins/ui/oxide-dark/content.mobile.min.css +0 -8
- package/dist/skins/ui/oxide-dark/fonts/tinymce-mobile.woff +0 -0
- package/dist/skins/ui/oxide-dark/skin.css +0 -2884
- package/dist/skins/ui/oxide-dark/skin.min.css +0 -8
- package/dist/skins/ui/oxide-dark/skin.mobile.css +0 -673
- package/dist/skins/ui/oxide-dark/skin.mobile.min.css +0 -8
- package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.css +0 -21
- package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.css.map +0 -1
- package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.d07f086d.chunk.js +0 -13399
- package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.d07f086d.chunk.js.map +0 -1
- package/dist/src_workers_folder_ts.2df69eae.chunk.js +0 -537
- package/dist/src_workers_folder_ts.2df69eae.chunk.js.map +0 -1
- package/dist/src_workers_tag_ts.59a752d7.chunk.js +0 -113
- package/dist/src_workers_tag_ts.59a752d7.chunk.js.map +0 -1
- package/dist/style.a7eb9e6c.css +0 -389
- package/dist/style.a7eb9e6c.css.map +0 -1
- package/dist/tinymce/langs/de.js +0 -1
- package/dist/tinymce/langs/es.js +0 -1
- package/dist/tinymce/langs/fr_FR.js +0 -1
- package/dist/tinymce/langs/hi.js +0 -1
- package/dist/tinymce/langs/it.js +0 -1
- package/dist/tinymce/langs/ja.js +0 -1
- package/dist/tinymce/langs/nl.js +0 -1
- package/dist/tinymce/langs/pl.js +0 -1
- package/dist/tinymce/langs/pt_BR.js +0 -1
- package/dist/tinymce/langs/ro.js +0 -1
- package/dist/tinymce/langs/ru.js +0 -1
- package/dist/tinymce/langs/th_TH.js +0 -1
- package/dist/tinymce/langs/tr.js +0 -1
- package/dist/tinymce/langs/vi.js +0 -1
- package/dist/tinymce/langs/zh-Hans.js +0 -1
- package/dist/vendors-node_modules_date-fns__lib_isSameUTCWeek_index_js-node_modules_date-fns_locale__lib_b-41ea83.3e405109.chunk.js +0 -412
- package/dist/vendors-node_modules_date-fns__lib_isSameUTCWeek_index_js-node_modules_date-fns_locale__lib_b-41ea83.3e405109.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_de_index_js.42fc0cb6.chunk.js +0 -787
- package/dist/vendors-node_modules_date-fns_locale_de_index_js.42fc0cb6.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_en-US_index_js.1575ad91.chunk.js +0 -693
- package/dist/vendors-node_modules_date-fns_locale_en-US_index_js.1575ad91.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_es_index_js.a054d7dc.chunk.js +0 -685
- package/dist/vendors-node_modules_date-fns_locale_es_index_js.a054d7dc.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_fr_index_js.20eefc5f.chunk.js +0 -644
- package/dist/vendors-node_modules_date-fns_locale_fr_index_js.20eefc5f.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_hi_index_js.016d9c1b.chunk.js +0 -741
- package/dist/vendors-node_modules_date-fns_locale_hi_index_js.016d9c1b.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_it_index_js.b1509e74.chunk.js +0 -531
- package/dist/vendors-node_modules_date-fns_locale_it_index_js.b1509e74.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_ja_index_js.7ee709ea.chunk.js +0 -703
- package/dist/vendors-node_modules_date-fns_locale_ja_index_js.7ee709ea.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_nl_index_js.03ea6284.chunk.js +0 -638
- package/dist/vendors-node_modules_date-fns_locale_nl_index_js.03ea6284.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_pl_index_js.b1a781fa.chunk.js +0 -623
- package/dist/vendors-node_modules_date-fns_locale_pl_index_js.b1a781fa.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_pt-BR_index_js.695bc207.chunk.js +0 -682
- package/dist/vendors-node_modules_date-fns_locale_pt-BR_index_js.695bc207.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_pt_index_js.09460edb.chunk.js +0 -678
- package/dist/vendors-node_modules_date-fns_locale_pt_index_js.09460edb.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_ro_index_js.53425395.chunk.js +0 -670
- package/dist/vendors-node_modules_date-fns_locale_ro_index_js.53425395.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_ru_index_js.ab8b44d9.chunk.js +0 -707
- package/dist/vendors-node_modules_date-fns_locale_ru_index_js.ab8b44d9.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_th_index_js.9f2448ee.chunk.js +0 -672
- package/dist/vendors-node_modules_date-fns_locale_th_index_js.9f2448ee.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_tr_index_js.c47c86fa.chunk.js +0 -677
- package/dist/vendors-node_modules_date-fns_locale_tr_index_js.c47c86fa.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_vi_index_js.d02adf1c.chunk.js +0 -765
- package/dist/vendors-node_modules_date-fns_locale_vi_index_js.d02adf1c.chunk.js.map +0 -1
- package/dist/vendors-node_modules_date-fns_locale_zh-CN_index_js.505f5507.chunk.js +0 -521
- package/dist/vendors-node_modules_date-fns_locale_zh-CN_index_js.505f5507.chunk.js.map +0 -1
- package/dist/vendors-node_modules_lodash_lodash_js-node_modules_core-js_modules_es_array_push_js.8ced7511.chunk.js +0 -19112
- package/dist/vendors-node_modules_lodash_lodash_js-node_modules_core-js_modules_es_array_push_js.8ced7511.chunk.js.map +0 -1
- package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.88e81e25.chunk.js +0 -219343
- package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.88e81e25.chunk.js.map +0 -1
- package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.css +0 -4104
- package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.css.map +0 -1
- package/dist/yap.json +0 -11
- package/dist/zapp-shell.bundle.js +0 -30430
- package/dist/zapp-shell.bundle.js.map +0 -1
- package/types/account/index.d.ts +0 -179
- package/types/apps/index.d.ts +0 -198
- package/types/boards/index.d.ts +0 -31
- package/types/exports/index.d.ts +0 -256
- package/types/folder/index.d.ts +0 -33
- package/types/i18n/index.d.ts +0 -19
- package/types/index.d.ts +0 -20
- package/types/integrations/index.d.ts +0 -41
- package/types/loginConfig/index.d.ts +0 -17
- package/types/misc/index.d.ts +0 -309
- package/types/network/entities.d.ts +0 -106
- package/types/network/index.d.ts +0 -239
- package/types/network/soap.d.ts +0 -106
- package/types/notification/index.d.ts +0 -31
- package/types/search/index.d.ts +0 -18
- package/types/search/items.d.ts +0 -13
- package/types/settings/index.d.ts +0 -10
- package/types/styled-components.d.ts +0 -18
- package/types/tags/index.d.ts +0 -21
- package/types/theme/index.d.ts +0 -9
- package/types/workers/index.d.ts +0 -24
package/dist/CHANGELOG.md
DELETED
|
@@ -1,701 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
-
|
|
5
|
-
## [6.0.0](https://github.com/zextras/carbonio-shell-ui/compare/v5.2.0...v6.0.0) (2024-04-10)
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
### ⚠ BREAKING CHANGES
|
|
9
|
-
|
|
10
|
-
* **deps:** set @zextras/carbonio-design-system v5 as peer dep
|
|
11
|
-
* use node 18
|
|
12
|
-
|
|
13
|
-
### Features
|
|
14
|
-
|
|
15
|
-
* add custom event to update views ([04d1d84](https://github.com/zextras/carbonio-shell-ui/commit/04d1d8421eeda9890e7a21f2403d70784ff98f6f)), closes [#397](https://github.com/zextras/carbonio-shell-ui/issues/397)
|
|
16
|
-
* **whitelabel:** remove carbonio logos from loader ([2a15962](https://github.com/zextras/carbonio-shell-ui/commit/2a15962645be134a54c2016bb4d6532faa83a203)), closes [#390](https://github.com/zextras/carbonio-shell-ui/issues/390)
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
### build
|
|
20
|
-
|
|
21
|
-
* **deps:** update @zextras/carbonio-design-system to 5.0.0 ([75c17e2](https://github.com/zextras/carbonio-shell-ui/commit/75c17e22fb5a2d4fc064cb62a01f5823f20551e3)), closes [#398](https://github.com/zextras/carbonio-shell-ui/issues/398)
|
|
22
|
-
* use node 18 ([529260e](https://github.com/zextras/carbonio-shell-ui/commit/529260e704f6380ade03d7b21ddbedeb9d43c847)), closes [#383](https://github.com/zextras/carbonio-shell-ui/issues/383)
|
|
23
|
-
|
|
24
|
-
## [5.2.0](https://github.com/zextras/carbonio-shell-ui/compare/v5.1.0...v5.2.0) (2024-03-21)
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
### Features
|
|
28
|
-
|
|
29
|
-
* implement matomo tracker ([8d0594b](https://github.com/zextras/carbonio-shell-ui/commit/8d0594be791580126dc340d433ac623ac78180ea)), closes [#388](https://github.com/zextras/carbonio-shell-ui/issues/388)
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
### Bug Fixes
|
|
33
|
-
|
|
34
|
-
* prevent overwriting display of main route if focus mode is true ([f0cb48f](https://github.com/zextras/carbonio-shell-ui/commit/f0cb48faa3013a40825cb42dab124ebb1164c848)), closes [#382](https://github.com/zextras/carbonio-shell-ui/issues/382)
|
|
35
|
-
* reset primary color when is no more received in configs ([aecb64e](https://github.com/zextras/carbonio-shell-ui/commit/aecb64e6571e80761000c34beae62405531ab4d7)), closes [#384](https://github.com/zextras/carbonio-shell-ui/issues/384)
|
|
36
|
-
* show quota when used quota is 0 ([06617d8](https://github.com/zextras/carbonio-shell-ui/commit/06617d8ecb2872b3dfcc2dd486694d1d80143a03)), closes [#381](https://github.com/zextras/carbonio-shell-ui/issues/381)
|
|
37
|
-
|
|
38
|
-
## [5.1.0](https://github.com/zextras/carbonio-shell-ui/compare/v5.0.3...v5.1.0) (2024-01-10)
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
### Features
|
|
42
|
-
|
|
43
|
-
* update position inside primary bar for search and settings ([b823bef](https://github.com/zextras/carbonio-shell-ui/commit/b823bef88374ea8fc9fdeb35e358ee83683736b7)), closes [#377](https://github.com/zextras/carbonio-shell-ui/issues/377)
|
|
44
|
-
|
|
45
|
-
### [5.0.3](https://github.com/zextras/carbonio-shell-ui/compare/v5.0.2...v5.0.3) (2023-12-29)
|
|
46
|
-
|
|
47
|
-
### [5.0.2](https://github.com/zextras/carbonio-shell-ui/compare/v5.0.1...v5.0.2) (2023-12-11)
|
|
48
|
-
|
|
49
|
-
### [5.0.1](https://github.com/zextras/carbonio-shell-ui/compare/v5.0.0...v5.0.1) (2023-12-06)
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
### Bug Fixes
|
|
53
|
-
|
|
54
|
-
* tag worker is invoked only when notify relevant to tags ([b42ab41](https://github.com/zextras/carbonio-shell-ui/commit/b42ab41fd5a955d0d644c9833f652fbf1649c8cd))
|
|
55
|
-
|
|
56
|
-
## [5.0.0](https://github.com/zextras/carbonio-shell-ui/compare/v4.0.1...v5.0.0) (2023-11-22)
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
### ⚠ BREAKING CHANGES
|
|
60
|
-
|
|
61
|
-
* bump @zextras/carbonio-design-system dep to 4.0.0
|
|
62
|
-
Refs: SHELL-180
|
|
63
|
-
|
|
64
|
-
### Bug Fixes
|
|
65
|
-
|
|
66
|
-
* **RouteLeavingGuard:** translate modal labels with shell instance ([bcf59a0](https://github.com/zextras/carbonio-shell-ui/commit/bcf59a09c37c9dcbceaba64b0258a8bf7609a1ab)), closes [#359](https://github.com/zextras/carbonio-shell-ui/issues/359)
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
* update ChipInput usages ([9366341](https://github.com/zextras/carbonio-shell-ui/commit/93663414f8b8312e826591f4667d8b470b0980e5))
|
|
70
|
-
|
|
71
|
-
### [4.0.1](https://github.com/zextras/carbonio-shell-ui/compare/v4.0.0...v4.0.1) (2023-11-06)
|
|
72
|
-
|
|
73
|
-
## [4.0.0](https://github.com/zextras/carbonio-shell-ui/compare/v3.4.3...v4.0.0) (2023-10-24)
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
### ⚠ BREAKING CHANGES
|
|
77
|
-
|
|
78
|
-
* rename standalone to focus-mode
|
|
79
|
-
* replace standalone AppRoute field with focusMode field
|
|
80
|
-
|
|
81
|
-
### Bug Fixes
|
|
82
|
-
|
|
83
|
-
* discard changes of timezone, locale and dark mode reset initial values ([0b1abed](https://github.com/zextras/carbonio-shell-ui/commit/0b1abed0eca9fa8702878b57e973ca7ab01feee0)), closes [#346](https://github.com/zextras/carbonio-shell-ui/issues/346)
|
|
84
|
-
* improve accountStore update inside account setting onSave ([be7fc1b](https://github.com/zextras/carbonio-shell-ui/commit/be7fc1b072c3c6cb1d5ead8afa0730c0319d2d6b)), closes [#349](https://github.com/zextras/carbonio-shell-ui/issues/349)
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
* improve focus mode implementation ([c7d3132](https://github.com/zextras/carbonio-shell-ui/commit/c7d3132ef8ec4774ebcb3a7cc834492fe02deb07)), closes [#326](https://github.com/zextras/carbonio-shell-ui/issues/326)
|
|
88
|
-
|
|
89
|
-
### [3.4.3](https://github.com/zextras/carbonio-shell-ui/compare/v3.4.2...v3.4.3) (2023-10-09)
|
|
90
|
-
|
|
91
|
-
### [3.4.2](https://github.com/zextras/carbonio-shell-ui/compare/v3.4.1...v3.4.2) (2023-09-29)
|
|
92
|
-
|
|
93
|
-
### [3.4.1](https://github.com/zextras/carbonio-shell-ui/compare/v3.4.0...v3.4.1) (2023-09-28)
|
|
94
|
-
|
|
95
|
-
## [3.4.0](https://github.com/zextras/carbonio-shell-ui/compare/v3.3.1...v3.4.0) (2023-09-28)
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
### Features
|
|
99
|
-
|
|
100
|
-
* **composer:** enable spell check and update newline_behavior init config ([4da0790](https://github.com/zextras/carbonio-shell-ui/commit/4da0790523f916cc975f6db268b614100029ab96)), closes [#331](https://github.com/zextras/carbonio-shell-ui/issues/331)
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
### Bug Fixes
|
|
104
|
-
|
|
105
|
-
* remove mobile responsive views and add min-width that enable scrolling ([2f3c311](https://github.com/zextras/carbonio-shell-ui/commit/2f3c311f7a1c010f772c91b10665d294a37c4b41)), closes [#329](https://github.com/zextras/carbonio-shell-ui/issues/329)
|
|
106
|
-
|
|
107
|
-
### [3.3.1](https://github.com/zextras/carbonio-shell-ui/compare/v3.3.0...v3.3.1) (2023-09-11)
|
|
108
|
-
|
|
109
|
-
## [3.3.0](https://github.com/zextras/carbonio-shell-ui/compare/v3.2.2...v3.3.0) (2023-08-31)
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
### Features
|
|
113
|
-
|
|
114
|
-
* avoid to call getRightsRequest on every mount ([d9d881a](https://github.com/zextras/carbonio-shell-ui/commit/d9d881af6f0d8972cae6d5b098f613101001bb35)), closes [#296](https://github.com/zextras/carbonio-shell-ui/issues/296)
|
|
115
|
-
* **composer:** add a new prop to set initialization custom options ([eb2c781](https://github.com/zextras/carbonio-shell-ui/commit/eb2c7817a90db1efd473b4ed67d328f7fce0ba1e)), closes [#284](https://github.com/zextras/carbonio-shell-ui/issues/284)
|
|
116
|
-
* hide settings based on zimbraFeatureOptionsEnabled value ([0af1744](https://github.com/zextras/carbonio-shell-ui/commit/0af174489219d803487551b90510e097e9bc59ba)), closes [#283](https://github.com/zextras/carbonio-shell-ui/issues/283)
|
|
117
|
-
* remove click navigation on crumbs ([5952ded](https://github.com/zextras/carbonio-shell-ui/commit/5952dedeb7add3ca5690b4e8134410eef850a869)), closes [#300](https://github.com/zextras/carbonio-shell-ui/issues/300)
|
|
118
|
-
* remove feedback from UI ([e263431](https://github.com/zextras/carbonio-shell-ui/commit/e263431f6720c30b954764e6737dfdf1d5dda40b)), closes [#299](https://github.com/zextras/carbonio-shell-ui/issues/299)
|
|
119
|
-
* **whitelabel:** redirect to custom logout url when user logout ([f9d30b6](https://github.com/zextras/carbonio-shell-ui/commit/f9d30b6b646f052bf312d68dcf70f9e54156d46d)), closes [#280](https://github.com/zextras/carbonio-shell-ui/issues/280) [#281](https://github.com/zextras/carbonio-shell-ui/issues/281)
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
### Bug Fixes
|
|
123
|
-
|
|
124
|
-
* avoid routes to be overwritten when set in the store ([af5f0d8](https://github.com/zextras/carbonio-shell-ui/commit/af5f0d8a9e5853e6612b8dfc548ec84a7ba09f97)), closes [#314](https://github.com/zextras/carbonio-shell-ui/issues/314)
|
|
125
|
-
* avoid to use potentially invalid identityName as new persona identity name default ([5c815c6](https://github.com/zextras/carbonio-shell-ui/commit/5c815c6f8eb3ac8896ec6abde03892dd2e4841ee)), closes [#285](https://github.com/zextras/carbonio-shell-ui/issues/285)
|
|
126
|
-
* fix prop color type of BaseFolder ([983ccd7](https://github.com/zextras/carbonio-shell-ui/commit/983ccd73acfb80f09231e282b6f4891712d8b0e3)), closes [#304](https://github.com/zextras/carbonio-shell-ui/issues/304)
|
|
127
|
-
* fix search bar bug that grows in width ([ed4194a](https://github.com/zextras/carbonio-shell-ui/commit/ed4194a2c4daffb131a13b7fa4bc6aa4e151836c)), closes [#315](https://github.com/zextras/carbonio-shell-ui/issues/315)
|
|
128
|
-
* make zimbraPrefDelegatedSendSaveTarget setting working ([e956c1b](https://github.com/zextras/carbonio-shell-ui/commit/e956c1b08165f8975abb7289580e4e9f9c60ee5b)), closes [#271](https://github.com/zextras/carbonio-shell-ui/issues/271)
|
|
129
|
-
* remove sepia param ([6598756](https://github.com/zextras/carbonio-shell-ui/commit/6598756b85c3d23ec92b70a94172ee5789288751)), closes [#290](https://github.com/zextras/carbonio-shell-ui/issues/290)
|
|
130
|
-
* **search:** translate module inside search bar placeholder ([66653a1](https://github.com/zextras/carbonio-shell-ui/commit/66653a14cdbf7a135a858f109fc7fa6c9d9d794e)), closes [#312](https://github.com/zextras/carbonio-shell-ui/issues/312)
|
|
131
|
-
* set max 100 as value in the quota component in general settings ([67854dd](https://github.com/zextras/carbonio-shell-ui/commit/67854dde98a9fab1f28059aa7df02739ac202bb0)), closes [#282](https://github.com/zextras/carbonio-shell-ui/issues/282)
|
|
132
|
-
* **settings:** translate new persona and delegate rights labels ([115ac44](https://github.com/zextras/carbonio-shell-ui/commit/115ac44ec8bdf28bbea790d9a9728aa61df11860)), closes [#311](https://github.com/zextras/carbonio-shell-ui/issues/311)
|
|
133
|
-
* update mapToModifyIdentityRequests function ([c373963](https://github.com/zextras/carbonio-shell-ui/commit/c3739632e30d05375caca8a254d68c06af3c709c)), closes [#318](https://github.com/zextras/carbonio-shell-ui/issues/318)
|
|
134
|
-
* update tinymce and include translations of help plugin in bundle ([0cb0129](https://github.com/zextras/carbonio-shell-ui/commit/0cb01291c241ad41fd0abde31ce0a5c6c68f8cbe)), closes [#302](https://github.com/zextras/carbonio-shell-ui/issues/302)
|
|
135
|
-
|
|
136
|
-
### [3.2.2](https://github.com/zextras/carbonio-shell-ui/compare/v3.2.1...v3.2.2) (2023-07-17)
|
|
137
|
-
|
|
138
|
-
### [3.2.1](https://github.com/zextras/carbonio-shell-ui/compare/v3.2.0...v3.2.1) (2023-07-14)
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
### Bug Fixes
|
|
142
|
-
|
|
143
|
-
* prevent click on board header only if a move occurs ([9aa05b4](https://github.com/zextras/carbonio-shell-ui/commit/9aa05b421ef6ce323ce7f2780204de6a8e7ec393))
|
|
144
|
-
|
|
145
|
-
## [3.2.0](https://github.com/zextras/carbonio-shell-ui/compare/v3.1.1...v3.2.0) (2023-07-06)
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
### Features
|
|
149
|
-
|
|
150
|
-
* allow the user to resize and move the board ([e266ca8](https://github.com/zextras/carbonio-shell-ui/commit/e266ca8b3f7333cf3ee504dc7bb00ee81797de5d)), closes [#262](https://github.com/zextras/carbonio-shell-ui/issues/262)
|
|
151
|
-
* enable cancel action when click outside the confirmation modal ([42e7fae](https://github.com/zextras/carbonio-shell-ui/commit/42e7fae277bbf9a701d31a2a0dab2d7febc19ebf)), closes [#264](https://github.com/zextras/carbonio-shell-ui/issues/264)
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
### Bug Fixes
|
|
155
|
-
|
|
156
|
-
* improve general and account settings ([42e757e](https://github.com/zextras/carbonio-shell-ui/commit/42e757e511d3a6cbf8a308bc3fdcb7c2893994e6)), closes [#268](https://github.com/zextras/carbonio-shell-ui/issues/268)
|
|
157
|
-
* open search module based on the module you come from ([2b12ec2](https://github.com/zextras/carbonio-shell-ui/commit/2b12ec2b717fb4cda73d9bd009c5b4de209d0a00)), closes [#270](https://github.com/zextras/carbonio-shell-ui/issues/270)
|
|
158
|
-
* **settings:** fix UI of out of office section ([2d5d44d](https://github.com/zextras/carbonio-shell-ui/commit/2d5d44d22fec460f4695c7cd2521fe163ad9fe00)), closes [#263](https://github.com/zextras/carbonio-shell-ui/issues/263)
|
|
159
|
-
* show a modal on failure of getInfo and getComponents ([2df0658](https://github.com/zextras/carbonio-shell-ui/commit/2df0658f5b4170f6302b764df5085595276a6360)), closes [#251](https://github.com/zextras/carbonio-shell-ui/issues/251)
|
|
160
|
-
* **types:** add the signal parameter to the SoapFetch exported type ([0192409](https://github.com/zextras/carbonio-shell-ui/commit/0192409da33cb0bc131f884f3b17ffb497ad7b63)), closes [#273](https://github.com/zextras/carbonio-shell-ui/issues/273)
|
|
161
|
-
|
|
162
|
-
### [3.1.1](https://github.com/zextras/carbonio-shell-ui/compare/v3.1.0...v3.1.1) (2023-06-05)
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
### Bug Fixes
|
|
166
|
-
|
|
167
|
-
* fix feedback board that shows blank page ([ef69922](https://github.com/zextras/carbonio-shell-ui/commit/ef69922f48bf38cc2705aec97aefc74ef17ce551)), closes [#258](https://github.com/zextras/carbonio-shell-ui/issues/258)
|
|
168
|
-
|
|
169
|
-
## [3.1.0](https://github.com/zextras/carbonio-shell-ui/compare/v3.0.2...v3.1.0) (2023-05-25)
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
### Features
|
|
173
|
-
|
|
174
|
-
* improve board tabs behavior ([a60331c](https://github.com/zextras/carbonio-shell-ui/commit/a60331ce3e91ece0c2f1c96b66b9bad5a080b943)), closes [#248](https://github.com/zextras/carbonio-shell-ui/issues/248)
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
### Bug Fixes
|
|
178
|
-
|
|
179
|
-
* do not unmount boards in mobile responsive mode ([697e1e0](https://github.com/zextras/carbonio-shell-ui/commit/697e1e08e210b24ce144145c336c7f084c4aeb4b)), closes [#239](https://github.com/zextras/carbonio-shell-ui/issues/239)
|
|
180
|
-
|
|
181
|
-
### [3.0.2](https://github.com/zextras/carbonio-shell-ui/compare/v3.0.1...v3.0.2) (2023-05-03)
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
### Bug Fixes
|
|
185
|
-
|
|
186
|
-
* reset polling interval to the user default setting when a request does not fail ([ea81c89](https://github.com/zextras/carbonio-shell-ui/commit/ea81c899491555452fc8b682cd553309e0380174))
|
|
187
|
-
* set a longer interval between failing NoOp requests ([846fe18](https://github.com/zextras/carbonio-shell-ui/commit/846fe18d04b2c59a95f19a1d51ac631d6da7f9a8))
|
|
188
|
-
* update noop interval management ([819376c](https://github.com/zextras/carbonio-shell-ui/commit/819376c61fe493590d46f7552c0a4e2a20684422))
|
|
189
|
-
|
|
190
|
-
### [3.0.1](https://github.com/zextras/carbonio-shell-ui/compare/v3.0.0...v3.0.1) (2023-04-27)
|
|
191
|
-
|
|
192
|
-
## [3.0.0](https://github.com/zextras/carbonio-shell-ui/compare/v2.1.1...v3.0.0) (2023-04-24)
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
### ⚠ BREAKING CHANGES
|
|
196
|
-
|
|
197
|
-
* **deps:** bump tinymce to v6
|
|
198
|
-
* **deps:** major bump of i18next and related deps (external dependency)
|
|
199
|
-
* **deps:** bump react-redux to v8 (external dependency)
|
|
200
|
-
|
|
201
|
-
### Bug Fixes
|
|
202
|
-
|
|
203
|
-
* call noOp request on update view action ([b698224](https://github.com/zextras/carbonio-shell-ui/commit/b698224c4a16e7e53f9839850a114ba227eb9297)), closes [#234](https://github.com/zextras/carbonio-shell-ui/issues/234)
|
|
204
|
-
* preserve location changing module ([29cf18a](https://github.com/zextras/carbonio-shell-ui/commit/29cf18a77a36d3b3abadfee0b0273c1411fe23ac)), closes [#235](https://github.com/zextras/carbonio-shell-ui/issues/235)
|
|
205
|
-
* remove click in favor of onClick ([72decaa](https://github.com/zextras/carbonio-shell-ui/commit/72decaadc1a50aaeaaa004eaa97e85f367d7ba28)), closes [#226](https://github.com/zextras/carbonio-shell-ui/issues/226)
|
|
206
|
-
* use fallback closing board tab ([e0357c3](https://github.com/zextras/carbonio-shell-ui/commit/e0357c3d83072746b4afa9fb0e69b86695a762d8)), closes [#232](https://github.com/zextras/carbonio-shell-ui/issues/232)
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
### build
|
|
210
|
-
|
|
211
|
-
* **deps:** update dependencies ([a7554b5](https://github.com/zextras/carbonio-shell-ui/commit/a7554b530b34cf5c71606b69fdd8e39d16c6ae8d)), closes [#209](https://github.com/zextras/carbonio-shell-ui/issues/209)
|
|
212
|
-
|
|
213
|
-
### [2.1.1](https://github.com/zextras/carbonio-shell-ui/compare/v2.1.0...v2.1.1) (2023-04-11)
|
|
214
|
-
|
|
215
|
-
## [2.1.0](https://github.com/zextras/carbonio-shell-ui/compare/v2.0.3...v2.1.0) (2023-03-29)
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
### Features
|
|
219
|
-
|
|
220
|
-
* move up board icon in primary bar ([5504915](https://github.com/zextras/carbonio-shell-ui/commit/5504915817a181fad5e0eb41c7a7fbc08a0fbda2)), closes [#221](https://github.com/zextras/carbonio-shell-ui/issues/221)
|
|
221
|
-
* **settings:** list delegated addresses of sendOfBehalfOf type ([3b29895](https://github.com/zextras/carbonio-shell-ui/commit/3b298953cc6cf8f868811db07fdef1b44754ef67)), closes [#227](https://github.com/zextras/carbonio-shell-ui/issues/227)
|
|
222
|
-
* **whitelabel:** use favicon loaded from configs as default for notifications ([e2ffcf6](https://github.com/zextras/carbonio-shell-ui/commit/e2ffcf66120db25dfbb1c8408d12f8eae0aa4470)), closes [#220](https://github.com/zextras/carbonio-shell-ui/issues/220)
|
|
223
|
-
|
|
224
|
-
### [2.0.3](https://github.com/zextras/carbonio-shell-ui/compare/v2.0.2...v2.0.3) (2023-03-17)
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
### Bug Fixes
|
|
228
|
-
|
|
229
|
-
* handle linkfolder created ([9ed09d3](https://github.com/zextras/carbonio-shell-ui/commit/9ed09d3978287661b080adf9af7ce3181bd3360c))
|
|
230
|
-
|
|
231
|
-
### [2.0.2](https://github.com/zextras/carbonio-shell-ui/compare/v2.0.1...v2.0.2) (2023-03-13)
|
|
232
|
-
|
|
233
|
-
### [2.0.1](https://github.com/zextras/carbonio-shell-ui/compare/v2.0.0...v2.0.1) (2023-03-02)
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
### Bug Fixes
|
|
237
|
-
|
|
238
|
-
* add space in suggested separators of search bar ([f74dfe2](https://github.com/zextras/carbonio-shell-ui/commit/f74dfe28bb7f36c3b43e608914c86461098af124)), closes [#216](https://github.com/zextras/carbonio-shell-ui/issues/216)
|
|
239
|
-
|
|
240
|
-
## [2.0.0](https://github.com/zextras/carbonio-shell-ui/compare/v1.1.1...v2.0.0) (2023-02-28)
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
### ⚠ BREAKING CHANGES
|
|
244
|
-
|
|
245
|
-
* remove [key: string] index signature in Action type and add deprecated click key
|
|
246
|
-
* remove registerHooks, removeHooks, getIntegratedHook and useIntegratedHook
|
|
247
|
-
|
|
248
|
-
### Features
|
|
249
|
-
|
|
250
|
-
* remove module package name from settings ([5f41cfa](https://github.com/zextras/carbonio-shell-ui/commit/5f41cfa8f2e200a87bfff81c84011122e0434078)), closes [#210](https://github.com/zextras/carbonio-shell-ui/issues/210)
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
### Bug Fixes
|
|
254
|
-
|
|
255
|
-
* clean integrations store ([29a8d4d](https://github.com/zextras/carbonio-shell-ui/commit/29a8d4df0fab854501c6379d90bdcbe400edf1d6)), closes [#207](https://github.com/zextras/carbonio-shell-ui/issues/207)
|
|
256
|
-
* **folders:** handle creation of link folders ([8160dcd](https://github.com/zextras/carbonio-shell-ui/commit/8160dcdf749b74a3e2443f1781ab77b10f31c539)), closes [#203](https://github.com/zextras/carbonio-shell-ui/issues/203)
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
* remove [key: string] index signature in Action type and add deprecated click key ([4706a54](https://github.com/zextras/carbonio-shell-ui/commit/4706a546370787f5b9433eb51f314a32c84345c4)), closes [#208](https://github.com/zextras/carbonio-shell-ui/issues/208)
|
|
260
|
-
|
|
261
|
-
### [1.1.1](https://github.com/zextras/carbonio-shell-ui/compare/v1.1.0...v1.1.1) (2023-02-13)
|
|
262
|
-
|
|
263
|
-
## [1.1.0](https://github.com/zextras/carbonio-shell-ui/compare/v1.0.0...v1.1.0) (2023-02-02)
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
### Features
|
|
267
|
-
|
|
268
|
-
* change the shell header multibutton to always display new ([29ceeea](https://github.com/zextras/carbonio-shell-ui/commit/29ceeea0c41420c620e722fa581f58e72ae19455)), closes [#197](https://github.com/zextras/carbonio-shell-ui/issues/197)
|
|
269
|
-
* **whitelabel:** set primary color on theme based on login config ([2ef5645](https://github.com/zextras/carbonio-shell-ui/commit/2ef564533dbfdbc235b415f7bdf2b94c067be76a)), closes [#178](https://github.com/zextras/carbonio-shell-ui/issues/178)
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
### Bug Fixes
|
|
273
|
-
|
|
274
|
-
* avoid loading fonts from ds to prevent slow loading of module ([e0621c3](https://github.com/zextras/carbonio-shell-ui/commit/e0621c34410fd2bb96223c5441616d695252df5e)), closes [#193](https://github.com/zextras/carbonio-shell-ui/issues/193)
|
|
275
|
-
* **Composer:** avoid transformation of links to relative urls ([da63bf9](https://github.com/zextras/carbonio-shell-ui/commit/da63bf9d731477e309db437996821c969df43b1f)), closes [#187](https://github.com/zextras/carbonio-shell-ui/issues/187)
|
|
276
|
-
* handle management of links when received from notify ([6eef7e7](https://github.com/zextras/carbonio-shell-ui/commit/6eef7e7be4bdb94b65e1e38d1434362c0adfda0c)), closes [#191](https://github.com/zextras/carbonio-shell-ui/issues/191)
|
|
277
|
-
* reinstated hook ([48763f9](https://github.com/zextras/carbonio-shell-ui/commit/48763f9cc2013754b88f36bc7f875e5d69e672cb)), closes [#190](https://github.com/zextras/carbonio-shell-ui/issues/190)
|
|
278
|
-
* **types:** fixup types ([#195](https://github.com/zextras/carbonio-shell-ui/issues/195)) ([ae3f2ca](https://github.com/zextras/carbonio-shell-ui/commit/ae3f2ca0c960065fb49bc611192f02e41ec5296e))
|
|
279
|
-
* updated standard colors ([#189](https://github.com/zextras/carbonio-shell-ui/issues/189)) ([dc9aef1](https://github.com/zextras/carbonio-shell-ui/commit/dc9aef11fd7c22d5b0c3d6692f94711b4d0a4b7a))
|
|
280
|
-
* use controlled mode select ([e8bacf4](https://github.com/zextras/carbonio-shell-ui/commit/e8bacf4596b97c00e4271b70813a757e808c51f1)), closes [#192](https://github.com/zextras/carbonio-shell-ui/issues/192)
|
|
281
|
-
* use DS local fonts instead of downloading them from third-party source ([4933726](https://github.com/zextras/carbonio-shell-ui/commit/493372668dc89caeaf88303ebe94250fb2731e2d)), closes [#184](https://github.com/zextras/carbonio-shell-ui/issues/184)
|
|
282
|
-
|
|
283
|
-
## [1.0.0](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.46...v1.0.0) (2023-01-16)
|
|
284
|
-
|
|
285
|
-
### [0.4.46](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.45...v0.4.46) (2023-01-05)
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
### Features
|
|
289
|
-
|
|
290
|
-
* added localization to tinymce editor ([#175](https://github.com/zextras/carbonio-shell-ui/issues/175)) ([de461ed](https://github.com/zextras/carbonio-shell-ui/commit/de461edf8dc7313d45895b959e81b31c324e6a28))
|
|
291
|
-
* register locales and set default for DateTimePickers ([349c9d6](https://github.com/zextras/carbonio-shell-ui/commit/349c9d64184912402784fdbf434e0ee901363fe1)), closes [#174](https://github.com/zextras/carbonio-shell-ui/issues/174)
|
|
292
|
-
* **settings:** choose the "from" address within all the available addresses ([ce36e6d](https://github.com/zextras/carbonio-shell-ui/commit/ce36e6d81cb2c3716bc1859a9815efbdfd53fdeb)), closes [#177](https://github.com/zextras/carbonio-shell-ui/issues/177)
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
### Bug Fixes
|
|
296
|
-
|
|
297
|
-
* fixing tag type ([#173](https://github.com/zextras/carbonio-shell-ui/issues/173)) ([c1f2e57](https://github.com/zextras/carbonio-shell-ui/commit/c1f2e57b051892f1a2645fdad2e7aecbef49861a))
|
|
298
|
-
* search button is enabled as soon as there is text in the search input ([#176](https://github.com/zextras/carbonio-shell-ui/issues/176)) ([0ada026](https://github.com/zextras/carbonio-shell-ui/commit/0ada0265e5c577db5f54e886cac06f9f8067cd72))
|
|
299
|
-
|
|
300
|
-
### [0.4.45](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.44...v0.4.45) (2022-12-06)
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
### Bug Fixes
|
|
304
|
-
|
|
305
|
-
* edit roboto resource link to be non blocking ([98622a8](https://github.com/zextras/carbonio-shell-ui/commit/98622a84dd5f77bbcce19e7cffa2cbc41cc192e1)), closes [#169](https://github.com/zextras/carbonio-shell-ui/issues/169)
|
|
306
|
-
|
|
307
|
-
### [0.4.44](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.43...v0.4.44) (2022-11-24)
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
### Features
|
|
311
|
-
|
|
312
|
-
* add setting to change base font size for scaling ([caff759](https://github.com/zextras/carbonio-shell-ui/commit/caff7594716655dff84c437753e175dd29a19092)), closes [#156](https://github.com/zextras/carbonio-shell-ui/issues/156)
|
|
313
|
-
* added abort signal to getsoapfetch ([#166](https://github.com/zextras/carbonio-shell-ui/issues/166)) ([3c039e1](https://github.com/zextras/carbonio-shell-ui/commit/3c039e1fa124d4efeec2f4f251193bbf27f8c8d5))
|
|
314
|
-
* added bottom padding to secondary bar ([#165](https://github.com/zextras/carbonio-shell-ui/issues/165)) ([58b07d4](https://github.com/zextras/carbonio-shell-ui/commit/58b07d40189bb74a23044c6a5d26ed0a76fbf361))
|
|
315
|
-
* added data-testid for E2E tests ([#155](https://github.com/zextras/carbonio-shell-ui/issues/155)) ([3042aa6](https://github.com/zextras/carbonio-shell-ui/commit/3042aa697c3ed7e55342d698e2d111451f5d1527))
|
|
316
|
-
* **whitelabel:** use configs to set logo, title, favicon and dark mode default ([9b1a235](https://github.com/zextras/carbonio-shell-ui/commit/9b1a235fb61a7ebf75eb760fe7aab4120a04a374)), closes [#162](https://github.com/zextras/carbonio-shell-ui/issues/162)
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
### Bug Fixes
|
|
320
|
-
|
|
321
|
-
* apply dark mode preview when changed to initial value ([e99e80f](https://github.com/zextras/carbonio-shell-ui/commit/e99e80ff4c9b64675062c8aff8e5d9da3ac2ba16)), closes [#163](https://github.com/zextras/carbonio-shell-ui/issues/163)
|
|
322
|
-
* fixed logout ([#164](https://github.com/zextras/carbonio-shell-ui/issues/164)) ([e75dca6](https://github.com/zextras/carbonio-shell-ui/commit/e75dca6d0d676237358d4276a1b037fad95e4fc2))
|
|
323
|
-
* remember to stop watching for the system color scheme ([#161](https://github.com/zextras/carbonio-shell-ui/issues/161)) ([a0c61ae](https://github.com/zextras/carbonio-shell-ui/commit/a0c61ae9d289b2be00ce05797bf4c42eca1c12b8))
|
|
324
|
-
|
|
325
|
-
### [0.4.43](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.42...v0.4.43) (2022-11-15)
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
### Features
|
|
329
|
-
|
|
330
|
-
* convert px to rem ([#145](https://github.com/zextras/carbonio-shell-ui/issues/145)) ([79240e9](https://github.com/zextras/carbonio-shell-ui/commit/79240e98ea7195b13e20d467f116e20dfcd939d3))
|
|
331
|
-
|
|
332
|
-
### [0.4.42](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.41...v0.4.42) (2022-11-10)
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
### Bug Fixes
|
|
336
|
-
|
|
337
|
-
* chips in search are splitted if typed ([#148](https://github.com/zextras/carbonio-shell-ui/issues/148)) ([81485a1](https://github.com/zextras/carbonio-shell-ui/commit/81485a138a577c0f8c45df069fbedd80db359fc2))
|
|
338
|
-
|
|
339
|
-
### [0.4.41](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.40...v0.4.41) (2022-11-10)
|
|
340
|
-
|
|
341
|
-
### [0.4.40](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.39...v0.4.40) (2022-10-26)
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
### Bug Fixes
|
|
345
|
-
|
|
346
|
-
* fixed translation function and contexts ([b1165d7](https://github.com/zextras/carbonio-shell-ui/commit/b1165d717aa370f2e79f360014827cdf1ae7d7af))
|
|
347
|
-
|
|
348
|
-
### [0.4.39](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.38...v0.4.39) (2022-10-17)
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
### Bug Fixes
|
|
352
|
-
|
|
353
|
-
* exports fix ([#137](https://github.com/zextras/carbonio-shell-ui/issues/137)) ([cf4ca25](https://github.com/zextras/carbonio-shell-ui/commit/cf4ca2568599f7041741d3ef6a69c7e3dd1ded68))
|
|
354
|
-
* manage soap errors ([#138](https://github.com/zextras/carbonio-shell-ui/issues/138)) ([b26ed75](https://github.com/zextras/carbonio-shell-ui/commit/b26ed75a061a7b01e2e2c1205e5e8a33efa8904f))
|
|
355
|
-
|
|
356
|
-
### [0.4.38](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.37...v0.4.38) (2022-10-12)
|
|
357
|
-
|
|
358
|
-
### [0.4.37](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.36...v0.4.37) (2022-09-28)
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
### Features
|
|
362
|
-
|
|
363
|
-
* code and UI alignment to the design system's new version ([#94](https://github.com/zextras/carbonio-shell-ui/issues/94)) ([da1e62d](https://github.com/zextras/carbonio-shell-ui/commit/da1e62d29f8d4149baf56e31371425143e24e046))
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
### Bug Fixes
|
|
367
|
-
|
|
368
|
-
* providing modal manager and snackbar manager to shell routes ([46be7f6](https://github.com/zextras/carbonio-shell-ui/commit/46be7f64432f00f83e03df62a8c4a514a82b9503))
|
|
369
|
-
* using same modal and snackbar manager for apps and boards ([#132](https://github.com/zextras/carbonio-shell-ui/issues/132)) ([4715f80](https://github.com/zextras/carbonio-shell-ui/commit/4715f800f8ac6cf85ff6ff6bb1e198e6179a9f4d))
|
|
370
|
-
|
|
371
|
-
### [0.4.36](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.35...v0.4.36) (2022-09-15)
|
|
372
|
-
|
|
373
|
-
### [0.4.35](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.34...v0.4.35) (2022-09-14)
|
|
374
|
-
|
|
375
|
-
### [0.4.34](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.33...v0.4.34) (2022-08-31)
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
### Features
|
|
379
|
-
|
|
380
|
-
* add sorting to mails folders ([4e8d9da](https://github.com/zextras/carbonio-shell-ui/commit/4e8d9daa46260b1a5385ec36b0040e4ee3f6902b))
|
|
381
|
-
* added inline support in composer ([fff3b3e](https://github.com/zextras/carbonio-shell-ui/commit/fff3b3e30f9cc70d1d2175bdf8e032b78b625681))
|
|
382
|
-
* composer prefilled with styles as per user settings ([#120](https://github.com/zextras/carbonio-shell-ui/issues/120)) ([cee27aa](https://github.com/zextras/carbonio-shell-ui/commit/cee27aa05819af49bf2eb4e8111395a6c8191eff))
|
|
383
|
-
* second row with account email ([75e80a9](https://github.com/zextras/carbonio-shell-ui/commit/75e80a9dc43978aa44b89163808a91caf92133a1))
|
|
384
|
-
* used multiline editor for out of office message ([9480c19](https://github.com/zextras/carbonio-shell-ui/commit/9480c199b139c6091bab0dc7fc0ffe1586d56e07))
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
### Bug Fixes
|
|
388
|
-
|
|
389
|
-
* apply the color to folder as per the parent folder color ([4303518](https://github.com/zextras/carbonio-shell-ui/commit/43035183a0abb1c41e469ebf3c625cbe61a9bc87))
|
|
390
|
-
* fix type SoapRetentionPolicy ([#119](https://github.com/zextras/carbonio-shell-ui/issues/119)) ([e12f3a3](https://github.com/zextras/carbonio-shell-ui/commit/e12f3a31ee9fecd8ebed490df3991f3767506463))
|
|
391
|
-
* integration composer ([ed0ad0f](https://github.com/zextras/carbonio-shell-ui/commit/ed0ad0f7765b25c6dbe98fc2963f955cf1e33aef))
|
|
392
|
-
|
|
393
|
-
### [0.4.33](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.32...v0.4.33) (2022-08-02)
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
### Bug Fixes
|
|
397
|
-
|
|
398
|
-
* keep html format when replying to an email ([4920c37](https://github.com/zextras/carbonio-shell-ui/commit/4920c372d0179b16b4f8850813d7d935ae6bd980))
|
|
399
|
-
|
|
400
|
-
### [0.4.32](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.31...v0.4.32) (2022-08-01)
|
|
401
|
-
|
|
402
|
-
### [0.4.31](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.30...v0.4.31) (2022-07-28)
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
### Bug Fixes
|
|
406
|
-
|
|
407
|
-
* changing editor block formats options ([06de72e](https://github.com/zextras/carbonio-shell-ui/commit/06de72e18b7c32a9af45bedd7a853a9026f67d99))
|
|
408
|
-
* using br instead of p in editor composer ([55cb801](https://github.com/zextras/carbonio-shell-ui/commit/55cb801b944178d5bae191214bfc3f97ef7c082a))
|
|
409
|
-
|
|
410
|
-
### [0.4.30](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.29...v0.4.30) (2022-07-21)
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
### Features
|
|
414
|
-
|
|
415
|
-
* palette and icons for shared and linked content ([#92](https://github.com/zextras/carbonio-shell-ui/issues/92)) ([8098e01](https://github.com/zextras/carbonio-shell-ui/commit/8098e01557c49fe419a41423a6ef9dfbd498ae00))
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
### Bug Fixes
|
|
419
|
-
|
|
420
|
-
* composer controlled mode ([d1cb3eb](https://github.com/zextras/carbonio-shell-ui/commit/d1cb3eb3bc994b2e467f5223ecc1c4de1344ad5a))
|
|
421
|
-
* using pre as editor block format ([1e2c5c9](https://github.com/zextras/carbonio-shell-ui/commit/1e2c5c933dcacb66e033de74fe62bc8d1329a6ac))
|
|
422
|
-
|
|
423
|
-
### [0.4.29](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.28...v0.4.29) (2022-06-20)
|
|
424
|
-
|
|
425
|
-
### [0.4.28](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.27...v0.4.28) (2022-06-14)
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
### Features
|
|
429
|
-
|
|
430
|
-
* enable vietname language support ([f3f4845](https://github.com/zextras/carbonio-shell-ui/commit/f3f48454d188b08e292e3a108bffd2ac6359c697))
|
|
431
|
-
|
|
432
|
-
### [0.4.27](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.26...v0.4.27) (2022-06-09)
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
### Features
|
|
436
|
-
|
|
437
|
-
* standalone mode ([#79](https://github.com/zextras/carbonio-shell-ui/issues/79)) ([b904928](https://github.com/zextras/carbonio-shell-ui/commit/b904928220ff995311234a5d96745c6ad3443916))
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
### Bug Fixes
|
|
441
|
-
|
|
442
|
-
* app loading in non-standalone mode ([a64a024](https://github.com/zextras/carbonio-shell-ui/commit/a64a024615ce97ed405b84ddecf72254f7daf6f0))
|
|
443
|
-
* close suggestions in search on enter key ([b42c8c4](https://github.com/zextras/carbonio-shell-ui/commit/b42c8c4a052f22a25df50fa1319b33cd83136e7a))
|
|
444
|
-
* fixed unwanted trigger of navguard in settings ([65d7c1f](https://github.com/zextras/carbonio-shell-ui/commit/65d7c1f39cd9e7ccccaac8072932596793861de1))
|
|
445
|
-
* i18next json compatibility ([4d9816e](https://github.com/zextras/carbonio-shell-ui/commit/4d9816eddef95d0f2ecd6bbc5d50c053d41a165a))
|
|
446
|
-
* sdk 1.2.4 ([c8fd921](https://github.com/zextras/carbonio-shell-ui/commit/c8fd921f59d19dd0333ddec78759f8af5b6c0c3d))
|
|
447
|
-
|
|
448
|
-
### [0.4.26](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.25...v0.4.26) (2022-05-25)
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
### Bug Fixes
|
|
452
|
-
|
|
453
|
-
* sdk 1.2.4 ([122eadb](https://github.com/zextras/carbonio-shell-ui/commit/122eadba9d661374668a1efb8498301a3910b259))
|
|
454
|
-
|
|
455
|
-
### [0.4.25](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.24...v0.4.25) (2022-05-24)
|
|
456
|
-
|
|
457
|
-
### [0.4.24](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.23...v0.4.24) (2022-05-24)
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
### Bug Fixes
|
|
461
|
-
|
|
462
|
-
* svg loader ([1e4f3d6](https://github.com/zextras/carbonio-shell-ui/commit/1e4f3d6e3aa862b561b2739f992c54e7099a971d))
|
|
463
|
-
|
|
464
|
-
### [0.4.23](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.22...v0.4.23) (2022-05-24)
|
|
465
|
-
|
|
466
|
-
### [0.4.22](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.21...v0.4.22) (2022-05-24)
|
|
467
|
-
|
|
468
|
-
### [0.4.21](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.20...v0.4.21) (2022-05-24)
|
|
469
|
-
|
|
470
|
-
### [0.4.20](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.19...v0.4.20) (2022-05-23)
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
### Bug Fixes
|
|
474
|
-
|
|
475
|
-
* theme is saving correctly ([5a5dc83](https://github.com/zextras/carbonio-shell-ui/commit/5a5dc83c12f1617bf66d6ca7b05f0c711f8f1cc3))
|
|
476
|
-
|
|
477
|
-
### [0.4.19](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.18...v0.4.19) (2022-05-20)
|
|
478
|
-
|
|
479
|
-
### [0.4.18](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.17...v0.4.18) (2022-05-20)
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
### Bug Fixes
|
|
483
|
-
|
|
484
|
-
* i18n handling of missing keys ([ed35bbd](https://github.com/zextras/carbonio-shell-ui/commit/ed35bbd06c743c4759fda82cb33f13851cce6032))
|
|
485
|
-
|
|
486
|
-
### [0.4.17](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.16...v0.4.17) (2022-05-12)
|
|
487
|
-
|
|
488
|
-
### [0.4.16](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.15...v0.4.16) (2022-05-12)
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
### Features
|
|
492
|
-
|
|
493
|
-
* added item customization callback to folder accordion hook ([94c0e03](https://github.com/zextras/carbonio-shell-ui/commit/94c0e039d897fcbf65da5778c39e5f474a3fd71c))
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
### Bug Fixes
|
|
497
|
-
|
|
498
|
-
* added exports to useUserSetting and getUserSetting ([1eb46cf](https://github.com/zextras/carbonio-shell-ui/commit/1eb46cfb8562273295835c13911e64744acc13a6))
|
|
499
|
-
* disableHover flag on root accordion items ([dff2ee0](https://github.com/zextras/carbonio-shell-ui/commit/dff2ee0dac9d2e5a2783289b65299222cc75dc98))
|
|
500
|
-
* useLocalStorage ([03bbc8e](https://github.com/zextras/carbonio-shell-ui/commit/03bbc8e1f9076094623258861bd011bb7f336558))
|
|
501
|
-
|
|
502
|
-
### [0.4.15](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.14...v0.4.15) (2022-05-11)
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
### Features
|
|
506
|
-
|
|
507
|
-
* preserve pathname on route change ([a2c3252](https://github.com/zextras/carbonio-shell-ui/commit/a2c32527e80c720ce4f3fc2701112c50a78e31a5))
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
### Bug Fixes
|
|
511
|
-
|
|
512
|
-
* "out of office" options behaviour ([3d839f0](https://github.com/zextras/carbonio-shell-ui/commit/3d839f083612a2a1cd7a926043bd5a532e062d5a))
|
|
513
|
-
* added condition to skip undefined rendering ([7202394](https://github.com/zextras/carbonio-shell-ui/commit/72023946577d09b3e592e29411cef233f0230569))
|
|
514
|
-
* change search route when search module is change ([9edc83d](https://github.com/zextras/carbonio-shell-ui/commit/9edc83d7d3235fe88d46adaaddf46da911af6c9e))
|
|
515
|
-
* folder hooks and sorting ([c7b3879](https://github.com/zextras/carbonio-shell-ui/commit/c7b38792c299956cab418e59b16c9eb7e04e05bd))
|
|
516
|
-
* runSearch hook pushHistory arguments corrected ([4574af4](https://github.com/zextras/carbonio-shell-ui/commit/4574af47db43ab4d440a37471a5a723b27e65bc8))
|
|
517
|
-
* saveChanges modal trigger on switching settings apps ([2a874be](https://github.com/zextras/carbonio-shell-ui/commit/2a874be9dde4a5537ed8d142bf3a7e3a99cd7c21))
|
|
518
|
-
* searchbar queryFilter query fix onSearch ([7f5196f](https://github.com/zextras/carbonio-shell-ui/commit/7f5196feb915e8ea10c0ef98b94c55df807a382d))
|
|
519
|
-
|
|
520
|
-
### [0.4.14](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.13...v0.4.14) (2022-05-02)
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
### Bug Fixes
|
|
524
|
-
|
|
525
|
-
* routing inside search module ([b66206e](https://github.com/zextras/carbonio-shell-ui/commit/b66206e5039801e7be4d1533ea9ce1671012b75d))
|
|
526
|
-
|
|
527
|
-
### [0.4.13](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.12...v0.4.13) (2022-04-27)
|
|
528
|
-
|
|
529
|
-
### [0.4.12](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.11...v0.4.12) (2022-04-26)
|
|
530
|
-
|
|
531
|
-
### [0.4.11](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.10...v0.4.11) (2022-04-22)
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
### Features
|
|
535
|
-
|
|
536
|
-
* added runSearch function, renamed search folder hooks ([16ca9b9](https://github.com/zextras/carbonio-shell-ui/commit/16ca9b987ba458a463cc1a2ca4422b954a697e3e))
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
### Bug Fixes
|
|
540
|
-
|
|
541
|
-
* container alignment in composer ([f97a61f](https://github.com/zextras/carbonio-shell-ui/commit/f97a61f9ff1a1790adce3146cf0c02eb0c7cfa4e))
|
|
542
|
-
* disabled password recovery settings ([08898f1](https://github.com/zextras/carbonio-shell-ui/commit/08898f14a9107c77513a2855e0eb60d98bf92b6b))
|
|
543
|
-
* missing rte files ([3762d8b](https://github.com/zextras/carbonio-shell-ui/commit/3762d8b36e54bf81f2b3e73fa2e5d5847328068e))
|
|
544
|
-
* object assignation on folder notify ([c61287c](https://github.com/zextras/carbonio-shell-ui/commit/c61287cb6fe22cd6e68436ab0ba746d0fede3359))
|
|
545
|
-
|
|
546
|
-
### [0.4.10](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.9...v0.4.10) (2022-04-14)
|
|
547
|
-
|
|
548
|
-
### [0.4.9](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.8...v0.4.9) (2022-04-12)
|
|
549
|
-
|
|
550
|
-
### [0.4.8](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.7...v0.4.8) (2022-04-12)
|
|
551
|
-
|
|
552
|
-
### [0.4.7](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.6...v0.4.7) (2022-04-12)
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
### Bug Fixes
|
|
556
|
-
|
|
557
|
-
* tag worker sync, accordion folder hook syntax ([e462b9b](https://github.com/zextras/carbonio-shell-ui/commit/e462b9bb60f7c688b2031a198b8ecfdfb7bfa392))
|
|
558
|
-
|
|
559
|
-
### [0.4.6](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.5...v0.4.6) (2022-04-12)
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
### Features
|
|
563
|
-
|
|
564
|
-
* account name in topbar dropdown ([dea2584](https://github.com/zextras/carbonio-shell-ui/commit/dea2584b6aee8bd0fadc8b7cbc83a10aea606854))
|
|
565
|
-
* adding data-testid to icons ([31d6857](https://github.com/zextras/carbonio-shell-ui/commit/31d6857e9758850c53e6c2c9526837ed359d7424))
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
### Bug Fixes
|
|
569
|
-
|
|
570
|
-
* timezone list replaced with zimbra timezone enum ([#60](https://github.com/zextras/carbonio-shell-ui/issues/60)) ([ae547bb](https://github.com/zextras/carbonio-shell-ui/commit/ae547bbcaa79589429e154a8db1c955e8d9cba0d))
|
|
571
|
-
* updated ds dep ([cb181db](https://github.com/zextras/carbonio-shell-ui/commit/cb181dbe8875d998489227b97a6dc755f70702a2))
|
|
572
|
-
|
|
573
|
-
### [0.4.5](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.3-rc.0...v0.4.5) (2022-04-01)
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
### Features
|
|
577
|
-
|
|
578
|
-
* added tag management ([a989935](https://github.com/zextras/carbonio-shell-ui/commit/a989935fe10954bbbb353ed5fce9c66e08aeb986))
|
|
579
|
-
* added updateTag function ([7492c57](https://github.com/zextras/carbonio-shell-ui/commit/7492c57ad4cc4a7f0712a2abfda313383680683a))
|
|
580
|
-
* network functions improvement ([99c93d3](https://github.com/zextras/carbonio-shell-ui/commit/99c93d35d6c5606a8357ea1d542b1f25c7537f0a))
|
|
581
|
-
* tag webWorker ([a4a7944](https://github.com/zextras/carbonio-shell-ui/commit/a4a7944b113d7a4c329405c087172acfeffa44b8))
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
### Bug Fixes
|
|
585
|
-
|
|
586
|
-
* indentation ([631e023](https://github.com/zextras/carbonio-shell-ui/commit/631e023c6f0075c1232b7411bbdec50dac89d42f))
|
|
587
|
-
* removed hardcoded labels ([b27113f](https://github.com/zextras/carbonio-shell-ui/commit/b27113f9d6a266ed379b43f7930291ebe482c906))
|
|
588
|
-
* removed hardcoded labels ([1d03c2b](https://github.com/zextras/carbonio-shell-ui/commit/1d03c2b00bc81c19af5f68ec4aed3ef04eeae476))
|
|
589
|
-
* reset externals in webpack config ([93812a0](https://github.com/zextras/carbonio-shell-ui/commit/93812a0e0bd3c5b97b32e48a90f14532ae2be95f))
|
|
590
|
-
* undefined reading 'app' ([8d9069f](https://github.com/zextras/carbonio-shell-ui/commit/8d9069feba2b0cc23fe1a7d775c27626aa7a2ab8))
|
|
591
|
-
|
|
592
|
-
### [0.4.3-rc.0](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.1-rc.8...v0.4.3-rc.0) (2022-03-18)
|
|
593
|
-
|
|
594
|
-
### [0.4.1-rc.8](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.1-rc.7...v0.4.1-rc.8) (2022-03-18)
|
|
595
|
-
|
|
596
|
-
### [0.4.1-rc.7](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.1-rc.6...v0.4.1-rc.7) (2022-03-18)
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
### Features
|
|
600
|
-
|
|
601
|
-
* added update view ([734d97c](https://github.com/zextras/carbonio-shell-ui/commit/734d97c436450320513a7b92411ce73d0903f99a))
|
|
602
|
-
* enhancements to account settings ([e0549a1](https://github.com/zextras/carbonio-shell-ui/commit/e0549a1d80a45770c3066ab445263a4e9c000ad9))
|
|
603
|
-
* few features added to tinymce ([7479a21](https://github.com/zextras/carbonio-shell-ui/commit/7479a2140200f292cbecde81329c945c954367ef))
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
### Bug Fixes
|
|
607
|
-
|
|
608
|
-
* added special '500' case to the polling interval handling ([e283a78](https://github.com/zextras/carbonio-shell-ui/commit/e283a78fb10c986ec78be03dc92b84ccf93fd72a))
|
|
609
|
-
* catcher throw errors ([eafc584](https://github.com/zextras/carbonio-shell-ui/commit/eafc5847e99158968b3143a7766a5776db28ccf8))
|
|
610
|
-
* composer occupying available space ([#30](https://github.com/zextras/carbonio-shell-ui/issues/30)) ([9d6e8bf](https://github.com/zextras/carbonio-shell-ui/commit/9d6e8bf827a60227f5f946d4bf2374c46f2be3ed))
|
|
611
|
-
* fixed behaviour of subsections accordion ([fdffddf](https://github.com/zextras/carbonio-shell-ui/commit/fdffddfd88b98ff49b6fd04a0ce3916789794b34))
|
|
612
|
-
* fixed nav-guard behaviour around settings subsection ([2205529](https://github.com/zextras/carbonio-shell-ui/commit/220552925999be7ad5100ca2d131b5884d66c7e5))
|
|
613
|
-
* remove print button ([a0c3d9e](https://github.com/zextras/carbonio-shell-ui/commit/a0c3d9e2975a26c44e99ed01530c66031a0ec448))
|
|
614
|
-
|
|
615
|
-
### [0.4.1-rc.6](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.1-rc.5...v0.4.1-rc.6) (2022-03-07)
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
### Features
|
|
619
|
-
|
|
620
|
-
* changed behaviour of new button for search and settings modules ([a49d589](https://github.com/zextras/carbonio-shell-ui/commit/a49d589781da33ae83389d26647ce9b8d91af60b))
|
|
621
|
-
|
|
622
|
-
### [0.4.1-rc.5](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.1-rc.4...v0.4.1-rc.5) (2022-03-04)
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
### Bug Fixes
|
|
626
|
-
|
|
627
|
-
* fixed badge on primary bar and collapser postion ([3129236](https://github.com/zextras/carbonio-shell-ui/commit/3129236a973908533aa152982a1a6610c32a3632))
|
|
628
|
-
|
|
629
|
-
### [0.4.1-rc.4](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.1-rc.1...v0.4.1-rc.4) (2022-02-24)
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
### Bug Fixes
|
|
633
|
-
|
|
634
|
-
* badge text color ([72addae](https://github.com/zextras/carbonio-shell-ui/commit/72addae73405a6d4fe2725d795887cadd955b7a9))
|
|
635
|
-
|
|
636
|
-
### [0.4.1-rc.1](https://github.com/zextras/carbonio-shell-ui/compare/v0.4.1-rc.0...v0.4.1-rc.1) (2022-02-24)
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
### Bug Fixes
|
|
640
|
-
|
|
641
|
-
* badge color and selectability ([e053dd0](https://github.com/zextras/carbonio-shell-ui/commit/e053dd04fbecac32512eef247504a0b563ed973b))
|
|
642
|
-
|
|
643
|
-
### [0.4.1-rc.0](https://github.com/zextras/carbonio-shell-ui/compare/v0.3.0-rc.8...v0.4.1-rc.0) (2022-02-24)
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
### Bug Fixes
|
|
647
|
-
|
|
648
|
-
* dev build for the npm prepublish script ([5ea0a37](https://github.com/zextras/carbonio-shell-ui/commit/5ea0a37cf98a8c60d70137bab5c77b683a808cdb))
|
|
649
|
-
|
|
650
|
-
## [0.3.0-rc.8](https://github.com/zextras/carbonio-shell-ui/compare/v0.3.0-rc.7...v0.3.0-rc.8) (2022-02-24)
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
### ⚠ BREAKING CHANGES
|
|
654
|
-
|
|
655
|
-
* **api:** there are significant changes to the api exported to the modules, a complete documentation will be available next sprint
|
|
656
|
-
|
|
657
|
-
Co-authored-by: Giuliano Caregnato <giuliano.caregnato@zextras.com>
|
|
658
|
-
|
|
659
|
-
### Features
|
|
660
|
-
|
|
661
|
-
* added new identities section on account settings ([056912b](https://github.com/zextras/carbonio-shell-ui/commit/056912baf020d8a321aeefbbe13bfc723c377c7e))
|
|
662
|
-
* **api:** app management refactor, admin panel entrypoint ([31b667c](https://github.com/zextras/carbonio-shell-ui/commit/31b667c90e7eecffa60bb85886b599f20efb3cf3))
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
### Bug Fixes
|
|
666
|
-
|
|
667
|
-
* cleared input debounce on search chip input to avoid race conditions ([4a9de94](https://github.com/zextras/carbonio-shell-ui/commit/4a9de94d5c4e486819b4808d568e11023aa39866))
|
|
668
|
-
* update board height ([b080e95](https://github.com/zextras/carbonio-shell-ui/commit/b080e9521b22586b56f8442675167456a58cad45))
|
|
669
|
-
|
|
670
|
-
## [0.3.0-rc.7](https://github.com/zextras/carbonio-shell-ui/compare/v0.3.0-rc.6...v0.3.0-rc.7) (2022-02-10)
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
### Features
|
|
674
|
-
|
|
675
|
-
* french language support added to language settings ([76e89f9](https://github.com/zextras/carbonio-shell-ui/commit/76e89f9661c873f08ddcb25757d28d6f7b898555))
|
|
676
|
-
|
|
677
|
-
## [0.3.0-rc.6](https://github.com/zextras/carbonio-shell-ui/compare/v0.3.0-rc.5...v0.3.0-rc.6) (2022-01-21)
|
|
678
|
-
|
|
679
|
-
## [0.3.0-rc.5](https://github.com/zextras/carbonio-shell-ui/compare/v0.3.0-rc.4...v0.3.0-rc.5) (2022-01-21)
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
### Features
|
|
683
|
-
|
|
684
|
-
* added beta mark to header logo ([dff28a6](https://github.com/zextras/carbonio-shell-ui/commit/dff28a62942f49134c601e44a8b14071f936b2f7))
|
|
685
|
-
|
|
686
|
-
## 0.3.0-rc.4 (2022-01-20)
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
### Features
|
|
690
|
-
|
|
691
|
-
* first commit ([19b5137](https://github.com/zextras/carbonio-shell-ui/commit/19b5137e21a075f897fb2741f172a1a5fce47fe0))
|
|
692
|
-
* implemented search settings in general settings ([d788780](https://github.com/zextras/carbonio-shell-ui/commit/d788780e062e01c2f383b65bd25733d687a2d75b))
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
### Bug Fixes
|
|
696
|
-
|
|
697
|
-
* erroneously named chatbar integration ([1304df8](https://github.com/zextras/carbonio-shell-ui/commit/1304df8eea801557a97c297dd78b6e7d7c080978))
|
|
698
|
-
|
|
699
|
-
# Changelog
|
|
700
|
-
|
|
701
|
-
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|