@gen-epix/ui 1.14.5 → 1.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/index.js +27268 -27928
- package/package.json +94 -83
- package/src/@types/environment.d.ts +54 -0
- package/src/api/api.ts +43576 -0
- package/src/api/base.ts +111 -0
- package/src/api/common.ts +168 -0
- package/src/api/configuration.ts +118 -0
- package/src/api/index.ts +20 -0
- package/src/assets/icons/CollectionIcon.svg +1 -0
- package/src/assets/icons/DnaIcon.svg +1 -0
- package/src/assets/icons/VirusIcon.svg +1 -0
- package/src/assets/logo/logo-rijksoverheid.svg +42 -0
- package/src/assets/logo/logo-rivm.svg +6 -0
- package/src/classes/Subject/Subject.ts +26 -0
- package/src/classes/Subject/index.ts +1 -0
- package/src/classes/TableEventBus/TableEventBus.ts +14 -0
- package/src/classes/TableEventBus/index.ts +1 -0
- package/src/classes/abstracts/EventBusAbstract/EventBusAbstract.ts +37 -0
- package/src/classes/abstracts/EventBusAbstract/index.ts +1 -0
- package/src/classes/abstracts/FilterAbstract/FilterAbstract.ts +54 -0
- package/src/classes/abstracts/FilterAbstract/index.ts +1 -0
- package/src/classes/abstracts/SubscribableAbstract/SubscribableAbstract.ts +20 -0
- package/src/classes/abstracts/SubscribableAbstract/index.ts +1 -0
- package/src/classes/errors/UploadError.ts +11 -0
- package/src/classes/errors/index.ts +1 -0
- package/src/classes/filters/BooleanFilter.ts +31 -0
- package/src/classes/filters/DateFilter.ts +133 -0
- package/src/classes/filters/GeoFilter.ts +60 -0
- package/src/classes/filters/MultiSelectFilter.ts +70 -0
- package/src/classes/filters/NumberRangeFilter.ts +82 -0
- package/src/classes/filters/SelectionFilter.ts +25 -0
- package/src/classes/filters/TextFilter.ts +36 -0
- package/src/classes/filters/TreeFilter.ts +22 -0
- package/src/classes/managers/AuthenticationManager/AuthenticationManager.ts +94 -0
- package/src/classes/managers/AuthenticationManager/index.ts +1 -0
- package/src/classes/managers/AuthorizationManager/AuthorizationManager.ts +70 -0
- package/src/classes/managers/AuthorizationManager/index.ts +1 -0
- package/src/classes/managers/BackendVersionManager/BackendVersionManager.ts +23 -0
- package/src/classes/managers/BackendVersionManager/index.ts +1 -0
- package/src/classes/managers/BreadcrumbManager/BreadcrumbManager.ts +30 -0
- package/src/classes/managers/BreadcrumbManager/index.ts +1 -0
- package/src/classes/managers/ConfigManager/ConfigManager.ts +31 -0
- package/src/classes/managers/ConfigManager/index.ts +1 -0
- package/src/classes/managers/DevicePixelRatioManager/DevicePixelRatioManager.ts +27 -0
- package/src/classes/managers/DevicePixelRatioManager/index.ts +1 -0
- package/src/classes/managers/EmotionCacheManager/EmotionCacheManager.ts +27 -0
- package/src/classes/managers/EmotionCacheManager/index.ts +1 -0
- package/src/classes/managers/EpiDataManager/EpiDataManager.ts +196 -0
- package/src/classes/managers/EpiDataManager/index.ts +1 -0
- package/src/classes/managers/EpiEventBusManager/EpiEventBusManager.ts +61 -0
- package/src/classes/managers/EpiEventBusManager/index.ts +1 -0
- package/src/classes/managers/EpiHighlightingManager/EpiHighlightingManager.ts +32 -0
- package/src/classes/managers/EpiHighlightingManager/index.ts +1 -0
- package/src/classes/managers/EpiLineListCaseSetMembersManager/EpiListsCaseSetMembersManager.ts +118 -0
- package/src/classes/managers/EpiLineListCaseSetMembersManager/index.ts +1 -0
- package/src/classes/managers/FeatureFlagsManager/FeatureFlagsManager.ts +30 -0
- package/src/classes/managers/FeatureFlagsManager/index.ts +1 -0
- package/src/classes/managers/I18nManager/I18nManager.ts +105 -0
- package/src/classes/managers/I18nManager/index.ts +1 -0
- package/src/classes/managers/InactivityManager/InactivityManager.ts +119 -0
- package/src/classes/managers/InactivityManager/index.ts +1 -0
- package/src/classes/managers/KeyboardShortcutManager/KeyboardShortcutManager.ts +78 -0
- package/src/classes/managers/KeyboardShortcutManager/index.ts +1 -0
- package/src/classes/managers/LogManager/LogManager.ts +151 -0
- package/src/classes/managers/LogManager/index.ts +1 -0
- package/src/classes/managers/NavigationHistoryManager/NavigationHistoryManager.ts +16 -0
- package/src/classes/managers/NavigationHistoryManager/index.ts +1 -0
- package/src/classes/managers/NotificationManager/NotificationManager.ts +104 -0
- package/src/classes/managers/NotificationManager/index.ts +1 -0
- package/src/classes/managers/PageEventBusManager/PageEventBusManager.ts +116 -0
- package/src/classes/managers/PageEventBusManager/index.ts +1 -0
- package/src/classes/managers/QueryClientManager/QueryClientManager.ts +51 -0
- package/src/classes/managers/QueryClientManager/index.ts +1 -0
- package/src/classes/managers/RouterManager/RouterManager.ts +25 -0
- package/src/classes/managers/RouterManager/index.ts +1 -0
- package/src/classes/managers/UserSettingsManager/UserSettingsManager.ts +16 -0
- package/src/classes/managers/UserSettingsManager/index.ts +1 -0
- package/src/classes/managers/WindowManager/WindowManager.test.ts +23 -0
- package/src/classes/managers/WindowManager/WindowManager.ts +26 -0
- package/src/classes/managers/WindowManager/index.ts +1 -0
- package/src/components/app/App/App.tsx +58 -0
- package/src/components/app/App/index.ts +1 -0
- package/src/components/app/ApplicationBootstrap/ApplicationBootstrap.tsx +223 -0
- package/src/components/app/ApplicationBootstrap/index.ts +1 -0
- package/src/components/app/RouterRoot/RouterRoot.tsx +187 -0
- package/src/components/app/RouterRoot/index.ts +1 -0
- package/src/components/epi/EpiAddCasesToEventDialog/EpiAddCasesToEventDialog.tsx +347 -0
- package/src/components/epi/EpiAddCasesToEventDialog/EpiAddCasesToEventDialogSuccessNotificationMessage.tsx +38 -0
- package/src/components/epi/EpiAddCasesToEventDialog/index.ts +1 -0
- package/src/components/epi/EpiBulkEditCaseDialog/EpiBulkEditCaseDialog.tsx +61 -0
- package/src/components/epi/EpiBulkEditCaseDialog/index.ts +1 -0
- package/src/components/epi/EpiCaseInfoDialog/EpiCaseCaseSetInfo.tsx +137 -0
- package/src/components/epi/EpiCaseInfoDialog/EpiCaseContent.tsx +127 -0
- package/src/components/epi/EpiCaseInfoDialog/EpiCaseForm.tsx +111 -0
- package/src/components/epi/EpiCaseInfoDialog/EpiCaseInfoDialog.tsx +377 -0
- package/src/components/epi/EpiCaseInfoDialog/EpiCaseSharingForm.tsx +140 -0
- package/src/components/epi/EpiCaseInfoDialog/EpiCaseSharingInfo.tsx +23 -0
- package/src/components/epi/EpiCaseInfoDialog/EpiReadOnlyCaseContent.tsx +89 -0
- package/src/components/epi/EpiCaseInfoDialog/index.ts +1 -0
- package/src/components/epi/EpiCaseSetInfoDialog/EpiCaseSetContent.tsx +108 -0
- package/src/components/epi/EpiCaseSetInfoDialog/EpiCaseSetDescription.tsx +34 -0
- package/src/components/epi/EpiCaseSetInfoDialog/EpiCaseSetForm.tsx +151 -0
- package/src/components/epi/EpiCaseSetInfoDialog/EpiCaseSetInfoDialog.tsx +389 -0
- package/src/components/epi/EpiCaseSetInfoDialog/EpiCaseSetSharingForm.tsx +155 -0
- package/src/components/epi/EpiCaseSetInfoDialog/EpiCaseSetSharingInfo.tsx +23 -0
- package/src/components/epi/EpiCaseSetInfoDialog/index.ts +1 -0
- package/src/components/epi/EpiCaseSummary/EpiCaseSummary.tsx +141 -0
- package/src/components/epi/EpiCaseSummary/index.ts +1 -0
- package/src/components/epi/EpiCaseTypeInfoDialog/EpiCaseTypeInfoAccessRights.tsx +91 -0
- package/src/components/epi/EpiCaseTypeInfoDialog/EpiCaseTypeInfoColAccessRights.tsx +118 -0
- package/src/components/epi/EpiCaseTypeInfoDialog/EpiCaseTypeInfoData.tsx +38 -0
- package/src/components/epi/EpiCaseTypeInfoDialog/EpiCaseTypeInfoDialog.tsx +39 -0
- package/src/components/epi/EpiCaseTypeInfoDialog/EpiCaseTypeInfoDialogContent.tsx +169 -0
- package/src/components/epi/EpiCaseTypeInfoDialog/EpiCaseTypeInfoDialogWithLoader.tsx +42 -0
- package/src/components/epi/EpiCaseTypeInfoDialog/EpiCaseTypeInfoRegions.tsx +87 -0
- package/src/components/epi/EpiCaseTypeInfoDialog/EpiCaseTypeInfoTrees.tsx +73 -0
- package/src/components/epi/EpiCaseTypeInfoDialog/EpiCaseTypeInfoValues.tsx +61 -0
- package/src/components/epi/EpiCaseTypeInfoDialog/EpiCaseTypeInfoVariableDetails.tsx +151 -0
- package/src/components/epi/EpiCaseTypeInfoDialog/index.ts +10 -0
- package/src/components/epi/EpiCasesAlreadyInCaseSetWarning/EpiCasesAlreadyInCaseSetWarning.tsx +190 -0
- package/src/components/epi/EpiCasesAlreadyInCaseSetWarning/EpiCasesAlreadyInCaseSetWarningCaseSetLink.tsx +62 -0
- package/src/components/epi/EpiCasesAlreadyInCaseSetWarning/index.ts +1 -0
- package/src/components/epi/EpiCompletCaseTypeLoader/EpiCompletCaseTypeLoader.tsx +87 -0
- package/src/components/epi/EpiCompletCaseTypeLoader/index.ts +1 -0
- package/src/components/epi/EpiContactDetailsDialog/EpiContactDetailsDialog.tsx +151 -0
- package/src/components/epi/EpiContactDetailsDialog/index.ts +1 -0
- package/src/components/epi/EpiContextMenu/EpiContextMenu.tsx +155 -0
- package/src/components/epi/EpiContextMenu/index.ts +1 -0
- package/src/components/epi/EpiCreateEventDialog/EpiCreateEventDialog.tsx +386 -0
- package/src/components/epi/EpiCreateEventDialog/EpiCreateEventDialogSuccessNotificationMessage.tsx +30 -0
- package/src/components/epi/EpiCreateEventDialog/index.ts +1 -0
- package/src/components/epi/EpiCurve/EpiCurve.tsx +525 -0
- package/src/components/epi/EpiCurve/index.ts +1 -0
- package/src/components/epi/EpiCustomTabPanel/EpiCustomTabPanel.tsx +27 -0
- package/src/components/epi/EpiCustomTabPanel/index.ts +1 -0
- package/src/components/epi/EpiDashboard/EpiDashboard.tsx +390 -0
- package/src/components/epi/EpiDashboard/EpiDashboardDownloadSidebarItem.tsx +154 -0
- package/src/components/epi/EpiDashboard/EpiDashboardGeneralSettingsForm.tsx +89 -0
- package/src/components/epi/EpiDashboard/EpiDashboardLayoutRenderer.tsx +248 -0
- package/src/components/epi/EpiDashboard/EpiDashboardLayoutSettingsForm.tsx +160 -0
- package/src/components/epi/EpiDashboard/EpiDashboardSettingsSidebarItem.tsx +93 -0
- package/src/components/epi/EpiDashboard/EpiDashboardTreeSettingsForm.tsx +90 -0
- package/src/components/epi/EpiDashboard/index.ts +1 -0
- package/src/components/epi/EpiDashboardStoreLoader/EpiDashboardStoreLoader.tsx +34 -0
- package/src/components/epi/EpiDashboardStoreLoader/EpiDashboardStoreLoaderContent.tsx +73 -0
- package/src/components/epi/EpiDashboardStoreLoader/index.ts +2 -0
- package/src/components/epi/EpiDashboardStoreLoader/withEpiDashboardStore.tsx +19 -0
- package/src/components/epi/EpiDataCollectionAccessInfo/EpiDataCollectionAccessInfo.tsx +88 -0
- package/src/components/epi/EpiDataCollectionAccessInfo/index.ts +1 -0
- package/src/components/epi/EpiFindSimilarCasesDialog/EpiFindSimilarCasesDialog.tsx +302 -0
- package/src/components/epi/EpiFindSimilarCasesDialog/index.ts +1 -0
- package/src/components/epi/EpiLegendaItem/EpiLegendaItem.tsx +106 -0
- package/src/components/epi/EpiLegendaItem/index.ts +1 -0
- package/src/components/epi/EpiLineList/EpiLineList.tsx +492 -0
- package/src/components/epi/EpiLineList/EpiLineListPrimaryMenu.tsx +189 -0
- package/src/components/epi/EpiLineList/EpiLineListSecondaryMenu.tsx +56 -0
- package/src/components/epi/EpiLineList/EpiLineListTitle.tsx +28 -0
- package/src/components/epi/EpiLineList/index.ts +1 -0
- package/src/components/epi/EpiLineList/useEpiLineListEmitDownloadOptions.tsx +102 -0
- package/src/components/epi/EpiMap/EpiMap.tsx +547 -0
- package/src/components/epi/EpiMap/index.ts +1 -0
- package/src/components/epi/EpiRemoveCasesFromEventDialog/EpiRemoveCasesFromEventDialog.tsx +169 -0
- package/src/components/epi/EpiRemoveCasesFromEventDialog/index.ts +1 -0
- package/src/components/epi/EpiRemoveFindSimilarCasesResultDialog/EpiRemoveFindSimilarCasesResultDialog.tsx +216 -0
- package/src/components/epi/EpiSequenceDownloadDialog/EpiSequenceDownloadDialog.tsx +151 -0
- package/src/components/epi/EpiSequenceDownloadDialog/index.ts +1 -0
- package/src/components/epi/EpiStratification/EpiStratification.tsx +241 -0
- package/src/components/epi/EpiStratification/index.ts +1 -0
- package/src/components/epi/EpiTree/EpiTree.tsx +906 -0
- package/src/components/epi/EpiTree/index.ts +1 -0
- package/src/components/epi/EpiTreeDescription/EpiTreeDescription.tsx +71 -0
- package/src/components/epi/EpiTreeDescription/index.ts +1 -0
- package/src/components/epi/EpiUpload/EpiUpload.tsx +107 -0
- package/src/components/epi/EpiUpload/EpiUploadCaseResultTable.tsx +383 -0
- package/src/components/epi/EpiUpload/EpiUploadCreateCases.tsx +266 -0
- package/src/components/epi/EpiUpload/EpiUploadMapColumns.tsx +261 -0
- package/src/components/epi/EpiUpload/EpiUploadMapSequences.tsx +332 -0
- package/src/components/epi/EpiUpload/EpiUploadNavigation.tsx +52 -0
- package/src/components/epi/EpiUpload/EpiUploadSelectFile.tsx +285 -0
- package/src/components/epi/EpiUpload/EpiUploadSelectSequenceFiles.tsx +375 -0
- package/src/components/epi/EpiUpload/EpiUploadValidate.tsx +199 -0
- package/src/components/epi/EpiUpload/EpiUploadValidateNavigation.tsx +34 -0
- package/src/components/epi/EpiUpload/index.ts +1 -0
- package/src/components/epi/EpiUserRightsDialog/EpiUserRightsDialog.tsx +101 -0
- package/src/components/epi/EpiUserRightsDialog/EpiUserRightsDialogCaseAccessPolicy.tsx +160 -0
- package/src/components/epi/EpiUserRightsDialog/index.ts +1 -0
- package/src/components/epi/EpiWarning/EpiWarning.tsx +39 -0
- package/src/components/epi/EpiWarning/index.ts +1 -0
- package/src/components/epi/EpiWidget/EpiWidget.tsx +255 -0
- package/src/components/epi/EpiWidget/index.ts +1 -0
- package/src/components/epi/EpiWidgetHeaderIconButton/EpiWidgetHeaderIconButton.tsx +40 -0
- package/src/components/epi/EpiWidgetHeaderIconButton/index.ts +1 -0
- package/src/components/epi/EpiWidgetMenu/EpiWidgetMenu.tsx +56 -0
- package/src/components/epi/EpiWidgetMenu/index.ts +1 -0
- package/src/components/epi/EpiWidgetUnavailable/EpiWidgetUnavailable.tsx +51 -0
- package/src/components/epi/EpiWidgetUnavailable/index.ts +1 -0
- package/src/components/filters/BooleanFilterField/BooleanFilterField.tsx +26 -0
- package/src/components/filters/BooleanFilterField/index.ts +1 -0
- package/src/components/filters/DateFilterField/DateFilterField.tsx +23 -0
- package/src/components/filters/DateFilterField/index.ts +1 -0
- package/src/components/filters/GeoFilterField/GeoFilterField.tsx +32 -0
- package/src/components/filters/GeoFilterField/index.ts +1 -0
- package/src/components/filters/MultiSelectFilterField/MultiSelectFilterField.tsx +31 -0
- package/src/components/filters/MultiSelectFilterField/index.ts +1 -0
- package/src/components/filters/NumberRangeFilterField/NumberRangeFilterField.tsx +20 -0
- package/src/components/filters/NumberRangeFilterField/index.ts +1 -0
- package/src/components/filters/TextFilterField/TextFilterField.tsx +18 -0
- package/src/components/filters/TextFilterField/index.ts +1 -0
- package/src/components/form/fields/Autocomplete/Autocomplete.tsx +270 -0
- package/src/components/form/fields/Autocomplete/index.ts +1 -0
- package/src/components/form/fields/CheckboxGroup/CheckboxGroup.tsx +192 -0
- package/src/components/form/fields/CheckboxGroup/index.ts +1 -0
- package/src/components/form/fields/DatePicker/DatePicker.tsx +167 -0
- package/src/components/form/fields/DatePicker/index.ts +1 -0
- package/src/components/form/fields/DateRangePicker/DateRangePicker.tsx +359 -0
- package/src/components/form/fields/DateRangePicker/index.ts +1 -0
- package/src/components/form/fields/NumberField/NumberField.tsx +277 -0
- package/src/components/form/fields/NumberField/index.ts +1 -0
- package/src/components/form/fields/NumberRangeInput/NumberRangeInput.tsx +297 -0
- package/src/components/form/fields/NumberRangeInput/index.ts +1 -0
- package/src/components/form/fields/RadioGroup/RadioGroup.tsx +130 -0
- package/src/components/form/fields/RadioGroup/index.ts +1 -0
- package/src/components/form/fields/RichTextEditor/RichTextEditor.tsx +321 -0
- package/src/components/form/fields/RichTextEditor/RichTextEditorContent.tsx +34 -0
- package/src/components/form/fields/RichTextEditor/index.ts +2 -0
- package/src/components/form/fields/RichTextEditor/useRichTextEditorExtensions.ts +174 -0
- package/src/components/form/fields/Select/Select.tsx +219 -0
- package/src/components/form/fields/Select/index.ts +1 -0
- package/src/components/form/fields/Switch/Switch.tsx +116 -0
- package/src/components/form/fields/Switch/index.ts +1 -0
- package/src/components/form/fields/TextField/TextField.tsx +170 -0
- package/src/components/form/fields/TextField/index.ts +1 -0
- package/src/components/form/fields/ToggleButtonGroup/ToggleButtonGroup.tsx +118 -0
- package/src/components/form/fields/ToggleButtonGroup/index.ts +1 -0
- package/src/components/form/fields/TransferList/TransferList.tsx +360 -0
- package/src/components/form/fields/TransferList/index.ts +1 -0
- package/src/components/form/fields/UploadButton/UploadButton.tsx +157 -0
- package/src/components/form/helpers/FormFieldHelperText/FormFieldHelperText.tsx +68 -0
- package/src/components/form/helpers/FormFieldHelperText/index.ts +1 -0
- package/src/components/form/helpers/FormFieldLoadingIndicator/FormFieldLoadingIndicator.tsx +22 -0
- package/src/components/form/helpers/FormFieldLoadingIndicator/index.ts +1 -0
- package/src/components/form/helpers/GenericForm/GenericForm.tsx +187 -0
- package/src/components/form/helpers/GenericForm/index.ts +1 -0
- package/src/components/ui/ApplicationBar/ApplicationBar.tsx +74 -0
- package/src/components/ui/ApplicationBar/ApplicationBarActions.tsx +124 -0
- package/src/components/ui/ApplicationBar/ApplicationBarActionsFeedbackItem.tsx +102 -0
- package/src/components/ui/ApplicationBar/ApplicationBarActionsInfotem.tsx +60 -0
- package/src/components/ui/ApplicationBar/ApplicationBarActionsNotificationsItem.tsx +82 -0
- package/src/components/ui/ApplicationBar/ApplicationBarActionsOrganizationSwitcherItem.tsx +58 -0
- package/src/components/ui/ApplicationBar/ApplicationBarActionsOutagesItem.tsx +75 -0
- package/src/components/ui/ApplicationBar/ApplicationBarActionsUserItem.tsx +60 -0
- package/src/components/ui/ApplicationBar/ApplicationBarNavigationMenu.tsx +159 -0
- package/src/components/ui/ApplicationBar/InfoMenu.tsx +120 -0
- package/src/components/ui/ApplicationBar/UserMenu.tsx +208 -0
- package/src/components/ui/ApplicationBar/UserOrganizationAdminMenuItem.tsx +69 -0
- package/src/components/ui/ApplicationBar/UserOwnOrganizationMenuItem.tsx +54 -0
- package/src/components/ui/ApplicationBar/index.ts +1 -0
- package/src/components/ui/ApplicationFooter/ApplicationFooter.tsx +121 -0
- package/src/components/ui/ApplicationFooter/ApplicationFooterLink.tsx +48 -0
- package/src/components/ui/ApplicationFooter/ApplicationFooterLinkSection.tsx +56 -0
- package/src/components/ui/ApplicationFooter/index.ts +1 -0
- package/src/components/ui/AuthenticationWrapper/AuthenticationWrapper.tsx +208 -0
- package/src/components/ui/AuthenticationWrapper/index.ts +1 -0
- package/src/components/ui/AuthorizationWrapper/AuthorizationWrapper.tsx +75 -0
- package/src/components/ui/AuthorizationWrapper/index.ts +1 -0
- package/src/components/ui/Breadcrumbs/Breadcrumbs.tsx +92 -0
- package/src/components/ui/Breadcrumbs/index.ts +1 -0
- package/src/components/ui/Confirmation/Confirmation.tsx +10 -0
- package/src/components/ui/Confirmation/ConfirmationRender.tsx +81 -0
- package/src/components/ui/Confirmation/index.ts +2 -0
- package/src/components/ui/ConsentDialog/ConsentDialog.tsx +57 -0
- package/src/components/ui/ConsentDialog/index.ts +1 -0
- package/src/components/ui/CopyToClipboardButton/CopyToClipboardButton.tsx +94 -0
- package/src/components/ui/CopyToClipboardButton/index.ts +1 -0
- package/src/components/ui/Dialog/Dialog.tsx +196 -0
- package/src/components/ui/Dialog/index.ts +1 -0
- package/src/components/ui/FileSelector/FileSelector.tsx +358 -0
- package/src/components/ui/FileSelector/index.ts +1 -0
- package/src/components/ui/GenericErrorMessage/GenericErrorMessage.tsx +168 -0
- package/src/components/ui/GenericErrorMessage/index.ts +1 -0
- package/src/components/ui/HomePageTrends/HomePageTrendCard.tsx +132 -0
- package/src/components/ui/HomePageTrends/HomePageTrends.tsx +312 -0
- package/src/components/ui/HomePageTrends/index.ts +1 -0
- package/src/components/ui/LicensesDialog/LicensesDialog.tsx +231 -0
- package/src/components/ui/LicensesDialog/index.ts +1 -0
- package/src/components/ui/LinearProgressWithLabel/LinearProgressWithLabel.tsx +31 -0
- package/src/components/ui/LinearProgressWithLabel/index.ts +1 -0
- package/src/components/ui/LoadingIndicator/LoadingIndicator.tsx +11 -0
- package/src/components/ui/LoadingIndicator/index.ts +1 -0
- package/src/components/ui/MyPermissionsDialog/MyPermissionsDialog.tsx +95 -0
- package/src/components/ui/MyPermissionsDialog/index.ts +1 -0
- package/src/components/ui/NavLink/NavLink.tsx +47 -0
- package/src/components/ui/NavLink/index.ts +1 -0
- package/src/components/ui/NestedMenu/IconMenuItem.tsx +64 -0
- package/src/components/ui/NestedMenu/NestedDropdown.tsx +133 -0
- package/src/components/ui/NestedMenu/NestedMenuItem.tsx +250 -0
- package/src/components/ui/NestedMenu/index.ts +4 -0
- package/src/components/ui/NestedMenu/nestedMenuItemsFromObject.tsx +98 -0
- package/src/components/ui/Notifications/NotificationItem.tsx +70 -0
- package/src/components/ui/Notifications/NotificationsDrawer.tsx +161 -0
- package/src/components/ui/Notifications/NotificationsStack.tsx +45 -0
- package/src/components/ui/Notifications/index.ts +2 -0
- package/src/components/ui/OrganizationSwitcherDialog/OrganizationSwitcherDialog.tsx +204 -0
- package/src/components/ui/OrganizationSwitcherDialog/index.ts +1 -0
- package/src/components/ui/OutageList/OutageItem.tsx +48 -0
- package/src/components/ui/OutageList/OutageList.tsx +54 -0
- package/src/components/ui/OutageList/OutageSection.tsx +39 -0
- package/src/components/ui/OutageList/index.ts +1 -0
- package/src/components/ui/OutagesDialog/OutagesDialog.tsx +71 -0
- package/src/components/ui/OutagesDialog/index.ts +1 -0
- package/src/components/ui/PageContainer/PageContainer.tsx +207 -0
- package/src/components/ui/PageContainer/index.ts +1 -0
- package/src/components/ui/PanelSeparator/PanelResizeHandle.tsx +67 -0
- package/src/components/ui/PanelSeparator/index.ts +1 -0
- package/src/components/ui/ResponseHandler/ResponseHandler.tsx +79 -0
- package/src/components/ui/ResponseHandler/index.ts +1 -0
- package/src/components/ui/Sidebar/SidebarItem.tsx +138 -0
- package/src/components/ui/Sidebar/SidebarMenu.tsx +33 -0
- package/src/components/ui/Sidebar/SidebarMenuItem.tsx +61 -0
- package/src/components/ui/Sidebar/index.ts +3 -0
- package/src/components/ui/SortableList/SortableList.tsx +172 -0
- package/src/components/ui/SortableList/SortableListItem.tsx +73 -0
- package/src/components/ui/SortableList/SortableListItemDragHandle.tsx +53 -0
- package/src/components/ui/SortableList/SortableOverlay.tsx +35 -0
- package/src/components/ui/SortableList/context/SortableListItemContext.tsx +17 -0
- package/src/components/ui/SortableList/context/SortableListItemContextProvider.tsx +19 -0
- package/src/components/ui/SortableList/context/useSortableListItemContext.tsx +5 -0
- package/src/components/ui/Spinner/Spinner.tsx +84 -0
- package/src/components/ui/Spinner/index.ts +1 -0
- package/src/components/ui/Stepper/Stepper.tsx +194 -0
- package/src/components/ui/Stepper/index.ts +2 -0
- package/src/components/ui/Stepper/stepperModel.ts +4 -0
- package/src/components/ui/Table/Table.tsx +812 -0
- package/src/components/ui/Table/TableActionsCell.tsx +81 -0
- package/src/components/ui/Table/TableCaption.tsx +33 -0
- package/src/components/ui/Table/TableCell.tsx +162 -0
- package/src/components/ui/Table/TableCellAsyncContent.tsx +28 -0
- package/src/components/ui/Table/TableCheckboxCell.tsx +65 -0
- package/src/components/ui/Table/TableCheckboxHeader.tsx +72 -0
- package/src/components/ui/Table/TableColumnsEditorDialog.tsx +241 -0
- package/src/components/ui/Table/TableFilter.tsx +31 -0
- package/src/components/ui/Table/TableFiltersSidebarItem.tsx +398 -0
- package/src/components/ui/Table/TableHeader.tsx +40 -0
- package/src/components/ui/Table/TableHeaderCell.tsx +434 -0
- package/src/components/ui/Table/TableHeaderFilter.tsx +104 -0
- package/src/components/ui/Table/TableMenu.tsx +26 -0
- package/src/components/ui/Table/TableReadableIndexCell.tsx +65 -0
- package/src/components/ui/Table/TableSidebarMenu.tsx +59 -0
- package/src/components/ui/Table/classNames.ts +7 -0
- package/src/components/ui/Table/index.ts +12 -0
- package/src/components/ui/UserFeedbackDialog/UserFeedbackDialog.tsx +168 -0
- package/src/components/ui/UserFeedbackDialog/index.ts +1 -0
- package/src/components/ui/UserInactivityConfirmation/UserInactivityConfirmation.tsx +59 -0
- package/src/components/ui/UserInactivityConfirmation/index.ts +1 -0
- package/src/components/ui/UsersEffectiveRightsDetailsDialog/UsersEffectiveRightsDetailsDialog.tsx +584 -0
- package/src/components/ui/UsersEffectiveRightsDetailsDialog/index.ts +1 -0
- package/src/context/caseAbac/CaseAbacContext.tsx +24 -0
- package/src/context/caseAbac/CaseAbacContextProvider.tsx +69 -0
- package/src/context/caseAbac/index.ts +3 -0
- package/src/context/caseAbac/useCaseAbacContext.tsx +6 -0
- package/src/context/caseTypeAbac/CaseTypeAbacContext.tsx +16 -0
- package/src/context/caseTypeAbac/CaseTypeAbacContextProvider.tsx +40 -0
- package/src/context/caseTypeAbac/index.ts +3 -0
- package/src/context/caseTypeAbac/useCaseTypeAbacContext.tsx +6 -0
- package/src/data/date.ts +8 -0
- package/src/data/queryDependencies.ts +166 -0
- package/src/dataHooks/useAssemblyProtocolsQuery/index.ts +1 -0
- package/src/dataHooks/useAssemblyProtocolsQuery/useAssemblyProtocolsQuery.ts +39 -0
- package/src/dataHooks/useCaseRightsQuery/index.ts +1 -0
- package/src/dataHooks/useCaseRightsQuery/useCaseRightsQuery.ts +21 -0
- package/src/dataHooks/useCaseSetCategoriesQuery/index.ts +1 -0
- package/src/dataHooks/useCaseSetCategoriesQuery/useCaseSetCategoriesQuery.ts +39 -0
- package/src/dataHooks/useCaseSetRightsQuery/index.ts +1 -0
- package/src/dataHooks/useCaseSetRightsQuery/useCaseSetRightsQuery.ts +17 -0
- package/src/dataHooks/useCaseSetStatsQuery/index.ts +1 -0
- package/src/dataHooks/useCaseSetStatsQuery/useCaseSetStatsQuery.ts +31 -0
- package/src/dataHooks/useCaseSetStatusesQuery/index.ts +1 -0
- package/src/dataHooks/useCaseSetStatusesQuery/useCaseSetStatusesQuery.ts +39 -0
- package/src/dataHooks/useCaseSetsQuery/index.ts +1 -0
- package/src/dataHooks/useCaseSetsQuery/useCaseSetsQuery.ts +41 -0
- package/src/dataHooks/useCaseTypeSetCategoriesQuery/index.ts +1 -0
- package/src/dataHooks/useCaseTypeSetCategoriesQuery/useCaseTypeSetCategoriesQuery.ts +41 -0
- package/src/dataHooks/useCaseTypeSetMembersQuery/index.ts +1 -0
- package/src/dataHooks/useCaseTypeSetMembersQuery/useCaseTypeSetMembersQuery.ts +17 -0
- package/src/dataHooks/useCaseTypeSetsQuery/index.ts +1 -0
- package/src/dataHooks/useCaseTypeSetsQuery/useCaseTypeSetsQuery.ts +58 -0
- package/src/dataHooks/useCaseTypeStatsQuery/index.ts +1 -0
- package/src/dataHooks/useCaseTypeStatsQuery/useCaseTypeStatsQuery.ts +20 -0
- package/src/dataHooks/useCaseTypesQuery/index.ts +1 -0
- package/src/dataHooks/useCaseTypesQuery/useCaseTypesQuery.ts +43 -0
- package/src/dataHooks/useColSetMembersQuery/index.ts +1 -0
- package/src/dataHooks/useColSetMembersQuery/useColSetMembersQuery.ts +17 -0
- package/src/dataHooks/useColSetsQuery/index.ts +1 -0
- package/src/dataHooks/useColSetsQuery/useColSetsQuery.ts +39 -0
- package/src/dataHooks/useColTypesQuery/index.ts +1 -0
- package/src/dataHooks/useColTypesQuery/useColTypesQuery.ts +51 -0
- package/src/dataHooks/useColsQuery/index.ts +1 -0
- package/src/dataHooks/useColsQuery/useColsQuery.ts +60 -0
- package/src/dataHooks/useConceptQuery/index.ts +1 -0
- package/src/dataHooks/useConceptQuery/useConceptQuery.ts +52 -0
- package/src/dataHooks/useConceptRelationTypeQuery/index.ts +1 -0
- package/src/dataHooks/useConceptRelationTypeQuery/useConceptRelationTypeQuery.ts +21 -0
- package/src/dataHooks/useConceptSetTypeQuery/index.ts +1 -0
- package/src/dataHooks/useConceptSetTypeQuery/useConceptSetTypeQuery.ts +27 -0
- package/src/dataHooks/useConceptSetsQuery/index.ts +1 -0
- package/src/dataHooks/useConceptSetsQuery/useConceptSetsQuery.ts +38 -0
- package/src/dataHooks/useDataCollectionSetMembersQuery/index.ts +1 -0
- package/src/dataHooks/useDataCollectionSetMembersQuery/useDataCollectionSetMembersQuery.ts +17 -0
- package/src/dataHooks/useDataCollectionsQuery/index.ts +1 -0
- package/src/dataHooks/useDataCollectionsQuery/useDataCollectionsQuery.ts +45 -0
- package/src/dataHooks/useDimTypesQuery/index.ts +1 -0
- package/src/dataHooks/useDimTypesQuery/useDimTypesQuery.ts +26 -0
- package/src/dataHooks/useDimsQuery/index.ts +1 -0
- package/src/dataHooks/useDimsQuery/useDimsQuery.ts +55 -0
- package/src/dataHooks/useDiseasesQuery/index.ts +1 -0
- package/src/dataHooks/useDiseasesQuery/useDiseasesQuery.ts +39 -0
- package/src/dataHooks/useEtiologicalAgentsQuery/index.ts +1 -0
- package/src/dataHooks/useEtiologicalAgentsQuery/useEtiologicalAgentsQuery.ts +39 -0
- package/src/dataHooks/useGeneticDistanceProtocolsQuery/index.ts +1 -0
- package/src/dataHooks/useGeneticDistanceProtocolsQuery/useGeneticDistanceProtocolsQuery.ts +29 -0
- package/src/dataHooks/useIdentifierIssuerOwnOrganizationQuery/index.ts +1 -0
- package/src/dataHooks/useIdentifierIssuerOwnOrganizationQuery/useIdentifierIssuerOwnOrganizationQuery.ts +34 -0
- package/src/dataHooks/useIdentifierIssuerQuery/index.ts +1 -0
- package/src/dataHooks/useIdentifierIssuerQuery/useIdentifierIssuerQuery.ts +42 -0
- package/src/dataHooks/useInviteUserConstraintsQuery/index.ts +1 -0
- package/src/dataHooks/useInviteUserConstraintsQuery/useInviteUserConstraintsQuery.ts +32 -0
- package/src/dataHooks/useOrganizationAccessCasePoliciesQuery/index.ts +1 -0
- package/src/dataHooks/useOrganizationAccessCasePoliciesQuery/useOrganizationAccessCasePoliciesQuery.ts +20 -0
- package/src/dataHooks/useOrganizationAdminPoliciesQuery/index.ts +1 -0
- package/src/dataHooks/useOrganizationAdminPoliciesQuery/useOrganizationAdminPoliciesQuery.ts +60 -0
- package/src/dataHooks/useOrganizationIdentifierIssuerLinksQuery/index.ts +1 -0
- package/src/dataHooks/useOrganizationIdentifierIssuerLinksQuery/useOrganizationIdentifierIssuerLinksQuery.ts +18 -0
- package/src/dataHooks/useOrganizationShareCasePoliciesQuery/index.ts +1 -0
- package/src/dataHooks/useOrganizationShareCasePoliciesQuery/useOrganizationShareCasePoliciesQuery.ts +18 -0
- package/src/dataHooks/useOrganizationsQuery/index.ts +1 -0
- package/src/dataHooks/useOrganizationsQuery/useOrganizationsQuery.ts +40 -0
- package/src/dataHooks/useRefColsQuery/index.ts +1 -0
- package/src/dataHooks/useRefColsQuery/useRefColsQuery.ts +39 -0
- package/src/dataHooks/useRefColsValidationRulesQuery/index.ts +1 -0
- package/src/dataHooks/useRefColsValidationRulesQuery/useRefColsValidationRulesQuery.ts +17 -0
- package/src/dataHooks/useRefDimsQuery/index.ts +1 -0
- package/src/dataHooks/useRefDimsQuery/useRefDimsQuery.ts +39 -0
- package/src/dataHooks/useRegionQuery/index.ts +1 -0
- package/src/dataHooks/useRegionQuery/useRegionQuery.ts +52 -0
- package/src/dataHooks/useRegionRelationTypeQuery/index.ts +1 -0
- package/src/dataHooks/useRegionRelationTypeQuery/useRegionRelationTypeQuery.ts +24 -0
- package/src/dataHooks/useRegionSetsQuery/index.ts +1 -0
- package/src/dataHooks/useRegionSetsQuery/useRegionSetsQuery.ts +39 -0
- package/src/dataHooks/useSequencingProtocolsQuery/index.ts +1 -0
- package/src/dataHooks/useSequencingProtocolsQuery/useSequencingProtocolsQuery.ts +39 -0
- package/src/dataHooks/useTreeAlgorithmCodesQuery/index.ts +1 -0
- package/src/dataHooks/useTreeAlgorithmCodesQuery/useTreeAlgorithmCodesQuery.ts +42 -0
- package/src/dataHooks/useUserAccessCasePoliciesQuery/index.ts +1 -0
- package/src/dataHooks/useUserAccessCasePoliciesQuery/useUserAccessCasePoliciesQuery.ts +18 -0
- package/src/dataHooks/useUserEffectiveRightsQuery/index.ts +1 -0
- package/src/dataHooks/useUserEffectiveRightsQuery/useUserEffectiveRightsQuery.ts +125 -0
- package/src/dataHooks/useUserShareCasePoliciesQuery/index.ts +1 -0
- package/src/dataHooks/useUserShareCasePoliciesQuery/useUserShareCasePoliciesQuery.ts +18 -0
- package/src/dataHooks/useUsersQuery/index.ts +1 -0
- package/src/dataHooks/useUsersQuery/useUsersQuery.ts +43 -0
- package/src/hoc/withDialog/index.ts +1 -0
- package/src/hoc/withDialog/withDialog.tsx +132 -0
- package/src/hoc/withPermissions/index.ts +1 -0
- package/src/hoc/withPermissions/withPermissions.tsx +34 -0
- package/src/hooks/useArray/index.ts +1 -0
- package/src/hooks/useArray/useArray.ts +5 -0
- package/src/hooks/useColumnsMenu/index.ts +1 -0
- package/src/hooks/useColumnsMenu/useColumnsMenu.tsx +152 -0
- package/src/hooks/useCreateMutation/index.ts +1 -0
- package/src/hooks/useCreateMutation/useCreateMutation.ts +103 -0
- package/src/hooks/useDeleteMutation/index.ts +1 -0
- package/src/hooks/useDeleteMutation/useDeleteMutation.ts +92 -0
- package/src/hooks/useDimensions/index.ts +1 -0
- package/src/hooks/useDimensions/useDimensions.ts +82 -0
- package/src/hooks/useEditMutation/index.ts +1 -0
- package/src/hooks/useEditMutation/useEditMutation.ts +112 -0
- package/src/hooks/useInitializeTableStore/index.ts +1 -0
- package/src/hooks/useInitializeTableStore/useInitializeTableStore.ts +41 -0
- package/src/hooks/useIsFormFieldRequiredFromSchema/index.ts +1 -0
- package/src/hooks/useIsFormFieldRequiredFromSchema/useIsFormFieldRequiredFromSchema.ts +32 -0
- package/src/hooks/useItemQuery/index.ts +1 -0
- package/src/hooks/useItemQuery/useItemQuery.ts +82 -0
- package/src/hooks/useOrganizationCasePolicyNameFactory/index.ts +1 -0
- package/src/hooks/useOrganizationCasePolicyNameFactory/useOrganizationCasePolicyNameFactory.ts +31 -0
- package/src/hooks/useQueryMemo/index.ts +1 -0
- package/src/hooks/useQueryMemo/useQueryMemo.ts +24 -0
- package/src/hooks/useScrollbarSize/index.ts +1 -0
- package/src/hooks/useScrollbarSize/useScrollbarSize.ts +23 -0
- package/src/hooks/useSubscribable/index.ts +1 -0
- package/src/hooks/useSubscribable/useSubscribable.ts +30 -0
- package/src/hooks/useUpdateBreadcrumb/index.ts +1 -0
- package/src/hooks/useUpdateBreadcrumb/useUpdateBreadcrumb.ts +21 -0
- package/src/hooks/useUpdateDocumentTitle/index.ts +1 -0
- package/src/hooks/useUpdateDocumentTitle/useUpdateDocumentTitle.ts +10 -0
- package/src/hooks/useUserCasePolicyNameFactory/index.ts +1 -0
- package/src/hooks/useUserCasePolicyNameFactory/useUserCasePolicyNameFactory.ts +37 -0
- package/src/index.ts +301 -0
- package/src/models/admin.ts +7 -0
- package/src/models/auth.ts +14 -0
- package/src/models/caseAccess.ts +21 -0
- package/src/models/config.ts +153 -0
- package/src/models/data.ts +11 -0
- package/src/models/dataHooks.ts +18 -0
- package/src/models/environment.ts +10 -0
- package/src/models/epi.ts +188 -0
- package/src/models/filter.ts +39 -0
- package/src/models/form.ts +74 -0
- package/src/models/generic.ts +4 -0
- package/src/models/nestedMenu.ts +21 -0
- package/src/models/notification.ts +12 -0
- package/src/models/outage.ts +7 -0
- package/src/models/query.ts +75 -0
- package/src/models/reactRouter.ts +36 -0
- package/src/models/table.ts +191 -0
- package/src/models/testId.ts +1 -0
- package/src/models/tree.ts +32 -0
- package/src/pages/AcceptInvitationPage/AcceptInvitationPage.tsx +96 -0
- package/src/pages/AcceptInvitationPage/index.ts +1 -0
- package/src/pages/AdminPage/AdminPage.tsx +164 -0
- package/src/pages/AdminPage/index.ts +1 -0
- package/src/pages/CaseSetStatusAdminPage/CaseSetStatusAdminPage.tsx +98 -0
- package/src/pages/CaseSetStatusAdminPage/index.ts +1 -0
- package/src/pages/CaseTypeSetCategoriesAdminPage/CaseTypeSetCategoriesAdminPage.tsx +108 -0
- package/src/pages/CaseTypeSetCategoriesAdminPage/index.ts +1 -0
- package/src/pages/CaseTypeSetsAdminPage/CaseTypeSetsAdminPage.tsx +200 -0
- package/src/pages/CaseTypeSetsAdminPage/index.ts +1 -0
- package/src/pages/CaseTypesAdminPage/CaseTypesAdminPage.tsx +204 -0
- package/src/pages/CaseTypesAdminPage/index.ts +1 -0
- package/src/pages/CasesDetailPage/CasesDetailPage.tsx +57 -0
- package/src/pages/CasesDetailPage/index.ts +1 -0
- package/src/pages/CasesPage/CasesPage.tsx +338 -0
- package/src/pages/CasesPage/index.ts +1 -0
- package/src/pages/ChooseIdentityProviderPage/ChooseIdentityProviderPage.tsx +166 -0
- package/src/pages/ChooseIdentityProviderPage/index.ts +1 -0
- package/src/pages/ColSetsAdminPage/ColSetsAdminPage.tsx +175 -0
- package/src/pages/ColSetsAdminPage/index.ts +1 -0
- package/src/pages/ColsAdminPage/ColsAdminPage.tsx +400 -0
- package/src/pages/ColsAdminPage/index.ts +1 -0
- package/src/pages/ConceptRelationsAdminPage/ConceptRelationsAdminPage.tsx +134 -0
- package/src/pages/ConceptRelationsAdminPage/index.ts +1 -0
- package/src/pages/ConceptSetsAdminPage/ConceptSetsAdminPage.tsx +167 -0
- package/src/pages/ConceptSetsAdminPage/index.ts +1 -0
- package/src/pages/ConceptsAdminPage/ConceptsAdminPage.tsx +138 -0
- package/src/pages/ConceptsAdminPage/index.ts +1 -0
- package/src/pages/CrudPage/CrudPage.tsx +646 -0
- package/src/pages/CrudPage/CrudPageDeleteDialog.tsx +85 -0
- package/src/pages/CrudPage/CrudPageEditDialog.tsx +165 -0
- package/src/pages/CrudPage/index.ts +1 -0
- package/src/pages/DataCollectionSetsAdminPage/DataCollectionSetsAdminPage.tsx +156 -0
- package/src/pages/DataCollectionSetsAdminPage/index.ts +1 -0
- package/src/pages/DataCollectionVisualizationPage/DataCollectionVisualizationPage.tsx +238 -0
- package/src/pages/DataCollectionVisualizationPage/index.ts +1 -0
- package/src/pages/DataCollectionsAdminPage/DataCollectionsAdminPage.tsx +96 -0
- package/src/pages/DataCollectionsAdminPage/index.ts +1 -0
- package/src/pages/DimsAdminPage/DimsAdminPage.tsx +208 -0
- package/src/pages/DimsAdminPage/index.ts +1 -0
- package/src/pages/DiseasesAdminPage/DiseasesAdminPage.tsx +97 -0
- package/src/pages/DiseasesAdminPage/index.ts +1 -0
- package/src/pages/ErrorPage/ErrorPage.tsx +25 -0
- package/src/pages/ErrorPage/index.ts +1 -0
- package/src/pages/EtiologicalAgentsAdminPage/EtiologicalAgentsAdminPage.tsx +96 -0
- package/src/pages/EtiologicalAgentsAdminPage/index.ts +1 -0
- package/src/pages/EtiologiesAdminPage/EtiologiesAdminPage.tsx +110 -0
- package/src/pages/EtiologiesAdminPage/index.ts +1 -0
- package/src/pages/EventsDetailPage/EventsDetailPage.tsx +67 -0
- package/src/pages/EventsDetailPage/index.ts +1 -0
- package/src/pages/EventsPage/EventsPage.tsx +262 -0
- package/src/pages/EventsPage/index.ts +1 -0
- package/src/pages/HomePage/HomePage.tsx +47 -0
- package/src/pages/HomePage/index.ts +1 -0
- package/src/pages/IdentifierIssuersAdminPage/IdentifierIssuersAdminPage.tsx +106 -0
- package/src/pages/IdentifierIssuersAdminPage/index.ts +1 -0
- package/src/pages/OrganizationAccessCasePoliciesAdminPage/OrganizationAccessCasePoliciesAdminPage.tsx +217 -0
- package/src/pages/OrganizationAccessCasePoliciesAdminPage/index.ts +1 -0
- package/src/pages/OrganizationAdminPoliciesAdminPage/OrganizationAdminPoliciesAdminPage.tsx +119 -0
- package/src/pages/OrganizationAdminPoliciesAdminPage/index.ts +1 -0
- package/src/pages/OrganizationContactsAdminPage/OrganizationContactsAdminPage.tsx +127 -0
- package/src/pages/OrganizationContactsAdminPage/index.ts +1 -0
- package/src/pages/OrganizationShareCasePoliciesAdminPage/OrganizationShareCasePoliciesAdminPage.tsx +183 -0
- package/src/pages/OrganizationShareCasePoliciesAdminPage/index.ts +1 -0
- package/src/pages/OrganizationSitesAdminPage/OrganizationSitesAdminPage.tsx +132 -0
- package/src/pages/OrganizationSitesAdminPage/index.ts +1 -0
- package/src/pages/OrganizationsAdminPage/OrganizationsAdminPage.tsx +188 -0
- package/src/pages/OrganizationsAdminPage/index.ts +1 -0
- package/src/pages/OutagesAdminPage/OutagesAdminPage.tsx +158 -0
- package/src/pages/OutagesAdminPage/index.ts +1 -0
- package/src/pages/PostLoginPage/PostLoginPage.tsx +39 -0
- package/src/pages/PostLoginPage/index.ts +1 -0
- package/src/pages/PostLogoutPage/PostLogoutPage.tsx +44 -0
- package/src/pages/PostLogoutPage/index.ts +1 -0
- package/src/pages/RefColsAdminPage/RefColsAdminPage.tsx +286 -0
- package/src/pages/RefColsAdminPage/index.ts +1 -0
- package/src/pages/RefDimsAdminPage/RefDimsAdminPage.tsx +152 -0
- package/src/pages/RefDimsAdminPage/index.ts +1 -0
- package/src/pages/RegionRelationsAdminPage/RegionRelationsAdminPage.tsx +132 -0
- package/src/pages/RegionRelationsAdminPage/index.ts +1 -0
- package/src/pages/RegionSetShapesAdminPage/RegionSetShapesAdminPage.tsx +132 -0
- package/src/pages/RegionSetShapesAdminPage/index.ts +1 -0
- package/src/pages/RegionSetsAdminPage/RegionSetsAdminPage.tsx +147 -0
- package/src/pages/RegionSetsAdminPage/index.ts +1 -0
- package/src/pages/RegionsAdminPage/RegionsAdminPage.tsx +150 -0
- package/src/pages/RegionsAdminPage/index.ts +1 -0
- package/src/pages/RouterErrorPage/RouterErrorPage.tsx +23 -0
- package/src/pages/RouterErrorPage/index.ts +1 -0
- package/src/pages/TrendsPage/TrendsPage.tsx +17 -0
- package/src/pages/TrendsPage/index.ts +1 -0
- package/src/pages/UploadPage/UploadPage.tsx +40 -0
- package/src/pages/UploadPage/index.ts +1 -0
- package/src/pages/UserAccessCasePoliciesAdminPage/UserAccessCasePoliciesAdminPage.tsx +209 -0
- package/src/pages/UserAccessCasePoliciesAdminPage/index.ts +1 -0
- package/src/pages/UserEffectiveRightsAdminPage/UserEffectiveRightsAdminPage.tsx +331 -0
- package/src/pages/UserEffectiveRightsAdminPage/index.ts +1 -0
- package/src/pages/UserEffectiveRightsTesterAdminPage/UserEffectiveRightsTesterAdminPage.tsx +283 -0
- package/src/pages/UserEffectiveRightsTesterAdminPage/index.ts +1 -0
- package/src/pages/UserInvitationsAdminPage/UserInvitationConsumeDialog.tsx +143 -0
- package/src/pages/UserInvitationsAdminPage/UserInvitationShareDialog.tsx +100 -0
- package/src/pages/UserInvitationsAdminPage/UserInvitationsAdminPage.tsx +218 -0
- package/src/pages/UserInvitationsAdminPage/index.ts +1 -0
- package/src/pages/UserShareCasePoliciesAdminPage/UserShareCasePoliciesAdminPage.tsx +183 -0
- package/src/pages/UserShareCasePoliciesAdminPage/index.ts +1 -0
- package/src/pages/UsersAdminPage/UsersAdminPage.tsx +240 -0
- package/src/pages/UsersAdminPage/index.ts +1 -0
- package/src/routes/adminRoutes.tsx +801 -0
- package/src/routes/index.ts +2 -0
- package/src/routes/routes.tsx +235 -0
- package/src/setup/index.ts +1 -0
- package/src/setup/setup.ts +5 -0
- package/src/setup/yup.ts +203 -0
- package/src/stores/epiDashboardStore/epiDashboardStore.ts +750 -0
- package/src/stores/epiDashboardStore/epiDashboardStoreContext.tsx +6 -0
- package/src/stores/epiDashboardStore/index.ts +2 -0
- package/src/stores/epiUploadStore/epiUploadStore.ts +351 -0
- package/src/stores/epiUploadStore/epiUploadStoreContext.tsx +6 -0
- package/src/stores/epiUploadStore/index.ts +2 -0
- package/src/stores/oidcStore/index.ts +1 -0
- package/src/stores/oidcStore/oidcStore.ts +43 -0
- package/src/stores/outagesStore/index.ts +1 -0
- package/src/stores/outagesStore/outagesStore.ts +31 -0
- package/src/stores/tableStore/TableStoreContext.tsx +6 -0
- package/src/stores/tableStore/TableStoreContextProvider.tsx +20 -0
- package/src/stores/tableStore/index.ts +4 -0
- package/src/stores/tableStore/tableStore.ts +547 -0
- package/src/stores/tableStore/useTableStoreContext.tsx +7 -0
- package/src/stores/userProfileStore/index.ts +1 -0
- package/src/stores/userProfileStore/userProfileStore.ts +112 -0
- package/src/test/integration/lib/render.tsx +33 -0
- package/src/test/integration/tests/integration-example/HelloWorld.test.tsx +14 -0
- package/src/test/integration/tests/integration-example/HelloWorld.tsx +9 -0
- package/src/test/setup-browser.ts +3 -0
- package/src/test/setup-jsdom.ts +6 -0
- package/src/test/setup.ts +9 -0
- package/src/utils/AbacUtil/AbacUtil.ts +21 -0
- package/src/utils/AbacUtil/index.ts +1 -0
- package/src/utils/AxiosUtil/AxiosUtil.test.ts +66 -0
- package/src/utils/AxiosUtil/AxiosUtil.ts +47 -0
- package/src/utils/AxiosUtil/index.ts +1 -0
- package/src/utils/CaseSelectionUtil/CaseSelectionUtil.ts +32 -0
- package/src/utils/CaseSelectionUtil/index.ts +1 -0
- package/src/utils/CaseSetUtil/CaseSetUtil.ts +13 -0
- package/src/utils/CaseSetUtil/index.ts +1 -0
- package/src/utils/CaseTypeUtil/CaseTypeUtil.ts +178 -0
- package/src/utils/CaseTypeUtil/index.ts +1 -0
- package/src/utils/CaseUtil/CaseUtil.ts +401 -0
- package/src/utils/CaseUtil/index.ts +1 -0
- package/src/utils/DashboardUtil/DashboardUtil.ts +46 -0
- package/src/utils/DashboardUtil/index.ts +1 -0
- package/src/utils/DataHookUtil/DataHookUtil.ts +137 -0
- package/src/utils/DataHookUtil/index.ts +1 -0
- package/src/utils/DataSetUtil/DataSetUtil.ts +70 -0
- package/src/utils/DataSetUtil/index.ts +1 -0
- package/src/utils/DataUtil/DataUtil.ts +84 -0
- package/src/utils/DataUtil/index.ts +1 -0
- package/src/utils/DownloadUtil/DownloadUtil.ts +237 -0
- package/src/utils/DownloadUtil/index.ts +1 -0
- package/src/utils/EffectiveRightsUtil/EffectiveRightsUtil.ts +142 -0
- package/src/utils/EffectiveRightsUtil/index.ts +1 -0
- package/src/utils/EpiCurveUtil/EpiCurveUtil.ts +180 -0
- package/src/utils/EpiCurveUtil/index.ts +1 -0
- package/src/utils/EpiFilterUtil/EpiFilterUtil.ts +232 -0
- package/src/utils/EpiFilterUtil/index.ts +1 -0
- package/src/utils/EpiLineListUtil/EpiLineListUtil.ts +15 -0
- package/src/utils/EpiLineListUtil/index.ts +1 -0
- package/src/utils/EpiMapUtil/EpiMapUtil.test.ts +54 -0
- package/src/utils/EpiMapUtil/EpiMapUtil.ts +80 -0
- package/src/utils/EpiMapUtil/index.ts +1 -0
- package/src/utils/EpiTreeUtil/EpiTreeUtil.test.ts +2467 -0
- package/src/utils/EpiTreeUtil/EpiTreeUtil.ts +1055 -0
- package/src/utils/EpiTreeUtil/index.ts +1 -0
- package/src/utils/EpiUploadUtil/EpiUploadUtil.ts +857 -0
- package/src/utils/EpiUploadUtil/index.ts +1 -0
- package/src/utils/FileUtil/FileUtil.ts +22 -0
- package/src/utils/FileUtil/index.ts +1 -0
- package/src/utils/FormUtil/FormUtil.test.ts +36 -0
- package/src/utils/FormUtil/FormUtil.ts +63 -0
- package/src/utils/FormUtil/index.ts +1 -0
- package/src/utils/MenuDataUtil/MenuDataUtil.ts +54 -0
- package/src/utils/MenuDataUtil/index.ts +1 -0
- package/src/utils/NewickUtil/NewickUtil.test.ts +187 -0
- package/src/utils/NewickUtil/NewickUtil.ts +69 -0
- package/src/utils/NewickUtil/index.ts +1 -0
- package/src/utils/NotificationUtil/NotificationUtil.ts +28 -0
- package/src/utils/NotificationUtil/index.ts +1 -0
- package/src/utils/NumberUtil/NumberUtil.test.ts +113 -0
- package/src/utils/NumberUtil/NumberUtil.ts +67 -0
- package/src/utils/NumberUtil/index.ts +1 -0
- package/src/utils/ObjectUtil/ObjectUtil.test.ts +43 -0
- package/src/utils/ObjectUtil/ObjectUtil.ts +28 -0
- package/src/utils/ObjectUtil/index.ts +1 -0
- package/src/utils/OutageUtil/OutageUtil.test.ts +108 -0
- package/src/utils/OutageUtil/OutageUtil.ts +81 -0
- package/src/utils/OutageUtil/index.ts +1 -0
- package/src/utils/QueryUtil/QueryUtil.test.ts +42 -0
- package/src/utils/QueryUtil/QueryUtil.ts +105 -0
- package/src/utils/QueryUtil/index.ts +1 -0
- package/src/utils/StringUtil/StringUtil.test.ts +61 -0
- package/src/utils/StringUtil/StringUtil.ts +91 -0
- package/src/utils/StringUtil/index.ts +1 -0
- package/src/utils/TableUtil/TableUtil.ts +665 -0
- package/src/utils/TableUtil/index.ts +1 -0
- package/src/utils/TestIdUtil/TestIdUtil.test.ts +12 -0
- package/src/utils/TestIdUtil/TestIdUtil.ts +13 -0
- package/src/utils/TestIdUtil/index.ts +1 -0
- package/src/utils/TimeUtil/TimeUtil.ts +38 -0
- package/src/utils/TimeUtil/index.ts +1 -0
- package/src/utils/UserManagerUtil/UserManagerUtil.test.ts +41 -0
- package/src/utils/UserManagerUtil/UserManagerUtil.ts +39 -0
- package/src/utils/UserManagerUtil/index.ts +1 -0
- package/src/utils/ValidationUtil/ValidationUtil.test.ts +61 -0
- package/src/utils/ValidationUtil/ValidationUtil.ts +56 -0
- package/src/utils/ValidationUtil/index.ts +1 -0
- package/dist/environment.d.ts +0 -54
- package/dist/index.d.ts +0 -16074
- /package/{dist → src/@types}/mui.d.ts +0 -0
- /package/{dist → src/@types}/ui.d.ts +0 -0
- /package/{dist → src/@types}/vite-env.d.ts +0 -0
- /package/{dist → src/@types}/yup.d.ts +0 -0
- /package/{dist → src}/locale/en.json +0 -0
- /package/{dist → src}/locale/nl.json +0 -0
package/src/api/base.ts
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/**
|
|
3
|
+
* Gen-EpiX casedb
|
|
4
|
+
* The casedb app manages data of cases of a disease.
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 7.1.1
|
|
7
|
+
* Contact: ids-bioinformatics@rivm.nl
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
import { Configuration } from './configuration';
|
|
16
|
+
// Some imports not used depending on template conditions
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig, InternalAxiosRequestConfig, AxiosResponse } from 'axios';
|
|
19
|
+
import globalAxios from 'axios';
|
|
20
|
+
|
|
21
|
+
export const BASE_PATH = "";
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
*/
|
|
27
|
+
export const COLLECTION_FORMATS = {
|
|
28
|
+
csv: ",",
|
|
29
|
+
ssv: " ",
|
|
30
|
+
tsv: "\t",
|
|
31
|
+
pipes: "|",
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @export
|
|
37
|
+
* @interface RequestArgs
|
|
38
|
+
*/
|
|
39
|
+
export interface RequestArgs {
|
|
40
|
+
url: string;
|
|
41
|
+
options: RawAxiosRequestConfig;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @export
|
|
47
|
+
* @class BaseAPI
|
|
48
|
+
*/
|
|
49
|
+
export class BaseAPI {
|
|
50
|
+
public static defaultRequestTimeout: number;
|
|
51
|
+
public static baseUrl: string;
|
|
52
|
+
public static onRequest: Array<(request: InternalAxiosRequestConfig) => InternalAxiosRequestConfig<unknown>> = [];
|
|
53
|
+
public static onResponseFulfilled: Array<(response: AxiosResponse) => AxiosResponse> = [];
|
|
54
|
+
public static onResponseRejected: Array<(error: unknown) => void> = []; public static accessToken: string;
|
|
55
|
+
|
|
56
|
+
protected configuration = new Configuration();
|
|
57
|
+
protected axios: AxiosInstance;
|
|
58
|
+
|
|
59
|
+
public constructor() {
|
|
60
|
+
this.axios = globalAxios.create();
|
|
61
|
+
this.axios.interceptors.request.use(request => {
|
|
62
|
+
if (BaseAPI.onRequest?.length) {
|
|
63
|
+
return BaseAPI.onRequest.reduce((prev, curr) => {
|
|
64
|
+
return curr(prev);
|
|
65
|
+
}, request);
|
|
66
|
+
}
|
|
67
|
+
return request;
|
|
68
|
+
});
|
|
69
|
+
this.axios.interceptors.response.use(response => {
|
|
70
|
+
if (BaseAPI.onResponseFulfilled?.length) {
|
|
71
|
+
BaseAPI.onResponseFulfilled.reduce((prev, curr) => {
|
|
72
|
+
return curr(prev);
|
|
73
|
+
}, response)
|
|
74
|
+
}
|
|
75
|
+
return response;
|
|
76
|
+
}, (err: unknown) => {
|
|
77
|
+
if (BaseAPI.onResponseRejected?.length) {
|
|
78
|
+
BaseAPI.onResponseRejected.forEach(cb => cb(err));
|
|
79
|
+
}
|
|
80
|
+
return err;
|
|
81
|
+
});
|
|
82
|
+
}
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @export
|
|
89
|
+
* @class RequiredError
|
|
90
|
+
* @extends {Error}
|
|
91
|
+
*/
|
|
92
|
+
export class RequiredError extends Error {
|
|
93
|
+
constructor(public field: string, msg?: string) {
|
|
94
|
+
super(msg);
|
|
95
|
+
this.name = "RequiredError"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
interface ServerMap {
|
|
100
|
+
[key: string]: {
|
|
101
|
+
url: string,
|
|
102
|
+
description: string,
|
|
103
|
+
}[];
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
*
|
|
108
|
+
* @export
|
|
109
|
+
*/
|
|
110
|
+
export const operationServerMap: ServerMap = {
|
|
111
|
+
}
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
/**
|
|
4
|
+
* Gen-EpiX casedb
|
|
5
|
+
* The casedb app manages data of cases of a disease.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 7.1.1
|
|
8
|
+
* Contact: ids-bioinformatics@rivm.nl
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import type { Configuration } from "./configuration";
|
|
17
|
+
import type { RequestArgs } from "./base";
|
|
18
|
+
import { type AxiosInstance, type AxiosResponse, type AxiosRequestConfig, isAxiosError } from 'axios';
|
|
19
|
+
import { BaseAPI, RequiredError } from "./base";
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @export
|
|
24
|
+
*/
|
|
25
|
+
export const DUMMY_BASE_URL = 'https://example.com'
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @throws {RequiredError}
|
|
30
|
+
* @export
|
|
31
|
+
*/
|
|
32
|
+
export const assertParamExists = function (functionName: string, paramName: string, paramValue: unknown) {
|
|
33
|
+
if (paramValue === null || paramValue === undefined) {
|
|
34
|
+
throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @export
|
|
41
|
+
*/
|
|
42
|
+
export const setApiKeyToObject = async function (object: any, keyParamName: string, configuration?: Configuration) {
|
|
43
|
+
if (configuration && configuration.apiKey) {
|
|
44
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
45
|
+
? await configuration.apiKey(keyParamName)
|
|
46
|
+
: await configuration.apiKey;
|
|
47
|
+
object[keyParamName] = localVarApiKeyValue;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @export
|
|
54
|
+
*/
|
|
55
|
+
export const setBasicAuthToObject = function (object: any, configuration?: Configuration) {
|
|
56
|
+
if (configuration && (configuration.username || configuration.password)) {
|
|
57
|
+
object["auth"] = { username: configuration.username, password: configuration.password };
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @export
|
|
64
|
+
*/
|
|
65
|
+
export const setBearerAuthToObject = async function (object: any, configuration?: Configuration) {
|
|
66
|
+
if (configuration && configuration.accessToken) {
|
|
67
|
+
const accessToken = typeof configuration.accessToken === 'function'
|
|
68
|
+
? await configuration.accessToken()
|
|
69
|
+
: await configuration.accessToken;
|
|
70
|
+
object["Authorization"] = "Bearer " + accessToken;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @export
|
|
77
|
+
*/
|
|
78
|
+
export const setOAuthToObject = async function (object: any, name: string, scopes: string[], configuration?: Configuration) {
|
|
79
|
+
if (configuration && configuration.accessToken) {
|
|
80
|
+
const localVarAccessTokenValue = typeof configuration.accessToken === 'function'
|
|
81
|
+
? await configuration.accessToken(name, scopes)
|
|
82
|
+
: await configuration.accessToken;
|
|
83
|
+
object["Authorization"] = "Bearer " + localVarAccessTokenValue;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
function setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: any, key: string = ""): void {
|
|
88
|
+
if (parameter == null) return;
|
|
89
|
+
if (typeof parameter === "object") {
|
|
90
|
+
if (Array.isArray(parameter)) {
|
|
91
|
+
(parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));
|
|
92
|
+
}
|
|
93
|
+
else {
|
|
94
|
+
Object.keys(parameter).forEach(currentKey =>
|
|
95
|
+
setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)
|
|
96
|
+
);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
else {
|
|
100
|
+
if (urlSearchParams.has(key)) {
|
|
101
|
+
urlSearchParams.append(key, parameter);
|
|
102
|
+
}
|
|
103
|
+
else {
|
|
104
|
+
urlSearchParams.set(key, parameter);
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
*
|
|
111
|
+
* @export
|
|
112
|
+
*/
|
|
113
|
+
export const setSearchParams = function (url: URL, ...objects: any[]) {
|
|
114
|
+
const searchParams = new URLSearchParams(url.search);
|
|
115
|
+
setFlattenedQueryParams(searchParams, objects);
|
|
116
|
+
url.search = searchParams.toString();
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @export
|
|
122
|
+
*/
|
|
123
|
+
export const serializeDataIfNeeded = function (value: any, requestOptions: any, configuration?: Configuration) {
|
|
124
|
+
const nonString = typeof value !== 'string';
|
|
125
|
+
const needsSerialization = nonString && configuration && configuration.isJsonMime
|
|
126
|
+
? configuration.isJsonMime(requestOptions.headers['Content-Type'])
|
|
127
|
+
: nonString;
|
|
128
|
+
return needsSerialization
|
|
129
|
+
? JSON.stringify(value !== undefined ? value : {})
|
|
130
|
+
: (value || "");
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
*
|
|
135
|
+
* @export
|
|
136
|
+
*/
|
|
137
|
+
export const toPathString = function (url: URL) {
|
|
138
|
+
return url.pathname + url.search + url.hash
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
*
|
|
143
|
+
* @export
|
|
144
|
+
*/
|
|
145
|
+
export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, _configuration?: Configuration) {
|
|
146
|
+
return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios) => {
|
|
147
|
+
|
|
148
|
+
const axiosRequestArgs: AxiosRequestConfig = {
|
|
149
|
+
...axiosArgs.options,
|
|
150
|
+
url: axiosArgs.url,
|
|
151
|
+
timeout: BaseAPI.defaultRequestTimeout,
|
|
152
|
+
baseURL: BaseAPI.baseUrl,
|
|
153
|
+
headers: {
|
|
154
|
+
...(axiosArgs.options.headers || {}),
|
|
155
|
+
},
|
|
156
|
+
validateStatus: (code) => code >= 200 && code < 300,
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
return axios.request<T, R>(axiosRequestArgs).then((res) => {
|
|
161
|
+
if (isAxiosError(res)) {
|
|
162
|
+
throw res;
|
|
163
|
+
}
|
|
164
|
+
return res;
|
|
165
|
+
});
|
|
166
|
+
|
|
167
|
+
};
|
|
168
|
+
}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
/**
|
|
4
|
+
* Gen-EpiX casedb
|
|
5
|
+
* The casedb app manages data of cases of a disease.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 7.1.1
|
|
8
|
+
* Contact: ids-bioinformatics@rivm.nl
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
export interface ConfigurationParameters {
|
|
17
|
+
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
18
|
+
username?: string;
|
|
19
|
+
defaultRequestTimeout?: number;
|
|
20
|
+
password?: string;
|
|
21
|
+
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
22
|
+
baseUrl?: string;
|
|
23
|
+
serverIndex?: number;
|
|
24
|
+
baseOptions?: any;
|
|
25
|
+
formDataCtor?: new () => any;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export class Configuration {
|
|
29
|
+
/**
|
|
30
|
+
* parameter for apiKey security
|
|
31
|
+
* @param name security name
|
|
32
|
+
* @memberof Configuration
|
|
33
|
+
*/
|
|
34
|
+
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
35
|
+
/**
|
|
36
|
+
* parameter for basic security
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof Configuration
|
|
40
|
+
*/
|
|
41
|
+
username?: string;
|
|
42
|
+
defaultRequestTimeout?: number;
|
|
43
|
+
/**
|
|
44
|
+
* parameter for basic security
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof Configuration
|
|
48
|
+
*/
|
|
49
|
+
password?: string;
|
|
50
|
+
/**
|
|
51
|
+
* parameter for oauth2 security
|
|
52
|
+
* @param name security name
|
|
53
|
+
* @param scopes oauth2 scope
|
|
54
|
+
* @memberof Configuration
|
|
55
|
+
*/
|
|
56
|
+
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
57
|
+
/**
|
|
58
|
+
* override base path
|
|
59
|
+
*
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof Configuration
|
|
62
|
+
*/
|
|
63
|
+
baseUrl?: string;
|
|
64
|
+
/**
|
|
65
|
+
* override server index
|
|
66
|
+
*
|
|
67
|
+
* @type {number}
|
|
68
|
+
* @memberof Configuration
|
|
69
|
+
*/
|
|
70
|
+
serverIndex?: number;
|
|
71
|
+
/**
|
|
72
|
+
* base options for axios calls
|
|
73
|
+
*
|
|
74
|
+
* @type {any}
|
|
75
|
+
* @memberof Configuration
|
|
76
|
+
*/
|
|
77
|
+
baseOptions?: any;
|
|
78
|
+
/**
|
|
79
|
+
* The FormData constructor that will be used to create multipart form data
|
|
80
|
+
* requests. You can inject this here so that execution environments that
|
|
81
|
+
* do not support the FormData class can still run the generated client.
|
|
82
|
+
*
|
|
83
|
+
* @type {new () => FormData}
|
|
84
|
+
*/
|
|
85
|
+
formDataCtor?: new () => any;
|
|
86
|
+
|
|
87
|
+
constructor(param: ConfigurationParameters = {}) {
|
|
88
|
+
this.apiKey = param.apiKey;
|
|
89
|
+
this.username = param.username;
|
|
90
|
+
this.password = param.password;
|
|
91
|
+
this.accessToken = param.accessToken;
|
|
92
|
+
this.baseUrl = param.baseUrl;
|
|
93
|
+
this.serverIndex = param.serverIndex;
|
|
94
|
+
this.baseOptions = {
|
|
95
|
+
...param.baseOptions,
|
|
96
|
+
headers: {
|
|
97
|
+
...param.baseOptions?.headers,
|
|
98
|
+
},
|
|
99
|
+
};
|
|
100
|
+
this.formDataCtor = param.formDataCtor;
|
|
101
|
+
this.defaultRequestTimeout = param.defaultRequestTimeout;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Check if the given MIME is a JSON MIME.
|
|
106
|
+
* JSON MIME examples:
|
|
107
|
+
* application/json
|
|
108
|
+
* application/json; charset=UTF8
|
|
109
|
+
* APPLICATION/JSON
|
|
110
|
+
* application/vnd.company+json
|
|
111
|
+
* @param mime - MIME (Multipurpose Internet Mail Extensions)
|
|
112
|
+
* @return True if the given MIME is JSON, false otherwise.
|
|
113
|
+
*/
|
|
114
|
+
public isJsonMime(mime: string): boolean {
|
|
115
|
+
const jsonMime: RegExp = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i');
|
|
116
|
+
return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');
|
|
117
|
+
}
|
|
118
|
+
}
|
package/src/api/index.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Gen-EpiX casedb
|
|
5
|
+
* The casedb app manages data of cases of a disease.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 7.1.1
|
|
8
|
+
* Contact: ids-bioinformatics@rivm.nl
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
export * from "./api";
|
|
17
|
+
export * from "./configuration";
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
export * from "./base";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2c-.5 0-1 .19-1.41.59l-3.3 3.29l4.71 4.7l4.71-4.7l-3.3-3.29C13 2.19 12.5 2 12 2M5.88 7.29l-3.29 3.3c-.79.78-.79 2.04 0 2.82l3.29 3.3l4.7-4.71zm12.24 0L13.42 12l4.7 4.71l3.29-3.3c.79-.78.79-2.04 0-2.82zM12 13.42l-4.71 4.7l3.3 3.29c.78.79 2.04.79 2.82 0l3.3-3.29z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M4 2h2v2c0 1.44.68 2.61 1.88 3.78c.86.83 2.01 1.63 3.21 2.42l-1.83 1.19C8.27 10.72 7.31 10 6.5 9.21C5.07 7.82 4 6.1 4 4zm14 0h2v2c0 2.1-1.07 3.82-2.5 5.21c-1.41 1.38-3.21 2.52-4.96 3.63c-1.75 1.12-3.45 2.21-4.66 3.38C6.68 17.39 6 18.56 6 20v2H4v-2c0-2.1 1.07-3.82 2.5-5.21c1.41-1.38 3.21-2.52 4.96-3.63c1.75-1.12 3.45-2.21 4.66-3.38C17.32 6.61 18 5.44 18 4zm-3.26 10.61c.99.67 1.95 1.39 2.76 2.18C18.93 16.18 20 17.9 20 20v2h-2v-2c0-1.44-.68-2.61-1.88-3.78c-.86-.83-2.01-1.63-3.21-2.42zM7 3h10v1l-.06.5H7.06L7 4zm.68 3h8.64c-.24.34-.52.69-.9 1.06l-.51.44H9.07l-.49-.44c-.38-.37-.66-.72-.9-1.06m1.41 10.5h5.84l.49.44c.38.37.66.72.9 1.06H7.68c.24-.34.52-.69.9-1.06zm-2.03 3h9.88l.06.5v1H7v-1z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M19.82 14A1.746 1.746 0 0 0 23 13a1.746 1.746 0 0 0-3.18-1H19c0-1.57-.5-3-1.4-4.19l1.34-1.34c.56.1 1.13-.06 1.56-.47c.67-.69.67-1.8 0-2.5c-.69-.67-1.8-.67-2.5 0c-.41.43-.57 1-.47 1.56L16.19 6.4c-.92-.69-2-1.15-3.19-1.32v-1.4A1.746 1.746 0 0 0 12 .5a1.746 1.746 0 0 0-1 3.18v1.4c-.9.13-1.74.42-2.5.86L7.39 4.35c.19-.52.14-1.12-.2-1.6a1.75 1.75 0 0 0-2.44-.43c-.79.55-.99 1.64-.43 2.43c.34.49.88.75 1.43.75l1.18 1.68c-.43.43-.77.91-1.06 1.44A1.76 1.76 0 0 0 4 9c-.67.7-.67 1.8 0 2.5c.29.27.64.43 1 .5c0 .54.07 1.06.18 1.56l-1.31.35c-.42-.35-1-.5-1.58-.35a1.75 1.75 0 1 0 .92 3.38c.57-.16 1-.58 1.18-1.1l1.51-.41c.45.79 1.05 1.49 1.75 2.07l-1.1 2c-.55.08-1.05.39-1.34.92a1.749 1.749 0 1 0 3.08 1.66c.28-.52.27-1.12.02-1.61l1.07-1.97c.81.32 1.69.5 2.62.5h.18c-.13.26-.18.56-.18.88c.08.97.92 1.69 1.88 1.62s1.69-.92 1.62-1.88c-.04-.5-.29-.94-.65-1.23c.47-.21.92-.48 1.34-.79l2.34 2.34c-.1.56.06 1.13.47 1.56c.7.67 1.8.67 2.5 0s.67-1.8 0-2.5c-.43-.41-1-.57-1.56-.47l-2.34-2.34c.49-.65.87-1.39 1.11-2.19zm-9.32-2c-.83 0-1.5-.67-1.5-1.5S9.67 9 10.5 9s1.5.67 1.5 1.5s-.67 1.5-1.5 1.5m3.5 3c-.55 0-1-.45-1-1s.45-1 1-1s1 .45 1 1s-.45 1-1 1"/></svg>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
4
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
6
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
7
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
8
|
+
y="0px"
|
|
9
|
+
xml:space="preserve"
|
|
10
|
+
x="0px"
|
|
11
|
+
width="50"
|
|
12
|
+
viewBox="0 0 50 100"
|
|
13
|
+
version="1.1"
|
|
14
|
+
id="Laag_1"
|
|
15
|
+
height="100"><metadata
|
|
16
|
+
id="metadata15"><rdf:RDF><cc:Work
|
|
17
|
+
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
|
18
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
|
19
|
+
id="defs13" />
|
|
20
|
+
<style
|
|
21
|
+
id="style2"
|
|
22
|
+
type="text/css">
|
|
23
|
+
.st0{fill:#154273;}
|
|
24
|
+
.st1{fill:#FFFFFF;}
|
|
25
|
+
</style>
|
|
26
|
+
<g
|
|
27
|
+
id="g6">
|
|
28
|
+
<rect
|
|
29
|
+
style="fill:#154273"
|
|
30
|
+
y="0"
|
|
31
|
+
x="0"
|
|
32
|
+
id="rect4"
|
|
33
|
+
width="50"
|
|
34
|
+
height="100"
|
|
35
|
+
class="st0" />
|
|
36
|
+
</g>
|
|
37
|
+
<path
|
|
38
|
+
style="fill:#ffffff"
|
|
39
|
+
id="path8"
|
|
40
|
+
d="m 25.9,77.36 h -0.87 v -2.41 h 0.87 z m 3.93,-10.64 h -0.87 v -2.41 h 0.87 z M 13.71,62.56 c -0.07,0 -0.52,0 -0.52,0.09 0,0.09 0.21,0.05 0.52,0.1 0.7,0.12 0.97,0.47 1.46,0.47 0.44,0 0.9,-0.3 0.72,-0.94 -0.03,-0.11 -0.09,-0.08 -0.11,-0.01 -0.07,0.29 -0.42,0.45 -0.79,0.45 -0.46,0 -0.55,-0.16 -1.28,-0.16 z M 8.92,64.97 C 9,65.08 9.82,66.14 8.56,66.55 8.5,66.57 8.49,66.62 8.57,66.66 9.5,67.05 9.95,66.33 9.95,66.33 10.42,67.41 9.7,68 9.7,68 c 0.1,0.19 0.55,0.52 1.22,0.67 0.26,-0.14 0.62,-0.4 0.77,-0.8 0,0 0.18,0.47 0.02,0.92 1.9,0.17 2.57,-1.35 4.04,-1.07 0.04,0.01 0.06,-0.02 0.06,-0.06 0,-0.94 -0.57,-2.65 -2.39,-3 -1.81,-0.35 -1.32,-1.09 -1.32,-1.09 0.76,-0.03 1.2,0.3 1.2,0.3 0.14,-0.23 -0.06,-0.47 -0.06,-0.47 0.07,-0.09 0.11,-0.4 0.11,-0.4 -0.86,0 -1.08,-0.19 -1.08,-0.19 -0.13,-0.51 0.22,-1.23 1.5,-0.46 0.32,-0.28 0.29,-0.72 0.29,-0.72 0.1,-0.05 0.16,-0.2 0.16,-0.26 0,-0.21 -1.02,-0.78 -1.28,-0.85 -0.06,-0.31 -0.46,-0.75 -1.66,-0.59 -0.57,0.07 -0.98,-0.08 -0.79,-0.41 0.03,-0.06 -0.07,-0.07 -0.12,-0.01 -0.13,0.13 -0.31,0.5 0.18,0.75 0.55,0.28 0.58,0.83 0.59,0.91 0.01,0.12 -0.13,0.13 -0.16,0.01 -0.25,-0.93 -1.53,-1.13 -2.28,-0.64 0.04,0.5 0.58,0.83 0.87,0.83 0.17,0 0.4,-0.17 0.4,-0.4 0,-0.11 0.06,-0.1 0.09,-0.01 0.12,0.33 -0.37,1.02 -1.09,0.6 -0.74,0.74 -0.44,1.66 -0.37,1.99 0.13,0.6 -0.16,1.19 -0.71,0.92 -0.03,-0.01 -0.06,-0.02 -0.06,0.04 0.01,0.36 0.5,0.79 1.09,0.46 z M 13,61.24 c -0.35,0.39 -0.91,0.3 -1.05,-0.34 0.72,-0.04 1.02,0.03 1.05,0.34 z m 22.07,1.48 c -0.37,0 -0.72,-0.16 -0.79,-0.45 -0.02,-0.07 -0.08,-0.1 -0.11,0.01 -0.18,0.64 0.28,0.94 0.72,0.94 0.49,0 0.76,-0.35 1.46,-0.47 0.31,-0.05 0.52,0 0.52,-0.1 0,-0.09 -0.45,-0.09 -0.52,-0.09 -0.72,0 -0.82,0.16 -1.28,0.16 z m 7.16,1.77 c 0,-0.06 -0.03,-0.05 -0.06,-0.04 -0.55,0.27 -0.84,-0.31 -0.71,-0.92 0.07,-0.34 0.37,-1.25 -0.37,-1.99 -0.73,0.42 -1.22,-0.27 -1.09,-0.6 0.03,-0.09 0.09,-0.1 0.09,0.01 0,0.23 0.23,0.4 0.4,0.4 0.29,0 0.83,-0.33 0.87,-0.83 -0.75,-0.49 -2.03,-0.29 -2.28,0.64 -0.03,0.12 -0.17,0.11 -0.16,-0.01 0,-0.08 0.04,-0.63 0.59,-0.91 0.5,-0.25 0.32,-0.62 0.18,-0.75 -0.05,-0.05 -0.16,-0.04 -0.12,0.01 0.19,0.33 -0.22,0.48 -0.78,0.41 -1.2,-0.16 -1.59,0.29 -1.66,0.59 -0.26,0.07 -1.28,0.64 -1.28,0.85 0,0.06 0.06,0.22 0.16,0.26 0,0 -0.02,0.43 0.29,0.72 1.27,-0.77 1.63,-0.05 1.5,0.46 0,0 -0.23,0.18 -1.09,0.19 0,0 0.04,0.31 0.11,0.4 0,0 -0.2,0.25 -0.06,0.47 0,0 0.44,-0.33 1.2,-0.3 0,0 0.49,0.74 -1.32,1.09 -1.81,0.35 -2.39,2.06 -2.39,3 0,0.05 0.02,0.07 0.06,0.06 1.47,-0.27 2.14,1.25 4.04,1.07 -0.17,-0.45 0.02,-0.92 0.02,-0.92 0.15,0.4 0.51,0.67 0.77,0.8 0.68,-0.15 1.12,-0.47 1.22,-0.67 0,0 -0.72,-0.59 -0.25,-1.67 0,0 0.45,0.72 1.38,0.33 0.08,-0.04 0.06,-0.09 0.01,-0.11 -1.26,-0.41 -0.44,-1.47 -0.36,-1.58 0.59,0.35 1.09,-0.08 1.09,-0.46 z M 38.11,60.9 c -0.14,0.64 -0.7,0.73 -1.05,0.34 0.03,-0.31 0.34,-0.38 1.05,-0.34 z M 24.7,50.21 c 0,0.16 0.07,0.3 0.12,0.38 0.11,0.16 0.09,0.25 0.04,0.3 -0.05,0.05 -0.14,0.07 -0.3,-0.04 -0.08,-0.06 -0.22,-0.12 -0.38,-0.12 -0.27,0 -0.41,0.18 -0.41,0.33 0,0.15 0.14,0.33 0.41,0.33 0.16,0 0.3,-0.07 0.38,-0.12 0.16,-0.11 0.25,-0.09 0.3,-0.04 0.05,0.05 -0.02,0.6 -0.09,1.04 -0.45,0.1 -0.67,0.46 -0.67,0.67 0,0.55 0.58,0.86 0.93,1.05 0.34,-0.18 0.93,-0.5 0.93,-1.05 0,-0.21 -0.22,-0.58 -0.67,-0.67 -0.06,-0.43 -0.14,-0.99 -0.09,-1.04 0.05,-0.05 0.14,-0.07 0.3,0.04 0.08,0.06 0.22,0.12 0.38,0.12 0.27,0 0.41,-0.18 0.41,-0.33 0,-0.15 -0.14,-0.33 -0.41,-0.33 -0.16,0 -0.3,0.07 -0.38,0.12 -0.16,0.11 -0.25,0.09 -0.3,0.04 -0.05,-0.05 -0.07,-0.14 0.04,-0.3 0.06,-0.08 0.12,-0.22 0.12,-0.38 0,-0.27 -0.18,-0.41 -0.33,-0.41 -0.15,0 -0.33,0.14 -0.33,0.41 z m 0.33,4.06 c -0.37,0 -0.67,0.3 -0.67,0.67 0,0.37 0.3,0.67 0.67,0.67 0.37,0 0.67,-0.3 0.67,-0.67 0,-0.37 -0.3,-0.67 -0.67,-0.67 z m 0,6.41 c 2.67,0 4.17,0.51 4.17,0.51 0.01,-1.35 0.01,-2.1 0.78,-1.99 -0.42,-1.13 1.4,-1.58 1.4,-3.05 0,-0.97 -0.69,-1.08 -0.89,-1.08 -0.6,0 -0.51,0.39 -1.02,0.39 -0.06,0 -0.13,-0.02 -0.13,0.03 0,0.17 0.14,0.46 0.38,0.46 0.32,0 0.32,-0.32 0.56,-0.32 0.1,0 0.25,0.08 0.25,0.41 0,0.63 -0.41,1.32 -0.9,1.86 -0.11,-0.15 -0.26,-0.25 -0.45,-0.25 -0.29,0 -0.54,0.3 -0.54,0.67 0,0.14 0.02,0.24 0.07,0.35 -0.16,0.09 -0.31,0.14 -0.41,0.14 -0.22,0 -0.55,-0.09 -0.55,-0.57 0,-1.07 1.43,-2.01 1.43,-3.37 0,-0.65 -0.43,-1.29 -1.34,-1.29 -0.97,0 -0.79,0.88 -1.63,0.88 -0.04,0 -0.07,0.01 -0.07,0.05 0,0.06 0.15,0.55 0.58,0.55 0.46,0 0.59,-0.8 1.01,-0.8 0.15,0 0.38,0.09 0.38,0.63 0,0.42 -0.21,1.11 -0.51,1.76 -0.11,-0.11 -0.26,-0.19 -0.42,-0.19 -0.36,0 -0.62,0.35 -0.62,0.76 0,0.26 0.1,0.52 0.28,0.68 -0.21,0.27 -0.43,0.49 -0.72,0.49 -0.58,0 -0.83,-0.33 -0.83,-0.69 0,-0.39 0.71,-0.53 0.71,-1.13 0,-0.41 -0.27,-0.64 -0.52,-0.64 -0.28,0 -0.42,0.18 -0.45,0.18 -0.03,0 -0.17,-0.18 -0.45,-0.18 -0.26,0 -0.52,0.23 -0.52,0.64 0,0.6 0.71,0.75 0.71,1.13 0,0.36 -0.26,0.69 -0.83,0.69 -0.29,0 -0.51,-0.22 -0.72,-0.49 0.18,-0.17 0.28,-0.42 0.28,-0.68 0,-0.42 -0.26,-0.76 -0.62,-0.76 -0.17,0 -0.31,0.08 -0.42,0.19 -0.3,-0.66 -0.51,-1.34 -0.51,-1.76 0,-0.54 0.23,-0.63 0.38,-0.63 0.41,0 0.54,0.8 1.01,0.8 0.43,0 0.58,-0.49 0.58,-0.55 0,-0.03 -0.03,-0.05 -0.07,-0.05 -0.84,0 -0.66,-0.88 -1.63,-0.88 -0.9,0 -1.34,0.64 -1.34,1.29 0,1.36 1.43,2.3 1.43,3.37 0,0.48 -0.33,0.57 -0.55,0.57 -0.11,0 -0.25,-0.05 -0.41,-0.14 0.05,-0.12 0.07,-0.21 0.07,-0.35 0,-0.37 -0.25,-0.67 -0.54,-0.67 -0.18,0 -0.33,0.1 -0.44,0.25 -0.49,-0.54 -0.9,-1.23 -0.9,-1.86 0,-0.32 0.15,-0.41 0.25,-0.41 0.23,0 0.24,0.32 0.56,0.32 0.24,0 0.38,-0.29 0.38,-0.46 0,-0.05 -0.07,-0.03 -0.13,-0.03 -0.51,0 -0.42,-0.39 -1.02,-0.39 -0.2,0 -0.89,0.11 -0.89,1.08 0,1.48 1.82,1.92 1.4,3.05 0.77,-0.11 0.76,0.64 0.78,1.99 -0.01,0 1.49,-0.51 4.16,-0.51 z m -4.89,1.99 c -0.73,0.16 -1.25,0.31 -1.48,0.38 0.01,-0.32 0.13,-0.62 0.42,-0.68 0.04,-0.01 0.05,-0.06 0.01,-0.08 -0.65,-0.43 -0.99,0.39 -1,0.42 -0.23,-0.02 -0.58,0.05 -0.58,0.36 0,0.93 -2.12,1.44 -2.61,1.52 0.87,0.33 1.23,1.43 1.23,1.43 0.63,-0.63 1.36,-1.18 1.53,-1.18 0.17,0 0.23,0.21 0.24,0.33 0,0.04 0.04,0.05 0.07,0.02 0.33,-0.49 0.17,-0.6 0.14,-0.75 -0.02,-0.11 0.01,-0.54 0.49,-0.49 v 6.19 l -0.25,0.05 c -0.11,0.02 -1.02,-0.75 -2.05,-1.47 -1.04,-0.72 -1.59,-0.29 -2.77,0.35 -1.55,0.84 -3.11,0.08 -3.11,0.08 -1.33,0.95 -1.79,3.71 -1.79,3.71 -0.27,0.11 -0.71,0.23 -1.12,0.23 -1.02,0 -1.2,-0.62 -1.2,-0.98 0,-1.57 1.97,-2.24 1.97,-3.79 0,-0.38 -0.17,-1.9 -2.06,-1.9 -0.24,0 -1.68,0 -1.69,0 -0.71,0 -0.88,-0.51 -0.98,-0.7 -0.04,-0.08 -0.11,-0.03 -0.08,0.03 0.05,0.13 -0.08,0.33 -0.08,0.72 0,0.63 0.37,1.01 1.06,1.01 0.31,0 0.61,-0.09 0.7,-0.15 0.06,-0.04 0.1,0.02 0.07,0.06 -0.3,0.35 -0.32,1.01 -0.2,1.16 0.03,0.04 0.07,0.03 0.07,0 0.17,-0.66 0.79,-1.29 1.63,-1.29 1.03,0 1.02,0.87 1.02,1.08 0,1.26 -2.21,2.18 -2.21,3.92 0,1.76 1.86,2.13 2.93,1.86 -0.06,1.76 -2.08,2.36 -2.14,1.1 0,-0.06 -0.05,-0.07 -0.08,0.01 -0.25,0.62 -0.15,1.17 0.63,1.34 0.05,0.01 0.03,0.04 -0.02,0.08 -0.78,0.49 -0.36,2.43 -0.32,3 0.06,0.82 -0.76,0.72 -0.83,0.7 -0.03,-0.01 -0.07,0 -0.01,0.07 0.58,0.71 1.3,0.06 1.3,0.06 0.54,0.17 0.21,0.63 -0.16,0.87 -0.06,0.04 -0.05,0.08 0.01,0.08 0.08,0.01 0.92,0.08 1.07,-0.59 0.37,0.44 0.92,0.28 1.03,0.22 0.16,-0.08 0.95,-0.37 1.02,0.51 0,0.06 0.04,0.02 0.07,-0.01 0.59,-0.75 -0.04,-1.21 -0.4,-1.26 0.03,-0.04 0.5,-0.44 0.93,0.11 0.03,0.04 0.06,0.05 0.06,-0.03 0.05,-0.95 -0.72,-1.03 -1.22,-0.62 -0.02,-0.1 -0.19,-0.63 0.56,-0.61 0.02,0 0.05,-0.03 0.02,-0.06 -0.58,-0.62 -1.06,-0.06 -1.18,0.08 -0.26,0.31 -0.91,0.18 -0.97,0.18 0.2,-3.29 3.1,-2.12 3.5,-3.72 0.02,-0.08 0.06,-0.05 0.06,-0.02 0.11,0.39 1.09,0.44 1.27,-0.32 0.01,-0.05 0,-0.08 -0.03,-0.05 -0.84,0.84 -2.73,-1.78 -0.15,-3.91 2.2,-1.81 4.17,-0.8 4.92,-0.21 0.04,0.26 -0.12,0.35 -0.22,0.38 -0.04,0.01 -0.05,0.04 0.01,0.07 0.21,0.08 0.5,0.05 0.64,-0.14 0.47,0.33 0.07,0.75 -0.12,0.86 -0.05,0.03 -0.03,0.06 0.01,0.07 0.43,0.08 0.79,-0.36 0.81,-0.62 l 0.07,0.04 v 1.87 c 0,2.66 3.07,3.03 6.44,5.28 3.37,-2.26 6.43,-2.62 6.43,-5.28 v -1.87 l 0.07,-0.04 c 0.02,0.25 0.37,0.7 0.81,0.62 0.04,-0.01 0.06,-0.04 0.01,-0.07 -0.19,-0.12 -0.6,-0.53 -0.12,-0.86 0.14,0.2 0.43,0.22 0.64,0.14 0.06,-0.02 0.05,-0.06 0.01,-0.07 -0.1,-0.03 -0.26,-0.12 -0.22,-0.38 0.75,-0.6 2.72,-1.61 4.92,0.21 2.58,2.13 0.69,4.74 -0.15,3.91 -0.04,-0.04 -0.04,0 -0.03,0.05 0.18,0.77 1.16,0.71 1.27,0.32 0.01,-0.03 0.05,-0.06 0.06,0.02 0.4,1.6 3.29,0.43 3.5,3.72 -0.06,0.01 -0.71,0.13 -0.97,-0.18 -0.11,-0.13 -0.59,-0.7 -1.18,-0.08 -0.04,0.04 0,0.06 0.02,0.06 0.75,-0.02 0.59,0.51 0.56,0.61 -0.5,-0.41 -1.27,-0.33 -1.22,0.62 0,0.07 0.03,0.07 0.06,0.03 0.43,-0.55 0.9,-0.15 0.93,-0.11 -0.35,0.05 -0.99,0.51 -0.4,1.26 0.03,0.03 0.06,0.07 0.07,0.01 0.08,-0.88 0.86,-0.6 1.02,-0.51 0.11,0.06 0.66,0.22 1.03,-0.22 0.15,0.67 0.99,0.6 1.07,0.59 0.06,0 0.06,-0.04 0.01,-0.08 -0.36,-0.24 -0.7,-0.7 -0.16,-0.87 0,0 0.72,0.65 1.3,-0.06 0.05,-0.06 0.02,-0.08 -0.01,-0.07 -0.07,0.02 -0.89,0.12 -0.83,-0.7 0.04,-0.57 0.46,-2.51 -0.32,-3 -0.05,-0.03 -0.07,-0.06 -0.02,-0.08 0.78,-0.17 0.88,-0.72 0.63,-1.34 -0.03,-0.08 -0.08,-0.06 -0.08,-0.01 -0.06,1.26 -2.07,0.66 -2.14,-1.1 1.08,0.28 2.93,-0.1 2.93,-1.86 0,-1.73 -2.21,-2.66 -2.21,-3.92 0,-0.21 -0.01,-1.08 1.02,-1.08 0.84,0 1.46,0.63 1.63,1.29 0.01,0.03 0.04,0.04 0.07,0 0.12,-0.16 0.1,-0.81 -0.2,-1.16 -0.03,-0.03 0,-0.1 0.07,-0.06 0.09,0.06 0.39,0.15 0.7,0.15 0.69,0 1.06,-0.38 1.06,-1.01 0,-0.39 -0.14,-0.59 -0.08,-0.72 0.03,-0.06 -0.05,-0.1 -0.08,-0.03 -0.1,0.2 -0.28,0.7 -0.98,0.7 -0.01,0 -1.45,0 -1.69,0 -1.89,0 -2.06,1.53 -2.06,1.9 0,1.55 1.97,2.22 1.97,3.79 0,0.37 -0.19,0.98 -1.2,0.98 -0.42,0 -0.86,-0.12 -1.12,-0.23 0,0 -0.45,-2.75 -1.79,-3.71 0,0 -1.56,0.76 -3.11,-0.08 -1.18,-0.64 -1.74,-1.07 -2.78,-0.35 -1.04,0.72 -1.94,1.49 -2.05,1.47 l -0.25,-0.05 v -6.19 c 0.48,-0.05 0.51,0.38 0.49,0.49 -0.03,0.14 -0.18,0.26 0.14,0.75 0.03,0.04 0.06,0.02 0.07,-0.02 0.01,-0.12 0.08,-0.33 0.24,-0.33 0.16,0 0.9,0.55 1.53,1.18 0,0 0.36,-1.09 1.23,-1.43 -0.49,-0.08 -2.61,-0.59 -2.61,-1.52 0,-0.31 -0.35,-0.38 -0.58,-0.36 -0.01,-0.03 -0.36,-0.85 -1,-0.42 -0.03,0.02 -0.03,0.07 0.01,0.08 0.29,0.07 0.41,0.36 0.42,0.68 -0.62,-0.19 -3.25,-0.93 -6.37,-0.93 -1.52,0 -2.91,0.18 -4.02,0.38 v 2.14 h -0.87 v -1.97 0 M 14.38,84.65 C 14.15,84.56 14,84.41 14,84.1 v -1.33 c -0.38,-0.13 -1.42,-0.53 -3.51,-0.53 -1.73,0 -2.27,0.39 -2.3,0.53 L 7.73,85.3 c 0,0 0.7,-0.64 3.21,-0.48 3.02,0.19 6.15,1.98 6.15,0.07 v -1.12 c -2.36,0.01 -2.71,0.77 -2.71,0.88 z m 18.59,-0.87 v 1.12 c 0,1.9 3.13,0.12 6.15,-0.07 2.51,-0.16 3.21,0.48 3.21,0.48 l -0.46,-2.54 c -0.02,-0.14 -0.57,-0.53 -2.3,-0.53 -2.08,0 -3.12,0.4 -3.51,0.53 v 1.33 c 0,0.3 -0.15,0.45 -0.38,0.55 0.01,-0.11 -0.34,-0.87 -2.71,-0.87 z m -7.94,-1.15 c 4.87,0 9.81,0.25 10.45,0.99 0.05,0.06 0.07,0 0.07,-0.05 v -2.58 c 0,-0.75 -5.1,-1.19 -10.53,-1.19 -5.43,0 -10.53,0.44 -10.53,1.19 v 2.58 c 0,0.04 0.02,0.1 0.07,0.05 0.67,-0.73 5.61,-0.99 10.47,-0.99 z M 20.69,70.47 20.2,70.34 20.16,70.4 19.59,70.15 c 0,0 0.42,0 0.51,0 0.05,0 0.05,-0.03 0.03,-0.05 -0.23,-0.23 -0.44,-0.43 -0.44,-0.43 0,0 0.23,0.09 0.56,0.21 0.04,0.01 0.05,-0.01 0.03,-0.04 -0.16,-0.23 -0.38,-0.55 -0.38,-0.55 0,0 0.46,0.31 0.55,0.37 0.03,0.02 0.05,0 0.04,-0.03 -0.12,-0.3 -0.26,-0.65 -0.26,-0.65 l 0.5,0.48 c 0.02,0.02 0.05,0.01 0.04,-0.02 -0.05,-0.23 -0.14,-0.65 -0.14,-0.65 L 21,69.33 c 0.02,0.03 0.05,0.02 0.05,-0.01 0,-0.11 0.01,-0.59 0.01,-0.59 0,0 0.16,0.36 0.23,0.54 0.02,0.04 0.04,0.04 0.06,-0.01 0.02,-0.06 0.19,-0.46 0.19,-0.46 l 0.02,0.62 -0.08,0.02 -0.1,0.74 c 0.73,-0.17 1.65,-1.43 2.35,-1.43 0.84,0 1.14,0.98 2.68,0.48 0.39,0.58 0.53,1.08 0.68,1.77 0.6,0.56 1.43,0.37 1.43,-0.22 0,-0.8 -0.87,-0.95 -0.87,-1.79 0,-0.37 0.26,-0.91 0.97,-0.91 0.38,0 0.93,0.16 1.25,0.16 0.38,0 0.46,-0.27 0.5,-0.39 0.03,-0.08 0.14,-0.06 0.13,0.01 -0.01,0.08 0.04,0.19 0.04,0.37 0,0.53 -0.77,0.6 -0.86,0.53 -0.04,-0.03 -0.07,0.01 -0.04,0.04 0.12,0.09 0.09,0.41 -0.05,0.61 -0.02,0.02 -0.04,0.02 -0.04,0 -0.08,-0.38 -0.53,-0.85 -0.92,-0.85 -0.14,0 -0.43,0.08 -0.43,0.42 0,0.47 0.95,0.91 0.95,1.89 0,1.02 -1.01,1.27 -2.03,1.01 0.03,0.97 1.48,1.54 1.51,0.85 0,-0.05 0.03,-0.02 0.04,0 0.21,0.3 0.12,0.52 -0.16,0.64 0.25,0.11 0.3,0.62 0.37,0.93 0.11,0.46 0.59,0.2 0.62,0.19 0.03,-0.02 0.04,0 0.02,0.03 -0.18,0.47 -0.67,0.29 -0.67,0.29 -0.25,0.18 0.05,0.34 0.28,0.41 0.03,0.01 0.03,0.03 0.01,0.05 -0.17,0.06 -0.53,0.18 -0.71,-0.13 -0.13,0.32 -0.4,0.31 -0.5,0.31 -0.19,0 -0.31,0.19 -0.27,0.45 0,0.02 -0.01,0.03 -0.03,0.02 -0.44,-0.29 -0.19,-0.64 -0.01,-0.73 -0.03,-0.02 -0.34,-0.15 -0.47,0.21 -0.01,0.03 -0.03,0.03 -0.04,0 -0.19,-0.52 0.23,-0.67 0.53,-0.54 -0.02,-0.07 -0.18,-0.33 -0.58,-0.24 -0.02,0.01 -0.03,0 -0.02,-0.03 0.07,-0.16 0.26,-0.39 0.63,-0.16 0.19,0.12 0.51,-0.05 0.54,-0.07 -0.65,-1.29 -1.9,-0.21 -2.19,-1.22 -0.01,-0.02 -0.03,-0.04 -0.05,0.02 -0.07,0.21 -0.62,0.23 -0.72,-0.19 -0.01,-0.03 0,-0.04 0.03,-0.02 0.08,0.08 0.25,0.15 0.48,-0.17 0.15,-0.22 0.17,-0.51 0.17,-0.7 0,-0.78 -0.78,-2.1 -2,-2.1 -0.77,0 -1.6,0.3 -2.22,0.75 l 0.57,0.13 c -0.05,0.58 -0.61,0.92 -1.12,0.77 l 0.09,-0.66 c -0.09,0.03 -0.31,0.11 -0.43,0.28 -0.01,0.01 -0.03,0.01 -0.03,-0.01 -0.1,-0.38 0.21,-0.57 0.3,-0.61 0.01,-0.01 0.01,-0.01 -0.01,-0.01 -0.28,-0.01 -0.43,0.19 -0.48,0.26 -0.01,0.01 -0.02,0.01 -0.02,0 0.03,-0.08 -0.02,-0.27 0.11,-0.41 z m 1.71,4.48 c -0.22,0.27 -0.41,0.01 -0.7,0.01 -0.27,0 -0.32,0.23 -0.32,0.32 0,0.02 -0.01,0.02 -0.02,0.01 -0.31,-0.42 0.04,-0.65 0.24,-0.68 -0.03,-0.03 -0.33,-0.23 -0.52,0.05 -0.01,0.02 -0.03,0.01 -0.03,-0.01 -0.01,-0.52 0.4,-0.56 0.68,-0.33 0.05,-0.2 -0.08,-0.33 -0.3,-0.34 -0.03,0 -0.03,-0.02 -0.02,-0.03 0.09,-0.1 0.18,-0.14 0.27,-0.14 0.29,0 0.33,0.37 0.52,0.37 0.28,0 0.69,-0.38 0.72,-0.42 -0.01,-0.02 -0.28,-0.76 -0.23,-1.2 0,-0.02 -0.01,-0.02 -0.02,-0.01 -0.14,0.08 -0.48,0.07 -0.48,-0.35 0,-0.03 0.01,-0.04 0.03,-0.01 0.15,0.21 0.4,-0.03 0.52,-0.17 0.13,-0.15 0.85,-1.19 1.8,-1.19 0.21,0 0.48,0.12 0.7,0.27 -0.33,0.4 0,0.78 0.24,0.73 0.03,-0.01 0.03,0.02 0.01,0.03 -1.26,0.47 -1.82,0.66 -1.82,1.72 0,0.55 0.19,0.86 0.51,0.78 0.02,-0.01 0.03,0 0.01,0.02 -0.12,0.14 -0.25,0.19 -0.36,0.19 -0.26,0 -0.31,-0.14 -0.45,-0.14 -0.14,0 -0.61,0.28 -0.61,0.51 0,0.09 0.06,0.21 0.22,0.31 0.01,0.01 0,0.02 0,0.02 -0.14,0 -0.51,0.03 -0.59,-0.32 z M 25.71,64.7 c -0.39,-0.02 -0.65,0.06 -0.63,0.19 0.19,0.2 0.44,0.18 0.63,-0.19 z m -1.45,0.97 c 0.28,-0.07 0.58,-0.04 0.62,-0.03 0.04,0.01 0.04,0.08 -0.01,0.09 -0.58,0.07 -0.61,0.34 -0.98,0.34 -0.24,0 -0.51,-0.25 -0.41,-0.61 0.01,-0.05 0.05,-0.05 0.06,0 0.04,0.16 0.27,0.33 0.72,0.21 z m -7.53,12.86 c 0.38,0.49 0.75,0.03 1.26,0.03 0.25,0 0.55,0.08 0.6,0.58 0,0.03 0.02,0.03 0.05,0 0.55,-0.75 -0.08,-1.17 -0.44,-1.23 0.08,-0.07 0.61,-0.4 0.96,0.09 0.02,0.03 0.06,0.02 0.06,-0.02 0,-0.95 -0.71,-1.02 -1.23,-0.61 -0.1,-0.37 0.18,-0.61 0.54,-0.61 0.04,0 0.06,-0.03 0.04,-0.05 -0.64,-0.68 -1.11,0.18 -1.22,0.31 -0.25,0.34 -1.16,-0.3 -1.53,-0.68 0,0 0.8,-0.84 0.8,-1.61 0,-0.05 -0.01,-0.11 -0.01,-0.14 0,-0.02 0.01,-0.03 0.03,-0.02 0.08,0.05 0.19,0.08 0.3,0.08 0.18,0 0.53,-0.06 0.53,-0.71 0,-0.05 -0.02,-0.05 -0.04,-0.02 -0.1,0.14 -0.2,0.17 -0.28,0.17 -0.65,0 -2,-2.16 -3.6,-2.16 -0.42,0 -1.21,0.3 -1.6,0.73 0.19,0.11 0.23,0.35 0.21,0.52 -0.03,0.27 -0.25,0.41 -0.47,0.47 -0.04,0.01 -0.04,0.04 0,0.06 0.81,0.31 2.27,0.86 2.61,1.15 0.39,0.34 0.32,0.98 0.09,1.87 -0.22,0.85 -0.69,0.74 -0.87,0.71 -0.03,0 -0.03,0.01 -0.02,0.03 0.21,0.26 0.46,0.35 0.68,0.35 0.42,0 0.58,-0.26 0.79,-0.26 0.36,0 1.13,0.52 1.13,0.92 0,0.22 -0.17,0.43 -0.4,0.57 -0.01,0.01 -0.01,0.03 0.01,0.03 0.17,0.03 0.88,0.09 1.02,-0.55 z m 17.63,0.55 c 0.02,0 0.03,-0.02 0.01,-0.03 -0.22,-0.15 -0.4,-0.35 -0.4,-0.57 0,-0.4 0.76,-0.92 1.13,-0.92 0.22,0 0.37,0.26 0.79,0.26 0.22,0 0.47,-0.09 0.68,-0.35 0.02,-0.02 0.01,-0.04 -0.02,-0.03 -0.17,0.03 -0.65,0.14 -0.87,-0.71 -0.23,-0.89 -0.31,-1.53 0.09,-1.87 0.33,-0.29 1.8,-0.84 2.61,-1.15 0.04,-0.02 0.04,-0.05 0,-0.06 -0.22,-0.06 -0.44,-0.2 -0.47,-0.47 -0.02,-0.17 0.02,-0.4 0.21,-0.52 -0.4,-0.43 -1.19,-0.73 -1.61,-0.73 -1.6,0 -2.95,2.16 -3.6,2.16 -0.08,0 -0.19,-0.03 -0.28,-0.17 -0.02,-0.03 -0.04,-0.03 -0.04,0.02 0,0.65 0.35,0.71 0.53,0.71 0.1,0 0.22,-0.03 0.3,-0.08 0.02,-0.01 0.03,0 0.03,0.02 0,0.03 -0.01,0.09 -0.01,0.14 0,0.77 0.8,1.61 0.8,1.61 -0.36,0.38 -1.27,1.01 -1.53,0.68 -0.11,-0.14 -0.58,-0.99 -1.22,-0.31 -0.02,0.03 -0.01,0.05 0.04,0.05 0.36,0 0.64,0.24 0.54,0.61 -0.52,-0.41 -1.23,-0.34 -1.23,0.61 0,0.04 0.04,0.05 0.06,0.02 0.34,-0.49 0.88,-0.16 0.95,-0.09 -0.36,0.05 -0.98,0.48 -0.44,1.23 0.02,0.03 0.04,0.03 0.05,0 0.06,-0.49 0.36,-0.58 0.6,-0.58 0.5,0 0.87,0.46 1.26,-0.03 0.16,0.64 0.87,0.58 1.04,0.55 z M 21.45,66.61 c -0.05,0.07 -0.22,0 -0.28,-0.03 -0.01,-0.01 -0.02,0 -0.01,0.01 0.04,0.09 0.2,0.36 0.44,0.36 0.11,0 0.27,-0.06 0.31,-0.14 0,0 0.94,0.31 1.4,0.43 -0.18,0.24 -0.29,0.53 -0.32,0.84 -0.37,-0.23 -1.87,-1.03 -1.87,-1.03 l -0.46,0.64 c -0.08,0.1 -0.45,-0.17 -0.37,-0.27 l 0.35,-0.49 c -0.12,-0.12 -0.4,-0.05 -0.48,-0.02 -0.01,0 -0.02,0 -0.01,-0.02 0.05,-0.1 0.22,-0.39 0.66,-0.26 0,-0.27 -0.4,-0.18 -0.51,-0.15 -0.01,0 -0.02,0 -0.01,-0.01 0.11,-0.12 0.44,-0.38 0.8,-0.16 l 0.16,-0.22 -0.32,-0.34 0.2,-0.28 0.23,0.3 1.73,-2.37 c 0.04,-0.06 0.39,-0.16 0.51,-0.19 0.01,0.13 0.03,0.49 -0.01,0.55 l -1.7,2.39 0.36,0.12 -0.2,0.28 -0.42,-0.2 z m 6.07,-0.39 c 0,0.22 0.13,0.54 0.42,0.44 0.01,-0.01 0.03,0 0.02,0.01 -0.04,0.24 -0.48,0.46 -0.67,0.18 -0.18,0.37 -0.13,0.72 0.24,0.92 0.02,0.01 0.02,0.04 0,0.06 -0.23,0.16 -0.58,0.13 -0.74,-0.19 -0.31,0.23 -0.27,0.73 -0.08,0.9 0,0 -0.86,0.51 -1.64,0.15 -0.52,-0.25 -0.94,-0.57 -1.61,-0.51 0.09,-0.94 0.56,-1.18 1.42,-1.32 0.69,-0.11 0.77,-0.43 0.68,-0.67 -0.23,-0.06 -0.66,0.15 -0.66,0.15 -0.08,-0.13 0.03,-0.26 0.03,-0.26 -0.04,-0.05 -0.06,-0.22 -0.06,-0.22 0.48,0 0.57,-0.11 0.57,-0.11 0.09,-0.5 -0.42,-0.55 -0.81,-0.28 -0.18,-0.16 -0.15,-0.37 -0.15,-0.37 -0.05,-0.03 -0.09,-0.11 -0.09,-0.15 0,-0.12 0.57,-0.44 0.72,-0.48 0.04,-0.17 0.24,-0.4 0.85,-0.34 0.07,-0.16 -0.05,-0.75 -0.12,-0.9 -0.02,-0.05 0.01,-0.07 0.06,-0.04 0.21,0.13 0.42,0.63 0.57,0.64 0,0 0.68,-0.36 0.71,-0.34 0.03,0.02 0.13,0.78 0.13,0.78 0.09,0.11 0.62,0 0.85,0.1 0.06,0.03 0.06,0.07 0,0.08 -0.17,0.03 -0.72,0.27 -0.81,0.42 0.32,0.47 0.17,1.16 0.17,1.35 z"
|
|
41
|
+
class="st1" />
|
|
42
|
+
</svg>
|