@morscherlab/mint-sdk 1.0.0-alpha.2
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 +326 -0
- package/dist/__stories__/experiment-helpers.d.ts +25 -0
- package/dist/__tests__/components/AppLayout.test.d.ts +1 -0
- package/dist/__tests__/components/AppSidebar.test.d.ts +1 -0
- package/dist/__tests__/components/AppTopBar.test.d.ts +1 -0
- package/dist/__tests__/components/BaseInput.test.d.ts +1 -0
- package/dist/__tests__/components/BasePill.test.d.ts +1 -0
- package/dist/__tests__/components/Calendar.test.d.ts +1 -0
- package/dist/__tests__/components/CollapsibleCard.test.d.ts +1 -0
- package/dist/__tests__/components/DataFrame.test.d.ts +1 -0
- package/dist/__tests__/components/DropdownButton.test.d.ts +1 -0
- package/dist/__tests__/composables/formBuilderRegistry.test.d.ts +1 -0
- package/dist/__tests__/composables/useAppExperiment.test.d.ts +1 -0
- package/dist/__tests__/composables/useAuth.test.d.ts +1 -0
- package/dist/__tests__/composables/useAutoGroup.test.d.ts +1 -0
- package/dist/__tests__/composables/useExperimentData.test.d.ts +13 -0
- package/dist/__tests__/composables/useExperimentSave.test.d.ts +1 -0
- package/dist/__tests__/composables/useForm.test.d.ts +1 -0
- package/dist/__tests__/composables/useFormBuilder.test.d.ts +1 -0
- package/dist/__tests__/composables/usePlatformContext.test.d.ts +1 -0
- package/dist/__tests__/composables/usePluginApi.test.d.ts +13 -0
- package/dist/__tests__/composables/usePluginConfig.test.d.ts +14 -0
- package/dist/__tests__/utils/color.test.d.ts +1 -0
- package/dist/auth-BYmxZdJl.js +297 -0
- package/dist/auth-BYmxZdJl.js.map +1 -0
- package/dist/components/AlertBox.vue.d.ts +34 -0
- package/dist/components/AppAvatarMenu.vue.d.ts +58 -0
- package/dist/components/AppContainer.vue.d.ts +28 -0
- package/dist/components/AppLayout.vue.d.ts +31 -0
- package/dist/components/AppPageSelector.vue.d.ts +43 -0
- package/dist/components/AppPillNav.vue.d.ts +11 -0
- package/dist/components/AppPluginSwitcher.vue.d.ts +38 -0
- package/dist/components/AppSidebar.vue.d.ts +47 -0
- package/dist/components/AppTopBar.vue.d.ts +111 -0
- package/dist/components/AuditTrail.vue.d.ts +38 -0
- package/dist/components/AutoGroupModal.vue.d.ts +124 -0
- package/dist/components/Avatar.vue.d.ts +14 -0
- package/dist/components/BaseButton.vue.d.ts +37 -0
- package/dist/components/BaseCheckbox.vue.d.ts +17 -0
- package/dist/components/BaseInput.vue.d.ts +34 -0
- package/dist/components/BaseModal.vue.d.ts +46 -0
- package/dist/components/BasePill.vue.d.ts +57 -0
- package/dist/components/BaseRadioGroup.vue.d.ts +21 -0
- package/dist/components/BaseSelect.vue.d.ts +20 -0
- package/dist/components/BaseSlider.vue.d.ts +22 -0
- package/dist/components/BaseTabs.vue.d.ts +14 -0
- package/dist/components/BaseTextarea.vue.d.ts +30 -0
- package/dist/components/BaseToggle.vue.d.ts +19 -0
- package/dist/components/BatchProgressList.vue.d.ts +43 -0
- package/dist/components/Breadcrumb.vue.d.ts +33 -0
- package/dist/components/Calendar.vue.d.ts +107 -0
- package/dist/components/ChartContainer.vue.d.ts +31 -0
- package/dist/components/ChemicalFormula.vue.d.ts +8 -0
- package/dist/components/CollapsibleCard.vue.d.ts +41 -0
- package/dist/components/ColorSlider.vue.d.ts +34 -0
- package/dist/components/ConcentrationInput.vue.d.ts +25 -0
- package/dist/components/ConfirmDialog.vue.d.ts +42 -0
- package/dist/components/DataFrame.vue.d.ts +107 -0
- package/dist/components/DatePicker.vue.d.ts +25 -0
- package/dist/components/DateTimePicker.vue.d.ts +30 -0
- package/dist/components/Divider.vue.d.ts +14 -0
- package/dist/components/DoseCalculator.vue.d.ts +19 -0
- package/dist/components/DropdownButton.vue.d.ts +47 -0
- package/dist/components/EmptyState.vue.d.ts +36 -0
- package/dist/components/ExperimentCodeBadge.vue.d.ts +14 -0
- package/dist/components/ExperimentDataViewer.vue.d.ts +29 -0
- package/dist/components/ExperimentPopover.vue.d.ts +32 -0
- package/dist/components/ExperimentSelectorModal.vue.d.ts +28 -0
- package/dist/components/ExperimentTimeline.vue.d.ts +44 -0
- package/dist/components/FileUploader.vue.d.ts +40 -0
- package/dist/components/FitPanel.vue.d.ts +46 -0
- package/dist/components/FormActions.vue.d.ts +33 -0
- package/dist/components/FormBuilder.vue.d.ts +287 -0
- package/dist/components/FormField.vue.d.ts +28 -0
- package/dist/components/FormFieldRenderer.vue.d.ts +31 -0
- package/dist/components/FormSection.vue.d.ts +43 -0
- package/dist/components/FormulaInput.vue.d.ts +25 -0
- package/dist/components/GroupAssigner.vue.d.ts +25 -0
- package/dist/components/GroupingModal.vue.d.ts +12 -0
- package/dist/components/IconButton.vue.d.ts +34 -0
- package/dist/components/LoadingSpinner.vue.d.ts +12 -0
- package/dist/components/MoleculeInput.vue.d.ts +27 -0
- package/dist/components/MultiSelect.vue.d.ts +19 -0
- package/dist/components/NumberInput.vue.d.ts +22 -0
- package/dist/components/PlateMapEditor.vue.d.ts +50 -0
- package/dist/components/ProgressBar.vue.d.ts +23 -0
- package/dist/components/ProtocolStepEditor.vue.d.ts +24 -0
- package/dist/components/RackEditor.vue.d.ts +40 -0
- package/dist/components/ReagentEditor.vue.d.ts +30 -0
- package/dist/components/ReagentList.vue.d.ts +32 -0
- package/dist/components/ResourceCard.vue.d.ts +50 -0
- package/dist/components/SampleHierarchyTree.vue.d.ts +26 -0
- package/dist/components/SampleLegend.vue.d.ts +32 -0
- package/dist/components/SampleSelector.vue.d.ts +29 -0
- package/dist/components/ScheduleCalendar.vue.d.ts +110 -0
- package/dist/components/ScientificNumber.vue.d.ts +14 -0
- package/dist/components/SegmentedControl.vue.d.ts +20 -0
- package/dist/components/SequenceInput.vue.d.ts +54 -0
- package/dist/components/SettingsButton.vue.d.ts +30 -0
- package/dist/components/SettingsModal.vue.d.ts +36 -0
- package/dist/components/Skeleton.vue.d.ts +11 -0
- package/dist/components/StatusIndicator.vue.d.ts +13 -0
- package/dist/components/StepWizard.vue.d.ts +65 -0
- package/dist/components/TagsInput.vue.d.ts +39 -0
- package/dist/components/ThemeToggle.vue.d.ts +7 -0
- package/dist/components/TimePicker.vue.d.ts +29 -0
- package/dist/components/TimeRangeInput.vue.d.ts +27 -0
- package/dist/components/ToastNotification.vue.d.ts +2 -0
- package/dist/components/Tooltip.vue.d.ts +35 -0
- package/dist/components/UnitInput.vue.d.ts +39 -0
- package/dist/components/WellEditPopup.vue.d.ts +25 -0
- package/dist/components/WellPlate.vue.d.ts +73 -0
- package/dist/components/index.d.ts +87 -0
- package/dist/components/index.js +3 -0
- package/dist/components-CKf-UpGi.js +15089 -0
- package/dist/components-CKf-UpGi.js.map +1 -0
- package/dist/composables/experiment-utils.d.ts +8 -0
- package/dist/composables/formBuilderRegistry.d.ts +13 -0
- package/dist/composables/index.d.ts +28 -0
- package/dist/composables/index.js +3 -0
- package/dist/composables/useApi.d.ts +20 -0
- package/dist/composables/useAppExperiment.d.ts +37 -0
- package/dist/composables/useAsync.d.ts +128 -0
- package/dist/composables/useAuth.d.ts +47 -0
- package/dist/composables/useAutoGroup.d.ts +106 -0
- package/dist/composables/useChemicalFormula.d.ts +21 -0
- package/dist/composables/useConcentrationUnits.d.ts +29 -0
- package/dist/composables/useDoseCalculator.d.ts +58 -0
- package/dist/composables/useExperimentData.d.ts +18 -0
- package/dist/composables/useExperimentSave.d.ts +36 -0
- package/dist/composables/useExperimentSelector.d.ts +30 -0
- package/dist/composables/useForm.d.ts +92 -0
- package/dist/composables/useFormBuilder.d.ts +24 -0
- package/dist/composables/usePasskey.d.ts +10 -0
- package/dist/composables/usePlatformContext.d.ts +131 -0
- package/dist/composables/usePluginApi.d.ts +29 -0
- package/dist/composables/usePluginConfig.d.ts +13 -0
- package/dist/composables/useProtocolTemplates.d.ts +44 -0
- package/dist/composables/useRackEditor.d.ts +31 -0
- package/dist/composables/useReagentSeries.d.ts +23 -0
- package/dist/composables/useScheduleDrag.d.ts +78 -0
- package/dist/composables/useSequenceUtils.d.ts +14 -0
- package/dist/composables/useTheme.d.ts +8 -0
- package/dist/composables/useTimeUtils.d.ts +29 -0
- package/dist/composables/useToast.d.ts +22 -0
- package/dist/composables/useWellPlateEditor.d.ts +33 -0
- package/dist/composables-D0QfFzq1.js +805 -0
- package/dist/composables-D0QfFzq1.js.map +1 -0
- package/dist/histoire.setup.d.ts +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +7 -0
- package/dist/install.d.ts +16 -0
- package/dist/install.js +23 -0
- package/dist/install.js.map +1 -0
- package/dist/stores/auth.d.ts +146 -0
- package/dist/stores/index.d.ts +2 -0
- package/dist/stores/index.js +2 -0
- package/dist/stores/settings.d.ts +75 -0
- package/dist/styles.css +29728 -0
- package/dist/tailwind.preset.d.ts +58 -0
- package/dist/tailwind.preset.js +66 -0
- package/dist/tailwind.preset.js.map +1 -0
- package/dist/types/auth.d.ts +42 -0
- package/dist/types/auto-group.d.ts +34 -0
- package/dist/types/components.d.ts +528 -0
- package/dist/types/form-builder.d.ts +167 -0
- package/dist/types/index.d.ts +5 -0
- package/dist/types/index.js +0 -0
- package/dist/types/platform.d.ts +75 -0
- package/dist/useScheduleDrag-DAJueTbK.js +7181 -0
- package/dist/useScheduleDrag-DAJueTbK.js.map +1 -0
- package/dist/utils/color.d.ts +24 -0
- package/package.json +114 -0
- package/src/__stories__/experiment-helpers.ts +83 -0
- package/src/__tests__/components/AppLayout.test.ts +163 -0
- package/src/__tests__/components/AppSidebar.test.ts +292 -0
- package/src/__tests__/components/AppTopBar.test.ts +683 -0
- package/src/__tests__/components/BaseInput.test.ts +99 -0
- package/src/__tests__/components/BasePill.test.ts +291 -0
- package/src/__tests__/components/Calendar.test.ts +566 -0
- package/src/__tests__/components/CollapsibleCard.test.ts +524 -0
- package/src/__tests__/components/DataFrame.test.ts +767 -0
- package/src/__tests__/components/DropdownButton.test.ts +471 -0
- package/src/__tests__/composables/formBuilderRegistry.test.ts +187 -0
- package/src/__tests__/composables/useAppExperiment.test.ts +560 -0
- package/src/__tests__/composables/useAuth.test.ts +188 -0
- package/src/__tests__/composables/useAutoGroup.test.ts +860 -0
- package/src/__tests__/composables/useExperimentData.test.ts +127 -0
- package/src/__tests__/composables/useExperimentSave.test.ts +347 -0
- package/src/__tests__/composables/useForm.test.ts +205 -0
- package/src/__tests__/composables/useFormBuilder.test.ts +917 -0
- package/src/__tests__/composables/usePlatformContext.test.ts +116 -0
- package/src/__tests__/composables/usePluginApi.test.ts +81 -0
- package/src/__tests__/composables/usePluginConfig.test.ts +176 -0
- package/src/__tests__/utils/color.test.ts +96 -0
- package/src/components/AlertBox.story.vue +204 -0
- package/src/components/AlertBox.vue +88 -0
- package/src/components/AppAvatarMenu.story.vue +155 -0
- package/src/components/AppAvatarMenu.vue +184 -0
- package/src/components/AppContainer.story.vue +104 -0
- package/src/components/AppContainer.vue +34 -0
- package/src/components/AppLayout.story.vue +292 -0
- package/src/components/AppLayout.vue +75 -0
- package/src/components/AppPageSelector.vue +159 -0
- package/src/components/AppPillNav.vue +66 -0
- package/src/components/AppPluginSwitcher.vue +241 -0
- package/src/components/AppSidebar.story.vue +309 -0
- package/src/components/AppSidebar.vue +119 -0
- package/src/components/AppTopBar.story.vue +304 -0
- package/src/components/AppTopBar.vue +661 -0
- package/src/components/AuditTrail.story.vue +163 -0
- package/src/components/AuditTrail.vue +151 -0
- package/src/components/AutoGroupModal.story.vue +273 -0
- package/src/components/AutoGroupModal.vue +566 -0
- package/src/components/Avatar.story.vue +115 -0
- package/src/components/Avatar.vue +79 -0
- package/src/components/BaseButton.story.vue +96 -0
- package/src/components/BaseButton.vue +73 -0
- package/src/components/BaseCheckbox.story.vue +73 -0
- package/src/components/BaseCheckbox.vue +69 -0
- package/src/components/BaseInput.story.vue +98 -0
- package/src/components/BaseInput.vue +74 -0
- package/src/components/BaseModal.story.vue +237 -0
- package/src/components/BaseModal.vue +182 -0
- package/src/components/BasePill.story.vue +142 -0
- package/src/components/BasePill.vue +89 -0
- package/src/components/BaseRadioGroup.story.vue +145 -0
- package/src/components/BaseRadioGroup.vue +124 -0
- package/src/components/BaseSelect.story.vue +120 -0
- package/src/components/BaseSelect.vue +71 -0
- package/src/components/BaseSlider.story.vue +122 -0
- package/src/components/BaseSlider.vue +126 -0
- package/src/components/BaseTabs.story.vue +127 -0
- package/src/components/BaseTabs.vue +59 -0
- package/src/components/BaseTextarea.story.vue +91 -0
- package/src/components/BaseTextarea.vue +62 -0
- package/src/components/BaseToggle.story.vue +81 -0
- package/src/components/BaseToggle.vue +76 -0
- package/src/components/BatchProgressList.story.vue +92 -0
- package/src/components/BatchProgressList.vue +184 -0
- package/src/components/Breadcrumb.story.vue +106 -0
- package/src/components/Breadcrumb.vue +75 -0
- package/src/components/Calendar.story.vue +106 -0
- package/src/components/Calendar.vue +363 -0
- package/src/components/ChartContainer.story.vue +113 -0
- package/src/components/ChartContainer.vue +64 -0
- package/src/components/ChemicalFormula.story.vue +102 -0
- package/src/components/ChemicalFormula.vue +39 -0
- package/src/components/CollapsibleCard.story.vue +135 -0
- package/src/components/CollapsibleCard.vue +167 -0
- package/src/components/ColorSlider.story.vue +120 -0
- package/src/components/ColorSlider.vue +164 -0
- package/src/components/ConcentrationInput.story.vue +77 -0
- package/src/components/ConcentrationInput.vue +185 -0
- package/src/components/ConfirmDialog.story.vue +248 -0
- package/src/components/ConfirmDialog.vue +93 -0
- package/src/components/DataFrame.story.vue +148 -0
- package/src/components/DataFrame.vue +419 -0
- package/src/components/DatePicker.story.vue +119 -0
- package/src/components/DatePicker.vue +330 -0
- package/src/components/DateTimePicker.story.vue +112 -0
- package/src/components/DateTimePicker.vue +392 -0
- package/src/components/Divider.story.vue +80 -0
- package/src/components/Divider.vue +49 -0
- package/src/components/DoseCalculator.story.vue +68 -0
- package/src/components/DoseCalculator.vue +476 -0
- package/src/components/DropdownButton.story.vue +102 -0
- package/src/components/DropdownButton.vue +181 -0
- package/src/components/EmptyState.story.vue +135 -0
- package/src/components/EmptyState.vue +69 -0
- package/src/components/ExperimentCodeBadge.story.vue +77 -0
- package/src/components/ExperimentCodeBadge.vue +64 -0
- package/src/components/ExperimentDataViewer.story.vue +174 -0
- package/src/components/ExperimentDataViewer.vue +288 -0
- package/src/components/ExperimentPopover.story.vue +384 -0
- package/src/components/ExperimentPopover.vue +241 -0
- package/src/components/ExperimentSelectorModal.story.vue +391 -0
- package/src/components/ExperimentSelectorModal.vue +387 -0
- package/src/components/ExperimentTimeline.story.vue +161 -0
- package/src/components/ExperimentTimeline.vue +382 -0
- package/src/components/FileUploader.story.vue +107 -0
- package/src/components/FileUploader.vue +386 -0
- package/src/components/FitPanel.story.vue +125 -0
- package/src/components/FitPanel.vue +120 -0
- package/src/components/FormActions.vue +92 -0
- package/src/components/FormBuilder.vue +214 -0
- package/src/components/FormField.story.vue +132 -0
- package/src/components/FormField.vue +59 -0
- package/src/components/FormFieldRenderer.vue +58 -0
- package/src/components/FormSection.vue +90 -0
- package/src/components/FormulaInput.story.vue +96 -0
- package/src/components/FormulaInput.vue +125 -0
- package/src/components/GroupAssigner.story.vue +83 -0
- package/src/components/GroupAssigner.vue +284 -0
- package/src/components/GroupingModal.story.vue +52 -0
- package/src/components/GroupingModal.vue +422 -0
- package/src/components/IconButton.story.vue +135 -0
- package/src/components/IconButton.vue +73 -0
- package/src/components/LoadingSpinner.story.vue +70 -0
- package/src/components/LoadingSpinner.vue +50 -0
- package/src/components/MoleculeInput.story.vue +66 -0
- package/src/components/MoleculeInput.vue +426 -0
- package/src/components/MultiSelect.story.vue +132 -0
- package/src/components/MultiSelect.vue +118 -0
- package/src/components/NumberInput.story.vue +122 -0
- package/src/components/NumberInput.vue +160 -0
- package/src/components/PlateMapEditor.story.vue +92 -0
- package/src/components/PlateMapEditor.vue +513 -0
- package/src/components/ProgressBar.story.vue +148 -0
- package/src/components/ProgressBar.vue +114 -0
- package/src/components/ProtocolStepEditor.story.vue +69 -0
- package/src/components/ProtocolStepEditor.vue +522 -0
- package/src/components/RackEditor.story.vue +100 -0
- package/src/components/RackEditor.vue +371 -0
- package/src/components/ReagentEditor.story.vue +153 -0
- package/src/components/ReagentEditor.vue +418 -0
- package/src/components/ReagentList.story.vue +137 -0
- package/src/components/ReagentList.vue +463 -0
- package/src/components/ResourceCard.story.vue +150 -0
- package/src/components/ResourceCard.vue +161 -0
- package/src/components/SampleHierarchyTree.story.vue +161 -0
- package/src/components/SampleHierarchyTree.vue +256 -0
- package/src/components/SampleLegend.story.vue +91 -0
- package/src/components/SampleLegend.vue +119 -0
- package/src/components/SampleSelector.story.vue +111 -0
- package/src/components/SampleSelector.vue +1033 -0
- package/src/components/ScheduleCalendar.story.vue +195 -0
- package/src/components/ScheduleCalendar.vue +569 -0
- package/src/components/ScientificNumber.story.vue +127 -0
- package/src/components/ScientificNumber.vue +197 -0
- package/src/components/SegmentedControl.story.vue +132 -0
- package/src/components/SegmentedControl.vue +79 -0
- package/src/components/SequenceInput.story.vue +119 -0
- package/src/components/SequenceInput.vue +209 -0
- package/src/components/SettingsButton.story.vue +58 -0
- package/src/components/SettingsButton.vue +76 -0
- package/src/components/SettingsModal.story.vue +145 -0
- package/src/components/SettingsModal.vue +146 -0
- package/src/components/Skeleton.story.vue +141 -0
- package/src/components/Skeleton.vue +74 -0
- package/src/components/StatusIndicator.story.vue +99 -0
- package/src/components/StatusIndicator.vue +40 -0
- package/src/components/StepWizard.story.vue +155 -0
- package/src/components/StepWizard.vue +223 -0
- package/src/components/TagsInput.story.vue +155 -0
- package/src/components/TagsInput.vue +265 -0
- package/src/components/ThemeToggle.story.vue +36 -0
- package/src/components/ThemeToggle.vue +54 -0
- package/src/components/TimePicker.story.vue +96 -0
- package/src/components/TimePicker.vue +273 -0
- package/src/components/TimeRangeInput.story.vue +104 -0
- package/src/components/TimeRangeInput.vue +122 -0
- package/src/components/ToastNotification.story.vue +157 -0
- package/src/components/ToastNotification.vue +62 -0
- package/src/components/Tooltip.story.vue +138 -0
- package/src/components/Tooltip.vue +119 -0
- package/src/components/UnitInput.story.vue +194 -0
- package/src/components/UnitInput.vue +213 -0
- package/src/components/WellEditPopup.vue +234 -0
- package/src/components/WellPlate.story.vue +282 -0
- package/src/components/WellPlate.vue +830 -0
- package/src/components/index.ts +118 -0
- package/src/composables/experiment-utils.ts +57 -0
- package/src/composables/formBuilderRegistry.ts +79 -0
- package/src/composables/index.ts +140 -0
- package/src/composables/useApi.ts +167 -0
- package/src/composables/useAppExperiment.ts +159 -0
- package/src/composables/useAsync.ts +323 -0
- package/src/composables/useAuth.ts +445 -0
- package/src/composables/useAutoGroup.ts +641 -0
- package/src/composables/useChemicalFormula.ts +275 -0
- package/src/composables/useConcentrationUnits.ts +246 -0
- package/src/composables/useDoseCalculator.ts +370 -0
- package/src/composables/useExperimentData.ts +86 -0
- package/src/composables/useExperimentSave.ts +192 -0
- package/src/composables/useExperimentSelector.ts +292 -0
- package/src/composables/useForm.ts +416 -0
- package/src/composables/useFormBuilder.ts +383 -0
- package/src/composables/usePasskey.ts +216 -0
- package/src/composables/usePlatformContext.ts +299 -0
- package/src/composables/usePluginApi.ts +39 -0
- package/src/composables/usePluginConfig.ts +93 -0
- package/src/composables/useProtocolTemplates.ts +518 -0
- package/src/composables/useRackEditor.ts +222 -0
- package/src/composables/useReagentSeries.ts +91 -0
- package/src/composables/useScheduleDrag.ts +245 -0
- package/src/composables/useSequenceUtils.ts +105 -0
- package/src/composables/useTheme.ts +58 -0
- package/src/composables/useTimeUtils.ts +131 -0
- package/src/composables/useToast.ts +40 -0
- package/src/composables/useWellPlateEditor.ts +421 -0
- package/src/histoire.setup.ts +17 -0
- package/src/index.ts +367 -0
- package/src/install.ts +32 -0
- package/src/stores/auth.ts +152 -0
- package/src/stores/index.ts +2 -0
- package/src/stores/settings.ts +218 -0
- package/src/styles/components/alert-box.css +150 -0
- package/src/styles/components/app-avatar-menu.css +155 -0
- package/src/styles/components/app-container.css +33 -0
- package/src/styles/components/app-layout.css +98 -0
- package/src/styles/components/app-page-selector.css +191 -0
- package/src/styles/components/app-pill-nav.css +57 -0
- package/src/styles/components/app-plugin-switcher.css +209 -0
- package/src/styles/components/app-sidebar.css +145 -0
- package/src/styles/components/app-top-bar.css +492 -0
- package/src/styles/components/audit-trail.css +143 -0
- package/src/styles/components/auto-group-modal.css +644 -0
- package/src/styles/components/avatar.css +73 -0
- package/src/styles/components/batch-progress-list.css +196 -0
- package/src/styles/components/breadcrumb.css +64 -0
- package/src/styles/components/button.css +188 -0
- package/src/styles/components/calendar.css +192 -0
- package/src/styles/components/chart-container.css +69 -0
- package/src/styles/components/checkbox.css +123 -0
- package/src/styles/components/chemical-formula.css +46 -0
- package/src/styles/components/collapsible-card.css +253 -0
- package/src/styles/components/color-slider.css +110 -0
- package/src/styles/components/concentration-input.css +156 -0
- package/src/styles/components/confirm-dialog.css +183 -0
- package/src/styles/components/dataframe.css +382 -0
- package/src/styles/components/date-picker.css +243 -0
- package/src/styles/components/datetime-picker.css +229 -0
- package/src/styles/components/divider.css +63 -0
- package/src/styles/components/dose-calculator.css +301 -0
- package/src/styles/components/dropdown-button.css +280 -0
- package/src/styles/components/empty-state.css +151 -0
- package/src/styles/components/experiment-code-badge.css +33 -0
- package/src/styles/components/experiment-data-viewer.css +138 -0
- package/src/styles/components/experiment-popover.css +562 -0
- package/src/styles/components/experiment-selector-modal.css +285 -0
- package/src/styles/components/experiment-timeline.css +529 -0
- package/src/styles/components/file-uploader.css +310 -0
- package/src/styles/components/fit-panel.css +67 -0
- package/src/styles/components/form-builder.css +69 -0
- package/src/styles/components/form-field.css +48 -0
- package/src/styles/components/formula-input.css +103 -0
- package/src/styles/components/group-assigner.css +200 -0
- package/src/styles/components/grouping-modal.css +323 -0
- package/src/styles/components/icon-button.css +192 -0
- package/src/styles/components/input.css +66 -0
- package/src/styles/components/loading-spinner.css +67 -0
- package/src/styles/components/modal.css +350 -0
- package/src/styles/components/molecule-input.css +186 -0
- package/src/styles/components/multi-select.css +131 -0
- package/src/styles/components/number-input.css +199 -0
- package/src/styles/components/pill.css +188 -0
- package/src/styles/components/plate-map-editor.css +464 -0
- package/src/styles/components/progress-bar.css +133 -0
- package/src/styles/components/protocol-step-editor.css +449 -0
- package/src/styles/components/rack-editor.css +265 -0
- package/src/styles/components/radio-group.css +240 -0
- package/src/styles/components/reagent-editor.css +510 -0
- package/src/styles/components/reagent-list.css +407 -0
- package/src/styles/components/resource-card.css +360 -0
- package/src/styles/components/sample-hierarchy-tree.css +314 -0
- package/src/styles/components/sample-legend.css +201 -0
- package/src/styles/components/sample-selector.css +751 -0
- package/src/styles/components/schedule-calendar.css +478 -0
- package/src/styles/components/scientific-number.css +63 -0
- package/src/styles/components/segmented-control.css +197 -0
- package/src/styles/components/select.css +77 -0
- package/src/styles/components/sequence-input.css +184 -0
- package/src/styles/components/settings-button.css +94 -0
- package/src/styles/components/settings-modal.css +95 -0
- package/src/styles/components/skeleton.css +49 -0
- package/src/styles/components/slider.css +74 -0
- package/src/styles/components/status-indicator.css +66 -0
- package/src/styles/components/step-wizard.css +192 -0
- package/src/styles/components/tabs.css +95 -0
- package/src/styles/components/tags-input.css +195 -0
- package/src/styles/components/textarea.css +82 -0
- package/src/styles/components/theme-toggle.css +69 -0
- package/src/styles/components/time-picker.css +171 -0
- package/src/styles/components/time-range-input.css +42 -0
- package/src/styles/components/toast.css +91 -0
- package/src/styles/components/toggle.css +146 -0
- package/src/styles/components/tooltip.css +91 -0
- package/src/styles/components/unit-input.css +123 -0
- package/src/styles/components/well-edit-popup.css +252 -0
- package/src/styles/components/well-plate.css +307 -0
- package/src/styles/index.css +87 -0
- package/src/styles/variables.css +1117 -0
- package/src/tailwind.preset.ts +61 -0
- package/src/types/auth.ts +55 -0
- package/src/types/auto-group.ts +40 -0
- package/src/types/components.ts +710 -0
- package/src/types/form-builder.ts +197 -0
- package/src/types/index.ts +207 -0
- package/src/types/platform.ts +116 -0
- package/src/utils/color.ts +96 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { SequenceType, SequenceStats } from '../composables/useSequenceUtils';
|
|
2
|
+
interface Props {
|
|
3
|
+
modelValue?: string;
|
|
4
|
+
type?: SequenceType;
|
|
5
|
+
readonly?: boolean;
|
|
6
|
+
showStats?: boolean;
|
|
7
|
+
showTools?: boolean;
|
|
8
|
+
maxLength?: number;
|
|
9
|
+
placeholder?: string;
|
|
10
|
+
rows?: number;
|
|
11
|
+
error?: boolean;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
}
|
|
14
|
+
declare function __VLS_template(): {
|
|
15
|
+
attrs: Partial<{}>;
|
|
16
|
+
slots: Readonly<{
|
|
17
|
+
tools?(props: {
|
|
18
|
+
sequence: string;
|
|
19
|
+
type: "dna" | "rna" | "protein";
|
|
20
|
+
stats: SequenceStats;
|
|
21
|
+
}): unknown;
|
|
22
|
+
}> & {
|
|
23
|
+
tools?(props: {
|
|
24
|
+
sequence: string;
|
|
25
|
+
type: "dna" | "rna" | "protein";
|
|
26
|
+
stats: SequenceStats;
|
|
27
|
+
}): unknown;
|
|
28
|
+
};
|
|
29
|
+
refs: {};
|
|
30
|
+
rootEl: HTMLDivElement;
|
|
31
|
+
};
|
|
32
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
33
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
34
|
+
"update:modelValue": (value: string) => any;
|
|
35
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
36
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
37
|
+
}>, {
|
|
38
|
+
error: boolean;
|
|
39
|
+
disabled: boolean;
|
|
40
|
+
type: SequenceType;
|
|
41
|
+
modelValue: string;
|
|
42
|
+
placeholder: string;
|
|
43
|
+
readonly: boolean;
|
|
44
|
+
rows: number;
|
|
45
|
+
showStats: boolean;
|
|
46
|
+
showTools: boolean;
|
|
47
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
48
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
49
|
+
export default _default;
|
|
50
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
51
|
+
new (): {
|
|
52
|
+
$slots: S;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
size?: 'sm' | 'md' | 'lg';
|
|
3
|
+
}
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
attrs: Partial<{}>;
|
|
6
|
+
slots: {
|
|
7
|
+
default?(_: {}): any;
|
|
8
|
+
};
|
|
9
|
+
refs: {
|
|
10
|
+
dropdownRef: HTMLDivElement;
|
|
11
|
+
};
|
|
12
|
+
rootEl: HTMLDivElement;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
click: (event: MouseEvent) => any;
|
|
17
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
18
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
19
|
+
}>, {
|
|
20
|
+
size: "sm" | "md" | "lg";
|
|
21
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
22
|
+
dropdownRef: HTMLDivElement;
|
|
23
|
+
}, HTMLDivElement>;
|
|
24
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
25
|
+
export default _default;
|
|
26
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
|
+
new (): {
|
|
28
|
+
$slots: S;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { SettingsTab } from '../types';
|
|
2
|
+
interface Props {
|
|
3
|
+
modelValue: boolean;
|
|
4
|
+
title?: string;
|
|
5
|
+
tabs?: SettingsTab[];
|
|
6
|
+
showAppearance?: boolean;
|
|
7
|
+
size?: 'md' | 'lg' | 'xl';
|
|
8
|
+
}
|
|
9
|
+
declare function __VLS_template(): {
|
|
10
|
+
attrs: Partial<{}>;
|
|
11
|
+
slots: Partial<Record<`tab-${string}`, (_: {}) => any>> & {
|
|
12
|
+
appearance?(_: {}): any;
|
|
13
|
+
};
|
|
14
|
+
refs: {};
|
|
15
|
+
rootEl: any;
|
|
16
|
+
};
|
|
17
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
|
+
"update:modelValue": (value: boolean) => any;
|
|
20
|
+
close: () => any;
|
|
21
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
22
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
23
|
+
onClose?: (() => any) | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
size: "md" | "lg" | "xl";
|
|
26
|
+
title: string;
|
|
27
|
+
tabs: SettingsTab[];
|
|
28
|
+
showAppearance: boolean;
|
|
29
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
30
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
31
|
+
export default _default;
|
|
32
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
33
|
+
new (): {
|
|
34
|
+
$slots: S;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
variant?: 'text' | 'circular' | 'rectangular' | 'rounded';
|
|
3
|
+
width?: string | number;
|
|
4
|
+
height?: string | number;
|
|
5
|
+
animation?: 'pulse' | 'wave' | 'none';
|
|
6
|
+
}
|
|
7
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
8
|
+
variant: "text" | "circular" | "rectangular" | "rounded";
|
|
9
|
+
animation: "pulse" | "wave" | "none";
|
|
10
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
status?: 'success' | 'warning' | 'error' | 'info' | 'muted';
|
|
3
|
+
label?: string;
|
|
4
|
+
pulse?: boolean;
|
|
5
|
+
color?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
8
|
+
label: string;
|
|
9
|
+
status: "success" | "warning" | "error" | "info" | "muted";
|
|
10
|
+
color: string;
|
|
11
|
+
pulse: boolean;
|
|
12
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { WizardStep, WizardStepState } from '../types';
|
|
2
|
+
export interface Props {
|
|
3
|
+
steps: WizardStep[];
|
|
4
|
+
modelValue?: number;
|
|
5
|
+
linear?: boolean;
|
|
6
|
+
showProgress?: boolean;
|
|
7
|
+
showStepNumbers?: boolean;
|
|
8
|
+
size?: 'sm' | 'md' | 'lg';
|
|
9
|
+
}
|
|
10
|
+
declare function setStepValid(index: number, valid: boolean): void;
|
|
11
|
+
declare function goNext(): void;
|
|
12
|
+
declare function goBack(): void;
|
|
13
|
+
declare function finish(): void;
|
|
14
|
+
declare function cancel(): void;
|
|
15
|
+
declare function __VLS_template(): {
|
|
16
|
+
attrs: Partial<{}>;
|
|
17
|
+
slots: Partial<Record<`step-${string}`, (_: {
|
|
18
|
+
step: WizardStep;
|
|
19
|
+
index: number;
|
|
20
|
+
}) => any>> & {
|
|
21
|
+
progress?(_: {
|
|
22
|
+
steps: WizardStep[];
|
|
23
|
+
current: number;
|
|
24
|
+
states: WizardStepState[];
|
|
25
|
+
}): any;
|
|
26
|
+
navigation?(_: {
|
|
27
|
+
goBack: typeof goBack;
|
|
28
|
+
goNext: typeof goNext;
|
|
29
|
+
finish: typeof finish;
|
|
30
|
+
cancel: typeof cancel;
|
|
31
|
+
isFirst: boolean;
|
|
32
|
+
isLast: boolean;
|
|
33
|
+
canProceed: boolean;
|
|
34
|
+
}): any;
|
|
35
|
+
};
|
|
36
|
+
refs: {};
|
|
37
|
+
rootEl: HTMLDivElement;
|
|
38
|
+
};
|
|
39
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
40
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
41
|
+
setStepValid: typeof setStepValid;
|
|
42
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
43
|
+
"update:modelValue": (index: number) => any;
|
|
44
|
+
cancel: () => any;
|
|
45
|
+
complete: () => any;
|
|
46
|
+
"step-change": (change: [from: number, to: number]) => any;
|
|
47
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
48
|
+
"onUpdate:modelValue"?: ((index: number) => any) | undefined;
|
|
49
|
+
onCancel?: (() => any) | undefined;
|
|
50
|
+
onComplete?: (() => any) | undefined;
|
|
51
|
+
"onStep-change"?: ((change: [from: number, to: number]) => any) | undefined;
|
|
52
|
+
}>, {
|
|
53
|
+
size: "sm" | "md" | "lg";
|
|
54
|
+
modelValue: number;
|
|
55
|
+
linear: boolean;
|
|
56
|
+
showProgress: boolean;
|
|
57
|
+
showStepNumbers: boolean;
|
|
58
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
59
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
60
|
+
export default _default;
|
|
61
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
62
|
+
new (): {
|
|
63
|
+
$slots: S;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
interface TagSuggestion {
|
|
2
|
+
value: string;
|
|
3
|
+
count?: number;
|
|
4
|
+
}
|
|
5
|
+
interface TagCategory {
|
|
6
|
+
name: string;
|
|
7
|
+
prefix: string;
|
|
8
|
+
color?: 'primary' | 'success' | 'warning' | 'error' | 'info' | 'neutral';
|
|
9
|
+
}
|
|
10
|
+
interface Props {
|
|
11
|
+
modelValue?: string[];
|
|
12
|
+
placeholder?: string;
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
error?: boolean;
|
|
15
|
+
size?: 'sm' | 'md' | 'lg';
|
|
16
|
+
maxTags?: number;
|
|
17
|
+
allowDuplicates?: boolean;
|
|
18
|
+
suggestions?: string[] | TagSuggestion[];
|
|
19
|
+
categories?: TagCategory[];
|
|
20
|
+
activeCategory?: string;
|
|
21
|
+
}
|
|
22
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
23
|
+
"update:modelValue": (value: string[]) => any;
|
|
24
|
+
"update:activeCategory": (prefix: string) => any;
|
|
25
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
26
|
+
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
27
|
+
"onUpdate:activeCategory"?: ((prefix: string) => any) | undefined;
|
|
28
|
+
}>, {
|
|
29
|
+
error: boolean;
|
|
30
|
+
disabled: boolean;
|
|
31
|
+
size: "sm" | "md" | "lg";
|
|
32
|
+
modelValue: string[];
|
|
33
|
+
allowDuplicates: boolean;
|
|
34
|
+
suggestions: string[] | TagSuggestion[];
|
|
35
|
+
categories: TagCategory[];
|
|
36
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
37
|
+
inputRef: HTMLInputElement;
|
|
38
|
+
}, HTMLDivElement>;
|
|
39
|
+
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
size?: 'sm' | 'md' | 'lg';
|
|
3
|
+
}
|
|
4
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
5
|
+
size: "sm" | "md" | "lg";
|
|
6
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
modelValue?: string;
|
|
3
|
+
placeholder?: string;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
error?: boolean;
|
|
6
|
+
size?: 'sm' | 'md' | 'lg';
|
|
7
|
+
min?: string;
|
|
8
|
+
max?: string;
|
|
9
|
+
step?: number;
|
|
10
|
+
format?: '12h' | '24h';
|
|
11
|
+
clearable?: boolean;
|
|
12
|
+
}
|
|
13
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
|
+
"update:modelValue": (value: string | undefined) => any;
|
|
15
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
16
|
+
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
17
|
+
}>, {
|
|
18
|
+
error: boolean;
|
|
19
|
+
disabled: boolean;
|
|
20
|
+
size: "sm" | "md" | "lg";
|
|
21
|
+
placeholder: string;
|
|
22
|
+
step: number;
|
|
23
|
+
clearable: boolean;
|
|
24
|
+
format: "12h" | "24h";
|
|
25
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
26
|
+
containerRef: HTMLDivElement;
|
|
27
|
+
listRef: HTMLUListElement;
|
|
28
|
+
}, HTMLDivElement>;
|
|
29
|
+
export default _default;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { TimeRange } from '../types/components';
|
|
2
|
+
interface Props {
|
|
3
|
+
modelValue?: TimeRange;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
error?: boolean;
|
|
6
|
+
size?: 'sm' | 'md' | 'lg';
|
|
7
|
+
min?: string;
|
|
8
|
+
max?: string;
|
|
9
|
+
step?: number;
|
|
10
|
+
format?: '12h' | '24h';
|
|
11
|
+
showDuration?: boolean;
|
|
12
|
+
blockedRanges?: TimeRange[];
|
|
13
|
+
}
|
|
14
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
|
+
"update:modelValue": (value: TimeRange | undefined) => any;
|
|
16
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
17
|
+
"onUpdate:modelValue"?: ((value: TimeRange | undefined) => any) | undefined;
|
|
18
|
+
}>, {
|
|
19
|
+
error: boolean;
|
|
20
|
+
disabled: boolean;
|
|
21
|
+
size: "sm" | "md" | "lg";
|
|
22
|
+
step: number;
|
|
23
|
+
format: "12h" | "24h";
|
|
24
|
+
showDuration: boolean;
|
|
25
|
+
blockedRanges: TimeRange[];
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
27
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
text: string;
|
|
3
|
+
position?: 'top' | 'bottom' | 'left' | 'right';
|
|
4
|
+
delay?: number;
|
|
5
|
+
shortcut?: string;
|
|
6
|
+
maxWidth?: string | number;
|
|
7
|
+
}
|
|
8
|
+
declare function __VLS_template(): {
|
|
9
|
+
attrs: Partial<{}>;
|
|
10
|
+
slots: {
|
|
11
|
+
default?(_: {}): any;
|
|
12
|
+
};
|
|
13
|
+
refs: {
|
|
14
|
+
triggerRef: HTMLSpanElement;
|
|
15
|
+
contentRef: HTMLSpanElement;
|
|
16
|
+
};
|
|
17
|
+
rootEl: HTMLSpanElement;
|
|
18
|
+
};
|
|
19
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
20
|
+
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
21
|
+
position: "top" | "bottom" | "left" | "right";
|
|
22
|
+
delay: number;
|
|
23
|
+
shortcut: string;
|
|
24
|
+
maxWidth: string | number;
|
|
25
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
26
|
+
triggerRef: HTMLSpanElement;
|
|
27
|
+
contentRef: HTMLSpanElement;
|
|
28
|
+
}, HTMLSpanElement>;
|
|
29
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
30
|
+
export default _default;
|
|
31
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { UnitOption } from '../types';
|
|
2
|
+
interface Props {
|
|
3
|
+
modelValue?: number;
|
|
4
|
+
unit?: string;
|
|
5
|
+
units: UnitOption[];
|
|
6
|
+
precision?: number;
|
|
7
|
+
min?: number;
|
|
8
|
+
max?: number;
|
|
9
|
+
step?: number;
|
|
10
|
+
placeholder?: string;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
error?: boolean;
|
|
13
|
+
size?: 'sm' | 'md' | 'lg';
|
|
14
|
+
convertOnUnitChange?: boolean;
|
|
15
|
+
}
|
|
16
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
|
+
"update:modelValue": (value: number | undefined) => any;
|
|
18
|
+
change: (data: {
|
|
19
|
+
value: number | undefined;
|
|
20
|
+
unit: string;
|
|
21
|
+
}) => any;
|
|
22
|
+
"update:unit": (unit: string) => any;
|
|
23
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
24
|
+
"onUpdate:modelValue"?: ((value: number | undefined) => any) | undefined;
|
|
25
|
+
onChange?: ((data: {
|
|
26
|
+
value: number | undefined;
|
|
27
|
+
unit: string;
|
|
28
|
+
}) => any) | undefined;
|
|
29
|
+
"onUpdate:unit"?: ((unit: string) => any) | undefined;
|
|
30
|
+
}>, {
|
|
31
|
+
error: boolean;
|
|
32
|
+
disabled: boolean;
|
|
33
|
+
size: "sm" | "md" | "lg";
|
|
34
|
+
placeholder: string;
|
|
35
|
+
step: number;
|
|
36
|
+
precision: number;
|
|
37
|
+
convertOnUnitChange: boolean;
|
|
38
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
39
|
+
export default _default;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Well, WellEditData, WellEditField } from '../types';
|
|
2
|
+
interface Props {
|
|
3
|
+
wellId: string;
|
|
4
|
+
wellData?: Partial<Well>;
|
|
5
|
+
editFields?: WellEditField[];
|
|
6
|
+
defaultInjectionVolume?: number;
|
|
7
|
+
position: {
|
|
8
|
+
x: number;
|
|
9
|
+
y: number;
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
|
+
clear: () => any;
|
|
14
|
+
close: () => any;
|
|
15
|
+
save: (data: WellEditData) => any;
|
|
16
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
17
|
+
onClear?: (() => any) | undefined;
|
|
18
|
+
onClose?: (() => any) | undefined;
|
|
19
|
+
onSave?: ((data: WellEditData) => any) | undefined;
|
|
20
|
+
}>, {
|
|
21
|
+
wellData: Partial<Well>;
|
|
22
|
+
editFields: WellEditField[];
|
|
23
|
+
defaultInjectionVolume: number;
|
|
24
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
export default _default;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { WellPlateFormat, WellPlateSelectionMode, WellPlateSize, Well, HeatmapConfig, WellShape, WellEditField, WellEditData, WellLegendItem, ColumnCondition, RowCondition } from '../types';
|
|
2
|
+
interface Props {
|
|
3
|
+
modelValue?: string[];
|
|
4
|
+
format?: WellPlateFormat;
|
|
5
|
+
wells?: Record<string, Partial<Well>>;
|
|
6
|
+
selectionMode?: WellPlateSelectionMode;
|
|
7
|
+
showLabels?: boolean;
|
|
8
|
+
showWellIds?: boolean;
|
|
9
|
+
showSampleTypeIndicator?: boolean;
|
|
10
|
+
heatmap?: HeatmapConfig;
|
|
11
|
+
sampleColors?: Record<string, string>;
|
|
12
|
+
zoom?: number;
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
readonly?: boolean;
|
|
15
|
+
size?: WellPlateSize;
|
|
16
|
+
wellShape?: WellShape;
|
|
17
|
+
showWellLabels?: boolean;
|
|
18
|
+
showBadges?: boolean;
|
|
19
|
+
editable?: boolean;
|
|
20
|
+
editFields?: WellEditField[];
|
|
21
|
+
defaultInjectionVolume?: number;
|
|
22
|
+
showLegend?: boolean;
|
|
23
|
+
legendItems?: WellLegendItem[];
|
|
24
|
+
columnConditions?: ColumnCondition[];
|
|
25
|
+
rowConditions?: RowCondition[];
|
|
26
|
+
}
|
|
27
|
+
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
28
|
+
"update:modelValue": (wellIds: string[]) => any;
|
|
29
|
+
"well-click": (wellId: string, event: MouseEvent) => any;
|
|
30
|
+
"well-hover": (wellId: string | null, event?: MouseEvent | undefined) => any;
|
|
31
|
+
"selection-change": (wellIds: string[]) => any;
|
|
32
|
+
"context-menu": (wellId: string, event: MouseEvent) => any;
|
|
33
|
+
"well-move": (sourceWellId: string, targetWellId: string) => any;
|
|
34
|
+
"well-edit": (wellId: string, data: WellEditData) => any;
|
|
35
|
+
"well-clear": (wellId: string) => any;
|
|
36
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
37
|
+
"onUpdate:modelValue"?: ((wellIds: string[]) => any) | undefined;
|
|
38
|
+
"onWell-click"?: ((wellId: string, event: MouseEvent) => any) | undefined;
|
|
39
|
+
"onWell-hover"?: ((wellId: string | null, event?: MouseEvent | undefined) => any) | undefined;
|
|
40
|
+
"onSelection-change"?: ((wellIds: string[]) => any) | undefined;
|
|
41
|
+
"onContext-menu"?: ((wellId: string, event: MouseEvent) => any) | undefined;
|
|
42
|
+
"onWell-move"?: ((sourceWellId: string, targetWellId: string) => any) | undefined;
|
|
43
|
+
"onWell-edit"?: ((wellId: string, data: WellEditData) => any) | undefined;
|
|
44
|
+
"onWell-clear"?: ((wellId: string) => any) | undefined;
|
|
45
|
+
}>, {
|
|
46
|
+
disabled: boolean;
|
|
47
|
+
size: WellPlateSize;
|
|
48
|
+
modelValue: string[];
|
|
49
|
+
readonly: boolean;
|
|
50
|
+
showLabels: boolean;
|
|
51
|
+
selectionMode: WellPlateSelectionMode;
|
|
52
|
+
format: WellPlateFormat;
|
|
53
|
+
editFields: WellEditField[];
|
|
54
|
+
defaultInjectionVolume: number;
|
|
55
|
+
wells: Record<string, Partial<Well>>;
|
|
56
|
+
showWellIds: boolean;
|
|
57
|
+
showSampleTypeIndicator: boolean;
|
|
58
|
+
heatmap: HeatmapConfig;
|
|
59
|
+
sampleColors: Record<string, string>;
|
|
60
|
+
zoom: number;
|
|
61
|
+
wellShape: WellShape;
|
|
62
|
+
showWellLabels: boolean;
|
|
63
|
+
showBadges: boolean;
|
|
64
|
+
editable: boolean;
|
|
65
|
+
showLegend: boolean;
|
|
66
|
+
legendItems: WellLegendItem[];
|
|
67
|
+
columnConditions: ColumnCondition[];
|
|
68
|
+
rowConditions: RowCondition[];
|
|
69
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
70
|
+
plateRef: HTMLDivElement;
|
|
71
|
+
tableRef: HTMLTableElement;
|
|
72
|
+
}, HTMLDivElement>;
|
|
73
|
+
export default _default;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
export { default as BaseButton } from './BaseButton.vue';
|
|
2
|
+
export { default as BaseInput } from './BaseInput.vue';
|
|
3
|
+
export { default as BaseTextarea } from './BaseTextarea.vue';
|
|
4
|
+
export { default as BaseSelect } from './BaseSelect.vue';
|
|
5
|
+
export { default as BaseCheckbox } from './BaseCheckbox.vue';
|
|
6
|
+
export { default as BaseToggle } from './BaseToggle.vue';
|
|
7
|
+
export { default as BaseRadioGroup } from './BaseRadioGroup.vue';
|
|
8
|
+
export { default as BaseSlider } from './BaseSlider.vue';
|
|
9
|
+
export { default as ColorSlider } from './ColorSlider.vue';
|
|
10
|
+
export { default as BaseTabs } from './BaseTabs.vue';
|
|
11
|
+
export { default as BaseModal } from './BaseModal.vue';
|
|
12
|
+
export { default as SegmentedControl } from './SegmentedControl.vue';
|
|
13
|
+
export { default as MultiSelect } from './MultiSelect.vue';
|
|
14
|
+
export { default as BasePill } from './BasePill.vue';
|
|
15
|
+
export { default as DropdownButton } from './DropdownButton.vue';
|
|
16
|
+
export { default as Calendar } from './Calendar.vue';
|
|
17
|
+
export { default as DataFrame } from './DataFrame.vue';
|
|
18
|
+
export { default as FormField } from './FormField.vue';
|
|
19
|
+
export { default as DatePicker } from './DatePicker.vue';
|
|
20
|
+
export { default as TimePicker } from './TimePicker.vue';
|
|
21
|
+
export { default as TagsInput } from './TagsInput.vue';
|
|
22
|
+
export { default as NumberInput } from './NumberInput.vue';
|
|
23
|
+
export { default as FileUploader } from './FileUploader.vue';
|
|
24
|
+
export { default as AlertBox } from './AlertBox.vue';
|
|
25
|
+
export { default as ToastNotification } from './ToastNotification.vue';
|
|
26
|
+
export { default as AppToastContainer } from './ToastNotification.vue';
|
|
27
|
+
export { default as IconButton } from './IconButton.vue';
|
|
28
|
+
export { default as ThemeToggle } from './ThemeToggle.vue';
|
|
29
|
+
export { default as SettingsButton } from './SettingsButton.vue';
|
|
30
|
+
export { default as CollapsibleCard } from './CollapsibleCard.vue';
|
|
31
|
+
export { default as AppTopBar } from './AppTopBar.vue';
|
|
32
|
+
export { default as AppPageSelector } from './AppPageSelector.vue';
|
|
33
|
+
export { default as AppPillNav } from './AppPillNav.vue';
|
|
34
|
+
export { default as AppAvatarMenu } from './AppAvatarMenu.vue';
|
|
35
|
+
export { default as AppPluginSwitcher } from './AppPluginSwitcher.vue';
|
|
36
|
+
export { default as AppSidebar } from './AppSidebar.vue';
|
|
37
|
+
export { default as AppLayout } from './AppLayout.vue';
|
|
38
|
+
export { default as AppContainer } from './AppContainer.vue';
|
|
39
|
+
export { default as Skeleton } from './Skeleton.vue';
|
|
40
|
+
export { default as LoadingSpinner } from './LoadingSpinner.vue';
|
|
41
|
+
export { default as Divider } from './Divider.vue';
|
|
42
|
+
export { default as StatusIndicator } from './StatusIndicator.vue';
|
|
43
|
+
export { default as ProgressBar } from './ProgressBar.vue';
|
|
44
|
+
export { default as Avatar } from './Avatar.vue';
|
|
45
|
+
export { default as EmptyState } from './EmptyState.vue';
|
|
46
|
+
export { default as Breadcrumb } from './Breadcrumb.vue';
|
|
47
|
+
export { default as Tooltip } from './Tooltip.vue';
|
|
48
|
+
export { default as ConfirmDialog } from './ConfirmDialog.vue';
|
|
49
|
+
export { default as ChartContainer } from './ChartContainer.vue';
|
|
50
|
+
export { default as SettingsModal } from './SettingsModal.vue';
|
|
51
|
+
export { default as WellPlate } from './WellPlate.vue';
|
|
52
|
+
export { default as RackEditor } from './RackEditor.vue';
|
|
53
|
+
export { default as SampleLegend } from './SampleLegend.vue';
|
|
54
|
+
export { default as PlateMapEditor } from './PlateMapEditor.vue';
|
|
55
|
+
export { default as ExperimentTimeline } from './ExperimentTimeline.vue';
|
|
56
|
+
export { default as SampleSelector } from './SampleSelector.vue';
|
|
57
|
+
export { default as GroupingModal } from './GroupingModal.vue';
|
|
58
|
+
export { default as AutoGroupModal } from './AutoGroupModal.vue';
|
|
59
|
+
export { default as GroupAssigner } from './GroupAssigner.vue';
|
|
60
|
+
export { default as MoleculeInput } from './MoleculeInput.vue';
|
|
61
|
+
export { default as ConcentrationInput } from './ConcentrationInput.vue';
|
|
62
|
+
export { default as DoseCalculator } from './DoseCalculator.vue';
|
|
63
|
+
export { default as ReagentEditor, type ReagentDefinition } from './ReagentEditor.vue';
|
|
64
|
+
export { default as ReagentList } from './ReagentList.vue';
|
|
65
|
+
export { default as SampleHierarchyTree } from './SampleHierarchyTree.vue';
|
|
66
|
+
export { default as ProtocolStepEditor } from './ProtocolStepEditor.vue';
|
|
67
|
+
export { default as ScientificNumber } from './ScientificNumber.vue';
|
|
68
|
+
export { default as ChemicalFormula } from './ChemicalFormula.vue';
|
|
69
|
+
export { default as FormulaInput } from './FormulaInput.vue';
|
|
70
|
+
export { default as SequenceInput } from './SequenceInput.vue';
|
|
71
|
+
export { default as UnitInput } from './UnitInput.vue';
|
|
72
|
+
export { default as StepWizard } from './StepWizard.vue';
|
|
73
|
+
export { default as AuditTrail } from './AuditTrail.vue';
|
|
74
|
+
export { default as BatchProgressList } from './BatchProgressList.vue';
|
|
75
|
+
export { default as FormBuilder } from './FormBuilder.vue';
|
|
76
|
+
export { default as FormSection } from './FormSection.vue';
|
|
77
|
+
export { default as FormActions } from './FormActions.vue';
|
|
78
|
+
export { default as FormFieldRenderer } from './FormFieldRenderer.vue';
|
|
79
|
+
export { default as ExperimentDataViewer } from './ExperimentDataViewer.vue';
|
|
80
|
+
export { default as ExperimentCodeBadge } from './ExperimentCodeBadge.vue';
|
|
81
|
+
export { default as DateTimePicker } from './DateTimePicker.vue';
|
|
82
|
+
export { default as TimeRangeInput } from './TimeRangeInput.vue';
|
|
83
|
+
export { default as ScheduleCalendar } from './ScheduleCalendar.vue';
|
|
84
|
+
export { default as ResourceCard } from './ResourceCard.vue';
|
|
85
|
+
export { default as ExperimentSelectorModal } from './ExperimentSelectorModal.vue';
|
|
86
|
+
export { default as ExperimentPopover } from './ExperimentPopover.vue';
|
|
87
|
+
export { default as FitPanel } from './FitPanel.vue';
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { $ as ExperimentPopover_default, A as SampleLegend_default, B as LoadingSpinner_default, D as StepWizard_default, E as AutoGroupModal_default, F as Breadcrumb_default, G as AppPluginSwitcher_default, H as AppLayout_default, I as Avatar_default, J as AppPageSelector_default, K as AppAvatarMenu_default, L as ProgressBar_default, M as WellPlate_default, N as ChartContainer_default, O as ExperimentTimeline_default, P as Tooltip_default, Q as Skeleton_default, R as StatusIndicator_default, S as SampleSelector_default, U as AppSidebar_default, V as AppContainer_default, W as AppTopBar_default, X as ExperimentCodeBadge_default, Y as ExperimentSelectorModal_default, Z as EmptyState_default, _ as ReagentList_default, _t as BaseButton_default, a as TimeRangeInput_default, at as IconButton_default, b as GroupAssigner_default, c as FormActions_default, ct as FormField_default, d as BatchProgressList_default, dt as DropdownButton_default, et as ConfirmDialog_default, f as AuditTrail_default, ft as BasePill_default, g as SampleHierarchyTree_default, gt as ColorSlider_default, h as ProtocolStepEditor_default, ht as BaseTabs_default, i as ScheduleCalendar_default, it as ThemeToggle_default, j as RackEditor_default, k as PlateMapEditor_default, l as FormSection_default, lt as DataFrame_default, m as ScientificNumber_default, mt as BaseModal_default, n as FitPanel_default, nt as CollapsibleCard_default, o as ExperimentDataViewer_default, ot as ToastNotification_default, p as ChemicalFormula_default, pt as SegmentedControl_default, q as AppPillNav_default, r as ResourceCard_default, rt as SettingsButton_default, s as FormBuilder_default, st as AlertBox_default, tt as SettingsModal_default, u as FormFieldRenderer_default, ut as Calendar_default, v as ReagentEditor_default, x as GroupingModal_default, y as DoseCalculator_default, z as Divider_default } from "../components-CKf-UpGi.js";
|
|
2
|
+
import { C as MoleculeInput_default, G as NumberInput_default, K as TagsInput_default, W as FileUploader_default, ct as BaseSlider_default, dt as BaseCheckbox_default, f as FormulaInput_default, ft as BaseSelect_default, l as UnitInput_default, lt as BaseRadioGroup_default, mt as BaseInput_default, ot as DatePicker_default, pt as BaseTextarea_default, q as TimePicker_default, s as DateTimePicker_default, st as MultiSelect_default, u as SequenceInput_default, ut as BaseToggle_default, x as ConcentrationInput_default } from "../useScheduleDrag-DAJueTbK.js";
|
|
3
|
+
export { AlertBox_default as AlertBox, AppAvatarMenu_default as AppAvatarMenu, AppContainer_default as AppContainer, AppLayout_default as AppLayout, AppPageSelector_default as AppPageSelector, AppPillNav_default as AppPillNav, AppPluginSwitcher_default as AppPluginSwitcher, AppSidebar_default as AppSidebar, ToastNotification_default as AppToastContainer, ToastNotification_default as ToastNotification, AppTopBar_default as AppTopBar, AuditTrail_default as AuditTrail, AutoGroupModal_default as AutoGroupModal, Avatar_default as Avatar, BaseButton_default as BaseButton, BaseCheckbox_default as BaseCheckbox, BaseInput_default as BaseInput, BaseModal_default as BaseModal, BasePill_default as BasePill, BaseRadioGroup_default as BaseRadioGroup, BaseSelect_default as BaseSelect, BaseSlider_default as BaseSlider, BaseTabs_default as BaseTabs, BaseTextarea_default as BaseTextarea, BaseToggle_default as BaseToggle, BatchProgressList_default as BatchProgressList, Breadcrumb_default as Breadcrumb, Calendar_default as Calendar, ChartContainer_default as ChartContainer, ChemicalFormula_default as ChemicalFormula, CollapsibleCard_default as CollapsibleCard, ColorSlider_default as ColorSlider, ConcentrationInput_default as ConcentrationInput, ConfirmDialog_default as ConfirmDialog, DataFrame_default as DataFrame, DatePicker_default as DatePicker, DateTimePicker_default as DateTimePicker, Divider_default as Divider, DoseCalculator_default as DoseCalculator, DropdownButton_default as DropdownButton, EmptyState_default as EmptyState, ExperimentCodeBadge_default as ExperimentCodeBadge, ExperimentDataViewer_default as ExperimentDataViewer, ExperimentPopover_default as ExperimentPopover, ExperimentSelectorModal_default as ExperimentSelectorModal, ExperimentTimeline_default as ExperimentTimeline, FileUploader_default as FileUploader, FitPanel_default as FitPanel, FormActions_default as FormActions, FormBuilder_default as FormBuilder, FormField_default as FormField, FormFieldRenderer_default as FormFieldRenderer, FormSection_default as FormSection, FormulaInput_default as FormulaInput, GroupAssigner_default as GroupAssigner, GroupingModal_default as GroupingModal, IconButton_default as IconButton, LoadingSpinner_default as LoadingSpinner, MoleculeInput_default as MoleculeInput, MultiSelect_default as MultiSelect, NumberInput_default as NumberInput, PlateMapEditor_default as PlateMapEditor, ProgressBar_default as ProgressBar, ProtocolStepEditor_default as ProtocolStepEditor, RackEditor_default as RackEditor, ReagentEditor_default as ReagentEditor, ReagentList_default as ReagentList, ResourceCard_default as ResourceCard, SampleHierarchyTree_default as SampleHierarchyTree, SampleLegend_default as SampleLegend, SampleSelector_default as SampleSelector, ScheduleCalendar_default as ScheduleCalendar, ScientificNumber_default as ScientificNumber, SegmentedControl_default as SegmentedControl, SequenceInput_default as SequenceInput, SettingsButton_default as SettingsButton, SettingsModal_default as SettingsModal, Skeleton_default as Skeleton, StatusIndicator_default as StatusIndicator, StepWizard_default as StepWizard, TagsInput_default as TagsInput, ThemeToggle_default as ThemeToggle, TimePicker_default as TimePicker, TimeRangeInput_default as TimeRangeInput, Tooltip_default as Tooltip, UnitInput_default as UnitInput, WellPlate_default as WellPlate };
|