@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,682 +0,0 @@
|
|
|
1
|
-
(self["webpackChunk_zextras_carbonio_shell_ui"] = self["webpackChunk_zextras_carbonio_shell_ui"] || []).push([["vendors-node_modules_date-fns_locale_pt-BR_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/pt-BR/_lib/formatDistance/index.js":
|
|
162
|
-
/*!*************************************************************************!*\
|
|
163
|
-
!*** ./node_modules/date-fns/locale/pt-BR/_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: 'menos de um segundo',
|
|
177
|
-
other: 'menos de {{count}} segundos'
|
|
178
|
-
},
|
|
179
|
-
xSeconds: {
|
|
180
|
-
one: '1 segundo',
|
|
181
|
-
other: '{{count}} segundos'
|
|
182
|
-
},
|
|
183
|
-
halfAMinute: 'meio minuto',
|
|
184
|
-
lessThanXMinutes: {
|
|
185
|
-
one: 'menos de um minuto',
|
|
186
|
-
other: 'menos de {{count}} minutos'
|
|
187
|
-
},
|
|
188
|
-
xMinutes: {
|
|
189
|
-
one: '1 minuto',
|
|
190
|
-
other: '{{count}} minutos'
|
|
191
|
-
},
|
|
192
|
-
aboutXHours: {
|
|
193
|
-
one: 'cerca de 1 hora',
|
|
194
|
-
other: 'cerca de {{count}} horas'
|
|
195
|
-
},
|
|
196
|
-
xHours: {
|
|
197
|
-
one: '1 hora',
|
|
198
|
-
other: '{{count}} horas'
|
|
199
|
-
},
|
|
200
|
-
xDays: {
|
|
201
|
-
one: '1 dia',
|
|
202
|
-
other: '{{count}} dias'
|
|
203
|
-
},
|
|
204
|
-
aboutXWeeks: {
|
|
205
|
-
one: 'cerca de 1 semana',
|
|
206
|
-
other: 'cerca de {{count}} semanas'
|
|
207
|
-
},
|
|
208
|
-
xWeeks: {
|
|
209
|
-
one: '1 semana',
|
|
210
|
-
other: '{{count}} semanas'
|
|
211
|
-
},
|
|
212
|
-
aboutXMonths: {
|
|
213
|
-
one: 'cerca de 1 mês',
|
|
214
|
-
other: 'cerca de {{count}} meses'
|
|
215
|
-
},
|
|
216
|
-
xMonths: {
|
|
217
|
-
one: '1 mês',
|
|
218
|
-
other: '{{count}} meses'
|
|
219
|
-
},
|
|
220
|
-
aboutXYears: {
|
|
221
|
-
one: 'cerca de 1 ano',
|
|
222
|
-
other: 'cerca de {{count}} anos'
|
|
223
|
-
},
|
|
224
|
-
xYears: {
|
|
225
|
-
one: '1 ano',
|
|
226
|
-
other: '{{count}} anos'
|
|
227
|
-
},
|
|
228
|
-
overXYears: {
|
|
229
|
-
one: 'mais de 1 ano',
|
|
230
|
-
other: 'mais de {{count}} anos'
|
|
231
|
-
},
|
|
232
|
-
almostXYears: {
|
|
233
|
-
one: 'quase 1 ano',
|
|
234
|
-
other: 'quase {{count}} anos'
|
|
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 'em ' + result;
|
|
250
|
-
} else {
|
|
251
|
-
return 'há ' + result;
|
|
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/pt-BR/_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/pt-BR/_lib/formatDistance/index.js"); } }();
|
|
260
|
-
|
|
261
|
-
/***/ }),
|
|
262
|
-
|
|
263
|
-
/***/ "./node_modules/date-fns/locale/pt-BR/_lib/formatLong/index.js":
|
|
264
|
-
/*!*********************************************************************!*\
|
|
265
|
-
!*** ./node_modules/date-fns/locale/pt-BR/_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
|
-
full: "EEEE, d 'de' MMMM 'de' y",
|
|
280
|
-
long: "d 'de' MMMM 'de' y",
|
|
281
|
-
medium: 'd MMM y',
|
|
282
|
-
short: 'dd/MM/yyyy'
|
|
283
|
-
};
|
|
284
|
-
var timeFormats = {
|
|
285
|
-
full: 'HH:mm:ss zzzz',
|
|
286
|
-
long: 'HH:mm:ss z',
|
|
287
|
-
medium: 'HH:mm:ss',
|
|
288
|
-
short: 'HH:mm'
|
|
289
|
-
};
|
|
290
|
-
var dateTimeFormats = {
|
|
291
|
-
full: "{{date}} 'às' {{time}}",
|
|
292
|
-
long: "{{date}} 'às' {{time}}",
|
|
293
|
-
medium: '{{date}}, {{time}}',
|
|
294
|
-
short: '{{date}}, {{time}}'
|
|
295
|
-
};
|
|
296
|
-
var formatLong = {
|
|
297
|
-
date: (0, _index.default)({
|
|
298
|
-
formats: dateFormats,
|
|
299
|
-
defaultWidth: 'full'
|
|
300
|
-
}),
|
|
301
|
-
time: (0, _index.default)({
|
|
302
|
-
formats: timeFormats,
|
|
303
|
-
defaultWidth: 'full'
|
|
304
|
-
}),
|
|
305
|
-
dateTime: (0, _index.default)({
|
|
306
|
-
formats: dateTimeFormats,
|
|
307
|
-
defaultWidth: 'full'
|
|
308
|
-
})
|
|
309
|
-
};
|
|
310
|
-
var _default = formatLong;
|
|
311
|
-
exports["default"] = _default;
|
|
312
|
-
module.exports = exports.default;
|
|
313
|
-
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/pt-BR/_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/pt-BR/_lib/formatLong/index.js"); } }();
|
|
314
|
-
|
|
315
|
-
/***/ }),
|
|
316
|
-
|
|
317
|
-
/***/ "./node_modules/date-fns/locale/pt-BR/_lib/formatRelative/index.js":
|
|
318
|
-
/*!*************************************************************************!*\
|
|
319
|
-
!*** ./node_modules/date-fns/locale/pt-BR/_lib/formatRelative/index.js ***!
|
|
320
|
-
\*************************************************************************/
|
|
321
|
-
/***/ ((module, exports) => {
|
|
322
|
-
|
|
323
|
-
"use strict";
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
Object.defineProperty(exports, "__esModule", ({
|
|
327
|
-
value: true
|
|
328
|
-
}));
|
|
329
|
-
exports["default"] = void 0;
|
|
330
|
-
var formatRelativeLocale = {
|
|
331
|
-
lastWeek: function lastWeek(date) {
|
|
332
|
-
var weekday = date.getUTCDay();
|
|
333
|
-
var last = weekday === 0 || weekday === 6 ? 'último' : 'última';
|
|
334
|
-
return "'" + last + "' eeee 'às' p";
|
|
335
|
-
},
|
|
336
|
-
yesterday: "'ontem às' p",
|
|
337
|
-
today: "'hoje às' p",
|
|
338
|
-
tomorrow: "'amanhã às' p",
|
|
339
|
-
nextWeek: "eeee 'às' p",
|
|
340
|
-
other: 'P'
|
|
341
|
-
};
|
|
342
|
-
var formatRelative = function formatRelative(token, date, _baseDate, _options) {
|
|
343
|
-
var format = formatRelativeLocale[token];
|
|
344
|
-
if (typeof format === 'function') {
|
|
345
|
-
return format(date);
|
|
346
|
-
}
|
|
347
|
-
return format;
|
|
348
|
-
};
|
|
349
|
-
var _default = formatRelative;
|
|
350
|
-
exports["default"] = _default;
|
|
351
|
-
module.exports = exports.default;
|
|
352
|
-
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/pt-BR/_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/pt-BR/_lib/formatRelative/index.js"); } }();
|
|
353
|
-
|
|
354
|
-
/***/ }),
|
|
355
|
-
|
|
356
|
-
/***/ "./node_modules/date-fns/locale/pt-BR/_lib/localize/index.js":
|
|
357
|
-
/*!*******************************************************************!*\
|
|
358
|
-
!*** ./node_modules/date-fns/locale/pt-BR/_lib/localize/index.js ***!
|
|
359
|
-
\*******************************************************************/
|
|
360
|
-
/***/ ((module, exports, __webpack_require__) => {
|
|
361
|
-
|
|
362
|
-
"use strict";
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
var _interopRequireDefault = (__webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "./node_modules/@babel/runtime/helpers/interopRequireDefault.js")["default"]);
|
|
366
|
-
Object.defineProperty(exports, "__esModule", ({
|
|
367
|
-
value: true
|
|
368
|
-
}));
|
|
369
|
-
exports["default"] = void 0;
|
|
370
|
-
var _index = _interopRequireDefault(__webpack_require__(/*! ../../../_lib/buildLocalizeFn/index.js */ "./node_modules/date-fns/locale/_lib/buildLocalizeFn/index.js"));
|
|
371
|
-
var eraValues = {
|
|
372
|
-
narrow: ['AC', 'DC'],
|
|
373
|
-
abbreviated: ['AC', 'DC'],
|
|
374
|
-
wide: ['antes de cristo', 'depois de cristo']
|
|
375
|
-
};
|
|
376
|
-
var quarterValues = {
|
|
377
|
-
narrow: ['1', '2', '3', '4'],
|
|
378
|
-
abbreviated: ['T1', 'T2', 'T3', 'T4'],
|
|
379
|
-
wide: ['1º trimestre', '2º trimestre', '3º trimestre', '4º trimestre']
|
|
380
|
-
};
|
|
381
|
-
var monthValues = {
|
|
382
|
-
narrow: ['j', 'f', 'm', 'a', 'm', 'j', 'j', 'a', 's', 'o', 'n', 'd'],
|
|
383
|
-
abbreviated: ['jan', 'fev', 'mar', 'abr', 'mai', 'jun', 'jul', 'ago', 'set', 'out', 'nov', 'dez'],
|
|
384
|
-
wide: ['janeiro', 'fevereiro', 'março', 'abril', 'maio', 'junho', 'julho', 'agosto', 'setembro', 'outubro', 'novembro', 'dezembro']
|
|
385
|
-
};
|
|
386
|
-
var dayValues = {
|
|
387
|
-
narrow: ['D', 'S', 'T', 'Q', 'Q', 'S', 'S'],
|
|
388
|
-
short: ['dom', 'seg', 'ter', 'qua', 'qui', 'sex', 'sab'],
|
|
389
|
-
abbreviated: ['domingo', 'segunda', 'terça', 'quarta', 'quinta', 'sexta', 'sábado'],
|
|
390
|
-
wide: ['domingo', 'segunda-feira', 'terça-feira', 'quarta-feira', 'quinta-feira', 'sexta-feira', 'sábado']
|
|
391
|
-
};
|
|
392
|
-
var dayPeriodValues = {
|
|
393
|
-
narrow: {
|
|
394
|
-
am: 'a',
|
|
395
|
-
pm: 'p',
|
|
396
|
-
midnight: 'mn',
|
|
397
|
-
noon: 'md',
|
|
398
|
-
morning: 'manhã',
|
|
399
|
-
afternoon: 'tarde',
|
|
400
|
-
evening: 'tarde',
|
|
401
|
-
night: 'noite'
|
|
402
|
-
},
|
|
403
|
-
abbreviated: {
|
|
404
|
-
am: 'AM',
|
|
405
|
-
pm: 'PM',
|
|
406
|
-
midnight: 'meia-noite',
|
|
407
|
-
noon: 'meio-dia',
|
|
408
|
-
morning: 'manhã',
|
|
409
|
-
afternoon: 'tarde',
|
|
410
|
-
evening: 'tarde',
|
|
411
|
-
night: 'noite'
|
|
412
|
-
},
|
|
413
|
-
wide: {
|
|
414
|
-
am: 'a.m.',
|
|
415
|
-
pm: 'p.m.',
|
|
416
|
-
midnight: 'meia-noite',
|
|
417
|
-
noon: 'meio-dia',
|
|
418
|
-
morning: 'manhã',
|
|
419
|
-
afternoon: 'tarde',
|
|
420
|
-
evening: 'tarde',
|
|
421
|
-
night: 'noite'
|
|
422
|
-
}
|
|
423
|
-
};
|
|
424
|
-
var formattingDayPeriodValues = {
|
|
425
|
-
narrow: {
|
|
426
|
-
am: 'a',
|
|
427
|
-
pm: 'p',
|
|
428
|
-
midnight: 'mn',
|
|
429
|
-
noon: 'md',
|
|
430
|
-
morning: 'da manhã',
|
|
431
|
-
afternoon: 'da tarde',
|
|
432
|
-
evening: 'da tarde',
|
|
433
|
-
night: 'da noite'
|
|
434
|
-
},
|
|
435
|
-
abbreviated: {
|
|
436
|
-
am: 'AM',
|
|
437
|
-
pm: 'PM',
|
|
438
|
-
midnight: 'meia-noite',
|
|
439
|
-
noon: 'meio-dia',
|
|
440
|
-
morning: 'da manhã',
|
|
441
|
-
afternoon: 'da tarde',
|
|
442
|
-
evening: 'da tarde',
|
|
443
|
-
night: 'da noite'
|
|
444
|
-
},
|
|
445
|
-
wide: {
|
|
446
|
-
am: 'a.m.',
|
|
447
|
-
pm: 'p.m.',
|
|
448
|
-
midnight: 'meia-noite',
|
|
449
|
-
noon: 'meio-dia',
|
|
450
|
-
morning: 'da manhã',
|
|
451
|
-
afternoon: 'da tarde',
|
|
452
|
-
evening: 'da tarde',
|
|
453
|
-
night: 'da noite'
|
|
454
|
-
}
|
|
455
|
-
};
|
|
456
|
-
var ordinalNumber = function ordinalNumber(dirtyNumber, options) {
|
|
457
|
-
var number = Number(dirtyNumber);
|
|
458
|
-
if ((options === null || options === void 0 ? void 0 : options.unit) === 'week') {
|
|
459
|
-
return number + 'ª';
|
|
460
|
-
}
|
|
461
|
-
return number + 'º';
|
|
462
|
-
};
|
|
463
|
-
var localize = {
|
|
464
|
-
ordinalNumber: ordinalNumber,
|
|
465
|
-
era: (0, _index.default)({
|
|
466
|
-
values: eraValues,
|
|
467
|
-
defaultWidth: 'wide'
|
|
468
|
-
}),
|
|
469
|
-
quarter: (0, _index.default)({
|
|
470
|
-
values: quarterValues,
|
|
471
|
-
defaultWidth: 'wide',
|
|
472
|
-
argumentCallback: function argumentCallback(quarter) {
|
|
473
|
-
return quarter - 1;
|
|
474
|
-
}
|
|
475
|
-
}),
|
|
476
|
-
month: (0, _index.default)({
|
|
477
|
-
values: monthValues,
|
|
478
|
-
defaultWidth: 'wide'
|
|
479
|
-
}),
|
|
480
|
-
day: (0, _index.default)({
|
|
481
|
-
values: dayValues,
|
|
482
|
-
defaultWidth: 'wide'
|
|
483
|
-
}),
|
|
484
|
-
dayPeriod: (0, _index.default)({
|
|
485
|
-
values: dayPeriodValues,
|
|
486
|
-
defaultWidth: 'wide',
|
|
487
|
-
formattingValues: formattingDayPeriodValues,
|
|
488
|
-
defaultFormattingWidth: 'wide'
|
|
489
|
-
})
|
|
490
|
-
};
|
|
491
|
-
var _default = localize;
|
|
492
|
-
exports["default"] = _default;
|
|
493
|
-
module.exports = exports.default;
|
|
494
|
-
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/pt-BR/_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/pt-BR/_lib/localize/index.js"); } }();
|
|
495
|
-
|
|
496
|
-
/***/ }),
|
|
497
|
-
|
|
498
|
-
/***/ "./node_modules/date-fns/locale/pt-BR/_lib/match/index.js":
|
|
499
|
-
/*!****************************************************************!*\
|
|
500
|
-
!*** ./node_modules/date-fns/locale/pt-BR/_lib/match/index.js ***!
|
|
501
|
-
\****************************************************************/
|
|
502
|
-
/***/ ((module, exports, __webpack_require__) => {
|
|
503
|
-
|
|
504
|
-
"use strict";
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
var _interopRequireDefault = (__webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "./node_modules/@babel/runtime/helpers/interopRequireDefault.js")["default"]);
|
|
508
|
-
Object.defineProperty(exports, "__esModule", ({
|
|
509
|
-
value: true
|
|
510
|
-
}));
|
|
511
|
-
exports["default"] = void 0;
|
|
512
|
-
var _index = _interopRequireDefault(__webpack_require__(/*! ../../../_lib/buildMatchFn/index.js */ "./node_modules/date-fns/locale/_lib/buildMatchFn/index.js"));
|
|
513
|
-
var _index2 = _interopRequireDefault(__webpack_require__(/*! ../../../_lib/buildMatchPatternFn/index.js */ "./node_modules/date-fns/locale/_lib/buildMatchPatternFn/index.js"));
|
|
514
|
-
var matchOrdinalNumberPattern = /^(\d+)[ºªo]?/i;
|
|
515
|
-
var parseOrdinalNumberPattern = /\d+/i;
|
|
516
|
-
var matchEraPatterns = {
|
|
517
|
-
narrow: /^(ac|dc|a|d)/i,
|
|
518
|
-
abbreviated: /^(a\.?\s?c\.?|d\.?\s?c\.?)/i,
|
|
519
|
-
wide: /^(antes de cristo|depois de cristo)/i
|
|
520
|
-
};
|
|
521
|
-
var parseEraPatterns = {
|
|
522
|
-
any: [/^ac/i, /^dc/i],
|
|
523
|
-
wide: [/^antes de cristo/i, /^depois de cristo/i]
|
|
524
|
-
};
|
|
525
|
-
var matchQuarterPatterns = {
|
|
526
|
-
narrow: /^[1234]/i,
|
|
527
|
-
abbreviated: /^T[1234]/i,
|
|
528
|
-
wide: /^[1234](º)? trimestre/i
|
|
529
|
-
};
|
|
530
|
-
var parseQuarterPatterns = {
|
|
531
|
-
any: [/1/i, /2/i, /3/i, /4/i]
|
|
532
|
-
};
|
|
533
|
-
var matchMonthPatterns = {
|
|
534
|
-
narrow: /^[jfmajsond]/i,
|
|
535
|
-
abbreviated: /^(jan|fev|mar|abr|mai|jun|jul|ago|set|out|nov|dez)/i,
|
|
536
|
-
wide: /^(janeiro|fevereiro|março|abril|maio|junho|julho|agosto|setembro|outubro|novembro|dezembro)/i
|
|
537
|
-
};
|
|
538
|
-
var parseMonthPatterns = {
|
|
539
|
-
narrow: [/^j/i, /^f/i, /^m/i, /^a/i, /^m/i, /^j/i, /^j/i, /^a/i, /^s/i, /^o/i, /^n/i, /^d/i],
|
|
540
|
-
any: [/^ja/i, /^fev/i, /^mar/i, /^abr/i, /^mai/i, /^jun/i, /^jul/i, /^ago/i, /^set/i, /^out/i, /^nov/i, /^dez/i]
|
|
541
|
-
};
|
|
542
|
-
var matchDayPatterns = {
|
|
543
|
-
narrow: /^(dom|[23456]ª?|s[aá]b)/i,
|
|
544
|
-
short: /^(dom|[23456]ª?|s[aá]b)/i,
|
|
545
|
-
abbreviated: /^(dom|seg|ter|qua|qui|sex|s[aá]b)/i,
|
|
546
|
-
wide: /^(domingo|(segunda|ter[cç]a|quarta|quinta|sexta)([- ]feira)?|s[aá]bado)/i
|
|
547
|
-
};
|
|
548
|
-
var parseDayPatterns = {
|
|
549
|
-
short: [/^d/i, /^2/i, /^3/i, /^4/i, /^5/i, /^6/i, /^s[aá]/i],
|
|
550
|
-
narrow: [/^d/i, /^2/i, /^3/i, /^4/i, /^5/i, /^6/i, /^s[aá]/i],
|
|
551
|
-
any: [/^d/i, /^seg/i, /^t/i, /^qua/i, /^qui/i, /^sex/i, /^s[aá]b/i]
|
|
552
|
-
};
|
|
553
|
-
var matchDayPeriodPatterns = {
|
|
554
|
-
narrow: /^(a|p|mn|md|(da) (manhã|tarde|noite))/i,
|
|
555
|
-
any: /^([ap]\.?\s?m\.?|meia[-\s]noite|meio[-\s]dia|(da) (manhã|tarde|noite))/i
|
|
556
|
-
};
|
|
557
|
-
var parseDayPeriodPatterns = {
|
|
558
|
-
any: {
|
|
559
|
-
am: /^a/i,
|
|
560
|
-
pm: /^p/i,
|
|
561
|
-
midnight: /^mn|^meia[-\s]noite/i,
|
|
562
|
-
noon: /^md|^meio[-\s]dia/i,
|
|
563
|
-
morning: /manhã/i,
|
|
564
|
-
afternoon: /tarde/i,
|
|
565
|
-
evening: /tarde/i,
|
|
566
|
-
night: /noite/i
|
|
567
|
-
}
|
|
568
|
-
};
|
|
569
|
-
var match = {
|
|
570
|
-
ordinalNumber: (0, _index2.default)({
|
|
571
|
-
matchPattern: matchOrdinalNumberPattern,
|
|
572
|
-
parsePattern: parseOrdinalNumberPattern,
|
|
573
|
-
valueCallback: function valueCallback(value) {
|
|
574
|
-
return parseInt(value, 10);
|
|
575
|
-
}
|
|
576
|
-
}),
|
|
577
|
-
era: (0, _index.default)({
|
|
578
|
-
matchPatterns: matchEraPatterns,
|
|
579
|
-
defaultMatchWidth: 'wide',
|
|
580
|
-
parsePatterns: parseEraPatterns,
|
|
581
|
-
defaultParseWidth: 'any'
|
|
582
|
-
}),
|
|
583
|
-
quarter: (0, _index.default)({
|
|
584
|
-
matchPatterns: matchQuarterPatterns,
|
|
585
|
-
defaultMatchWidth: 'wide',
|
|
586
|
-
parsePatterns: parseQuarterPatterns,
|
|
587
|
-
defaultParseWidth: 'any',
|
|
588
|
-
valueCallback: function valueCallback(index) {
|
|
589
|
-
return index + 1;
|
|
590
|
-
}
|
|
591
|
-
}),
|
|
592
|
-
month: (0, _index.default)({
|
|
593
|
-
matchPatterns: matchMonthPatterns,
|
|
594
|
-
defaultMatchWidth: 'wide',
|
|
595
|
-
parsePatterns: parseMonthPatterns,
|
|
596
|
-
defaultParseWidth: 'any'
|
|
597
|
-
}),
|
|
598
|
-
day: (0, _index.default)({
|
|
599
|
-
matchPatterns: matchDayPatterns,
|
|
600
|
-
defaultMatchWidth: 'wide',
|
|
601
|
-
parsePatterns: parseDayPatterns,
|
|
602
|
-
defaultParseWidth: 'any'
|
|
603
|
-
}),
|
|
604
|
-
dayPeriod: (0, _index.default)({
|
|
605
|
-
matchPatterns: matchDayPeriodPatterns,
|
|
606
|
-
defaultMatchWidth: 'any',
|
|
607
|
-
parsePatterns: parseDayPeriodPatterns,
|
|
608
|
-
defaultParseWidth: 'any'
|
|
609
|
-
})
|
|
610
|
-
};
|
|
611
|
-
var _default = match;
|
|
612
|
-
exports["default"] = _default;
|
|
613
|
-
module.exports = exports.default;
|
|
614
|
-
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/pt-BR/_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/pt-BR/_lib/match/index.js"); } }();
|
|
615
|
-
|
|
616
|
-
/***/ }),
|
|
617
|
-
|
|
618
|
-
/***/ "./node_modules/date-fns/locale/pt-BR/index.js":
|
|
619
|
-
/*!*****************************************************!*\
|
|
620
|
-
!*** ./node_modules/date-fns/locale/pt-BR/index.js ***!
|
|
621
|
-
\*****************************************************/
|
|
622
|
-
/***/ ((module, exports, __webpack_require__) => {
|
|
623
|
-
|
|
624
|
-
"use strict";
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
var _interopRequireDefault = (__webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "./node_modules/@babel/runtime/helpers/interopRequireDefault.js")["default"]);
|
|
628
|
-
Object.defineProperty(exports, "__esModule", ({
|
|
629
|
-
value: true
|
|
630
|
-
}));
|
|
631
|
-
exports["default"] = void 0;
|
|
632
|
-
var _index = _interopRequireDefault(__webpack_require__(/*! ./_lib/formatDistance/index.js */ "./node_modules/date-fns/locale/pt-BR/_lib/formatDistance/index.js"));
|
|
633
|
-
var _index2 = _interopRequireDefault(__webpack_require__(/*! ./_lib/formatLong/index.js */ "./node_modules/date-fns/locale/pt-BR/_lib/formatLong/index.js"));
|
|
634
|
-
var _index3 = _interopRequireDefault(__webpack_require__(/*! ./_lib/formatRelative/index.js */ "./node_modules/date-fns/locale/pt-BR/_lib/formatRelative/index.js"));
|
|
635
|
-
var _index4 = _interopRequireDefault(__webpack_require__(/*! ./_lib/localize/index.js */ "./node_modules/date-fns/locale/pt-BR/_lib/localize/index.js"));
|
|
636
|
-
var _index5 = _interopRequireDefault(__webpack_require__(/*! ./_lib/match/index.js */ "./node_modules/date-fns/locale/pt-BR/_lib/match/index.js"));
|
|
637
|
-
/**
|
|
638
|
-
* @type {Locale}
|
|
639
|
-
* @category Locales
|
|
640
|
-
* @summary Portuguese locale (Brazil).
|
|
641
|
-
* @language Portuguese
|
|
642
|
-
* @iso-639-2 por
|
|
643
|
-
* @author Lucas Duailibe [@duailibe]{@link https://github.com/duailibe}
|
|
644
|
-
* @author Yago Carballo [@yagocarballo]{@link https://github.com/YagoCarballo}
|
|
645
|
-
*/
|
|
646
|
-
var locale = {
|
|
647
|
-
code: 'pt-BR',
|
|
648
|
-
formatDistance: _index.default,
|
|
649
|
-
formatLong: _index2.default,
|
|
650
|
-
formatRelative: _index3.default,
|
|
651
|
-
localize: _index4.default,
|
|
652
|
-
match: _index5.default,
|
|
653
|
-
options: {
|
|
654
|
-
weekStartsOn: 0 /* Sunday */,
|
|
655
|
-
firstWeekContainsDate: 1
|
|
656
|
-
}
|
|
657
|
-
};
|
|
658
|
-
var _default = locale;
|
|
659
|
-
exports["default"] = _default;
|
|
660
|
-
module.exports = exports.default;
|
|
661
|
-
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/pt-BR/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/pt-BR/index.js"); } }();
|
|
662
|
-
|
|
663
|
-
/***/ }),
|
|
664
|
-
|
|
665
|
-
/***/ "./node_modules/@babel/runtime/helpers/interopRequireDefault.js":
|
|
666
|
-
/*!**********************************************************************!*\
|
|
667
|
-
!*** ./node_modules/@babel/runtime/helpers/interopRequireDefault.js ***!
|
|
668
|
-
\**********************************************************************/
|
|
669
|
-
/***/ ((module, exports) => {
|
|
670
|
-
|
|
671
|
-
function _interopRequireDefault(obj) {
|
|
672
|
-
return obj && obj.__esModule ? obj : {
|
|
673
|
-
"default": obj
|
|
674
|
-
};
|
|
675
|
-
}
|
|
676
|
-
module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
677
|
-
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"); } }();
|
|
678
|
-
|
|
679
|
-
/***/ })
|
|
680
|
-
|
|
681
|
-
}]);
|
|
682
|
-
//# sourceMappingURL=vendors-node_modules_date-fns_locale_pt-BR_index_js.695bc207.chunk.js.map
|