@bigbinary/neeto-commons-frontend 4.6.3 → 4.8.2
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/README.md +195 -0
- package/configs/scripts/getPkgTranslations.js +1 -1
- package/configs/scripts/jsdoc-builder/constants.mjs +0 -1
- package/configs/scripts/jsdoc-builder/index.mjs +4 -11
- package/configs/scripts/jsdoc-builder/utils.mjs +2 -4
- package/configs/webpack/rules.js +1 -1
- package/dist/_commonjsHelpers-ae89b920.js +6 -0
- package/dist/_commonjsHelpers-ae89b920.js.map +1 -0
- package/dist/cjs/_commonjsHelpers-755157d3.js +8 -0
- package/dist/cjs/_commonjsHelpers-755157d3.js.map +1 -0
- package/dist/cjs/constants/index.js +29 -0
- package/dist/cjs/constants/index.js.map +1 -0
- package/dist/cjs/constants/regex.js +12 -0
- package/dist/cjs/constants/regex.js.map +1 -0
- package/dist/cjs/cypress-utils/.eslintrc.js +40 -0
- package/dist/cjs/cypress-utils/.eslintrc.js.map +1 -0
- package/dist/cjs/cypress-utils/commands.js +290 -0
- package/dist/cjs/cypress-utils/commands.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/index.js +13 -0
- package/dist/cjs/cypress-utils/constants/index.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/routes.js +42 -0
- package/dist/cjs/cypress-utils/constants/routes.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/selectors/common.js +105 -0
- package/dist/cjs/cypress-utils/constants/selectors/common.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/selectors/editor.js +31 -0
- package/dist/cjs/cypress-utils/constants/selectors/editor.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/selectors/ipRestriction.js +21 -0
- package/dist/cjs/cypress-utils/constants/selectors/ipRestriction.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/selectors/login.js +23 -0
- package/dist/cjs/cypress-utils/constants/selectors/login.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/selectors/member.js +68 -0
- package/dist/cjs/cypress-utils/constants/selectors/member.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/selectors/navigation.js +30 -0
- package/dist/cjs/cypress-utils/constants/selectors/navigation.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/selectors/roles.js +24 -0
- package/dist/cjs/cypress-utils/constants/selectors/roles.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/selectors/signUp.js +25 -0
- package/dist/cjs/cypress-utils/constants/selectors/signUp.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/selectors/tags.js +33 -0
- package/dist/cjs/cypress-utils/constants/selectors/tags.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/texts/common.js +39 -0
- package/dist/cjs/cypress-utils/constants/texts/common.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/texts/member.js +67 -0
- package/dist/cjs/cypress-utils/constants/texts/member.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/texts/navigation.js +23 -0
- package/dist/cjs/cypress-utils/constants/texts/navigation.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/texts/roles.js +24 -0
- package/dist/cjs/cypress-utils/constants/texts/roles.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/texts/signUp.js +13 -0
- package/dist/cjs/cypress-utils/constants/texts/signUp.js.map +1 -0
- package/dist/cjs/cypress-utils/constants/texts/tags.js +27 -0
- package/dist/cjs/cypress-utils/constants/texts/tags.js.map +1 -0
- package/dist/cjs/cypress-utils/fixtures/fake.js +177 -0
- package/dist/cjs/cypress-utils/fixtures/fake.js.map +1 -0
- package/dist/cjs/cypress-utils/index.js +74 -0
- package/dist/cjs/cypress-utils/index.js.map +1 -0
- package/dist/cjs/cypress-utils/jsconfig.js +33 -0
- package/dist/cjs/cypress-utils/jsconfig.js.map +1 -0
- package/dist/cjs/cypress-utils/utils/authentication.js +51 -0
- package/dist/cjs/cypress-utils/utils/authentication.js.map +1 -0
- package/dist/cjs/cypress-utils/utils/common.js +91 -0
- package/dist/cjs/cypress-utils/utils/common.js.map +1 -0
- package/dist/cjs/cypress-utils/utils/date.js +31 -0
- package/dist/cjs/cypress-utils/utils/date.js.map +1 -0
- package/dist/cjs/cypress-utils/utils/email.js +164 -0
- package/dist/cjs/cypress-utils/utils/email.js.map +1 -0
- package/dist/cjs/cypress-utils/utils/member.js +354 -0
- package/dist/cjs/cypress-utils/utils/member.js.map +1 -0
- package/dist/cjs/cypress-utils/utils/navigation.js +215 -0
- package/dist/cjs/cypress-utils/utils/navigation.js.map +1 -0
- package/dist/cjs/cypress-utils/utils/organization.js +111 -0
- package/dist/cjs/cypress-utils/utils/organization.js.map +1 -0
- package/dist/cjs/cypress-utils/utils/validation.js +20 -0
- package/dist/cjs/cypress-utils/utils/validation.js.map +1 -0
- package/dist/cjs/defineProperty-ba7cd53d.js +19 -0
- package/dist/cjs/defineProperty-ba7cd53d.js.map +1 -0
- package/dist/cjs/index-25a068b1.js +443 -0
- package/dist/cjs/index-25a068b1.js.map +1 -0
- package/dist/cjs/initializers/axios.js +22 -0
- package/dist/cjs/initializers/axios.js.map +1 -0
- package/dist/cjs/initializers/axiosInitializer/index.js +280 -0
- package/dist/cjs/initializers/axiosInitializer/index.js.map +1 -0
- package/dist/cjs/initializers/axiosInitializer/paramsSerializer.js +22 -0
- package/dist/cjs/initializers/axiosInitializer/paramsSerializer.js.map +1 -0
- package/dist/cjs/initializers/constants.js +26 -0
- package/dist/cjs/initializers/constants.js.map +1 -0
- package/dist/cjs/initializers/dayjs.js +81 -0
- package/dist/cjs/initializers/dayjs.js.map +1 -0
- package/dist/cjs/initializers/globalProps.js +16 -0
- package/dist/cjs/initializers/globalProps.js.map +1 -0
- package/dist/cjs/initializers/i18n.js +615 -0
- package/dist/cjs/initializers/i18n.js.map +1 -0
- package/dist/cjs/initializers/index.js +82 -0
- package/dist/cjs/initializers/index.js.map +1 -0
- package/dist/cjs/initializers/logger.js +19 -0
- package/dist/cjs/initializers/logger.js.map +1 -0
- package/dist/cjs/initializers/mixpanel.js +30 -0
- package/dist/cjs/initializers/mixpanel.js.map +1 -0
- package/dist/cjs/initializers/reactDevTools.js +24 -0
- package/dist/cjs/initializers/reactDevTools.js.map +1 -0
- package/dist/cjs/initializers/utils/customFormatters.js +55 -0
- package/dist/cjs/initializers/utils/customFormatters.js.map +1 -0
- package/dist/cjs/initializers/utils/customPostProcessors.js +21 -0
- package/dist/cjs/initializers/utils/customPostProcessors.js.map +1 -0
- package/dist/cjs/initializers/utils/utils.js +41 -0
- package/dist/cjs/initializers/utils/utils.js.map +1 -0
- package/dist/cjs/mixpanel.cjs-e97a1ff5.js +6346 -0
- package/dist/cjs/mixpanel.cjs-e97a1ff5.js.map +1 -0
- package/dist/cjs/objectWithoutProperties-60b52fdb.js +38 -0
- package/dist/cjs/objectWithoutProperties-60b52fdb.js.map +1 -0
- package/dist/cjs/react-utils/AppContainer/AppContainer.js +62 -0
- package/dist/cjs/react-utils/AppContainer/AppContainer.js.map +1 -0
- package/dist/cjs/react-utils/AppContainer/index.js +31 -0
- package/dist/cjs/react-utils/AppContainer/index.js.map +1 -0
- package/dist/cjs/react-utils/BrowserPushNotifications/devices.js +27 -0
- package/dist/cjs/react-utils/BrowserPushNotifications/devices.js.map +1 -0
- package/dist/cjs/react-utils/BrowserPushNotifications/index.js +16 -0
- package/dist/cjs/react-utils/BrowserPushNotifications/index.js.map +1 -0
- package/dist/cjs/react-utils/BrowserPushNotifications/pushHelper.js +112 -0
- package/dist/cjs/react-utils/BrowserPushNotifications/pushHelper.js.map +1 -0
- package/dist/cjs/react-utils/BrowserPushNotifications/registerServiceWorker.js +145 -0
- package/dist/cjs/react-utils/BrowserPushNotifications/registerServiceWorker.js.map +1 -0
- package/dist/cjs/react-utils/HoneybadgerErrorBoundary/FallbackComponent.js +107 -0
- package/dist/cjs/react-utils/HoneybadgerErrorBoundary/FallbackComponent.js.map +1 -0
- package/dist/cjs/react-utils/HoneybadgerErrorBoundary/HoneybadgerErrorBoundary.js +60 -0
- package/dist/cjs/react-utils/HoneybadgerErrorBoundary/HoneybadgerErrorBoundary.js.map +1 -0
- package/dist/cjs/react-utils/HoneybadgerErrorBoundary/constants.js +10 -0
- package/dist/cjs/react-utils/HoneybadgerErrorBoundary/constants.js.map +1 -0
- package/dist/cjs/react-utils/HoneybadgerErrorBoundary/index.js +20 -0
- package/dist/cjs/react-utils/HoneybadgerErrorBoundary/index.js.map +1 -0
- package/dist/cjs/react-utils/HoneybadgerErrorBoundary/utils.js +16 -0
- package/dist/cjs/react-utils/HoneybadgerErrorBoundary/utils.js.map +1 -0
- package/dist/cjs/react-utils/PageTitle/PageTitle.js +22 -0
- package/dist/cjs/react-utils/PageTitle/PageTitle.js.map +1 -0
- package/dist/cjs/react-utils/PageTitle/index.js +11 -0
- package/dist/cjs/react-utils/PageTitle/index.js.map +1 -0
- package/dist/cjs/react-utils/PrivateRoute/PrivateRoute.js +48 -0
- package/dist/cjs/react-utils/PrivateRoute/PrivateRoute.js.map +1 -0
- package/dist/cjs/react-utils/PrivateRoute/index.js +14 -0
- package/dist/cjs/react-utils/PrivateRoute/index.js.map +1 -0
- package/dist/cjs/react-utils/QueryClientProvider/QueryClientProvider.js +18 -0
- package/dist/cjs/react-utils/QueryClientProvider/QueryClientProvider.js.map +1 -0
- package/dist/cjs/react-utils/QueryClientProvider/index.js +16 -0
- package/dist/cjs/react-utils/QueryClientProvider/index.js.map +1 -0
- package/dist/cjs/react-utils/QueryClientProvider/queryClient.js +19 -0
- package/dist/cjs/react-utils/QueryClientProvider/queryClient.js.map +1 -0
- package/dist/cjs/react-utils/constants/constants.js +12 -0
- package/dist/cjs/react-utils/constants/constants.js.map +1 -0
- package/dist/cjs/react-utils/constants/index.js +14 -0
- package/dist/cjs/react-utils/constants/index.js.map +1 -0
- package/dist/cjs/react-utils/constants/query.js +10 -0
- package/dist/cjs/react-utils/constants/query.js.map +1 -0
- package/dist/cjs/react-utils/index.js +125 -0
- package/dist/cjs/react-utils/index.js.map +1 -0
- package/dist/cjs/react-utils/metaClick/index.js +12 -0
- package/dist/cjs/react-utils/metaClick/index.js.map +1 -0
- package/dist/cjs/react-utils/metaClick/metaClick.js +23 -0
- package/dist/cjs/react-utils/metaClick/metaClick.js.map +1 -0
- package/dist/cjs/react-utils/useBreakpoints/index.js +20 -0
- package/dist/cjs/react-utils/useBreakpoints/index.js.map +1 -0
- package/dist/cjs/react-utils/useBreakpoints/utils.js +31 -0
- package/dist/cjs/react-utils/useBreakpoints/utils.js.map +1 -0
- package/dist/cjs/react-utils/useDebounce/index.js +11 -0
- package/dist/cjs/react-utils/useDebounce/index.js.map +1 -0
- package/dist/cjs/react-utils/useDebounce/useDebounce.js +25 -0
- package/dist/cjs/react-utils/useDebounce/useDebounce.js.map +1 -0
- package/dist/cjs/react-utils/useDisplayErrorPage/index.js +13 -0
- package/dist/cjs/react-utils/useDisplayErrorPage/index.js.map +1 -0
- package/dist/cjs/react-utils/useDisplayErrorPage/useDisplayErrorPage.js +22 -0
- package/dist/cjs/react-utils/useDisplayErrorPage/useDisplayErrorPage.js.map +1 -0
- package/dist/cjs/react-utils/useFetchNeetoApps/apis/neeto_apps.js +17 -0
- package/dist/cjs/react-utils/useFetchNeetoApps/apis/neeto_apps.js.map +1 -0
- package/dist/cjs/react-utils/useFetchNeetoApps/index.js +27 -0
- package/dist/cjs/react-utils/useFetchNeetoApps/index.js.map +1 -0
- package/dist/cjs/react-utils/useFetchNeetoApps/useFetchNeetoApps.js +39 -0
- package/dist/cjs/react-utils/useFetchNeetoApps/useFetchNeetoApps.js.map +1 -0
- package/dist/cjs/react-utils/useFieldSubmit/index.js +9 -0
- package/dist/cjs/react-utils/useFieldSubmit/index.js.map +1 -0
- package/dist/cjs/react-utils/useFieldSubmit/useFieldSubmit.js +30 -0
- package/dist/cjs/react-utils/useFieldSubmit/useFieldSubmit.js.map +1 -0
- package/dist/cjs/react-utils/useFuncDebounce/index.js +9 -0
- package/dist/cjs/react-utils/useFuncDebounce/index.js.map +1 -0
- package/dist/cjs/react-utils/useFuncDebounce/useFuncDebounce.js +24 -0
- package/dist/cjs/react-utils/useFuncDebounce/useFuncDebounce.js.map +1 -0
- package/dist/cjs/react-utils/useIsElementVisibleInDom/index.js +12 -0
- package/dist/cjs/react-utils/useIsElementVisibleInDom/index.js.map +1 -0
- package/dist/cjs/react-utils/useIsElementVisibleInDom/useForceUpdate.js +20 -0
- package/dist/cjs/react-utils/useIsElementVisibleInDom/useForceUpdate.js.map +1 -0
- package/dist/cjs/react-utils/useIsElementVisibleInDom/useIsElementVisibleInDom.js +31 -0
- package/dist/cjs/react-utils/useIsElementVisibleInDom/useIsElementVisibleInDom.js.map +1 -0
- package/dist/cjs/react-utils/useKeyboardShortcutsPaneState/index.js +10 -0
- package/dist/cjs/react-utils/useKeyboardShortcutsPaneState/index.js.map +1 -0
- package/dist/cjs/react-utils/useKeyboardShortcutsPaneState/useKeyboardShortcutsPaneState.js +33 -0
- package/dist/cjs/react-utils/useKeyboardShortcutsPaneState/useKeyboardShortcutsPaneState.js.map +1 -0
- package/dist/cjs/react-utils/useLocalStorage/index.js +28 -0
- package/dist/cjs/react-utils/useLocalStorage/index.js.map +1 -0
- package/dist/cjs/react-utils/useLocalStorage/useLocalStorage.js +55 -0
- package/dist/cjs/react-utils/useLocalStorage/useLocalStorage.js.map +1 -0
- package/dist/cjs/react-utils/useMutationWithInvalidation/index.js +12 -0
- package/dist/cjs/react-utils/useMutationWithInvalidation/index.js.map +1 -0
- package/dist/cjs/react-utils/useMutationWithInvalidation/useMutationWithInvalidation.js +41 -0
- package/dist/cjs/react-utils/useMutationWithInvalidation/useMutationWithInvalidation.js.map +1 -0
- package/dist/cjs/react-utils/useOnClickOutside/index.js +9 -0
- package/dist/cjs/react-utils/useOnClickOutside/index.js.map +1 -0
- package/dist/cjs/react-utils/useOnClickOutside/useOnClickOutside.js +29 -0
- package/dist/cjs/react-utils/useOnClickOutside/useOnClickOutside.js.map +1 -0
- package/dist/cjs/react-utils/usePersistedQuery/index.js +23 -0
- package/dist/cjs/react-utils/usePersistedQuery/index.js.map +1 -0
- package/dist/cjs/react-utils/usePersistedQuery/usePersistedQuery.js +67 -0
- package/dist/cjs/react-utils/usePersistedQuery/usePersistedQuery.js.map +1 -0
- package/dist/cjs/react-utils/usePrevious/index.js +9 -0
- package/dist/cjs/react-utils/usePrevious/index.js.map +1 -0
- package/dist/cjs/react-utils/usePrevious/usePrevious.js +14 -0
- package/dist/cjs/react-utils/usePrevious/usePrevious.js.map +1 -0
- package/dist/cjs/react-utils/useQueryParams/index.js +21 -0
- package/dist/cjs/react-utils/useQueryParams/index.js.map +1 -0
- package/dist/cjs/react-utils/useQueryParams/useQueryParams.js +23 -0
- package/dist/cjs/react-utils/useQueryParams/useQueryParams.js.map +1 -0
- package/dist/cjs/react-utils/useRegisterNavigationCheckpoint/index.js +29 -0
- package/dist/cjs/react-utils/useRegisterNavigationCheckpoint/index.js.map +1 -0
- package/dist/cjs/react-utils/useRegisterNavigationCheckpoint/useRegisterNavigationCheckpoint.js +85 -0
- package/dist/cjs/react-utils/useRegisterNavigationCheckpoint/useRegisterNavigationCheckpoint.js.map +1 -0
- package/dist/cjs/react-utils/useRestoreScrollPosition/index.js +18 -0
- package/dist/cjs/react-utils/useRestoreScrollPosition/index.js.map +1 -0
- package/dist/cjs/react-utils/useRestoreScrollPosition/useRestoreScrollPosition.js +70 -0
- package/dist/cjs/react-utils/useRestoreScrollPosition/useRestoreScrollPosition.js.map +1 -0
- package/dist/cjs/react-utils/useStateWithDependency/index.js +11 -0
- package/dist/cjs/react-utils/useStateWithDependency/index.js.map +1 -0
- package/dist/cjs/react-utils/useStateWithDependency/useStateWithDependency.js +20 -0
- package/dist/cjs/react-utils/useStateWithDependency/useStateWithDependency.js.map +1 -0
- package/dist/cjs/react-utils/useTimer/index.js +10 -0
- package/dist/cjs/react-utils/useTimer/index.js.map +1 -0
- package/dist/cjs/react-utils/useTimer/useTimer.js +43 -0
- package/dist/cjs/react-utils/useTimer/useTimer.js.map +1 -0
- package/dist/cjs/react-utils/useUpdateEffect/index.js +9 -0
- package/dist/cjs/react-utils/useUpdateEffect/index.js.map +1 -0
- package/dist/cjs/react-utils/useUpdateEffect/useUpdateEffect.js +18 -0
- package/dist/cjs/react-utils/useUpdateEffect/useUpdateEffect.js.map +1 -0
- package/dist/cjs/react-utils/withImmutableActions/index.js +9 -0
- package/dist/cjs/react-utils/withImmutableActions/index.js.map +1 -0
- package/dist/cjs/react-utils/withImmutableActions/withImmutableActions.js +26 -0
- package/dist/cjs/react-utils/withImmutableActions/withImmutableActions.js.map +1 -0
- package/dist/cjs/react-utils/withT/index.js +9 -0
- package/dist/cjs/react-utils/withT/index.js.map +1 -0
- package/dist/cjs/react-utils/withT/withT.js +11 -0
- package/dist/cjs/react-utils/withT/withT.js.map +1 -0
- package/dist/cjs/react-utils/withTitle/index.js +11 -0
- package/dist/cjs/react-utils/withTitle/index.js.map +1 -0
- package/dist/cjs/react-utils/withTitle/withTitle.js +24 -0
- package/dist/cjs/react-utils/withTitle/withTitle.js.map +1 -0
- package/dist/cjs/slicedToArray-c9e22c6a.js +48 -0
- package/dist/cjs/slicedToArray-c9e22c6a.js.map +1 -0
- package/dist/cjs/toConsumableArray-7afb7984.js +22 -0
- package/dist/cjs/toConsumableArray-7afb7984.js.map +1 -0
- package/dist/cjs/typeof-a861d137.js +14 -0
- package/dist/cjs/typeof-a861d137.js.map +1 -0
- package/dist/cjs/unsupportedIterableToArray-294d47a8.js +24 -0
- package/dist/cjs/unsupportedIterableToArray-294d47a8.js.map +1 -0
- package/dist/cjs/utils/axios.js +20 -0
- package/dist/cjs/utils/axios.js.map +1 -0
- package/dist/cjs/utils/buildNestedAttributesPayload.js +40 -0
- package/dist/cjs/utils/buildNestedAttributesPayload.js.map +1 -0
- package/dist/cjs/utils/captureAnalyticsEvent.js +14 -0
- package/dist/cjs/utils/captureAnalyticsEvent.js.map +1 -0
- package/dist/cjs/utils/captureAnalyticsPageView.js +19 -0
- package/dist/cjs/utils/captureAnalyticsPageView.js.map +1 -0
- package/dist/cjs/utils/createSubscription.js +32 -0
- package/dist/cjs/utils/createSubscription.js.map +1 -0
- package/dist/cjs/utils/currencyFormat.js +53 -0
- package/dist/cjs/utils/currencyFormat.js.map +1 -0
- package/dist/cjs/utils/datetime.js +69 -0
- package/dist/cjs/utils/datetime.js.map +1 -0
- package/dist/cjs/utils/dayjs.js +12 -0
- package/dist/cjs/utils/dayjs.js.map +1 -0
- package/dist/cjs/utils/general.js +231 -0
- package/dist/cjs/utils/general.js.map +1 -0
- package/dist/cjs/utils/index.js +72 -0
- package/dist/cjs/utils/index.js.map +1 -0
- package/dist/cjs/utils/permissions.js +26 -0
- package/dist/cjs/utils/permissions.js.map +1 -0
- package/dist/cjs/utils/validators/index.js +13 -0
- package/dist/cjs/utils/validators/index.js.map +1 -0
- package/dist/cjs/utils/validators/slug.js +75 -0
- package/dist/cjs/utils/validators/slug.js.map +1 -0
- package/dist/constants/index.js +17 -0
- package/dist/constants/index.js.map +1 -0
- package/dist/constants/regex.js +6 -0
- package/dist/constants/regex.js.map +1 -0
- package/dist/cypress-utils/.eslintrc.js +38 -0
- package/dist/cypress-utils/.eslintrc.js.map +1 -0
- package/dist/cypress-utils/commands.js +286 -0
- package/dist/cypress-utils/commands.js.map +1 -0
- package/dist/cypress-utils/constants/index.js +9 -0
- package/dist/cypress-utils/constants/index.js.map +1 -0
- package/dist/cypress-utils/constants/routes.js +37 -0
- package/dist/cypress-utils/constants/routes.js.map +1 -0
- package/dist/cypress-utils/constants/selectors/common.js +99 -0
- package/dist/cypress-utils/constants/selectors/common.js.map +1 -0
- package/dist/cypress-utils/constants/selectors/editor.js +27 -0
- package/dist/cypress-utils/constants/selectors/editor.js.map +1 -0
- package/dist/cypress-utils/constants/selectors/ipRestriction.js +17 -0
- package/dist/cypress-utils/constants/selectors/ipRestriction.js.map +1 -0
- package/dist/cypress-utils/constants/selectors/login.js +19 -0
- package/dist/cypress-utils/constants/selectors/login.js.map +1 -0
- package/dist/cypress-utils/constants/selectors/member.js +62 -0
- package/dist/cypress-utils/constants/selectors/member.js.map +1 -0
- package/dist/cypress-utils/constants/selectors/navigation.js +25 -0
- package/dist/cypress-utils/constants/selectors/navigation.js.map +1 -0
- package/dist/cypress-utils/constants/selectors/roles.js +20 -0
- package/dist/cypress-utils/constants/selectors/roles.js.map +1 -0
- package/dist/cypress-utils/constants/selectors/signUp.js +21 -0
- package/dist/cypress-utils/constants/selectors/signUp.js.map +1 -0
- package/dist/cypress-utils/constants/selectors/tags.js +28 -0
- package/dist/cypress-utils/constants/selectors/tags.js.map +1 -0
- package/dist/cypress-utils/constants/texts/common.js +35 -0
- package/dist/cypress-utils/constants/texts/common.js.map +1 -0
- package/dist/cypress-utils/constants/texts/member.js +61 -0
- package/dist/cypress-utils/constants/texts/member.js.map +1 -0
- package/dist/cypress-utils/constants/texts/navigation.js +18 -0
- package/dist/cypress-utils/constants/texts/navigation.js.map +1 -0
- package/dist/cypress-utils/constants/texts/roles.js +20 -0
- package/dist/cypress-utils/constants/texts/roles.js.map +1 -0
- package/dist/cypress-utils/constants/texts/signUp.js +9 -0
- package/dist/cypress-utils/constants/texts/signUp.js.map +1 -0
- package/dist/cypress-utils/constants/texts/tags.js +23 -0
- package/dist/cypress-utils/constants/texts/tags.js.map +1 -0
- package/dist/cypress-utils/fixtures/fake.js +173 -0
- package/dist/cypress-utils/fixtures/fake.js.map +1 -0
- package/dist/cypress-utils/index.js +28 -0
- package/dist/cypress-utils/index.js.map +1 -0
- package/dist/cypress-utils/jsconfig.js +26 -0
- package/dist/cypress-utils/jsconfig.js.map +1 -0
- package/dist/cypress-utils/utils/authentication.js +47 -0
- package/dist/cypress-utils/utils/authentication.js.map +1 -0
- package/dist/cypress-utils/utils/common.js +77 -0
- package/dist/cypress-utils/utils/common.js.map +1 -0
- package/dist/cypress-utils/utils/date.js +23 -0
- package/dist/cypress-utils/utils/date.js.map +1 -0
- package/dist/cypress-utils/utils/email.js +159 -0
- package/dist/cypress-utils/utils/email.js.map +1 -0
- package/dist/cypress-utils/utils/member.js +350 -0
- package/dist/cypress-utils/utils/member.js.map +1 -0
- package/dist/cypress-utils/utils/navigation.js +211 -0
- package/dist/cypress-utils/utils/navigation.js.map +1 -0
- package/dist/cypress-utils/utils/organization.js +107 -0
- package/dist/cypress-utils/utils/organization.js.map +1 -0
- package/dist/cypress-utils/utils/validation.js +16 -0
- package/dist/cypress-utils/utils/validation.js.map +1 -0
- package/dist/defineProperty-18999f8e.js +17 -0
- package/dist/defineProperty-18999f8e.js.map +1 -0
- package/dist/index-fa7de82b.js +440 -0
- package/dist/index-fa7de82b.js.map +1 -0
- package/dist/initializers/axios.js +17 -0
- package/dist/initializers/axios.js.map +1 -0
- package/dist/initializers/axiosInitializer/index.js +272 -0
- package/dist/initializers/axiosInitializer/index.js.map +1 -0
- package/dist/initializers/axiosInitializer/paramsSerializer.js +15 -0
- package/dist/initializers/axiosInitializer/paramsSerializer.js.map +1 -0
- package/dist/initializers/constants.js +17 -0
- package/dist/initializers/constants.js.map +1 -0
- package/dist/initializers/dayjs.js +59 -0
- package/dist/initializers/dayjs.js.map +1 -0
- package/dist/initializers/globalProps.js +14 -0
- package/dist/initializers/globalProps.js.map +1 -0
- package/dist/initializers/i18n.js +607 -0
- package/dist/initializers/i18n.js.map +1 -0
- package/dist/initializers/index.js +74 -0
- package/dist/initializers/index.js.map +1 -0
- package/dist/initializers/logger.js +13 -0
- package/dist/initializers/logger.js.map +1 -0
- package/dist/initializers/mixpanel.js +28 -0
- package/dist/initializers/mixpanel.js.map +1 -0
- package/dist/initializers/reactDevTools.js +22 -0
- package/dist/initializers/reactDevTools.js.map +1 -0
- package/dist/initializers/utils/customFormatters.js +46 -0
- package/dist/initializers/utils/customFormatters.js.map +1 -0
- package/dist/initializers/utils/customPostProcessors.js +17 -0
- package/dist/initializers/utils/customPostProcessors.js.map +1 -0
- package/dist/initializers/utils/utils.js +33 -0
- package/dist/initializers/utils/utils.js.map +1 -0
- package/dist/mixpanel.cjs-55fbae33.js +6344 -0
- package/dist/mixpanel.cjs-55fbae33.js.map +1 -0
- package/dist/objectWithoutProperties-00c72f1d.js +36 -0
- package/dist/objectWithoutProperties-00c72f1d.js.map +1 -0
- package/dist/react-utils/AppContainer/AppContainer.js +55 -0
- package/dist/react-utils/AppContainer/AppContainer.js.map +1 -0
- package/dist/react-utils/AppContainer/index.js +25 -0
- package/dist/react-utils/AppContainer/index.js.map +1 -0
- package/dist/react-utils/BrowserPushNotifications/devices.js +21 -0
- package/dist/react-utils/BrowserPushNotifications/devices.js.map +1 -0
- package/dist/react-utils/BrowserPushNotifications/index.js +7 -0
- package/dist/react-utils/BrowserPushNotifications/index.js.map +1 -0
- package/dist/react-utils/BrowserPushNotifications/pushHelper.js +107 -0
- package/dist/react-utils/BrowserPushNotifications/pushHelper.js.map +1 -0
- package/dist/react-utils/BrowserPushNotifications/registerServiceWorker.js +140 -0
- package/dist/react-utils/BrowserPushNotifications/registerServiceWorker.js.map +1 -0
- package/dist/react-utils/HoneybadgerErrorBoundary/FallbackComponent.js +100 -0
- package/dist/react-utils/HoneybadgerErrorBoundary/FallbackComponent.js.map +1 -0
- package/dist/react-utils/HoneybadgerErrorBoundary/HoneybadgerErrorBoundary.js +58 -0
- package/dist/react-utils/HoneybadgerErrorBoundary/HoneybadgerErrorBoundary.js.map +1 -0
- package/dist/react-utils/HoneybadgerErrorBoundary/constants.js +5 -0
- package/dist/react-utils/HoneybadgerErrorBoundary/constants.js.map +1 -0
- package/dist/react-utils/HoneybadgerErrorBoundary/index.js +14 -0
- package/dist/react-utils/HoneybadgerErrorBoundary/index.js.map +1 -0
- package/dist/react-utils/HoneybadgerErrorBoundary/utils.js +11 -0
- package/dist/react-utils/HoneybadgerErrorBoundary/utils.js.map +1 -0
- package/dist/react-utils/PageTitle/PageTitle.js +16 -0
- package/dist/react-utils/PageTitle/PageTitle.js.map +1 -0
- package/dist/react-utils/PageTitle/index.js +5 -0
- package/dist/react-utils/PageTitle/index.js.map +1 -0
- package/dist/react-utils/PrivateRoute/PrivateRoute.js +42 -0
- package/dist/react-utils/PrivateRoute/PrivateRoute.js.map +1 -0
- package/dist/react-utils/PrivateRoute/index.js +8 -0
- package/dist/react-utils/PrivateRoute/index.js.map +1 -0
- package/dist/react-utils/QueryClientProvider/QueryClientProvider.js +16 -0
- package/dist/react-utils/QueryClientProvider/QueryClientProvider.js.map +1 -0
- package/dist/react-utils/QueryClientProvider/index.js +7 -0
- package/dist/react-utils/QueryClientProvider/index.js.map +1 -0
- package/dist/react-utils/QueryClientProvider/queryClient.js +17 -0
- package/dist/react-utils/QueryClientProvider/queryClient.js.map +1 -0
- package/dist/react-utils/constants/constants.js +6 -0
- package/dist/react-utils/constants/constants.js.map +1 -0
- package/dist/react-utils/constants/index.js +3 -0
- package/dist/react-utils/constants/index.js.map +1 -0
- package/dist/react-utils/constants/query.js +6 -0
- package/dist/react-utils/constants/query.js.map +1 -0
- package/dist/react-utils/index.js +80 -0
- package/dist/react-utils/index.js.map +1 -0
- package/dist/react-utils/metaClick/index.js +3 -0
- package/dist/react-utils/metaClick/index.js.map +1 -0
- package/dist/react-utils/metaClick/metaClick.js +18 -0
- package/dist/react-utils/metaClick/metaClick.js.map +1 -0
- package/dist/react-utils/useBreakpoints/index.js +18 -0
- package/dist/react-utils/useBreakpoints/index.js.map +1 -0
- package/dist/react-utils/useBreakpoints/utils.js +26 -0
- package/dist/react-utils/useBreakpoints/utils.js.map +1 -0
- package/dist/react-utils/useDebounce/index.js +5 -0
- package/dist/react-utils/useDebounce/index.js.map +1 -0
- package/dist/react-utils/useDebounce/useDebounce.js +23 -0
- package/dist/react-utils/useDebounce/useDebounce.js.map +1 -0
- package/dist/react-utils/useDisplayErrorPage/index.js +4 -0
- package/dist/react-utils/useDisplayErrorPage/index.js.map +1 -0
- package/dist/react-utils/useDisplayErrorPage/useDisplayErrorPage.js +17 -0
- package/dist/react-utils/useDisplayErrorPage/useDisplayErrorPage.js.map +1 -0
- package/dist/react-utils/useFetchNeetoApps/apis/neeto_apps.js +11 -0
- package/dist/react-utils/useFetchNeetoApps/apis/neeto_apps.js.map +1 -0
- package/dist/react-utils/useFetchNeetoApps/index.js +21 -0
- package/dist/react-utils/useFetchNeetoApps/index.js.map +1 -0
- package/dist/react-utils/useFetchNeetoApps/useFetchNeetoApps.js +37 -0
- package/dist/react-utils/useFetchNeetoApps/useFetchNeetoApps.js.map +1 -0
- package/dist/react-utils/useFieldSubmit/index.js +3 -0
- package/dist/react-utils/useFieldSubmit/index.js.map +1 -0
- package/dist/react-utils/useFieldSubmit/useFieldSubmit.js +28 -0
- package/dist/react-utils/useFieldSubmit/useFieldSubmit.js.map +1 -0
- package/dist/react-utils/useFuncDebounce/index.js +3 -0
- package/dist/react-utils/useFuncDebounce/index.js.map +1 -0
- package/dist/react-utils/useFuncDebounce/useFuncDebounce.js +22 -0
- package/dist/react-utils/useFuncDebounce/useFuncDebounce.js.map +1 -0
- package/dist/react-utils/useIsElementVisibleInDom/index.js +6 -0
- package/dist/react-utils/useIsElementVisibleInDom/index.js.map +1 -0
- package/dist/react-utils/useIsElementVisibleInDom/useForceUpdate.js +18 -0
- package/dist/react-utils/useIsElementVisibleInDom/useForceUpdate.js.map +1 -0
- package/dist/react-utils/useIsElementVisibleInDom/useIsElementVisibleInDom.js +29 -0
- package/dist/react-utils/useIsElementVisibleInDom/useIsElementVisibleInDom.js.map +1 -0
- package/dist/react-utils/useKeyboardShortcutsPaneState/index.js +4 -0
- package/dist/react-utils/useKeyboardShortcutsPaneState/index.js.map +1 -0
- package/dist/react-utils/useKeyboardShortcutsPaneState/useKeyboardShortcutsPaneState.js +31 -0
- package/dist/react-utils/useKeyboardShortcutsPaneState/useKeyboardShortcutsPaneState.js.map +1 -0
- package/dist/react-utils/useLocalStorage/index.js +22 -0
- package/dist/react-utils/useLocalStorage/index.js.map +1 -0
- package/dist/react-utils/useLocalStorage/useLocalStorage.js +53 -0
- package/dist/react-utils/useLocalStorage/useLocalStorage.js.map +1 -0
- package/dist/react-utils/useMutationWithInvalidation/index.js +6 -0
- package/dist/react-utils/useMutationWithInvalidation/index.js.map +1 -0
- package/dist/react-utils/useMutationWithInvalidation/useMutationWithInvalidation.js +39 -0
- package/dist/react-utils/useMutationWithInvalidation/useMutationWithInvalidation.js.map +1 -0
- package/dist/react-utils/useOnClickOutside/index.js +3 -0
- package/dist/react-utils/useOnClickOutside/index.js.map +1 -0
- package/dist/react-utils/useOnClickOutside/useOnClickOutside.js +27 -0
- package/dist/react-utils/useOnClickOutside/useOnClickOutside.js.map +1 -0
- package/dist/react-utils/usePersistedQuery/index.js +17 -0
- package/dist/react-utils/usePersistedQuery/index.js.map +1 -0
- package/dist/react-utils/usePersistedQuery/usePersistedQuery.js +65 -0
- package/dist/react-utils/usePersistedQuery/usePersistedQuery.js.map +1 -0
- package/dist/react-utils/usePrevious/index.js +3 -0
- package/dist/react-utils/usePrevious/index.js.map +1 -0
- package/dist/react-utils/usePrevious/usePrevious.js +12 -0
- package/dist/react-utils/usePrevious/usePrevious.js.map +1 -0
- package/dist/react-utils/useQueryParams/index.js +15 -0
- package/dist/react-utils/useQueryParams/index.js.map +1 -0
- package/dist/react-utils/useQueryParams/useQueryParams.js +21 -0
- package/dist/react-utils/useQueryParams/useQueryParams.js.map +1 -0
- package/dist/react-utils/useRegisterNavigationCheckpoint/index.js +19 -0
- package/dist/react-utils/useRegisterNavigationCheckpoint/index.js.map +1 -0
- package/dist/react-utils/useRegisterNavigationCheckpoint/useRegisterNavigationCheckpoint.js +79 -0
- package/dist/react-utils/useRegisterNavigationCheckpoint/useRegisterNavigationCheckpoint.js.map +1 -0
- package/dist/react-utils/useRestoreScrollPosition/index.js +7 -0
- package/dist/react-utils/useRestoreScrollPosition/index.js.map +1 -0
- package/dist/react-utils/useRestoreScrollPosition/useRestoreScrollPosition.js +63 -0
- package/dist/react-utils/useRestoreScrollPosition/useRestoreScrollPosition.js.map +1 -0
- package/dist/react-utils/useStateWithDependency/index.js +5 -0
- package/dist/react-utils/useStateWithDependency/index.js.map +1 -0
- package/dist/react-utils/useStateWithDependency/useStateWithDependency.js +18 -0
- package/dist/react-utils/useStateWithDependency/useStateWithDependency.js.map +1 -0
- package/dist/react-utils/useTimer/index.js +4 -0
- package/dist/react-utils/useTimer/index.js.map +1 -0
- package/dist/react-utils/useTimer/useTimer.js +41 -0
- package/dist/react-utils/useTimer/useTimer.js.map +1 -0
- package/dist/react-utils/useUpdateEffect/index.js +3 -0
- package/dist/react-utils/useUpdateEffect/index.js.map +1 -0
- package/dist/react-utils/useUpdateEffect/useUpdateEffect.js +16 -0
- package/dist/react-utils/useUpdateEffect/useUpdateEffect.js.map +1 -0
- package/dist/react-utils/withImmutableActions/index.js +3 -0
- package/dist/react-utils/withImmutableActions/index.js.map +1 -0
- package/dist/react-utils/withImmutableActions/withImmutableActions.js +24 -0
- package/dist/react-utils/withImmutableActions/withImmutableActions.js.map +1 -0
- package/dist/react-utils/withT/index.js +3 -0
- package/dist/react-utils/withT/index.js.map +1 -0
- package/dist/react-utils/withT/withT.js +9 -0
- package/dist/react-utils/withT/withT.js.map +1 -0
- package/dist/react-utils/withTitle/index.js +5 -0
- package/dist/react-utils/withTitle/index.js.map +1 -0
- package/dist/react-utils/withTitle/withTitle.js +22 -0
- package/dist/react-utils/withTitle/withTitle.js.map +1 -0
- package/dist/slicedToArray-5531a6cb.js +46 -0
- package/dist/slicedToArray-5531a6cb.js.map +1 -0
- package/dist/toConsumableArray-7f764fb5.js +20 -0
- package/dist/toConsumableArray-7f764fb5.js.map +1 -0
- package/dist/typeof-92b42de1.js +12 -0
- package/dist/typeof-92b42de1.js.map +1 -0
- package/dist/unsupportedIterableToArray-577176bf.js +21 -0
- package/dist/unsupportedIterableToArray-577176bf.js.map +1 -0
- package/dist/utils/axios.js +12 -0
- package/dist/utils/axios.js.map +1 -0
- package/dist/utils/buildNestedAttributesPayload.js +36 -0
- package/dist/utils/buildNestedAttributesPayload.js.map +1 -0
- package/dist/utils/captureAnalyticsEvent.js +10 -0
- package/dist/utils/captureAnalyticsEvent.js.map +1 -0
- package/dist/utils/captureAnalyticsPageView.js +15 -0
- package/dist/utils/captureAnalyticsPageView.js.map +1 -0
- package/dist/utils/createSubscription.js +28 -0
- package/dist/utils/createSubscription.js.map +1 -0
- package/dist/utils/currencyFormat.js +45 -0
- package/dist/utils/currencyFormat.js.map +1 -0
- package/dist/utils/datetime.js +60 -0
- package/dist/utils/datetime.js.map +1 -0
- package/dist/utils/dayjs.js +3 -0
- package/dist/utils/dayjs.js.map +1 -0
- package/dist/utils/general.js +208 -0
- package/dist/utils/general.js.map +1 -0
- package/dist/utils/index.js +30 -0
- package/dist/utils/index.js.map +1 -0
- package/dist/utils/permissions.js +20 -0
- package/dist/utils/permissions.js.map +1 -0
- package/dist/utils/validators/index.js +5 -0
- package/dist/utils/validators/index.js.map +1 -0
- package/dist/utils/validators/slug.js +51 -0
- package/dist/utils/validators/slug.js.map +1 -0
- package/package.json +154 -20
- package/types.d.ts +54 -0
- package/assets/stylesheets/app-container.css +0 -3
- package/cjs/assets/stylesheets/app-container.css +0 -3
- package/cjs/configs/babel.js +0 -56
- package/cjs/configs/constants.js +0 -93
- package/cjs/configs/eslint/globals.js +0 -14
- package/cjs/configs/eslint/helpers/index.js +0 -74
- package/cjs/configs/eslint/imports/enforced.js +0 -29
- package/cjs/configs/eslint/imports/order.js +0 -65
- package/cjs/configs/eslint/index.js +0 -171
- package/cjs/configs/eslint/overrides.js +0 -26
- package/cjs/configs/eslint/promise.js +0 -8
- package/cjs/configs/eslint/react.js +0 -90
- package/cjs/configs/nanos/eslint/imports/order.js +0 -25
- package/cjs/configs/nanos/eslint/index.js +0 -28
- package/cjs/configs/nanos/tailwind.js +0 -7
- package/cjs/configs/nanos/webpack/resolve.js +0 -54
- package/cjs/configs/nextjs/eslint/imports/order.js +0 -25
- package/cjs/configs/nextjs/eslint/index.js +0 -22
- package/cjs/configs/nextjs/webpack/resolve.js +0 -1
- package/cjs/configs/prettier.js +0 -16
- package/cjs/configs/scripts/dead-code-eliminator/constants.js +0 -21
- package/cjs/configs/scripts/dead-code-eliminator/index.js +0 -268
- package/cjs/configs/scripts/getPkgTranslations.js +0 -45
- package/cjs/configs/scripts/jsdoc-builder/constants.mjs +0 -42
- package/cjs/configs/scripts/jsdoc-builder/index.mjs +0 -67
- package/cjs/configs/scripts/jsdoc-builder/utils.mjs +0 -219
- package/cjs/configs/scripts/remove-unused-translation-keys/constants.js +0 -11
- package/cjs/configs/scripts/remove-unused-translation-keys/index.js +0 -186
- package/cjs/configs/tailwind.js +0 -9
- package/cjs/configs/utils.js +0 -82
- package/cjs/configs/webpack/helpers/customize-default-rules.js +0 -54
- package/cjs/configs/webpack/index.js +0 -106
- package/cjs/configs/webpack/resolve.js +0 -54
- package/cjs/configs/webpack/rules.js +0 -34
- package/cjs/constants/index.js +0 -39
- package/cjs/constants/index.js.map +0 -1
- package/cjs/constants/regex.js +0 -10
- package/cjs/constants/regex.js.map +0 -1
- package/cjs/cypress-configs/initializer.js +0 -32
- package/cjs/cypress-configs/plugins.js +0 -114
- package/cjs/cypress-configs/resolve.js +0 -17
- package/cjs/cypress-configs/webpack.config.js +0 -19
- package/cjs/cypress-utils/commands.js +0 -288
- package/cjs/cypress-utils/commands.js.map +0 -1
- package/cjs/cypress-utils/constants/index.js +0 -13
- package/cjs/cypress-utils/constants/index.js.map +0 -1
- package/cjs/cypress-utils/constants/routes.js +0 -38
- package/cjs/cypress-utils/constants/routes.js.map +0 -1
- package/cjs/cypress-utils/constants/selectors/common.js +0 -100
- package/cjs/cypress-utils/constants/selectors/common.js.map +0 -1
- package/cjs/cypress-utils/constants/selectors/editor.js +0 -28
- package/cjs/cypress-utils/constants/selectors/editor.js.map +0 -1
- package/cjs/cypress-utils/constants/selectors/ipRestriction.js +0 -18
- package/cjs/cypress-utils/constants/selectors/ipRestriction.js.map +0 -1
- package/cjs/cypress-utils/constants/selectors/login.js +0 -20
- package/cjs/cypress-utils/constants/selectors/login.js.map +0 -1
- package/cjs/cypress-utils/constants/selectors/member.js +0 -63
- package/cjs/cypress-utils/constants/selectors/member.js.map +0 -1
- package/cjs/cypress-utils/constants/selectors/navigation.js +0 -26
- package/cjs/cypress-utils/constants/selectors/navigation.js.map +0 -1
- package/cjs/cypress-utils/constants/selectors/roles.js +0 -23
- package/cjs/cypress-utils/constants/selectors/roles.js.map +0 -1
- package/cjs/cypress-utils/constants/selectors/signUp.js +0 -22
- package/cjs/cypress-utils/constants/selectors/signUp.js.map +0 -1
- package/cjs/cypress-utils/constants/selectors/tags.js +0 -29
- package/cjs/cypress-utils/constants/selectors/tags.js.map +0 -1
- package/cjs/cypress-utils/constants/texts/common.js +0 -39
- package/cjs/cypress-utils/constants/texts/common.js.map +0 -1
- package/cjs/cypress-utils/constants/texts/member.js +0 -65
- package/cjs/cypress-utils/constants/texts/member.js.map +0 -1
- package/cjs/cypress-utils/constants/texts/navigation.js +0 -22
- package/cjs/cypress-utils/constants/texts/navigation.js.map +0 -1
- package/cjs/cypress-utils/constants/texts/roles.js +0 -24
- package/cjs/cypress-utils/constants/texts/roles.js.map +0 -1
- package/cjs/cypress-utils/constants/texts/signUp.js +0 -13
- package/cjs/cypress-utils/constants/texts/signUp.js.map +0 -1
- package/cjs/cypress-utils/constants/texts/tags.js +0 -27
- package/cjs/cypress-utils/constants/texts/tags.js.map +0 -1
- package/cjs/cypress-utils/fixtures/fake.js +0 -176
- package/cjs/cypress-utils/fixtures/fake.js.map +0 -1
- package/cjs/cypress-utils/index.js +0 -226
- package/cjs/cypress-utils/index.js.map +0 -1
- package/cjs/cypress-utils/utils/authentication.js +0 -44
- package/cjs/cypress-utils/utils/authentication.js.map +0 -1
- package/cjs/cypress-utils/utils/common.js +0 -81
- package/cjs/cypress-utils/utils/common.js.map +0 -1
- package/cjs/cypress-utils/utils/date.js +0 -27
- package/cjs/cypress-utils/utils/date.js.map +0 -1
- package/cjs/cypress-utils/utils/email.js +0 -163
- package/cjs/cypress-utils/utils/email.js.map +0 -1
- package/cjs/cypress-utils/utils/member.js +0 -353
- package/cjs/cypress-utils/utils/member.js.map +0 -1
- package/cjs/cypress-utils/utils/navigation.js +0 -212
- package/cjs/cypress-utils/utils/navigation.js.map +0 -1
- package/cjs/cypress-utils/utils/organization.js +0 -108
- package/cjs/cypress-utils/utils/organization.js.map +0 -1
- package/cjs/cypress-utils/utils/validation.js +0 -16
- package/cjs/cypress-utils/utils/validation.js.map +0 -1
- package/cjs/initializers/axios.js +0 -10
- package/cjs/initializers/axios.js.map +0 -1
- package/cjs/initializers/axiosInitializer/index.js +0 -274
- package/cjs/initializers/axiosInitializer/index.js.map +0 -1
- package/cjs/initializers/axiosInitializer/paramsSerializer.js +0 -21
- package/cjs/initializers/axiosInitializer/paramsSerializer.js.map +0 -1
- package/cjs/initializers/constants.js +0 -21
- package/cjs/initializers/constants.js.map +0 -1
- package/cjs/initializers/dayjs.js +0 -65
- package/cjs/initializers/dayjs.js.map +0 -1
- package/cjs/initializers/globalProps.js +0 -18
- package/cjs/initializers/globalProps.js.map +0 -1
- package/cjs/initializers/i18n.js +0 -72
- package/cjs/initializers/i18n.js.map +0 -1
- package/cjs/initializers/index.js +0 -56
- package/cjs/initializers/index.js.map +0 -1
- package/cjs/initializers/logger.js +0 -17
- package/cjs/initializers/logger.js.map +0 -1
- package/cjs/initializers/mixpanel.js +0 -31
- package/cjs/initializers/mixpanel.js.map +0 -1
- package/cjs/initializers/reactDevTools.js +0 -26
- package/cjs/initializers/reactDevTools.js.map +0 -1
- package/cjs/initializers/utils/customFormatters.js +0 -50
- package/cjs/initializers/utils/customFormatters.js.map +0 -1
- package/cjs/initializers/utils/customPostProcessors.js +0 -20
- package/cjs/initializers/utils/customPostProcessors.js.map +0 -1
- package/cjs/initializers/utils/utils.js +0 -36
- package/cjs/initializers/utils/utils.js.map +0 -1
- package/cjs/react-utils/AppContainer/AppContainer.js +0 -42
- package/cjs/react-utils/AppContainer/AppContainer.js.map +0 -1
- package/cjs/react-utils/AppContainer/index.js +0 -14
- package/cjs/react-utils/AppContainer/index.js.map +0 -1
- package/cjs/react-utils/BrowserPushNotifications/devices.js +0 -29
- package/cjs/react-utils/BrowserPushNotifications/devices.js.map +0 -1
- package/cjs/react-utils/BrowserPushNotifications/index.js +0 -19
- package/cjs/react-utils/BrowserPushNotifications/index.js.map +0 -1
- package/cjs/react-utils/BrowserPushNotifications/pushHelper.js +0 -114
- package/cjs/react-utils/BrowserPushNotifications/pushHelper.js.map +0 -1
- package/cjs/react-utils/BrowserPushNotifications/registerServiceWorker.js +0 -144
- package/cjs/react-utils/BrowserPushNotifications/registerServiceWorker.js.map +0 -1
- package/cjs/react-utils/HoneybadgerErrorBoundary/FallbackComponent.js +0 -108
- package/cjs/react-utils/HoneybadgerErrorBoundary/FallbackComponent.js.map +0 -1
- package/cjs/react-utils/HoneybadgerErrorBoundary/HoneybadgerErrorBoundary.js +0 -56
- package/cjs/react-utils/HoneybadgerErrorBoundary/HoneybadgerErrorBoundary.js.map +0 -1
- package/cjs/react-utils/HoneybadgerErrorBoundary/constants.js +0 -9
- package/cjs/react-utils/HoneybadgerErrorBoundary/constants.js.map +0 -1
- package/cjs/react-utils/HoneybadgerErrorBoundary/index.js +0 -14
- package/cjs/react-utils/HoneybadgerErrorBoundary/index.js.map +0 -1
- package/cjs/react-utils/HoneybadgerErrorBoundary/utils.js +0 -15
- package/cjs/react-utils/HoneybadgerErrorBoundary/utils.js.map +0 -1
- package/cjs/react-utils/PageTitle/PageTitle.js +0 -21
- package/cjs/react-utils/PageTitle/PageTitle.js.map +0 -1
- package/cjs/react-utils/PageTitle/index.js +0 -14
- package/cjs/react-utils/PageTitle/index.js.map +0 -1
- package/cjs/react-utils/PrivateRoute/PrivateRoute.js +0 -47
- package/cjs/react-utils/PrivateRoute/PrivateRoute.js.map +0 -1
- package/cjs/react-utils/PrivateRoute/index.js +0 -14
- package/cjs/react-utils/PrivateRoute/index.js.map +0 -1
- package/cjs/react-utils/QueryClientProvider/QueryClientProvider.js +0 -19
- package/cjs/react-utils/QueryClientProvider/QueryClientProvider.js.map +0 -1
- package/cjs/react-utils/QueryClientProvider/index.js +0 -21
- package/cjs/react-utils/QueryClientProvider/index.js.map +0 -1
- package/cjs/react-utils/QueryClientProvider/queryClient.js +0 -22
- package/cjs/react-utils/QueryClientProvider/queryClient.js.map +0 -1
- package/cjs/react-utils/constants/constants.js +0 -10
- package/cjs/react-utils/constants/constants.js.map +0 -1
- package/cjs/react-utils/constants/index.js +0 -28
- package/cjs/react-utils/constants/index.js.map +0 -1
- package/cjs/react-utils/constants/query.js +0 -10
- package/cjs/react-utils/constants/query.js.map +0 -1
- package/cjs/react-utils/index.js +0 -296
- package/cjs/react-utils/index.js.map +0 -1
- package/cjs/react-utils/metaClick/index.js +0 -17
- package/cjs/react-utils/metaClick/index.js.map +0 -1
- package/cjs/react-utils/metaClick/metaClick.js +0 -21
- package/cjs/react-utils/metaClick/metaClick.js.map +0 -1
- package/cjs/react-utils/useBreakpoints/index.js +0 -21
- package/cjs/react-utils/useBreakpoints/index.js.map +0 -1
- package/cjs/react-utils/useBreakpoints/utils.js +0 -30
- package/cjs/react-utils/useBreakpoints/utils.js.map +0 -1
- package/cjs/react-utils/useDebounce/index.js +0 -14
- package/cjs/react-utils/useDebounce/index.js.map +0 -1
- package/cjs/react-utils/useDebounce/useDebounce.js +0 -27
- package/cjs/react-utils/useDebounce/useDebounce.js.map +0 -1
- package/cjs/react-utils/useDisplayErrorPage/index.js +0 -28
- package/cjs/react-utils/useDisplayErrorPage/index.js.map +0 -1
- package/cjs/react-utils/useDisplayErrorPage/useDisplayErrorPage.js +0 -21
- package/cjs/react-utils/useDisplayErrorPage/useDisplayErrorPage.js.map +0 -1
- package/cjs/react-utils/useFetchNeetoApps/apis/neeto_apps.js +0 -16
- package/cjs/react-utils/useFetchNeetoApps/apis/neeto_apps.js.map +0 -1
- package/cjs/react-utils/useFetchNeetoApps/index.js +0 -14
- package/cjs/react-utils/useFetchNeetoApps/index.js.map +0 -1
- package/cjs/react-utils/useFetchNeetoApps/useFetchNeetoApps.js +0 -29
- package/cjs/react-utils/useFetchNeetoApps/useFetchNeetoApps.js.map +0 -1
- package/cjs/react-utils/useFieldSubmit/index.js +0 -14
- package/cjs/react-utils/useFieldSubmit/index.js.map +0 -1
- package/cjs/react-utils/useFieldSubmit/useFieldSubmit.js +0 -32
- package/cjs/react-utils/useFieldSubmit/useFieldSubmit.js.map +0 -1
- package/cjs/react-utils/useFuncDebounce/index.js +0 -14
- package/cjs/react-utils/useFuncDebounce/index.js.map +0 -1
- package/cjs/react-utils/useFuncDebounce/useFuncDebounce.js +0 -26
- package/cjs/react-utils/useFuncDebounce/useFuncDebounce.js.map +0 -1
- package/cjs/react-utils/useIsElementVisibleInDom/index.js +0 -14
- package/cjs/react-utils/useIsElementVisibleInDom/index.js.map +0 -1
- package/cjs/react-utils/useIsElementVisibleInDom/useForceUpdate.js +0 -22
- package/cjs/react-utils/useIsElementVisibleInDom/useForceUpdate.js.map +0 -1
- package/cjs/react-utils/useIsElementVisibleInDom/useIsElementVisibleInDom.js +0 -33
- package/cjs/react-utils/useIsElementVisibleInDom/useIsElementVisibleInDom.js.map +0 -1
- package/cjs/react-utils/useKeyboardShortcutsPaneState/index.js +0 -14
- package/cjs/react-utils/useKeyboardShortcutsPaneState/index.js.map +0 -1
- package/cjs/react-utils/useKeyboardShortcutsPaneState/useKeyboardShortcutsPaneState.js +0 -35
- package/cjs/react-utils/useKeyboardShortcutsPaneState/useKeyboardShortcutsPaneState.js.map +0 -1
- package/cjs/react-utils/useLocalStorage/index.js +0 -14
- package/cjs/react-utils/useLocalStorage/index.js.map +0 -1
- package/cjs/react-utils/useLocalStorage/useLocalStorage.js +0 -44
- package/cjs/react-utils/useLocalStorage/useLocalStorage.js.map +0 -1
- package/cjs/react-utils/useMutationWithInvalidation/index.js +0 -14
- package/cjs/react-utils/useMutationWithInvalidation/index.js.map +0 -1
- package/cjs/react-utils/useMutationWithInvalidation/useMutationWithInvalidation.js +0 -44
- package/cjs/react-utils/useMutationWithInvalidation/useMutationWithInvalidation.js.map +0 -1
- package/cjs/react-utils/useOnClickOutside/index.js +0 -14
- package/cjs/react-utils/useOnClickOutside/index.js.map +0 -1
- package/cjs/react-utils/useOnClickOutside/useOnClickOutside.js +0 -31
- package/cjs/react-utils/useOnClickOutside/useOnClickOutside.js.map +0 -1
- package/cjs/react-utils/usePersistedQuery/index.js +0 -14
- package/cjs/react-utils/usePersistedQuery/index.js.map +0 -1
- package/cjs/react-utils/usePersistedQuery/usePersistedQuery.js +0 -61
- package/cjs/react-utils/usePersistedQuery/usePersistedQuery.js.map +0 -1
- package/cjs/react-utils/usePrevious/index.js +0 -14
- package/cjs/react-utils/usePrevious/index.js.map +0 -1
- package/cjs/react-utils/usePrevious/usePrevious.js +0 -16
- package/cjs/react-utils/usePrevious/usePrevious.js.map +0 -1
- package/cjs/react-utils/useQueryParams/index.js +0 -14
- package/cjs/react-utils/useQueryParams/index.js.map +0 -1
- package/cjs/react-utils/useQueryParams/useQueryParams.js +0 -14
- package/cjs/react-utils/useQueryParams/useQueryParams.js.map +0 -1
- package/cjs/react-utils/useRegisterNavigationCheckpoint/index.js +0 -28
- package/cjs/react-utils/useRegisterNavigationCheckpoint/index.js.map +0 -1
- package/cjs/react-utils/useRegisterNavigationCheckpoint/useRegisterNavigationCheckpoint.js +0 -75
- package/cjs/react-utils/useRegisterNavigationCheckpoint/useRegisterNavigationCheckpoint.js.map +0 -1
- package/cjs/react-utils/useRestoreScrollPosition/index.js +0 -28
- package/cjs/react-utils/useRestoreScrollPosition/index.js.map +0 -1
- package/cjs/react-utils/useRestoreScrollPosition/useRestoreScrollPosition.js +0 -68
- package/cjs/react-utils/useRestoreScrollPosition/useRestoreScrollPosition.js.map +0 -1
- package/cjs/react-utils/useStateWithDependency/index.js +0 -14
- package/cjs/react-utils/useStateWithDependency/index.js.map +0 -1
- package/cjs/react-utils/useStateWithDependency/useStateWithDependency.js +0 -22
- package/cjs/react-utils/useStateWithDependency/useStateWithDependency.js.map +0 -1
- package/cjs/react-utils/useTimer/index.js +0 -14
- package/cjs/react-utils/useTimer/index.js.map +0 -1
- package/cjs/react-utils/useTimer/useTimer.js +0 -45
- package/cjs/react-utils/useTimer/useTimer.js.map +0 -1
- package/cjs/react-utils/useUpdateEffect/index.js +0 -14
- package/cjs/react-utils/useUpdateEffect/index.js.map +0 -1
- package/cjs/react-utils/useUpdateEffect/useUpdateEffect.js +0 -20
- package/cjs/react-utils/useUpdateEffect/useUpdateEffect.js.map +0 -1
- package/cjs/react-utils/withImmutableActions/index.js +0 -14
- package/cjs/react-utils/withImmutableActions/index.js.map +0 -1
- package/cjs/react-utils/withImmutableActions/withImmutableActions.js +0 -28
- package/cjs/react-utils/withImmutableActions/withImmutableActions.js.map +0 -1
- package/cjs/react-utils/withT/index.js +0 -14
- package/cjs/react-utils/withT/index.js.map +0 -1
- package/cjs/react-utils/withT/withT.js +0 -13
- package/cjs/react-utils/withT/withT.js.map +0 -1
- package/cjs/react-utils/withTitle/index.js +0 -14
- package/cjs/react-utils/withTitle/index.js.map +0 -1
- package/cjs/react-utils/withTitle/withTitle.js +0 -27
- package/cjs/react-utils/withTitle/withTitle.js.map +0 -1
- package/cjs/utils/axios.js +0 -16
- package/cjs/utils/axios.js.map +0 -1
- package/cjs/utils/buildNestedAttributesPayload.js +0 -39
- package/cjs/utils/buildNestedAttributesPayload.js.map +0 -1
- package/cjs/utils/captureAnalyticsEvent.js +0 -13
- package/cjs/utils/captureAnalyticsEvent.js.map +0 -1
- package/cjs/utils/captureAnalyticsPageView.js +0 -18
- package/cjs/utils/captureAnalyticsPageView.js.map +0 -1
- package/cjs/utils/createSubscription.js +0 -20
- package/cjs/utils/createSubscription.js.map +0 -1
- package/cjs/utils/currencyFormat.js +0 -49
- package/cjs/utils/currencyFormat.js.map +0 -1
- package/cjs/utils/datetime.js +0 -65
- package/cjs/utils/datetime.js.map +0 -1
- package/cjs/utils/dayjs.js +0 -24
- package/cjs/utils/dayjs.js.map +0 -1
- package/cjs/utils/general.js +0 -211
- package/cjs/utils/general.js.map +0 -1
- package/cjs/utils/index.js +0 -137
- package/cjs/utils/index.js.map +0 -1
- package/cjs/utils/permissions.js +0 -24
- package/cjs/utils/permissions.js.map +0 -1
- package/cjs/utils/validators/index.js +0 -17
- package/cjs/utils/validators/index.js.map +0 -1
- package/cjs/utils/validators/slug.js +0 -57
- package/cjs/utils/validators/slug.js.map +0 -1
- package/constants/index.js +0 -14
- package/constants/index.js.map +0 -1
- package/constants/regex.js +0 -4
- package/constants/regex.js.map +0 -1
- package/cypress-utils/commands.js +0 -281
- package/cypress-utils/commands.js.map +0 -1
- package/cypress-utils/constants/index.js +0 -7
- package/cypress-utils/constants/index.js.map +0 -1
- package/cypress-utils/constants/routes.js +0 -33
- package/cypress-utils/constants/routes.js.map +0 -1
- package/cypress-utils/constants/selectors/common.js +0 -94
- package/cypress-utils/constants/selectors/common.js.map +0 -1
- package/cypress-utils/constants/selectors/editor.js +0 -22
- package/cypress-utils/constants/selectors/editor.js.map +0 -1
- package/cypress-utils/constants/selectors/ipRestriction.js +0 -12
- package/cypress-utils/constants/selectors/ipRestriction.js.map +0 -1
- package/cypress-utils/constants/selectors/login.js +0 -14
- package/cypress-utils/constants/selectors/login.js.map +0 -1
- package/cypress-utils/constants/selectors/member.js +0 -57
- package/cypress-utils/constants/selectors/member.js.map +0 -1
- package/cypress-utils/constants/selectors/navigation.js +0 -20
- package/cypress-utils/constants/selectors/navigation.js.map +0 -1
- package/cypress-utils/constants/selectors/roles.js +0 -17
- package/cypress-utils/constants/selectors/roles.js.map +0 -1
- package/cypress-utils/constants/selectors/signUp.js +0 -16
- package/cypress-utils/constants/selectors/signUp.js.map +0 -1
- package/cypress-utils/constants/selectors/tags.js +0 -23
- package/cypress-utils/constants/selectors/tags.js.map +0 -1
- package/cypress-utils/constants/texts/common.js +0 -33
- package/cypress-utils/constants/texts/common.js.map +0 -1
- package/cypress-utils/constants/texts/member.js +0 -59
- package/cypress-utils/constants/texts/member.js.map +0 -1
- package/cypress-utils/constants/texts/navigation.js +0 -16
- package/cypress-utils/constants/texts/navigation.js.map +0 -1
- package/cypress-utils/constants/texts/roles.js +0 -18
- package/cypress-utils/constants/texts/roles.js.map +0 -1
- package/cypress-utils/constants/texts/signUp.js +0 -7
- package/cypress-utils/constants/texts/signUp.js.map +0 -1
- package/cypress-utils/constants/texts/tags.js +0 -21
- package/cypress-utils/constants/texts/tags.js.map +0 -1
- package/cypress-utils/fixtures/fake.js +0 -171
- package/cypress-utils/fixtures/fake.js.map +0 -1
- package/cypress-utils/index.js +0 -21
- package/cypress-utils/index.js.map +0 -1
- package/cypress-utils/utils/authentication.js +0 -38
- package/cypress-utils/utils/authentication.js.map +0 -1
- package/cypress-utils/utils/common.js +0 -75
- package/cypress-utils/utils/common.js.map +0 -1
- package/cypress-utils/utils/date.js +0 -20
- package/cypress-utils/utils/date.js.map +0 -1
- package/cypress-utils/utils/email.js +0 -156
- package/cypress-utils/utils/email.js.map +0 -1
- package/cypress-utils/utils/member.js +0 -346
- package/cypress-utils/utils/member.js.map +0 -1
- package/cypress-utils/utils/navigation.js +0 -205
- package/cypress-utils/utils/navigation.js.map +0 -1
- package/cypress-utils/utils/organization.js +0 -102
- package/cypress-utils/utils/organization.js.map +0 -1
- package/cypress-utils/utils/validation.js +0 -10
- package/cypress-utils/utils/validation.js.map +0 -1
- package/initializers/axios.js +0 -3
- package/initializers/axios.js.map +0 -1
- package/initializers/axiosInitializer/index.js +0 -267
- package/initializers/axiosInitializer/index.js.map +0 -1
- package/initializers/axiosInitializer/paramsSerializer.js +0 -13
- package/initializers/axiosInitializer/paramsSerializer.js.map +0 -1
- package/initializers/constants.js +0 -15
- package/initializers/constants.js.map +0 -1
- package/initializers/dayjs.js +0 -59
- package/initializers/dayjs.js.map +0 -1
- package/initializers/globalProps.js +0 -11
- package/initializers/globalProps.js.map +0 -1
- package/initializers/i18n.js +0 -67
- package/initializers/i18n.js.map +0 -1
- package/initializers/index.js +0 -34
- package/initializers/index.js.map +0 -1
- package/initializers/logger.js +0 -10
- package/initializers/logger.js.map +0 -1
- package/initializers/mixpanel.js +0 -24
- package/initializers/mixpanel.js.map +0 -1
- package/initializers/reactDevTools.js +0 -19
- package/initializers/reactDevTools.js.map +0 -1
- package/initializers/utils/customFormatters.js +0 -43
- package/initializers/utils/customFormatters.js.map +0 -1
- package/initializers/utils/customPostProcessors.js +0 -14
- package/initializers/utils/customPostProcessors.js.map +0 -1
- package/initializers/utils/utils.js +0 -30
- package/initializers/utils/utils.js.map +0 -1
- package/react-utils/AppContainer/AppContainer.js +0 -35
- package/react-utils/AppContainer/AppContainer.js.map +0 -1
- package/react-utils/AppContainer/index.js +0 -1
- package/react-utils/AppContainer/index.js.map +0 -1
- package/react-utils/BrowserPushNotifications/devices.js +0 -22
- package/react-utils/BrowserPushNotifications/devices.js.map +0 -1
- package/react-utils/BrowserPushNotifications/index.js +0 -1
- package/react-utils/BrowserPushNotifications/index.js.map +0 -1
- package/react-utils/BrowserPushNotifications/pushHelper.js +0 -107
- package/react-utils/BrowserPushNotifications/pushHelper.js.map +0 -1
- package/react-utils/BrowserPushNotifications/registerServiceWorker.js +0 -137
- package/react-utils/BrowserPushNotifications/registerServiceWorker.js.map +0 -1
- package/react-utils/HoneybadgerErrorBoundary/FallbackComponent.js +0 -99
- package/react-utils/HoneybadgerErrorBoundary/FallbackComponent.js.map +0 -1
- package/react-utils/HoneybadgerErrorBoundary/HoneybadgerErrorBoundary.js +0 -51
- package/react-utils/HoneybadgerErrorBoundary/HoneybadgerErrorBoundary.js.map +0 -1
- package/react-utils/HoneybadgerErrorBoundary/constants.js +0 -3
- package/react-utils/HoneybadgerErrorBoundary/constants.js.map +0 -1
- package/react-utils/HoneybadgerErrorBoundary/index.js +0 -1
- package/react-utils/HoneybadgerErrorBoundary/index.js.map +0 -1
- package/react-utils/HoneybadgerErrorBoundary/utils.js +0 -9
- package/react-utils/HoneybadgerErrorBoundary/utils.js.map +0 -1
- package/react-utils/PageTitle/PageTitle.js +0 -14
- package/react-utils/PageTitle/PageTitle.js.map +0 -1
- package/react-utils/PageTitle/index.js +0 -1
- package/react-utils/PageTitle/index.js.map +0 -1
- package/react-utils/PrivateRoute/PrivateRoute.js +0 -40
- package/react-utils/PrivateRoute/PrivateRoute.js.map +0 -1
- package/react-utils/PrivateRoute/index.js +0 -1
- package/react-utils/PrivateRoute/index.js.map +0 -1
- package/react-utils/QueryClientProvider/QueryClientProvider.js +0 -12
- package/react-utils/QueryClientProvider/QueryClientProvider.js.map +0 -1
- package/react-utils/QueryClientProvider/index.js +0 -3
- package/react-utils/QueryClientProvider/index.js.map +0 -1
- package/react-utils/QueryClientProvider/queryClient.js +0 -16
- package/react-utils/QueryClientProvider/queryClient.js.map +0 -1
- package/react-utils/constants/constants.js +0 -4
- package/react-utils/constants/constants.js.map +0 -1
- package/react-utils/constants/index.js +0 -3
- package/react-utils/constants/index.js.map +0 -1
- package/react-utils/constants/query.js +0 -4
- package/react-utils/constants/query.js.map +0 -1
- package/react-utils/index.js +0 -39
- package/react-utils/index.js.map +0 -1
- package/react-utils/metaClick/index.js +0 -1
- package/react-utils/metaClick/index.js.map +0 -1
- package/react-utils/metaClick/metaClick.js +0 -15
- package/react-utils/metaClick/metaClick.js.map +0 -1
- package/react-utils/useBreakpoints/index.js +0 -15
- package/react-utils/useBreakpoints/index.js.map +0 -1
- package/react-utils/useBreakpoints/utils.js +0 -23
- package/react-utils/useBreakpoints/utils.js.map +0 -1
- package/react-utils/useDebounce/index.js +0 -1
- package/react-utils/useDebounce/index.js.map +0 -1
- package/react-utils/useDebounce/useDebounce.js +0 -20
- package/react-utils/useDebounce/useDebounce.js.map +0 -1
- package/react-utils/useDisplayErrorPage/index.js +0 -3
- package/react-utils/useDisplayErrorPage/index.js.map +0 -1
- package/react-utils/useDisplayErrorPage/useDisplayErrorPage.js +0 -15
- package/react-utils/useDisplayErrorPage/useDisplayErrorPage.js.map +0 -1
- package/react-utils/useFetchNeetoApps/apis/neeto_apps.js +0 -9
- package/react-utils/useFetchNeetoApps/apis/neeto_apps.js.map +0 -1
- package/react-utils/useFetchNeetoApps/index.js +0 -1
- package/react-utils/useFetchNeetoApps/index.js.map +0 -1
- package/react-utils/useFetchNeetoApps/useFetchNeetoApps.js +0 -22
- package/react-utils/useFetchNeetoApps/useFetchNeetoApps.js.map +0 -1
- package/react-utils/useFieldSubmit/index.js +0 -1
- package/react-utils/useFieldSubmit/index.js.map +0 -1
- package/react-utils/useFieldSubmit/useFieldSubmit.js +0 -26
- package/react-utils/useFieldSubmit/useFieldSubmit.js.map +0 -1
- package/react-utils/useFuncDebounce/index.js +0 -1
- package/react-utils/useFuncDebounce/index.js.map +0 -1
- package/react-utils/useFuncDebounce/useFuncDebounce.js +0 -20
- package/react-utils/useFuncDebounce/useFuncDebounce.js.map +0 -1
- package/react-utils/useIsElementVisibleInDom/index.js +0 -1
- package/react-utils/useIsElementVisibleInDom/index.js.map +0 -1
- package/react-utils/useIsElementVisibleInDom/useForceUpdate.js +0 -15
- package/react-utils/useIsElementVisibleInDom/useForceUpdate.js.map +0 -1
- package/react-utils/useIsElementVisibleInDom/useIsElementVisibleInDom.js +0 -26
- package/react-utils/useIsElementVisibleInDom/useIsElementVisibleInDom.js.map +0 -1
- package/react-utils/useKeyboardShortcutsPaneState/index.js +0 -1
- package/react-utils/useKeyboardShortcutsPaneState/index.js.map +0 -1
- package/react-utils/useKeyboardShortcutsPaneState/useKeyboardShortcutsPaneState.js +0 -29
- package/react-utils/useKeyboardShortcutsPaneState/useKeyboardShortcutsPaneState.js.map +0 -1
- package/react-utils/useLocalStorage/index.js +0 -1
- package/react-utils/useLocalStorage/index.js.map +0 -1
- package/react-utils/useLocalStorage/useLocalStorage.js +0 -37
- package/react-utils/useLocalStorage/useLocalStorage.js.map +0 -1
- package/react-utils/useMutationWithInvalidation/index.js +0 -1
- package/react-utils/useMutationWithInvalidation/index.js.map +0 -1
- package/react-utils/useMutationWithInvalidation/useMutationWithInvalidation.js +0 -37
- package/react-utils/useMutationWithInvalidation/useMutationWithInvalidation.js.map +0 -1
- package/react-utils/useOnClickOutside/index.js +0 -1
- package/react-utils/useOnClickOutside/index.js.map +0 -1
- package/react-utils/useOnClickOutside/useOnClickOutside.js +0 -25
- package/react-utils/useOnClickOutside/useOnClickOutside.js.map +0 -1
- package/react-utils/usePersistedQuery/index.js +0 -1
- package/react-utils/usePersistedQuery/index.js.map +0 -1
- package/react-utils/usePersistedQuery/usePersistedQuery.js +0 -54
- package/react-utils/usePersistedQuery/usePersistedQuery.js.map +0 -1
- package/react-utils/usePrevious/index.js +0 -1
- package/react-utils/usePrevious/index.js.map +0 -1
- package/react-utils/usePrevious/usePrevious.js +0 -10
- package/react-utils/usePrevious/usePrevious.js.map +0 -1
- package/react-utils/useQueryParams/index.js +0 -1
- package/react-utils/useQueryParams/index.js.map +0 -1
- package/react-utils/useQueryParams/useQueryParams.js +0 -8
- package/react-utils/useQueryParams/useQueryParams.js.map +0 -1
- package/react-utils/useRegisterNavigationCheckpoint/index.js +0 -3
- package/react-utils/useRegisterNavigationCheckpoint/index.js.map +0 -1
- package/react-utils/useRegisterNavigationCheckpoint/useRegisterNavigationCheckpoint.js +0 -68
- package/react-utils/useRegisterNavigationCheckpoint/useRegisterNavigationCheckpoint.js.map +0 -1
- package/react-utils/useRestoreScrollPosition/index.js +0 -3
- package/react-utils/useRestoreScrollPosition/index.js.map +0 -1
- package/react-utils/useRestoreScrollPosition/useRestoreScrollPosition.js +0 -62
- package/react-utils/useRestoreScrollPosition/useRestoreScrollPosition.js.map +0 -1
- package/react-utils/useStateWithDependency/index.js +0 -1
- package/react-utils/useStateWithDependency/index.js.map +0 -1
- package/react-utils/useStateWithDependency/useStateWithDependency.js +0 -15
- package/react-utils/useStateWithDependency/useStateWithDependency.js.map +0 -1
- package/react-utils/useTimer/index.js +0 -1
- package/react-utils/useTimer/index.js.map +0 -1
- package/react-utils/useTimer/useTimer.js +0 -39
- package/react-utils/useTimer/useTimer.js.map +0 -1
- package/react-utils/useUpdateEffect/index.js +0 -1
- package/react-utils/useUpdateEffect/index.js.map +0 -1
- package/react-utils/useUpdateEffect/useUpdateEffect.js +0 -14
- package/react-utils/useUpdateEffect/useUpdateEffect.js.map +0 -1
- package/react-utils/withImmutableActions/index.js +0 -1
- package/react-utils/withImmutableActions/index.js.map +0 -1
- package/react-utils/withImmutableActions/withImmutableActions.js +0 -22
- package/react-utils/withImmutableActions/withImmutableActions.js.map +0 -1
- package/react-utils/withT/index.js +0 -1
- package/react-utils/withT/index.js.map +0 -1
- package/react-utils/withT/withT.js +0 -7
- package/react-utils/withT/withT.js.map +0 -1
- package/react-utils/withTitle/index.js +0 -1
- package/react-utils/withTitle/index.js.map +0 -1
- package/react-utils/withTitle/withTitle.js +0 -21
- package/react-utils/withTitle/withTitle.js.map +0 -1
- package/translations/en.json +0 -110
- package/utils/axios.js +0 -10
- package/utils/axios.js.map +0 -1
- package/utils/buildNestedAttributesPayload.js +0 -32
- package/utils/buildNestedAttributesPayload.js.map +0 -1
- package/utils/captureAnalyticsEvent.js +0 -6
- package/utils/captureAnalyticsEvent.js.map +0 -1
- package/utils/captureAnalyticsPageView.js +0 -11
- package/utils/captureAnalyticsPageView.js.map +0 -1
- package/utils/createSubscription.js +0 -14
- package/utils/createSubscription.js.map +0 -1
- package/utils/currencyFormat.js +0 -42
- package/utils/currencyFormat.js.map +0 -1
- package/utils/datetime.js +0 -57
- package/utils/datetime.js.map +0 -1
- package/utils/dayjs.js +0 -24
- package/utils/dayjs.js.map +0 -1
- package/utils/general.js +0 -204
- package/utils/general.js.map +0 -1
- package/utils/index.js +0 -12
- package/utils/index.js.map +0 -1
- package/utils/permissions.js +0 -18
- package/utils/permissions.js.map +0 -1
- package/utils/validators/index.js +0 -1
- package/utils/validators/index.js.map +0 -1
- package/utils/validators/slug.js +0 -48
- package/utils/validators/slug.js.map +0 -1
- /package/{cjs → dist}/translations/en.json +0 -0
|
@@ -0,0 +1,443 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var _commonjsHelpers = require('./_commonjsHelpers-755157d3.js');
|
|
4
|
+
|
|
5
|
+
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
|
6
|
+
try {
|
|
7
|
+
var info = gen[key](arg);
|
|
8
|
+
var value = info.value;
|
|
9
|
+
} catch (error) {
|
|
10
|
+
reject(error);
|
|
11
|
+
return;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
if (info.done) {
|
|
15
|
+
resolve(value);
|
|
16
|
+
} else {
|
|
17
|
+
Promise.resolve(value).then(_next, _throw);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
function _asyncToGenerator(fn) {
|
|
22
|
+
return function () {
|
|
23
|
+
var self = this,
|
|
24
|
+
args = arguments;
|
|
25
|
+
return new Promise(function (resolve, reject) {
|
|
26
|
+
var gen = fn.apply(self, args);
|
|
27
|
+
|
|
28
|
+
function _next(value) {
|
|
29
|
+
asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
function _throw(err) {
|
|
33
|
+
asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
_next(undefined);
|
|
37
|
+
});
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
var regeneratorRuntime$1 = {exports: {}};
|
|
42
|
+
|
|
43
|
+
var _typeof = {exports: {}};
|
|
44
|
+
|
|
45
|
+
_typeof.exports;
|
|
46
|
+
|
|
47
|
+
(function (module) {
|
|
48
|
+
function _typeof(obj) {
|
|
49
|
+
"@babel/helpers - typeof";
|
|
50
|
+
|
|
51
|
+
return (module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) {
|
|
52
|
+
return typeof obj;
|
|
53
|
+
} : function (obj) {
|
|
54
|
+
return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
55
|
+
}, module.exports.__esModule = true, module.exports["default"] = module.exports), _typeof(obj);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
59
|
+
} (_typeof));
|
|
60
|
+
|
|
61
|
+
var _typeofExports = _typeof.exports;
|
|
62
|
+
|
|
63
|
+
regeneratorRuntime$1.exports;
|
|
64
|
+
|
|
65
|
+
(function (module) {
|
|
66
|
+
var _typeof = _typeofExports["default"];
|
|
67
|
+
|
|
68
|
+
function _regeneratorRuntime() {
|
|
69
|
+
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
|
70
|
+
|
|
71
|
+
module.exports = _regeneratorRuntime = function _regeneratorRuntime() {
|
|
72
|
+
return exports;
|
|
73
|
+
}, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
74
|
+
var exports = {},
|
|
75
|
+
Op = Object.prototype,
|
|
76
|
+
hasOwn = Op.hasOwnProperty,
|
|
77
|
+
$Symbol = "function" == typeof Symbol ? Symbol : {},
|
|
78
|
+
iteratorSymbol = $Symbol.iterator || "@@iterator",
|
|
79
|
+
asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator",
|
|
80
|
+
toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag";
|
|
81
|
+
|
|
82
|
+
function define(obj, key, value) {
|
|
83
|
+
return Object.defineProperty(obj, key, {
|
|
84
|
+
value: value,
|
|
85
|
+
enumerable: !0,
|
|
86
|
+
configurable: !0,
|
|
87
|
+
writable: !0
|
|
88
|
+
}), obj[key];
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
try {
|
|
92
|
+
define({}, "");
|
|
93
|
+
} catch (err) {
|
|
94
|
+
define = function define(obj, key, value) {
|
|
95
|
+
return obj[key] = value;
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
function wrap(innerFn, outerFn, self, tryLocsList) {
|
|
100
|
+
var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator,
|
|
101
|
+
generator = Object.create(protoGenerator.prototype),
|
|
102
|
+
context = new Context(tryLocsList || []);
|
|
103
|
+
return generator._invoke = function (innerFn, self, context) {
|
|
104
|
+
var state = "suspendedStart";
|
|
105
|
+
return function (method, arg) {
|
|
106
|
+
if ("executing" === state) throw new Error("Generator is already running");
|
|
107
|
+
|
|
108
|
+
if ("completed" === state) {
|
|
109
|
+
if ("throw" === method) throw arg;
|
|
110
|
+
return doneResult();
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
for (context.method = method, context.arg = arg;;) {
|
|
114
|
+
var delegate = context.delegate;
|
|
115
|
+
|
|
116
|
+
if (delegate) {
|
|
117
|
+
var delegateResult = maybeInvokeDelegate(delegate, context);
|
|
118
|
+
|
|
119
|
+
if (delegateResult) {
|
|
120
|
+
if (delegateResult === ContinueSentinel) continue;
|
|
121
|
+
return delegateResult;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) {
|
|
126
|
+
if ("suspendedStart" === state) throw state = "completed", context.arg;
|
|
127
|
+
context.dispatchException(context.arg);
|
|
128
|
+
} else "return" === context.method && context.abrupt("return", context.arg);
|
|
129
|
+
state = "executing";
|
|
130
|
+
var record = tryCatch(innerFn, self, context);
|
|
131
|
+
|
|
132
|
+
if ("normal" === record.type) {
|
|
133
|
+
if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue;
|
|
134
|
+
return {
|
|
135
|
+
value: record.arg,
|
|
136
|
+
done: context.done
|
|
137
|
+
};
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
"throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg);
|
|
141
|
+
}
|
|
142
|
+
};
|
|
143
|
+
}(innerFn, self, context), generator;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
function tryCatch(fn, obj, arg) {
|
|
147
|
+
try {
|
|
148
|
+
return {
|
|
149
|
+
type: "normal",
|
|
150
|
+
arg: fn.call(obj, arg)
|
|
151
|
+
};
|
|
152
|
+
} catch (err) {
|
|
153
|
+
return {
|
|
154
|
+
type: "throw",
|
|
155
|
+
arg: err
|
|
156
|
+
};
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
exports.wrap = wrap;
|
|
161
|
+
var ContinueSentinel = {};
|
|
162
|
+
|
|
163
|
+
function Generator() {}
|
|
164
|
+
|
|
165
|
+
function GeneratorFunction() {}
|
|
166
|
+
|
|
167
|
+
function GeneratorFunctionPrototype() {}
|
|
168
|
+
|
|
169
|
+
var IteratorPrototype = {};
|
|
170
|
+
define(IteratorPrototype, iteratorSymbol, function () {
|
|
171
|
+
return this;
|
|
172
|
+
});
|
|
173
|
+
var getProto = Object.getPrototypeOf,
|
|
174
|
+
NativeIteratorPrototype = getProto && getProto(getProto(values([])));
|
|
175
|
+
NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype);
|
|
176
|
+
var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype);
|
|
177
|
+
|
|
178
|
+
function defineIteratorMethods(prototype) {
|
|
179
|
+
["next", "throw", "return"].forEach(function (method) {
|
|
180
|
+
define(prototype, method, function (arg) {
|
|
181
|
+
return this._invoke(method, arg);
|
|
182
|
+
});
|
|
183
|
+
});
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
function AsyncIterator(generator, PromiseImpl) {
|
|
187
|
+
function invoke(method, arg, resolve, reject) {
|
|
188
|
+
var record = tryCatch(generator[method], generator, arg);
|
|
189
|
+
|
|
190
|
+
if ("throw" !== record.type) {
|
|
191
|
+
var result = record.arg,
|
|
192
|
+
value = result.value;
|
|
193
|
+
return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) {
|
|
194
|
+
invoke("next", value, resolve, reject);
|
|
195
|
+
}, function (err) {
|
|
196
|
+
invoke("throw", err, resolve, reject);
|
|
197
|
+
}) : PromiseImpl.resolve(value).then(function (unwrapped) {
|
|
198
|
+
result.value = unwrapped, resolve(result);
|
|
199
|
+
}, function (error) {
|
|
200
|
+
return invoke("throw", error, resolve, reject);
|
|
201
|
+
});
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
reject(record.arg);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
var previousPromise;
|
|
208
|
+
|
|
209
|
+
this._invoke = function (method, arg) {
|
|
210
|
+
function callInvokeWithMethodAndArg() {
|
|
211
|
+
return new PromiseImpl(function (resolve, reject) {
|
|
212
|
+
invoke(method, arg, resolve, reject);
|
|
213
|
+
});
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
|
|
217
|
+
};
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
function maybeInvokeDelegate(delegate, context) {
|
|
221
|
+
var method = delegate.iterator[context.method];
|
|
222
|
+
|
|
223
|
+
if (undefined === method) {
|
|
224
|
+
if (context.delegate = null, "throw" === context.method) {
|
|
225
|
+
if (delegate.iterator["return"] && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method)) return ContinueSentinel;
|
|
226
|
+
context.method = "throw", context.arg = new TypeError("The iterator does not provide a 'throw' method");
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
return ContinueSentinel;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
var record = tryCatch(method, delegate.iterator, context.arg);
|
|
233
|
+
if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel;
|
|
234
|
+
var info = record.arg;
|
|
235
|
+
return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel);
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
function pushTryEntry(locs) {
|
|
239
|
+
var entry = {
|
|
240
|
+
tryLoc: locs[0]
|
|
241
|
+
};
|
|
242
|
+
1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry);
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
function resetTryEntry(entry) {
|
|
246
|
+
var record = entry.completion || {};
|
|
247
|
+
record.type = "normal", delete record.arg, entry.completion = record;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
function Context(tryLocsList) {
|
|
251
|
+
this.tryEntries = [{
|
|
252
|
+
tryLoc: "root"
|
|
253
|
+
}], tryLocsList.forEach(pushTryEntry, this), this.reset(!0);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
function values(iterable) {
|
|
257
|
+
if (iterable) {
|
|
258
|
+
var iteratorMethod = iterable[iteratorSymbol];
|
|
259
|
+
if (iteratorMethod) return iteratorMethod.call(iterable);
|
|
260
|
+
if ("function" == typeof iterable.next) return iterable;
|
|
261
|
+
|
|
262
|
+
if (!isNaN(iterable.length)) {
|
|
263
|
+
var i = -1,
|
|
264
|
+
next = function next() {
|
|
265
|
+
for (; ++i < iterable.length;) {
|
|
266
|
+
if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
return next.value = undefined, next.done = !0, next;
|
|
270
|
+
};
|
|
271
|
+
|
|
272
|
+
return next.next = next;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
return {
|
|
277
|
+
next: doneResult
|
|
278
|
+
};
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
function doneResult() {
|
|
282
|
+
return {
|
|
283
|
+
value: undefined,
|
|
284
|
+
done: !0
|
|
285
|
+
};
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
return GeneratorFunction.prototype = GeneratorFunctionPrototype, define(Gp, "constructor", GeneratorFunctionPrototype), define(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) {
|
|
289
|
+
var ctor = "function" == typeof genFun && genFun.constructor;
|
|
290
|
+
return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name));
|
|
291
|
+
}, exports.mark = function (genFun) {
|
|
292
|
+
return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun;
|
|
293
|
+
}, exports.awrap = function (arg) {
|
|
294
|
+
return {
|
|
295
|
+
__await: arg
|
|
296
|
+
};
|
|
297
|
+
}, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () {
|
|
298
|
+
return this;
|
|
299
|
+
}), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) {
|
|
300
|
+
void 0 === PromiseImpl && (PromiseImpl = Promise);
|
|
301
|
+
var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl);
|
|
302
|
+
return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) {
|
|
303
|
+
return result.done ? result.value : iter.next();
|
|
304
|
+
});
|
|
305
|
+
}, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () {
|
|
306
|
+
return this;
|
|
307
|
+
}), define(Gp, "toString", function () {
|
|
308
|
+
return "[object Generator]";
|
|
309
|
+
}), exports.keys = function (object) {
|
|
310
|
+
var keys = [];
|
|
311
|
+
|
|
312
|
+
for (var key in object) {
|
|
313
|
+
keys.push(key);
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
return keys.reverse(), function next() {
|
|
317
|
+
for (; keys.length;) {
|
|
318
|
+
var key = keys.pop();
|
|
319
|
+
if (key in object) return next.value = key, next.done = !1, next;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
return next.done = !0, next;
|
|
323
|
+
};
|
|
324
|
+
}, exports.values = values, Context.prototype = {
|
|
325
|
+
constructor: Context,
|
|
326
|
+
reset: function reset(skipTempReset) {
|
|
327
|
+
if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) {
|
|
328
|
+
"t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined);
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
stop: function stop() {
|
|
332
|
+
this.done = !0;
|
|
333
|
+
var rootRecord = this.tryEntries[0].completion;
|
|
334
|
+
if ("throw" === rootRecord.type) throw rootRecord.arg;
|
|
335
|
+
return this.rval;
|
|
336
|
+
},
|
|
337
|
+
dispatchException: function dispatchException(exception) {
|
|
338
|
+
if (this.done) throw exception;
|
|
339
|
+
var context = this;
|
|
340
|
+
|
|
341
|
+
function handle(loc, caught) {
|
|
342
|
+
return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
for (var i = this.tryEntries.length - 1; i >= 0; --i) {
|
|
346
|
+
var entry = this.tryEntries[i],
|
|
347
|
+
record = entry.completion;
|
|
348
|
+
if ("root" === entry.tryLoc) return handle("end");
|
|
349
|
+
|
|
350
|
+
if (entry.tryLoc <= this.prev) {
|
|
351
|
+
var hasCatch = hasOwn.call(entry, "catchLoc"),
|
|
352
|
+
hasFinally = hasOwn.call(entry, "finallyLoc");
|
|
353
|
+
|
|
354
|
+
if (hasCatch && hasFinally) {
|
|
355
|
+
if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0);
|
|
356
|
+
if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc);
|
|
357
|
+
} else if (hasCatch) {
|
|
358
|
+
if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0);
|
|
359
|
+
} else {
|
|
360
|
+
if (!hasFinally) throw new Error("try statement without catch or finally");
|
|
361
|
+
if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc);
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
},
|
|
366
|
+
abrupt: function abrupt(type, arg) {
|
|
367
|
+
for (var i = this.tryEntries.length - 1; i >= 0; --i) {
|
|
368
|
+
var entry = this.tryEntries[i];
|
|
369
|
+
|
|
370
|
+
if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) {
|
|
371
|
+
var finallyEntry = entry;
|
|
372
|
+
break;
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null);
|
|
377
|
+
var record = finallyEntry ? finallyEntry.completion : {};
|
|
378
|
+
return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record);
|
|
379
|
+
},
|
|
380
|
+
complete: function complete(record, afterLoc) {
|
|
381
|
+
if ("throw" === record.type) throw record.arg;
|
|
382
|
+
return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel;
|
|
383
|
+
},
|
|
384
|
+
finish: function finish(finallyLoc) {
|
|
385
|
+
for (var i = this.tryEntries.length - 1; i >= 0; --i) {
|
|
386
|
+
var entry = this.tryEntries[i];
|
|
387
|
+
if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel;
|
|
388
|
+
}
|
|
389
|
+
},
|
|
390
|
+
"catch": function _catch(tryLoc) {
|
|
391
|
+
for (var i = this.tryEntries.length - 1; i >= 0; --i) {
|
|
392
|
+
var entry = this.tryEntries[i];
|
|
393
|
+
|
|
394
|
+
if (entry.tryLoc === tryLoc) {
|
|
395
|
+
var record = entry.completion;
|
|
396
|
+
|
|
397
|
+
if ("throw" === record.type) {
|
|
398
|
+
var thrown = record.arg;
|
|
399
|
+
resetTryEntry(entry);
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
return thrown;
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
throw new Error("illegal catch attempt");
|
|
407
|
+
},
|
|
408
|
+
delegateYield: function delegateYield(iterable, resultName, nextLoc) {
|
|
409
|
+
return this.delegate = {
|
|
410
|
+
iterator: values(iterable),
|
|
411
|
+
resultName: resultName,
|
|
412
|
+
nextLoc: nextLoc
|
|
413
|
+
}, "next" === this.method && (this.arg = undefined), ContinueSentinel;
|
|
414
|
+
}
|
|
415
|
+
}, exports;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
module.exports = _regeneratorRuntime, module.exports.__esModule = true, module.exports["default"] = module.exports;
|
|
419
|
+
} (regeneratorRuntime$1));
|
|
420
|
+
|
|
421
|
+
var regeneratorRuntimeExports = regeneratorRuntime$1.exports;
|
|
422
|
+
|
|
423
|
+
// TODO(Babel 8): Remove this file.
|
|
424
|
+
|
|
425
|
+
var runtime = regeneratorRuntimeExports();
|
|
426
|
+
var regenerator = runtime;
|
|
427
|
+
|
|
428
|
+
// Copied from https://github.com/facebook/regenerator/blob/main/packages/runtime/runtime.js#L736=
|
|
429
|
+
try {
|
|
430
|
+
regeneratorRuntime = runtime;
|
|
431
|
+
} catch (accidentalStrictMode) {
|
|
432
|
+
if (typeof globalThis === "object") {
|
|
433
|
+
globalThis.regeneratorRuntime = runtime;
|
|
434
|
+
} else {
|
|
435
|
+
Function("r", "regeneratorRuntime = r")(runtime);
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
var _regeneratorRuntime = /*@__PURE__*/_commonjsHelpers.getDefaultExportFromCjs(regenerator);
|
|
440
|
+
|
|
441
|
+
exports._asyncToGenerator = _asyncToGenerator;
|
|
442
|
+
exports._regeneratorRuntime = _regeneratorRuntime;
|
|
443
|
+
//# sourceMappingURL=index-25a068b1.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index-25a068b1.js","sources":["../../node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js","../../node_modules/@babel/runtime/helpers/typeof.js","../../node_modules/@babel/runtime/helpers/regeneratorRuntime.js","../../node_modules/@babel/runtime/regenerator/index.js"],"sourcesContent":["function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {\n try {\n var info = gen[key](arg);\n var value = info.value;\n } catch (error) {\n reject(error);\n return;\n }\n\n if (info.done) {\n resolve(value);\n } else {\n Promise.resolve(value).then(_next, _throw);\n }\n}\n\nexport default function _asyncToGenerator(fn) {\n return function () {\n var self = this,\n args = arguments;\n return new Promise(function (resolve, reject) {\n var gen = fn.apply(self, args);\n\n function _next(value) {\n asyncGeneratorStep(gen, resolve, reject, _next, _throw, \"next\", value);\n }\n\n function _throw(err) {\n asyncGeneratorStep(gen, resolve, reject, _next, _throw, \"throw\", err);\n }\n\n _next(undefined);\n });\n };\n}","function _typeof(obj) {\n \"@babel/helpers - typeof\";\n\n return (module.exports = _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) {\n return typeof obj;\n } : function (obj) {\n return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n }, module.exports.__esModule = true, module.exports[\"default\"] = module.exports), _typeof(obj);\n}\n\nmodule.exports = _typeof, module.exports.__esModule = true, module.exports[\"default\"] = module.exports;","var _typeof = require(\"./typeof.js\")[\"default\"];\n\nfunction _regeneratorRuntime() {\n \"use strict\";\n /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */\n\n module.exports = _regeneratorRuntime = function _regeneratorRuntime() {\n return exports;\n }, module.exports.__esModule = true, module.exports[\"default\"] = module.exports;\n var exports = {},\n Op = Object.prototype,\n hasOwn = Op.hasOwnProperty,\n $Symbol = \"function\" == typeof Symbol ? Symbol : {},\n iteratorSymbol = $Symbol.iterator || \"@@iterator\",\n asyncIteratorSymbol = $Symbol.asyncIterator || \"@@asyncIterator\",\n toStringTagSymbol = $Symbol.toStringTag || \"@@toStringTag\";\n\n function define(obj, key, value) {\n return Object.defineProperty(obj, key, {\n value: value,\n enumerable: !0,\n configurable: !0,\n writable: !0\n }), obj[key];\n }\n\n try {\n define({}, \"\");\n } catch (err) {\n define = function define(obj, key, value) {\n return obj[key] = value;\n };\n }\n\n function wrap(innerFn, outerFn, self, tryLocsList) {\n var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator,\n generator = Object.create(protoGenerator.prototype),\n context = new Context(tryLocsList || []);\n return generator._invoke = function (innerFn, self, context) {\n var state = \"suspendedStart\";\n return function (method, arg) {\n if (\"executing\" === state) throw new Error(\"Generator is already running\");\n\n if (\"completed\" === state) {\n if (\"throw\" === method) throw arg;\n return doneResult();\n }\n\n for (context.method = method, context.arg = arg;;) {\n var delegate = context.delegate;\n\n if (delegate) {\n var delegateResult = maybeInvokeDelegate(delegate, context);\n\n if (delegateResult) {\n if (delegateResult === ContinueSentinel) continue;\n return delegateResult;\n }\n }\n\n if (\"next\" === context.method) context.sent = context._sent = context.arg;else if (\"throw\" === context.method) {\n if (\"suspendedStart\" === state) throw state = \"completed\", context.arg;\n context.dispatchException(context.arg);\n } else \"return\" === context.method && context.abrupt(\"return\", context.arg);\n state = \"executing\";\n var record = tryCatch(innerFn, self, context);\n\n if (\"normal\" === record.type) {\n if (state = context.done ? \"completed\" : \"suspendedYield\", record.arg === ContinueSentinel) continue;\n return {\n value: record.arg,\n done: context.done\n };\n }\n\n \"throw\" === record.type && (state = \"completed\", context.method = \"throw\", context.arg = record.arg);\n }\n };\n }(innerFn, self, context), generator;\n }\n\n function tryCatch(fn, obj, arg) {\n try {\n return {\n type: \"normal\",\n arg: fn.call(obj, arg)\n };\n } catch (err) {\n return {\n type: \"throw\",\n arg: err\n };\n }\n }\n\n exports.wrap = wrap;\n var ContinueSentinel = {};\n\n function Generator() {}\n\n function GeneratorFunction() {}\n\n function GeneratorFunctionPrototype() {}\n\n var IteratorPrototype = {};\n define(IteratorPrototype, iteratorSymbol, function () {\n return this;\n });\n var getProto = Object.getPrototypeOf,\n NativeIteratorPrototype = getProto && getProto(getProto(values([])));\n NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype);\n var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype);\n\n function defineIteratorMethods(prototype) {\n [\"next\", \"throw\", \"return\"].forEach(function (method) {\n define(prototype, method, function (arg) {\n return this._invoke(method, arg);\n });\n });\n }\n\n function AsyncIterator(generator, PromiseImpl) {\n function invoke(method, arg, resolve, reject) {\n var record = tryCatch(generator[method], generator, arg);\n\n if (\"throw\" !== record.type) {\n var result = record.arg,\n value = result.value;\n return value && \"object\" == _typeof(value) && hasOwn.call(value, \"__await\") ? PromiseImpl.resolve(value.__await).then(function (value) {\n invoke(\"next\", value, resolve, reject);\n }, function (err) {\n invoke(\"throw\", err, resolve, reject);\n }) : PromiseImpl.resolve(value).then(function (unwrapped) {\n result.value = unwrapped, resolve(result);\n }, function (error) {\n return invoke(\"throw\", error, resolve, reject);\n });\n }\n\n reject(record.arg);\n }\n\n var previousPromise;\n\n this._invoke = function (method, arg) {\n function callInvokeWithMethodAndArg() {\n return new PromiseImpl(function (resolve, reject) {\n invoke(method, arg, resolve, reject);\n });\n }\n\n return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();\n };\n }\n\n function maybeInvokeDelegate(delegate, context) {\n var method = delegate.iterator[context.method];\n\n if (undefined === method) {\n if (context.delegate = null, \"throw\" === context.method) {\n if (delegate.iterator[\"return\"] && (context.method = \"return\", context.arg = undefined, maybeInvokeDelegate(delegate, context), \"throw\" === context.method)) return ContinueSentinel;\n context.method = \"throw\", context.arg = new TypeError(\"The iterator does not provide a 'throw' method\");\n }\n\n return ContinueSentinel;\n }\n\n var record = tryCatch(method, delegate.iterator, context.arg);\n if (\"throw\" === record.type) return context.method = \"throw\", context.arg = record.arg, context.delegate = null, ContinueSentinel;\n var info = record.arg;\n return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, \"return\" !== context.method && (context.method = \"next\", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = \"throw\", context.arg = new TypeError(\"iterator result is not an object\"), context.delegate = null, ContinueSentinel);\n }\n\n function pushTryEntry(locs) {\n var entry = {\n tryLoc: locs[0]\n };\n 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry);\n }\n\n function resetTryEntry(entry) {\n var record = entry.completion || {};\n record.type = \"normal\", delete record.arg, entry.completion = record;\n }\n\n function Context(tryLocsList) {\n this.tryEntries = [{\n tryLoc: \"root\"\n }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0);\n }\n\n function values(iterable) {\n if (iterable) {\n var iteratorMethod = iterable[iteratorSymbol];\n if (iteratorMethod) return iteratorMethod.call(iterable);\n if (\"function\" == typeof iterable.next) return iterable;\n\n if (!isNaN(iterable.length)) {\n var i = -1,\n next = function next() {\n for (; ++i < iterable.length;) {\n if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next;\n }\n\n return next.value = undefined, next.done = !0, next;\n };\n\n return next.next = next;\n }\n }\n\n return {\n next: doneResult\n };\n }\n\n function doneResult() {\n return {\n value: undefined,\n done: !0\n };\n }\n\n return GeneratorFunction.prototype = GeneratorFunctionPrototype, define(Gp, \"constructor\", GeneratorFunctionPrototype), define(GeneratorFunctionPrototype, \"constructor\", GeneratorFunction), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, \"GeneratorFunction\"), exports.isGeneratorFunction = function (genFun) {\n var ctor = \"function\" == typeof genFun && genFun.constructor;\n return !!ctor && (ctor === GeneratorFunction || \"GeneratorFunction\" === (ctor.displayName || ctor.name));\n }, exports.mark = function (genFun) {\n return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, \"GeneratorFunction\")), genFun.prototype = Object.create(Gp), genFun;\n }, exports.awrap = function (arg) {\n return {\n __await: arg\n };\n }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () {\n return this;\n }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) {\n void 0 === PromiseImpl && (PromiseImpl = Promise);\n var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl);\n return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) {\n return result.done ? result.value : iter.next();\n });\n }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, \"Generator\"), define(Gp, iteratorSymbol, function () {\n return this;\n }), define(Gp, \"toString\", function () {\n return \"[object Generator]\";\n }), exports.keys = function (object) {\n var keys = [];\n\n for (var key in object) {\n keys.push(key);\n }\n\n return keys.reverse(), function next() {\n for (; keys.length;) {\n var key = keys.pop();\n if (key in object) return next.value = key, next.done = !1, next;\n }\n\n return next.done = !0, next;\n };\n }, exports.values = values, Context.prototype = {\n constructor: Context,\n reset: function reset(skipTempReset) {\n if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = \"next\", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) {\n \"t\" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined);\n }\n },\n stop: function stop() {\n this.done = !0;\n var rootRecord = this.tryEntries[0].completion;\n if (\"throw\" === rootRecord.type) throw rootRecord.arg;\n return this.rval;\n },\n dispatchException: function dispatchException(exception) {\n if (this.done) throw exception;\n var context = this;\n\n function handle(loc, caught) {\n return record.type = \"throw\", record.arg = exception, context.next = loc, caught && (context.method = \"next\", context.arg = undefined), !!caught;\n }\n\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i],\n record = entry.completion;\n if (\"root\" === entry.tryLoc) return handle(\"end\");\n\n if (entry.tryLoc <= this.prev) {\n var hasCatch = hasOwn.call(entry, \"catchLoc\"),\n hasFinally = hasOwn.call(entry, \"finallyLoc\");\n\n if (hasCatch && hasFinally) {\n if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0);\n if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc);\n } else if (hasCatch) {\n if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0);\n } else {\n if (!hasFinally) throw new Error(\"try statement without catch or finally\");\n if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc);\n }\n }\n }\n },\n abrupt: function abrupt(type, arg) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n\n if (entry.tryLoc <= this.prev && hasOwn.call(entry, \"finallyLoc\") && this.prev < entry.finallyLoc) {\n var finallyEntry = entry;\n break;\n }\n }\n\n finallyEntry && (\"break\" === type || \"continue\" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null);\n var record = finallyEntry ? finallyEntry.completion : {};\n return record.type = type, record.arg = arg, finallyEntry ? (this.method = \"next\", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record);\n },\n complete: function complete(record, afterLoc) {\n if (\"throw\" === record.type) throw record.arg;\n return \"break\" === record.type || \"continue\" === record.type ? this.next = record.arg : \"return\" === record.type ? (this.rval = this.arg = record.arg, this.method = \"return\", this.next = \"end\") : \"normal\" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel;\n },\n finish: function finish(finallyLoc) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel;\n }\n },\n \"catch\": function _catch(tryLoc) {\n for (var i = this.tryEntries.length - 1; i >= 0; --i) {\n var entry = this.tryEntries[i];\n\n if (entry.tryLoc === tryLoc) {\n var record = entry.completion;\n\n if (\"throw\" === record.type) {\n var thrown = record.arg;\n resetTryEntry(entry);\n }\n\n return thrown;\n }\n }\n\n throw new Error(\"illegal catch attempt\");\n },\n delegateYield: function delegateYield(iterable, resultName, nextLoc) {\n return this.delegate = {\n iterator: values(iterable),\n resultName: resultName,\n nextLoc: nextLoc\n }, \"next\" === this.method && (this.arg = undefined), ContinueSentinel;\n }\n }, exports;\n}\n\nmodule.exports = _regeneratorRuntime, module.exports.__esModule = true, module.exports[\"default\"] = module.exports;","// TODO(Babel 8): Remove this file.\n\nvar runtime = require(\"../helpers/regeneratorRuntime\")();\nmodule.exports = runtime;\n\n// Copied from https://github.com/facebook/regenerator/blob/main/packages/runtime/runtime.js#L736=\ntry {\n regeneratorRuntime = runtime;\n} catch (accidentalStrictMode) {\n if (typeof globalThis === \"object\") {\n globalThis.regeneratorRuntime = runtime;\n } else {\n Function(\"r\", \"regeneratorRuntime = r\")(runtime);\n }\n}\n"],"names":["require$$0"],"mappings":"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"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var initializers_axiosInitializer_index = require('./axiosInitializer/index.js');
|
|
4
|
+
require('../defineProperty-ba7cd53d.js');
|
|
5
|
+
require('../typeof-a861d137.js');
|
|
6
|
+
require('axios');
|
|
7
|
+
require('i18next');
|
|
8
|
+
require('@bigbinary/neeto-cist');
|
|
9
|
+
require('@bigbinary/neetoui/Toastr');
|
|
10
|
+
require('ramda');
|
|
11
|
+
require('react-toastify');
|
|
12
|
+
require('../react-utils/useDisplayErrorPage/useDisplayErrorPage.js');
|
|
13
|
+
require('zustand');
|
|
14
|
+
require('../utils/axios.js');
|
|
15
|
+
require('./constants.js');
|
|
16
|
+
require('./axiosInitializer/paramsSerializer.js');
|
|
17
|
+
require('qs');
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
module.exports = initializers_axiosInitializer_index;
|
|
22
|
+
//# sourceMappingURL=axios.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"axios.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;"}
|