andoncloud-sdk 1.7.13 → 1.7.15
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/dist/andoncloud-sdk.js +4 -4
- package/dist/andoncloud-sdk.js.map +1 -1
- package/dist/cypress/support/component.d.ts +9 -12
- package/dist/cypress.config.d.ts +2 -3
- package/dist/index.d.ts +9 -3
- package/dist/src/__tests__/loginWithPassword.cy.d.ts +1 -0
- package/dist/src/assets/index.d.ts +1 -1
- package/dist/src/components/Header/Header.cy.d.ts +1 -0
- package/dist/src/components/Header/Header.d.ts +3 -0
- package/dist/src/components/Header/index.d.ts +1 -0
- package/dist/src/components/Header/styles.d.ts +11 -0
- package/dist/src/components/Header/types.d.ts +52 -0
- package/dist/src/components/access/AccessBlocker.cy.d.ts +1 -0
- package/dist/src/components/access/AccessBlocker.d.ts +12 -0
- package/dist/src/components/access/AccessBlocker.styles.d.ts +34 -0
- package/dist/src/components/access/AccessGuard.cy.d.ts +1 -0
- package/dist/src/components/access/AccessGuard.d.ts +9 -0
- package/dist/src/components/access/AccessRequestModal.cy.d.ts +1 -0
- package/dist/src/components/access/AccessRequestModal.d.ts +8 -0
- package/dist/src/components/access/AccessRequestModal.styles.d.ts +31 -0
- package/dist/src/components/access/CooldownModal.cy.d.ts +1 -0
- package/dist/src/components/access/CooldownModal.d.ts +7 -0
- package/dist/src/components/access/CooldownModal.styles.d.ts +30 -0
- package/dist/src/components/access/index.d.ts +3 -0
- package/dist/src/components/access/withAccessGuard.cy.d.ts +1 -0
- package/dist/src/components/access/withAccessGuard.d.ts +6 -0
- package/dist/src/components/app.d.ts +3 -0
- package/dist/src/components/authRedirect.cy.d.ts +1 -0
- package/dist/src/components/authRedirect.d.ts +3 -0
- package/dist/src/components/container.cy.d.ts +1 -0
- package/dist/src/components/container.d.ts +44 -0
- package/dist/src/components/container.styles.d.ts +20 -0
- package/dist/src/components/externalContent.d.ts +5 -0
- package/dist/src/components/footer.d.ts +6 -0
- package/dist/src/components/iframeNavigation.d.ts +2 -0
- package/dist/src/components/loader.d.ts +6 -0
- package/dist/src/components/loginForm.cy.d.ts +1 -0
- package/dist/src/components/loginForm.d.ts +29 -0
- package/dist/src/components/loginModal.cy.d.ts +1 -0
- package/dist/src/components/loginModal.d.ts +16 -0
- package/dist/src/components/loginRedirect.d.ts +3 -0
- package/dist/src/components/networkError.d.ts +4 -0
- package/dist/src/components/router.d.ts +5 -0
- package/dist/src/components/sidePanel.d.ts +66 -0
- package/dist/src/components/sidePanel.styles.d.ts +15 -0
- package/dist/src/components/sidebarMenu.d.ts +32 -0
- package/dist/src/components/sidebarMenu.styles.d.ts +32 -0
- package/dist/src/core/ui/Checkbox/Checkbox.d.ts +6 -0
- package/dist/src/core/ui/Checkbox/index.d.ts +1 -0
- package/dist/src/core/ui/Checkbox/styled.d.ts +6 -0
- package/dist/src/core/ui/Radio/Radio.d.ts +6 -0
- package/dist/src/core/ui/Radio/index.d.ts +1 -0
- package/dist/src/core/ui/Radio/styled.d.ts +6 -0
- package/dist/src/core/ui/RadioGroup/RadioGroup.d.ts +6 -0
- package/dist/src/core/ui/RadioGroup/index.d.ts +1 -0
- package/dist/src/core/ui/RadioGroup/styled.d.ts +4 -0
- package/dist/src/hooks/useAccess/accessState.d.ts +7 -0
- package/dist/src/hooks/useAccess/deriveButtons.d.ts +5 -0
- package/dist/src/hooks/useAccess/index.d.ts +11 -0
- package/dist/src/hooks/useAccess.cy.d.ts +1 -0
- package/dist/src/hooks/useFeatures.cy.d.ts +1 -0
- package/dist/src/hooks/useFeatures.d.ts +6 -0
- package/dist/src/hooks/useHeaderContentEvent.cy.d.ts +1 -0
- package/dist/src/hooks/useHeaderContentEvent.d.ts +3 -0
- package/dist/src/hooks/useLogin.d.ts +2 -0
- package/dist/src/hooks/useLoginStatus.d.ts +3 -0
- package/dist/src/hooks/useModalHook/ModalContext.d.ts +7 -0
- package/dist/src/hooks/useModalHook/ModalProvider.d.ts +5 -0
- package/dist/src/hooks/useModalHook/index.d.ts +3 -0
- package/dist/src/hooks/useModalHook/useModal.d.ts +8 -0
- package/dist/src/hooks/usePermissions.cy.d.ts +1 -0
- package/dist/src/hooks/usePermissions.d.ts +13 -0
- package/dist/src/hooks/useQueryParams.d.ts +2 -0
- package/dist/src/i18n.d.ts +9 -0
- package/dist/src/index.d.ts +36 -54
- package/dist/src/pages/ErrorPage.d.ts +14 -0
- package/dist/src/pages/LoaderPage.d.ts +7 -0
- package/dist/src/pages/LoginPage.d.ts +15 -0
- package/dist/src/providers/authConfig.d.ts +6 -0
- package/dist/src/providers/display.d.ts +5 -0
- package/dist/src/providers/metaInfo.d.ts +6 -0
- package/dist/src/providers/store.d.ts +171 -0
- package/dist/src/serviceWorkerRegistration.d.ts +2 -2
- package/dist/src/stores/SessionStore/CookiesManager.d.ts +11 -0
- package/dist/src/stores/SessionStore/SessionStore.cy.d.ts +1 -0
- package/dist/src/stores/SessionStore/SessionStore.d.ts +60 -0
- package/dist/src/stores/SessionStore/TokenCoordinator.cy.d.ts +1 -0
- package/dist/src/stores/SessionStore/TokenCoordinator.d.ts +46 -0
- package/dist/src/stores/SessionStore/index.d.ts +3 -0
- package/dist/src/stores/SessionStore/types.d.ts +62 -0
- package/dist/src/stores/appStore.d.ts +10 -0
- package/dist/src/stores/sessionStore.d.ts +83 -0
- package/dist/src/stores/userStore.d.ts +14 -0
- package/dist/src/theme.d.ts +2 -0
- package/dist/src/utils/authFetch.d.ts +10 -0
- package/dist/src/utils/cookies-manager.d.ts +9 -0
- package/dist/src/utils/display.d.ts +14 -0
- package/dist/src/utils/fetch.d.ts +9 -0
- package/dist/src/utils/service-worker.d.ts +1 -0
- package/dist/src/utils/stores.d.ts +26 -0
- package/dist/src/utils/text.d.ts +1 -0
- package/dist/src/utils/validateRedirect.cy.d.ts +1 -0
- package/dist/src/utils/validateRedirect.d.ts +1 -0
- package/dist/src/version.d.ts +1 -1
- package/package.json +5 -2
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.