@datalayer/core 0.0.1 → 0.0.3
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 +187 -7
- package/lib/App.css +47 -0
- package/lib/App.d.ts +3 -0
- package/lib/App.js +21 -5
- package/lib/__tests__/App.test.d.ts +1 -0
- package/lib/__tests__/App.test.js +17 -0
- package/lib/__tests__/hooks.test.d.ts +1 -0
- package/lib/__tests__/hooks.test.js +19 -0
- package/lib/__tests__/index.test.d.ts +1 -0
- package/lib/__tests__/index.test.js +27 -0
- package/lib/__tests__/integration.test.d.ts +1 -0
- package/lib/__tests__/integration.test.js +57 -0
- package/lib/__tests__/utils.test.d.ts +1 -0
- package/lib/__tests__/utils.test.js +59 -0
- package/lib/api/DatalayerApi.d.ts +75 -0
- package/lib/api/DatalayerApi.js +145 -0
- package/lib/api/index.d.ts +3 -0
- package/lib/api/index.js +7 -0
- package/lib/api/jupyter/exec/Python.d.ts +5 -0
- package/lib/api/jupyter/exec/Python.js +100 -0
- package/lib/api/jupyter/exec/Snippets.d.ts +145 -0
- package/lib/api/jupyter/exec/Snippets.js +120 -0
- package/lib/api/jupyter/exec/index.d.ts +2 -0
- package/lib/api/jupyter/exec/index.js +6 -0
- package/lib/api/jupyter/index.d.ts +2 -0
- package/lib/api/jupyter/index.js +6 -0
- package/lib/api/jupyter/kernelsHandler.d.ts +8 -0
- package/lib/api/jupyter/kernelsHandler.js +39 -0
- package/lib/api/runtimes/actions.d.ts +102 -0
- package/lib/api/runtimes/actions.js +264 -0
- package/lib/api/runtimes/apis.d.ts +273 -0
- package/lib/api/runtimes/apis.js +5 -0
- package/lib/api/runtimes/index.d.ts +5 -0
- package/lib/api/runtimes/index.js +9 -0
- package/lib/api/runtimes/settings.d.ts +15 -0
- package/lib/api/runtimes/settings.js +31 -0
- package/lib/api/runtimes/snapshots.d.ts +25 -0
- package/lib/api/runtimes/snapshots.js +150 -0
- package/lib/api/runtimes/utils.d.ts +7 -0
- package/lib/api/runtimes/utils.js +17 -0
- package/lib/assets/react.svg +1 -0
- package/lib/components/avatars/BoringAvatar.d.ts +19 -0
- package/lib/components/avatars/BoringAvatar.js +44 -0
- package/lib/components/avatars/BoringAvatar.stories.d.ts +27 -0
- package/lib/components/avatars/BoringAvatar.stories.js +23 -0
- package/lib/components/avatars/UserProfileAvatar.d.ts +13 -0
- package/lib/components/avatars/UserProfileAvatar.js +32 -0
- package/lib/components/avatars/index.d.ts +2 -0
- package/lib/components/avatars/index.js +6 -0
- package/lib/components/banners/NoAutomationBanner.d.ts +2 -0
- package/lib/components/banners/NoAutomationBanner.js +13 -0
- package/lib/components/banners/index.d.ts +1 -0
- package/lib/components/banners/index.js +5 -0
- package/lib/components/buttons/DownloadCSVButton.d.ts +13 -0
- package/lib/components/buttons/DownloadCSVButton.js +16 -0
- package/lib/components/buttons/DownloadJsonButton.d.ts +16 -0
- package/lib/components/buttons/DownloadJsonButton.js +18 -0
- package/lib/components/buttons/LongActionButton.d.ts +28 -0
- package/lib/components/buttons/LongActionButton.js +24 -0
- package/lib/components/buttons/UploadButton.d.ts +37 -0
- package/lib/components/buttons/UploadButton.js +43 -0
- package/lib/components/buttons/VariantType.d.ts +1 -0
- package/lib/components/buttons/VariantType.js +5 -0
- package/lib/components/buttons/index.d.ts +5 -0
- package/lib/components/buttons/index.js +9 -0
- package/lib/components/checkout/StripeCheckout.d.ts +32 -0
- package/lib/components/checkout/StripeCheckout.js +95 -0
- package/lib/components/checkout/index.d.ts +1 -0
- package/lib/components/checkout/index.js +5 -0
- package/lib/components/confetti/ConfettiSuccess.d.ts +2 -0
- package/lib/components/confetti/ConfettiSuccess.js +12 -0
- package/lib/components/confetti/index.d.ts +1 -0
- package/lib/components/confetti/index.js +5 -0
- package/lib/components/context/OrganizationSelect.d.ts +2 -0
- package/lib/components/context/OrganizationSelect.js +35 -0
- package/lib/components/context/SpaceSelect.d.ts +2 -0
- package/lib/components/context/SpaceSelect.js +43 -0
- package/lib/components/context/index.d.ts +2 -0
- package/lib/components/context/index.js +6 -0
- package/lib/components/display/AvatarSkeleton.d.ts +5 -0
- package/lib/components/display/AvatarSkeleton.js +11 -0
- package/lib/components/display/CenteredSpinner.d.ts +14 -0
- package/lib/components/display/CenteredSpinner.js +20 -0
- package/lib/components/display/CodePreview.d.ts +4 -0
- package/lib/components/display/CodePreview.js +15 -0
- package/lib/components/display/DatalayerBox.d.ts +8 -0
- package/lib/components/display/DatalayerBox.js +28 -0
- package/lib/components/display/HorizontalCenter.d.ts +9 -0
- package/lib/components/display/HorizontalCenter.js +14 -0
- package/lib/components/display/JupyterDialog.d.ts +69 -0
- package/lib/components/display/JupyterDialog.js +115 -0
- package/lib/components/display/Markdown.d.ts +23 -0
- package/lib/components/display/Markdown.js +20 -0
- package/lib/components/display/NavLink.d.ts +9 -0
- package/lib/components/display/NavLink.js +17 -0
- package/lib/components/display/NotebookSkeleton.d.ts +2 -0
- package/lib/components/display/NotebookSkeleton.js +11 -0
- package/lib/components/display/Placeholder.d.ts +2 -0
- package/lib/components/display/Placeholder.js +9 -0
- package/lib/components/display/ToTopBranded.d.ts +2 -0
- package/lib/components/display/ToTopBranded.js +11 -0
- package/lib/components/display/VisuallyHidden.d.ts +5 -0
- package/lib/components/display/VisuallyHidden.js +24 -0
- package/lib/components/display/index.d.ts +12 -0
- package/lib/components/display/index.js +16 -0
- package/lib/components/echarts/EChartsReact.d.ts +11 -0
- package/lib/components/echarts/EChartsReact.js +53 -0
- package/lib/components/echarts/index.d.ts +1 -0
- package/lib/components/echarts/index.js +5 -0
- package/lib/components/flashes/FlashClosable.d.ts +22 -0
- package/lib/components/flashes/FlashClosable.js +64 -0
- package/lib/components/flashes/FlashDisclaimer.d.ts +2 -0
- package/lib/components/flashes/FlashDisclaimer.js +18 -0
- package/lib/components/flashes/FlashGuest.d.ts +2 -0
- package/lib/components/flashes/FlashGuest.js +30 -0
- package/lib/components/flashes/FlashSurveys.d.ts +6 -0
- package/lib/components/flashes/FlashSurveys.js +36 -0
- package/lib/components/flashes/FlashUnauthorized.d.ts +2 -0
- package/lib/components/flashes/FlashUnauthorized.js +18 -0
- package/lib/components/flashes/index.d.ts +6 -0
- package/lib/components/flashes/index.js +10 -0
- package/lib/components/flashes/surveys/Survey2025_1.d.ts +3 -0
- package/lib/components/flashes/surveys/Survey2025_1.js +129 -0
- package/lib/components/flashes/surveys/SurveyProps.d.ts +6 -0
- package/lib/components/flashes/surveys/SurveyProps.js +5 -0
- package/lib/components/flashes/surveys/index.d.ts +2 -0
- package/lib/components/flashes/surveys/index.js +6 -0
- package/lib/components/iam/ExternalTokenSilentLogin.d.ts +5 -0
- package/lib/components/iam/ExternalTokenSilentLogin.js +33 -0
- package/lib/components/iam/index.d.ts +1 -0
- package/lib/components/iam/index.js +5 -0
- package/lib/components/icons/ArtifactIcon.d.ts +10 -0
- package/lib/components/icons/ArtifactIcon.js +58 -0
- package/lib/components/icons/index.d.ts +1 -0
- package/lib/components/icons/index.js +5 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/components/index.js +5 -0
- package/lib/components/labels/VisibilityLabel.d.ts +4 -0
- package/lib/components/labels/VisibilityLabel.js +17 -0
- package/lib/components/labels/index.d.ts +1 -0
- package/lib/components/labels/index.js +5 -0
- package/lib/components/landings/StepBlock.d.ts +11 -0
- package/lib/components/landings/StepBlock.js +12 -0
- package/lib/components/landings/index.d.ts +1 -0
- package/lib/components/landings/index.js +5 -0
- package/lib/components/navbar/NavigationVisbilityObserver.d.ts +5 -0
- package/lib/components/navbar/NavigationVisbilityObserver.js +58 -0
- package/lib/components/navbar/SubdomainNavBar.d.ts +81 -0
- package/lib/components/navbar/SubdomainNavBar.js +235 -0
- package/lib/components/navbar/SubdomainNavBar.module.css +718 -0
- package/lib/components/navbar/index.d.ts +2 -0
- package/lib/components/navbar/index.js +6 -0
- package/lib/components/nbgrader/NbGradesDetails.d.ts +5 -0
- package/lib/components/nbgrader/NbGradesDetails.js +17 -0
- package/lib/components/nbgrader/index.d.ts +1 -0
- package/lib/components/nbgrader/index.js +5 -0
- package/lib/components/notebooks/JupyterNotebook.d.ts +12 -0
- package/lib/components/notebooks/JupyterNotebook.js +36 -0
- package/lib/components/notebooks/JupyterNotebookToolbar.d.ts +2 -0
- package/lib/components/notebooks/JupyterNotebookToolbar.js +39 -0
- package/lib/components/notebooks/index.d.ts +2 -0
- package/lib/components/notebooks/index.js +6 -0
- package/lib/components/primer/Helper.d.ts +32 -0
- package/lib/components/primer/Helper.js +19 -0
- package/lib/components/primer/Portals.d.ts +9 -0
- package/lib/components/primer/Portals.js +26 -0
- package/lib/components/primer/Styles.d.ts +2 -0
- package/lib/components/primer/Styles.js +11 -0
- package/lib/components/primer/index.d.ts +2 -0
- package/lib/components/primer/index.js +6 -0
- package/lib/components/progress/ConsumptionBar.d.ts +40 -0
- package/lib/components/progress/ConsumptionBar.js +49 -0
- package/lib/components/progress/CreditsIndicator.d.ts +27 -0
- package/lib/components/progress/CreditsIndicator.js +24 -0
- package/lib/components/progress/ProgressBar.d.ts +2 -0
- package/lib/components/progress/ProgressBar.js +21 -0
- package/lib/components/progress/ProgressRing.d.ts +36 -0
- package/lib/components/progress/ProgressRing.js +31 -0
- package/lib/components/progress/Timer.d.ts +9 -0
- package/lib/components/progress/Timer.js +28 -0
- package/lib/components/progress/index.d.ts +5 -0
- package/lib/components/progress/index.js +9 -0
- package/lib/components/runtimes/RuntimeCellVariables.d.ts +39 -0
- package/lib/components/runtimes/RuntimeCellVariables.js +172 -0
- package/lib/components/runtimes/RuntimeCellVariablesDialog.d.ts +37 -0
- package/lib/components/runtimes/RuntimeCellVariablesDialog.js +101 -0
- package/lib/components/runtimes/RuntimeLauncherDialog.d.ts +53 -0
- package/lib/components/runtimes/RuntimeLauncherDialog.js +250 -0
- package/lib/components/runtimes/RuntimePickerBase.d.ts +69 -0
- package/lib/components/runtimes/RuntimePickerBase.js +109 -0
- package/lib/components/runtimes/RuntimePickerCell.d.ts +34 -0
- package/lib/components/runtimes/RuntimePickerCell.js +106 -0
- package/lib/components/runtimes/RuntimePickerNotebook.d.ts +42 -0
- package/lib/components/runtimes/RuntimePickerNotebook.js +168 -0
- package/lib/components/runtimes/RuntimeReservationControl.d.ts +47 -0
- package/lib/components/runtimes/RuntimeReservationControl.js +38 -0
- package/lib/components/runtimes/RuntimeSimplePicker.d.ts +34 -0
- package/lib/components/runtimes/RuntimeSimplePicker.js +156 -0
- package/lib/components/runtimes/RuntimeTransfer.d.ts +16 -0
- package/lib/components/runtimes/RuntimeTransfer.js +5 -0
- package/lib/components/runtimes/RuntimeUtils.d.ts +17 -0
- package/lib/components/runtimes/RuntimeUtils.js +168 -0
- package/lib/components/runtimes/RuntimeVariables.d.ts +38 -0
- package/lib/components/runtimes/RuntimeVariables.js +75 -0
- package/lib/components/runtimes/index.d.ts +11 -0
- package/lib/components/runtimes/index.js +15 -0
- package/lib/components/screenshot/ScreenCapture.d.ts +38 -0
- package/lib/components/screenshot/ScreenCapture.js +174 -0
- package/lib/components/screenshot/ScreenCaptureButton.d.ts +3 -0
- package/lib/components/screenshot/ScreenCaptureButton.js +21 -0
- package/lib/components/screenshot/index.d.ts +2 -0
- package/lib/components/screenshot/index.js +6 -0
- package/lib/components/snapshots/RuntimeSnapshotMenu.d.ts +36 -0
- package/lib/components/snapshots/RuntimeSnapshotMenu.js +164 -0
- package/lib/components/snapshots/index.d.ts +1 -0
- package/lib/components/snapshots/index.js +5 -0
- package/lib/components/snippets/SnippetDialog.d.ts +42 -0
- package/lib/components/snippets/SnippetDialog.js +42 -0
- package/lib/components/snippets/index.d.ts +1 -0
- package/lib/components/snippets/index.js +5 -0
- package/lib/components/storage/ContentsBrowser.d.ts +32 -0
- package/lib/components/storage/ContentsBrowser.js +255 -0
- package/lib/components/storage/ContentsItems.d.ts +58 -0
- package/lib/components/storage/ContentsItems.js +78 -0
- package/lib/components/storage/index.d.ts +2 -0
- package/lib/components/storage/index.js +6 -0
- package/lib/components/students/StudentItemStatus.d.ts +7 -0
- package/lib/components/students/StudentItemStatus.js +47 -0
- package/lib/components/students/index.d.ts +1 -0
- package/lib/components/students/index.js +5 -0
- package/lib/components/subnav/SubNav.d.ts +84 -0
- package/lib/components/subnav/SubNav.js +265 -0
- package/lib/components/subnav/SubNav.module.css +683 -0
- package/lib/components/subnav/index.d.ts +1 -0
- package/lib/components/subnav/index.js +5 -0
- package/lib/components/tables/DataTable.d.ts +5 -0
- package/lib/components/tables/DataTable.js +19 -0
- package/lib/components/tables/index.d.ts +1 -0
- package/lib/components/tables/index.js +5 -0
- package/lib/components/text-reveal/TextRevealAnimation.d.ts +6 -0
- package/lib/components/text-reveal/TextRevealAnimation.js +49 -0
- package/lib/components/text-reveal/TextRevealAnimation.module.css +43 -0
- package/lib/components/text-reveal/index.d.ts +1 -0
- package/lib/components/text-reveal/index.js +5 -0
- package/lib/components/text-reveal/useTextRevealAnimationLines.d.ts +4 -0
- package/lib/components/text-reveal/useTextRevealAnimationLines.js +47 -0
- package/lib/components/tokens/SpaceVariantToken.d.ts +5 -0
- package/lib/components/tokens/SpaceVariantToken.js +20 -0
- package/lib/components/tokens/index.d.ts +1 -0
- package/lib/components/tokens/index.js +5 -0
- package/lib/components/toolbars/AssignmentEditorToolbar.d.ts +4 -0
- package/lib/components/toolbars/AssignmentEditorToolbar.js +18 -0
- package/lib/components/toolbars/DocumentEditorToolbar.d.ts +2 -0
- package/lib/components/toolbars/DocumentEditorToolbar.js +12 -0
- package/lib/components/toolbars/NotebookEditorToolbar.d.ts +29 -0
- package/lib/components/toolbars/NotebookEditorToolbar.js +30 -0
- package/lib/components/toolbars/index.d.ts +3 -0
- package/lib/components/toolbars/index.js +7 -0
- package/lib/components/users/PeerIndicator.d.ts +18 -0
- package/lib/components/users/PeerIndicator.js +100 -0
- package/lib/components/users/index.d.ts +1 -0
- package/lib/components/users/index.js +5 -0
- package/lib/config/Configuration.d.ts +111 -0
- package/lib/config/Configuration.js +25 -0
- package/lib/config/index.d.ts +2 -0
- package/lib/config/index.js +6 -0
- package/lib/config/integrations/Loom.d.ts +1 -0
- package/lib/config/integrations/Loom.js +16 -0
- package/lib/config/integrations/index.d.ts +1 -0
- package/lib/config/integrations/index.js +5 -0
- package/lib/examples/CellExample.d.ts +6 -0
- package/lib/examples/CellExample.js +24 -0
- package/lib/examples/NotebookExample.d.ts +8 -0
- package/lib/examples/NotebookExample.js +22 -0
- package/lib/examples/NotebookExample1.ipynb.json +136 -0
- package/lib/hooks/assets/OutputshotPlaceholders.d.ts +19 -0
- package/lib/hooks/assets/OutputshotPlaceholders.js +23 -0
- package/lib/hooks/assets/index.d.ts +1 -0
- package/lib/hooks/assets/index.js +5 -0
- package/lib/hooks/index.d.ts +28 -0
- package/lib/hooks/index.js +33 -0
- package/lib/hooks/layouts/LayoutBackdrop.d.ts +2 -0
- package/lib/hooks/layouts/LayoutBackdrop.js +30 -0
- package/lib/hooks/layouts/LayoutScreenshot.css +58 -0
- package/lib/hooks/layouts/LayoutScreenshot.d.ts +3 -0
- package/lib/hooks/layouts/LayoutScreenshot.js +44 -0
- package/lib/hooks/layouts/index.d.ts +2 -0
- package/lib/hooks/layouts/index.js +6 -0
- package/lib/hooks/useAIAgents.d.ts +13 -0
- package/lib/hooks/useAIAgents.js +72 -0
- package/lib/hooks/useAuthorization.d.ts +19 -0
- package/lib/hooks/useAuthorization.js +124 -0
- package/lib/hooks/useBackdrop.d.ts +28 -0
- package/lib/hooks/useBackdrop.js +100 -0
- package/lib/hooks/useBackdropJupyterLab.d.ts +15 -0
- package/lib/hooks/useBackdropJupyterLab.js +51 -0
- package/lib/hooks/useCache.d.ts +306 -0
- package/lib/hooks/useCache.js +3098 -0
- package/lib/hooks/useCellOutputshot.d.ts +4 -0
- package/lib/hooks/useCellOutputshot.js +28 -0
- package/lib/hooks/useContainsFocus.d.ts +9 -0
- package/lib/hooks/useContainsFocus.js +43 -0
- package/lib/hooks/useDatalayer.d.ts +21 -0
- package/lib/hooks/useDatalayer.js +81 -0
- package/lib/hooks/useError.d.ts +9 -0
- package/lib/hooks/useError.js +26 -0
- package/lib/hooks/useExternalScript.d.ts +2 -0
- package/lib/hooks/useExternalScript.js +17 -0
- package/lib/hooks/useFocusTrap.d.ts +30 -0
- package/lib/hooks/useFocusTrap.js +48 -0
- package/lib/hooks/useIAM.d.ts +14 -0
- package/lib/hooks/useIAM.js +93 -0
- package/lib/hooks/useId.d.ts +19 -0
- package/lib/hooks/useId.js +100 -0
- package/lib/hooks/useIsomorphicLayoutEffect.d.ts +3 -0
- package/lib/hooks/useIsomorphicLayoutEffect.js +11 -0
- package/lib/hooks/useJupyterLabTheme.d.ts +6 -0
- package/lib/hooks/useJupyterLabTheme.js +24 -0
- package/lib/hooks/useKeyboardEscape.d.ts +1 -0
- package/lib/hooks/useKeyboardEscape.js +18 -0
- package/lib/hooks/useLocationHandles.d.ts +10 -0
- package/lib/hooks/useLocationHandles.js +22 -0
- package/lib/hooks/useNavigate.d.ts +2 -0
- package/lib/hooks/useNavigate.js +24 -0
- package/lib/hooks/useNotebookAIAgent.d.ts +8 -0
- package/lib/hooks/useNotebookAIAgent.js +54 -0
- package/lib/hooks/useOnClickOutside.d.ts +1 -0
- package/lib/hooks/useOnClickOutside.js +29 -0
- package/lib/hooks/useRef.d.ts +10 -0
- package/lib/hooks/useRef.js +17 -0
- package/lib/hooks/useRuntimes.d.ts +5 -0
- package/lib/hooks/useRuntimes.js +34 -0
- package/lib/hooks/useScreenshot.d.ts +21 -0
- package/lib/hooks/useScreenshot.js +60 -0
- package/lib/hooks/useToast.d.ts +42 -0
- package/lib/hooks/useToast.js +141 -0
- package/lib/hooks/useUpload.d.ts +7 -0
- package/lib/hooks/useUpload.js +46 -0
- package/lib/hooks/useUser.d.ts +3 -0
- package/lib/hooks/useUser.js +22 -0
- package/lib/hooks/useVisibilityObserver.d.ts +5 -0
- package/lib/hooks/useVisibilityObserver.js +42 -0
- package/lib/hooks/useWindowSize.d.ts +21 -0
- package/lib/hooks/useWindowSize.js +74 -0
- package/lib/i18n/Labels.d.ts +1 -0
- package/lib/i18n/Labels.js +5 -0
- package/lib/i18n/index.d.ts +1 -0
- package/lib/i18n/index.js +5 -0
- package/lib/index.css +73 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.js +6 -0
- package/lib/main.d.ts +1 -0
- package/lib/main.js +5 -2
- package/lib/mocks/components/FlashMock.d.ts +2 -0
- package/lib/mocks/components/FlashMock.js +13 -0
- package/lib/mocks/components/index.d.ts +1 -0
- package/lib/mocks/components/index.js +5 -0
- package/lib/mocks/hooks/index.d.ts +1 -0
- package/lib/mocks/hooks/index.js +5 -0
- package/lib/mocks/hooks/rests/index.d.ts +1 -0
- package/lib/mocks/hooks/rests/index.js +5 -0
- package/lib/mocks/hooks/rests/rests.d.ts +22 -0
- package/lib/mocks/hooks/rests/rests.js +32 -0
- package/lib/mocks/hooks/useDatalayerMock.d.ts +6 -0
- package/lib/mocks/hooks/useDatalayerMock.js +78 -0
- package/lib/mocks/index.d.ts +4 -0
- package/lib/mocks/index.js +9 -0
- package/lib/mocks/jupyter/index.d.ts +1 -0
- package/lib/mocks/jupyter/index.js +5 -0
- package/lib/mocks/models/CodeBlockMock.d.ts +1 -0
- package/lib/mocks/models/CodeBlockMock.js +5 -0
- package/lib/mocks/models/CodelineMock.d.ts +1 -0
- package/lib/mocks/models/CodelineMock.js +5 -0
- package/lib/mocks/models/CourseMock.d.ts +6 -0
- package/lib/mocks/models/CourseMock.js +29 -0
- package/lib/mocks/models/InviteMock.d.ts +6 -0
- package/lib/mocks/models/InviteMock.js +22 -0
- package/lib/mocks/models/JupyterLabUserMock.d.ts +2 -0
- package/lib/mocks/models/JupyterLabUserMock.js +17 -0
- package/lib/mocks/models/OrganisationMock.d.ts +5 -0
- package/lib/mocks/models/OrganisationMock.js +24 -0
- package/lib/mocks/models/SchoolMock.d.ts +6 -0
- package/lib/mocks/models/SchoolMock.js +25 -0
- package/lib/mocks/models/SpaceMock.d.ts +6 -0
- package/lib/mocks/models/SpaceMock.js +25 -0
- package/lib/mocks/models/TeamMock.d.ts +5 -0
- package/lib/mocks/models/TeamMock.js +26 -0
- package/lib/mocks/models/UserMock.d.ts +2 -0
- package/lib/mocks/models/UserMock.js +29 -0
- package/lib/mocks/models/index.d.ts +9 -0
- package/lib/mocks/models/index.js +13 -0
- package/lib/mocks/views/ActionMenuMock.d.ts +5 -0
- package/lib/mocks/views/ActionMenuMock.js +12 -0
- package/lib/mocks/views/ChartMock.d.ts +5 -0
- package/lib/mocks/views/ChartMock.js +15 -0
- package/lib/mocks/views/ChartMockOptions.d.ts +92 -0
- package/lib/mocks/views/ChartMockOptions.js +102 -0
- package/lib/mocks/views/DashboardMock.d.ts +2 -0
- package/lib/mocks/views/DashboardMock.js +118 -0
- package/lib/mocks/views/FormMock.d.ts +5 -0
- package/lib/mocks/views/FormMock.js +28 -0
- package/lib/mocks/views/TableMock.d.ts +5 -0
- package/lib/mocks/views/TableMock.js +155 -0
- package/lib/mocks/views/WipMock.d.ts +5 -0
- package/lib/mocks/views/WipMock.js +12 -0
- package/lib/mocks/views/index.d.ts +7 -0
- package/lib/mocks/views/index.js +11 -0
- package/lib/models/AIAgent.d.ts +17 -0
- package/lib/models/AIAgent.js +5 -0
- package/lib/models/Account.d.ts +4 -0
- package/lib/models/Account.js +5 -0
- package/lib/models/Assignment.d.ts +7 -0
- package/lib/models/Assignment.js +5 -0
- package/lib/models/Base.d.ts +16 -0
- package/lib/models/Base.js +5 -0
- package/lib/models/Cell.d.ts +8 -0
- package/lib/models/Cell.js +5 -0
- package/lib/models/CodeBlock.d.ts +10 -0
- package/lib/models/CodeBlock.js +5 -0
- package/lib/models/CodefeedBlocks.d.ts +7 -0
- package/lib/models/CodefeedBlocks.js +5 -0
- package/lib/models/Contact.d.ts +73 -0
- package/lib/models/Contact.js +90 -0
- package/lib/models/ContactEvent.d.ts +10 -0
- package/lib/models/ContactEvent.js +14 -0
- package/lib/models/ContactIAMProvider.d.ts +12 -0
- package/lib/models/ContactIAMProvider.js +20 -0
- package/lib/models/ContactTags.d.ts +23 -0
- package/lib/models/ContactTags.js +73 -0
- package/lib/models/Content.d.ts +5 -0
- package/lib/models/Content.js +5 -0
- package/lib/models/Course.d.ts +17 -0
- package/lib/models/Course.js +5 -0
- package/lib/models/Credits.d.ts +76 -0
- package/lib/models/Credits.js +11 -0
- package/lib/models/Dataset.d.ts +16 -0
- package/lib/models/Dataset.js +5 -0
- package/lib/models/Datasource.d.ts +11 -0
- package/lib/models/Datasource.js +14 -0
- package/lib/models/Dean.d.ts +3 -0
- package/lib/models/Dean.js +5 -0
- package/lib/models/Document.d.ts +8 -0
- package/lib/models/Document.js +5 -0
- package/lib/models/Environment.d.ts +82 -0
- package/lib/models/Environment.js +5 -0
- package/lib/models/Errors.d.ts +6 -0
- package/lib/models/Errors.js +13 -0
- package/lib/models/Exercise.d.ts +16 -0
- package/lib/models/Exercise.js +5 -0
- package/lib/models/GrowthKPI.d.ts +5 -0
- package/lib/models/GrowthKPI.js +9 -0
- package/lib/models/IAMProviderLinked.d.ts +9 -0
- package/lib/models/IAMProviderLinked.js +13 -0
- package/lib/models/IAMProviderPost.d.ts +8 -0
- package/lib/models/IAMProviderPost.js +22 -0
- package/lib/models/IAMProviderUsers.d.ts +49 -0
- package/lib/models/IAMProviderUsers.js +29 -0
- package/lib/models/IAMProvidersSpecs.d.ts +22 -0
- package/lib/models/IAMProvidersSpecs.js +72 -0
- package/lib/models/IAMToken.d.ts +11 -0
- package/lib/models/IAMToken.js +14 -0
- package/lib/models/Inbound.d.ts +25 -0
- package/lib/models/Inbound.js +29 -0
- package/lib/models/Instructor.d.ts +3 -0
- package/lib/models/Instructor.js +5 -0
- package/lib/models/Invite.d.ts +14 -0
- package/lib/models/Invite.js +24 -0
- package/lib/models/Item.d.ts +20 -0
- package/lib/models/Item.js +5 -0
- package/lib/models/ItemType.d.ts +2 -0
- package/lib/models/ItemType.js +5 -0
- package/lib/models/LandingRoles.d.ts +3 -0
- package/lib/models/LandingRoles.js +27 -0
- package/lib/models/Lesson.d.ts +5 -0
- package/lib/models/Lesson.js +5 -0
- package/lib/models/Library.d.ts +10 -0
- package/lib/models/Library.js +5 -0
- package/lib/models/Member.d.ts +3 -0
- package/lib/models/Member.js +5 -0
- package/lib/models/Notebook.d.ts +11 -0
- package/lib/models/Notebook.js +5 -0
- package/lib/models/Organization.d.ts +27 -0
- package/lib/models/Organization.js +36 -0
- package/lib/models/OrganizationMember.d.ts +6 -0
- package/lib/models/OrganizationMember.js +5 -0
- package/lib/models/Outbound.d.ts +41 -0
- package/lib/models/Outbound.js +45 -0
- package/lib/models/Page.d.ts +36 -0
- package/lib/models/Page.js +23 -0
- package/lib/models/PageTag.d.ts +19 -0
- package/lib/models/PageTag.js +26 -0
- package/lib/models/Profile.d.ts +1 -0
- package/lib/models/Profile.js +5 -0
- package/lib/models/Role.d.ts +9 -0
- package/lib/models/Role.js +5 -0
- package/lib/models/RolesOrganization.d.ts +9 -0
- package/lib/models/RolesOrganization.js +58 -0
- package/lib/models/RolesPlatform.d.ts +16 -0
- package/lib/models/RolesPlatform.js +142 -0
- package/lib/models/RolesTeam.d.ts +7 -0
- package/lib/models/RolesTeam.js +34 -0
- package/lib/models/Runtime.d.ts +123 -0
- package/lib/models/Runtime.js +18 -0
- package/lib/models/RuntimeSnapshot.d.ts +92 -0
- package/lib/models/RuntimeSnapshot.js +13 -0
- package/lib/models/School.d.ts +11 -0
- package/lib/models/School.js +5 -0
- package/lib/models/Secret.d.ts +10 -0
- package/lib/models/Secret.js +13 -0
- package/lib/models/Space.d.ts +34 -0
- package/lib/models/Space.js +39 -0
- package/lib/models/SpaceItem.d.ts +10 -0
- package/lib/models/SpaceItem.js +5 -0
- package/lib/models/SpaceMember.d.ts +6 -0
- package/lib/models/SpaceMember.js +5 -0
- package/lib/models/Student.d.ts +6 -0
- package/lib/models/Student.js +5 -0
- package/lib/models/StudentItem.d.ts +21 -0
- package/lib/models/StudentItem.js +5 -0
- package/lib/models/Survey.d.ts +20 -0
- package/lib/models/Survey.js +14 -0
- package/lib/models/Team.d.ts +22 -0
- package/lib/models/Team.js +32 -0
- package/lib/models/TeamMember.d.ts +6 -0
- package/lib/models/TeamMember.js +5 -0
- package/lib/models/URN.d.ts +63 -0
- package/lib/models/URN.js +40 -0
- package/lib/models/Usage.d.ts +46 -0
- package/lib/models/Usage.js +21 -0
- package/lib/models/User.d.ts +71 -0
- package/lib/models/User.js +98 -0
- package/lib/models/UserEvent.d.ts +10 -0
- package/lib/models/UserEvent.js +14 -0
- package/lib/models/UserOnboarding.d.ts +14 -0
- package/lib/models/UserOnboarding.js +19 -0
- package/lib/models/UserSettings.d.ts +16 -0
- package/lib/models/UserSettings.js +27 -0
- package/lib/models/WaitingListFormData.d.ts +6 -0
- package/lib/models/WaitingListFormData.js +5 -0
- package/lib/models/index.d.ts +65 -0
- package/lib/models/index.js +69 -0
- package/lib/routes/Routes.d.ts +3 -0
- package/lib/routes/Routes.js +7 -0
- package/lib/routes/index.d.ts +1 -0
- package/lib/routes/index.js +5 -0
- package/lib/state/State.d.ts +33 -0
- package/lib/state/State.js +44 -0
- package/lib/state/index.d.ts +3 -0
- package/lib/state/index.js +7 -0
- package/lib/state/storage/IAMStorage.d.ts +33 -0
- package/lib/state/storage/IAMStorage.js +76 -0
- package/lib/state/storage/index.d.ts +1 -0
- package/lib/state/storage/index.js +5 -0
- package/lib/state/substates/AIAgentState.d.ts +11 -0
- package/lib/state/substates/AIAgentState.js +40 -0
- package/lib/state/substates/CellState.d.ts +12 -0
- package/lib/state/substates/CellState.js +21 -0
- package/lib/state/substates/CoreState.d.ts +25 -0
- package/lib/state/substates/CoreState.js +88 -0
- package/lib/state/substates/DatasourceState.d.ts +11 -0
- package/lib/state/substates/DatasourceState.js +16 -0
- package/lib/state/substates/DocumentState.d.ts +10 -0
- package/lib/state/substates/DocumentState.js +14 -0
- package/lib/state/substates/GradeState.d.ts +10 -0
- package/lib/state/substates/GradeState.js +14 -0
- package/lib/state/substates/IAMState.d.ts +75 -0
- package/lib/state/substates/IAMState.js +291 -0
- package/lib/state/substates/JupyterLabState.d.ts +16 -0
- package/lib/state/substates/JupyterLabState.js +17 -0
- package/lib/state/substates/LayoutState.d.ts +62 -0
- package/lib/state/substates/LayoutState.js +74 -0
- package/lib/state/substates/NbformatState.d.ts +13 -0
- package/lib/state/substates/NbformatState.js +16 -0
- package/lib/state/substates/OrganizationState.d.ts +11 -0
- package/lib/state/substates/OrganizationState.js +16 -0
- package/lib/state/substates/RuntimesState.d.ts +88 -0
- package/lib/state/substates/RuntimesState.js +178 -0
- package/lib/state/substates/SpaceState.d.ts +11 -0
- package/lib/state/substates/SpaceState.js +16 -0
- package/lib/state/substates/SurveysState.d.ts +14 -0
- package/lib/state/substates/SurveysState.js +98 -0
- package/lib/state/substates/TeamState.d.ts +11 -0
- package/lib/state/substates/TeamState.js +17 -0
- package/lib/state/substates/index.d.ts +15 -0
- package/lib/state/substates/index.js +19 -0
- package/lib/stories/assets/accessibility.png +0 -0
- package/lib/stories/assets/accessibility.svg +1 -0
- package/lib/stories/assets/addon-library.png +0 -0
- package/lib/stories/assets/assets.png +0 -0
- package/lib/stories/assets/context.png +0 -0
- package/lib/stories/assets/discord.svg +1 -0
- package/lib/stories/assets/docs.png +0 -0
- package/lib/stories/assets/figma-plugin.png +0 -0
- package/lib/stories/assets/github.svg +1 -0
- package/lib/stories/assets/share.png +0 -0
- package/lib/stories/assets/styling.png +0 -0
- package/lib/stories/assets/testing.png +0 -0
- package/lib/stories/assets/theming.png +0 -0
- package/lib/stories/assets/tutorials.svg +1 -0
- package/lib/stories/assets/youtube.svg +1 -0
- package/lib/stories/button.css +35 -0
- package/lib/stories/header.css +37 -0
- package/lib/stories/page.css +73 -0
- package/lib/test-setup.d.ts +1 -0
- package/lib/test-setup.js +57 -0
- package/lib/theme/DatalayerTheme.d.ts +37 -0
- package/lib/theme/DatalayerTheme.js +62 -0
- package/lib/theme/DatalayerThemeProvider.d.ts +17 -0
- package/lib/theme/DatalayerThemeProvider.js +69 -0
- package/lib/theme/Palette.d.ts +5 -0
- package/lib/theme/Palette.js +22 -0
- package/lib/theme/index.d.ts +3 -0
- package/lib/theme/index.js +7 -0
- package/lib/utils/Array.d.ts +2 -0
- package/lib/utils/Array.js +16 -0
- package/lib/utils/Avatar.d.ts +9 -0
- package/lib/utils/Avatar.js +34 -0
- package/lib/utils/Browser.d.ts +3 -0
- package/lib/utils/Browser.js +63 -0
- package/lib/utils/Cells.d.ts +2 -0
- package/lib/utils/Cells.js +28 -0
- package/lib/utils/Cookie.d.ts +12 -0
- package/lib/utils/Cookie.js +48 -0
- package/lib/utils/Date.d.ts +2 -0
- package/lib/utils/Date.js +60 -0
- package/lib/utils/Download.d.ts +3 -0
- package/lib/utils/Download.js +48 -0
- package/lib/utils/DownloadFile.d.ts +10 -0
- package/lib/utils/DownloadFile.js +36 -0
- package/lib/utils/Env.d.ts +1 -0
- package/lib/utils/Env.js +7 -0
- package/lib/utils/File.d.ts +7 -0
- package/lib/utils/File.js +16 -0
- package/lib/utils/Format.d.ts +17 -0
- package/lib/utils/Format.js +54 -0
- package/lib/utils/Ids.d.ts +2 -0
- package/lib/utils/Ids.js +12 -0
- package/lib/utils/Jupyter.d.ts +1 -0
- package/lib/utils/Jupyter.js +12 -0
- package/lib/utils/Lazy.d.ts +8 -0
- package/lib/utils/Lazy.js +23 -0
- package/lib/utils/Msc.d.ts +16 -0
- package/lib/utils/Msc.js +28 -0
- package/lib/utils/Name.d.ts +7 -0
- package/lib/utils/Name.js +34 -0
- package/lib/utils/Notebook.d.ts +19 -0
- package/lib/utils/Notebook.js +37 -0
- package/lib/utils/Number.d.ts +1 -0
- package/lib/utils/Number.js +21 -0
- package/lib/utils/Plots.d.ts +16 -0
- package/lib/utils/Plots.js +56 -0
- package/lib/utils/Random.d.ts +1 -0
- package/lib/utils/Random.js +7 -0
- package/lib/utils/Screenshot.d.ts +1 -0
- package/lib/utils/Screenshot.js +27 -0
- package/lib/utils/Scroll.d.ts +2 -0
- package/lib/utils/Scroll.js +32 -0
- package/lib/utils/Sleep.d.ts +2 -0
- package/lib/utils/Sleep.js +8 -0
- package/lib/utils/Snapshot.d.ts +7 -0
- package/lib/utils/Snapshot.js +21 -0
- package/lib/utils/String.d.ts +1 -0
- package/lib/utils/String.js +13 -0
- package/lib/utils/Uri.d.ts +2 -0
- package/lib/utils/Uri.js +26 -0
- package/lib/utils/Validator.d.ts +12 -0
- package/lib/utils/Validator.js +44 -0
- package/lib/utils/WithSuspense.d.ts +2 -0
- package/lib/utils/WithSuspense.js +21 -0
- package/lib/utils/index.d.ts +26 -0
- package/lib/utils/index.js +31 -0
- package/package.json +86 -17
- package/style/animation/Animation.module.css +174 -0
- package/style/base.css +62 -3
- package/style/index.css +2 -3
- package/style/index.js +0 -7
|
@@ -0,0 +1,718 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2023-2025 Datalayer, Inc.
|
|
3
|
+
* Distributed under the terms of the Modified BSD License.
|
|
4
|
+
*/
|
|
5
|
+
/*
|
|
6
|
+
* Main styles for the subdomain navigation bar.
|
|
7
|
+
*/
|
|
8
|
+
.SubdomainNavBar {
|
|
9
|
+
position: relative;
|
|
10
|
+
z-index: 90;
|
|
11
|
+
font-weight: 550;
|
|
12
|
+
background: var(--brand-SubdomainNavBar-canvas-default);
|
|
13
|
+
-webkit-backdrop-filter: blur(16px);
|
|
14
|
+
backdrop-filter: blur(16px);
|
|
15
|
+
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
16
|
+
transition: background-color var(--brand-animation-duration-fast) var(--brand-animation-easing-default),
|
|
17
|
+
border-color var(--brand-animation-duration-fast) var(--brand-animation-easing-default);
|
|
18
|
+
height: 75px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/*
|
|
22
|
+
* Outer container
|
|
23
|
+
*/
|
|
24
|
+
.SubdomainNavBar-outer-container {
|
|
25
|
+
z-index: 90;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.SubdomainNavBar-outer-container--fixed {
|
|
29
|
+
position: fixed;
|
|
30
|
+
top: 0;
|
|
31
|
+
right: 0;
|
|
32
|
+
left: 0;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/*
|
|
36
|
+
* Inner container
|
|
37
|
+
*/
|
|
38
|
+
.SubdomainNavBar-inner-container {
|
|
39
|
+
display: flex;
|
|
40
|
+
padding: 4px 28px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.SubdomainNavBar-inner-container--centered {
|
|
44
|
+
max-width: 1280px;
|
|
45
|
+
margin: 0 auto;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@media screen and (min-width: 48rem) {
|
|
49
|
+
.SubdomainNavBar-inner-container {
|
|
50
|
+
padding: 4px 32px;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.SubdomainNavBar-inner-container--search-open {
|
|
55
|
+
animation: fade-out 150ms;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/*
|
|
59
|
+
* Logo and title area
|
|
60
|
+
*/
|
|
61
|
+
.SubdomainNavBar-title-area {
|
|
62
|
+
display: inline-flex;
|
|
63
|
+
list-style-type: none;
|
|
64
|
+
align-items: center;
|
|
65
|
+
gap: 16px;
|
|
66
|
+
padding: 0;
|
|
67
|
+
margin: 0;
|
|
68
|
+
max-width: 340px;
|
|
69
|
+
color: var(--brand-color-text-default);
|
|
70
|
+
padding: var(--base-size-16) 0;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.SubdomainNavBar-logo-mark {
|
|
74
|
+
color: var(--brand-color-text-default);
|
|
75
|
+
position: relative;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.SubdomainNavBar-back-arrow {
|
|
79
|
+
position: absolute;
|
|
80
|
+
left: calc(-32px + 5px);
|
|
81
|
+
opacity: 0;
|
|
82
|
+
transition: opacity var(--brand-animation-duration-fast), transform var(--brand-animation-duration-fast) ease;
|
|
83
|
+
transform: translateX(5px);
|
|
84
|
+
color: var(--brand-color-text-muted);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.SubdomainNavBar-logo-mark:hover .SubdomainNavBar-back-arrow {
|
|
88
|
+
opacity: 1;
|
|
89
|
+
transform: translateX(0);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.SubdomainNavBar-title-separator {
|
|
93
|
+
color: var(--brand-color-text-muted);
|
|
94
|
+
font-weight: var(--base-text-weight-semibold);
|
|
95
|
+
font-size: var(--base-size-32);
|
|
96
|
+
line-height: 29px;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.SubdomainNavBar-logo-mark svg {
|
|
100
|
+
width: 32px;
|
|
101
|
+
height: 32px;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.SubdomainNavBar-title {
|
|
105
|
+
font-family: var(--brand-heading-fontFamily);
|
|
106
|
+
font-weight: var(--base-text-weight-semibold);
|
|
107
|
+
font-size: var(--base-size-24);
|
|
108
|
+
line-height: var(--base-size-32);
|
|
109
|
+
color: var(--brand-color-text-default);
|
|
110
|
+
text-decoration: none;
|
|
111
|
+
padding-right: var(--base-size-16);
|
|
112
|
+
white-space: nowrap;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.SubdomainNavBar-title:hover {
|
|
116
|
+
text-decoration: none;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/*
|
|
120
|
+
* Primary navigation link area
|
|
121
|
+
*/
|
|
122
|
+
.SubdomainNavBar-primary-nav {
|
|
123
|
+
display: inline-flex;
|
|
124
|
+
list-style-type: none;
|
|
125
|
+
align-items: center;
|
|
126
|
+
padding: 0;
|
|
127
|
+
margin: 0;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.SubdomainNavBar-primary-nav-list {
|
|
131
|
+
list-style-type: none;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
@media screen and (max-width: 767px) {
|
|
135
|
+
.SubdomainNavBar-primary-nav-list {
|
|
136
|
+
display: none;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.SubdomainNavBar-primary-nav-list--invisible {
|
|
140
|
+
display: none;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.SubdomainNavBar-primary-nav-list--visible {
|
|
144
|
+
display: block;
|
|
145
|
+
margin: 0;
|
|
146
|
+
padding: 0;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.SubdomainNavBar-menu-wrapper {
|
|
150
|
+
display: flex;
|
|
151
|
+
flex-direction: column;
|
|
152
|
+
justify-content: space-between;
|
|
153
|
+
overflow-y: auto;
|
|
154
|
+
position: absolute;
|
|
155
|
+
top: 75px;
|
|
156
|
+
left: 0;
|
|
157
|
+
right: 0;
|
|
158
|
+
bottom: 0;
|
|
159
|
+
z-index: 2;
|
|
160
|
+
background-color: var(--brand-color-canvas-default);
|
|
161
|
+
width: 100vw;
|
|
162
|
+
height: calc(100vh - 75px);
|
|
163
|
+
animation: fade-in-down 500ms;
|
|
164
|
+
animation-timing-function: var(--brand-animation-easing-default);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.SubdomainNavBar-menu-wrapper--close {
|
|
168
|
+
display: none;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
@media screen and (min-width: 48rem) {
|
|
173
|
+
.SubdomainNavBar-primary-nav-list {
|
|
174
|
+
display: flex;
|
|
175
|
+
align-items: center;
|
|
176
|
+
width: 100%;
|
|
177
|
+
max-width: 150px;
|
|
178
|
+
padding: 0;
|
|
179
|
+
margin: 0 24px 0 0;
|
|
180
|
+
/* overflow: hidden; */
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
@media screen and (min-width: 768px) {
|
|
185
|
+
.SubdomainNavBar-primary-nav-list {
|
|
186
|
+
max-width: 100px;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
@media screen and (min-width: 850px) {
|
|
191
|
+
.SubdomainNavBar-primary-nav-list {
|
|
192
|
+
max-width: 200px;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
@media screen and (min-width: 1024px) {
|
|
197
|
+
.SubdomainNavBar-primary-nav-list {
|
|
198
|
+
max-width: 300px;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
@media screen and (min-width: 1280px) {
|
|
203
|
+
.SubdomainNavBar-primary-nav-list {
|
|
204
|
+
max-width: 520px;
|
|
205
|
+
margin-right: 80px;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.SubdomainNavBar-primary-nav-list-item {
|
|
210
|
+
white-space: nowrap;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
@media screen and (max-width: 767px) {
|
|
214
|
+
.SubdomainNavBar-primary-nav-list-item {
|
|
215
|
+
animation-name: fade-in-down-staggered;
|
|
216
|
+
animation-duration: 500ms;
|
|
217
|
+
animation-delay: calc(var(--animation-order) * 80ms);
|
|
218
|
+
animation-fill-mode: both;
|
|
219
|
+
animation-timing-function: var(--brand-animation-easing-default);
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
@media screen and (min-width: 48rem) {
|
|
224
|
+
.SubdomainNavBar-primary-nav-list-item--visible {
|
|
225
|
+
order: 0;
|
|
226
|
+
visibility: visible;
|
|
227
|
+
opacity: 1;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.SubdomainNavBar-primary-nav-list-item--invisible {
|
|
231
|
+
order: 100;
|
|
232
|
+
visibility: hidden;
|
|
233
|
+
pointer-events: none;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.SubdomainNavBar-primary-nav-list-item--overflow {
|
|
237
|
+
order: 99;
|
|
238
|
+
position: relative;
|
|
239
|
+
right: 0;
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.SubdomainNavBar-link {
|
|
244
|
+
position: relative;
|
|
245
|
+
display: flex;
|
|
246
|
+
flex-direction: row;
|
|
247
|
+
align-items: center;
|
|
248
|
+
gap: var(--base-size-8);
|
|
249
|
+
color: var(--brand-color-text-default);
|
|
250
|
+
font-family: var(--brand-heading-fontFamily);
|
|
251
|
+
font-weight: var(--base-text-weight-normal);
|
|
252
|
+
font-size: var(--base-size-20);
|
|
253
|
+
line-height: var(--base-size-20);
|
|
254
|
+
padding: var(--base-size-8) var(--base-size-16) var(--base-size-16) var(--base-size-28);
|
|
255
|
+
text-decoration: none;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.SubdomainNavBar-link:hover {
|
|
259
|
+
text-decoration: none;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.SubdomainNavBar-link-text {
|
|
263
|
+
position: relative;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
@media screen and (max-width: 767px) {
|
|
267
|
+
.SubdomainNavBar-link:first-of-type {
|
|
268
|
+
padding-top: var(--base-size-24);
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.SubdomainNavBar-link--title {
|
|
272
|
+
font-weight: var(--base-text-weight-bold);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
@media screen and (min-width: 48rem) {
|
|
277
|
+
.SubdomainNavBar-link {
|
|
278
|
+
font-family: var(--brand-heading-fontFamily);
|
|
279
|
+
font-weight: var(--base-text-weight-semibold);
|
|
280
|
+
font-size: var(--base-size-16);
|
|
281
|
+
line-height: var(--base-size-16);
|
|
282
|
+
padding: var(--base-size-16) var(--base-size-24);
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.SubdomainNavBar-link::after {
|
|
286
|
+
content: '';
|
|
287
|
+
position: absolute;
|
|
288
|
+
bottom: 10px;
|
|
289
|
+
left: 0;
|
|
290
|
+
width: 100%;
|
|
291
|
+
height: 2px;
|
|
292
|
+
background-color: var(--brand-SubdomainNavBar-border-nav-default);
|
|
293
|
+
opacity: 0;
|
|
294
|
+
transition: opacity var(--brand-animation-duration-fast), transform var(--brand-animation-duration-fast);
|
|
295
|
+
opacity: 1;
|
|
296
|
+
transform: scale(0);
|
|
297
|
+
transform-origin: center;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.SubdomainNavBar-link:hover::after,
|
|
301
|
+
.SubdomainNavBar-link:focus::after {
|
|
302
|
+
opacity: 1;
|
|
303
|
+
transform: translate3d(0, 0.2em, 0);
|
|
304
|
+
transform: scale(0.4);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.SubdomainNavBar-link:active::after {
|
|
308
|
+
background-color: var(--brand-SubdomainNavBar-border-nav-pressed);
|
|
309
|
+
transform: scale(0.6);
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.SubdomainNavBar-overflow-menu-item .SubdomainNavBar-link {
|
|
313
|
+
transition: background-color var(--brand-animation-easing-default) 250ms;
|
|
314
|
+
background-color: var(--brand-SubdomainNavBar-canvas-overflow-default);
|
|
315
|
+
color: var(--brand-SubdomainNavBar-fg-overflow-default);
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.SubdomainNavBar-overflow-menu-item .SubdomainNavBar-link::after {
|
|
319
|
+
display: none;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.SubdomainNavBar-overflow-menu-item .SubdomainNavBar-link:hover {
|
|
323
|
+
background-color: var(--brand-SubdomainNavBar-canvas-overflow-hover);
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.SubdomainNavBar-overflow-menu-item .SubdomainNavBar-link:focus,
|
|
327
|
+
.SubdomainNavBar-overflow-menu-item .SubdomainNavBar-link:focus-visible {
|
|
328
|
+
box-shadow: inset 0px 0px 0px 2px var(--brand-color-focus);
|
|
329
|
+
outline: none;
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.SubdomainNavBar-more-link {
|
|
334
|
+
display: none;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.SubdomainNavBar-more-link[aria-expanded='true']:hover::after,
|
|
338
|
+
.SubdomainNavBar-more-link[aria-expanded='true']:focus::after {
|
|
339
|
+
display: none;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
@media screen and (min-width: 48rem) {
|
|
343
|
+
.SubdomainNavBar-more-link {
|
|
344
|
+
cursor: pointer;
|
|
345
|
+
appearance: none;
|
|
346
|
+
border: none;
|
|
347
|
+
background-color: transparent;
|
|
348
|
+
display: inline-flex;
|
|
349
|
+
align-items: center;
|
|
350
|
+
gap: var(--base-size-4);
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.SubdomainNavBar-overflow-menu {
|
|
355
|
+
position: absolute;
|
|
356
|
+
right: 0;
|
|
357
|
+
top: var(--base-size-48);
|
|
358
|
+
background-color: var(--base-color-scale-white-0);
|
|
359
|
+
border-radius: var(--brand-borderRadius-large);
|
|
360
|
+
animation: fade-in-down 0.25s, enlarge-shadow 250ms forwards;
|
|
361
|
+
animation-timing-function: var(--brand-animation-easing-default);
|
|
362
|
+
box-shadow: 0px 8px 24px rgba(1, 4, 9, 0.15);
|
|
363
|
+
overflow: hidden;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.SubdomainNavBar-overflow-menu-list {
|
|
367
|
+
display: grid;
|
|
368
|
+
list-style-type: none;
|
|
369
|
+
padding: 0;
|
|
370
|
+
margin: 0;
|
|
371
|
+
width: max-content;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
/*
|
|
375
|
+
* Toolbar actions area for search and mobile menu
|
|
376
|
+
*/
|
|
377
|
+
|
|
378
|
+
.SubdomainNavBar-secondary-nav {
|
|
379
|
+
display: flex;
|
|
380
|
+
align-items: center;
|
|
381
|
+
margin-left: auto;
|
|
382
|
+
min-width: 0;
|
|
383
|
+
}
|
|
384
|
+
.SubdomainNavBar-search-trigger {
|
|
385
|
+
display: flex;
|
|
386
|
+
align-items: center;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.SubdomainNavBar-search-button,
|
|
390
|
+
.SubdomainNavBar-menu-button {
|
|
391
|
+
cursor: pointer;
|
|
392
|
+
appearance: none;
|
|
393
|
+
background-color: transparent;
|
|
394
|
+
border: var(--brand-borderWidth-thick) solid transparent;
|
|
395
|
+
color: var(--brand-color-text-default);
|
|
396
|
+
width: calc(48px - var(--brand-borderWidth-thick));
|
|
397
|
+
height: calc(48px - var(--brand-borderWidth-thick));
|
|
398
|
+
display: flex;
|
|
399
|
+
align-items: center;
|
|
400
|
+
justify-content: center;
|
|
401
|
+
transition: border 250ms var(--brand-animation-easing-default), box-shadow 250ms ease;
|
|
402
|
+
border-radius: var(--brand-borderRadius-medium);
|
|
403
|
+
box-shadow: 0 0 0 2px transparent;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.SubdomainNavBar-search-button svg,
|
|
407
|
+
.SubdomainNavBar-menu-button svg {
|
|
408
|
+
width: 24px;
|
|
409
|
+
height: 24px;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.SubdomainNavBar-menu-button {
|
|
413
|
+
display: inline-block;
|
|
414
|
+
align-self: center;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.SubdomainNavBar-menu-button-bar {
|
|
418
|
+
width: 22px;
|
|
419
|
+
height: 2px;
|
|
420
|
+
background-color: var(--brand-color-text-default);
|
|
421
|
+
margin: var(--base-size-4) auto;
|
|
422
|
+
border-radius: var(--brand-borderRadius-large);
|
|
423
|
+
display: block;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
427
|
+
.SubdomainNavBar-menu-button-bar {
|
|
428
|
+
transition-timing-function: var(--brand-animation-easing-default);
|
|
429
|
+
transition-duration: 500ms;
|
|
430
|
+
transition-property: opacity, transform;
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.SubdomainNavBar-menu-button-bar:nth-of-type(1) {
|
|
435
|
+
transform-origin: bottom right;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.SubdomainNavBar-menu-button-bar:nth-of-type(3) {
|
|
439
|
+
transform-origin: top right;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.SubdomainNavBar-menu-button--close .SubdomainNavBar-menu-button-bar:nth-of-type(1) {
|
|
443
|
+
transform: rotate(-45deg) translateY(-3px);
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.SubdomainNavBar-menu-button--close .SubdomainNavBar-menu-button-bar:nth-of-type(2) {
|
|
447
|
+
opacity: 0;
|
|
448
|
+
transform: scale(0);
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.SubdomainNavBar-menu-button--close .SubdomainNavBar-menu-button-bar:nth-of-type(3) {
|
|
452
|
+
transform: rotate(45deg) translateY(3px);
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
@media screen and (min-width: 48rem) {
|
|
456
|
+
.SubdomainNavBar-search-button:hover,
|
|
457
|
+
.SubdomainNavBar-menu-button:hover {
|
|
458
|
+
border: var(--brand-borderWidth-thick) solid var(--brand-SubdomainNavBar-border-button-hover);
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.SubdomainNavBar-search-button:active,
|
|
462
|
+
.SubdomainNavBar-menu-button:active {
|
|
463
|
+
box-shadow: 0 0 0 1px var(--brand-SubdomainNavBar-border-button-hover);
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.SubdomainNavBar-mobile-menu-button {
|
|
467
|
+
display: none;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.SubdomainNavBar-search-dialog-control-area .SubdomainNavBar-search-button,
|
|
471
|
+
.SubdomainNavBar-search-dialog-control-area .SubdomainNavBar-menu-button {
|
|
472
|
+
display: inline-flex;
|
|
473
|
+
width: 48px;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.SubdomainNavBar-search-button {
|
|
477
|
+
margin: 0 var(--base-size-16) 0 auto;
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.SubdomainNavBar-button-area {
|
|
482
|
+
display: inline-flex;
|
|
483
|
+
gap: var(--base-size-16);
|
|
484
|
+
align-items: center;
|
|
485
|
+
min-width: 0;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.SubdomainNavBar-button-area-inner {
|
|
489
|
+
display: flex;
|
|
490
|
+
gap: 16px;
|
|
491
|
+
min-width: 0;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
@media screen and (max-width: 48rem) {
|
|
495
|
+
.SubdomainNavBar-button-area {
|
|
496
|
+
display: none;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.SubdomainNavBar-button-area--visible {
|
|
500
|
+
display: flex;
|
|
501
|
+
left: 0;
|
|
502
|
+
z-index: 99;
|
|
503
|
+
width: 100%;
|
|
504
|
+
height: auto;
|
|
505
|
+
animation-name: fade-in-down-staggered;
|
|
506
|
+
animation-duration: 500ms;
|
|
507
|
+
animation-delay: calc(10 * 80ms);
|
|
508
|
+
animation-fill-mode: both;
|
|
509
|
+
animation-timing-function: var(--brand-animation-easing-default);
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.SubdomainNavBar-inner-container--search-open .SubdomainNavBar-button-area--visible {
|
|
513
|
+
display: none;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.SubdomainNavBar-button-area-inner {
|
|
517
|
+
width: 100%;
|
|
518
|
+
flex-direction: column;
|
|
519
|
+
margin: 24px;
|
|
520
|
+
min-width: 0;
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
.SubdomainNavBar-cta-button {
|
|
525
|
+
white-space: nowrap;
|
|
526
|
+
min-width: 0;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
@media screen and (min-width: 1024px) {
|
|
530
|
+
.SubdomainNavBar-cta-button--secondary {
|
|
531
|
+
display: inline-flex;
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
/*
|
|
536
|
+
* Search dialog control area
|
|
537
|
+
*/
|
|
538
|
+
.SubdomainNavBar-search-form {
|
|
539
|
+
display: flex;
|
|
540
|
+
width: 100%;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.SubdomainNavBar-search-dialog {
|
|
544
|
+
position: absolute;
|
|
545
|
+
z-index: 99;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
@media screen and (max-width: 767px) {
|
|
549
|
+
.SubdomainNavBar-search-dialog {
|
|
550
|
+
top: 0;
|
|
551
|
+
left: 0;
|
|
552
|
+
right: 0;
|
|
553
|
+
background: var(--brand-SubdomainNavBar-canvas-search);
|
|
554
|
+
-webkit-backdrop-filter: blur(100px);
|
|
555
|
+
backdrop-filter: blur(100px);
|
|
556
|
+
height: 100vh;
|
|
557
|
+
width: 100vw;
|
|
558
|
+
animation: fade-in-down var(--brand-animation-duration-fast);
|
|
559
|
+
animation-timing-function: var(--brand-animation-easing-default);
|
|
560
|
+
}
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
@media screen and (min-width: 48rem) {
|
|
564
|
+
.SubdomainNavBar-search-dialog {
|
|
565
|
+
position: absolute;
|
|
566
|
+
top: 0;
|
|
567
|
+
bottom: 1px;
|
|
568
|
+
width: 100vw;
|
|
569
|
+
left: 0;
|
|
570
|
+
right: 0;
|
|
571
|
+
background-color: var(--brand-SubdomainNavBar-canvas-search);
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.SubdomainNavBar-search-dialog .SubdomainNavBar-search-trigger .SubdomainNavBar-search-button {
|
|
576
|
+
margin-right: 0;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.SubdomainNavBar-search-dialog-control-area {
|
|
580
|
+
height: 74px;
|
|
581
|
+
background: var(--brand-SubdomainNavBar-canvas-default);
|
|
582
|
+
-webkit-backdrop-filter: blur(16px);
|
|
583
|
+
backdrop-filter: blur(16px);
|
|
584
|
+
padding: var(--base-size-12) var(--base-size-28);
|
|
585
|
+
display: flex;
|
|
586
|
+
align-items: center;
|
|
587
|
+
animation: fade-in-down 500ms;
|
|
588
|
+
gap: var(--base-size-4);
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
@media screen and (min-width: 48rem) {
|
|
592
|
+
.SubdomainNavBar-search-dialog-control-area {
|
|
593
|
+
max-width: 570px;
|
|
594
|
+
margin: 0 auto;
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.SubdomainNavBar-search-text-input {
|
|
599
|
+
border-color: transparent;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
.SubdomainNavBar-search-results-container {
|
|
603
|
+
animation: fade-in-down 500ms;
|
|
604
|
+
padding: var(--base-size-24);
|
|
605
|
+
background-color: var(--base-color-scale-white-0);
|
|
606
|
+
border-radius: var(--brand-borderRadius-large);
|
|
607
|
+
box-shadow: 0px 8px 24px rgba(1, 4, 9, 0.15);
|
|
608
|
+
max-height: 514px;
|
|
609
|
+
height: 70vh;
|
|
610
|
+
max-width: 570px;
|
|
611
|
+
margin: 0 auto;
|
|
612
|
+
width: 80%;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.SubdomainNavBar-search-results {
|
|
616
|
+
overflow-y: scroll;
|
|
617
|
+
list-style: none;
|
|
618
|
+
padding: 0 var(--base-size-24) 0 0;
|
|
619
|
+
margin: 0;
|
|
620
|
+
height: 90%;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
.SubdomainNavBar-search-results-heading {
|
|
624
|
+
display: block;
|
|
625
|
+
font-weight: var(--brand-heading-weight-600);
|
|
626
|
+
font-size: var(--base-size-20);
|
|
627
|
+
line-height: var(--base-size-24);
|
|
628
|
+
margin-bottom: var(--base-size-20);
|
|
629
|
+
padding: 0 var(--base-size-8);
|
|
630
|
+
color: var(--base-color-scale-black-0);
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.SubdomainNavBar-search-result-item {
|
|
634
|
+
padding: var(--base-size-16) var(--base-size-8);
|
|
635
|
+
border-bottom: solid var(--brand-borderWidth-thin, 1px)
|
|
636
|
+
var(--brand-SubdomainNavBar-search-results-border-default, #b7bfc7);
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.SubdomainNavBar-search-result-item[aria-selected='true'] a {
|
|
640
|
+
outline: var(--brand-color-focus) auto var(--brand-borderWidth-thick);
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.SubdomainNavBar-search-result-item-container {
|
|
644
|
+
letter-spacing: var(--brand-heading-letterSpacing-400);
|
|
645
|
+
font-size: var(--brand-text-size-400);
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.SubdomainNavBar-search-result-item-container a {
|
|
649
|
+
display: block;
|
|
650
|
+
color: var(--base-color-scale-black-0);
|
|
651
|
+
text-decoration: none;
|
|
652
|
+
margin: 0 0 var(--base-size-12);
|
|
653
|
+
font-size: var(--base-size-16);
|
|
654
|
+
font-weight: var(--brand-heading-weight-400);
|
|
655
|
+
font-family: var(--brand-heading-fontFamily);
|
|
656
|
+
line-height: var(--brand-text-lineHeight-400);
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.SubdomainNavBar-search-result-item-container a:hover {
|
|
660
|
+
text-decoration: none;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.SubdomainNavBar-search-result-item-desc {
|
|
664
|
+
color: var(--base-color-scale-black-0);
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
.SubdomainNavBar-skip-to-content {
|
|
668
|
+
position: fixed;
|
|
669
|
+
top: 75px;
|
|
670
|
+
border-radius: 0px;
|
|
671
|
+
width: 100vw;
|
|
672
|
+
z-index: 100;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
/*
|
|
676
|
+
* Reusable animations
|
|
677
|
+
*/
|
|
678
|
+
@keyframes fade-in-down {
|
|
679
|
+
0% {
|
|
680
|
+
opacity: 0;
|
|
681
|
+
transform: translateY(-20px);
|
|
682
|
+
}
|
|
683
|
+
100% {
|
|
684
|
+
opacity: 1;
|
|
685
|
+
transform: translateY(0);
|
|
686
|
+
}
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
@keyframes fade-out {
|
|
690
|
+
0% {
|
|
691
|
+
opacity: 1;
|
|
692
|
+
}
|
|
693
|
+
100% {
|
|
694
|
+
opacity: 0;
|
|
695
|
+
}
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
@keyframes enlarge-shadow {
|
|
699
|
+
0% {
|
|
700
|
+
scale: 0.98;
|
|
701
|
+
box-shadow: 0px 8px 0 rgba(1, 4, 9, 0.15);
|
|
702
|
+
}
|
|
703
|
+
100% {
|
|
704
|
+
scale: 1;
|
|
705
|
+
box-shadow: 0px 8px 24px rgba(1, 4, 9, 0.15);
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
@keyframes fade-in-down-staggered {
|
|
710
|
+
0% {
|
|
711
|
+
opacity: 0;
|
|
712
|
+
transform: scale(0.6) translateY(-8px);
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
100% {
|
|
716
|
+
opacity: 1;
|
|
717
|
+
}
|
|
718
|
+
}
|