@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
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
tinymce.Resource.add('tinymce.html-i18n.help-keynav.tr',
|
|
2
|
-
'<h1>Klavyeyle gezintiyi başlatma</h1>\n' +
|
|
3
|
-
'\n' +
|
|
4
|
-
'<dl>\n' +
|
|
5
|
-
' <dt>Menü çubuğuna odaklan</dt>\n' +
|
|
6
|
-
' <dd>Windows veya Linux: Alt+F9</dd>\n' +
|
|
7
|
-
' <dd>macOS: ⌥F9</dd>\n' +
|
|
8
|
-
' <dt>Araç çubuğuna odaklan</dt>\n' +
|
|
9
|
-
' <dd>Windows veya Linux: Alt+F10</dd>\n' +
|
|
10
|
-
' <dd>macOS: ⌥F10</dd>\n' +
|
|
11
|
-
' <dt>Alt bilgiye odaklan</dt>\n' +
|
|
12
|
-
' <dd>Windows veya Linux: Alt+F11</dd>\n' +
|
|
13
|
-
' <dd>macOS: ⌥F11</dd>\n' +
|
|
14
|
-
' <dt>Bağlamsal araç çubuğuna odaklan</dt>\n' +
|
|
15
|
-
' <dd>Windows, Linux veya macOS: Ctrl+F9\n' +
|
|
16
|
-
'</dl>\n' +
|
|
17
|
-
'\n' +
|
|
18
|
-
'<p>Gezinti ilk kullanıcı arabirimi öğesinden başlar, bu öğe vurgulanır ya da ilk öğe, Alt bilgi elemanı\n' +
|
|
19
|
-
' yolundaysa altı çizilir.</p>\n' +
|
|
20
|
-
'\n' +
|
|
21
|
-
'<h1>Kullanıcı arabirimi bölümleri arasında gezinme</h1>\n' +
|
|
22
|
-
'\n' +
|
|
23
|
-
'<p>Sonraki kullanıcı arabirimi bölümüne gitmek için <strong>Sekme</strong> tuşuna basın.</p>\n' +
|
|
24
|
-
'\n' +
|
|
25
|
-
'<p>Önceki kullanıcı arabirimi bölümüne gitmek için <strong>Shift+Sekme</strong> tuşlarına basın.</p>\n' +
|
|
26
|
-
'\n' +
|
|
27
|
-
'<p>Bu kullanıcı arabirimi bölümlerinin <strong>Sekme</strong> sırası:</p>\n' +
|
|
28
|
-
'\n' +
|
|
29
|
-
'<ol>\n' +
|
|
30
|
-
' <li>Menü çubuğu</li>\n' +
|
|
31
|
-
' <li>Her araç çubuğu grubu</li>\n' +
|
|
32
|
-
' <li>Kenar çubuğu</li>\n' +
|
|
33
|
-
' <li>Alt bilgide öğe yolu</li>\n' +
|
|
34
|
-
' <li>Alt bilgide sözcük sayısı geçiş düğmesi</li>\n' +
|
|
35
|
-
' <li>Alt bilgide marka bağlantısı</li>\n' +
|
|
36
|
-
' <li>Alt bilgide düzenleyiciyi yeniden boyutlandırma tutamacı</li>\n' +
|
|
37
|
-
'</ol>\n' +
|
|
38
|
-
'\n' +
|
|
39
|
-
'<p>Kullanıcı arabirimi bölümü yoksa atlanır.</p>\n' +
|
|
40
|
-
'\n' +
|
|
41
|
-
'<p>Alt bilgide klavyeyle gezinti odağı yoksa ve görünür bir kenar çubuğu mevcut değilse <strong>Shift+Sekme</strong> tuşlarına basıldığında\n' +
|
|
42
|
-
' odak son araç çubuğu yerine ilk araç çubuğu grubuna taşınır.</p>\n' +
|
|
43
|
-
'\n' +
|
|
44
|
-
'<h1>Kullanıcı arabirimi bölümleri içinde gezinme</h1>\n' +
|
|
45
|
-
'\n' +
|
|
46
|
-
'<p>Sonraki kullanıcı arabirimi elemanına gitmek için uygun <strong>Ok</strong> tuşuna basın.</p>\n' +
|
|
47
|
-
'\n' +
|
|
48
|
-
'<p><strong>Sol</strong> ve <strong>Sağ</strong> ok tuşları</p>\n' +
|
|
49
|
-
'\n' +
|
|
50
|
-
'<ul>\n' +
|
|
51
|
-
' <li>menü çubuğundaki menüler arasında hareket eder.</li>\n' +
|
|
52
|
-
' <li>menüde bir alt menü açar.</li>\n' +
|
|
53
|
-
' <li>araç çubuğu grubundaki düğmeler arasında hareket eder.</li>\n' +
|
|
54
|
-
' <li>alt bilginin öğe yolundaki öğeler arasında hareket eder.</li>\n' +
|
|
55
|
-
'</ul>\n' +
|
|
56
|
-
'\n' +
|
|
57
|
-
'<p><strong>Aşağı</strong> ve <strong>Yukarı</strong> ok tuşları</p>\n' +
|
|
58
|
-
'\n' +
|
|
59
|
-
'<ul>\n' +
|
|
60
|
-
' <li>menüdeki menü öğeleri arasında hareket eder.</li>\n' +
|
|
61
|
-
' <li>araç çubuğu açılır menüsündeki öğeler arasında hareket eder.</li>\n' +
|
|
62
|
-
'</ul>\n' +
|
|
63
|
-
'\n' +
|
|
64
|
-
'<p><strong>Ok</strong> tuşları, odaklanılan kullanıcı arabirimi bölümü içinde döngüsel olarak hareket eder.</p>\n' +
|
|
65
|
-
'\n' +
|
|
66
|
-
'<p>Açık bir menüyü, açık bir alt menüyü veya açık bir açılır menüyü kapatmak için <strong>Esc</strong> tuşuna basın.</p>\n' +
|
|
67
|
-
'\n' +
|
|
68
|
-
'<p>Geçerli odak belirli bir kullanıcı arabirimi bölümünün "üst" kısmındaysa <strong>Esc</strong> tuşuna basıldığında\n' +
|
|
69
|
-
' klavyeyle gezintiden de tamamen çıkılır.</p>\n' +
|
|
70
|
-
'\n' +
|
|
71
|
-
'<h1>Menü öğesini veya araç çubuğu düğmesini yürütme</h1>\n' +
|
|
72
|
-
'\n' +
|
|
73
|
-
'<p>İstediğiniz menü öğesi veya araç çubuğu düğmesi vurgulandığında <strong>Return</strong>, <strong>Enter</strong>\n' +
|
|
74
|
-
' veya <strong>Ara çubuğu</strong> tuşuna basın.</p>\n' +
|
|
75
|
-
'\n' +
|
|
76
|
-
'<h1>Sekme bulunmayan iletişim kutularında gezinme</h1>\n' +
|
|
77
|
-
'\n' +
|
|
78
|
-
'<p>Sekme bulunmayan iletişim kutularında, iletişim kutusu açıldığında ilk etkileşimli bileşene odaklanılır.</p>\n' +
|
|
79
|
-
'\n' +
|
|
80
|
-
'<p>Etkileşimli iletişim kutusu bileşenleri arasında gezinmek için <strong>Sekme</strong> veya <strong>Shift+ Sekme</strong> tuşlarına basın.</p>\n' +
|
|
81
|
-
'\n' +
|
|
82
|
-
'<h1>Sekmeli iletişim kutularında gezinme</h1>\n' +
|
|
83
|
-
'\n' +
|
|
84
|
-
'<p>Sekmeli iletişim kutularında, iletişim kutusu açıldığında sekme menüsündeki ilk düğmeye odaklanılır.</p>\n' +
|
|
85
|
-
'\n' +
|
|
86
|
-
'<p>Bu iletişim kutusu sekmesinin etkileşimli bileşenleri arasında gezinmek için <strong>Sekme</strong> veya\n' +
|
|
87
|
-
' <strong>Shift+Sekme</strong> tuşlarına basın.</p>\n' +
|
|
88
|
-
'\n' +
|
|
89
|
-
'<p>Mevcut sekmeler arasında geçiş yapmak için sekme menüsüne odaklanıp uygun <strong>Ok</strong> tuşuna basarak\n' +
|
|
90
|
-
' başka bir iletişim kutusu sekmesine geçiş yapın.</p>\n');
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
tinymce.Resource.add('tinymce.html-i18n.help-keynav.vi',
|
|
2
|
-
'<h1>Bắt đầu điều hướng bàn phím</h1>\n' +
|
|
3
|
-
'\n' +
|
|
4
|
-
'<dl>\n' +
|
|
5
|
-
' <dt>Tập trung vào thanh menu</dt>\n' +
|
|
6
|
-
' <dd>Windows hoặc Linux: Alt+F9</dd>\n' +
|
|
7
|
-
' <dd>macOS: ⌥F9</dd>\n' +
|
|
8
|
-
' <dt>Tập trung vào thanh công cụ</dt>\n' +
|
|
9
|
-
' <dd>Windows hoặc Linux: Alt+F10</dd>\n' +
|
|
10
|
-
' <dd>macOS: ⌥F10</dd>\n' +
|
|
11
|
-
' <dt>Tập trung vào chân trang</dt>\n' +
|
|
12
|
-
' <dd>Windows hoặc Linux: Alt+F11</dd>\n' +
|
|
13
|
-
' <dd>macOS: ⌥F11</dd>\n' +
|
|
14
|
-
' <dt>Tập trung vào thanh công cụ ngữ cảnh</dt>\n' +
|
|
15
|
-
' <dd>Windows, Linux hoặc macOS: Ctrl+F9\n' +
|
|
16
|
-
'</dl>\n' +
|
|
17
|
-
'\n' +
|
|
18
|
-
'<p>Điều hướng sẽ bắt đầu từ mục UI đầu tiên. Mục này sẽ được tô sáng hoặc có gạch dưới (nếu là mục đầu tiên trong\n' +
|
|
19
|
-
' đường dẫn phần tử Chân trang).</p>\n' +
|
|
20
|
-
'\n' +
|
|
21
|
-
'<h1>Di chuyển qua lại giữa các phần UI</h1>\n' +
|
|
22
|
-
'\n' +
|
|
23
|
-
'<p>Để di chuyển từ một phần UI sang phần tiếp theo, ấn <strong>Tab</strong>.</p>\n' +
|
|
24
|
-
'\n' +
|
|
25
|
-
'<p>Để di chuyển từ một phần UI về phần trước đó, ấn <strong>Shift+Tab</strong>.</p>\n' +
|
|
26
|
-
'\n' +
|
|
27
|
-
'<p>Thứ tự <strong>Tab</strong> của các phần UI này như sau:</p>\n' +
|
|
28
|
-
'\n' +
|
|
29
|
-
'<ol>\n' +
|
|
30
|
-
' <li>Thanh menu</li>\n' +
|
|
31
|
-
' <li>Từng nhóm thanh công cụ</li>\n' +
|
|
32
|
-
' <li>Thanh bên</li>\n' +
|
|
33
|
-
' <li>Đường dẫn phần tử trong chân trang</li>\n' +
|
|
34
|
-
' <li>Nút chuyển đổi đếm chữ ở chân trang</li>\n' +
|
|
35
|
-
' <li>Liên kết thương hiệu ở chân trang</li>\n' +
|
|
36
|
-
' <li>Núm điều tác chỉnh kích cỡ trình soạn thảo ở chân trang</li>\n' +
|
|
37
|
-
'</ol>\n' +
|
|
38
|
-
'\n' +
|
|
39
|
-
'<p>Nếu người dùng không thấy một phần UI, thì có nghĩa phần đó bị bỏ qua.</p>\n' +
|
|
40
|
-
'\n' +
|
|
41
|
-
'<p>Nếu ở chân trang có tính năng tập trung điều hướng bàn phím, mà không có thanh bên nào hiện hữu, thao tác ấn <strong>Shift+Tab</strong>\n' +
|
|
42
|
-
' sẽ chuyển hướng tập trung vào nhóm thanh công cụ đầu tiên, không phải cuối cùng.</p>\n' +
|
|
43
|
-
'\n' +
|
|
44
|
-
'<h1>Di chuyển qua lại trong các phần UI</h1>\n' +
|
|
45
|
-
'\n' +
|
|
46
|
-
'<p>Để di chuyển từ một phần tử UI sang phần tiếp theo, ấn phím <strong>Mũi tên</strong> tương ứng cho phù hợp.</p>\n' +
|
|
47
|
-
'\n' +
|
|
48
|
-
'<p>Các phím mũi tên <strong>Trái</strong> và <strong>Phải</strong></p>\n' +
|
|
49
|
-
'\n' +
|
|
50
|
-
'<ul>\n' +
|
|
51
|
-
' <li>di chuyển giữa các menu trong thanh menu.</li>\n' +
|
|
52
|
-
' <li>mở menu phụ trong một menu.</li>\n' +
|
|
53
|
-
' <li>di chuyển giữa các nút trong nhóm thanh công cụ.</li>\n' +
|
|
54
|
-
' <li>di chuyển giữa các mục trong đường dẫn phần tử của chân trang.</li>\n' +
|
|
55
|
-
'</ul>\n' +
|
|
56
|
-
'\n' +
|
|
57
|
-
'<p>Các phím mũi tên <strong>Hướng xuống</strong> và <strong>Hướng lên</strong></p>\n' +
|
|
58
|
-
'\n' +
|
|
59
|
-
'<ul>\n' +
|
|
60
|
-
' <li>di chuyển giữa các mục menu trong menu.</li>\n' +
|
|
61
|
-
' <li>di chuyển giữa các mục trong menu thanh công cụ dạng bật lên.</li>\n' +
|
|
62
|
-
'</ul>\n' +
|
|
63
|
-
'\n' +
|
|
64
|
-
'<p>Các phím <strong>mũi tên</strong> xoay vòng trong một phần UI tập trung.</p>\n' +
|
|
65
|
-
'\n' +
|
|
66
|
-
'<p>Để đóng một menu mở, một menu phụ đang mở, hoặc một menu dạng bật lên đang mở, hãy ấn phím <strong>Esc</strong>.</p>\n' +
|
|
67
|
-
'\n' +
|
|
68
|
-
'<p>Nếu trọng tâm hiện tại là ở phần “đầu” của một phần UI cụ thể, thao tác ấn phím <strong>Esc</strong> cũng sẽ thoát\n' +
|
|
69
|
-
' toàn bộ phần điều hướng bàn phím.</p>\n' +
|
|
70
|
-
'\n' +
|
|
71
|
-
'<h1>Thực hiện chức năng của một mục menu hoặc nút thanh công cụ</h1>\n' +
|
|
72
|
-
'\n' +
|
|
73
|
-
'<p>Khi mục menu hoặc nút thanh công cụ muốn dùng được tô sáng, hãy ấn <strong>Return</strong>, <strong>Enter</strong>,\n' +
|
|
74
|
-
' hoặc <strong>Phím cách</strong> để thực hiện chức năng mục đó.</p>\n' +
|
|
75
|
-
'\n' +
|
|
76
|
-
'<h1>Điều hướng giữa các hộp thoại không có nhiều tab</h1>\n' +
|
|
77
|
-
'\n' +
|
|
78
|
-
'<p>Trong các hộp thoại không có nhiều tab, khi hộp thoại mở ra, trọng tâm sẽ hướng vào thành phần tương tác đầu tiên.</p>\n' +
|
|
79
|
-
'\n' +
|
|
80
|
-
'<p>Di chuyển giữa các thành phần hộp thoại tương tác bằng cách ấn <strong>Tab</strong> hoặc <strong>Shift+Tab</strong>.</p>\n' +
|
|
81
|
-
'\n' +
|
|
82
|
-
'<h1>Điều hướng giữa các hộp thoại có nhiều tab</h1>\n' +
|
|
83
|
-
'\n' +
|
|
84
|
-
'<p>Trong các hộp thoại có nhiều tab, khi hộp thoại mở ra, trọng tâm sẽ hướng vào nút đầu tiên trong menu tab.</p>\n' +
|
|
85
|
-
'\n' +
|
|
86
|
-
'<p>Di chuyển giữa các thành phần tương tác của tab hộp thoại này bằng cách ấn <strong>Tab</strong> hoặc\n' +
|
|
87
|
-
' <strong>Shift+Tab</strong>.</p>\n' +
|
|
88
|
-
'\n' +
|
|
89
|
-
'<p>Chuyển sang một tab hộp thoại khác bằng cách chuyển trọng tâm vào menu tab, rồi ấn phím <strong>Mũi tên</strong> phù hợp\n' +
|
|
90
|
-
' để xoay vòng các tab hiện có.</p>\n');
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
|
3
|
-
* Licensed under the LGPL or a commercial license.
|
|
4
|
-
* For LGPL see License.txt in the project root for license information.
|
|
5
|
-
* For commercial licenses see https://www.tiny.cloud/
|
|
6
|
-
*/
|
|
7
|
-
body {
|
|
8
|
-
background-color: #2f3742;
|
|
9
|
-
color: #dfe0e4;
|
|
10
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
11
|
-
line-height: 1.4;
|
|
12
|
-
margin: 1rem;
|
|
13
|
-
}
|
|
14
|
-
a {
|
|
15
|
-
color: #4099ff;
|
|
16
|
-
}
|
|
17
|
-
table {
|
|
18
|
-
border-collapse: collapse;
|
|
19
|
-
}
|
|
20
|
-
table th,
|
|
21
|
-
table td {
|
|
22
|
-
border: 1px solid #6d737b;
|
|
23
|
-
padding: 0.4rem;
|
|
24
|
-
}
|
|
25
|
-
figure {
|
|
26
|
-
display: table;
|
|
27
|
-
margin: 1rem auto;
|
|
28
|
-
}
|
|
29
|
-
figure figcaption {
|
|
30
|
-
color: #8a8f97;
|
|
31
|
-
display: block;
|
|
32
|
-
margin-top: 0.25rem;
|
|
33
|
-
text-align: center;
|
|
34
|
-
}
|
|
35
|
-
hr {
|
|
36
|
-
border-color: #6d737b;
|
|
37
|
-
border-style: solid;
|
|
38
|
-
border-width: 1px 0 0 0;
|
|
39
|
-
}
|
|
40
|
-
code {
|
|
41
|
-
background-color: #6d737b;
|
|
42
|
-
border-radius: 3px;
|
|
43
|
-
padding: 0.1rem 0.2rem;
|
|
44
|
-
}
|
|
45
|
-
/* Make text in selected cells in tables dark and readable */
|
|
46
|
-
td[data-mce-selected],
|
|
47
|
-
th[data-mce-selected] {
|
|
48
|
-
color: #333;
|
|
49
|
-
}
|
|
50
|
-
.mce-content-body:not([dir=rtl]) blockquote {
|
|
51
|
-
border-left: 2px solid #6d737b;
|
|
52
|
-
margin-left: 1.5rem;
|
|
53
|
-
padding-left: 1rem;
|
|
54
|
-
}
|
|
55
|
-
.mce-content-body[dir=rtl] blockquote {
|
|
56
|
-
border-right: 2px solid #6d737b;
|
|
57
|
-
margin-right: 1.5rem;
|
|
58
|
-
padding-right: 1rem;
|
|
59
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
|
3
|
-
* Licensed under the LGPL or a commercial license.
|
|
4
|
-
* For LGPL see License.txt in the project root for license information.
|
|
5
|
-
* For commercial licenses see https://www.tiny.cloud/
|
|
6
|
-
*/
|
|
7
|
-
body{background-color:#2f3742;color:#dfe0e4;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}a{color:#4099ff}table{border-collapse:collapse}table td,table th{border:1px solid #6d737b;padding:.4rem}figure{display:table;margin:1rem auto}figure figcaption{color:#8a8f97;display:block;margin-top:.25rem;text-align:center}hr{border-color:#6d737b;border-style:solid;border-width:1px 0 0 0}code{background-color:#6d737b;border-radius:3px;padding:.1rem .2rem}td[data-mce-selected],th[data-mce-selected]{color:#333}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #6d737b;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #6d737b;margin-right:1.5rem;padding-right:1rem}
|
|
8
|
-
/*# sourceMappingURL=content.min.css.map */
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
|
3
|
-
* Licensed under the LGPL or a commercial license.
|
|
4
|
-
* For LGPL see License.txt in the project root for license information.
|
|
5
|
-
* For commercial licenses see https://www.tiny.cloud/
|
|
6
|
-
*/
|
|
7
|
-
body {
|
|
8
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
9
|
-
line-height: 1.4;
|
|
10
|
-
margin: 1rem;
|
|
11
|
-
}
|
|
12
|
-
table {
|
|
13
|
-
border-collapse: collapse;
|
|
14
|
-
}
|
|
15
|
-
table th,
|
|
16
|
-
table td {
|
|
17
|
-
border: 1px solid #ccc;
|
|
18
|
-
padding: 0.4rem;
|
|
19
|
-
}
|
|
20
|
-
figure {
|
|
21
|
-
display: table;
|
|
22
|
-
margin: 1rem auto;
|
|
23
|
-
}
|
|
24
|
-
figure figcaption {
|
|
25
|
-
color: #999;
|
|
26
|
-
display: block;
|
|
27
|
-
margin-top: 0.25rem;
|
|
28
|
-
text-align: center;
|
|
29
|
-
}
|
|
30
|
-
hr {
|
|
31
|
-
border-color: #ccc;
|
|
32
|
-
border-style: solid;
|
|
33
|
-
border-width: 1px 0 0 0;
|
|
34
|
-
}
|
|
35
|
-
code {
|
|
36
|
-
background-color: #e8e8e8;
|
|
37
|
-
border-radius: 3px;
|
|
38
|
-
padding: 0.1rem 0.2rem;
|
|
39
|
-
}
|
|
40
|
-
.mce-content-body:not([dir=rtl]) blockquote {
|
|
41
|
-
border-left: 2px solid #ccc;
|
|
42
|
-
margin-left: 1.5rem;
|
|
43
|
-
padding-left: 1rem;
|
|
44
|
-
}
|
|
45
|
-
.mce-content-body[dir=rtl] blockquote {
|
|
46
|
-
border-right: 2px solid #ccc;
|
|
47
|
-
margin-right: 1.5rem;
|
|
48
|
-
padding-right: 1rem;
|
|
49
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
|
3
|
-
* Licensed under the LGPL or a commercial license.
|
|
4
|
-
* For LGPL see License.txt in the project root for license information.
|
|
5
|
-
* For commercial licenses see https://www.tiny.cloud/
|
|
6
|
-
*/
|
|
7
|
-
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}table{border-collapse:collapse}table td,table th{border:1px solid #ccc;padding:.4rem}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}
|
|
8
|
-
/*# sourceMappingURL=content.min.css.map */
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
|
3
|
-
* Licensed under the LGPL or a commercial license.
|
|
4
|
-
* For LGPL see License.txt in the project root for license information.
|
|
5
|
-
* For commercial licenses see https://www.tiny.cloud/
|
|
6
|
-
*/
|
|
7
|
-
@media screen {
|
|
8
|
-
html {
|
|
9
|
-
background: #f4f4f4;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
body {
|
|
13
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
14
|
-
}
|
|
15
|
-
@media screen {
|
|
16
|
-
body {
|
|
17
|
-
background-color: #fff;
|
|
18
|
-
box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
|
|
19
|
-
box-sizing: border-box;
|
|
20
|
-
margin: 1rem auto 0;
|
|
21
|
-
max-width: 820px;
|
|
22
|
-
min-height: calc(100vh - 1rem);
|
|
23
|
-
padding: 4rem 6rem 6rem 6rem;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
table {
|
|
27
|
-
border-collapse: collapse;
|
|
28
|
-
}
|
|
29
|
-
table th,
|
|
30
|
-
table td {
|
|
31
|
-
border: 1px solid #ccc;
|
|
32
|
-
padding: 0.4rem;
|
|
33
|
-
}
|
|
34
|
-
figure figcaption {
|
|
35
|
-
color: #999;
|
|
36
|
-
margin-top: 0.25rem;
|
|
37
|
-
text-align: center;
|
|
38
|
-
}
|
|
39
|
-
hr {
|
|
40
|
-
border-color: #ccc;
|
|
41
|
-
border-style: solid;
|
|
42
|
-
border-width: 1px 0 0 0;
|
|
43
|
-
}
|
|
44
|
-
.mce-content-body:not([dir=rtl]) blockquote {
|
|
45
|
-
border-left: 2px solid #ccc;
|
|
46
|
-
margin-left: 1.5rem;
|
|
47
|
-
padding-left: 1rem;
|
|
48
|
-
}
|
|
49
|
-
.mce-content-body[dir=rtl] blockquote {
|
|
50
|
-
border-right: 2px solid #ccc;
|
|
51
|
-
margin-right: 1.5rem;
|
|
52
|
-
padding-right: 1rem;
|
|
53
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
|
3
|
-
* Licensed under the LGPL or a commercial license.
|
|
4
|
-
* For LGPL see License.txt in the project root for license information.
|
|
5
|
-
* For commercial licenses see https://www.tiny.cloud/
|
|
6
|
-
*/
|
|
7
|
-
@media screen{html{background:#f4f4f4}}body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif}@media screen{body{background-color:#fff;box-shadow:0 0 4px rgba(0,0,0,.15);box-sizing:border-box;margin:1rem auto 0;max-width:820px;min-height:calc(100vh - 1rem);padding:4rem 6rem 6rem 6rem}}table{border-collapse:collapse}table td,table th{border:1px solid #ccc;padding:.4rem}figure figcaption{color:#999;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}
|
|
8
|
-
/*# sourceMappingURL=content.min.css.map */
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
|
3
|
-
* Licensed under the LGPL or a commercial license.
|
|
4
|
-
* For LGPL see License.txt in the project root for license information.
|
|
5
|
-
* For commercial licenses see https://www.tiny.cloud/
|
|
6
|
-
*/
|
|
7
|
-
body {
|
|
8
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
9
|
-
line-height: 1.4;
|
|
10
|
-
margin: 1rem auto;
|
|
11
|
-
max-width: 900px;
|
|
12
|
-
}
|
|
13
|
-
table {
|
|
14
|
-
border-collapse: collapse;
|
|
15
|
-
}
|
|
16
|
-
table th,
|
|
17
|
-
table td {
|
|
18
|
-
border: 1px solid #ccc;
|
|
19
|
-
padding: 0.4rem;
|
|
20
|
-
}
|
|
21
|
-
figure {
|
|
22
|
-
display: table;
|
|
23
|
-
margin: 1rem auto;
|
|
24
|
-
}
|
|
25
|
-
figure figcaption {
|
|
26
|
-
color: #999;
|
|
27
|
-
display: block;
|
|
28
|
-
margin-top: 0.25rem;
|
|
29
|
-
text-align: center;
|
|
30
|
-
}
|
|
31
|
-
hr {
|
|
32
|
-
border-color: #ccc;
|
|
33
|
-
border-style: solid;
|
|
34
|
-
border-width: 1px 0 0 0;
|
|
35
|
-
}
|
|
36
|
-
code {
|
|
37
|
-
background-color: #e8e8e8;
|
|
38
|
-
border-radius: 3px;
|
|
39
|
-
padding: 0.1rem 0.2rem;
|
|
40
|
-
}
|
|
41
|
-
.mce-content-body:not([dir=rtl]) blockquote {
|
|
42
|
-
border-left: 2px solid #ccc;
|
|
43
|
-
margin-left: 1.5rem;
|
|
44
|
-
padding-left: 1rem;
|
|
45
|
-
}
|
|
46
|
-
.mce-content-body[dir=rtl] blockquote {
|
|
47
|
-
border-right: 2px solid #ccc;
|
|
48
|
-
margin-right: 1.5rem;
|
|
49
|
-
padding-right: 1rem;
|
|
50
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) Tiny Technologies, Inc. All rights reserved.
|
|
3
|
-
* Licensed under the LGPL or a commercial license.
|
|
4
|
-
* For LGPL see License.txt in the project root for license information.
|
|
5
|
-
* For commercial licenses see https://www.tiny.cloud/
|
|
6
|
-
*/
|
|
7
|
-
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem auto;max-width:900px}table{border-collapse:collapse}table td,table th{border:1px solid #ccc;padding:.4rem}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}
|
|
8
|
-
/*# sourceMappingURL=content.min.css.map */
|