@cccsaurora/howler-ui 2.14.0-dev.263 → 2.14.0-dev.264
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/api/action/execute.ts +19 -0
- package/api/action/index.ts +36 -0
- package/api/action/operations.ts +11 -0
- package/api/analytic/comments/index.ts +27 -0
- package/api/analytic/comments/react.ts +14 -0
- package/api/analytic/favourite.ts +14 -0
- package/api/analytic/index.ts +27 -0
- package/api/analytic/notebooks/index.ts +15 -0
- package/api/analytic/owner.ts +11 -0
- package/api/analytic/rules.ts +13 -0
- package/api/auth/apikey.ts +20 -0
- package/api/auth/index.ts +9 -0
- package/api/auth/login.ts +35 -0
- package/api/configs/index.ts +10 -0
- package/api/dossier/hit.ts +10 -0
- package/api/dossier/index.ts +26 -0
- package/api/help.ts +71 -0
- package/api/hit/assign.ts +11 -0
- package/api/hit/comments/index.ts +27 -0
- package/api/hit/comments/react.ts +15 -0
- package/api/hit/index.ts +56 -0
- package/api/hit/labels.ts +16 -0
- package/api/hit/overwrite.ts +11 -0
- package/api/hit/transition.ts +12 -0
- package/api/index.ts +301 -0
- package/api/notebook/environments.ts +14 -0
- package/api/notebook/index.ts +20 -0
- package/api/overview/index.ts +22 -0
- package/api/search/action.ts +12 -0
- package/api/search/analytic.ts +12 -0
- package/api/search/count/hit.ts +11 -0
- package/api/search/count/index.ts +18 -0
- package/api/search/dossier.ts +12 -0
- package/api/search/eql/hit.ts +12 -0
- package/api/search/facet/hit.ts +11 -0
- package/api/search/facet/index.ts +19 -0
- package/api/search/fields/hit.ts +12 -0
- package/api/search/fields/index.ts +29 -0
- package/api/search/fields/user.ts +14 -0
- package/api/search/grouped/hit.ts +15 -0
- package/api/search/grouped/index.ts +34 -0
- package/api/search/grouped/user.ts +30 -0
- package/api/search/histogram/hit.ts +11 -0
- package/api/search/histogram/index.ts +20 -0
- package/api/search/hit.ts +17 -0
- package/api/search/index.ts +63 -0
- package/api/search/overview.ts +12 -0
- package/api/search/sigma/hit.ts +12 -0
- package/api/search/template.ts +12 -0
- package/api/search/user.ts +21 -0
- package/api/search/view.ts +12 -0
- package/api/template/index.ts +22 -0
- package/api/user/avatar/index.ts +10 -0
- package/api/user/groups.ts +12 -0
- package/api/user/index.ts +20 -0
- package/api/user/whoami.ts +11 -0
- package/api/view/favourite.ts +14 -0
- package/api/view/index.ts +25 -0
- package/branding/AppBrand.tsx +161 -0
- package/commons/components/app/AppConfigs.ts +179 -0
- package/commons/components/app/AppConstants.ts +11 -0
- package/commons/components/app/AppContexts.ts +142 -0
- package/commons/components/app/AppDefaults.ts +52 -0
- package/commons/components/app/AppNotificationService.ts +7 -0
- package/commons/components/app/AppProvider.tsx +86 -0
- package/commons/components/app/AppSearchService.ts +33 -0
- package/commons/components/app/AppSkeleton.tsx +321 -0
- package/commons/components/app/AppUserService.ts +21 -0
- package/commons/components/app/hooks/index.ts +18 -0
- package/commons/components/app/hooks/useApp.tsx +6 -0
- package/commons/components/app/hooks/useAppBanner.tsx +7 -0
- package/commons/components/app/hooks/useAppBar.tsx +6 -0
- package/commons/components/app/hooks/useAppBarHeight.tsx +27 -0
- package/commons/components/app/hooks/useAppBarScrollTrigger.tsx +8 -0
- package/commons/components/app/hooks/useAppBreadcrumbs.tsx +6 -0
- package/commons/components/app/hooks/useAppConfigs.tsx +54 -0
- package/commons/components/app/hooks/useAppLanguage.tsx +29 -0
- package/commons/components/app/hooks/useAppLayout.tsx +6 -0
- package/commons/components/app/hooks/useAppLeftNav.tsx +6 -0
- package/commons/components/app/hooks/useAppLogo.tsx +9 -0
- package/commons/components/app/hooks/useAppNotification.tsx +6 -0
- package/commons/components/app/hooks/useAppQuickSearch.tsx +6 -0
- package/commons/components/app/hooks/useAppSearchService.tsx +7 -0
- package/commons/components/app/hooks/useAppSitemap.tsx +84 -0
- package/commons/components/app/hooks/useAppSwitcher.tsx +6 -0
- package/commons/components/app/hooks/useAppTheme.tsx +23 -0
- package/commons/components/app/hooks/useAppUser.tsx +7 -0
- package/commons/components/app/providers/AppBarProvider.tsx +48 -0
- package/commons/components/app/providers/AppBreadcrumbsProvider.tsx +53 -0
- package/commons/components/app/providers/AppLayoutProvider.tsx +114 -0
- package/commons/components/app/providers/AppLeftNavProvider.tsx +30 -0
- package/commons/components/app/providers/AppNotificationProvider.tsx +49 -0
- package/commons/components/app/providers/AppQuickSearchProvider.tsx +32 -0
- package/commons/components/app/providers/AppSearchServiceProvider.tsx +65 -0
- package/commons/components/app/providers/AppSnackbarProvider.tsx +16 -0
- package/commons/components/app/providers/AppSwitcherProvider.tsx +16 -0
- package/commons/components/app/providers/AppUserProvider.tsx +22 -0
- package/commons/components/breadcrumbs/BreadcrumbIcon.tsx +21 -0
- package/commons/components/breadcrumbs/BreadcrumbLastItem.tsx +40 -0
- package/commons/components/breadcrumbs/BreadcrumbLinkItem.tsx +43 -0
- package/commons/components/breadcrumbs/BreadcrumbList.tsx +87 -0
- package/commons/components/breadcrumbs/Breadcrumbs.tsx +40 -0
- package/commons/components/display/AppAvatar.tsx +34 -0
- package/commons/components/display/AppInfoPanel.tsx +30 -0
- package/commons/components/display/AppListEmpty.tsx +5 -0
- package/commons/components/display/AppToc.tsx +160 -0
- package/commons/components/display/hooks/useAppColor.tsx +21 -0
- package/commons/components/leftnav/LeftNavDrawer.tsx +172 -0
- package/commons/components/leftnav/LeftNavGroup.tsx +144 -0
- package/commons/components/leftnav/LeftNavItem.tsx +73 -0
- package/commons/components/notification/FeedModels.ts +163 -0
- package/commons/components/notification/Notification.tsx +152 -0
- package/commons/components/notification/elements/NotificationCloseButton.tsx +14 -0
- package/commons/components/notification/elements/NotificationContainer.tsx +87 -0
- package/commons/components/notification/elements/NotificationEndOfPage.tsx +48 -0
- package/commons/components/notification/elements/NotificationError.tsx +24 -0
- package/commons/components/notification/elements/NotificationHeader.tsx +41 -0
- package/commons/components/notification/elements/NotificationItems.tsx +47 -0
- package/commons/components/notification/elements/NotificationSkeleton.tsx +59 -0
- package/commons/components/notification/elements/NotificationTopNavButton.tsx +27 -0
- package/commons/components/notification/elements/item/NotificationItem.tsx +44 -0
- package/commons/components/notification/elements/item/NotificationItemAuthor.tsx +72 -0
- package/commons/components/notification/elements/item/NotificationItemContent.tsx +29 -0
- package/commons/components/notification/elements/item/NotificationItemDate.tsx +14 -0
- package/commons/components/notification/elements/item/NotificationItemImage.tsx +19 -0
- package/commons/components/notification/elements/item/NotificationItemTag.tsx +18 -0
- package/commons/components/notification/elements/item/NotificationItemTitle.tsx +38 -0
- package/commons/components/notification/index.tsx +2 -0
- package/commons/components/pages/PageCardCentered.tsx +32 -0
- package/commons/components/pages/PageCenter.tsx +46 -0
- package/commons/components/pages/PageContent.tsx +13 -0
- package/commons/components/pages/PageFullScreen.tsx +74 -0
- package/commons/components/pages/PageFullWidth.tsx +30 -0
- package/commons/components/pages/PageHeader.tsx +117 -0
- package/commons/components/pages/hooks/usePageProps.tsx +41 -0
- package/commons/components/search/AppSearch.tsx +256 -0
- package/commons/components/search/AppSearchInput.tsx +104 -0
- package/commons/components/search/AppSearchResult.tsx +66 -0
- package/commons/components/topnav/AppBar.tsx +137 -0
- package/commons/components/topnav/AppName.tsx +53 -0
- package/commons/components/topnav/AppSwitcher.tsx +116 -0
- package/commons/components/topnav/Notifications.tsx +16 -0
- package/commons/components/topnav/ThemeSelection.tsx +143 -0
- package/commons/components/topnav/ThemeSelectionIcon.tsx +39 -0
- package/commons/components/topnav/UserProfile.tsx +196 -0
- package/commons/components/utils/hooks/useClipboard.tsx +31 -0
- package/commons/components/utils/hooks/useEnv.tsx +13 -0
- package/commons/components/utils/hooks/useFullscreenStatus.tsx +47 -0
- package/commons/components/utils/hooks/useGravatar.tsx +13 -0
- package/commons/components/utils/hooks/useLocalStorage.ts +75 -0
- package/commons/components/utils/hooks/useLocalStorageItem.tsx +45 -0
- package/commons/components/utils/hooks/useThemeBuilder.tsx +55 -0
- package/commons/components/utils/keyboard.ts +61 -0
- package/components/app/App.tsx +434 -0
- package/components/app/AppContainer.tsx +19 -0
- package/components/app/drawers/ApiKeyDrawer.tsx +173 -0
- package/components/app/drawers/AppDrawerType.ts +7 -0
- package/components/app/drawers/AssignUserDrawer.tsx +126 -0
- package/components/app/drawers/ViewGroupsDrawer.tsx +24 -0
- package/components/app/hooks/useMatchers.test.ts +328 -0
- package/components/app/hooks/useMatchers.tsx +107 -0
- package/components/app/hooks/useTitle.tsx +77 -0
- package/components/app/providers/AnalyticProvider.tsx +87 -0
- package/components/app/providers/ApiConfigProvider.tsx +31 -0
- package/components/app/providers/AppDrawerProvider.tsx +54 -0
- package/components/app/providers/AvatarProvider.tsx +47 -0
- package/components/app/providers/CustomPluginProvider.tsx +19 -0
- package/components/app/providers/FavouritesProvider.tsx +157 -0
- package/components/app/providers/FieldProvider.tsx +34 -0
- package/components/app/providers/HitProvider.tsx +164 -0
- package/components/app/providers/HitSearchProvider.tsx +248 -0
- package/components/app/providers/LocalStorageProvider.tsx +67 -0
- package/components/app/providers/ModalProvider.tsx +57 -0
- package/components/app/providers/OverviewProvider.tsx +90 -0
- package/components/app/providers/ParameterProvider.tsx +270 -0
- package/components/app/providers/SocketProvider.tsx +329 -0
- package/components/app/providers/UserListProvider.tsx +56 -0
- package/components/app/providers/ViewProvider.test.tsx +244 -0
- package/components/app/providers/ViewProvider.tsx +207 -0
- package/components/elements/Comment.tsx +315 -0
- package/components/elements/EditRow.tsx +268 -0
- package/components/elements/PluginChip.tsx +32 -0
- package/components/elements/PluginTypography.tsx +31 -0
- package/components/elements/ThemedEditor.tsx +130 -0
- package/components/elements/UserList.tsx +79 -0
- package/components/elements/addons/buttons/CustomButton.tsx +93 -0
- package/components/elements/addons/buttons/CustomIconButton.tsx +122 -0
- package/components/elements/addons/buttons/index.ts +7 -0
- package/components/elements/addons/layout/FlexOne.tsx +6 -0
- package/components/elements/addons/layout/FlexPort.tsx +39 -0
- package/components/elements/addons/layout/FlexVertical.tsx +28 -0
- package/components/elements/addons/layout/vsbox/VSBox.tsx +52 -0
- package/components/elements/addons/layout/vsbox/VSBoxContent.tsx +13 -0
- package/components/elements/addons/layout/vsbox/VSBoxElement.tsx +60 -0
- package/components/elements/addons/layout/vsbox/VSBoxHeader.tsx +41 -0
- package/components/elements/addons/lists/TuiList.tsx +31 -0
- package/components/elements/addons/lists/TuiListBase.tsx +98 -0
- package/components/elements/addons/lists/TuiListElement.tsx +51 -0
- package/components/elements/addons/lists/TuiListMenu.tsx +61 -0
- package/components/elements/addons/lists/TuiListProvider.tsx +162 -0
- package/components/elements/addons/lists/hooks/useTuiListKeyboard.tsx +60 -0
- package/components/elements/addons/lists/index.tsx +25 -0
- package/components/elements/addons/lists/table/TuiTable.tsx +151 -0
- package/components/elements/addons/lists/table/TuiTableBody.tsx +77 -0
- package/components/elements/addons/lists/table/TuiTableHead.tsx +29 -0
- package/components/elements/addons/lists/table/TuiTableHeader.tsx +15 -0
- package/components/elements/addons/lists/table/TuiTableLayout.ts +53 -0
- package/components/elements/addons/lists/table/index.tsx +24 -0
- package/components/elements/addons/search/SearchPagination.tsx +26 -0
- package/components/elements/addons/search/SearchTotal.tsx +35 -0
- package/components/elements/addons/search/phrase/Phrase.tsx +175 -0
- package/components/elements/addons/search/phrase/PhraseConsumer.ts +35 -0
- package/components/elements/addons/search/phrase/PhraseLexer.ts +167 -0
- package/components/elements/addons/search/phrase/index.ts +86 -0
- package/components/elements/addons/search/phrase/word/WordLexer.ts +10 -0
- package/components/elements/addons/search/phrase/word/WordSuggester.ts +9 -0
- package/components/elements/addons/search/phrase/word/consumers/WhitespaceConsumer.ts +21 -0
- package/components/elements/addons/search/phrase/word/consumers/WordConsumer.ts +21 -0
- package/components/elements/display/ActionButton.tsx +40 -0
- package/components/elements/display/Classification.tsx +29 -0
- package/components/elements/display/DocumentationButton.tsx +46 -0
- package/components/elements/display/DynamicTabs.tsx +52 -0
- package/components/elements/display/HandlebarsMarkdown.tsx +105 -0
- package/components/elements/display/HowlerAvatar.tsx +66 -0
- package/components/elements/display/HowlerAvatarHeader.tsx +37 -0
- package/components/elements/display/HowlerCard.tsx +10 -0
- package/components/elements/display/Image.tsx +43 -0
- package/components/elements/display/ItemManager.tsx +146 -0
- package/components/elements/display/Markdown.tsx +200 -0
- package/components/elements/display/Modal.tsx +44 -0
- package/components/elements/display/Notebook.tsx +7 -0
- package/components/elements/display/QueryResultText.tsx +25 -0
- package/components/elements/display/TextDivider.tsx +48 -0
- package/components/elements/display/TypingIndicator.tsx +41 -0
- package/components/elements/display/UserPageWrapper.tsx +20 -0
- package/components/elements/display/features/DevelopmentBanner.tsx +24 -0
- package/components/elements/display/features/DevelopmentIcon.tsx +24 -0
- package/components/elements/display/handlebars/helpers.tsx +276 -0
- package/components/elements/display/icons/BundleButton.tsx +77 -0
- package/components/elements/display/icons/Iconified.tsx +16 -0
- package/components/elements/display/icons/SocketBadge.tsx +82 -0
- package/components/elements/display/icons/svg/howler-icon-darkmode.svg +1 -0
- package/components/elements/display/icons/svg/howler-icon-lightmode.svg +1 -0
- package/components/elements/display/icons/svg/howler-logo-full.svg +1 -0
- package/components/elements/display/icons/svg/howler-logo.svg +1 -0
- package/components/elements/display/json/JSONViewer.tsx +98 -0
- package/components/elements/display/markdownPlugins/tabs.ts +81 -0
- package/components/elements/display/modals/ConfirmDeleteModal.tsx +32 -0
- package/components/elements/display/modals/ConfirmNotebookModal.tsx +32 -0
- package/components/elements/display/modals/CreateActionModal.tsx +63 -0
- package/components/elements/display/modals/LoginErrorModal.tsx +31 -0
- package/components/elements/display/modals/RationaleModal.tsx +59 -0
- package/components/elements/hit/HitActions.tsx +298 -0
- package/components/elements/hit/HitBanner.tsx +367 -0
- package/components/elements/hit/HitBannerTooltip.tsx +41 -0
- package/components/elements/hit/HitCard.tsx +42 -0
- package/components/elements/hit/HitComments.tsx +372 -0
- package/components/elements/hit/HitDetails.tsx +324 -0
- package/components/elements/hit/HitLabels.tsx +265 -0
- package/components/elements/hit/HitLayout.ts +5 -0
- package/components/elements/hit/HitNotebooks.tsx +264 -0
- package/components/elements/hit/HitOutline.tsx +56 -0
- package/components/elements/hit/HitOverview.tsx +53 -0
- package/components/elements/hit/HitQuickSearch.tsx +111 -0
- package/components/elements/hit/HitRelated.tsx +18 -0
- package/components/elements/hit/HitShortcuts.ts +5 -0
- package/components/elements/hit/HitSummary.tsx +301 -0
- package/components/elements/hit/HitWorklog.tsx +201 -0
- package/components/elements/hit/actions/ButtonActions.tsx +269 -0
- package/components/elements/hit/actions/DropdownActions.tsx +157 -0
- package/components/elements/hit/actions/SharedComponents.tsx +40 -0
- package/components/elements/hit/aggregate/HitGraph.tsx +351 -0
- package/components/elements/hit/elements/Assigned.tsx +71 -0
- package/components/elements/hit/elements/EscalationChip.tsx +26 -0
- package/components/elements/hit/elements/HitTimestamp.tsx +81 -0
- package/components/elements/hit/outlines/DefaultOutline.tsx +107 -0
- package/components/elements/hit/outlines/al/AssemblyLineRules.tsx +130 -0
- package/components/elements/hit/related/PivotLink.tsx +67 -0
- package/components/elements/hit/related/RelatedIcon.tsx +51 -0
- package/components/elements/hit/related/RelatedLink.tsx +43 -0
- package/components/elements/view/ViewTitle.tsx +61 -0
- package/components/hooks/useHitActions.tsx +276 -0
- package/components/hooks/useHitSelection.tsx +102 -0
- package/components/hooks/useMyApi.tsx +64 -0
- package/components/hooks/useMyChart.tsx +164 -0
- package/components/hooks/useMyLocalStorage.ts +20 -0
- package/components/hooks/useMyPreferences.tsx +309 -0
- package/components/hooks/useMySearch.tsx +77 -0
- package/components/hooks/useMySitemap.tsx +248 -0
- package/components/hooks/useMySnackbar.tsx +67 -0
- package/components/hooks/useMyTheme.tsx +34 -0
- package/components/hooks/useMyUser.tsx +39 -0
- package/components/hooks/useMyUserFunctions.tsx +166 -0
- package/components/hooks/useMyUserList.tsx +15 -0
- package/components/hooks/useMyUtils.tsx +16 -0
- package/components/hooks/useScrollRestoration.tsx +37 -0
- package/components/logins/Login.tsx +62 -0
- package/components/logins/auth/OAuthLogin.tsx +49 -0
- package/components/logins/auth/UserPassLogin.tsx +57 -0
- package/components/logins/hooks/useLogin.tsx +101 -0
- package/components/routes/404.tsx +24 -0
- package/components/routes/ErrorBoundary.tsx +44 -0
- package/components/routes/ErrorOccured.tsx +28 -0
- package/components/routes/Logout.tsx +56 -0
- package/components/routes/action/edit/ActionEditor.tsx +358 -0
- package/components/routes/action/shared/ActionReportDisplay.tsx +84 -0
- package/components/routes/action/shared/OperationEntry.tsx +121 -0
- package/components/routes/action/shared/OperationStep.tsx +219 -0
- package/components/routes/action/useMyActionFunctions.tsx +225 -0
- package/components/routes/action/view/ActionDetails.tsx +205 -0
- package/components/routes/action/view/ActionSearch.tsx +249 -0
- package/components/routes/action/view/Integrations.tsx +49 -0
- package/components/routes/admin/users/UserEditor.tsx +55 -0
- package/components/routes/admin/users/UserSearch.tsx +228 -0
- package/components/routes/advanced/QueryBuilder.tsx +584 -0
- package/components/routes/advanced/QueryEditor.tsx +148 -0
- package/components/routes/advanced/RuleModal.tsx +217 -0
- package/components/routes/advanced/eqlCompletionProvider.ts +94 -0
- package/components/routes/advanced/eqlTokenProvider.ts +110 -0
- package/components/routes/advanced/historyCompletionProvider.ts +61 -0
- package/components/routes/advanced/luceneCompletionProvider.ts +111 -0
- package/components/routes/advanced/luceneTokenProvider.ts +131 -0
- package/components/routes/advanced/yamlCompletionProvider.ts +58 -0
- package/components/routes/analytics/AnalyticComments.tsx +218 -0
- package/components/routes/analytics/AnalyticDetails.tsx +343 -0
- package/components/routes/analytics/AnalyticHitComments.tsx +99 -0
- package/components/routes/analytics/AnalyticNotebooks.tsx +185 -0
- package/components/routes/analytics/AnalyticOverview.tsx +165 -0
- package/components/routes/analytics/AnalyticOverviews.tsx +75 -0
- package/components/routes/analytics/AnalyticSearch.tsx +301 -0
- package/components/routes/analytics/AnalyticTemplates.tsx +77 -0
- package/components/routes/analytics/RuleView.tsx +80 -0
- package/components/routes/analytics/TriageSettings.tsx +146 -0
- package/components/routes/analytics/widgets/Assessment.tsx +71 -0
- package/components/routes/analytics/widgets/Created.tsx +61 -0
- package/components/routes/analytics/widgets/Detection.tsx +11 -0
- package/components/routes/analytics/widgets/Escalation.tsx +65 -0
- package/components/routes/analytics/widgets/Stacked.tsx +109 -0
- package/components/routes/analytics/widgets/Status.tsx +21 -0
- package/components/routes/dossiers/DossierCard.tsx +48 -0
- package/components/routes/dossiers/DossierEditor.tsx +247 -0
- package/components/routes/dossiers/Dossiers.tsx +173 -0
- package/components/routes/dossiers/LeadEditor.tsx +122 -0
- package/components/routes/dossiers/LeadForm.tsx +106 -0
- package/components/routes/dossiers/PivotForm.tsx +311 -0
- package/components/routes/help/ActionDocumentation.tsx +77 -0
- package/components/routes/help/ActionIntroductionDocumentation.tsx +128 -0
- package/components/routes/help/ApiDocumentation.tsx +217 -0
- package/components/routes/help/AuthDocumentation.tsx +26 -0
- package/components/routes/help/BundleDocumentation.tsx +17 -0
- package/components/routes/help/ClientDocumentation.tsx +27 -0
- package/components/routes/help/Help.tsx +96 -0
- package/components/routes/help/HitBannerDocumentation.tsx +71 -0
- package/components/routes/help/HitDocumentation.tsx +77 -0
- package/components/routes/help/HitLabelsDocumentation.tsx +57 -0
- package/components/routes/help/HitLinksDocumentation.tsx +23 -0
- package/components/routes/help/HitSchemaDocumentation.tsx +253 -0
- package/components/routes/help/NotebookDocumentation.tsx +28 -0
- package/components/routes/help/OverviewDocumentation.tsx +21 -0
- package/components/routes/help/RetentionDocumentation.tsx +55 -0
- package/components/routes/help/SearchDocumentation.tsx +700 -0
- package/components/routes/help/TemplateDocumentation.tsx +73 -0
- package/components/routes/help/ViewDocumentation.tsx +32 -0
- package/components/routes/help/components/HelpTabs.tsx +47 -0
- package/components/routes/help/markdown/en/actionIntroduction.md +33 -0
- package/components/routes/help/markdown/en/authentication.md +261 -0
- package/components/routes/help/markdown/en/bundles.md +70 -0
- package/components/routes/help/markdown/en/client.md +213 -0
- package/components/routes/help/markdown/en/links.md +37 -0
- package/components/routes/help/markdown/en/notebook.md +157 -0
- package/components/routes/help/markdown/en/retention.md +15 -0
- package/components/routes/help/markdown/en/schema.md +20 -0
- package/components/routes/help/markdown/en/templates.md +23 -0
- package/components/routes/help/markdown/en/views.md +11 -0
- package/components/routes/help/markdown/fr/actionIntroduction.md +33 -0
- package/components/routes/help/markdown/fr/authentication.md +259 -0
- package/components/routes/help/markdown/fr/bundles.md +70 -0
- package/components/routes/help/markdown/fr/client.md +209 -0
- package/components/routes/help/markdown/fr/links.md +37 -0
- package/components/routes/help/markdown/fr/notebook.md +157 -0
- package/components/routes/help/markdown/fr/retention.md +15 -0
- package/components/routes/help/markdown/fr/schema.md +20 -0
- package/components/routes/help/markdown/fr/templates.md +23 -0
- package/components/routes/help/markdown/fr/views.md +11 -0
- package/components/routes/hits/search/BundleParentMenu.tsx +73 -0
- package/components/routes/hits/search/BundleScroller.tsx +8 -0
- package/components/routes/hits/search/CustomSort.tsx +94 -0
- package/components/routes/hits/search/HitBrowser.tsx +318 -0
- package/components/routes/hits/search/HitContextMenu.tsx +260 -0
- package/components/routes/hits/search/HitQuery.tsx +268 -0
- package/components/routes/hits/search/InformationPane.tsx +430 -0
- package/components/routes/hits/search/SearchPane.tsx +291 -0
- package/components/routes/hits/search/ViewLink.tsx +96 -0
- package/components/routes/hits/search/grid/AddColumnModal.tsx +98 -0
- package/components/routes/hits/search/grid/ColumnHeader.tsx +70 -0
- package/components/routes/hits/search/grid/EnhancedCell.tsx +50 -0
- package/components/routes/hits/search/grid/HitGrid.tsx +342 -0
- package/components/routes/hits/search/grid/HitRow.tsx +121 -0
- package/components/routes/hits/search/shared/CustomSpan.tsx +54 -0
- package/components/routes/hits/search/shared/HitFilter.tsx +110 -0
- package/components/routes/hits/search/shared/HitSort.tsx +111 -0
- package/components/routes/hits/search/shared/QuerySettings.tsx +40 -0
- package/components/routes/hits/search/shared/SearchSpan.tsx +68 -0
- package/components/routes/hits/view/HitViewer.tsx +372 -0
- package/components/routes/hits/view/LeadRenderer.tsx +42 -0
- package/components/routes/home/AddNewCard.tsx +295 -0
- package/components/routes/home/AnalyticCard.tsx +68 -0
- package/components/routes/home/EntryWrapper.tsx +54 -0
- package/components/routes/home/ViewCard.tsx +96 -0
- package/components/routes/home/index.tsx +278 -0
- package/components/routes/overviews/OverviewCard.tsx +51 -0
- package/components/routes/overviews/OverviewEditor.tsx +102 -0
- package/components/routes/overviews/OverviewViewer.tsx +387 -0
- package/components/routes/overviews/Overviews.tsx +179 -0
- package/components/routes/overviews/markdownExtendedTokenProvider.ts +296 -0
- package/components/routes/overviews/startingTemplate.ts +40 -0
- package/components/routes/overviews/template/en.md +167 -0
- package/components/routes/overviews/template/fr.md +167 -0
- package/components/routes/settings/AdminSection.tsx +18 -0
- package/components/routes/settings/LocalSection.tsx +168 -0
- package/components/routes/settings/ProfileSection.tsx +138 -0
- package/components/routes/settings/SecuritySection.tsx +95 -0
- package/components/routes/settings/Settings.tsx +51 -0
- package/components/routes/settings/SettingsSection.tsx +28 -0
- package/components/routes/templates/TemplateCard.tsx +38 -0
- package/components/routes/templates/TemplateDnD.tsx +51 -0
- package/components/routes/templates/TemplateEditor.tsx +121 -0
- package/components/routes/templates/TemplateViewer.tsx +285 -0
- package/components/routes/templates/Templates.tsx +187 -0
- package/components/routes/views/ViewComposer.tsx +317 -0
- package/components/routes/views/Views.tsx +379 -0
- package/i18n.ts +50 -0
- package/index.tsx +19 -0
- package/locales/en/help/main.json +13 -0
- package/locales/en/help/search.json +186 -0
- package/locales/en/translation.json +799 -0
- package/locales/fr/help/main.json +13 -0
- package/locales/fr/help/search.json +186 -0
- package/locales/fr/translation.json +797 -0
- package/models/ActionTypes.d.ts +2 -1
- package/models/WithMetadata.d.ts +5 -4
- package/models/entities/HowlerUser.d.ts +2 -1
- package/models/entities/generated/Action.d.ts +2 -1
- package/models/entities/generated/Analytic.d.ts +4 -3
- package/models/entities/generated/Assemblyline.d.ts +9 -8
- package/models/entities/generated/Attachment.d.ts +2 -1
- package/models/entities/generated/Aws.d.ts +3 -2
- package/models/entities/generated/Cbs.d.ts +2 -1
- package/models/entities/generated/Cloud.d.ts +6 -5
- package/models/entities/generated/Container.d.ts +2 -1
- package/models/entities/generated/Destination.d.ts +6 -5
- package/models/entities/generated/Dns.d.ts +3 -2
- package/models/entities/generated/Dossier.d.ts +3 -2
- package/models/entities/generated/Elf.d.ts +4 -3
- package/models/entities/generated/Email.d.ts +9 -8
- package/models/entities/generated/Enrichment.d.ts +3 -2
- package/models/entities/generated/Faas.d.ts +2 -1
- package/models/entities/generated/File.d.ts +2 -1
- package/models/entities/generated/Geo.d.ts +2 -1
- package/models/entities/generated/Hit.d.ts +37 -36
- package/models/entities/generated/HitFile.d.ts +5 -4
- package/models/entities/generated/Howler.d.ts +9 -8
- package/models/entities/generated/HowlerDossier.d.ts +2 -1
- package/models/entities/generated/Http.d.ts +3 -2
- package/models/entities/generated/Image.d.ts +2 -1
- package/models/entities/generated/Indicator.d.ts +3 -2
- package/models/entities/generated/IndicatorFile.d.ts +5 -4
- package/models/entities/generated/Ingress.d.ts +2 -1
- package/models/entities/generated/Lead.d.ts +2 -1
- package/models/entities/generated/Mitre.d.ts +3 -2
- package/models/entities/generated/Observer.d.ts +4 -3
- package/models/entities/generated/Original.d.ts +4 -3
- package/models/entities/generated/Parent.d.ts +5 -4
- package/models/entities/generated/ParentParent.d.ts +6 -5
- package/models/entities/generated/Pivot.d.ts +3 -2
- package/models/entities/generated/Process.d.ts +7 -6
- package/models/entities/generated/ProcessParent.d.ts +7 -6
- package/models/entities/generated/Registry.d.ts +2 -1
- package/models/entities/generated/Request.d.ts +2 -1
- package/models/entities/generated/Response.d.ts +2 -1
- package/models/entities/generated/Sharepoint.d.ts +3 -2
- package/models/entities/generated/Source.d.ts +6 -5
- package/models/entities/generated/SourceOriginal.d.ts +4 -3
- package/models/entities/generated/Threat.d.ts +8 -7
- package/models/entities/generated/ThreatIndicator.d.ts +3 -2
- package/models/entities/generated/Tls.d.ts +3 -2
- package/models/entities/generated/User.d.ts +2 -1
- package/models/entities/generated/UserAgent.d.ts +3 -2
- package/models/entities/generated/UserUser.d.ts +2 -1
- package/models/entities/generated/View.d.ts +2 -1
- package/models/socket/HitUpdate.d.ts +2 -1
- package/package.json +604 -154
- package/plugins/HowlerPlugin.ts +375 -0
- package/plugins/store.ts +152 -0
- package/rest/AxiosClient.ts +81 -0
- package/rest/FetchClient.ts +27 -0
- package/rest/index.ts +12 -0
- package/setupTests.ts +17 -0
- package/tests/MockLocalStorage.ts +46 -0
- package/tests/server-handlers.ts +114 -0
- package/tests/server.ts +6 -0
- package/utils/Throttler.ts +43 -0
- package/utils/actionUtils.ts +112 -0
- package/utils/constants.tsx +131 -0
- package/utils/hit.json +30356 -0
- package/utils/hitFunctions.ts +10 -0
- package/utils/localStorage.ts +54 -0
- package/utils/menuUtils.ts +274 -0
- package/utils/sessionStorage.ts +59 -0
- package/utils/socketUtils.ts +11 -0
- package/utils/stringUtils.ts +57 -0
- package/utils/utils.ts +222 -0
- package/utils/xsrf.ts +17 -0
- package/Notification-BHyOHttL.js +0 -324
- package/TuiList-D7-CH2oS.js +0 -48
- package/api/action/execute.d.ts +0 -3
- package/api/action/execute.js +0 -5
- package/api/action/index.d.ts +0 -10
- package/api/action/index.js +0 -11
- package/api/action/operations.d.ts +0 -3
- package/api/action/operations.js +0 -5
- package/api/analytic/comments/index.d.ts +0 -13
- package/api/analytic/comments/index.js +0 -9
- package/api/analytic/comments/react.d.ts +0 -3
- package/api/analytic/comments/react.js +0 -6
- package/api/analytic/favourite.d.ts +0 -7
- package/api/analytic/favourite.js +0 -6
- package/api/analytic/index.d.ts +0 -12
- package/api/analytic/index.js +0 -12
- package/api/analytic/notebooks/index.d.ts +0 -10
- package/api/analytic/notebooks/index.js +0 -6
- package/api/analytic/owner.d.ts +0 -5
- package/api/analytic/owner.js +0 -5
- package/api/analytic/rules.d.ts +0 -3
- package/api/analytic/rules.js +0 -5
- package/api/auth/apikey.d.ts +0 -8
- package/api/auth/apikey.js +0 -6
- package/api/auth/index.d.ts +0 -4
- package/api/auth/index.js +0 -6
- package/api/auth/login.d.ts +0 -14
- package/api/auth/login.js +0 -7
- package/api/configs/index.d.ts +0 -3
- package/api/configs/index.js +0 -5
- package/api/dossier/hit.d.ts +0 -2
- package/api/dossier/hit.js +0 -4
- package/api/dossier/index.d.ts +0 -8
- package/api/dossier/index.js +0 -9
- package/api/help.d.ts +0 -55
- package/api/help.js +0 -5
- package/api/hit/assign.d.ts +0 -3
- package/api/hit/assign.js +0 -5
- package/api/hit/comments/index.d.ts +0 -13
- package/api/hit/comments/index.js +0 -9
- package/api/hit/comments/react.d.ts +0 -3
- package/api/hit/comments/react.js +0 -6
- package/api/hit/index.d.ts +0 -35
- package/api/hit/index.js +0 -12
- package/api/hit/labels.d.ts +0 -5
- package/api/hit/labels.js +0 -6
- package/api/hit/overwrite.d.ts +0 -3
- package/api/hit/overwrite.js +0 -5
- package/api/hit/transition.d.ts +0 -4
- package/api/hit/transition.js +0 -5
- package/api/index.d.ts +0 -142
- package/api/index.js +0 -21
- package/api/notebook/environments.d.ts +0 -10
- package/api/notebook/environments.js +0 -5
- package/api/notebook/index.d.ts +0 -14
- package/api/notebook/index.js +0 -6
- package/api/overview/index.d.ts +0 -6
- package/api/overview/index.js +0 -8
- package/api/search/action.d.ts +0 -4
- package/api/search/action.js +0 -5
- package/api/search/analytic.d.ts +0 -4
- package/api/search/analytic.js +0 -5
- package/api/search/count/hit.d.ts +0 -3
- package/api/search/count/hit.js +0 -5
- package/api/search/count/index.d.ts +0 -10
- package/api/search/count/index.js +0 -5
- package/api/search/dossier.d.ts +0 -4
- package/api/search/dossier.js +0 -5
- package/api/search/eql/hit.d.ts +0 -4
- package/api/search/eql/hit.js +0 -5
- package/api/search/facet/hit.d.ts +0 -5
- package/api/search/facet/hit.js +0 -5
- package/api/search/facet/index.d.ts +0 -13
- package/api/search/facet/index.js +0 -5
- package/api/search/fields/hit.d.ts +0 -3
- package/api/search/fields/hit.js +0 -5
- package/api/search/fields/index.d.ts +0 -19
- package/api/search/fields/index.js +0 -8
- package/api/search/fields/user.d.ts +0 -3
- package/api/search/fields/user.js +0 -5
- package/api/search/grouped/hit.d.ts +0 -4
- package/api/search/grouped/hit.js +0 -5
- package/api/search/grouped/index.d.ts +0 -25
- package/api/search/grouped/index.js +0 -6
- package/api/search/grouped/user.d.ts +0 -7
- package/api/search/grouped/user.js +0 -5
- package/api/search/histogram/hit.d.ts +0 -3
- package/api/search/histogram/hit.js +0 -5
- package/api/search/histogram/index.d.ts +0 -14
- package/api/search/histogram/index.js +0 -5
- package/api/search/hit.d.ts +0 -7
- package/api/search/hit.js +0 -7
- package/api/search/index.d.ts +0 -53
- package/api/search/index.js +0 -17
- package/api/search/overview.d.ts +0 -4
- package/api/search/overview.js +0 -5
- package/api/search/sigma/hit.d.ts +0 -4
- package/api/search/sigma/hit.js +0 -5
- package/api/search/template.d.ts +0 -4
- package/api/search/template.js +0 -5
- package/api/search/user.d.ts +0 -7
- package/api/search/user.js +0 -5
- package/api/search/view.d.ts +0 -4
- package/api/search/view.js +0 -5
- package/api/template/index.d.ts +0 -6
- package/api/template/index.js +0 -8
- package/api/user/avatar/index.d.ts +0 -2
- package/api/user/avatar/index.js +0 -5
- package/api/user/groups.d.ts +0 -6
- package/api/user/groups.js +0 -5
- package/api/user/index.d.ts +0 -10
- package/api/user/index.js +0 -9
- package/api/user/whoami.d.ts +0 -3
- package/api/user/whoami.js +0 -5
- package/api/view/favourite.d.ts +0 -7
- package/api/view/favourite.js +0 -6
- package/api/view/index.d.ts +0 -8
- package/api/view/index.js +0 -9
- package/assets/howler-ui.css +0 -21
- package/branding/AppBrand.d.ts +0 -85
- package/branding/AppBrand.js +0 -135
- package/branding/howler/favicon.svg +0 -38
- package/branding/howler/name-dark.svg +0 -21
- package/branding/howler/name-light.svg +0 -21
- package/branding/howler/noswoosh-dark.svg +0 -24
- package/branding/howler/noswoosh-light.svg +0 -28
- package/branding/howler/swoosh-dark.svg +0 -41
- package/branding/howler/swoosh-light.svg +0 -45
- package/commons/components/app/AppConfigs.d.ts +0 -137
- package/commons/components/app/AppConfigs.js +0 -1
- package/commons/components/app/AppConstants.d.ts +0 -10
- package/commons/components/app/AppConstants.js +0 -14
- package/commons/components/app/AppContexts.d.ts +0 -105
- package/commons/components/app/AppContexts.js +0 -23
- package/commons/components/app/AppDefaults.d.ts +0 -6
- package/commons/components/app/AppDefaults.js +0 -42
- package/commons/components/app/AppNotificationService.d.ts +0 -6
- package/commons/components/app/AppNotificationService.js +0 -1
- package/commons/components/app/AppProvider.d.ts +0 -15
- package/commons/components/app/AppProvider.js +0 -44
- package/commons/components/app/AppSearchService.d.ts +0 -21
- package/commons/components/app/AppSearchService.js +0 -1
- package/commons/components/app/AppSkeleton.d.ts +0 -5
- package/commons/components/app/AppSkeleton.js +0 -259
- package/commons/components/app/AppUserService.d.ts +0 -17
- package/commons/components/app/AppUserService.js +0 -1
- package/commons/components/app/hooks/index.d.ts +0 -18
- package/commons/components/app/hooks/index.js +0 -40
- package/commons/components/app/hooks/useApp.d.ts +0 -1
- package/commons/components/app/hooks/useApp.js +0 -8
- package/commons/components/app/hooks/useAppBanner.d.ts +0 -1
- package/commons/components/app/hooks/useAppBanner.js +0 -14
- package/commons/components/app/hooks/useAppBar.d.ts +0 -1
- package/commons/components/app/hooks/useAppBar.js +0 -8
- package/commons/components/app/hooks/useAppBarHeight.d.ts +0 -2
- package/commons/components/app/hooks/useAppBarHeight.js +0 -26
- package/commons/components/app/hooks/useAppBarScrollTrigger.d.ts +0 -1
- package/commons/components/app/hooks/useAppBarScrollTrigger.js +0 -10
- package/commons/components/app/hooks/useAppBreadcrumbs.d.ts +0 -1
- package/commons/components/app/hooks/useAppBreadcrumbs.js +0 -8
- package/commons/components/app/hooks/useAppConfigs.d.ts +0 -59
- package/commons/components/app/hooks/useAppConfigs.js +0 -39
- package/commons/components/app/hooks/useAppLanguage.d.ts +0 -6
- package/commons/components/app/hooks/useAppLanguage.js +0 -23
- package/commons/components/app/hooks/useAppLayout.d.ts +0 -1
- package/commons/components/app/hooks/useAppLayout.js +0 -8
- package/commons/components/app/hooks/useAppLeftNav.d.ts +0 -1
- package/commons/components/app/hooks/useAppLeftNav.js +0 -8
- package/commons/components/app/hooks/useAppLogo.d.ts +0 -1
- package/commons/components/app/hooks/useAppLogo.js +0 -11
- package/commons/components/app/hooks/useAppNotification.d.ts +0 -1
- package/commons/components/app/hooks/useAppNotification.js +0 -8
- package/commons/components/app/hooks/useAppQuickSearch.d.ts +0 -1
- package/commons/components/app/hooks/useAppQuickSearch.js +0 -8
- package/commons/components/app/hooks/useAppSearchService.d.ts +0 -2
- package/commons/components/app/hooks/useAppSearchService.js +0 -8
- package/commons/components/app/hooks/useAppSitemap.d.ts +0 -13
- package/commons/components/app/hooks/useAppSitemap.js +0 -60
- package/commons/components/app/hooks/useAppSwitcher.d.ts +0 -1
- package/commons/components/app/hooks/useAppSwitcher.js +0 -8
- package/commons/components/app/hooks/useAppTheme.d.ts +0 -8
- package/commons/components/app/hooks/useAppTheme.js +0 -20
- package/commons/components/app/hooks/useAppUser.d.ts +0 -2
- package/commons/components/app/hooks/useAppUser.js +0 -8
- package/commons/components/app/providers/AppBarProvider.d.ts +0 -10
- package/commons/components/app/providers/AppBarProvider.js +0 -35
- package/commons/components/app/providers/AppBreadcrumbsProvider.d.ts +0 -6
- package/commons/components/app/providers/AppBreadcrumbsProvider.js +0 -41
- package/commons/components/app/providers/AppLayoutProvider.d.ts +0 -6
- package/commons/components/app/providers/AppLayoutProvider.js +0 -95
- package/commons/components/app/providers/AppLeftNavProvider.d.ts +0 -6
- package/commons/components/app/providers/AppLeftNavProvider.js +0 -29
- package/commons/components/app/providers/AppNotificationProvider.d.ts +0 -6
- package/commons/components/app/providers/AppNotificationProvider.js +0 -33
- package/commons/components/app/providers/AppQuickSearchProvider.d.ts +0 -8
- package/commons/components/app/providers/AppQuickSearchProvider.js +0 -26
- package/commons/components/app/providers/AppSearchServiceProvider.d.ts +0 -6
- package/commons/components/app/providers/AppSearchServiceProvider.js +0 -49
- package/commons/components/app/providers/AppSnackbarProvider.d.ts +0 -3
- package/commons/components/app/providers/AppSnackbarProvider.js +0 -14
- package/commons/components/app/providers/AppSwitcherProvider.d.ts +0 -6
- package/commons/components/app/providers/AppSwitcherProvider.js +0 -15
- package/commons/components/app/providers/AppUserProvider.d.ts +0 -8
- package/commons/components/app/providers/AppUserProvider.js +0 -18
- package/commons/components/breadcrumbs/BreadcrumbIcon.d.ts +0 -6
- package/commons/components/breadcrumbs/BreadcrumbIcon.js +0 -16
- package/commons/components/breadcrumbs/BreadcrumbLastItem.d.ts +0 -7
- package/commons/components/breadcrumbs/BreadcrumbLastItem.js +0 -40
- package/commons/components/breadcrumbs/BreadcrumbLinkItem.d.ts +0 -7
- package/commons/components/breadcrumbs/BreadcrumbLinkItem.js +0 -44
- package/commons/components/breadcrumbs/BreadcrumbList.d.ts +0 -11
- package/commons/components/breadcrumbs/BreadcrumbList.js +0 -74
- package/commons/components/breadcrumbs/Breadcrumbs.d.ts +0 -4
- package/commons/components/breadcrumbs/Breadcrumbs.js +0 -45
- package/commons/components/display/AppAvatar.d.ts +0 -8
- package/commons/components/display/AppAvatar.js +0 -28
- package/commons/components/display/AppInfoPanel.d.ts +0 -5
- package/commons/components/display/AppInfoPanel.js +0 -33
- package/commons/components/display/AppListEmpty.d.ts +0 -2
- package/commons/components/display/AppListEmpty.js +0 -8
- package/commons/components/display/AppToc.d.ts +0 -19
- package/commons/components/display/AppToc.js +0 -116
- package/commons/components/display/hooks/useAppColor.d.ts +0 -5
- package/commons/components/display/hooks/useAppColor.js +0 -15
- package/commons/components/leftnav/LeftNavDrawer.d.ts +0 -2
- package/commons/components/leftnav/LeftNavDrawer.js +0 -141
- package/commons/components/leftnav/LeftNavGroup.d.ts +0 -7
- package/commons/components/leftnav/LeftNavGroup.js +0 -125
- package/commons/components/leftnav/LeftNavItem.d.ts +0 -10
- package/commons/components/leftnav/LeftNavItem.js +0 -50
- package/commons/components/notification/FeedModels.d.ts +0 -64
- package/commons/components/notification/FeedModels.js +0 -91
- package/commons/components/notification/Notification.d.ts +0 -10
- package/commons/components/notification/Notification.js +0 -8
- package/commons/components/notification/elements/NotificationCloseButton.d.ts +0 -3
- package/commons/components/notification/elements/NotificationCloseButton.js +0 -8
- package/commons/components/notification/elements/NotificationContainer.d.ts +0 -16
- package/commons/components/notification/elements/NotificationContainer.js +0 -10
- package/commons/components/notification/elements/NotificationEndOfPage.d.ts +0 -5
- package/commons/components/notification/elements/NotificationEndOfPage.js +0 -41
- package/commons/components/notification/elements/NotificationError.d.ts +0 -2
- package/commons/components/notification/elements/NotificationError.js +0 -27
- package/commons/components/notification/elements/NotificationHeader.d.ts +0 -8
- package/commons/components/notification/elements/NotificationHeader.js +0 -41
- package/commons/components/notification/elements/NotificationItems.d.ts +0 -12
- package/commons/components/notification/elements/NotificationItems.js +0 -10
- package/commons/components/notification/elements/NotificationSkeleton.d.ts +0 -2
- package/commons/components/notification/elements/NotificationSkeleton.js +0 -54
- package/commons/components/notification/elements/NotificationTopNavButton.d.ts +0 -9
- package/commons/components/notification/elements/NotificationTopNavButton.js +0 -14
- package/commons/components/notification/elements/item/NotificationItem.d.ts +0 -5
- package/commons/components/notification/elements/item/NotificationItem.js +0 -10
- package/commons/components/notification/elements/item/NotificationItemAuthor.d.ts +0 -5
- package/commons/components/notification/elements/item/NotificationItemAuthor.js +0 -63
- package/commons/components/notification/elements/item/NotificationItemContent.d.ts +0 -3
- package/commons/components/notification/elements/item/NotificationItemContent.js +0 -9
- package/commons/components/notification/elements/item/NotificationItemDate.d.ts +0 -3
- package/commons/components/notification/elements/item/NotificationItemDate.js +0 -9
- package/commons/components/notification/elements/item/NotificationItemImage.d.ts +0 -4
- package/commons/components/notification/elements/item/NotificationItemImage.js +0 -20
- package/commons/components/notification/elements/item/NotificationItemTag.d.ts +0 -4
- package/commons/components/notification/elements/item/NotificationItemTag.js +0 -16
- package/commons/components/notification/elements/item/NotificationItemTitle.d.ts +0 -3
- package/commons/components/notification/elements/item/NotificationItemTitle.js +0 -8
- package/commons/components/notification/index.d.ts +0 -2
- package/commons/components/notification/index.js +0 -13
- package/commons/components/pages/PageCardCentered.d.ts +0 -5
- package/commons/components/pages/PageCardCentered.js +0 -35
- package/commons/components/pages/PageCenter.d.ts +0 -8
- package/commons/components/pages/PageCenter.js +0 -39
- package/commons/components/pages/PageContent.d.ts +0 -7
- package/commons/components/pages/PageContent.js +0 -11
- package/commons/components/pages/PageFullScreen.d.ts +0 -10
- package/commons/components/pages/PageFullScreen.js +0 -57
- package/commons/components/pages/PageFullWidth.d.ts +0 -11
- package/commons/components/pages/PageFullWidth.js +0 -18
- package/commons/components/pages/PageHeader.d.ts +0 -23
- package/commons/components/pages/PageHeader.js +0 -83
- package/commons/components/pages/hooks/usePageProps.d.ts +0 -24
- package/commons/components/pages/hooks/usePageProps.js +0 -28
- package/commons/components/search/AppSearch.d.ts +0 -1
- package/commons/components/search/AppSearch.js +0 -211
- package/commons/components/search/AppSearchInput.d.ts +0 -11
- package/commons/components/search/AppSearchInput.js +0 -68
- package/commons/components/search/AppSearchResult.d.ts +0 -4
- package/commons/components/search/AppSearchResult.js +0 -43
- package/commons/components/topnav/AppBar.d.ts +0 -5
- package/commons/components/topnav/AppBar.js +0 -119
- package/commons/components/topnav/AppName.d.ts +0 -4
- package/commons/components/topnav/AppName.js +0 -52
- package/commons/components/topnav/AppSwitcher.d.ts +0 -2
- package/commons/components/topnav/AppSwitcher.js +0 -76
- package/commons/components/topnav/Notifications.d.ts +0 -2
- package/commons/components/topnav/Notifications.js +0 -19
- package/commons/components/topnav/ThemeSelection.d.ts +0 -2
- package/commons/components/topnav/ThemeSelection.js +0 -89
- package/commons/components/topnav/ThemeSelectionIcon.d.ts +0 -2
- package/commons/components/topnav/ThemeSelectionIcon.js +0 -31
- package/commons/components/topnav/UserProfile.d.ts +0 -5
- package/commons/components/topnav/UserProfile.js +0 -144
- package/commons/components/utils/hooks/useClipboard.d.ts +0 -3
- package/commons/components/utils/hooks/useClipboard.js +0 -31
- package/commons/components/utils/hooks/useEnv.d.ts +0 -1
- package/commons/components/utils/hooks/useEnv.js +0 -14
- package/commons/components/utils/hooks/useFullscreenStatus.d.ts +0 -2
- package/commons/components/utils/hooks/useFullscreenStatus.js +0 -37
- package/commons/components/utils/hooks/useGravatar.d.ts +0 -2
- package/commons/components/utils/hooks/useGravatar.js +0 -11
- package/commons/components/utils/hooks/useLocalStorage.d.ts +0 -12
- package/commons/components/utils/hooks/useLocalStorage.js +0 -50
- package/commons/components/utils/hooks/useLocalStorageItem.d.ts +0 -14
- package/commons/components/utils/hooks/useLocalStorageItem.js +0 -31
- package/commons/components/utils/hooks/useThemeBuilder.d.ts +0 -7
- package/commons/components/utils/hooks/useThemeBuilder.js +0 -61
- package/commons/components/utils/keyboard.d.ts +0 -30
- package/commons/components/utils/keyboard.js +0 -70
- package/components/app/App.d.ts +0 -3
- package/components/app/App.js +0 -342
- package/components/app/AppContainer.d.ts +0 -3
- package/components/app/AppContainer.js +0 -12
- package/components/app/drawers/ApiKeyDrawer.d.ts +0 -6
- package/components/app/drawers/ApiKeyDrawer.js +0 -143
- package/components/app/drawers/AppDrawerType.d.ts +0 -6
- package/components/app/drawers/AppDrawerType.js +0 -1
- package/components/app/drawers/AssignUserDrawer.d.ts +0 -9
- package/components/app/drawers/AssignUserDrawer.js +0 -104
- package/components/app/drawers/ViewGroupsDrawer.d.ts +0 -7
- package/components/app/drawers/ViewGroupsDrawer.js +0 -11
- package/components/app/hooks/useMatchers.d.ts +0 -9
- package/components/app/hooks/useMatchers.js +0 -84
- package/components/app/hooks/useTitle.d.ts +0 -2
- package/components/app/hooks/useTitle.js +0 -64
- package/components/app/providers/AnalyticProvider.d.ts +0 -10
- package/components/app/providers/AnalyticProvider.js +0 -63
- package/components/app/providers/ApiConfigProvider.d.ts +0 -9
- package/components/app/providers/ApiConfigProvider.js +0 -24
- package/components/app/providers/AppDrawerProvider.d.ts +0 -10
- package/components/app/providers/AppDrawerProvider.js +0 -38
- package/components/app/providers/AvatarProvider.d.ts +0 -7
- package/components/app/providers/AvatarProvider.js +0 -32
- package/components/app/providers/CustomPluginProvider.d.ts +0 -3
- package/components/app/providers/CustomPluginProvider.js +0 -16
- package/components/app/providers/FavouritesProvider.d.ts +0 -4
- package/components/app/providers/FavouritesProvider.js +0 -136
- package/components/app/providers/FieldProvider.d.ts +0 -9
- package/components/app/providers/FieldProvider.js +0 -22
- package/components/app/providers/HitProvider.d.ts +0 -22
- package/components/app/providers/HitProvider.js +0 -103
- package/components/app/providers/HitSearchProvider.d.ts +0 -27
- package/components/app/providers/HitSearchProvider.js +0 -188
- package/components/app/providers/LocalStorageProvider.d.ts +0 -13
- package/components/app/providers/LocalStorageProvider.js +0 -49
- package/components/app/providers/ModalProvider.d.ts +0 -16
- package/components/app/providers/ModalProvider.js +0 -34
- package/components/app/providers/OverviewProvider.d.ts +0 -13
- package/components/app/providers/OverviewProvider.js +0 -68
- package/components/app/providers/ParameterProvider.d.ts +0 -26
- package/components/app/providers/ParameterProvider.js +0 -166
- package/components/app/providers/SocketProvider.d.ts +0 -57
- package/components/app/providers/SocketProvider.js +0 -175
- package/components/app/providers/UserListProvider.d.ts +0 -12
- package/components/app/providers/UserListProvider.js +0 -40
- package/components/app/providers/ViewProvider.d.ts +0 -23
- package/components/app/providers/ViewProvider.js +0 -163
- package/components/elements/Comment.d.ts +0 -17
- package/components/elements/Comment.js +0 -258
- package/components/elements/EditRow.d.ts +0 -14
- package/components/elements/EditRow.js +0 -208
- package/components/elements/PluginChip.d.ts +0 -9
- package/components/elements/PluginChip.js +0 -24
- package/components/elements/PluginTypography.d.ts +0 -9
- package/components/elements/PluginTypography.js +0 -24
- package/components/elements/ThemedEditor.d.ts +0 -3
- package/components/elements/ThemedEditor.js +0 -119
- package/components/elements/UserList.d.ts +0 -9
- package/components/elements/UserList.js +0 -67
- package/components/elements/addons/buttons/CustomButton.d.ts +0 -12
- package/components/elements/addons/buttons/CustomButton.js +0 -59
- package/components/elements/addons/buttons/CustomIconButton.d.ts +0 -15
- package/components/elements/addons/buttons/CustomIconButton.js +0 -81
- package/components/elements/addons/buttons/index.d.ts +0 -3
- package/components/elements/addons/buttons/index.js +0 -8
- package/components/elements/addons/layout/FlexOne.d.ts +0 -4
- package/components/elements/addons/layout/FlexOne.js +0 -9
- package/components/elements/addons/layout/FlexPort.d.ts +0 -12
- package/components/elements/addons/layout/FlexPort.js +0 -32
- package/components/elements/addons/layout/FlexVertical.d.ts +0 -8
- package/components/elements/addons/layout/FlexVertical.js +0 -23
- package/components/elements/addons/layout/vsbox/VSBox.d.ts +0 -16
- package/components/elements/addons/layout/vsbox/VSBox.js +0 -31
- package/components/elements/addons/layout/vsbox/VSBoxContent.d.ts +0 -4
- package/components/elements/addons/layout/vsbox/VSBoxContent.js +0 -8
- package/components/elements/addons/layout/vsbox/VSBoxElement.d.ts +0 -8
- package/components/elements/addons/layout/vsbox/VSBoxElement.js +0 -33
- package/components/elements/addons/layout/vsbox/VSBoxHeader.d.ts +0 -5
- package/components/elements/addons/layout/vsbox/VSBoxHeader.js +0 -36
- package/components/elements/addons/lists/TuiList.d.ts +0 -8
- package/components/elements/addons/lists/TuiList.js +0 -8
- package/components/elements/addons/lists/TuiListBase.d.ts +0 -10
- package/components/elements/addons/lists/TuiListBase.js +0 -82
- package/components/elements/addons/lists/TuiListElement.d.ts +0 -9
- package/components/elements/addons/lists/TuiListElement.js +0 -8
- package/components/elements/addons/lists/TuiListMenu.d.ts +0 -49
- package/components/elements/addons/lists/TuiListMenu.js +0 -45
- package/components/elements/addons/lists/TuiListProvider.d.ts +0 -22
- package/components/elements/addons/lists/TuiListProvider.js +0 -125
- package/components/elements/addons/lists/hooks/useTuiListKeyboard.d.ts +0 -5
- package/components/elements/addons/lists/hooks/useTuiListKeyboard.js +0 -43
- package/components/elements/addons/lists/index.d.ts +0 -19
- package/components/elements/addons/lists/index.js +0 -7
- package/components/elements/addons/lists/table/TuiTable.d.ts +0 -14
- package/components/elements/addons/lists/table/TuiTable.js +0 -114
- package/components/elements/addons/lists/table/TuiTableBody.d.ts +0 -14
- package/components/elements/addons/lists/table/TuiTableBody.js +0 -47
- package/components/elements/addons/lists/table/TuiTableHead.d.ts +0 -8
- package/components/elements/addons/lists/table/TuiTableHead.js +0 -21
- package/components/elements/addons/lists/table/TuiTableHeader.d.ts +0 -6
- package/components/elements/addons/lists/table/TuiTableHeader.js +0 -11
- package/components/elements/addons/lists/table/TuiTableLayout.d.ts +0 -12
- package/components/elements/addons/lists/table/TuiTableLayout.js +0 -47
- package/components/elements/addons/lists/table/index.d.ts +0 -15
- package/components/elements/addons/lists/table/index.js +0 -4
- package/components/elements/addons/search/SearchPagination.d.ts +0 -9
- package/components/elements/addons/search/SearchPagination.js +0 -17
- package/components/elements/addons/search/SearchTotal.d.ts +0 -8
- package/components/elements/addons/search/SearchTotal.js +0 -27
- package/components/elements/addons/search/phrase/Phrase.d.ts +0 -19
- package/components/elements/addons/search/phrase/Phrase.js +0 -137
- package/components/elements/addons/search/phrase/PhraseConsumer.d.ts +0 -13
- package/components/elements/addons/search/phrase/PhraseConsumer.js +0 -30
- package/components/elements/addons/search/phrase/PhraseLexer.d.ts +0 -26
- package/components/elements/addons/search/phrase/PhraseLexer.js +0 -121
- package/components/elements/addons/search/phrase/index.d.ts +0 -40
- package/components/elements/addons/search/phrase/index.js +0 -49
- package/components/elements/addons/search/phrase/word/WordLexer.d.ts +0 -5
- package/components/elements/addons/search/phrase/word/WordLexer.js +0 -11
- package/components/elements/addons/search/phrase/word/WordSuggester.d.ts +0 -6
- package/components/elements/addons/search/phrase/word/WordSuggester.js +0 -11
- package/components/elements/addons/search/phrase/word/consumers/WhitespaceConsumer.d.ts +0 -7
- package/components/elements/addons/search/phrase/word/consumers/WhitespaceConsumer.js +0 -20
- package/components/elements/addons/search/phrase/word/consumers/WordConsumer.d.ts +0 -7
- package/components/elements/addons/search/phrase/word/consumers/WordConsumer.js +0 -20
- package/components/elements/display/ActionButton.d.ts +0 -8
- package/components/elements/display/ActionButton.js +0 -36
- package/components/elements/display/Classification.d.ts +0 -3
- package/components/elements/display/Classification.js +0 -31
- package/components/elements/display/DocumentationButton.d.ts +0 -3
- package/components/elements/display/DocumentationButton.js +0 -36
- package/components/elements/display/DynamicTabs.d.ts +0 -8
- package/components/elements/display/DynamicTabs.js +0 -26
- package/components/elements/display/HandlebarsMarkdown.d.ts +0 -9
- package/components/elements/display/HandlebarsMarkdown.js +0 -77
- package/components/elements/display/HowlerAvatar.d.ts +0 -6
- package/components/elements/display/HowlerAvatar.js +0 -53
- package/components/elements/display/HowlerAvatarHeader.d.ts +0 -6
- package/components/elements/display/HowlerAvatarHeader.js +0 -30
- package/components/elements/display/HowlerCard.d.ts +0 -3
- package/components/elements/display/HowlerCard.js +0 -8
- package/components/elements/display/Image.d.ts +0 -3
- package/components/elements/display/Image.js +0 -45
- package/components/elements/display/ItemManager.d.ts +0 -25
- package/components/elements/display/ItemManager.js +0 -119
- package/components/elements/display/Markdown.d.ts +0 -10
- package/components/elements/display/Markdown.js +0 -156
- package/components/elements/display/Modal.d.ts +0 -3
- package/components/elements/display/Modal.js +0 -39
- package/components/elements/display/Notebook.d.ts +0 -4
- package/components/elements/display/Notebook.js +0 -9
- package/components/elements/display/QueryResultText.d.ts +0 -6
- package/components/elements/display/QueryResultText.js +0 -28
- package/components/elements/display/TextDivider.d.ts +0 -3
- package/components/elements/display/TextDivider.js +0 -42
- package/components/elements/display/TypingIndicator.d.ts +0 -2
- package/components/elements/display/TypingIndicator.js +0 -44
- package/components/elements/display/UserPageWrapper.d.ts +0 -6
- package/components/elements/display/UserPageWrapper.js +0 -11
- package/components/elements/display/features/DevelopmentBanner.d.ts +0 -3
- package/components/elements/display/features/DevelopmentBanner.js +0 -19
- package/components/elements/display/features/DevelopmentIcon.d.ts +0 -3
- package/components/elements/display/features/DevelopmentIcon.js +0 -17
- package/components/elements/display/handlebars/helpers.d.ts +0 -12
- package/components/elements/display/handlebars/helpers.js +0 -229
- package/components/elements/display/icons/BundleButton.d.ts +0 -6
- package/components/elements/display/icons/BundleButton.js +0 -70
- package/components/elements/display/icons/Iconified.d.ts +0 -9
- package/components/elements/display/icons/Iconified.js +0 -14
- package/components/elements/display/icons/SocketBadge.d.ts +0 -5
- package/components/elements/display/icons/SocketBadge.js +0 -79
- package/components/elements/display/json/JSONViewer.d.ts +0 -8
- package/components/elements/display/json/JSONViewer.js +0 -86
- package/components/elements/display/markdownPlugins/tabs.d.ts +0 -3
- package/components/elements/display/markdownPlugins/tabs.js +0 -66
- package/components/elements/display/modals/ConfirmDeleteModal.d.ts +0 -5
- package/components/elements/display/modals/ConfirmDeleteModal.js +0 -24
- package/components/elements/display/modals/ConfirmNotebookModal.d.ts +0 -5
- package/components/elements/display/modals/ConfirmNotebookModal.js +0 -24
- package/components/elements/display/modals/CreateActionModal.d.ts +0 -5
- package/components/elements/display/modals/CreateActionModal.js +0 -54
- package/components/elements/display/modals/LoginErrorModal.d.ts +0 -5
- package/components/elements/display/modals/LoginErrorModal.js +0 -24
- package/components/elements/display/modals/RationaleModal.d.ts +0 -5
- package/components/elements/display/modals/RationaleModal.js +0 -50
- package/components/elements/hit/HitActions.d.ts +0 -6
- package/components/elements/hit/HitActions.js +0 -255
- package/components/elements/hit/HitBanner.d.ts +0 -15
- package/components/elements/hit/HitBanner.js +0 -330
- package/components/elements/hit/HitBannerTooltip.d.ts +0 -6
- package/components/elements/hit/HitBannerTooltip.js +0 -39
- package/components/elements/hit/HitCard.d.ts +0 -7
- package/components/elements/hit/HitCard.js +0 -33
- package/components/elements/hit/HitComments.d.ts +0 -11
- package/components/elements/hit/HitComments.js +0 -280
- package/components/elements/hit/HitDetails.d.ts +0 -5
- package/components/elements/hit/HitDetails.js +0 -238
- package/components/elements/hit/HitLabels.d.ts +0 -6
- package/components/elements/hit/HitLabels.js +0 -210
- package/components/elements/hit/HitLayout.d.ts +0 -5
- package/components/elements/hit/HitLayout.js +0 -9
- package/components/elements/hit/HitNotebooks.d.ts +0 -8
- package/components/elements/hit/HitNotebooks.js +0 -213
- package/components/elements/hit/HitOutline.d.ts +0 -9
- package/components/elements/hit/HitOutline.js +0 -43
- package/components/elements/hit/HitOverview.d.ts +0 -6
- package/components/elements/hit/HitOverview.js +0 -35
- package/components/elements/hit/HitQuickSearch.d.ts +0 -8
- package/components/elements/hit/HitQuickSearch.js +0 -118
- package/components/elements/hit/HitRelated.d.ts +0 -6
- package/components/elements/hit/HitRelated.js +0 -10
- package/components/elements/hit/HitShortcuts.d.ts +0 -5
- package/components/elements/hit/HitShortcuts.js +0 -9
- package/components/elements/hit/HitSummary.d.ts +0 -11
- package/components/elements/hit/HitSummary.js +0 -234
- package/components/elements/hit/HitWorklog.d.ts +0 -10
- package/components/elements/hit/HitWorklog.js +0 -163
- package/components/elements/hit/actions/ButtonActions.d.ts +0 -12
- package/components/elements/hit/actions/ButtonActions.js +0 -215
- package/components/elements/hit/actions/DropdownActions.d.ts +0 -12
- package/components/elements/hit/actions/DropdownActions.js +0 -98
- package/components/elements/hit/actions/SharedComponents.d.ts +0 -18
- package/components/elements/hit/actions/SharedComponents.js +0 -27
- package/components/elements/hit/aggregate/HitGraph.d.ts +0 -5
- package/components/elements/hit/aggregate/HitGraph.js +0 -321
- package/components/elements/hit/elements/Assigned.d.ts +0 -9
- package/components/elements/hit/elements/Assigned.js +0 -65
- package/components/elements/hit/elements/EscalationChip.d.ts +0 -9
- package/components/elements/hit/elements/EscalationChip.js +0 -24
- package/components/elements/hit/elements/HitTimestamp.d.ts +0 -8
- package/components/elements/hit/elements/HitTimestamp.js +0 -73
- package/components/elements/hit/outlines/DefaultOutline.d.ts +0 -12
- package/components/elements/hit/outlines/DefaultOutline.js +0 -77
- package/components/elements/hit/outlines/al/AssemblyLineRules.d.ts +0 -5
- package/components/elements/hit/outlines/al/AssemblyLineRules.js +0 -87
- package/components/elements/hit/related/PivotLink.d.ts +0 -10
- package/components/elements/hit/related/PivotLink.js +0 -49
- package/components/elements/hit/related/RelatedIcon.d.ts +0 -8
- package/components/elements/hit/related/RelatedIcon.js +0 -50
- package/components/elements/hit/related/RelatedLink.d.ts +0 -8
- package/components/elements/hit/related/RelatedLink.js +0 -42
- package/components/elements/view/ViewTitle.d.ts +0 -10
- package/components/elements/view/ViewTitle.js +0 -45
- package/components/hooks/useHitActions.d.ts +0 -14
- package/components/hooks/useHitActions.js +0 -229
- package/components/hooks/useHitSelection.d.ts +0 -8
- package/components/hooks/useHitSelection.js +0 -86
- package/components/hooks/useMyApi.d.ts +0 -10
- package/components/hooks/useMyApi.js +0 -49
- package/components/hooks/useMyChart.d.ts +0 -275
- package/components/hooks/useMyChart.js +0 -131
- package/components/hooks/useMyLocalStorage.d.ts +0 -17
- package/components/hooks/useMyLocalStorage.js +0 -19
- package/components/hooks/useMyPreferences.d.ts +0 -3
- package/components/hooks/useMyPreferences.js +0 -272
- package/components/hooks/useMySearch.d.ts +0 -4
- package/components/hooks/useMySearch.js +0 -59
- package/components/hooks/useMySitemap.d.ts +0 -3
- package/components/hooks/useMySitemap.js +0 -206
- package/components/hooks/useMySnackbar.d.ts +0 -8
- package/components/hooks/useMySnackbar.js +0 -56
- package/components/hooks/useMyTheme.d.ts +0 -3
- package/components/hooks/useMyTheme.js +0 -30
- package/components/hooks/useMyUser.d.ts +0 -4
- package/components/hooks/useMyUser.js +0 -31
- package/components/hooks/useMyUserFunctions.d.ts +0 -118
- package/components/hooks/useMyUserFunctions.js +0 -143
- package/components/hooks/useMyUserList.d.ts +0 -4
- package/components/hooks/useMyUserList.js +0 -12
- package/components/hooks/useMyUtils.d.ts +0 -4
- package/components/hooks/useMyUtils.js +0 -18
- package/components/hooks/useScrollRestoration.d.ts +0 -7
- package/components/hooks/useScrollRestoration.js +0 -25
- package/components/logins/Login.d.ts +0 -2
- package/components/logins/Login.js +0 -47
- package/components/logins/auth/OAuthLogin.d.ts +0 -6
- package/components/logins/auth/OAuthLogin.js +0 -40
- package/components/logins/auth/UserPassLogin.d.ts +0 -2
- package/components/logins/auth/UserPassLogin.js +0 -51
- package/components/logins/hooks/useLogin.d.ts +0 -7
- package/components/logins/hooks/useLogin.js +0 -87
- package/components/routes/404.d.ts +0 -3
- package/components/routes/404.js +0 -16
- package/components/routes/ErrorBoundary.d.ts +0 -14
- package/components/routes/ErrorBoundary.js +0 -32
- package/components/routes/ErrorOccured.d.ts +0 -3
- package/components/routes/ErrorOccured.js +0 -20
- package/components/routes/Logout.d.ts +0 -3
- package/components/routes/Logout.js +0 -46
- package/components/routes/action/edit/ActionEditor.d.ts +0 -14
- package/components/routes/action/edit/ActionEditor.js +0 -275
- package/components/routes/action/shared/ActionReportDisplay.d.ts +0 -7
- package/components/routes/action/shared/ActionReportDisplay.js +0 -51
- package/components/routes/action/shared/OperationEntry.d.ts +0 -13
- package/components/routes/action/shared/OperationEntry.js +0 -84
- package/components/routes/action/shared/OperationStep.d.ts +0 -11
- package/components/routes/action/shared/OperationStep.js +0 -151
- package/components/routes/action/useMyActionFunctions.d.ts +0 -19
- package/components/routes/action/useMyActionFunctions.js +0 -201
- package/components/routes/action/view/ActionDetails.d.ts +0 -2
- package/components/routes/action/view/ActionDetails.js +0 -177
- package/components/routes/action/view/ActionSearch.d.ts +0 -3
- package/components/routes/action/view/ActionSearch.js +0 -214
- package/components/routes/action/view/Integrations.d.ts +0 -3
- package/components/routes/action/view/Integrations.js +0 -34
- package/components/routes/admin/users/UserEditor.d.ts +0 -3
- package/components/routes/admin/users/UserEditor.js +0 -57
- package/components/routes/admin/users/UserSearch.d.ts +0 -3
- package/components/routes/admin/users/UserSearch.js +0 -179
- package/components/routes/advanced/QueryBuilder.d.ts +0 -3
- package/components/routes/advanced/QueryBuilder.js +0 -497
- package/components/routes/advanced/QueryEditor.d.ts +0 -14
- package/components/routes/advanced/QueryEditor.js +0 -117
- package/components/routes/advanced/RuleModal.d.ts +0 -7
- package/components/routes/advanced/RuleModal.js +0 -189
- package/components/routes/advanced/eqlCompletionProvider.d.ts +0 -3
- package/components/routes/advanced/eqlCompletionProvider.js +0 -81
- package/components/routes/advanced/eqlTokenProvider.d.ts +0 -8
- package/components/routes/advanced/eqlTokenProvider.js +0 -84
- package/components/routes/advanced/historyCompletionProvider.d.ts +0 -3
- package/components/routes/advanced/historyCompletionProvider.js +0 -51
- package/components/routes/advanced/luceneCompletionProvider.d.ts +0 -3
- package/components/routes/advanced/luceneCompletionProvider.js +0 -91
- package/components/routes/advanced/luceneTokenProvider.d.ts +0 -9
- package/components/routes/advanced/luceneTokenProvider.js +0 -101
- package/components/routes/advanced/yamlCompletionProvider.d.ts +0 -3
- package/components/routes/advanced/yamlCompletionProvider.js +0 -50
- package/components/routes/analytics/AnalyticComments.d.ts +0 -7
- package/components/routes/analytics/AnalyticComments.js +0 -190
- package/components/routes/analytics/AnalyticDetails.d.ts +0 -2
- package/components/routes/analytics/AnalyticDetails.js +0 -254
- package/components/routes/analytics/AnalyticHitComments.d.ts +0 -6
- package/components/routes/analytics/AnalyticHitComments.js +0 -71
- package/components/routes/analytics/AnalyticNotebooks.d.ts +0 -7
- package/components/routes/analytics/AnalyticNotebooks.js +0 -138
- package/components/routes/analytics/AnalyticOverview.d.ts +0 -7
- package/components/routes/analytics/AnalyticOverview.js +0 -103
- package/components/routes/analytics/AnalyticOverviews.d.ts +0 -6
- package/components/routes/analytics/AnalyticOverviews.js +0 -72
- package/components/routes/analytics/AnalyticSearch.d.ts +0 -3
- package/components/routes/analytics/AnalyticSearch.js +0 -233
- package/components/routes/analytics/AnalyticTemplates.d.ts +0 -6
- package/components/routes/analytics/AnalyticTemplates.js +0 -70
- package/components/routes/analytics/RuleView.d.ts +0 -7
- package/components/routes/analytics/RuleView.js +0 -74
- package/components/routes/analytics/TriageSettings.d.ts +0 -7
- package/components/routes/analytics/TriageSettings.js +0 -104
- package/components/routes/analytics/widgets/Assessment.d.ts +0 -5
- package/components/routes/analytics/widgets/Assessment.js +0 -58
- package/components/routes/analytics/widgets/Created.d.ts +0 -5
- package/components/routes/analytics/widgets/Created.js +0 -52
- package/components/routes/analytics/widgets/Detection.d.ts +0 -6
- package/components/routes/analytics/widgets/Detection.js +0 -11
- package/components/routes/analytics/widgets/Escalation.d.ts +0 -6
- package/components/routes/analytics/widgets/Escalation.js +0 -51
- package/components/routes/analytics/widgets/Stacked.d.ts +0 -7
- package/components/routes/analytics/widgets/Stacked.js +0 -87
- package/components/routes/analytics/widgets/Status.d.ts +0 -5
- package/components/routes/analytics/widgets/Status.js +0 -21
- package/components/routes/dossiers/DossierCard.d.ts +0 -8
- package/components/routes/dossiers/DossierCard.js +0 -24
- package/components/routes/dossiers/DossierEditor.d.ts +0 -2
- package/components/routes/dossiers/DossierEditor.js +0 -198
- package/components/routes/dossiers/Dossiers.d.ts +0 -2
- package/components/routes/dossiers/Dossiers.js +0 -146
- package/components/routes/dossiers/LeadEditor.d.ts +0 -13
- package/components/routes/dossiers/LeadEditor.js +0 -119
- package/components/routes/dossiers/LeadForm.d.ts +0 -8
- package/components/routes/dossiers/LeadForm.js +0 -98
- package/components/routes/dossiers/PivotForm.d.ts +0 -13
- package/components/routes/dossiers/PivotForm.js +0 -278
- package/components/routes/help/ActionDocumentation.d.ts +0 -8
- package/components/routes/help/ActionDocumentation.js +0 -62
- package/components/routes/help/ActionIntroductionDocumentation.d.ts +0 -3
- package/components/routes/help/ActionIntroductionDocumentation.js +0 -103
- package/components/routes/help/ApiDocumentation.d.ts +0 -3
- package/components/routes/help/ApiDocumentation.js +0 -139
- package/components/routes/help/AuthDocumentation.d.ts +0 -3
- package/components/routes/help/AuthDocumentation.js +0 -20
- package/components/routes/help/BundleDocumentation.d.ts +0 -3
- package/components/routes/help/BundleDocumentation.js +0 -84
- package/components/routes/help/ClientDocumentation.d.ts +0 -3
- package/components/routes/help/ClientDocumentation.js +0 -20
- package/components/routes/help/Help.d.ts +0 -2
- package/components/routes/help/Help.js +0 -61
- package/components/routes/help/HitBannerDocumentation.d.ts +0 -3
- package/components/routes/help/HitBannerDocumentation.js +0 -62
- package/components/routes/help/HitDocumentation.d.ts +0 -3
- package/components/routes/help/HitDocumentation.js +0 -83
- package/components/routes/help/HitLabelsDocumentation.d.ts +0 -3
- package/components/routes/help/HitLabelsDocumentation.js +0 -46
- package/components/routes/help/HitLinksDocumentation.d.ts +0 -3
- package/components/routes/help/HitLinksDocumentation.js +0 -56
- package/components/routes/help/HitSchemaDocumentation.d.ts +0 -3
- package/components/routes/help/HitSchemaDocumentation.js +0 -159
- package/components/routes/help/NotebookDocumentation.d.ts +0 -3
- package/components/routes/help/NotebookDocumentation.js +0 -19
- package/components/routes/help/OverviewDocumentation.d.ts +0 -3
- package/components/routes/help/OverviewDocumentation.js +0 -15
- package/components/routes/help/RetentionDocumentation.d.ts +0 -3
- package/components/routes/help/RetentionDocumentation.js +0 -48
- package/components/routes/help/SearchDocumentation.d.ts +0 -3
- package/components/routes/help/SearchDocumentation.js +0 -515
- package/components/routes/help/TemplateDocumentation.d.ts +0 -3
- package/components/routes/help/TemplateDocumentation.js +0 -60
- package/components/routes/help/ViewDocumentation.d.ts +0 -3
- package/components/routes/help/ViewDocumentation.js +0 -29
- package/components/routes/help/components/HelpTabs.d.ts +0 -6
- package/components/routes/help/components/HelpTabs.js +0 -40
- package/components/routes/help/markdown/en/actionIntroduction.md.js +0 -1
- package/components/routes/help/markdown/en/authentication.md.js +0 -1
- package/components/routes/help/markdown/en/bundles.md.js +0 -1
- package/components/routes/help/markdown/en/client.md.js +0 -1
- package/components/routes/help/markdown/en/links.md.js +0 -1
- package/components/routes/help/markdown/en/notebook.md.js +0 -1
- package/components/routes/help/markdown/en/retention.md.js +0 -1
- package/components/routes/help/markdown/en/schema.md.js +0 -1
- package/components/routes/help/markdown/en/templates.md.js +0 -1
- package/components/routes/help/markdown/en/views.md.js +0 -1
- package/components/routes/help/markdown/fr/actionIntroduction.md.js +0 -1
- package/components/routes/help/markdown/fr/authentication.md.js +0 -1
- package/components/routes/help/markdown/fr/bundles.md.js +0 -1
- package/components/routes/help/markdown/fr/client.md.js +0 -1
- package/components/routes/help/markdown/fr/links.md.js +0 -1
- package/components/routes/help/markdown/fr/notebook.md.js +0 -1
- package/components/routes/help/markdown/fr/retention.md.js +0 -1
- package/components/routes/help/markdown/fr/schema.md.js +0 -1
- package/components/routes/help/markdown/fr/templates.md.js +0 -1
- package/components/routes/help/markdown/fr/views.md.js +0 -1
- package/components/routes/hits/search/BundleParentMenu.d.ts +0 -6
- package/components/routes/hits/search/BundleParentMenu.js +0 -54
- package/components/routes/hits/search/BundleScroller.d.ts +0 -2
- package/components/routes/hits/search/BundleScroller.js +0 -9
- package/components/routes/hits/search/CustomSort.d.ts +0 -2
- package/components/routes/hits/search/CustomSort.js +0 -88
- package/components/routes/hits/search/HitBrowser.d.ts +0 -3
- package/components/routes/hits/search/HitBrowser.js +0 -258
- package/components/routes/hits/search/HitContextMenu.d.ts +0 -7
- package/components/routes/hits/search/HitContextMenu.js +0 -209
- package/components/routes/hits/search/HitQuery.d.ts +0 -9
- package/components/routes/hits/search/HitQuery.js +0 -237
- package/components/routes/hits/search/InformationPane.d.ts +0 -5
- package/components/routes/hits/search/InformationPane.js +0 -377
- package/components/routes/hits/search/SearchPane.d.ts +0 -3
- package/components/routes/hits/search/SearchPane.js +0 -222
- package/components/routes/hits/search/ViewLink.d.ts +0 -2
- package/components/routes/hits/search/ViewLink.js +0 -77
- package/components/routes/hits/search/grid/AddColumnModal.d.ts +0 -8
- package/components/routes/hits/search/grid/AddColumnModal.js +0 -92
- package/components/routes/hits/search/grid/ColumnHeader.d.ts +0 -8
- package/components/routes/hits/search/grid/ColumnHeader.js +0 -70
- package/components/routes/hits/search/grid/EnhancedCell.d.ts +0 -8
- package/components/routes/hits/search/grid/EnhancedCell.js +0 -50
- package/components/routes/hits/search/grid/HitGrid.d.ts +0 -3
- package/components/routes/hits/search/grid/HitGrid.js +0 -274
- package/components/routes/hits/search/grid/HitRow.d.ts +0 -10
- package/components/routes/hits/search/grid/HitRow.js +0 -102
- package/components/routes/hits/search/shared/CustomSpan.d.ts +0 -2
- package/components/routes/hits/search/shared/CustomSpan.js +0 -54
- package/components/routes/hits/search/shared/HitFilter.d.ts +0 -4
- package/components/routes/hits/search/shared/HitFilter.js +0 -99
- package/components/routes/hits/search/shared/HitSort.d.ts +0 -4
- package/components/routes/hits/search/shared/HitSort.js +0 -91
- package/components/routes/hits/search/shared/QuerySettings.d.ts +0 -6
- package/components/routes/hits/search/shared/QuerySettings.js +0 -41
- package/components/routes/hits/search/shared/SearchSpan.d.ts +0 -5
- package/components/routes/hits/search/shared/SearchSpan.js +0 -59
- package/components/routes/hits/view/HitViewer.d.ts +0 -7
- package/components/routes/hits/view/HitViewer.js +0 -336
- package/components/routes/hits/view/LeadRenderer.d.ts +0 -7
- package/components/routes/hits/view/LeadRenderer.js +0 -34
- package/components/routes/home/AddNewCard.d.ts +0 -7
- package/components/routes/home/AddNewCard.js +0 -216
- package/components/routes/home/AnalyticCard.d.ts +0 -7
- package/components/routes/home/AnalyticCard.js +0 -43
- package/components/routes/home/EntryWrapper.d.ts +0 -7
- package/components/routes/home/EntryWrapper.js +0 -58
- package/components/routes/home/ViewCard.d.ts +0 -7
- package/components/routes/home/ViewCard.js +0 -64
- package/components/routes/home/index.d.ts +0 -3
- package/components/routes/home/index.js +0 -244
- package/components/routes/overviews/OverviewCard.d.ts +0 -8
- package/components/routes/overviews/OverviewCard.js +0 -25
- package/components/routes/overviews/OverviewEditor.d.ts +0 -12
- package/components/routes/overviews/OverviewEditor.js +0 -81
- package/components/routes/overviews/OverviewViewer.d.ts +0 -2
- package/components/routes/overviews/OverviewViewer.js +0 -316
- package/components/routes/overviews/Overviews.d.ts +0 -2
- package/components/routes/overviews/Overviews.js +0 -148
- package/components/routes/overviews/markdownExtendedTokenProvider.d.ts +0 -3
- package/components/routes/overviews/markdownExtendedTokenProvider.js +0 -262
- package/components/routes/overviews/startingTemplate.d.ts +0 -1
- package/components/routes/overviews/startingTemplate.js +0 -36
- package/components/routes/overviews/template/en.md.js +0 -1
- package/components/routes/overviews/template/fr.md.js +0 -1
- package/components/routes/settings/AdminSection.d.ts +0 -3
- package/components/routes/settings/AdminSection.js +0 -13
- package/components/routes/settings/LocalSection.d.ts +0 -3
- package/components/routes/settings/LocalSection.js +0 -127
- package/components/routes/settings/ProfileSection.d.ts +0 -10
- package/components/routes/settings/ProfileSection.js +0 -98
- package/components/routes/settings/SecuritySection.d.ts +0 -10
- package/components/routes/settings/SecuritySection.js +0 -71
- package/components/routes/settings/Settings.d.ts +0 -3
- package/components/routes/settings/Settings.js +0 -56
- package/components/routes/settings/SettingsSection.d.ts +0 -7
- package/components/routes/settings/SettingsSection.js +0 -22
- package/components/routes/templates/TemplateCard.d.ts +0 -7
- package/components/routes/templates/TemplateCard.js +0 -26
- package/components/routes/templates/TemplateDnD.d.ts +0 -8
- package/components/routes/templates/TemplateDnD.js +0 -44
- package/components/routes/templates/TemplateEditor.d.ts +0 -9
- package/components/routes/templates/TemplateEditor.js +0 -104
- package/components/routes/templates/TemplateViewer.d.ts +0 -2
- package/components/routes/templates/TemplateViewer.js +0 -219
- package/components/routes/templates/Templates.d.ts +0 -2
- package/components/routes/templates/Templates.js +0 -156
- package/components/routes/views/ViewComposer.d.ts +0 -3
- package/components/routes/views/ViewComposer.js +0 -276
- package/components/routes/views/Views.d.ts +0 -2
- package/components/routes/views/Views.js +0 -301
- package/hit-CQYBTSKb.js +0 -7
- package/i18n.d.ts +0 -3
- package/i18n.js +0 -1909
- package/images/doggie.png +0 -0
- package/index-BPPnUdfP.js +0 -1157
- package/index.d.ts +0 -0
- package/index.js +0 -13
- package/locales/en/help/main.json.d.ts +0 -16
- package/locales/en/help/search.json.d.ts +0 -189
- package/locales/en/translation.json.d.ts +0 -802
- package/locales/fr/help/main.json.d.ts +0 -16
- package/locales/fr/help/search.json.d.ts +0 -189
- package/locales/fr/translation.json.d.ts +0 -800
- package/manifest.json +0 -16
- package/plugins/HowlerPlugin.d.ts +0 -114
- package/plugins/HowlerPlugin.js +0 -276
- package/plugins/store.d.ts +0 -95
- package/plugins/store.js +0 -105
- package/rest/AxiosClient.d.ts +0 -10
- package/rest/AxiosClient.js +0 -68
- package/rest/FetchClient.d.ts +0 -7
- package/rest/FetchClient.js +0 -19
- package/rest/index.d.ts +0 -6
- package/rest/index.js +0 -1
- package/robots.txt +0 -3
- package/scripts/background.js +0 -14
- package/serve.json +0 -14
- package/setupTests.d.ts +0 -0
- package/tests/MockLocalStorage.d.ts +0 -5
- package/tests/server-handlers.d.ts +0 -5
- package/tests/server.d.ts +0 -3
- package/utils/Throttler.d.ts +0 -9
- package/utils/Throttler.js +0 -43
- package/utils/actionUtils.d.ts +0 -31
- package/utils/actionUtils.js +0 -41
- package/utils/constants.d.ts +0 -79
- package/utils/constants.js +0 -131
- package/utils/hit.json.d.ts +0 -30359
- package/utils/hitFunctions.d.ts +0 -2
- package/utils/hitFunctions.js +0 -12
- package/utils/localStorage.d.ts +0 -21
- package/utils/localStorage.js +0 -35
- package/utils/menuUtils.d.ts +0 -89
- package/utils/menuUtils.js +0 -247
- package/utils/sessionStorage.d.ts +0 -7
- package/utils/sessionStorage.js +0 -50
- package/utils/socketUtils.d.ts +0 -8
- package/utils/socketUtils.js +0 -6
- package/utils/stringUtils.d.ts +0 -8
- package/utils/stringUtils.js +0 -52
- package/utils/utils.d.ts +0 -33
- package/utils/utils.js +0 -193
- package/utils/xsrf.d.ts +0 -2
- package/utils/xsrf.js +0 -12
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg id="artwork_lightmode" data-name="artwork lightmode" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 152.4 40.4">
|
|
3
|
-
<defs>
|
|
4
|
-
<style>
|
|
5
|
-
.cls-1 {
|
|
6
|
-
fill: #4d4d4d;
|
|
7
|
-
stroke-width: 0px;
|
|
8
|
-
}
|
|
9
|
-
</style>
|
|
10
|
-
</defs>
|
|
11
|
-
<path class="cls-1" d="m0,1.36h6.99v12.57h12.89V1.36h6.99v31.78h-6.99v-12.76H6.99v12.76H0V1.36Z" />
|
|
12
|
-
<path class="cls-1"
|
|
13
|
-
d="m31.46,21.11v-.09c0-6.99,5.63-12.67,13.21-12.67s13.12,5.58,13.12,12.57v.09c0,6.99-5.63,12.67-13.21,12.67s-13.12-5.58-13.12-12.57Zm19.52,0v-.09c0-3.59-2.59-6.72-6.4-6.72s-6.31,3.04-6.31,6.63v.09c0,3.59,2.59,6.72,6.4,6.72s6.31-3.04,6.31-6.63Z" />
|
|
14
|
-
<path class="cls-1"
|
|
15
|
-
d="m58.52,8.81h6.99l3.9,14.75,4.58-14.84h5.95l4.63,14.89,4-14.8h6.85l-7.58,24.51h-6.22l-4.67-14.94-4.77,14.94h-6.17l-7.49-24.51Z" />
|
|
16
|
-
<path class="cls-1" d="m98.79,0h6.9v33.14h-6.9V0Z" />
|
|
17
|
-
<path class="cls-1"
|
|
18
|
-
d="m109.87,21.11v-.09c0-6.95,4.95-12.67,12.03-12.67,8.13,0,11.85,6.31,11.85,13.21,0,.54-.04,1.18-.09,1.82h-16.93c.68,3.13,2.86,4.77,5.95,4.77,2.32,0,4-.73,5.9-2.5l3.95,3.5c-2.27,2.81-5.54,4.54-9.94,4.54-7.31,0-12.71-5.13-12.71-12.57Zm17.16-2.04c-.41-3.09-2.22-5.18-5.13-5.18s-4.72,2.04-5.27,5.18h10.4Z" />
|
|
19
|
-
<path class="cls-1"
|
|
20
|
-
d="m137.74,8.81h6.9v4.9c1.41-3.36,3.68-5.54,7.76-5.36v7.22h-.36c-4.58,0-7.4,2.77-7.4,8.58v8.99h-6.9V8.81Z" />
|
|
21
|
-
</svg>
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg id="dark_mode" data-name="dark mode" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.08 63.1">
|
|
3
|
-
<defs>
|
|
4
|
-
<style>
|
|
5
|
-
.cls-1 {
|
|
6
|
-
fill: #3e506d;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.cls-1, .cls-2 {
|
|
10
|
-
stroke-width: 0px;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.cls-2 {
|
|
14
|
-
fill: url(#radial-gradient);
|
|
15
|
-
}
|
|
16
|
-
</style>
|
|
17
|
-
<radialGradient id="radial-gradient" cx="32.04" cy="31.55" fx="32.04" fy="31.55" r="31.8" gradientUnits="userSpaceOnUse">
|
|
18
|
-
<stop offset="0" stop-color="#b1c6e9"/>
|
|
19
|
-
<stop offset="1" stop-color="#7da1db"/>
|
|
20
|
-
</radialGradient>
|
|
21
|
-
</defs>
|
|
22
|
-
<path class="cls-2" d="m32.04,0C14.34,0,0,14.34,0,32.04c0,11.66,6.23,21.87,15.55,27.47,3.63-4.48,6.33-11.15,5.11-16.09-.58-2.34-1.35-4.51-2.34-6.24v.03s0,0,0,0c.08.54-.03,1.18,0,1.75.41,6.01-1.52,8.86-4.73,9.08-2.48.17-4.96-.48-6.08-4.51.03.05.06.1.09.15-.38-1.17-.64-2.52-.74-4.01-.41-6.01,1.86-11.05,5.08-11.27.69-.05,1.38.14,2.02.51l5.62-6s4.28-4.06,7.94-2.7c3.66,1.35,7.16,1.22,10.99-1.54,3.83-2.75,7.19-4.26,7.19-4.26,0,0,.52-1.81,2.71-1.92,2.2-.11,4.32,2.87,2.82,5.4,0,0,2.67,4.91,2.29,7.3,0,0,0,.02,0,.05h0c.07.49-.76,4.61-3.13,7.33-2.13,2.44-14.77,13.16-10.49,30.52,13.89-3.51,24.16-16.08,24.16-31.06C64.08,14.34,49.73,0,32.04,0Z"/>
|
|
23
|
-
<path class="cls-1" d="m16.58,31.81c.26.47.5.98.72,1.53-.3-.54-.59-1.05-.72-1.53Zm1.93,7.07c-.04-.57-.1-1.13-.18-1.67-.14,5.35-3.22,9.53-6.17,9.73-1.74.12-3.4-1.21-4.62-3.41,1.12,4.03,3.43,6.79,5.91,6.62,3.21-.22,5.48-5.27,5.08-11.27Zm10.18-11.98l2.14-2s.57-.46.22-.87c-1.45-1.7-2.93-1.39-2.93-1.39-.6,1.26.56,4.25.56,4.25Zm3.8,13.68l5.12.28s-1.99,2.81-4.06,8.8l3.43-.75c-.72,6.92,2.94,14.18,2.94,14.18-3.37-16.27,9.75-27.71,11.89-30.16,2.51-2.88,1.73-7.74,1.73-7.74,0,0-3.94,8.93-21.04,15.39Z"/>
|
|
24
|
-
</svg>
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg id="artwork_lightmode" data-name="artwork lightmode" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.08 63.1">
|
|
3
|
-
<defs>
|
|
4
|
-
<style>
|
|
5
|
-
.cls-1 {
|
|
6
|
-
fill: #0e4377;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.cls-1, .cls-2 {
|
|
10
|
-
stroke-width: 0px;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.cls-2 {
|
|
14
|
-
fill: url(#radial-gradient);
|
|
15
|
-
}
|
|
16
|
-
</style>
|
|
17
|
-
<radialGradient id="radial-gradient" cx="32.04" cy="31.55" fx="32.04" fy="31.55" r="31.8" gradientUnits="userSpaceOnUse">
|
|
18
|
-
<stop offset="0" stop-color="#3381cc"/>
|
|
19
|
-
<stop offset=".51" stop-color="#317fcb"/>
|
|
20
|
-
<stop offset=".7" stop-color="#2a7bc9"/>
|
|
21
|
-
<stop offset=".83" stop-color="#1e74c6"/>
|
|
22
|
-
<stop offset=".94" stop-color="#0d6ac2"/>
|
|
23
|
-
<stop offset="1" stop-color="#0062bf"/>
|
|
24
|
-
</radialGradient>
|
|
25
|
-
</defs>
|
|
26
|
-
<path class="cls-2" d="m32.04,0C14.34,0,0,14.34,0,32.04c0,11.66,6.23,21.87,15.55,27.47,3.63-4.48,6.33-11.15,5.11-16.09-.58-2.34-1.35-4.51-2.34-6.24v.03s0,0,0,0c.08.54-.03,1.18,0,1.75.41,6.01-1.52,8.86-4.73,9.08-2.48.17-4.96-.48-6.08-4.51.03.05.06.1.09.15-.38-1.17-.64-2.52-.74-4.01-.41-6.01,1.86-11.05,5.08-11.27.69-.05,1.38.14,2.02.51l5.62-6s4.28-4.06,7.94-2.7c3.66,1.35,7.16,1.22,10.99-1.54,3.83-2.75,7.19-4.26,7.19-4.26,0,0,.52-1.81,2.71-1.92,2.2-.11,4.32,2.87,2.82,5.4,0,0,2.67,4.91,2.29,7.3,0,0,0,.02,0,.05h0c.07.49-.76,4.61-3.13,7.33-2.13,2.44-14.77,13.16-10.49,30.52,13.89-3.51,24.16-16.08,24.16-31.06C64.08,14.34,49.73,0,32.04,0Z"/>
|
|
27
|
-
<path class="cls-1" d="m16.58,31.81c.26.47.5.98.72,1.53-.3-.54-.59-1.05-.72-1.53Zm1.93,7.07c-.04-.57-.1-1.13-.18-1.67-.14,5.35-3.22,9.53-6.17,9.73-1.74.12-3.4-1.21-4.62-3.41,1.12,4.03,3.43,6.79,5.91,6.62,3.21-.22,5.48-5.27,5.08-11.27Zm10.18-11.98l2.14-2s.57-.46.22-.87c-1.45-1.7-2.93-1.39-2.93-1.39-.6,1.26.56,4.25.56,4.25Zm3.8,13.68l5.12.28s-1.99,2.81-4.06,8.8l3.43-.75c-.72,6.92,2.94,14.18,2.94,14.18-3.37-16.27,9.75-27.71,11.89-30.16,2.51-2.88,1.73-7.74,1.73-7.74,0,0-3.94,8.93-21.04,15.39Z"/>
|
|
28
|
-
</svg>
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg id="dark_mode" data-name="dark mode" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 70.92 72.11">
|
|
3
|
-
<defs>
|
|
4
|
-
<style>
|
|
5
|
-
.cls-1 {
|
|
6
|
-
fill: #3e506d;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.cls-1, .cls-2, .cls-3, .cls-4 {
|
|
10
|
-
stroke-width: 0px;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.cls-2 {
|
|
14
|
-
fill: #7da1db;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.cls-3 {
|
|
18
|
-
fill: #bcbcbc;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.cls-4 {
|
|
22
|
-
fill: url(#radial-gradient);
|
|
23
|
-
}
|
|
24
|
-
</style>
|
|
25
|
-
<radialGradient id="radial-gradient" cx="38.88" cy="31.59" fx="38.88" fy="31.59" r="31.82" gradientUnits="userSpaceOnUse">
|
|
26
|
-
<stop offset="0" stop-color="#b1c6e9"/>
|
|
27
|
-
<stop offset="1" stop-color="#7da1db"/>
|
|
28
|
-
</radialGradient>
|
|
29
|
-
</defs>
|
|
30
|
-
<g>
|
|
31
|
-
<path class="cls-4" d="m38.88,0C21.18,0,6.84,14.34,6.84,32.04c0,11.9,6.49,22.28,16.12,27.8,3.64-4.24,6.45-10.88,5.25-15.75-.55-2.22-1.28-4.28-2.22-5.91v.03s0,0,0,0c.08.52.14,1.04.17,1.58.39,5.69-1.77,10.48-4.81,10.69-2.35.16-4.54-2.45-5.6-6.27.03.05.06.09.09.14-.36-1.11-.61-2.39-.7-3.81-.39-5.69,1.77-10.48,4.81-10.69.66-.04,1.31.13,1.92.49l5.32-5.69s4.06-3.85,7.52-2.56c3.47,1.28,6.79,1.15,10.42-1.46,3.63-2.61,6.82-4.04,6.82-4.04,0,0,.49-1.71,2.57-1.82,2.09-.11,4.1,2.72,2.67,5.12,0,0,2.54,4.65,2.17,6.92,0,0,0,.02,0,.05h0c.07.46.6,4.71-1.64,7.29-2.03,2.33-14.4,13.48-11.2,28.91h0c-.05.04-.11.08-.16.12,1.51-.36,2.98-.83,4.4-1.4.4-2.23,1.51-4.36,3.33-5.98,1.91-1.7,4.38-2.64,6.94-2.64h0c.59,0,1.18.06,1.76.16,5.04-5.66,8.11-13.12,8.11-21.29C70.92,14.34,56.57,0,38.88,0Z"/>
|
|
32
|
-
<path class="cls-2" d="m67.39,57.98c-1.61-1.81-3.92-2.85-6.35-2.85-2.08,0-4.08.76-5.64,2.14-2.68,2.38-3.49,6.1-2.32,9.28-6.51,2.61-13.64,3.32-20.69,1.98-9.74-1.86-18.17-7.4-23.74-15.59C2.63,44.05.74,33,3.48,22.61c.16-.6-.2-1.22-.8-1.37-.6-.16-1.22.2-1.37.8-2.9,11.02-.9,22.74,5.5,32.16,5.91,8.7,14.85,14.57,25.17,16.54,2.49.47,4.98.71,7.46.71,5.06,0,10.03-.99,14.7-2.9.17.24.36.48.56.71,1.61,1.81,3.92,2.85,6.35,2.85,2.08,0,4.08-.76,5.63-2.14,1.69-1.51,2.7-3.58,2.84-5.84.13-2.26-.62-4.44-2.13-6.14Zm-1.3,9.41c-.25.34-.54.65-.86.94-.28.25-.58.47-.89.66-.03.02-.06.04-.08.05-.3.18-.61.32-.92.44-.05.02-.09.04-.14.05-.31.11-.63.2-.95.26-.05.01-.11.02-.16.03-.32.05-.64.08-.97.09-.08,0-.16,0-.24,0-.12,0-.23,0-.35-.02-.09,0-.19-.02-.28-.03-.12-.01-.23-.03-.35-.05-.09-.02-.18-.04-.28-.06-.11-.03-.23-.06-.34-.09-.09-.03-.18-.05-.27-.08-.11-.04-.22-.08-.33-.13-.09-.03-.17-.07-.26-.11-.11-.05-.22-.11-.33-.17-.08-.04-.16-.08-.24-.13-.11-.07-.22-.14-.33-.21-.07-.05-.14-.09-.21-.14-.12-.09-.23-.18-.34-.28-.06-.05-.11-.09-.17-.14-.16-.15-.32-.31-.47-.48-1.3-1.46-1.79-3.36-1.51-5.16.03-.2.07-.4.12-.59.3-1.18.94-2.28,1.92-3.14,0,0,0,0,0,0,.28-.25.58-.47.89-.66.03-.02.06-.04.09-.06.3-.18.61-.32.92-.44.05-.02.09-.04.14-.05.31-.11.63-.2.95-.26.05-.01.11-.02.16-.03.32-.05.64-.08.97-.09.08,0,.16,0,.24,0,.12,0,.23,0,.35.02.09,0,.19.02.28.03.12.01.23.03.35.05.09.02.18.04.28.06.11.03.23.06.34.09.09.03.18.05.27.08.11.04.22.08.33.13.09.03.17.07.26.11.11.05.22.11.33.16.08.04.16.08.24.13.11.07.22.14.33.21.07.05.14.09.21.14.12.09.23.18.34.28.06.05.11.09.17.14.16.15.32.31.47.48,1.01,1.14,1.53,2.54,1.59,3.95.05,1.41-.37,2.83-1.25,4Z"/>
|
|
33
|
-
<g>
|
|
34
|
-
<path class="cls-3" d="m58.76,64.46c-.63-.63-.95-1.46-.95-2.29s.32-1.65.95-2.29c.63-.63,1.46-.95,2.29-.95s1.65.32,2.29.95c.63.63.95,1.46.95,2.29s-.32,1.65-.95,2.29l-1.07,1.07h-.34v-3.94c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2s.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v2.87l.41-.41c.52-.52.78-1.19.78-1.87s-.26-1.35-.78-1.87c-.52-.52-1.19-.78-1.87-.78s-1.35.26-1.87.78c-.52.52-.78,1.19-.78,1.87s.26,1.35.78,1.87l.41.41v-.58c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2s.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v1.66h-.34l-1.07-1.07h0Zm3.61-3.65h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0Zm-2.34,2.29h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0Zm1.02-1.68c.19,0,.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v2.8h-.59v-2.8c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2Zm.15.53h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0Z"/>
|
|
35
|
-
<path class="cls-3" d="m59.79,65.91h2.52c.17,0,.3.13.3.3h0c0,.16-.14.3-.3.3h-2.52c-.17,0-.3-.13-.3-.3h0c0-.16.14-.3.3-.3Z"/>
|
|
36
|
-
<path class="cls-3" d="m59.96,66.8h2.17c.14,0,.26.13.26.3h0c0,.16-.12.3-.26.3h-2.17c-.14,0-.26-.13-.26-.3h0c0-.16.12-.3.26-.3Z"/>
|
|
37
|
-
<path class="cls-3" d="m60.35,67.71h1.4c-.06.34-.35.59-.7.59s-.64-.25-.7-.59Z"/>
|
|
38
|
-
</g>
|
|
39
|
-
</g>
|
|
40
|
-
<path class="cls-1" d="m24.33,33.09c.25.45.48.93.68,1.45-.29-.51-.56-1-.68-1.45Zm1.83,6.71c-.04-.54-.1-1.07-.17-1.58-.14,5.08-3.05,9.04-5.86,9.23-1.65.11-3.23-1.15-4.38-3.23,1.06,3.82,3.25,6.43,5.6,6.27,3.05-.21,5.2-4.99,4.81-10.69Zm9.65-11.36l2.03-1.9s.54-.44.21-.82c-1.38-1.61-2.78-1.31-2.78-1.31-.57,1.2.53,4.03.53,4.03Zm3.6,12.97l4.86.26s-1.88,2.66-3.85,8.35l3.25-.71c-.68,6.56,2.86,13.76,2.86,13.76-3.2-15.43,9.17-26.59,11.2-28.91,2.38-2.73,1.64-7.34,1.64-7.34,0,0-3.73,8.47-19.95,14.59Z"/>
|
|
41
|
-
</svg>
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg id="artwork_lightmode" data-name="artwork lightmode" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 70.92 72.11">
|
|
3
|
-
<defs>
|
|
4
|
-
<style>
|
|
5
|
-
.cls-1 {
|
|
6
|
-
fill: #4d4d4d;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.cls-1, .cls-2, .cls-3, .cls-4 {
|
|
10
|
-
stroke-width: 0px;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.cls-2 {
|
|
14
|
-
fill: #0e4377;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.cls-3 {
|
|
18
|
-
fill: #0062bf;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.cls-4 {
|
|
22
|
-
fill: url(#radial-gradient);
|
|
23
|
-
}
|
|
24
|
-
</style>
|
|
25
|
-
<radialGradient id="radial-gradient" cx="38.88" cy="31.59" fx="38.88" fy="31.59" r="31.82" gradientUnits="userSpaceOnUse">
|
|
26
|
-
<stop offset="0" stop-color="#1976d2"/>
|
|
27
|
-
<stop offset=".51" stop-color="#1874d0"/>
|
|
28
|
-
<stop offset=".7" stop-color="#1871c9"/>
|
|
29
|
-
<stop offset=".83" stop-color="#166abd"/>
|
|
30
|
-
<stop offset=".93" stop-color="#1461ac"/>
|
|
31
|
-
<stop offset="1" stop-color="#13599e"/>
|
|
32
|
-
</radialGradient>
|
|
33
|
-
</defs>
|
|
34
|
-
<g>
|
|
35
|
-
<path class="cls-4" d="m38.88,0C21.18,0,6.84,14.34,6.84,32.04c0,11.9,6.49,22.28,16.12,27.8,3.64-4.24,6.45-10.88,5.25-15.75-.55-2.22-1.28-4.28-2.22-5.91v.03s0,0,0,0c.08.52.14,1.04.17,1.58.39,5.69-1.77,10.48-4.81,10.69-2.35.16-4.54-2.45-5.6-6.27.03.05.06.09.09.14-.36-1.11-.61-2.39-.7-3.81-.39-5.69,1.77-10.48,4.81-10.69.66-.04,1.31.13,1.92.49l5.32-5.69s4.06-3.85,7.52-2.56c3.47,1.28,6.79,1.15,10.42-1.46,3.63-2.61,6.82-4.04,6.82-4.04,0,0,.49-1.71,2.57-1.82,2.09-.11,4.1,2.72,2.67,5.12,0,0,2.54,4.65,2.17,6.92,0,0,0,.02,0,.05h0c.07.46.6,4.71-1.64,7.29-2.03,2.33-14.4,13.48-11.2,28.91h0c-.05.04-.11.08-.16.12,1.51-.36,2.98-.83,4.4-1.4.4-2.23,1.51-4.36,3.33-5.98,1.91-1.7,4.38-2.64,6.94-2.64h0c.59,0,1.18.06,1.76.16,5.04-5.66,8.11-13.12,8.11-21.29C70.92,14.34,56.57,0,38.88,0Z"/>
|
|
36
|
-
<path class="cls-3" d="m67.39,57.98c-1.61-1.81-3.92-2.85-6.35-2.85-2.08,0-4.08.76-5.64,2.14-2.68,2.38-3.49,6.1-2.32,9.28-6.51,2.61-13.64,3.32-20.69,1.98-9.74-1.86-18.17-7.4-23.74-15.59C2.63,44.05.74,33,3.48,22.61c.16-.6-.2-1.22-.8-1.37-.6-.16-1.22.2-1.37.8-2.9,11.02-.9,22.74,5.5,32.16,5.91,8.7,14.85,14.57,25.17,16.54,2.49.47,4.98.71,7.46.71,5.06,0,10.03-.99,14.7-2.9.17.24.36.48.56.71,1.61,1.81,3.92,2.85,6.35,2.85,2.08,0,4.08-.76,5.63-2.14,1.69-1.51,2.7-3.58,2.84-5.84.13-2.26-.62-4.44-2.13-6.14Zm-1.3,9.41c-.25.34-.54.65-.86.94-.28.25-.58.47-.89.66-.03.02-.06.04-.08.05-.3.18-.61.32-.92.44-.05.02-.09.04-.14.05-.31.11-.63.2-.95.26-.05.01-.11.02-.16.03-.32.05-.64.08-.97.09-.08,0-.16,0-.24,0-.12,0-.23,0-.35-.02-.09,0-.19-.02-.28-.03-.12-.01-.23-.03-.35-.05-.09-.02-.18-.04-.28-.06-.11-.03-.23-.06-.34-.09-.09-.03-.18-.05-.27-.08-.11-.04-.22-.08-.33-.13-.09-.03-.17-.07-.26-.11-.11-.05-.22-.11-.33-.17-.08-.04-.16-.08-.24-.13-.11-.07-.22-.14-.33-.21-.07-.05-.14-.09-.21-.14-.12-.09-.23-.18-.34-.28-.06-.05-.11-.09-.17-.14-.16-.15-.32-.31-.47-.48-1.3-1.46-1.79-3.36-1.51-5.16.03-.2.07-.4.12-.59.3-1.18.94-2.28,1.92-3.14,0,0,0,0,0,0,.28-.25.58-.47.89-.66.03-.02.06-.04.09-.06.3-.18.61-.32.92-.44.05-.02.09-.04.14-.05.31-.11.63-.2.95-.26.05-.01.11-.02.16-.03.32-.05.64-.08.97-.09.08,0,.16,0,.24,0,.12,0,.23,0,.35.02.09,0,.19.02.28.03.12.01.23.03.35.05.09.02.18.04.28.06.11.03.23.06.34.09.09.03.18.05.27.08.11.04.22.08.33.13.09.03.17.07.26.11.11.05.22.11.33.16.08.04.16.08.24.13.11.07.22.14.33.21.07.05.14.09.21.14.12.09.23.18.34.28.06.05.11.09.17.14.16.15.32.31.47.48,1.01,1.14,1.53,2.54,1.59,3.95.05,1.41-.37,2.83-1.25,4Z"/>
|
|
37
|
-
<g>
|
|
38
|
-
<path class="cls-1" d="m58.76,64.46c-.63-.63-.95-1.46-.95-2.29s.32-1.65.95-2.29c.63-.63,1.46-.95,2.29-.95s1.65.32,2.29.95c.63.63.95,1.46.95,2.29s-.32,1.65-.95,2.29l-1.07,1.07h-.34v-3.94c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2s.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v2.87l.41-.41c.52-.52.78-1.19.78-1.87s-.26-1.35-.78-1.87c-.52-.52-1.19-.78-1.87-.78s-1.35.26-1.87.78c-.52.52-.78,1.19-.78,1.87s.26,1.35.78,1.87l.41.41v-.58c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2s.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v1.66h-.34l-1.07-1.07h0Zm3.61-3.65h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0Zm-2.34,2.29h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0Zm1.02-1.68c.19,0,.36.08.48.2h0c.12.12.2.3.2.48s-.08.36-.2.48c-.06.06-.12.1-.19.13v2.8h-.59v-2.8c-.07-.03-.14-.08-.19-.13h0c-.12-.12-.2-.3-.2-.48s.08-.36.2-.48h0c.12-.12.29-.2.48-.2Zm.15.53h0s-.09-.06-.15-.06-.11.02-.15.06c-.04.04-.06.09-.06.15s.02.11.06.15h0s.09.06.15.06.11-.02.15-.06c.04-.04.06-.09.06-.15s-.02-.11-.06-.15h0Z"/>
|
|
39
|
-
<path class="cls-1" d="m59.79,65.91h2.52c.17,0,.3.13.3.3h0c0,.16-.14.3-.3.3h-2.52c-.17,0-.3-.13-.3-.3h0c0-.16.14-.3.3-.3Z"/>
|
|
40
|
-
<path class="cls-1" d="m59.96,66.8h2.17c.14,0,.26.13.26.3h0c0,.16-.12.3-.26.3h-2.17c-.14,0-.26-.13-.26-.3h0c0-.16.12-.3.26-.3Z"/>
|
|
41
|
-
<path class="cls-1" d="m60.35,67.71h1.4c-.06.34-.35.59-.7.59s-.64-.25-.7-.59Z"/>
|
|
42
|
-
</g>
|
|
43
|
-
</g>
|
|
44
|
-
<path class="cls-2" d="m24.33,33.09c.25.45.48.93.68,1.45-.29-.51-.56-1-.68-1.45Zm1.83,6.71c-.04-.54-.1-1.07-.17-1.58-.14,5.08-3.05,9.04-5.86,9.23-1.65.11-3.23-1.15-4.38-3.23,1.06,3.82,3.25,6.43,5.6,6.27,3.05-.21,5.2-4.99,4.81-10.69Zm9.65-11.36l2.03-1.9s.54-.44.21-.82c-1.38-1.61-2.78-1.31-2.78-1.31-.57,1.2.53,4.03.53,4.03Zm3.6,12.97l4.86.26s-1.88,2.66-3.85,8.35l3.25-.71c-.68,6.56,2.86,13.76,2.86,13.76-3.2-15.43,9.17-26.59,11.2-28.91,2.38-2.73,1.64-7.34,1.64-7.34,0,0-3.73,8.47-19.95,14.59Z"/>
|
|
45
|
-
</svg>
|
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
import { Components, PaletteMode, PaletteOptions, Theme } from '@mui/material';
|
|
2
|
-
import { AppUserValidatedProp } from '@cccsaurora/howler-ui/commons/components/app/AppUserService';
|
|
3
|
-
import { GravatarD } from '@cccsaurora/howler-ui/commons/components/display/AppAvatar';
|
|
4
|
-
import { ReactElement, ReactNode } from 'react';
|
|
5
|
-
import { To } from 'react-router-dom';
|
|
6
|
-
export type AppConfigs = {
|
|
7
|
-
preferences?: AppPreferenceConfigs;
|
|
8
|
-
theme?: AppThemeConfigs;
|
|
9
|
-
sitemap?: AppSiteMapConfigs;
|
|
10
|
-
};
|
|
11
|
-
export type AppPreferenceConfigs = {
|
|
12
|
-
appName: string;
|
|
13
|
-
appLink?: To;
|
|
14
|
-
appIconDark: ReactElement<any>;
|
|
15
|
-
appIconLight: ReactElement<any>;
|
|
16
|
-
bannerDark?: ReactElement<any>;
|
|
17
|
-
bannerLight?: ReactElement<any>;
|
|
18
|
-
allowAutoHideTopbar?: boolean;
|
|
19
|
-
allowBreadcrumbs?: boolean;
|
|
20
|
-
allowGravatar?: boolean;
|
|
21
|
-
allowQuickSearch?: boolean;
|
|
22
|
-
allowReset?: boolean;
|
|
23
|
-
allowLayoutSelection?: boolean;
|
|
24
|
-
allowThemeSelection?: boolean;
|
|
25
|
-
allowTranslate?: boolean;
|
|
26
|
-
defaultLayout?: AppLayoutMode;
|
|
27
|
-
defaultTheme?: PaletteMode;
|
|
28
|
-
defaultDrawerOpen?: boolean;
|
|
29
|
-
defaultShowQuickSearch?: boolean;
|
|
30
|
-
defaultAutoHideAppbar?: boolean;
|
|
31
|
-
defaultShowBreadcrumbs?: boolean;
|
|
32
|
-
topnav?: AppTopNavConfigs;
|
|
33
|
-
leftnav?: AppLeftNavConfigs;
|
|
34
|
-
avatarD?: GravatarD;
|
|
35
|
-
notificationURLs?: string[];
|
|
36
|
-
};
|
|
37
|
-
export type AppThemeConfigs = {
|
|
38
|
-
components?: Components<Omit<Theme, '@cccsaurora/howler-ui/components'>>;
|
|
39
|
-
palette?: AppPaletteConfigs;
|
|
40
|
-
appbar?: AppBarThemeConfigs;
|
|
41
|
-
};
|
|
42
|
-
export type AppSiteMapConfigs = {
|
|
43
|
-
routes: AppSiteMapRoute[];
|
|
44
|
-
itemsBefore?: number;
|
|
45
|
-
itemsAfter?: number;
|
|
46
|
-
};
|
|
47
|
-
export type AppTopNavConfigs = {
|
|
48
|
-
themeSelectionMode?: AppThemeSelectionMode;
|
|
49
|
-
apps?: AppSwitcherItem[];
|
|
50
|
-
userMenu?: AppBarUserMenuElement[];
|
|
51
|
-
userMenuI18nKey?: string;
|
|
52
|
-
userMenuTitle?: string;
|
|
53
|
-
adminMenu?: AppBarUserMenuElement[];
|
|
54
|
-
adminMenuI18nKey?: string;
|
|
55
|
-
adminMenuTitle?: string;
|
|
56
|
-
quickSearchURI?: string;
|
|
57
|
-
quickSearchParam?: string;
|
|
58
|
-
left?: ReactNode;
|
|
59
|
-
leftAfterBreadcrumbs?: ReactNode;
|
|
60
|
-
rightBeforeSearch?: ReactNode;
|
|
61
|
-
right?: ReactNode;
|
|
62
|
-
hideUserAvatar?: boolean;
|
|
63
|
-
};
|
|
64
|
-
export type AppLeftNavConfigs = {
|
|
65
|
-
elements: AppLeftNavElement[];
|
|
66
|
-
width?: number;
|
|
67
|
-
hideNestedIcons?: boolean;
|
|
68
|
-
};
|
|
69
|
-
export type AppPaletteConfigs = {
|
|
70
|
-
light?: PaletteOptions;
|
|
71
|
-
dark?: PaletteOptions;
|
|
72
|
-
};
|
|
73
|
-
export type AppBarThemeConfigs = {
|
|
74
|
-
elevation?: number;
|
|
75
|
-
light?: AppBarStyles;
|
|
76
|
-
dark?: AppBarStyles;
|
|
77
|
-
};
|
|
78
|
-
export type AppBarStyles = {
|
|
79
|
-
color?: any;
|
|
80
|
-
backgroundColor?: any;
|
|
81
|
-
};
|
|
82
|
-
export type AppSiteMapRoute = {
|
|
83
|
-
path: string;
|
|
84
|
-
title: string;
|
|
85
|
-
textWidth?: number;
|
|
86
|
-
icon?: ReactNode;
|
|
87
|
-
isRoot?: boolean;
|
|
88
|
-
isLeaf?: boolean;
|
|
89
|
-
exclude?: boolean;
|
|
90
|
-
breadcrumbs?: string[];
|
|
91
|
-
};
|
|
92
|
-
export type AppBarUserMenuElement = {
|
|
93
|
-
i18nKey?: string;
|
|
94
|
-
title?: string;
|
|
95
|
-
route?: string;
|
|
96
|
-
icon?: ReactElement<any>;
|
|
97
|
-
element?: ReactElement<any>;
|
|
98
|
-
};
|
|
99
|
-
export type AppLeftNavElement = {
|
|
100
|
-
type: 'item';
|
|
101
|
-
element: AppLeftNavItem;
|
|
102
|
-
} | {
|
|
103
|
-
type: 'group';
|
|
104
|
-
element: AppLeftNavGroup;
|
|
105
|
-
} | {
|
|
106
|
-
type: 'divider';
|
|
107
|
-
element: null;
|
|
108
|
-
};
|
|
109
|
-
export type AppLeftNavItem = {
|
|
110
|
-
id: number | string;
|
|
111
|
-
i18nKey?: string;
|
|
112
|
-
text?: string;
|
|
113
|
-
userPropValidators?: AppUserValidatedProp[];
|
|
114
|
-
icon?: ReactElement<any>;
|
|
115
|
-
route?: string;
|
|
116
|
-
nested?: boolean;
|
|
117
|
-
render?: (open: boolean) => ReactElement;
|
|
118
|
-
};
|
|
119
|
-
export type AppLeftNavGroup = {
|
|
120
|
-
id: number | string;
|
|
121
|
-
open?: boolean;
|
|
122
|
-
i18nKey?: string;
|
|
123
|
-
title?: string;
|
|
124
|
-
userPropValidators?: AppUserValidatedProp[];
|
|
125
|
-
icon?: React.ReactElement<any>;
|
|
126
|
-
items: AppLeftNavItem[];
|
|
127
|
-
};
|
|
128
|
-
export type AppSwitcherItem = {
|
|
129
|
-
alt: string;
|
|
130
|
-
name: string;
|
|
131
|
-
img_d: React.ReactElement<any> | string;
|
|
132
|
-
img_l: React.ReactElement<any> | string;
|
|
133
|
-
route: string;
|
|
134
|
-
newWindow?: boolean;
|
|
135
|
-
};
|
|
136
|
-
export type AppLayoutMode = 'side' | 'top';
|
|
137
|
-
export type AppThemeSelectionMode = 'profile' | 'icon';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare const APP_STORAGE_PREFIX = "templateui.core";
|
|
2
|
-
export declare const AppStorageKeys: {
|
|
3
|
-
LS_KEY_DARK_MODE: string;
|
|
4
|
-
LS_KEY_LAYOUT_MODE: string;
|
|
5
|
-
LS_KEY_LEFTNAV_OPEN: string;
|
|
6
|
-
LS_KEY_SHOW_QUICK_SEARCH: string;
|
|
7
|
-
LS_KEY_AUTOHIDE_APPBAR: string;
|
|
8
|
-
LS_KEY_BREADCRUMBS_ENABLED: string;
|
|
9
|
-
LS_KEY_BREADCRUMBS_OPEN: string;
|
|
10
|
-
};
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
const APP_STORAGE_PREFIX = "templateui.core";
|
|
2
|
-
const AppStorageKeys = {
|
|
3
|
-
LS_KEY_DARK_MODE: `${APP_STORAGE_PREFIX}.darkMode`,
|
|
4
|
-
LS_KEY_LAYOUT_MODE: `${APP_STORAGE_PREFIX}.navLayout`,
|
|
5
|
-
LS_KEY_LEFTNAV_OPEN: `${APP_STORAGE_PREFIX}.drawerOpen`,
|
|
6
|
-
LS_KEY_SHOW_QUICK_SEARCH: `${APP_STORAGE_PREFIX}.showQuickSearch`,
|
|
7
|
-
LS_KEY_AUTOHIDE_APPBAR: `${APP_STORAGE_PREFIX}.autoHideAppbar`,
|
|
8
|
-
LS_KEY_BREADCRUMBS_ENABLED: `${APP_STORAGE_PREFIX}.breadcrumbsEnabled`,
|
|
9
|
-
LS_KEY_BREADCRUMBS_OPEN: `${APP_STORAGE_PREFIX}.breadcrumbsState`
|
|
10
|
-
};
|
|
11
|
-
export {
|
|
12
|
-
APP_STORAGE_PREFIX,
|
|
13
|
-
AppStorageKeys
|
|
14
|
-
};
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
import { PaletteMode } from '@mui/material';
|
|
2
|
-
import { AppConfigs, AppLayoutMode, AppLeftNavElement, AppSwitcherItem } from '@cccsaurora/howler-ui/commons/components/app/AppConfigs';
|
|
3
|
-
import { ItemComponentProps } from '@cccsaurora/howler-ui/commons/components/app/AppNotificationService';
|
|
4
|
-
import { AppSearchItem, AppSearchMode, AppSearchService } from '@cccsaurora/howler-ui/commons/components/app/AppSearchService';
|
|
5
|
-
import { AppUser, AppUserService } from '@cccsaurora/howler-ui/commons/components/app/AppUserService';
|
|
6
|
-
import { BreadcrumbItem } from '@cccsaurora/howler-ui/commons/components/app/hooks/useAppSitemap';
|
|
7
|
-
import { ReactElement } from 'react';
|
|
8
|
-
export type AppContextType = {
|
|
9
|
-
configs: AppConfigs;
|
|
10
|
-
theme: PaletteMode;
|
|
11
|
-
toggleTheme: () => void;
|
|
12
|
-
toggleLanguage: () => void;
|
|
13
|
-
};
|
|
14
|
-
export type AppSwitcherContextType = {
|
|
15
|
-
empty: boolean;
|
|
16
|
-
items: AppSwitcherItem[];
|
|
17
|
-
setItems: (items: AppSwitcherItem[]) => void;
|
|
18
|
-
};
|
|
19
|
-
export type AppQuickSearchContextType = {
|
|
20
|
-
show: boolean;
|
|
21
|
-
setShow: (show: boolean) => void;
|
|
22
|
-
toggle: () => void;
|
|
23
|
-
};
|
|
24
|
-
export type AppSearchServiceContextType<T = any> = {
|
|
25
|
-
provided: boolean;
|
|
26
|
-
service: AppSearchService<T>;
|
|
27
|
-
state: AppSearchServiceState<T>;
|
|
28
|
-
};
|
|
29
|
-
export type AppNotificationServiceContextType = {
|
|
30
|
-
provided: boolean;
|
|
31
|
-
service: AppNotificationService;
|
|
32
|
-
state: AppNotificationServiceState;
|
|
33
|
-
};
|
|
34
|
-
export type AppLeftNavContextType = {
|
|
35
|
-
open: boolean;
|
|
36
|
-
elements: AppLeftNavElement[];
|
|
37
|
-
toggle: () => void;
|
|
38
|
-
setOpen: (show: boolean) => void;
|
|
39
|
-
setElements: (elements: AppLeftNavElement[]) => void;
|
|
40
|
-
};
|
|
41
|
-
export type AppLayoutContextType = {
|
|
42
|
-
ready: boolean;
|
|
43
|
-
current: AppLayoutMode;
|
|
44
|
-
hideMenus: () => void;
|
|
45
|
-
setReady: (ready: boolean) => void;
|
|
46
|
-
toggle: () => void;
|
|
47
|
-
};
|
|
48
|
-
export type AppBarContextType = {
|
|
49
|
-
show: boolean;
|
|
50
|
-
autoHide: boolean;
|
|
51
|
-
setShow: (show: boolean) => void;
|
|
52
|
-
setAutoHide: (autoHide: boolean) => void;
|
|
53
|
-
toggleAutoHide: () => void;
|
|
54
|
-
};
|
|
55
|
-
export type AppBreadcrumbsContextType = {
|
|
56
|
-
show: boolean;
|
|
57
|
-
items: BreadcrumbItem[];
|
|
58
|
-
setItems: (newItems: BreadcrumbItem[]) => void;
|
|
59
|
-
toggle: () => void;
|
|
60
|
-
last: () => BreadcrumbItem;
|
|
61
|
-
first: () => BreadcrumbItem;
|
|
62
|
-
};
|
|
63
|
-
export type AppDrawerContextType = {
|
|
64
|
-
isOpen: boolean;
|
|
65
|
-
isFloatThreshold: boolean;
|
|
66
|
-
width: number | string;
|
|
67
|
-
maximized: boolean;
|
|
68
|
-
element: ReactElement;
|
|
69
|
-
open: (props: AppDrawerOpenProps) => void;
|
|
70
|
-
close: () => void;
|
|
71
|
-
setWidth: (width: number | string) => void;
|
|
72
|
-
setMaximized: (maximized: boolean) => void;
|
|
73
|
-
};
|
|
74
|
-
export type AppSearchServiceState<T = any, R = any> = {
|
|
75
|
-
searching: boolean;
|
|
76
|
-
menu: boolean;
|
|
77
|
-
mode: AppSearchMode;
|
|
78
|
-
items: AppSearchItem<T>[];
|
|
79
|
-
result?: R;
|
|
80
|
-
set: (state: AppSearchServiceState<T>) => void;
|
|
81
|
-
};
|
|
82
|
-
export type AppNotificationServiceState = {
|
|
83
|
-
urls: string[];
|
|
84
|
-
set: (state: AppNotificationServiceState) => void;
|
|
85
|
-
};
|
|
86
|
-
export type AppNotificationService = {
|
|
87
|
-
feedUrls?: string[];
|
|
88
|
-
notificationRenderer?: (item: ItemComponentProps) => ReactElement;
|
|
89
|
-
};
|
|
90
|
-
export type AppDrawerOpenProps = {
|
|
91
|
-
element: ReactElement;
|
|
92
|
-
width?: number | string;
|
|
93
|
-
floatThreshold?: number;
|
|
94
|
-
onClose?: (action: 'close' | 'hide') => void;
|
|
95
|
-
};
|
|
96
|
-
export declare const AppContext: import('react').Context<AppContextType>;
|
|
97
|
-
export declare const AppLayoutContext: import('react').Context<AppLayoutContextType>;
|
|
98
|
-
export declare const AppBarContext: import('react').Context<AppBarContextType>;
|
|
99
|
-
export declare const AppBreadcrumbsContext: import('react').Context<AppBreadcrumbsContextType>;
|
|
100
|
-
export declare const AppLeftNavContext: import('react').Context<AppLeftNavContextType>;
|
|
101
|
-
export declare const AppQuickSearchContext: import('react').Context<AppQuickSearchContextType>;
|
|
102
|
-
export declare const AppSearchServiceContext: import('react').Context<AppSearchServiceContextType<any>>;
|
|
103
|
-
export declare const AppSwitcherContext: import('react').Context<AppSwitcherContextType>;
|
|
104
|
-
export declare const AppUserContext: import('react').Context<AppUserService<AppUser>>;
|
|
105
|
-
export declare const AppNotificationServiceContext: import('react').Context<AppNotificationServiceContextType>;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { createContext } from "/home/runner/work/howler/howler/ui/node_modules/.pnpm/react@18.3.1/node_modules/react/index.js";
|
|
2
|
-
const AppContext = createContext(null);
|
|
3
|
-
const AppLayoutContext = createContext(null);
|
|
4
|
-
const AppBarContext = createContext(null);
|
|
5
|
-
const AppBreadcrumbsContext = createContext(null);
|
|
6
|
-
const AppLeftNavContext = createContext(null);
|
|
7
|
-
const AppQuickSearchContext = createContext(null);
|
|
8
|
-
const AppSearchServiceContext = createContext(null);
|
|
9
|
-
const AppSwitcherContext = createContext(null);
|
|
10
|
-
const AppUserContext = createContext(null);
|
|
11
|
-
const AppNotificationServiceContext = createContext(null);
|
|
12
|
-
export {
|
|
13
|
-
AppBarContext,
|
|
14
|
-
AppBreadcrumbsContext,
|
|
15
|
-
AppContext,
|
|
16
|
-
AppLayoutContext,
|
|
17
|
-
AppLeftNavContext,
|
|
18
|
-
AppNotificationServiceContext,
|
|
19
|
-
AppQuickSearchContext,
|
|
20
|
-
AppSearchServiceContext,
|
|
21
|
-
AppSwitcherContext,
|
|
22
|
-
AppUserContext
|
|
23
|
-
};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { AppLeftNavConfigs, AppPreferenceConfigs, AppSiteMapConfigs, AppThemeConfigs, AppTopNavConfigs } from '@cccsaurora/howler-ui/commons/components/app/AppConfigs';
|
|
2
|
-
export declare const AppDefaultsPreferencesConfigs: AppPreferenceConfigs;
|
|
3
|
-
export declare const AppDefaultsLeftNavConfigs: AppLeftNavConfigs;
|
|
4
|
-
export declare const AppDefaultsTopNavConfigs: AppTopNavConfigs;
|
|
5
|
-
export declare const AppDefaultsSitemapConfigs: AppSiteMapConfigs;
|
|
6
|
-
export declare const AppDefaultsThemeConfigs: AppThemeConfigs;
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
const AppDefaultsPreferencesConfigs = {
|
|
2
|
-
appName: null,
|
|
3
|
-
appLink: "/",
|
|
4
|
-
appIconDark: null,
|
|
5
|
-
appIconLight: null,
|
|
6
|
-
bannerDark: null,
|
|
7
|
-
bannerLight: null,
|
|
8
|
-
defaultLayout: "side",
|
|
9
|
-
defaultTheme: "dark",
|
|
10
|
-
defaultShowBreadcrumbs: true,
|
|
11
|
-
allowAutoHideTopbar: true,
|
|
12
|
-
allowBreadcrumbs: true,
|
|
13
|
-
allowQuickSearch: true,
|
|
14
|
-
allowReset: true,
|
|
15
|
-
allowLayoutSelection: true,
|
|
16
|
-
allowThemeSelection: true,
|
|
17
|
-
allowTranslate: true,
|
|
18
|
-
avatarD: "mp"
|
|
19
|
-
};
|
|
20
|
-
const AppDefaultsLeftNavConfigs = {
|
|
21
|
-
elements: [],
|
|
22
|
-
width: 240,
|
|
23
|
-
hideNestedIcons: false
|
|
24
|
-
};
|
|
25
|
-
const AppDefaultsTopNavConfigs = {
|
|
26
|
-
themeSelectionMode: "profile",
|
|
27
|
-
quickSearchURI: "/search/",
|
|
28
|
-
quickSearchParam: "q"
|
|
29
|
-
};
|
|
30
|
-
const AppDefaultsSitemapConfigs = {
|
|
31
|
-
routes: [],
|
|
32
|
-
itemsBefore: 1,
|
|
33
|
-
itemsAfter: 2
|
|
34
|
-
};
|
|
35
|
-
const AppDefaultsThemeConfigs = {};
|
|
36
|
-
export {
|
|
37
|
-
AppDefaultsLeftNavConfigs,
|
|
38
|
-
AppDefaultsPreferencesConfigs,
|
|
39
|
-
AppDefaultsSitemapConfigs,
|
|
40
|
-
AppDefaultsThemeConfigs,
|
|
41
|
-
AppDefaultsTopNavConfigs
|
|
42
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { AppPreferenceConfigs, AppSiteMapConfigs, AppThemeConfigs } from '@cccsaurora/howler-ui/commons/components/app/AppConfigs';
|
|
2
|
-
import { AppNotificationService } from '@cccsaurora/howler-ui/commons/components/app/AppContexts';
|
|
3
|
-
import { AppSearchService } from '@cccsaurora/howler-ui/commons/components/app/AppSearchService';
|
|
4
|
-
import { AppUser, AppUserService } from '@cccsaurora/howler-ui/commons/components/app/AppUserService';
|
|
5
|
-
import { ReactNode } from 'react';
|
|
6
|
-
export type AppProviderProps<U extends AppUser> = {
|
|
7
|
-
preferences?: AppPreferenceConfigs;
|
|
8
|
-
theme?: AppThemeConfigs;
|
|
9
|
-
sitemap?: AppSiteMapConfigs;
|
|
10
|
-
user?: AppUserService<U>;
|
|
11
|
-
search?: AppSearchService;
|
|
12
|
-
notification?: AppNotificationService;
|
|
13
|
-
children: ReactNode;
|
|
14
|
-
};
|
|
15
|
-
export default function AppProvider<U extends AppUser>({ theme, user, search, sitemap, notification, preferences, children }: AppProviderProps<U>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import { jsx } from "/home/runner/work/howler/howler/ui/node_modules/.pnpm/react@18.3.1/node_modules/react/jsx-runtime.js";
|
|
2
|
-
import { useMediaQuery, StyledEngineProvider, ThemeProvider } from "/home/runner/work/howler/howler/ui/node_modules/.pnpm/@mui+material@5.18.0_@emotion+react@11.14.0_@types+react@18.3.23_react@18.3.1__@emotion_19a5ee0476da228d66b5ad5c143bb0c3/node_modules/@mui/material/index.js";
|
|
3
|
-
import { AppStorageKeys } from "./AppConstants.js";
|
|
4
|
-
import { AppContext } from "./AppContexts.js";
|
|
5
|
-
import { AppDefaultsPreferencesConfigs } from "./AppDefaults.js";
|
|
6
|
-
import AppBarProvider from "./providers/AppBarProvider.js";
|
|
7
|
-
import AppLayoutProvider from "./providers/AppLayoutProvider.js";
|
|
8
|
-
import AppLeftNavProvider from "./providers/AppLeftNavProvider.js";
|
|
9
|
-
import AppSnackbarProvider from "./providers/AppSnackbarProvider.js";
|
|
10
|
-
import AppUserProvider from "./providers/AppUserProvider.js";
|
|
11
|
-
import useLocalStorageItem from "../utils/hooks/useLocalStorageItem.js";
|
|
12
|
-
import useThemeBuilder from "../utils/hooks/useThemeBuilder.js";
|
|
13
|
-
import i18nInstance from "../../../i18n.js";
|
|
14
|
-
import { useCallback, useMemo } from "/home/runner/work/howler/howler/ui/node_modules/.pnpm/react@18.3.1/node_modules/react/index.js";
|
|
15
|
-
const { LS_KEY_DARK_MODE } = AppStorageKeys;
|
|
16
|
-
function AppProvider({
|
|
17
|
-
theme,
|
|
18
|
-
user,
|
|
19
|
-
search,
|
|
20
|
-
sitemap,
|
|
21
|
-
notification,
|
|
22
|
-
preferences,
|
|
23
|
-
children
|
|
24
|
-
}) {
|
|
25
|
-
const { allowThemeSelection, defaultTheme } = { ...AppDefaultsPreferencesConfigs, ...preferences || {} };
|
|
26
|
-
const prefersDarkMode = useMediaQuery("(prefers-color-scheme: dark)");
|
|
27
|
-
const [darkMode, setDarkMode] = useLocalStorageItem(LS_KEY_DARK_MODE, defaultTheme === "dark" || prefersDarkMode);
|
|
28
|
-
const _darkMode = allowThemeSelection ? darkMode : defaultTheme === "dark";
|
|
29
|
-
const { lightTheme, darkTheme } = useThemeBuilder(theme);
|
|
30
|
-
const toggleTheme = useCallback(() => setDarkMode(!darkMode), [darkMode, setDarkMode]);
|
|
31
|
-
const toggleLanguage = useCallback(() => i18nInstance.changeLanguage(i18nInstance.language === "en" ? "fr" : "en"), []);
|
|
32
|
-
const contextValue = useMemo(() => {
|
|
33
|
-
return {
|
|
34
|
-
theme: darkMode ? "dark" : "light",
|
|
35
|
-
configs: { preferences, theme, sitemap },
|
|
36
|
-
toggleTheme,
|
|
37
|
-
toggleLanguage
|
|
38
|
-
};
|
|
39
|
-
}, [darkMode, preferences, theme, sitemap, toggleTheme, toggleLanguage]);
|
|
40
|
-
return /* @__PURE__ */ jsx(AppContext.Provider, { value: contextValue, children: /* @__PURE__ */ jsx(StyledEngineProvider, { injectFirst: true, children: /* @__PURE__ */ jsx(ThemeProvider, { theme: _darkMode ? darkTheme : lightTheme, children: /* @__PURE__ */ jsx(AppUserProvider, { service: user, children: /* @__PURE__ */ jsx(AppBarProvider, { search, notification, children: /* @__PURE__ */ jsx(AppLeftNavProvider, { children: /* @__PURE__ */ jsx(AppLayoutProvider, { children: /* @__PURE__ */ jsx(AppSnackbarProvider, { children }) }) }) }) }) }) }) });
|
|
41
|
-
}
|
|
42
|
-
export {
|
|
43
|
-
AppProvider as default
|
|
44
|
-
};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { AppSearchServiceState } from '@cccsaurora/howler-ui/commons/components/app/AppContexts';
|
|
2
|
-
import { ReactElement } from 'react';
|
|
3
|
-
export type AppSearchMode = 'inline' | 'fullscreen';
|
|
4
|
-
export type AppSearchItem<T = any> = {
|
|
5
|
-
id: string | number;
|
|
6
|
-
item: T;
|
|
7
|
-
};
|
|
8
|
-
export type AppSearchItemRendererOption<T = any> = {
|
|
9
|
-
state: AppSearchServiceState<T>;
|
|
10
|
-
index: number;
|
|
11
|
-
last: boolean;
|
|
12
|
-
};
|
|
13
|
-
export type AppSearchService<T = any> = {
|
|
14
|
-
onMounted?: (setValue?: (value: string) => void, state?: AppSearchServiceState<T>) => void;
|
|
15
|
-
onEnter?: (value: string, state?: AppSearchServiceState<T>, setValue?: (value: string) => void) => void;
|
|
16
|
-
onChange?: (value: string, state: AppSearchServiceState<T>, setValue?: (value: string) => void) => void;
|
|
17
|
-
onItemSelect?: (item: AppSearchItem<T>, state?: AppSearchServiceState<T>) => void;
|
|
18
|
-
itemRenderer: (item: AppSearchItem<T>, options?: AppSearchItemRendererOption<T>) => ReactElement;
|
|
19
|
-
headerRenderer?: (state: AppSearchServiceState<T>) => ReactElement;
|
|
20
|
-
footerRenderer?: (state: AppSearchServiceState<T>) => ReactElement;
|
|
21
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|