test-nucleoid 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +3 -0
- package/.browserslistrc +1 -0
- package/.env +2 -0
- package/.eslintignore +3 -0
- package/.eslintrc.json +58 -0
- package/.gitattributes +1 -0
- package/.github/workflows/publish.yml +66 -0
- package/.prettierignore +1 -0
- package/.prettierrc +10 -0
- package/.storybook/main.js +15 -0
- package/.storybook/preview.js +17 -0
- package/.storybook/vitest.setup.js +6 -0
- package/README.md +1 -0
- package/cypress.config.js +11 -0
- package/index.js +1 -0
- package/package.json +795 -0
- package/project/.eslintrc.cjs +22 -0
- package/project/config.js +18 -0
- package/project/config.menu.js +39 -0
- package/project/config.template.js +31 -0
- package/project/cypress/e2e/layouts.cy.js +170 -0
- package/project/cypress/e2e/login.cy.js +35 -0
- package/project/cypress/e2e/selectbar.cy.js +80 -0
- package/project/cypress/fixtures/CONFIG/MENU_CONFIG.js +39 -0
- package/project/cypress/fixtures/EMPEROR/EMPERORS_GET.json +51 -0
- package/project/cypress/fixtures/EMPEROR/EMPERORS_POST.json +9 -0
- package/project/cypress/fixtures/OAUTH/GITHUB/user.json +46 -0
- package/project/cypress/fixtures/example.json +5 -0
- package/project/cypress/support/commands.js +104 -0
- package/project/cypress/support/e2e.js +1 -0
- package/project/cypress.config.js +10 -0
- package/project/index.html +12 -0
- package/project/media/ProjectIcons/3d.png +0 -0
- package/project/media/ProjectIcons/box.png +0 -0
- package/project/media/ProjectIcons/cafe.png +0 -0
- package/project/media/ProjectIcons/cargo.png +0 -0
- package/project/media/ProjectIcons/cloud.png +0 -0
- package/project/media/ProjectIcons/code.png +0 -0
- package/project/media/ProjectIcons/company.png +0 -0
- package/project/media/ProjectIcons/conversation.png +0 -0
- package/project/media/ProjectIcons/distributed.png +0 -0
- package/project/media/ProjectIcons/fingerprint.png +0 -0
- package/project/media/ProjectIcons/forest.png +0 -0
- package/project/media/ProjectIcons/headphones.png +0 -0
- package/project/media/ProjectIcons/office.png +0 -0
- package/project/media/ProjectIcons/path.png +0 -0
- package/project/media/ProjectIcons/printer.png +0 -0
- package/project/media/ProjectIcons/project.png +0 -0
- package/project/media/ProjectIcons/resume.png +0 -0
- package/project/media/ProjectIcons/rocket.png +0 -0
- package/project/media/ProjectIcons/rtruck.png +0 -0
- package/project/media/ProjectIcons/sign.png +0 -0
- package/project/media/ProjectIcons/site.png +0 -0
- package/project/media/ProjectIcons/truck.png +0 -0
- package/project/media/logo.png +0 -0
- package/project/package-lock.json +22434 -0
- package/project/package.json +42 -0
- package/project/public/assets/background/overlay_2.jpg +0 -0
- package/project/public/assets/illustrations/illustration_dashboard.png +0 -0
- package/project/public/media/largeLogo.png +0 -0
- package/project/public/media/logo.png +0 -0
- package/project/public/vite.svg +1 -0
- package/project/routes.jsx +47 -0
- package/project/server/mock.json +110 -0
- package/project/server/oauthMock.js +27 -0
- package/project/server/package-lock.json +1505 -0
- package/project/server/package.json +20 -0
- package/project/server/server.js +127 -0
- package/project/src/Container.jsx +7 -0
- package/project/src/components/ActionButton.jsx +18 -0
- package/project/src/hooks/useEmperor.jsx +21 -0
- package/project/src/http/index.js +39 -0
- package/project/src/main.jsx +10 -0
- package/project/src/pages/Battles.jsx +16 -0
- package/project/src/pages/Emperor.jsx +50 -0
- package/project/src/pages/index.jsx +33 -0
- package/project/src/theme.js +151 -0
- package/project/src/widgets/ActionButton.jsx +68 -0
- package/project/src/widgets/AddNewEmperor.jsx +120 -0
- package/project/src/widgets/ProjectContainer.jsx +27 -0
- package/project/vite.config.js +6 -0
- package/project/vite.config.js.timestamp-1709564450418-45fdd27900806.mjs +341 -0
- package/public/assets/background/overlay_2.jpg +0 -0
- package/public/assets/illustrations/illustration_dashboard.png +0 -0
- package/public/vite.svg +1 -0
- package/src/ContextProvider/ContextProvider.jsx +19 -0
- package/src/GlobalSnackMessage/GlobalSnackMessage.jsx +45 -0
- package/src/GlobalSnackMessage/index.js +1 -0
- package/src/GlobalSnackMessage/styles.js +3 -0
- package/src/Platform.jsx +76 -0
- package/src/RouteManager/RouteManager.jsx +56 -0
- package/src/RouteManager/index.js +1 -0
- package/src/assets/illustrations/avatar-shape.jsx +31 -0
- package/src/assets/illustrations/background-shape.jsx +37 -0
- package/src/assets/illustrations/booking-illustration.jsx +335 -0
- package/src/assets/illustrations/check-in-illustration.jsx +96 -0
- package/src/assets/illustrations/check-out-illustration.jsx +69 -0
- package/src/assets/illustrations/coming-soon-illustration.jsx +125 -0
- package/src/assets/illustrations/forbidden-illustration.jsx +95 -0
- package/src/assets/illustrations/index.js +2 -0
- package/src/assets/illustrations/maintenance-illustration.jsx +228 -0
- package/src/assets/illustrations/motivation-illustration.jsx +74 -0
- package/src/assets/illustrations/order-complete-illustration.jsx +126 -0
- package/src/assets/illustrations/page-not-found-illustration.jsx +81 -0
- package/src/assets/illustrations/seo-illustration.jsx +244 -0
- package/src/assets/illustrations/sever-error-illustration.jsx +152 -0
- package/src/assets/illustrations/upgrade-storage-illustration.jsx +161 -0
- package/src/assets/illustrations/upload-illustration.jsx +622 -0
- package/src/components/Iconify/Iconify.jsx +18 -0
- package/src/components/Iconify/index.js +1 -0
- package/src/components/MiniTopBar/MiniTopBar.jsx +25 -0
- package/src/components/MiniTopBar/index.js +1 -0
- package/src/components/MiniTopBar/styles.js +6 -0
- package/src/components/NucleoidLoginForm/NucleoidLoginForm.jsx +69 -0
- package/src/components/NucleoidLoginForm/index.js +1 -0
- package/src/components/NucleoidLoginForm/styles.js +3 -0
- package/src/components/Sidebar/Sidebar.jsx +76 -0
- package/src/components/Sidebar/index.js +1 -0
- package/src/components/Sidebar/styles.js +25 -0
- package/src/components/SocialLoginButtons/SocialLoginButtons.jsx +55 -0
- package/src/components/SocialLoginButtons/index.js +1 -0
- package/src/components/SocialLoginButtons/styles.js +3 -0
- package/src/components/TopNavBar/TopNavBar.jsx +186 -0
- package/src/components/TopNavBar/index.js +1 -0
- package/src/components/TopNavBar/styles.js +7 -0
- package/src/components/animate/index.js +4 -0
- package/src/components/animate/motion-container.jsx +38 -0
- package/src/components/animate/motion-lazy.jsx +11 -0
- package/src/components/animate/motion-viewport.jsx +30 -0
- package/src/components/animate/variants/actions.js +4 -0
- package/src/components/animate/variants/background.js +97 -0
- package/src/components/animate/variants/bounce.js +107 -0
- package/src/components/animate/variants/container.js +20 -0
- package/src/components/animate/variants/fade.js +127 -0
- package/src/components/animate/variants/flip.js +54 -0
- package/src/components/animate/variants/index.js +12 -0
- package/src/components/animate/variants/path.js +12 -0
- package/src/components/animate/variants/rotate.js +33 -0
- package/src/components/animate/variants/scale.js +54 -0
- package/src/components/animate/variants/slide.js +65 -0
- package/src/components/animate/variants/transition.js +20 -0
- package/src/components/animate/variants/zoom.js +130 -0
- package/src/components/chart/chart.js +69 -0
- package/src/components/chart/index.js +5 -0
- package/src/components/chart/use-chart.js +215 -0
- package/src/components/custom-popover/custom-popover.jsx +46 -0
- package/src/components/custom-popover/index.js +3 -0
- package/src/components/custom-popover/styles.js +84 -0
- package/src/components/custom-popover/use-popover.js +22 -0
- package/src/components/custom-popover/utils.js +100 -0
- package/src/components/file-thumbnail/download-button.jsx +39 -0
- package/src/components/file-thumbnail/file-thumbnail.jsx +72 -0
- package/src/components/file-thumbnail/index.js +5 -0
- package/src/components/file-thumbnail/utils.js +148 -0
- package/src/components/image/image.jsx +119 -0
- package/src/components/image/index.js +1 -0
- package/src/components/image/utils.js +15 -0
- package/src/components/label/index.js +1 -0
- package/src/components/label/label.jsx +51 -0
- package/src/components/label/styles.js +78 -0
- package/src/components/loading-screen/index.js +2 -0
- package/src/components/loading-screen/loading-screen.jsx +23 -0
- package/src/components/loading-screen/splash-screen.jsx +95 -0
- package/src/components/logo/index.js +1 -0
- package/src/components/logo/logo.jsx +61 -0
- package/src/components/logo/styles.js +17 -0
- package/src/components/nav-section/horizontal/index.js +1 -0
- package/src/components/nav-section/horizontal/nav-item.jsx +224 -0
- package/src/components/nav-section/horizontal/nav-list.jsx +113 -0
- package/src/components/nav-section/horizontal/nav-section-horizontal.jsx +41 -0
- package/src/components/nav-section/index.js +3 -0
- package/src/components/nav-section/mini/index.js +1 -0
- package/src/components/nav-section/mini/nav-item.jsx +242 -0
- package/src/components/nav-section/mini/nav-list.jsx +107 -0
- package/src/components/nav-section/mini/nav-section-mini.jsx +35 -0
- package/src/components/nav-section/vertical/index.js +1 -0
- package/src/components/nav-section/vertical/nav-item.jsx +294 -0
- package/src/components/nav-section/vertical/nav-list.jsx +66 -0
- package/src/components/nav-section/vertical/nav-section-vertical.jsx +74 -0
- package/src/components/scrollbar/index.js +1 -0
- package/src/components/scrollbar/scrollbar.jsx +39 -0
- package/src/components/scrollbar/styles.js +27 -0
- package/src/components/search-not-found/index.js +1 -0
- package/src/components/search-not-found/search-not-found.jsx +29 -0
- package/src/components/settings/context/index.js +2 -0
- package/src/components/settings/context/settings-context.js +14 -0
- package/src/components/settings/context/settings-provider.jsx +46 -0
- package/src/components/settings/drawer/base-option.jsx +52 -0
- package/src/components/settings/drawer/fullscreen-option.jsx +58 -0
- package/src/components/settings/drawer/index.js +1 -0
- package/src/components/settings/drawer/layout-options.jsx +144 -0
- package/src/components/settings/drawer/presets-options.jsx +53 -0
- package/src/components/settings/drawer/settings-drawer.jsx +189 -0
- package/src/components/settings/drawer/stretch-options.jsx +67 -0
- package/src/components/settings/index.js +3 -0
- package/src/components/svg-color/index.js +1 -0
- package/src/components/svg-color/svg-color.jsx +23 -0
- package/src/config/config.js +47 -0
- package/src/config/schemas.js +148 -0
- package/src/context/Context.js +98 -0
- package/src/context/reducer.js +632 -0
- package/src/global.css +2 -0
- package/src/hooks/index.js +2 -0
- package/src/hooks/use-boolean.js +27 -0
- package/src/hooks/use-event-listener.js +34 -0
- package/src/hooks/use-local-storage.js +89 -0
- package/src/hooks/use-off-set-top.js +37 -0
- package/src/hooks/use-responsive.js +47 -0
- package/src/hooks/use-scroll-to-top.js +14 -0
- package/src/hooks/use-user.js +58 -0
- package/src/hooks/useApi.js +25 -0
- package/src/hooks/useItemsState.js +23 -0
- package/src/hooks/useProjects.js +24 -0
- package/src/hooks/useSettings.jsx +51 -0
- package/src/http/index.js +166 -0
- package/src/http/oauth.js +27 -0
- package/src/http/user.js +110 -0
- package/src/layouts/AppLayout.jsx +113 -0
- package/src/layouts/CompactLayout/CompactLayout.jsx +32 -0
- package/src/layouts/CompactLayout/index.js +1 -0
- package/src/layouts/DashboardLayout/DashboardLayout.jsx +87 -0
- package/src/layouts/DashboardLayout/config-navigation.jsx +0 -0
- package/src/layouts/DashboardLayout/header.jsx +104 -0
- package/src/layouts/DashboardLayout/index.js +2 -0
- package/src/layouts/DashboardLayout/main.jsx +64 -0
- package/src/layouts/DashboardLayout/nav-horizontal.jsx +62 -0
- package/src/layouts/DashboardLayout/nav-mini.jsx +99 -0
- package/src/layouts/DashboardLayout/nav-vertical.jsx +201 -0
- package/src/layouts/FullScreenLayout/FullScreenLayout.jsx +101 -0
- package/src/layouts/FullScreenLayout/index.js +1 -0
- package/src/layouts/FullScreenLayout/nav-horizontal.jsx +50 -0
- package/src/layouts/FullScreenLayout/nav-vertical.jsx +136 -0
- package/src/layouts/MainLayout/MainLayout.jsx +21 -0
- package/src/layouts/MainLayout/footer.jsx +153 -0
- package/src/layouts/MainLayout/header.jsx +81 -0
- package/src/layouts/MainLayout/index.js +1 -0
- package/src/layouts/MainLayout/nav/desktop/index.jsx +20 -0
- package/src/layouts/MainLayout/nav/desktop/nav-item.jsx +186 -0
- package/src/layouts/MainLayout/nav/desktop/nav-list.jsx +145 -0
- package/src/layouts/MainLayout/nav/mobile/index.jsx +60 -0
- package/src/layouts/MainLayout/nav/mobile/nav-item.jsx +90 -0
- package/src/layouts/MainLayout/nav/mobile/nav-list.jsx +72 -0
- package/src/layouts/Page.jsx +16 -0
- package/src/layouts/SimpleLayout/SimpleLayout.jsx +8 -0
- package/src/layouts/SimpleLayout/index.js +1 -0
- package/src/layouts/TwoSideLayout/TwoSideLayout.jsx +31 -0
- package/src/layouts/TwoSideLayout/index.js +1 -0
- package/src/layouts/auth/classic.jsx +95 -0
- package/src/layouts/auth/modern-compact.jsx +51 -0
- package/src/layouts/auth/modern.jsx +110 -0
- package/src/layouts/common/ProjectBar/index.jsx +338 -0
- package/src/layouts/common/ProjectBar/result-item.jsx +90 -0
- package/src/layouts/common/ProjectBar/utils.js +86 -0
- package/src/layouts/common/account-popover.jsx +119 -0
- package/src/layouts/common/header-shadow.jsx +26 -0
- package/src/layouts/common/header-sim.jsx +52 -0
- package/src/layouts/common/header-simple.jsx +76 -0
- package/src/layouts/common/nav-toggle-button.jsx +57 -0
- package/src/layouts/common/notifications-popover/index.jsx +177 -0
- package/src/layouts/common/notifications-popover/notification-item.jsx +252 -0
- package/src/layouts/common/settings-button.jsx +48 -0
- package/src/layouts/config-layout.js +12 -0
- package/src/layouts/index.js +7 -0
- package/src/lib/APIDialogAction/APIDialogAction.jsx +109 -0
- package/src/lib/APIDialogAction/index.js +1 -0
- package/src/lib/APIDialogAction/styles.js +6 -0
- package/src/lib/APIParams/APIParams.jsx +57 -0
- package/src/lib/APIParams/index.js +1 -0
- package/src/lib/APIPath/APIPath.jsx +82 -0
- package/src/lib/APIPath/index.js +1 -0
- package/src/lib/APIPath/styles.js +19 -0
- package/src/lib/APITree/APITree.jsx +418 -0
- package/src/lib/APITree/Arrow.jsx +21 -0
- package/src/lib/APITree/DeleteMethodDialog.jsx +41 -0
- package/src/lib/APITree/index.js +1 -0
- package/src/lib/APITree/styles.js +19 -0
- package/src/lib/APITypes/APITypes.jsx +151 -0
- package/src/lib/APITypes/TypeEditor.jsx +46 -0
- package/src/lib/APITypes/TypeList.jsx +178 -0
- package/src/lib/APITypes/index.js +1 -0
- package/src/lib/AddItemWizard/AddItemWizard.jsx +211 -0
- package/src/lib/AddItemWizard/index.js +1 -0
- package/src/lib/BlankTreeMessage/BlankTreeMessage.jsx +39 -0
- package/src/lib/BlankTreeMessage/index.js +1 -0
- package/src/lib/CustomBreadcrumbs/CustomBreadcrumbs.jsx +88 -0
- package/src/lib/CustomBreadcrumbs/index.js +1 -0
- package/src/lib/CustomBreadcrumbs/link-item.jsx +58 -0
- package/src/lib/CustomPopover/CustomPopover.jsx +46 -0
- package/src/lib/CustomPopover/index.js +3 -0
- package/src/lib/CustomPopover/styles.js +82 -0
- package/src/lib/CustomPopover/usePopover.js +20 -0
- package/src/lib/CustomPopover/utils.js +100 -0
- package/src/lib/DialogTootip/DialogTooltip.jsx +67 -0
- package/src/lib/DialogTootip/index.js +1 -0
- package/src/lib/DialogTootip/styles.js +9 -0
- package/src/lib/Flow/connectors/DynamicConnector.jsx +319 -0
- package/src/lib/Flow/core/Flow.jsx +79 -0
- package/src/lib/Flow/core/FlowNode.jsx +68 -0
- package/src/lib/Flow/core/FlowViewport.jsx +259 -0
- package/src/lib/Flow/graph/FloatingGraph.jsx +44 -0
- package/src/lib/Flow/hooks/useGraphOperations.js +362 -0
- package/src/lib/Flow/hooks/useNodeStyle.js +70 -0
- package/src/lib/Flow/index.js +1 -0
- package/src/lib/Flow/layouts/ActionNode.jsx +78 -0
- package/src/lib/Flow/layouts/AnimatedNode.jsx +22 -0
- package/src/lib/Flow/layouts/CardLayout.jsx +397 -0
- package/src/lib/Flow/layouts/InfoNode.jsx +255 -0
- package/src/lib/Flow/layouts/LoadingNode.jsx +37 -0
- package/src/lib/Flow/nodes/DefaultCard.jsx +107 -0
- package/src/lib/Flow/nodes/DraggableNode.jsx +162 -0
- package/src/lib/Flow/nodes/FlowNodeView.jsx +298 -0
- package/src/lib/Flow/selection/SelectionContext.jsx +259 -0
- package/src/lib/Flow/selection/SelectionOverlay.jsx +31 -0
- package/src/lib/Flow/styles.js +158 -0
- package/src/lib/Flow/utils/flowUtils.js +268 -0
- package/src/lib/FormProvider/FormProvider.jsx +16 -0
- package/src/lib/FormProvider/index.js +1 -0
- package/src/lib/IconSelector/IconSelector.jsx +89 -0
- package/src/lib/Iconify/Iconify.jsx +17 -0
- package/src/lib/Iconify/index.js +1 -0
- package/src/lib/Image/Image.jsx +116 -0
- package/src/lib/Image/index.js +1 -0
- package/src/lib/Image/utils.js +15 -0
- package/src/lib/ItemSummary/ItemSummary.jsx +78 -0
- package/src/lib/ItemSummary/ItemsSummary.jsx +164 -0
- package/src/lib/Label/Label.jsx +51 -0
- package/src/lib/Label/index.js +1 -0
- package/src/lib/Label/styles.js +76 -0
- package/src/lib/NewApiBody/NewAPIBody.jsx +97 -0
- package/src/lib/NewApiBody/ParamView.jsx +38 -0
- package/src/lib/NucDialog/NucDialog.jsx +108 -0
- package/src/lib/NucDialog/index.js +1 -0
- package/src/lib/ParamTable/ParamTable.jsx +133 -0
- package/src/lib/ParamTable/TypeMenu.jsx +102 -0
- package/src/lib/ParamTable/defaults.js +47 -0
- package/src/lib/ParamTable/index.js +1 -0
- package/src/lib/ParamTable/styles.js +12 -0
- package/src/lib/ProjectWizard.jsx +137 -0
- package/src/lib/RHFTextfield/RHFTextfield.jsx +40 -0
- package/src/lib/RHFTextfield/index.js +1 -0
- package/src/lib/ResourceMenu/AlertMassage.jsx +28 -0
- package/src/lib/ResourceMenu/DeleteResourceDialog.jsx +60 -0
- package/src/lib/ResourceMenu/ResourceMenu.jsx +165 -0
- package/src/lib/ResourceMenu/index.js +1 -0
- package/src/lib/ResourceMenu/styles.js +5 -0
- package/src/lib/Schema/Schema.jsx +204 -0
- package/src/lib/Schema/index.js +1 -0
- package/src/lib/SchemaEditor/SchemaEditor.jsx +258 -0
- package/src/lib/SchemaEditor/SchemaEditor.test.js +193 -0
- package/src/lib/SchemaEditor/SchemaPropertyEditor.jsx +135 -0
- package/src/lib/SchemaEditor/SchemaUtils.js +152 -0
- package/src/lib/SchemaEditor/index.js +1 -0
- package/src/lib/Scrollbar/Scrollbar.jsx +39 -0
- package/src/lib/Scrollbar/index.js +1 -0
- package/src/lib/Scrollbar/styles.js +27 -0
- package/src/lib/SearchNotFound/SearchNotFound.jsx +29 -0
- package/src/lib/SearchNotFound/index.js +1 -0
- package/src/lib/SparkleInput/SparkleInput.jsx +51 -0
- package/src/lib/StepComponent/StepComponent.jsx +98 -0
- package/src/lib/SvgColor/SvgColor.jsx +29 -0
- package/src/lib/SvgColor/index.js +1 -0
- package/src/lib/TableHeadCustom/TableHeadCustom.jsx +87 -0
- package/src/lib/TableHeadCustom/index.js +1 -0
- package/src/lib/TableSelectedAction/TableSelectedAction.jsx +72 -0
- package/src/lib/TableSelectedAction/index.js +1 -0
- package/src/lib/ToggleableMenu/ToggleableMenu.jsx +35 -0
- package/src/lib/ToggleableMenu/index.js +1 -0
- package/src/lib/index.js +50 -0
- package/src/lib/lib/Icons.js +40 -0
- package/src/lib/lib/context.json +272 -0
- package/src/lib/useChart/useChart.js +180 -0
- package/src/lib/useTable/useTable.js +121 -0
- package/src/pages/404.jsx +17 -0
- package/src/pages/Callback.jsx +126 -0
- package/src/pages/ConfigError.jsx +49 -0
- package/src/pages/LoginPage.jsx +52 -0
- package/src/routes/components/index.js +1 -0
- package/src/routes/components/router-link.jsx +11 -0
- package/src/routes/hooks/index.js +4 -0
- package/src/routes/hooks/use-active-link.js +15 -0
- package/src/routes/hooks/use-pathname.js +10 -0
- package/src/routes/hooks/use-router.js +21 -0
- package/src/stories/APITree.stories.jsx +332 -0
- package/src/stories/FlowChart.stories.jsx +333 -0
- package/src/stories/Iconify.stories.jsx +183 -0
- package/src/stories/Label.stories.jsx +447 -0
- package/src/stories/Navbar.stories.jsx +588 -0
- package/src/templates/ActionTemplate.js +24 -0
- package/src/theme/css.js +152 -0
- package/src/theme/custom-shadows.js +47 -0
- package/src/theme/index.jsx +100 -0
- package/src/theme/options/contrast.js +34 -0
- package/src/theme/options/presets.js +89 -0
- package/src/theme/options/right-to-left.jsx +26 -0
- package/src/theme/overrides/components/accordion.js +43 -0
- package/src/theme/overrides/components/alert.js +69 -0
- package/src/theme/overrides/components/appbar.js +13 -0
- package/src/theme/overrides/components/autocomplete.js +44 -0
- package/src/theme/overrides/components/avatar.js +111 -0
- package/src/theme/overrides/components/backdrop.js +18 -0
- package/src/theme/overrides/components/badge.js +90 -0
- package/src/theme/overrides/components/breadcrumbs.js +21 -0
- package/src/theme/overrides/components/button-group.js +90 -0
- package/src/theme/overrides/components/button.js +145 -0
- package/src/theme/overrides/components/card.js +30 -0
- package/src/theme/overrides/components/checkbox.js +13 -0
- package/src/theme/overrides/components/chip.js +129 -0
- package/src/theme/overrides/components/css-baseline.js +48 -0
- package/src/theme/overrides/components/data-grid.js +94 -0
- package/src/theme/overrides/components/date-picker.jsx +94 -0
- package/src/theme/overrides/components/dialog.js +49 -0
- package/src/theme/overrides/components/drawer.js +39 -0
- package/src/theme/overrides/components/fab.js +165 -0
- package/src/theme/overrides/components/list.js +33 -0
- package/src/theme/overrides/components/loading-button.js +30 -0
- package/src/theme/overrides/components/menu.js +15 -0
- package/src/theme/overrides/components/pagination.js +81 -0
- package/src/theme/overrides/components/paper.js +18 -0
- package/src/theme/overrides/components/popover.js +20 -0
- package/src/theme/overrides/components/progress.js +40 -0
- package/src/theme/overrides/components/radio.js +22 -0
- package/src/theme/overrides/components/rating.js +40 -0
- package/src/theme/overrides/components/select.js +26 -0
- package/src/theme/overrides/components/skeleton.js +16 -0
- package/src/theme/overrides/components/slider.js +30 -0
- package/src/theme/overrides/components/stepper.js +13 -0
- package/src/theme/overrides/components/svg-icon.js +15 -0
- package/src/theme/overrides/components/switch.js +66 -0
- package/src/theme/overrides/components/table.js +79 -0
- package/src/theme/overrides/components/tabs.js +39 -0
- package/src/theme/overrides/components/textfield.js +146 -0
- package/src/theme/overrides/components/timeline.js +20 -0
- package/src/theme/overrides/components/toggle-button.js +70 -0
- package/src/theme/overrides/components/tooltip.js +18 -0
- package/src/theme/overrides/components/tree-view.js +16 -0
- package/src/theme/overrides/components/typography.js +16 -0
- package/src/theme/overrides/default-props.jsx +238 -0
- package/src/theme/overrides/index.js +100 -0
- package/src/theme/palette.js +144 -0
- package/src/theme/shadows.js +41 -0
- package/src/theme/typography.js +107 -0
- package/src/utils/flatten-array.js +16 -0
- package/src/utils/format-number.js +37 -0
- package/src/utils/format-time.js +27 -0
- package/src/utils/storage-available.js +24 -0
- package/src/widgets/Login/CognitoLogin.jsx +45 -0
- package/src/widgets/Login/DemoLogin.jsx +178 -0
- package/src/widgets/Login/Login.jsx +58 -0
- package/src/widgets/Login/cognitoAuth.jsx +44 -0
- package/src/widgets/LoginForm/LoginForm.jsx +87 -0
- package/src/widgets/LoginForm/LoginFormStyles.js +43 -0
- package/src/widgets/LoginForm/index.js +1 -0
- package/src/widgets/SettingsDialog.jsx +433 -0
- package/src/widgets/error/index.js +1 -0
- package/src/widgets/error/not-found-view.jsx +42 -0
- package/vite/vite.js +86 -0
- package/vite.config.js +7 -0
- package/vitest.config.js +32 -0
package/package.json
ADDED
|
@@ -0,0 +1,795 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "test-nucleoid",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "example of link",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"dependencies": {
|
|
7
|
+
"abab": "^2.0.6",
|
|
8
|
+
"abbrev": "^1.1.1",
|
|
9
|
+
"acorn": "^8.15.0",
|
|
10
|
+
"acorn-globals": "^7.0.1",
|
|
11
|
+
"acorn-jsx": "^5.3.2",
|
|
12
|
+
"agent-base": "^6.0.2",
|
|
13
|
+
"aggregate-error": "^3.1.0",
|
|
14
|
+
"ajv": "^6.12.6",
|
|
15
|
+
"ansi-colors": "^4.1.3",
|
|
16
|
+
"ansi-escapes": "^4.3.2",
|
|
17
|
+
"ansi-regex": "^5.0.1",
|
|
18
|
+
"ansi-styles": "^6.2.3",
|
|
19
|
+
"anymatch": "^3.1.3",
|
|
20
|
+
"apexcharts": "^3.54.1",
|
|
21
|
+
"arch": "^2.2.0",
|
|
22
|
+
"argparse": "^1.0.10",
|
|
23
|
+
"aria-query": "^5.3.2",
|
|
24
|
+
"arr-union": "^3.1.0",
|
|
25
|
+
"array-buffer-byte-length": "^1.0.0",
|
|
26
|
+
"array-includes": "^3.1.6",
|
|
27
|
+
"array.prototype.flat": "^1.3.1",
|
|
28
|
+
"array.prototype.flatmap": "^1.3.1",
|
|
29
|
+
"array.prototype.tosorted": "^1.1.1",
|
|
30
|
+
"arraybuffer.prototype.slice": "^1.0.1",
|
|
31
|
+
"asn1": "^0.2.6",
|
|
32
|
+
"assert-plus": "^1.0.0",
|
|
33
|
+
"assertion-error": "^2.0.1",
|
|
34
|
+
"assign-symbols": "^1.0.0",
|
|
35
|
+
"ast-types": "^0.16.1",
|
|
36
|
+
"ast-v8-to-istanbul": "^0.3.5",
|
|
37
|
+
"astral-regex": "^2.0.0",
|
|
38
|
+
"asynckit": "^0.4.0",
|
|
39
|
+
"at-least-node": "^1.0.0",
|
|
40
|
+
"attr-accept": "^2.2.2",
|
|
41
|
+
"autosuggest-highlight": "^3.3.4",
|
|
42
|
+
"available-typed-arrays": "^1.0.5",
|
|
43
|
+
"aws-sign2": "^0.7.0",
|
|
44
|
+
"aws4": "^1.13.2",
|
|
45
|
+
"axe-core": "^4.10.3",
|
|
46
|
+
"axios": "^1.10.0",
|
|
47
|
+
"axios-auth-refresh": "^3.3.6",
|
|
48
|
+
"axios-retry": "^4.4.1",
|
|
49
|
+
"babel-jest": "^29.6.2",
|
|
50
|
+
"babel-plugin-istanbul": "^6.1.1",
|
|
51
|
+
"babel-plugin-jest-hoist": "^29.5.0",
|
|
52
|
+
"babel-plugin-macros": "^3.1.0",
|
|
53
|
+
"babel-plugin-polyfill-corejs2": "^0.4.5",
|
|
54
|
+
"babel-plugin-polyfill-corejs3": "^0.8.3",
|
|
55
|
+
"babel-plugin-polyfill-regenerator": "^0.5.2",
|
|
56
|
+
"babel-preset-current-node-syntax": "^1.0.1",
|
|
57
|
+
"babel-preset-jest": "^29.5.0",
|
|
58
|
+
"bail": "^2.0.2",
|
|
59
|
+
"balanced-match": "^1.0.2",
|
|
60
|
+
"base64-js": "^1.5.1",
|
|
61
|
+
"bcrypt-pbkdf": "^1.0.2",
|
|
62
|
+
"better-opn": "^3.0.2",
|
|
63
|
+
"binary-extensions": "^2.2.0",
|
|
64
|
+
"blob-util": "^2.0.2",
|
|
65
|
+
"bluebird": "^3.7.2",
|
|
66
|
+
"bowser": "^2.13.1",
|
|
67
|
+
"brace-expansion": "^1.1.12",
|
|
68
|
+
"braces": "^3.0.3",
|
|
69
|
+
"browserslist": "^4.24.4",
|
|
70
|
+
"bser": "^2.1.1",
|
|
71
|
+
"buffer": "^5.7.1",
|
|
72
|
+
"buffer-crc32": "^0.2.13",
|
|
73
|
+
"buffer-from": "^1.1.2",
|
|
74
|
+
"bytewise": "^1.1.0",
|
|
75
|
+
"bytewise-core": "^1.2.3",
|
|
76
|
+
"cac": "^6.7.14",
|
|
77
|
+
"cachedir": "^2.4.0",
|
|
78
|
+
"call-bind": "^1.0.2",
|
|
79
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
80
|
+
"call-bound": "^1.0.4",
|
|
81
|
+
"callsites": "^3.1.0",
|
|
82
|
+
"camelcase": "^5.3.1",
|
|
83
|
+
"camelize": "^1.0.1",
|
|
84
|
+
"caniuse-lite": "^1.0.30001701",
|
|
85
|
+
"caseless": "^0.12.0",
|
|
86
|
+
"ccount": "^2.0.1",
|
|
87
|
+
"chai": "^5.3.3",
|
|
88
|
+
"chalk": "^4.1.2",
|
|
89
|
+
"char-regex": "^1.0.2",
|
|
90
|
+
"character-entities": "^2.0.2",
|
|
91
|
+
"character-entities-html4": "^2.1.0",
|
|
92
|
+
"character-entities-legacy": "^3.0.0",
|
|
93
|
+
"character-reference-invalid": "^2.0.1",
|
|
94
|
+
"chart.js": "^4.5.0",
|
|
95
|
+
"check-error": "^2.1.1",
|
|
96
|
+
"chokidar": "^3.5.3",
|
|
97
|
+
"chromatic": "^12.2.0",
|
|
98
|
+
"ci-info": "^3.8.0",
|
|
99
|
+
"cjs-module-lexer": "^1.2.3",
|
|
100
|
+
"classnames": "^2.5.1",
|
|
101
|
+
"clean-stack": "^2.2.0",
|
|
102
|
+
"cli-cursor": "^3.1.0",
|
|
103
|
+
"cli-table3": "^0.6.1",
|
|
104
|
+
"cli-truncate": "^2.1.0",
|
|
105
|
+
"client-only": "^0.0.1",
|
|
106
|
+
"cliui": "^8.0.1",
|
|
107
|
+
"clsx": "^2.1.1",
|
|
108
|
+
"co": "^4.6.0",
|
|
109
|
+
"collect-v8-coverage": "^1.0.2",
|
|
110
|
+
"color-convert": "^2.0.1",
|
|
111
|
+
"color-name": "^1.1.4",
|
|
112
|
+
"colorette": "^2.0.20",
|
|
113
|
+
"colors": "^1.4.0",
|
|
114
|
+
"combined-stream": "^1.0.8",
|
|
115
|
+
"comma-separated-tokens": "^2.0.3",
|
|
116
|
+
"commander": "^6.2.1",
|
|
117
|
+
"common-tags": "^1.8.2",
|
|
118
|
+
"concat-map": "^0.0.1",
|
|
119
|
+
"concurrently": "^8.2.2",
|
|
120
|
+
"convert-source-map": "^1.9.0",
|
|
121
|
+
"core-js-compat": "^3.32.0",
|
|
122
|
+
"core-util-is": "^1.0.2",
|
|
123
|
+
"cosmiconfig": "^7.1.0",
|
|
124
|
+
"cross-spawn": "^7.0.6",
|
|
125
|
+
"css-color-keywords": "^1.0.0",
|
|
126
|
+
"css-to-react-native": "^3.2.0",
|
|
127
|
+
"css.escape": "^1.5.1",
|
|
128
|
+
"csscolorparser": "^1.0.3",
|
|
129
|
+
"cssjanus": "^2.1.0",
|
|
130
|
+
"cssom": "^0.5.0",
|
|
131
|
+
"cssstyle": "^2.3.0",
|
|
132
|
+
"csstype": "^3.1.3",
|
|
133
|
+
"cypress": "^15.3.0",
|
|
134
|
+
"dashdash": "^1.14.1",
|
|
135
|
+
"data-urls": "^3.0.2",
|
|
136
|
+
"date-fns": "^3.6.0",
|
|
137
|
+
"dayjs": "^1.11.18",
|
|
138
|
+
"debug": "^4.4.3",
|
|
139
|
+
"decimal.js": "^10.4.3",
|
|
140
|
+
"decode-named-character-reference": "^1.0.2",
|
|
141
|
+
"dedent": "^1.5.1",
|
|
142
|
+
"deep-eql": "^5.0.2",
|
|
143
|
+
"deep-is": "^0.1.4",
|
|
144
|
+
"define-data-property": "^1.1.1",
|
|
145
|
+
"define-lazy-prop": "^2.0.0",
|
|
146
|
+
"define-properties": "^1.2.0",
|
|
147
|
+
"delayed-stream": "^1.0.0",
|
|
148
|
+
"dequal": "^2.0.3",
|
|
149
|
+
"detect-newline": "^3.1.0",
|
|
150
|
+
"devlop": "^1.1.0",
|
|
151
|
+
"diff-sequences": "^29.4.3",
|
|
152
|
+
"doctrine": "^3.0.0",
|
|
153
|
+
"dom-accessibility-api": "^0.6.3",
|
|
154
|
+
"dom-helpers": "^5.2.1",
|
|
155
|
+
"domexception": "^4.0.0",
|
|
156
|
+
"dot-case": "^3.0.4",
|
|
157
|
+
"dunder-proto": "^1.0.1",
|
|
158
|
+
"earcut": "^2.2.4",
|
|
159
|
+
"eastasianwidth": "^0.2.0",
|
|
160
|
+
"ecc-jsbn": "^0.1.2",
|
|
161
|
+
"electron-to-chromium": "^1.5.109",
|
|
162
|
+
"emittery": "^0.13.1",
|
|
163
|
+
"emoji-mart": "^5.6.0",
|
|
164
|
+
"emoji-regex": "^9.2.2",
|
|
165
|
+
"end-of-stream": "^1.4.5",
|
|
166
|
+
"enquire.js": "^2.1.6",
|
|
167
|
+
"enquirer": "^2.4.1",
|
|
168
|
+
"entities": "^4.5.0",
|
|
169
|
+
"error-ex": "^1.3.2",
|
|
170
|
+
"es-abstract": "^1.22.1",
|
|
171
|
+
"es-define-property": "^1.0.1",
|
|
172
|
+
"es-errors": "^1.3.0",
|
|
173
|
+
"es-module-lexer": "^1.7.0",
|
|
174
|
+
"es-object-atoms": "^1.1.1",
|
|
175
|
+
"es-set-tostringtag": "^2.1.0",
|
|
176
|
+
"es-shim-unscopables": "^1.0.0",
|
|
177
|
+
"es-to-primitive": "^1.2.1",
|
|
178
|
+
"esbuild": "^0.25.10",
|
|
179
|
+
"esbuild-register": "^3.6.0",
|
|
180
|
+
"escalade": "^3.2.0",
|
|
181
|
+
"escape-string-regexp": "^4.0.0",
|
|
182
|
+
"escodegen": "^2.1.0",
|
|
183
|
+
"eslint": "^8.57.1",
|
|
184
|
+
"eslint-config-prettier": "^8.10.0",
|
|
185
|
+
"eslint-plugin-cypress": "^2.15.1",
|
|
186
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
187
|
+
"eslint-plugin-react": "^7.33.1",
|
|
188
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
189
|
+
"eslint-plugin-storybook": "^9.1.8",
|
|
190
|
+
"eslint-scope": "^7.2.2",
|
|
191
|
+
"eslint-visitor-keys": "^3.4.3",
|
|
192
|
+
"espree": "^9.6.1",
|
|
193
|
+
"esprima": "^4.0.1",
|
|
194
|
+
"esquery": "^1.5.0",
|
|
195
|
+
"esrecurse": "^4.3.0",
|
|
196
|
+
"estraverse": "^5.3.0",
|
|
197
|
+
"estree-util-is-identifier-name": "^3.0.0",
|
|
198
|
+
"estree-walker": "^2.0.2",
|
|
199
|
+
"esutils": "^2.0.3",
|
|
200
|
+
"eventemitter2": "^6.4.7",
|
|
201
|
+
"eventemitter3": "^2.0.3",
|
|
202
|
+
"execa": "^5.1.1",
|
|
203
|
+
"executable": "^4.1.1",
|
|
204
|
+
"exit": "^0.1.2",
|
|
205
|
+
"expect": "^29.6.2",
|
|
206
|
+
"expect-type": "^1.2.2",
|
|
207
|
+
"extend": "^3.0.2",
|
|
208
|
+
"extend-shallow": "^2.0.1",
|
|
209
|
+
"extract-zip": "^2.0.1",
|
|
210
|
+
"extsprintf": "^1.3.0",
|
|
211
|
+
"fast-deep-equal": "^3.1.3",
|
|
212
|
+
"fast-diff": "^1.3.0",
|
|
213
|
+
"fast-glob": "^3.3.3",
|
|
214
|
+
"fast-json-stable-stringify": "^2.1.0",
|
|
215
|
+
"fast-levenshtein": "^2.0.6",
|
|
216
|
+
"fast-xml-parser": "^5.2.5",
|
|
217
|
+
"fastq": "^1.15.0",
|
|
218
|
+
"fb-watchman": "^2.0.2",
|
|
219
|
+
"fd-slicer": "^1.1.0",
|
|
220
|
+
"fdir": "^6.5.0",
|
|
221
|
+
"figures": "^3.2.0",
|
|
222
|
+
"file-entry-cache": "^6.0.1",
|
|
223
|
+
"file-selector": "^0.6.0",
|
|
224
|
+
"filesize": "^10.1.6",
|
|
225
|
+
"fill-range": "^7.1.1",
|
|
226
|
+
"find-root": "^1.1.0",
|
|
227
|
+
"find-up": "^5.0.0",
|
|
228
|
+
"flat-cache": "^3.0.4",
|
|
229
|
+
"flatted": "^3.2.7",
|
|
230
|
+
"follow-redirects": "^1.15.9",
|
|
231
|
+
"for-each": "^0.3.3",
|
|
232
|
+
"foreground-child": "^3.3.1",
|
|
233
|
+
"forever-agent": "^0.6.1",
|
|
234
|
+
"form-data": "^4.0.4",
|
|
235
|
+
"framer-motion": "^11.3.6",
|
|
236
|
+
"fs-extra": "^9.1.0",
|
|
237
|
+
"fs.realpath": "^1.0.0",
|
|
238
|
+
"fsevents": "^2.3.3",
|
|
239
|
+
"function-bind": "^1.1.2",
|
|
240
|
+
"function.prototype.name": "^1.1.5",
|
|
241
|
+
"functions-have-names": "^1.2.3",
|
|
242
|
+
"gensync": "^1.0.0-beta.2",
|
|
243
|
+
"geojson-vt": "^3.2.1",
|
|
244
|
+
"get-caller-file": "^2.0.5",
|
|
245
|
+
"get-intrinsic": "^1.3.0",
|
|
246
|
+
"get-package-type": "^0.1.0",
|
|
247
|
+
"get-proto": "^1.0.1",
|
|
248
|
+
"get-stream": "^6.0.1",
|
|
249
|
+
"get-symbol-description": "^1.0.0",
|
|
250
|
+
"get-value": "^2.0.6",
|
|
251
|
+
"getpass": "^0.1.7",
|
|
252
|
+
"gl-matrix": "^3.4.3",
|
|
253
|
+
"glob": "^10.4.5",
|
|
254
|
+
"glob-parent": "^6.0.2",
|
|
255
|
+
"global-dirs": "^3.0.1",
|
|
256
|
+
"globals": "^11.12.0",
|
|
257
|
+
"globalthis": "^1.0.3",
|
|
258
|
+
"goober": "^2.1.13",
|
|
259
|
+
"gopd": "^1.2.0",
|
|
260
|
+
"graceful-fs": "^4.2.11",
|
|
261
|
+
"graphemer": "^1.4.0",
|
|
262
|
+
"grid-index": "^1.1.0",
|
|
263
|
+
"has": "^1.0.3",
|
|
264
|
+
"has-bigints": "^1.0.2",
|
|
265
|
+
"has-flag": "^3.0.0",
|
|
266
|
+
"has-property-descriptors": "^1.0.0",
|
|
267
|
+
"has-proto": "^1.0.1",
|
|
268
|
+
"has-symbols": "^1.1.0",
|
|
269
|
+
"has-tostringtag": "^1.0.2",
|
|
270
|
+
"hasha": "^5.2.2",
|
|
271
|
+
"hasown": "^2.0.2",
|
|
272
|
+
"hast-util-from-parse5": "^8.0.1",
|
|
273
|
+
"hast-util-is-element": "^3.0.0",
|
|
274
|
+
"hast-util-parse-selector": "^4.0.0",
|
|
275
|
+
"hast-util-raw": "^9.0.4",
|
|
276
|
+
"hast-util-to-jsx-runtime": "^2.3.0",
|
|
277
|
+
"hast-util-to-parse5": "^8.0.0",
|
|
278
|
+
"hast-util-to-text": "^4.0.2",
|
|
279
|
+
"hast-util-whitespace": "^3.0.0",
|
|
280
|
+
"hastscript": "^8.0.0",
|
|
281
|
+
"highlight.js": "^11.10.0",
|
|
282
|
+
"hoist-non-react-statics": "^3.3.2",
|
|
283
|
+
"html-encoding-sniffer": "^3.0.0",
|
|
284
|
+
"html-escaper": "^2.0.2",
|
|
285
|
+
"html-url-attributes": "^3.0.0",
|
|
286
|
+
"html-void-elements": "^3.0.0",
|
|
287
|
+
"http-proxy-agent": "^5.0.0",
|
|
288
|
+
"http-signature": "^1.4.0",
|
|
289
|
+
"https-proxy-agent": "^5.0.1",
|
|
290
|
+
"human-signals": "^2.1.0",
|
|
291
|
+
"ieee754": "^1.2.1",
|
|
292
|
+
"ignore": "^5.3.2",
|
|
293
|
+
"ignore-by-default": "^1.0.1",
|
|
294
|
+
"import-fresh": "^3.3.0",
|
|
295
|
+
"import-local": "^3.1.0",
|
|
296
|
+
"imurmurhash": "^0.1.4",
|
|
297
|
+
"indent-string": "^4.0.0",
|
|
298
|
+
"inflight": "^1.0.6",
|
|
299
|
+
"inherits": "^2.0.4",
|
|
300
|
+
"ini": "^2.0.0",
|
|
301
|
+
"inline-style-parser": "^0.2.3",
|
|
302
|
+
"internal-slot": "^1.0.5",
|
|
303
|
+
"invariant": "^2.2.4",
|
|
304
|
+
"is-alphabetical": "^2.0.1",
|
|
305
|
+
"is-alphanumerical": "^2.0.1",
|
|
306
|
+
"is-arguments": "^1.1.1",
|
|
307
|
+
"is-array-buffer": "^3.0.2",
|
|
308
|
+
"is-arrayish": "^0.2.1",
|
|
309
|
+
"is-bigint": "^1.0.4",
|
|
310
|
+
"is-binary-path": "^2.1.0",
|
|
311
|
+
"is-boolean-object": "^1.1.2",
|
|
312
|
+
"is-callable": "^1.2.7",
|
|
313
|
+
"is-core-module": "^2.16.1",
|
|
314
|
+
"is-date-object": "^1.0.5",
|
|
315
|
+
"is-decimal": "^2.0.1",
|
|
316
|
+
"is-docker": "^2.2.1",
|
|
317
|
+
"is-extendable": "^0.1.1",
|
|
318
|
+
"is-extglob": "^2.1.1",
|
|
319
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
320
|
+
"is-generator-fn": "^2.1.0",
|
|
321
|
+
"is-glob": "^4.0.3",
|
|
322
|
+
"is-hexadecimal": "^2.0.1",
|
|
323
|
+
"is-installed-globally": "^0.4.0",
|
|
324
|
+
"is-negative-zero": "^2.0.2",
|
|
325
|
+
"is-number": "^7.0.0",
|
|
326
|
+
"is-number-object": "^1.0.7",
|
|
327
|
+
"is-path-inside": "^3.0.3",
|
|
328
|
+
"is-plain-obj": "^4.1.0",
|
|
329
|
+
"is-potential-custom-element-name": "^1.0.1",
|
|
330
|
+
"is-regex": "^1.1.4",
|
|
331
|
+
"is-retry-allowed": "^2.2.0",
|
|
332
|
+
"is-shared-array-buffer": "^1.0.2",
|
|
333
|
+
"is-stream": "^2.0.1",
|
|
334
|
+
"is-string": "^1.0.7",
|
|
335
|
+
"is-symbol": "^1.0.4",
|
|
336
|
+
"is-typed-array": "^1.1.12",
|
|
337
|
+
"is-typedarray": "^1.0.0",
|
|
338
|
+
"is-unicode-supported": "^0.1.0",
|
|
339
|
+
"is-weakref": "^1.0.2",
|
|
340
|
+
"is-wsl": "^2.2.0",
|
|
341
|
+
"isarray": "^2.0.5",
|
|
342
|
+
"isexe": "^2.0.0",
|
|
343
|
+
"isobject": "^3.0.1",
|
|
344
|
+
"isstream": "^0.1.2",
|
|
345
|
+
"istanbul-lib-coverage": "^3.2.2",
|
|
346
|
+
"istanbul-lib-instrument": "^5.2.1",
|
|
347
|
+
"istanbul-lib-report": "^3.0.1",
|
|
348
|
+
"istanbul-lib-source-maps": "^4.0.1",
|
|
349
|
+
"istanbul-reports": "^3.2.0",
|
|
350
|
+
"jackspeak": "^3.4.3",
|
|
351
|
+
"jest": "^29.6.2",
|
|
352
|
+
"jest-changed-files": "^29.5.0",
|
|
353
|
+
"jest-circus": "^29.6.2",
|
|
354
|
+
"jest-cli": "^29.6.2",
|
|
355
|
+
"jest-config": "^29.6.2",
|
|
356
|
+
"jest-diff": "^29.6.2",
|
|
357
|
+
"jest-docblock": "^29.4.3",
|
|
358
|
+
"jest-each": "^29.6.2",
|
|
359
|
+
"jest-environment-jsdom": "^29.6.2",
|
|
360
|
+
"jest-environment-node": "^29.6.2",
|
|
361
|
+
"jest-get-type": "^29.4.3",
|
|
362
|
+
"jest-haste-map": "^29.6.2",
|
|
363
|
+
"jest-leak-detector": "^29.6.2",
|
|
364
|
+
"jest-matcher-utils": "^29.6.2",
|
|
365
|
+
"jest-message-util": "^29.6.2",
|
|
366
|
+
"jest-pnp-resolver": "^1.2.3",
|
|
367
|
+
"jest-regex-util": "^29.4.3",
|
|
368
|
+
"jest-resolve": "^29.6.2",
|
|
369
|
+
"jest-resolve-dependencies": "^29.6.2",
|
|
370
|
+
"jest-runner": "^29.6.2",
|
|
371
|
+
"jest-runtime": "^29.6.2",
|
|
372
|
+
"jest-snapshot": "^29.6.2",
|
|
373
|
+
"jest-util": "^29.6.2",
|
|
374
|
+
"jest-validate": "^29.6.2",
|
|
375
|
+
"jest-watcher": "^29.6.2",
|
|
376
|
+
"jest-worker": "^29.6.2",
|
|
377
|
+
"joi": "^17.13.3",
|
|
378
|
+
"js-tokens": "^4.0.0",
|
|
379
|
+
"js-yaml": "^3.14.1",
|
|
380
|
+
"jsbn": "^0.1.1",
|
|
381
|
+
"jsdom": "^20.0.3",
|
|
382
|
+
"jsesc": "^3.1.0",
|
|
383
|
+
"json-parse-even-better-errors": "^2.3.1",
|
|
384
|
+
"json-schema": "^0.4.0",
|
|
385
|
+
"json-schema-traverse": "^0.4.1",
|
|
386
|
+
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
387
|
+
"json-stringify-pretty-compact": "^3.0.0",
|
|
388
|
+
"json-stringify-safe": "^5.0.1",
|
|
389
|
+
"json2mq": "^0.2.0",
|
|
390
|
+
"json5": "^2.2.3",
|
|
391
|
+
"jsonfile": "^6.2.0",
|
|
392
|
+
"jsprim": "^2.0.2",
|
|
393
|
+
"jsx-ast-utils": "^3.3.5",
|
|
394
|
+
"jwt-decode": "^4.0.0",
|
|
395
|
+
"kdbush": "^4.0.2",
|
|
396
|
+
"kleur": "^3.0.3",
|
|
397
|
+
"leven": "^3.1.0",
|
|
398
|
+
"levn": "^0.4.1",
|
|
399
|
+
"lines-and-columns": "^1.2.4",
|
|
400
|
+
"listr2": "^3.14.0",
|
|
401
|
+
"locate-path": "^6.0.0",
|
|
402
|
+
"lodash": "^4.17.21",
|
|
403
|
+
"lodash-es": "^4.17.21",
|
|
404
|
+
"lodash.debounce": "^4.0.8",
|
|
405
|
+
"lodash.merge": "^4.6.2",
|
|
406
|
+
"lodash.once": "^4.1.1",
|
|
407
|
+
"lodash.throttle": "^4.1.1",
|
|
408
|
+
"log-symbols": "^4.1.0",
|
|
409
|
+
"log-update": "^4.0.0",
|
|
410
|
+
"longest-streak": "^3.1.0",
|
|
411
|
+
"loose-envify": "^1.4.0",
|
|
412
|
+
"loupe": "^3.2.1",
|
|
413
|
+
"lower-case": "^2.0.2",
|
|
414
|
+
"lowlight": "^3.1.0",
|
|
415
|
+
"lru-cache": "^5.1.1",
|
|
416
|
+
"lz-string": "^1.5.0",
|
|
417
|
+
"magic-string": "^0.30.19",
|
|
418
|
+
"magicast": "^0.3.5",
|
|
419
|
+
"makeerror": "^1.0.12",
|
|
420
|
+
"mapbox-gl": "^2.15.0",
|
|
421
|
+
"markdown-table": "^3.0.3",
|
|
422
|
+
"math-intrinsics": "^1.1.0",
|
|
423
|
+
"mdast-util-find-and-replace": "^3.0.1",
|
|
424
|
+
"mdast-util-from-markdown": "^2.0.1",
|
|
425
|
+
"mdast-util-gfm": "^3.0.0",
|
|
426
|
+
"mdast-util-gfm-autolink-literal": "^2.0.0",
|
|
427
|
+
"mdast-util-gfm-footnote": "^2.0.0",
|
|
428
|
+
"mdast-util-gfm-strikethrough": "^2.0.0",
|
|
429
|
+
"mdast-util-gfm-table": "^2.0.0",
|
|
430
|
+
"mdast-util-gfm-task-list-item": "^2.0.0",
|
|
431
|
+
"mdast-util-mdx-expression": "^2.0.0",
|
|
432
|
+
"mdast-util-mdx-jsx": "^3.1.2",
|
|
433
|
+
"mdast-util-mdxjs-esm": "^2.0.1",
|
|
434
|
+
"mdast-util-phrasing": "^4.1.0",
|
|
435
|
+
"mdast-util-to-hast": "^13.2.0",
|
|
436
|
+
"mdast-util-to-markdown": "^2.1.0",
|
|
437
|
+
"merge-stream": "^2.0.0",
|
|
438
|
+
"merge2": "^1.4.1",
|
|
439
|
+
"micromark": "^4.0.0",
|
|
440
|
+
"micromark-core-commonmark": "^2.0.1",
|
|
441
|
+
"micromark-extension-gfm": "^3.0.0",
|
|
442
|
+
"micromark-extension-gfm-autolink-literal": "^2.1.0",
|
|
443
|
+
"micromark-extension-gfm-footnote": "^2.1.0",
|
|
444
|
+
"micromark-extension-gfm-strikethrough": "^2.1.0",
|
|
445
|
+
"micromark-extension-gfm-table": "^2.1.0",
|
|
446
|
+
"micromark-extension-gfm-tagfilter": "^2.0.0",
|
|
447
|
+
"micromark-extension-gfm-task-list-item": "^2.1.0",
|
|
448
|
+
"micromark-factory-destination": "^2.0.0",
|
|
449
|
+
"micromark-factory-label": "^2.0.0",
|
|
450
|
+
"micromark-factory-space": "^2.0.0",
|
|
451
|
+
"micromark-factory-title": "^2.0.0",
|
|
452
|
+
"micromark-factory-whitespace": "^2.0.0",
|
|
453
|
+
"micromark-util-character": "^2.1.0",
|
|
454
|
+
"micromark-util-chunked": "^2.0.0",
|
|
455
|
+
"micromark-util-classify-character": "^2.0.0",
|
|
456
|
+
"micromark-util-combine-extensions": "^2.0.0",
|
|
457
|
+
"micromark-util-decode-numeric-character-reference": "^2.0.1",
|
|
458
|
+
"micromark-util-decode-string": "^2.0.0",
|
|
459
|
+
"micromark-util-encode": "^2.0.0",
|
|
460
|
+
"micromark-util-html-tag-name": "^2.0.0",
|
|
461
|
+
"micromark-util-normalize-identifier": "^2.0.0",
|
|
462
|
+
"micromark-util-resolve-all": "^2.0.0",
|
|
463
|
+
"micromark-util-sanitize-uri": "^2.0.0",
|
|
464
|
+
"micromark-util-subtokenize": "^2.0.1",
|
|
465
|
+
"micromark-util-symbol": "^2.0.0",
|
|
466
|
+
"micromark-util-types": "^2.0.0",
|
|
467
|
+
"micromatch": "^4.0.8",
|
|
468
|
+
"mime-db": "^1.52.0",
|
|
469
|
+
"mime-types": "^2.1.35",
|
|
470
|
+
"mimic-fn": "^2.1.0",
|
|
471
|
+
"min-indent": "^1.0.1",
|
|
472
|
+
"minimatch": "^3.1.2",
|
|
473
|
+
"minimist": "^1.2.8",
|
|
474
|
+
"minipass": "^7.1.2",
|
|
475
|
+
"mrmime": "^2.0.1",
|
|
476
|
+
"ms": "^2.1.3",
|
|
477
|
+
"mui-one-time-password-input": "^2.0.3",
|
|
478
|
+
"murmurhash-js": "^1.0.0",
|
|
479
|
+
"nanoid": "^3.3.11",
|
|
480
|
+
"natural-compare": "^1.4.0",
|
|
481
|
+
"no-case": "^3.0.4",
|
|
482
|
+
"node-int64": "^0.4.0",
|
|
483
|
+
"node-releases": "^2.0.19",
|
|
484
|
+
"nodemon": "^3.0.1",
|
|
485
|
+
"nopt": "^1.0.10",
|
|
486
|
+
"normalize-path": "^3.0.0",
|
|
487
|
+
"notistack": "^3.0.1",
|
|
488
|
+
"npm-run-path": "^4.0.1",
|
|
489
|
+
"nprogress": "^0.2.0",
|
|
490
|
+
"numeral": "^2.0.6",
|
|
491
|
+
"nwsapi": "^2.2.7",
|
|
492
|
+
"object-assign": "^4.1.1",
|
|
493
|
+
"object-inspect": "^1.13.4",
|
|
494
|
+
"object-is": "^1.1.5",
|
|
495
|
+
"object-keys": "^1.1.1",
|
|
496
|
+
"object.assign": "^4.1.4",
|
|
497
|
+
"object.entries": "^1.1.6",
|
|
498
|
+
"object.fromentries": "^2.0.6",
|
|
499
|
+
"object.hasown": "^1.1.2",
|
|
500
|
+
"object.values": "^1.1.6",
|
|
501
|
+
"once": "^1.4.0",
|
|
502
|
+
"onetime": "^5.1.2",
|
|
503
|
+
"open": "^8.4.2",
|
|
504
|
+
"optionator": "^0.9.3",
|
|
505
|
+
"ospath": "^1.2.2",
|
|
506
|
+
"p-limit": "^3.1.0",
|
|
507
|
+
"p-locate": "^5.0.0",
|
|
508
|
+
"p-map": "^4.0.0",
|
|
509
|
+
"p-try": "^2.2.0",
|
|
510
|
+
"package-json-from-dist": "^1.0.1",
|
|
511
|
+
"parchment": "^1.1.4",
|
|
512
|
+
"parent-module": "^1.0.1",
|
|
513
|
+
"parse-entities": "^4.0.1",
|
|
514
|
+
"parse-json": "^5.2.0",
|
|
515
|
+
"parse5": "^7.1.2",
|
|
516
|
+
"path-exists": "^4.0.0",
|
|
517
|
+
"path-is-absolute": "^1.0.1",
|
|
518
|
+
"path-key": "^3.1.1",
|
|
519
|
+
"path-parse": "^1.0.7",
|
|
520
|
+
"path-scurry": "^1.11.1",
|
|
521
|
+
"path-type": "^4.0.0",
|
|
522
|
+
"pathe": "^2.0.3",
|
|
523
|
+
"pathval": "^2.0.1",
|
|
524
|
+
"pbf": "^3.3.0",
|
|
525
|
+
"pend": "^1.2.0",
|
|
526
|
+
"performance-now": "^2.1.0",
|
|
527
|
+
"picocolors": "^1.1.1",
|
|
528
|
+
"picomatch": "^4.0.3",
|
|
529
|
+
"pify": "^2.3.0",
|
|
530
|
+
"pirates": "^4.0.6",
|
|
531
|
+
"playwright": "^1.55.1",
|
|
532
|
+
"playwright-core": "^1.55.1",
|
|
533
|
+
"postcss": "^8.4.38",
|
|
534
|
+
"postcss-value-parser": "^4.2.0",
|
|
535
|
+
"potpack": "^2.0.0",
|
|
536
|
+
"prelude-ls": "^1.2.1",
|
|
537
|
+
"prettier": "^2.8.8",
|
|
538
|
+
"prettier-linter-helpers": "^1.0.0",
|
|
539
|
+
"pretty-bytes": "^5.6.0",
|
|
540
|
+
"pretty-format": "^27.5.1",
|
|
541
|
+
"process": "^0.11.10",
|
|
542
|
+
"prompts": "^2.4.2",
|
|
543
|
+
"prop-types": "^15.8.1",
|
|
544
|
+
"property-information": "^6.5.0",
|
|
545
|
+
"protocol-buffers-schema": "^3.6.0",
|
|
546
|
+
"proxy-from-env": "^1.1.0",
|
|
547
|
+
"psl": "^1.9.0",
|
|
548
|
+
"pstree.remy": "^1.1.8",
|
|
549
|
+
"pump": "^3.0.3",
|
|
550
|
+
"punycode": "^2.3.0",
|
|
551
|
+
"pure-rand": "^6.0.2",
|
|
552
|
+
"qs": "^6.14.0",
|
|
553
|
+
"querystringify": "^2.2.0",
|
|
554
|
+
"queue-microtask": "^1.2.3",
|
|
555
|
+
"quickselect": "^2.0.0",
|
|
556
|
+
"quill": "^1.3.7",
|
|
557
|
+
"quill-delta": "^3.6.3",
|
|
558
|
+
"react": "^18.3.1",
|
|
559
|
+
"react-apexcharts": "^1.4.1",
|
|
560
|
+
"react-chartjs-2": "^5.2.0",
|
|
561
|
+
"react-docgen": "^8.0.1",
|
|
562
|
+
"react-docgen-typescript": "^2.4.0",
|
|
563
|
+
"react-dom": "^18.3.1",
|
|
564
|
+
"react-dropzone": "^14.2.3",
|
|
565
|
+
"react-helmet-async": "^2.0.5",
|
|
566
|
+
"react-hook-form": "^7.52.1",
|
|
567
|
+
"react-is": "^18.3.1",
|
|
568
|
+
"react-lazy-load-image-component": "^1.6.2",
|
|
569
|
+
"react-map-gl": "^7.1.7",
|
|
570
|
+
"react-markdown": "^9.0.1",
|
|
571
|
+
"react-organizational-chart": "^2.2.1",
|
|
572
|
+
"react-quill": "^2.0.0",
|
|
573
|
+
"react-refresh": "^0.17.0",
|
|
574
|
+
"react-router": "^6.25.1",
|
|
575
|
+
"react-router-dom": "^6.25.1",
|
|
576
|
+
"react-slick": "^0.30.2",
|
|
577
|
+
"react-transition-group": "^4.4.5",
|
|
578
|
+
"readdirp": "^3.6.0",
|
|
579
|
+
"recast": "^0.23.11",
|
|
580
|
+
"redent": "^3.0.0",
|
|
581
|
+
"regenerate": "^1.4.2",
|
|
582
|
+
"regenerate-unicode-properties": "^10.1.0",
|
|
583
|
+
"regenerator-transform": "^0.15.1",
|
|
584
|
+
"regexp.prototype.flags": "^1.5.1",
|
|
585
|
+
"regexpu-core": "^5.3.2",
|
|
586
|
+
"regjsparser": "^0.9.1",
|
|
587
|
+
"rehype-highlight": "^7.0.0",
|
|
588
|
+
"rehype-raw": "^7.0.0",
|
|
589
|
+
"remark-gfm": "^4.0.0",
|
|
590
|
+
"remark-parse": "^11.0.0",
|
|
591
|
+
"remark-rehype": "^11.1.0",
|
|
592
|
+
"remark-stringify": "^11.0.0",
|
|
593
|
+
"remove-accents": "^0.4.2",
|
|
594
|
+
"request-progress": "^3.0.0",
|
|
595
|
+
"require-directory": "^2.1.1",
|
|
596
|
+
"requires-port": "^1.0.0",
|
|
597
|
+
"reselect": "^5.1.1",
|
|
598
|
+
"resize-observer-polyfill": "^1.5.1",
|
|
599
|
+
"resolve": "^1.22.10",
|
|
600
|
+
"resolve-cwd": "^3.0.0",
|
|
601
|
+
"resolve-from": "^5.0.0",
|
|
602
|
+
"resolve-protobuf-schema": "^2.1.0",
|
|
603
|
+
"resolve.exports": "^2.0.2",
|
|
604
|
+
"restore-cursor": "^3.1.0",
|
|
605
|
+
"reusify": "^1.0.4",
|
|
606
|
+
"rfdc": "^1.4.1",
|
|
607
|
+
"rimraf": "^3.0.2",
|
|
608
|
+
"rollup": "^4.55.1",
|
|
609
|
+
"run-parallel": "^1.2.0",
|
|
610
|
+
"rw": "^1.3.3",
|
|
611
|
+
"rxjs": "^7.8.1",
|
|
612
|
+
"safe-array-concat": "^1.0.0",
|
|
613
|
+
"safe-buffer": "^5.2.1",
|
|
614
|
+
"safe-regex-test": "^1.0.0",
|
|
615
|
+
"safer-buffer": "^2.1.2",
|
|
616
|
+
"saxes": "^6.0.0",
|
|
617
|
+
"scheduler": "^0.23.2",
|
|
618
|
+
"semver": "^6.3.1",
|
|
619
|
+
"set-function-name": "^2.0.1",
|
|
620
|
+
"set-value": "^2.0.1",
|
|
621
|
+
"shallowequal": "^1.1.0",
|
|
622
|
+
"shebang-command": "^2.0.0",
|
|
623
|
+
"shebang-regex": "^3.0.0",
|
|
624
|
+
"shell-quote": "^1.8.1",
|
|
625
|
+
"side-channel": "^1.1.0",
|
|
626
|
+
"side-channel-list": "^1.0.0",
|
|
627
|
+
"side-channel-map": "^1.0.1",
|
|
628
|
+
"side-channel-weakmap": "^1.0.2",
|
|
629
|
+
"siginfo": "^2.0.0",
|
|
630
|
+
"signal-exit": "^4.1.0",
|
|
631
|
+
"simple-update-notifier": "^2.0.0",
|
|
632
|
+
"simplebar-core": "^1.2.6",
|
|
633
|
+
"simplebar-react": "^3.2.6",
|
|
634
|
+
"sirv": "^3.0.2",
|
|
635
|
+
"sisteransi": "^1.0.5",
|
|
636
|
+
"slash": "^3.0.0",
|
|
637
|
+
"slice-ansi": "^3.0.0",
|
|
638
|
+
"snake-case": "^3.0.4",
|
|
639
|
+
"sort-asc": "^0.2.0",
|
|
640
|
+
"sort-desc": "^0.2.0",
|
|
641
|
+
"sort-object": "^3.0.3",
|
|
642
|
+
"source-map": "^0.5.7",
|
|
643
|
+
"source-map-js": "^1.2.1",
|
|
644
|
+
"source-map-support": "^0.5.13",
|
|
645
|
+
"spawn-command": "^0.0.2",
|
|
646
|
+
"split-string": "^3.1.0",
|
|
647
|
+
"sprintf-js": "^1.0.3",
|
|
648
|
+
"sshpk": "^1.18.0",
|
|
649
|
+
"stack-utils": "^2.0.6",
|
|
650
|
+
"stackback": "^0.0.2",
|
|
651
|
+
"std-env": "^3.9.0",
|
|
652
|
+
"storybook": "^9.1.8",
|
|
653
|
+
"string-convert": "^0.2.1",
|
|
654
|
+
"string-length": "^4.0.2",
|
|
655
|
+
"string-width": "^5.1.2",
|
|
656
|
+
"string-width-cjs": "^4.2.3",
|
|
657
|
+
"string.prototype.matchall": "^4.0.8",
|
|
658
|
+
"string.prototype.trim": "^1.2.7",
|
|
659
|
+
"string.prototype.trimend": "^1.0.6",
|
|
660
|
+
"string.prototype.trimstart": "^1.0.6",
|
|
661
|
+
"stringify-entities": "^4.0.4",
|
|
662
|
+
"strip-ansi": "^6.0.1",
|
|
663
|
+
"strip-ansi-cjs": "^6.0.1",
|
|
664
|
+
"strip-bom": "^4.0.0",
|
|
665
|
+
"strip-final-newline": "^2.0.0",
|
|
666
|
+
"strip-indent": "^4.1.0",
|
|
667
|
+
"strip-json-comments": "^3.1.1",
|
|
668
|
+
"strip-literal": "^3.0.0",
|
|
669
|
+
"strnum": "^2.1.2",
|
|
670
|
+
"style-to-object": "^1.0.6",
|
|
671
|
+
"styled-components": "^6.1.12",
|
|
672
|
+
"stylis": "^4.3.2",
|
|
673
|
+
"stylis-plugin-rtl": "^2.1.1",
|
|
674
|
+
"supercluster": "^8.0.1",
|
|
675
|
+
"supports-color": "^5.5.0",
|
|
676
|
+
"supports-preserve-symlinks-flag": "^1.0.0",
|
|
677
|
+
"svg-parser": "^2.0.4",
|
|
678
|
+
"svg.draggable.js": "^2.2.2",
|
|
679
|
+
"svg.easing.js": "^2.0.0",
|
|
680
|
+
"svg.filter.js": "^2.0.2",
|
|
681
|
+
"svg.js": "^2.7.1",
|
|
682
|
+
"svg.pathmorphing.js": "^0.1.3",
|
|
683
|
+
"svg.resize.js": "^1.4.3",
|
|
684
|
+
"svg.select.js": "^3.0.1",
|
|
685
|
+
"swr": "^2.2.5",
|
|
686
|
+
"symbol-tree": "^3.2.4",
|
|
687
|
+
"systeminformation": "^5.27.7",
|
|
688
|
+
"test-exclude": "^6.0.0",
|
|
689
|
+
"text-table": "^0.2.0",
|
|
690
|
+
"throttleit": "^1.0.1",
|
|
691
|
+
"through": "^2.3.8",
|
|
692
|
+
"tiny-invariant": "^1.3.3",
|
|
693
|
+
"tinybench": "^2.9.0",
|
|
694
|
+
"tinyexec": "^0.3.2",
|
|
695
|
+
"tinyglobby": "^0.2.15",
|
|
696
|
+
"tinypool": "^1.1.1",
|
|
697
|
+
"tinyqueue": "^2.0.3",
|
|
698
|
+
"tinyrainbow": "^2.0.0",
|
|
699
|
+
"tinyspy": "^4.0.4",
|
|
700
|
+
"tldts": "^6.1.86",
|
|
701
|
+
"tldts-core": "^6.1.86",
|
|
702
|
+
"tmp": "^0.2.5",
|
|
703
|
+
"tmpl": "^1.0.5",
|
|
704
|
+
"to-regex-range": "^5.0.1",
|
|
705
|
+
"totalist": "^3.0.1",
|
|
706
|
+
"touch": "^3.1.0",
|
|
707
|
+
"tough-cookie": "^4.1.3",
|
|
708
|
+
"tr46": "^3.0.0",
|
|
709
|
+
"tree-kill": "^1.2.2",
|
|
710
|
+
"trim-lines": "^3.0.1",
|
|
711
|
+
"trough": "^2.2.0",
|
|
712
|
+
"ts-api-utils": "^2.1.0",
|
|
713
|
+
"ts-dedent": "^2.2.0",
|
|
714
|
+
"tsconfig-paths": "^4.2.0",
|
|
715
|
+
"tslib": "^2.6.2",
|
|
716
|
+
"tunnel-agent": "^0.6.0",
|
|
717
|
+
"tweetnacl": "^0.14.5",
|
|
718
|
+
"type-check": "^0.4.0",
|
|
719
|
+
"type-detect": "^4.0.8",
|
|
720
|
+
"type-fest": "^0.8.1",
|
|
721
|
+
"typed-array-buffer": "^1.0.0",
|
|
722
|
+
"typed-array-byte-length": "^1.0.0",
|
|
723
|
+
"typed-array-byte-offset": "^1.0.0",
|
|
724
|
+
"typed-array-length": "^1.0.4",
|
|
725
|
+
"typescript": "^5.9.3",
|
|
726
|
+
"typewise": "^1.0.3",
|
|
727
|
+
"typewise-core": "^1.2.0",
|
|
728
|
+
"unbox-primitive": "^1.0.2",
|
|
729
|
+
"undefsafe": "^2.0.5",
|
|
730
|
+
"undici-types": "^7.13.0",
|
|
731
|
+
"unicode-canonical-property-names-ecmascript": "^2.0.0",
|
|
732
|
+
"unicode-match-property-ecmascript": "^2.0.0",
|
|
733
|
+
"unicode-match-property-value-ecmascript": "^2.1.0",
|
|
734
|
+
"unicode-property-aliases-ecmascript": "^2.1.0",
|
|
735
|
+
"unicorn-magic": "^0.3.0",
|
|
736
|
+
"unified": "^11.0.5",
|
|
737
|
+
"union-value": "^1.0.1",
|
|
738
|
+
"unist-util-find-after": "^5.0.0",
|
|
739
|
+
"unist-util-position": "^5.0.0",
|
|
740
|
+
"unist-util-remove-position": "^5.0.0",
|
|
741
|
+
"unist-util-stringify-position": "^4.0.0",
|
|
742
|
+
"universalify": "^2.0.1",
|
|
743
|
+
"unplugin": "^1.16.1",
|
|
744
|
+
"untildify": "^4.0.0",
|
|
745
|
+
"update-browserslist-db": "^1.1.3",
|
|
746
|
+
"uri-js": "^4.4.1",
|
|
747
|
+
"url-parse": "^1.5.10",
|
|
748
|
+
"use-sync-external-store": "^1.6.0",
|
|
749
|
+
"uuid": "^9.0.0",
|
|
750
|
+
"v8-to-istanbul": "^9.1.0",
|
|
751
|
+
"verror": "^1.10.0",
|
|
752
|
+
"vfile": "^6.0.2",
|
|
753
|
+
"vfile-location": "^5.0.3",
|
|
754
|
+
"vfile-message": "^4.0.2",
|
|
755
|
+
"vite": "^7.3.1",
|
|
756
|
+
"vite-node": "^3.2.4",
|
|
757
|
+
"vite-plugin-checker": "^0.9.0",
|
|
758
|
+
"vite-plugin-svgr": "^4.5.0",
|
|
759
|
+
"vitest": "^3.2.4",
|
|
760
|
+
"vscode-uri": "^3.1.0",
|
|
761
|
+
"vt-pbf": "^3.1.3",
|
|
762
|
+
"w3c-xmlserializer": "^4.0.0",
|
|
763
|
+
"walker": "^1.0.8",
|
|
764
|
+
"web-namespaces": "^2.0.1",
|
|
765
|
+
"webidl-conversions": "^7.0.0",
|
|
766
|
+
"webpack-virtual-modules": "^0.6.2",
|
|
767
|
+
"whatwg-encoding": "^2.0.0",
|
|
768
|
+
"whatwg-mimetype": "^3.0.0",
|
|
769
|
+
"whatwg-url": "^11.0.0",
|
|
770
|
+
"which": "^2.0.2",
|
|
771
|
+
"which-boxed-primitive": "^1.0.2",
|
|
772
|
+
"which-typed-array": "^1.1.11",
|
|
773
|
+
"why-is-node-running": "^2.3.0",
|
|
774
|
+
"wrap-ansi": "^8.1.0",
|
|
775
|
+
"wrap-ansi-cjs": "^7.0.0",
|
|
776
|
+
"wrappy": "^1.0.2",
|
|
777
|
+
"write-file-atomic": "^4.0.2",
|
|
778
|
+
"ws": "^8.18.3",
|
|
779
|
+
"xml-name-validator": "^4.0.0",
|
|
780
|
+
"xmlchars": "^2.2.0",
|
|
781
|
+
"y18n": "^5.0.8",
|
|
782
|
+
"yallist": "^3.1.1",
|
|
783
|
+
"yargs": "^17.7.2",
|
|
784
|
+
"yauzl": "^2.10.0",
|
|
785
|
+
"yet-another-react-lightbox": "^3.21.1",
|
|
786
|
+
"yocto-queue": "^0.1.0",
|
|
787
|
+
"zwitch": "^2.0.4"
|
|
788
|
+
},
|
|
789
|
+
"devDependencies": {},
|
|
790
|
+
"scripts": {
|
|
791
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
792
|
+
},
|
|
793
|
+
"author": "",
|
|
794
|
+
"license": "ISC"
|
|
795
|
+
}
|