@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,765 +0,0 @@
|
|
|
1
|
-
(self["webpackChunk_zextras_carbonio_shell_ui"] = self["webpackChunk_zextras_carbonio_shell_ui"] || []).push([["vendors-node_modules_date-fns_locale_vi_index_js"],{
|
|
2
|
-
|
|
3
|
-
/***/ "./node_modules/date-fns/locale/_lib/buildFormatLongFn/index.js":
|
|
4
|
-
/*!**********************************************************************!*\
|
|
5
|
-
!*** ./node_modules/date-fns/locale/_lib/buildFormatLongFn/index.js ***!
|
|
6
|
-
\**********************************************************************/
|
|
7
|
-
/***/ ((module, exports) => {
|
|
8
|
-
|
|
9
|
-
"use strict";
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
Object.defineProperty(exports, "__esModule", ({
|
|
13
|
-
value: true
|
|
14
|
-
}));
|
|
15
|
-
exports["default"] = buildFormatLongFn;
|
|
16
|
-
function buildFormatLongFn(args) {
|
|
17
|
-
return function () {
|
|
18
|
-
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
19
|
-
// TODO: Remove String()
|
|
20
|
-
var width = options.width ? String(options.width) : args.defaultWidth;
|
|
21
|
-
var format = args.formats[width] || args.formats[args.defaultWidth];
|
|
22
|
-
return format;
|
|
23
|
-
};
|
|
24
|
-
}
|
|
25
|
-
module.exports = exports.default;
|
|
26
|
-
void function register() { /* react-hot-loader/webpack */ var reactHotLoader = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default : undefined; if (!reactHotLoader) { return; } /* eslint-disable camelcase, no-undef */ var webpackExports = typeof __webpack_exports__ !== 'undefined' ? __webpack_exports__ : exports; /* eslint-enable camelcase, no-undef */ if (!webpackExports) { return; } if (typeof webpackExports === 'function') { reactHotLoader.register(webpackExports, 'module.exports', "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/_lib/buildFormatLongFn/index.js"); return; } /* eslint-disable no-restricted-syntax */ for (var key in webpackExports) { /* eslint-enable no-restricted-syntax */ if (!Object.prototype.hasOwnProperty.call(webpackExports, key)) { continue; } var namedExport = void 0; try { namedExport = webpackExports[key]; } catch (err) { continue; } reactHotLoader.register(namedExport, key, "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/_lib/buildFormatLongFn/index.js"); } }();
|
|
27
|
-
|
|
28
|
-
/***/ }),
|
|
29
|
-
|
|
30
|
-
/***/ "./node_modules/date-fns/locale/_lib/buildLocalizeFn/index.js":
|
|
31
|
-
/*!********************************************************************!*\
|
|
32
|
-
!*** ./node_modules/date-fns/locale/_lib/buildLocalizeFn/index.js ***!
|
|
33
|
-
\********************************************************************/
|
|
34
|
-
/***/ ((module, exports) => {
|
|
35
|
-
|
|
36
|
-
"use strict";
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
Object.defineProperty(exports, "__esModule", ({
|
|
40
|
-
value: true
|
|
41
|
-
}));
|
|
42
|
-
exports["default"] = buildLocalizeFn;
|
|
43
|
-
function buildLocalizeFn(args) {
|
|
44
|
-
return function (dirtyIndex, options) {
|
|
45
|
-
var context = options !== null && options !== void 0 && options.context ? String(options.context) : 'standalone';
|
|
46
|
-
var valuesArray;
|
|
47
|
-
if (context === 'formatting' && args.formattingValues) {
|
|
48
|
-
var defaultWidth = args.defaultFormattingWidth || args.defaultWidth;
|
|
49
|
-
var width = options !== null && options !== void 0 && options.width ? String(options.width) : defaultWidth;
|
|
50
|
-
valuesArray = args.formattingValues[width] || args.formattingValues[defaultWidth];
|
|
51
|
-
} else {
|
|
52
|
-
var _defaultWidth = args.defaultWidth;
|
|
53
|
-
var _width = options !== null && options !== void 0 && options.width ? String(options.width) : args.defaultWidth;
|
|
54
|
-
valuesArray = args.values[_width] || args.values[_defaultWidth];
|
|
55
|
-
}
|
|
56
|
-
var index = args.argumentCallback ? args.argumentCallback(dirtyIndex) : dirtyIndex;
|
|
57
|
-
// @ts-ignore: For some reason TypeScript just don't want to match it, no matter how hard we try. I challenge you to try to remove it!
|
|
58
|
-
return valuesArray[index];
|
|
59
|
-
};
|
|
60
|
-
}
|
|
61
|
-
module.exports = exports.default;
|
|
62
|
-
void function register() { /* react-hot-loader/webpack */ var reactHotLoader = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default : undefined; if (!reactHotLoader) { return; } /* eslint-disable camelcase, no-undef */ var webpackExports = typeof __webpack_exports__ !== 'undefined' ? __webpack_exports__ : exports; /* eslint-enable camelcase, no-undef */ if (!webpackExports) { return; } if (typeof webpackExports === 'function') { reactHotLoader.register(webpackExports, 'module.exports', "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/_lib/buildLocalizeFn/index.js"); return; } /* eslint-disable no-restricted-syntax */ for (var key in webpackExports) { /* eslint-enable no-restricted-syntax */ if (!Object.prototype.hasOwnProperty.call(webpackExports, key)) { continue; } var namedExport = void 0; try { namedExport = webpackExports[key]; } catch (err) { continue; } reactHotLoader.register(namedExport, key, "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/_lib/buildLocalizeFn/index.js"); } }();
|
|
63
|
-
|
|
64
|
-
/***/ }),
|
|
65
|
-
|
|
66
|
-
/***/ "./node_modules/date-fns/locale/_lib/buildMatchFn/index.js":
|
|
67
|
-
/*!*****************************************************************!*\
|
|
68
|
-
!*** ./node_modules/date-fns/locale/_lib/buildMatchFn/index.js ***!
|
|
69
|
-
\*****************************************************************/
|
|
70
|
-
/***/ ((module, exports) => {
|
|
71
|
-
|
|
72
|
-
"use strict";
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
Object.defineProperty(exports, "__esModule", ({
|
|
76
|
-
value: true
|
|
77
|
-
}));
|
|
78
|
-
exports["default"] = buildMatchFn;
|
|
79
|
-
function buildMatchFn(args) {
|
|
80
|
-
return function (string) {
|
|
81
|
-
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
82
|
-
var width = options.width;
|
|
83
|
-
var matchPattern = width && args.matchPatterns[width] || args.matchPatterns[args.defaultMatchWidth];
|
|
84
|
-
var matchResult = string.match(matchPattern);
|
|
85
|
-
if (!matchResult) {
|
|
86
|
-
return null;
|
|
87
|
-
}
|
|
88
|
-
var matchedString = matchResult[0];
|
|
89
|
-
var parsePatterns = width && args.parsePatterns[width] || args.parsePatterns[args.defaultParseWidth];
|
|
90
|
-
var key = Array.isArray(parsePatterns) ? findIndex(parsePatterns, function (pattern) {
|
|
91
|
-
return pattern.test(matchedString);
|
|
92
|
-
}) : findKey(parsePatterns, function (pattern) {
|
|
93
|
-
return pattern.test(matchedString);
|
|
94
|
-
});
|
|
95
|
-
var value;
|
|
96
|
-
value = args.valueCallback ? args.valueCallback(key) : key;
|
|
97
|
-
value = options.valueCallback ? options.valueCallback(value) : value;
|
|
98
|
-
var rest = string.slice(matchedString.length);
|
|
99
|
-
return {
|
|
100
|
-
value: value,
|
|
101
|
-
rest: rest
|
|
102
|
-
};
|
|
103
|
-
};
|
|
104
|
-
}
|
|
105
|
-
function findKey(object, predicate) {
|
|
106
|
-
for (var key in object) {
|
|
107
|
-
if (object.hasOwnProperty(key) && predicate(object[key])) {
|
|
108
|
-
return key;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
return undefined;
|
|
112
|
-
}
|
|
113
|
-
function findIndex(array, predicate) {
|
|
114
|
-
for (var key = 0; key < array.length; key++) {
|
|
115
|
-
if (predicate(array[key])) {
|
|
116
|
-
return key;
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
return undefined;
|
|
120
|
-
}
|
|
121
|
-
module.exports = exports.default;
|
|
122
|
-
void function register() { /* react-hot-loader/webpack */ var reactHotLoader = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default : undefined; if (!reactHotLoader) { return; } /* eslint-disable camelcase, no-undef */ var webpackExports = typeof __webpack_exports__ !== 'undefined' ? __webpack_exports__ : exports; /* eslint-enable camelcase, no-undef */ if (!webpackExports) { return; } if (typeof webpackExports === 'function') { reactHotLoader.register(webpackExports, 'module.exports', "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/_lib/buildMatchFn/index.js"); return; } /* eslint-disable no-restricted-syntax */ for (var key in webpackExports) { /* eslint-enable no-restricted-syntax */ if (!Object.prototype.hasOwnProperty.call(webpackExports, key)) { continue; } var namedExport = void 0; try { namedExport = webpackExports[key]; } catch (err) { continue; } reactHotLoader.register(namedExport, key, "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/_lib/buildMatchFn/index.js"); } }();
|
|
123
|
-
|
|
124
|
-
/***/ }),
|
|
125
|
-
|
|
126
|
-
/***/ "./node_modules/date-fns/locale/_lib/buildMatchPatternFn/index.js":
|
|
127
|
-
/*!************************************************************************!*\
|
|
128
|
-
!*** ./node_modules/date-fns/locale/_lib/buildMatchPatternFn/index.js ***!
|
|
129
|
-
\************************************************************************/
|
|
130
|
-
/***/ ((module, exports) => {
|
|
131
|
-
|
|
132
|
-
"use strict";
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
Object.defineProperty(exports, "__esModule", ({
|
|
136
|
-
value: true
|
|
137
|
-
}));
|
|
138
|
-
exports["default"] = buildMatchPatternFn;
|
|
139
|
-
function buildMatchPatternFn(args) {
|
|
140
|
-
return function (string) {
|
|
141
|
-
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
142
|
-
var matchResult = string.match(args.matchPattern);
|
|
143
|
-
if (!matchResult) return null;
|
|
144
|
-
var matchedString = matchResult[0];
|
|
145
|
-
var parseResult = string.match(args.parsePattern);
|
|
146
|
-
if (!parseResult) return null;
|
|
147
|
-
var value = args.valueCallback ? args.valueCallback(parseResult[0]) : parseResult[0];
|
|
148
|
-
value = options.valueCallback ? options.valueCallback(value) : value;
|
|
149
|
-
var rest = string.slice(matchedString.length);
|
|
150
|
-
return {
|
|
151
|
-
value: value,
|
|
152
|
-
rest: rest
|
|
153
|
-
};
|
|
154
|
-
};
|
|
155
|
-
}
|
|
156
|
-
module.exports = exports.default;
|
|
157
|
-
void function register() { /* react-hot-loader/webpack */ var reactHotLoader = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default : undefined; if (!reactHotLoader) { return; } /* eslint-disable camelcase, no-undef */ var webpackExports = typeof __webpack_exports__ !== 'undefined' ? __webpack_exports__ : exports; /* eslint-enable camelcase, no-undef */ if (!webpackExports) { return; } if (typeof webpackExports === 'function') { reactHotLoader.register(webpackExports, 'module.exports', "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/_lib/buildMatchPatternFn/index.js"); return; } /* eslint-disable no-restricted-syntax */ for (var key in webpackExports) { /* eslint-enable no-restricted-syntax */ if (!Object.prototype.hasOwnProperty.call(webpackExports, key)) { continue; } var namedExport = void 0; try { namedExport = webpackExports[key]; } catch (err) { continue; } reactHotLoader.register(namedExport, key, "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/_lib/buildMatchPatternFn/index.js"); } }();
|
|
158
|
-
|
|
159
|
-
/***/ }),
|
|
160
|
-
|
|
161
|
-
/***/ "./node_modules/date-fns/locale/vi/_lib/formatDistance/index.js":
|
|
162
|
-
/*!**********************************************************************!*\
|
|
163
|
-
!*** ./node_modules/date-fns/locale/vi/_lib/formatDistance/index.js ***!
|
|
164
|
-
\**********************************************************************/
|
|
165
|
-
/***/ ((module, exports) => {
|
|
166
|
-
|
|
167
|
-
"use strict";
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
Object.defineProperty(exports, "__esModule", ({
|
|
171
|
-
value: true
|
|
172
|
-
}));
|
|
173
|
-
exports["default"] = void 0;
|
|
174
|
-
var formatDistanceLocale = {
|
|
175
|
-
lessThanXSeconds: {
|
|
176
|
-
one: 'dưới 1 giây',
|
|
177
|
-
other: 'dưới {{count}} giây'
|
|
178
|
-
},
|
|
179
|
-
xSeconds: {
|
|
180
|
-
one: '1 giây',
|
|
181
|
-
other: '{{count}} giây'
|
|
182
|
-
},
|
|
183
|
-
halfAMinute: 'nửa phút',
|
|
184
|
-
lessThanXMinutes: {
|
|
185
|
-
one: 'dưới 1 phút',
|
|
186
|
-
other: 'dưới {{count}} phút'
|
|
187
|
-
},
|
|
188
|
-
xMinutes: {
|
|
189
|
-
one: '1 phút',
|
|
190
|
-
other: '{{count}} phút'
|
|
191
|
-
},
|
|
192
|
-
aboutXHours: {
|
|
193
|
-
one: 'khoảng 1 giờ',
|
|
194
|
-
other: 'khoảng {{count}} giờ'
|
|
195
|
-
},
|
|
196
|
-
xHours: {
|
|
197
|
-
one: '1 giờ',
|
|
198
|
-
other: '{{count}} giờ'
|
|
199
|
-
},
|
|
200
|
-
xDays: {
|
|
201
|
-
one: '1 ngày',
|
|
202
|
-
other: '{{count}} ngày'
|
|
203
|
-
},
|
|
204
|
-
aboutXWeeks: {
|
|
205
|
-
one: 'khoảng 1 tuần',
|
|
206
|
-
other: 'khoảng {{count}} tuần'
|
|
207
|
-
},
|
|
208
|
-
xWeeks: {
|
|
209
|
-
one: '1 tuần',
|
|
210
|
-
other: '{{count}} tuần'
|
|
211
|
-
},
|
|
212
|
-
aboutXMonths: {
|
|
213
|
-
one: 'khoảng 1 tháng',
|
|
214
|
-
other: 'khoảng {{count}} tháng'
|
|
215
|
-
},
|
|
216
|
-
xMonths: {
|
|
217
|
-
one: '1 tháng',
|
|
218
|
-
other: '{{count}} tháng'
|
|
219
|
-
},
|
|
220
|
-
aboutXYears: {
|
|
221
|
-
one: 'khoảng 1 năm',
|
|
222
|
-
other: 'khoảng {{count}} năm'
|
|
223
|
-
},
|
|
224
|
-
xYears: {
|
|
225
|
-
one: '1 năm',
|
|
226
|
-
other: '{{count}} năm'
|
|
227
|
-
},
|
|
228
|
-
overXYears: {
|
|
229
|
-
one: 'hơn 1 năm',
|
|
230
|
-
other: 'hơn {{count}} năm'
|
|
231
|
-
},
|
|
232
|
-
almostXYears: {
|
|
233
|
-
one: 'gần 1 năm',
|
|
234
|
-
other: 'gần {{count}} năm'
|
|
235
|
-
}
|
|
236
|
-
};
|
|
237
|
-
var formatDistance = function formatDistance(token, count, options) {
|
|
238
|
-
var result;
|
|
239
|
-
var tokenValue = formatDistanceLocale[token];
|
|
240
|
-
if (typeof tokenValue === 'string') {
|
|
241
|
-
result = tokenValue;
|
|
242
|
-
} else if (count === 1) {
|
|
243
|
-
result = tokenValue.one;
|
|
244
|
-
} else {
|
|
245
|
-
result = tokenValue.other.replace('{{count}}', String(count));
|
|
246
|
-
}
|
|
247
|
-
if (options !== null && options !== void 0 && options.addSuffix) {
|
|
248
|
-
if (options.comparison && options.comparison > 0) {
|
|
249
|
-
return result + ' nữa';
|
|
250
|
-
} else {
|
|
251
|
-
return result + ' trước';
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
return result;
|
|
255
|
-
};
|
|
256
|
-
var _default = formatDistance;
|
|
257
|
-
exports["default"] = _default;
|
|
258
|
-
module.exports = exports.default;
|
|
259
|
-
void function register() { /* react-hot-loader/webpack */ var reactHotLoader = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default : undefined; if (!reactHotLoader) { return; } /* eslint-disable camelcase, no-undef */ var webpackExports = typeof __webpack_exports__ !== 'undefined' ? __webpack_exports__ : exports; /* eslint-enable camelcase, no-undef */ if (!webpackExports) { return; } if (typeof webpackExports === 'function') { reactHotLoader.register(webpackExports, 'module.exports', "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/vi/_lib/formatDistance/index.js"); return; } /* eslint-disable no-restricted-syntax */ for (var key in webpackExports) { /* eslint-enable no-restricted-syntax */ if (!Object.prototype.hasOwnProperty.call(webpackExports, key)) { continue; } var namedExport = void 0; try { namedExport = webpackExports[key]; } catch (err) { continue; } reactHotLoader.register(namedExport, key, "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/vi/_lib/formatDistance/index.js"); } }();
|
|
260
|
-
|
|
261
|
-
/***/ }),
|
|
262
|
-
|
|
263
|
-
/***/ "./node_modules/date-fns/locale/vi/_lib/formatLong/index.js":
|
|
264
|
-
/*!******************************************************************!*\
|
|
265
|
-
!*** ./node_modules/date-fns/locale/vi/_lib/formatLong/index.js ***!
|
|
266
|
-
\******************************************************************/
|
|
267
|
-
/***/ ((module, exports, __webpack_require__) => {
|
|
268
|
-
|
|
269
|
-
"use strict";
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
var _interopRequireDefault = (__webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "./node_modules/@babel/runtime/helpers/interopRequireDefault.js")["default"]);
|
|
273
|
-
Object.defineProperty(exports, "__esModule", ({
|
|
274
|
-
value: true
|
|
275
|
-
}));
|
|
276
|
-
exports["default"] = void 0;
|
|
277
|
-
var _index = _interopRequireDefault(__webpack_require__(/*! ../../../_lib/buildFormatLongFn/index.js */ "./node_modules/date-fns/locale/_lib/buildFormatLongFn/index.js"));
|
|
278
|
-
var dateFormats = {
|
|
279
|
-
// thứ Sáu, ngày 25 tháng 08 năm 2017
|
|
280
|
-
full: "EEEE, 'ngày' d MMMM 'năm' y",
|
|
281
|
-
// ngày 25 tháng 08 năm 2017
|
|
282
|
-
long: "'ngày' d MMMM 'năm' y",
|
|
283
|
-
// 25 thg 08 năm 2017
|
|
284
|
-
medium: "d MMM 'năm' y",
|
|
285
|
-
// 25/08/2017
|
|
286
|
-
short: 'dd/MM/y'
|
|
287
|
-
};
|
|
288
|
-
var timeFormats = {
|
|
289
|
-
full: 'HH:mm:ss zzzz',
|
|
290
|
-
long: 'HH:mm:ss z',
|
|
291
|
-
medium: 'HH:mm:ss',
|
|
292
|
-
short: 'HH:mm'
|
|
293
|
-
};
|
|
294
|
-
var dateTimeFormats = {
|
|
295
|
-
// thứ Sáu, ngày 25 tháng 08 năm 2017 23:25:59
|
|
296
|
-
full: '{{date}} {{time}}',
|
|
297
|
-
// ngày 25 tháng 08 năm 2017 23:25
|
|
298
|
-
long: '{{date}} {{time}}',
|
|
299
|
-
medium: '{{date}} {{time}}',
|
|
300
|
-
short: '{{date}} {{time}}'
|
|
301
|
-
};
|
|
302
|
-
var formatLong = {
|
|
303
|
-
date: (0, _index.default)({
|
|
304
|
-
formats: dateFormats,
|
|
305
|
-
defaultWidth: 'full'
|
|
306
|
-
}),
|
|
307
|
-
time: (0, _index.default)({
|
|
308
|
-
formats: timeFormats,
|
|
309
|
-
defaultWidth: 'full'
|
|
310
|
-
}),
|
|
311
|
-
dateTime: (0, _index.default)({
|
|
312
|
-
formats: dateTimeFormats,
|
|
313
|
-
defaultWidth: 'full'
|
|
314
|
-
})
|
|
315
|
-
};
|
|
316
|
-
var _default = formatLong;
|
|
317
|
-
exports["default"] = _default;
|
|
318
|
-
module.exports = exports.default;
|
|
319
|
-
void function register() { /* react-hot-loader/webpack */ var reactHotLoader = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default : undefined; if (!reactHotLoader) { return; } /* eslint-disable camelcase, no-undef */ var webpackExports = typeof __webpack_exports__ !== 'undefined' ? __webpack_exports__ : exports; /* eslint-enable camelcase, no-undef */ if (!webpackExports) { return; } if (typeof webpackExports === 'function') { reactHotLoader.register(webpackExports, 'module.exports', "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/vi/_lib/formatLong/index.js"); return; } /* eslint-disable no-restricted-syntax */ for (var key in webpackExports) { /* eslint-enable no-restricted-syntax */ if (!Object.prototype.hasOwnProperty.call(webpackExports, key)) { continue; } var namedExport = void 0; try { namedExport = webpackExports[key]; } catch (err) { continue; } reactHotLoader.register(namedExport, key, "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/vi/_lib/formatLong/index.js"); } }();
|
|
320
|
-
|
|
321
|
-
/***/ }),
|
|
322
|
-
|
|
323
|
-
/***/ "./node_modules/date-fns/locale/vi/_lib/formatRelative/index.js":
|
|
324
|
-
/*!**********************************************************************!*\
|
|
325
|
-
!*** ./node_modules/date-fns/locale/vi/_lib/formatRelative/index.js ***!
|
|
326
|
-
\**********************************************************************/
|
|
327
|
-
/***/ ((module, exports) => {
|
|
328
|
-
|
|
329
|
-
"use strict";
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
Object.defineProperty(exports, "__esModule", ({
|
|
333
|
-
value: true
|
|
334
|
-
}));
|
|
335
|
-
exports["default"] = void 0;
|
|
336
|
-
var formatRelativeLocale = {
|
|
337
|
-
lastWeek: "eeee 'tuần trước vào lúc' p",
|
|
338
|
-
yesterday: "'hôm qua vào lúc' p",
|
|
339
|
-
today: "'hôm nay vào lúc' p",
|
|
340
|
-
tomorrow: "'ngày mai vào lúc' p",
|
|
341
|
-
nextWeek: "eeee 'tới vào lúc' p",
|
|
342
|
-
other: 'P'
|
|
343
|
-
};
|
|
344
|
-
var formatRelative = function formatRelative(token, _date, _baseDate, _options) {
|
|
345
|
-
return formatRelativeLocale[token];
|
|
346
|
-
};
|
|
347
|
-
var _default = formatRelative;
|
|
348
|
-
exports["default"] = _default;
|
|
349
|
-
module.exports = exports.default;
|
|
350
|
-
void function register() { /* react-hot-loader/webpack */ var reactHotLoader = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default : undefined; if (!reactHotLoader) { return; } /* eslint-disable camelcase, no-undef */ var webpackExports = typeof __webpack_exports__ !== 'undefined' ? __webpack_exports__ : exports; /* eslint-enable camelcase, no-undef */ if (!webpackExports) { return; } if (typeof webpackExports === 'function') { reactHotLoader.register(webpackExports, 'module.exports', "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/vi/_lib/formatRelative/index.js"); return; } /* eslint-disable no-restricted-syntax */ for (var key in webpackExports) { /* eslint-enable no-restricted-syntax */ if (!Object.prototype.hasOwnProperty.call(webpackExports, key)) { continue; } var namedExport = void 0; try { namedExport = webpackExports[key]; } catch (err) { continue; } reactHotLoader.register(namedExport, key, "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/vi/_lib/formatRelative/index.js"); } }();
|
|
351
|
-
|
|
352
|
-
/***/ }),
|
|
353
|
-
|
|
354
|
-
/***/ "./node_modules/date-fns/locale/vi/_lib/localize/index.js":
|
|
355
|
-
/*!****************************************************************!*\
|
|
356
|
-
!*** ./node_modules/date-fns/locale/vi/_lib/localize/index.js ***!
|
|
357
|
-
\****************************************************************/
|
|
358
|
-
/***/ ((module, exports, __webpack_require__) => {
|
|
359
|
-
|
|
360
|
-
"use strict";
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
var _interopRequireDefault = (__webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "./node_modules/@babel/runtime/helpers/interopRequireDefault.js")["default"]);
|
|
364
|
-
Object.defineProperty(exports, "__esModule", ({
|
|
365
|
-
value: true
|
|
366
|
-
}));
|
|
367
|
-
exports["default"] = void 0;
|
|
368
|
-
var _index = _interopRequireDefault(__webpack_require__(/*! ../../../_lib/buildLocalizeFn/index.js */ "./node_modules/date-fns/locale/_lib/buildLocalizeFn/index.js"));
|
|
369
|
-
// Vietnamese locale reference: http://www.localeplanet.com/icu/vi-VN/index.html
|
|
370
|
-
// Capitalization reference: http://hcmup.edu.vn/index.php?option=com_content&view=article&id=4106%3Avit-hoa-trong-vn-bn-hanh-chinh&catid=2345%3Atham-kho&Itemid=4103&lang=vi&site=134
|
|
371
|
-
var eraValues = {
|
|
372
|
-
narrow: ['TCN', 'SCN'],
|
|
373
|
-
abbreviated: ['trước CN', 'sau CN'],
|
|
374
|
-
wide: ['trước Công Nguyên', 'sau Công Nguyên']
|
|
375
|
-
};
|
|
376
|
-
var quarterValues = {
|
|
377
|
-
narrow: ['1', '2', '3', '4'],
|
|
378
|
-
abbreviated: ['Q1', 'Q2', 'Q3', 'Q4'],
|
|
379
|
-
wide: ['Quý 1', 'Quý 2', 'Quý 3', 'Quý 4']
|
|
380
|
-
};
|
|
381
|
-
var formattingQuarterValues = {
|
|
382
|
-
narrow: ['1', '2', '3', '4'],
|
|
383
|
-
abbreviated: ['Q1', 'Q2', 'Q3', 'Q4'],
|
|
384
|
-
// I notice many news outlet use this "quý II/2018"
|
|
385
|
-
wide: ['quý I', 'quý II', 'quý III', 'quý IV']
|
|
386
|
-
};
|
|
387
|
-
|
|
388
|
-
// Note: in English, the names of days of the week and months are capitalized.
|
|
389
|
-
// If you are making a new locale based on this one, check if the same is true for the language you're working on.
|
|
390
|
-
// Generally, formatted dates should look like they are in the middle of a sentence,
|
|
391
|
-
// e.g. in Spanish language the weekdays and months should be in the lowercase.
|
|
392
|
-
var monthValues = {
|
|
393
|
-
narrow: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'],
|
|
394
|
-
abbreviated: ['Thg 1', 'Thg 2', 'Thg 3', 'Thg 4', 'Thg 5', 'Thg 6', 'Thg 7', 'Thg 8', 'Thg 9', 'Thg 10', 'Thg 11', 'Thg 12'],
|
|
395
|
-
wide: ['Tháng Một', 'Tháng Hai', 'Tháng Ba', 'Tháng Tư', 'Tháng Năm', 'Tháng Sáu', 'Tháng Bảy', 'Tháng Tám', 'Tháng Chín', 'Tháng Mười', 'Tháng Mười Một', 'Tháng Mười Hai']
|
|
396
|
-
};
|
|
397
|
-
// In Vietnamese date formatting, month number less than 10 expected to have leading zero
|
|
398
|
-
var formattingMonthValues = {
|
|
399
|
-
narrow: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'],
|
|
400
|
-
abbreviated: ['thg 1', 'thg 2', 'thg 3', 'thg 4', 'thg 5', 'thg 6', 'thg 7', 'thg 8', 'thg 9', 'thg 10', 'thg 11', 'thg 12'],
|
|
401
|
-
wide: ['tháng 01', 'tháng 02', 'tháng 03', 'tháng 04', 'tháng 05', 'tháng 06', 'tháng 07', 'tháng 08', 'tháng 09', 'tháng 10', 'tháng 11', 'tháng 12']
|
|
402
|
-
};
|
|
403
|
-
var dayValues = {
|
|
404
|
-
narrow: ['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'],
|
|
405
|
-
short: ['CN', 'Th 2', 'Th 3', 'Th 4', 'Th 5', 'Th 6', 'Th 7'],
|
|
406
|
-
abbreviated: ['CN', 'Thứ 2', 'Thứ 3', 'Thứ 4', 'Thứ 5', 'Thứ 6', 'Thứ 7'],
|
|
407
|
-
wide: ['Chủ Nhật', 'Thứ Hai', 'Thứ Ba', 'Thứ Tư', 'Thứ Năm', 'Thứ Sáu', 'Thứ Bảy']
|
|
408
|
-
};
|
|
409
|
-
|
|
410
|
-
// Vietnamese are used to AM/PM borrowing from English, hence `narrow` and
|
|
411
|
-
// `abbreviated` are just like English but I'm leaving the `wide`
|
|
412
|
-
// format being localized with abbreviations found in some systems (SÁng / CHiều);
|
|
413
|
-
// however, personally, I don't think `Chiều` sounds appropriate for `PM`
|
|
414
|
-
var dayPeriodValues = {
|
|
415
|
-
// narrow date period is extremely rare in Vietnamese
|
|
416
|
-
// I used abbreviated form for noon, morning and afternoon
|
|
417
|
-
// which are regconizable by Vietnamese, others cannot be any shorter
|
|
418
|
-
narrow: {
|
|
419
|
-
am: 'am',
|
|
420
|
-
pm: 'pm',
|
|
421
|
-
midnight: 'nửa đêm',
|
|
422
|
-
noon: 'tr',
|
|
423
|
-
morning: 'sg',
|
|
424
|
-
afternoon: 'ch',
|
|
425
|
-
evening: 'tối',
|
|
426
|
-
night: 'đêm'
|
|
427
|
-
},
|
|
428
|
-
abbreviated: {
|
|
429
|
-
am: 'AM',
|
|
430
|
-
pm: 'PM',
|
|
431
|
-
midnight: 'nửa đêm',
|
|
432
|
-
noon: 'trưa',
|
|
433
|
-
morning: 'sáng',
|
|
434
|
-
afternoon: 'chiều',
|
|
435
|
-
evening: 'tối',
|
|
436
|
-
night: 'đêm'
|
|
437
|
-
},
|
|
438
|
-
wide: {
|
|
439
|
-
am: 'SA',
|
|
440
|
-
pm: 'CH',
|
|
441
|
-
midnight: 'nửa đêm',
|
|
442
|
-
noon: 'trưa',
|
|
443
|
-
morning: 'sáng',
|
|
444
|
-
afternoon: 'chiều',
|
|
445
|
-
evening: 'tối',
|
|
446
|
-
night: 'đêm'
|
|
447
|
-
}
|
|
448
|
-
};
|
|
449
|
-
var formattingDayPeriodValues = {
|
|
450
|
-
narrow: {
|
|
451
|
-
am: 'am',
|
|
452
|
-
pm: 'pm',
|
|
453
|
-
midnight: 'nửa đêm',
|
|
454
|
-
noon: 'tr',
|
|
455
|
-
morning: 'sg',
|
|
456
|
-
afternoon: 'ch',
|
|
457
|
-
evening: 'tối',
|
|
458
|
-
night: 'đêm'
|
|
459
|
-
},
|
|
460
|
-
abbreviated: {
|
|
461
|
-
am: 'AM',
|
|
462
|
-
pm: 'PM',
|
|
463
|
-
midnight: 'nửa đêm',
|
|
464
|
-
noon: 'trưa',
|
|
465
|
-
morning: 'sáng',
|
|
466
|
-
afternoon: 'chiều',
|
|
467
|
-
evening: 'tối',
|
|
468
|
-
night: 'đêm'
|
|
469
|
-
},
|
|
470
|
-
wide: {
|
|
471
|
-
am: 'SA',
|
|
472
|
-
pm: 'CH',
|
|
473
|
-
midnight: 'nửa đêm',
|
|
474
|
-
noon: 'giữa trưa',
|
|
475
|
-
morning: 'vào buổi sáng',
|
|
476
|
-
afternoon: 'vào buổi chiều',
|
|
477
|
-
evening: 'vào buổi tối',
|
|
478
|
-
night: 'vào ban đêm'
|
|
479
|
-
}
|
|
480
|
-
};
|
|
481
|
-
var ordinalNumber = function ordinalNumber(dirtyNumber, options) {
|
|
482
|
-
var number = Number(dirtyNumber);
|
|
483
|
-
var unit = options === null || options === void 0 ? void 0 : options.unit;
|
|
484
|
-
if (unit === 'quarter') {
|
|
485
|
-
// many news outlets use "quý I"...
|
|
486
|
-
switch (number) {
|
|
487
|
-
case 1:
|
|
488
|
-
return 'I';
|
|
489
|
-
case 2:
|
|
490
|
-
return 'II';
|
|
491
|
-
case 3:
|
|
492
|
-
return 'III';
|
|
493
|
-
case 4:
|
|
494
|
-
return 'IV';
|
|
495
|
-
}
|
|
496
|
-
} else if (unit === 'day') {
|
|
497
|
-
// day of week in Vietnamese has ordinal number meaning,
|
|
498
|
-
// so we should use them, else it'll sound weird
|
|
499
|
-
switch (number) {
|
|
500
|
-
case 1:
|
|
501
|
-
return 'thứ 2';
|
|
502
|
-
// meaning 2nd day but it's the first day of the week :D
|
|
503
|
-
case 2:
|
|
504
|
-
return 'thứ 3';
|
|
505
|
-
// meaning 3rd day
|
|
506
|
-
case 3:
|
|
507
|
-
return 'thứ 4';
|
|
508
|
-
// meaning 4th day and so on
|
|
509
|
-
case 4:
|
|
510
|
-
return 'thứ 5';
|
|
511
|
-
case 5:
|
|
512
|
-
return 'thứ 6';
|
|
513
|
-
case 6:
|
|
514
|
-
return 'thứ 7';
|
|
515
|
-
case 7:
|
|
516
|
-
return 'chủ nhật';
|
|
517
|
-
// meaning Sunday, there's no 8th day :D
|
|
518
|
-
}
|
|
519
|
-
} else if (unit === 'week') {
|
|
520
|
-
if (number === 1) {
|
|
521
|
-
return 'thứ nhất';
|
|
522
|
-
} else {
|
|
523
|
-
return 'thứ ' + number;
|
|
524
|
-
}
|
|
525
|
-
} else if (unit === 'dayOfYear') {
|
|
526
|
-
if (number === 1) {
|
|
527
|
-
return 'đầu tiên';
|
|
528
|
-
} else {
|
|
529
|
-
return 'thứ ' + number;
|
|
530
|
-
}
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
// there are no different forms of ordinal numbers in Vietnamese
|
|
534
|
-
return String(number);
|
|
535
|
-
};
|
|
536
|
-
var localize = {
|
|
537
|
-
ordinalNumber: ordinalNumber,
|
|
538
|
-
era: (0, _index.default)({
|
|
539
|
-
values: eraValues,
|
|
540
|
-
defaultWidth: 'wide'
|
|
541
|
-
}),
|
|
542
|
-
quarter: (0, _index.default)({
|
|
543
|
-
values: quarterValues,
|
|
544
|
-
defaultWidth: 'wide',
|
|
545
|
-
formattingValues: formattingQuarterValues,
|
|
546
|
-
defaultFormattingWidth: 'wide',
|
|
547
|
-
argumentCallback: function argumentCallback(quarter) {
|
|
548
|
-
return quarter - 1;
|
|
549
|
-
}
|
|
550
|
-
}),
|
|
551
|
-
month: (0, _index.default)({
|
|
552
|
-
values: monthValues,
|
|
553
|
-
defaultWidth: 'wide',
|
|
554
|
-
formattingValues: formattingMonthValues,
|
|
555
|
-
defaultFormattingWidth: 'wide'
|
|
556
|
-
}),
|
|
557
|
-
day: (0, _index.default)({
|
|
558
|
-
values: dayValues,
|
|
559
|
-
defaultWidth: 'wide'
|
|
560
|
-
}),
|
|
561
|
-
dayPeriod: (0, _index.default)({
|
|
562
|
-
values: dayPeriodValues,
|
|
563
|
-
defaultWidth: 'wide',
|
|
564
|
-
formattingValues: formattingDayPeriodValues,
|
|
565
|
-
defaultFormattingWidth: 'wide'
|
|
566
|
-
})
|
|
567
|
-
};
|
|
568
|
-
var _default = localize;
|
|
569
|
-
exports["default"] = _default;
|
|
570
|
-
module.exports = exports.default;
|
|
571
|
-
void function register() { /* react-hot-loader/webpack */ var reactHotLoader = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default : undefined; if (!reactHotLoader) { return; } /* eslint-disable camelcase, no-undef */ var webpackExports = typeof __webpack_exports__ !== 'undefined' ? __webpack_exports__ : exports; /* eslint-enable camelcase, no-undef */ if (!webpackExports) { return; } if (typeof webpackExports === 'function') { reactHotLoader.register(webpackExports, 'module.exports', "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/vi/_lib/localize/index.js"); return; } /* eslint-disable no-restricted-syntax */ for (var key in webpackExports) { /* eslint-enable no-restricted-syntax */ if (!Object.prototype.hasOwnProperty.call(webpackExports, key)) { continue; } var namedExport = void 0; try { namedExport = webpackExports[key]; } catch (err) { continue; } reactHotLoader.register(namedExport, key, "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/vi/_lib/localize/index.js"); } }();
|
|
572
|
-
|
|
573
|
-
/***/ }),
|
|
574
|
-
|
|
575
|
-
/***/ "./node_modules/date-fns/locale/vi/_lib/match/index.js":
|
|
576
|
-
/*!*************************************************************!*\
|
|
577
|
-
!*** ./node_modules/date-fns/locale/vi/_lib/match/index.js ***!
|
|
578
|
-
\*************************************************************/
|
|
579
|
-
/***/ ((module, exports, __webpack_require__) => {
|
|
580
|
-
|
|
581
|
-
"use strict";
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
var _interopRequireDefault = (__webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "./node_modules/@babel/runtime/helpers/interopRequireDefault.js")["default"]);
|
|
585
|
-
Object.defineProperty(exports, "__esModule", ({
|
|
586
|
-
value: true
|
|
587
|
-
}));
|
|
588
|
-
exports["default"] = void 0;
|
|
589
|
-
var _index = _interopRequireDefault(__webpack_require__(/*! ../../../_lib/buildMatchFn/index.js */ "./node_modules/date-fns/locale/_lib/buildMatchFn/index.js"));
|
|
590
|
-
var _index2 = _interopRequireDefault(__webpack_require__(/*! ../../../_lib/buildMatchPatternFn/index.js */ "./node_modules/date-fns/locale/_lib/buildMatchPatternFn/index.js"));
|
|
591
|
-
var matchOrdinalNumberPattern = /^(\d+)/i;
|
|
592
|
-
var parseOrdinalNumberPattern = /\d+/i;
|
|
593
|
-
var matchEraPatterns = {
|
|
594
|
-
narrow: /^(tcn|scn)/i,
|
|
595
|
-
abbreviated: /^(trước CN|sau CN)/i,
|
|
596
|
-
wide: /^(trước Công Nguyên|sau Công Nguyên)/i
|
|
597
|
-
};
|
|
598
|
-
var parseEraPatterns = {
|
|
599
|
-
any: [/^t/i, /^s/i]
|
|
600
|
-
};
|
|
601
|
-
var matchQuarterPatterns = {
|
|
602
|
-
narrow: /^([1234]|i{1,3}v?)/i,
|
|
603
|
-
abbreviated: /^q([1234]|i{1,3}v?)/i,
|
|
604
|
-
wide: /^quý ([1234]|i{1,3}v?)/i
|
|
605
|
-
};
|
|
606
|
-
var parseQuarterPatterns = {
|
|
607
|
-
any: [/(1|i)$/i, /(2|ii)$/i, /(3|iii)$/i, /(4|iv)$/i]
|
|
608
|
-
};
|
|
609
|
-
var matchMonthPatterns = {
|
|
610
|
-
// month number may contain leading 0, 'thg' prefix may have space, underscore or empty before number
|
|
611
|
-
// note the order of '1' since it is a sub-string of '10', so must be lower priority
|
|
612
|
-
narrow: /^(0?[2-9]|10|11|12|0?1)/i,
|
|
613
|
-
// note the order of 'thg 1' since it is sub-string of 'thg 10', so must be lower priority
|
|
614
|
-
abbreviated: /^thg[ _]?(0?[1-9](?!\d)|10|11|12)/i,
|
|
615
|
-
// note the order of 'Mười' since it is sub-string of Mười Một, so must be lower priority
|
|
616
|
-
wide: /^tháng ?(Một|Hai|Ba|Tư|Năm|Sáu|Bảy|Tám|Chín|Mười|Mười ?Một|Mười ?Hai|0?[1-9](?!\d)|10|11|12)/i
|
|
617
|
-
};
|
|
618
|
-
var parseMonthPatterns = {
|
|
619
|
-
narrow: [/0?1$/i, /0?2/i, /3/, /4/, /5/, /6/, /7/, /8/, /9/, /10/, /11/, /12/],
|
|
620
|
-
abbreviated: [/^thg[ _]?0?1(?!\d)/i, /^thg[ _]?0?2/i, /^thg[ _]?0?3/i, /^thg[ _]?0?4/i, /^thg[ _]?0?5/i, /^thg[ _]?0?6/i, /^thg[ _]?0?7/i, /^thg[ _]?0?8/i, /^thg[ _]?0?9/i, /^thg[ _]?10/i, /^thg[ _]?11/i, /^thg[ _]?12/i],
|
|
621
|
-
wide: [/^tháng ?(Một|0?1(?!\d))/i, /^tháng ?(Hai|0?2)/i, /^tháng ?(Ba|0?3)/i, /^tháng ?(Tư|0?4)/i, /^tháng ?(Năm|0?5)/i, /^tháng ?(Sáu|0?6)/i, /^tháng ?(Bảy|0?7)/i, /^tháng ?(Tám|0?8)/i, /^tháng ?(Chín|0?9)/i, /^tháng ?(Mười|10)/i, /^tháng ?(Mười ?Một|11)/i, /^tháng ?(Mười ?Hai|12)/i]
|
|
622
|
-
};
|
|
623
|
-
var matchDayPatterns = {
|
|
624
|
-
narrow: /^(CN|T2|T3|T4|T5|T6|T7)/i,
|
|
625
|
-
short: /^(CN|Th ?2|Th ?3|Th ?4|Th ?5|Th ?6|Th ?7)/i,
|
|
626
|
-
abbreviated: /^(CN|Th ?2|Th ?3|Th ?4|Th ?5|Th ?6|Th ?7)/i,
|
|
627
|
-
wide: /^(Chủ ?Nhật|Chúa ?Nhật|thứ ?Hai|thứ ?Ba|thứ ?Tư|thứ ?Năm|thứ ?Sáu|thứ ?Bảy)/i
|
|
628
|
-
};
|
|
629
|
-
var parseDayPatterns = {
|
|
630
|
-
narrow: [/CN/i, /2/i, /3/i, /4/i, /5/i, /6/i, /7/i],
|
|
631
|
-
short: [/CN/i, /2/i, /3/i, /4/i, /5/i, /6/i, /7/i],
|
|
632
|
-
abbreviated: [/CN/i, /2/i, /3/i, /4/i, /5/i, /6/i, /7/i],
|
|
633
|
-
wide: [/(Chủ|Chúa) ?Nhật/i, /Hai/i, /Ba/i, /Tư/i, /Năm/i, /Sáu/i, /Bảy/i]
|
|
634
|
-
};
|
|
635
|
-
var matchDayPeriodPatterns = {
|
|
636
|
-
narrow: /^(a|p|nửa đêm|trưa|(giờ) (sáng|chiều|tối|đêm))/i,
|
|
637
|
-
abbreviated: /^(am|pm|nửa đêm|trưa|(giờ) (sáng|chiều|tối|đêm))/i,
|
|
638
|
-
wide: /^(ch[^i]*|sa|nửa đêm|trưa|(giờ) (sáng|chiều|tối|đêm))/i
|
|
639
|
-
};
|
|
640
|
-
var parseDayPeriodPatterns = {
|
|
641
|
-
any: {
|
|
642
|
-
am: /^(a|sa)/i,
|
|
643
|
-
pm: /^(p|ch[^i]*)/i,
|
|
644
|
-
midnight: /nửa đêm/i,
|
|
645
|
-
noon: /trưa/i,
|
|
646
|
-
morning: /sáng/i,
|
|
647
|
-
afternoon: /chiều/i,
|
|
648
|
-
evening: /tối/i,
|
|
649
|
-
night: /^đêm/i
|
|
650
|
-
}
|
|
651
|
-
};
|
|
652
|
-
var match = {
|
|
653
|
-
ordinalNumber: (0, _index2.default)({
|
|
654
|
-
matchPattern: matchOrdinalNumberPattern,
|
|
655
|
-
parsePattern: parseOrdinalNumberPattern,
|
|
656
|
-
valueCallback: function valueCallback(value) {
|
|
657
|
-
return parseInt(value, 10);
|
|
658
|
-
}
|
|
659
|
-
}),
|
|
660
|
-
era: (0, _index.default)({
|
|
661
|
-
matchPatterns: matchEraPatterns,
|
|
662
|
-
defaultMatchWidth: 'wide',
|
|
663
|
-
parsePatterns: parseEraPatterns,
|
|
664
|
-
defaultParseWidth: 'any'
|
|
665
|
-
}),
|
|
666
|
-
quarter: (0, _index.default)({
|
|
667
|
-
matchPatterns: matchQuarterPatterns,
|
|
668
|
-
defaultMatchWidth: 'wide',
|
|
669
|
-
parsePatterns: parseQuarterPatterns,
|
|
670
|
-
defaultParseWidth: 'any',
|
|
671
|
-
valueCallback: function valueCallback(index) {
|
|
672
|
-
return index + 1;
|
|
673
|
-
}
|
|
674
|
-
}),
|
|
675
|
-
month: (0, _index.default)({
|
|
676
|
-
matchPatterns: matchMonthPatterns,
|
|
677
|
-
defaultMatchWidth: 'wide',
|
|
678
|
-
parsePatterns: parseMonthPatterns,
|
|
679
|
-
defaultParseWidth: 'wide'
|
|
680
|
-
}),
|
|
681
|
-
day: (0, _index.default)({
|
|
682
|
-
matchPatterns: matchDayPatterns,
|
|
683
|
-
defaultMatchWidth: 'wide',
|
|
684
|
-
parsePatterns: parseDayPatterns,
|
|
685
|
-
defaultParseWidth: 'wide'
|
|
686
|
-
}),
|
|
687
|
-
dayPeriod: (0, _index.default)({
|
|
688
|
-
matchPatterns: matchDayPeriodPatterns,
|
|
689
|
-
defaultMatchWidth: 'wide',
|
|
690
|
-
parsePatterns: parseDayPeriodPatterns,
|
|
691
|
-
defaultParseWidth: 'any'
|
|
692
|
-
})
|
|
693
|
-
};
|
|
694
|
-
var _default = match;
|
|
695
|
-
exports["default"] = _default;
|
|
696
|
-
module.exports = exports.default;
|
|
697
|
-
void function register() { /* react-hot-loader/webpack */ var reactHotLoader = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default : undefined; if (!reactHotLoader) { return; } /* eslint-disable camelcase, no-undef */ var webpackExports = typeof __webpack_exports__ !== 'undefined' ? __webpack_exports__ : exports; /* eslint-enable camelcase, no-undef */ if (!webpackExports) { return; } if (typeof webpackExports === 'function') { reactHotLoader.register(webpackExports, 'module.exports', "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/vi/_lib/match/index.js"); return; } /* eslint-disable no-restricted-syntax */ for (var key in webpackExports) { /* eslint-enable no-restricted-syntax */ if (!Object.prototype.hasOwnProperty.call(webpackExports, key)) { continue; } var namedExport = void 0; try { namedExport = webpackExports[key]; } catch (err) { continue; } reactHotLoader.register(namedExport, key, "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/vi/_lib/match/index.js"); } }();
|
|
698
|
-
|
|
699
|
-
/***/ }),
|
|
700
|
-
|
|
701
|
-
/***/ "./node_modules/date-fns/locale/vi/index.js":
|
|
702
|
-
/*!**************************************************!*\
|
|
703
|
-
!*** ./node_modules/date-fns/locale/vi/index.js ***!
|
|
704
|
-
\**************************************************/
|
|
705
|
-
/***/ ((module, exports, __webpack_require__) => {
|
|
706
|
-
|
|
707
|
-
"use strict";
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
var _interopRequireDefault = (__webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "./node_modules/@babel/runtime/helpers/interopRequireDefault.js")["default"]);
|
|
711
|
-
Object.defineProperty(exports, "__esModule", ({
|
|
712
|
-
value: true
|
|
713
|
-
}));
|
|
714
|
-
exports["default"] = void 0;
|
|
715
|
-
var _index = _interopRequireDefault(__webpack_require__(/*! ./_lib/formatDistance/index.js */ "./node_modules/date-fns/locale/vi/_lib/formatDistance/index.js"));
|
|
716
|
-
var _index2 = _interopRequireDefault(__webpack_require__(/*! ./_lib/formatLong/index.js */ "./node_modules/date-fns/locale/vi/_lib/formatLong/index.js"));
|
|
717
|
-
var _index3 = _interopRequireDefault(__webpack_require__(/*! ./_lib/formatRelative/index.js */ "./node_modules/date-fns/locale/vi/_lib/formatRelative/index.js"));
|
|
718
|
-
var _index4 = _interopRequireDefault(__webpack_require__(/*! ./_lib/localize/index.js */ "./node_modules/date-fns/locale/vi/_lib/localize/index.js"));
|
|
719
|
-
var _index5 = _interopRequireDefault(__webpack_require__(/*! ./_lib/match/index.js */ "./node_modules/date-fns/locale/vi/_lib/match/index.js"));
|
|
720
|
-
/**
|
|
721
|
-
* @type {Locale}
|
|
722
|
-
* @category Locales
|
|
723
|
-
* @summary Vietnamese locale (Vietnam).
|
|
724
|
-
* @language Vietnamese
|
|
725
|
-
* @iso-639-2 vie
|
|
726
|
-
* @author Thanh Tran [@trongthanh]{@link https://github.com/trongthanh}
|
|
727
|
-
* @author Leroy Hopson [@lihop]{@link https://github.com/lihop}
|
|
728
|
-
*/
|
|
729
|
-
var locale = {
|
|
730
|
-
code: 'vi',
|
|
731
|
-
formatDistance: _index.default,
|
|
732
|
-
formatLong: _index2.default,
|
|
733
|
-
formatRelative: _index3.default,
|
|
734
|
-
localize: _index4.default,
|
|
735
|
-
match: _index5.default,
|
|
736
|
-
options: {
|
|
737
|
-
weekStartsOn: 1 /* Monday */,
|
|
738
|
-
firstWeekContainsDate: 1 /* First week of new year contains Jan 1st */
|
|
739
|
-
}
|
|
740
|
-
};
|
|
741
|
-
var _default = locale;
|
|
742
|
-
exports["default"] = _default;
|
|
743
|
-
module.exports = exports.default;
|
|
744
|
-
void function register() { /* react-hot-loader/webpack */ var reactHotLoader = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default : undefined; if (!reactHotLoader) { return; } /* eslint-disable camelcase, no-undef */ var webpackExports = typeof __webpack_exports__ !== 'undefined' ? __webpack_exports__ : exports; /* eslint-enable camelcase, no-undef */ if (!webpackExports) { return; } if (typeof webpackExports === 'function') { reactHotLoader.register(webpackExports, 'module.exports', "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/vi/index.js"); return; } /* eslint-disable no-restricted-syntax */ for (var key in webpackExports) { /* eslint-enable no-restricted-syntax */ if (!Object.prototype.hasOwnProperty.call(webpackExports, key)) { continue; } var namedExport = void 0; try { namedExport = webpackExports[key]; } catch (err) { continue; } reactHotLoader.register(namedExport, key, "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/date-fns/locale/vi/index.js"); } }();
|
|
745
|
-
|
|
746
|
-
/***/ }),
|
|
747
|
-
|
|
748
|
-
/***/ "./node_modules/@babel/runtime/helpers/interopRequireDefault.js":
|
|
749
|
-
/*!**********************************************************************!*\
|
|
750
|
-
!*** ./node_modules/@babel/runtime/helpers/interopRequireDefault.js ***!
|
|
751
|
-
\**********************************************************************/
|
|
752
|
-
/***/ ((module, exports) => {
|
|
753
|
-
|
|
754
|
-
function _interopRequireDefault(obj) {
|
|
755
|
-
return obj && obj.__esModule ? obj : {
|
|
756
|
-
"default": obj
|
|
757
|
-
};
|
|
758
|
-
}
|
|
759
|
-
module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
760
|
-
void function register() { /* react-hot-loader/webpack */ var reactHotLoader = typeof reactHotLoaderGlobal !== 'undefined' ? reactHotLoaderGlobal.default : undefined; if (!reactHotLoader) { return; } /* eslint-disable camelcase, no-undef */ var webpackExports = typeof __webpack_exports__ !== 'undefined' ? __webpack_exports__ : exports; /* eslint-enable camelcase, no-undef */ if (!webpackExports) { return; } if (typeof webpackExports === 'function') { reactHotLoader.register(webpackExports, 'module.exports', "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/@babel/runtime/helpers/interopRequireDefault.js"); return; } /* eslint-disable no-restricted-syntax */ for (var key in webpackExports) { /* eslint-enable no-restricted-syntax */ if (!Object.prototype.hasOwnProperty.call(webpackExports, key)) { continue; } var namedExport = void 0; try { namedExport = webpackExports[key]; } catch (err) { continue; } reactHotLoader.register(namedExport, key, "/tmp/workspace/extras_carbonio-shell-ui_release/node_modules/@babel/runtime/helpers/interopRequireDefault.js"); } }();
|
|
761
|
-
|
|
762
|
-
/***/ })
|
|
763
|
-
|
|
764
|
-
}]);
|
|
765
|
-
//# sourceMappingURL=vendors-node_modules_date-fns_locale_vi_index_js.d02adf1c.chunk.js.map
|