@morscherlab/mint-sdk 1.0.0-rc.5 → 1.0.0-rc.7
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/dist/components/AppSidebar.vue.d.ts +6 -3
- package/dist/components/BaseCheckbox.vue.d.ts +6 -1
- package/dist/components/BasePill.vue.d.ts +1 -1
- package/dist/components/BaseRadioGroup.vue.d.ts +1 -1
- package/dist/components/BaseToggle.vue.d.ts +6 -1
- package/dist/components/CollapsibleCard.vue.d.ts +9 -0
- package/dist/components/ControlWorkspaceView.vue.d.ts +1 -1
- package/dist/components/DoseDesignWorkspaceView.vue.d.ts +1 -1
- package/dist/components/PluginWorkspaceView.vue.d.ts +5 -1
- package/dist/components/index.js +2 -2
- package/dist/{components-DtHA2bgp.js → components-Blx4MG--.js} +565 -1477
- package/dist/components-Blx4MG--.js.map +1 -0
- package/dist/composables/controlSchemaTypes.d.ts +7 -1
- package/dist/composables/index.js +3 -3
- package/dist/{composables-Dlg8jenH.js → composables-CHDjDIQT.js} +2 -2
- package/dist/{composables-Dlg8jenH.js.map → composables-CHDjDIQT.js.map} +1 -1
- package/dist/index.js +4 -4
- package/dist/install.js +2 -2
- package/dist/styles.css +867 -126
- package/dist/templates/index.js +1 -1
- package/dist/{templates-DtdUvJ4c.js → templates-DSbHJC4v.js} +1351 -120
- package/dist/templates-DSbHJC4v.js.map +1 -0
- package/dist/types/components.d.ts +12 -0
- package/dist/types/form-builder.d.ts +3 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/{useProtocolTemplates-Bm5vyH4_.js → useProtocolTemplates-BbPOYPzO.js} +2 -2
- package/dist/{useProtocolTemplates-Bm5vyH4_.js.map → useProtocolTemplates-BbPOYPzO.js.map} +1 -1
- package/package.json +1 -1
- package/src/__tests__/components/AppSidebar.test.ts +67 -0
- package/src/__tests__/components/CollapsibleCard.test.ts +47 -0
- package/src/__tests__/components/FormBuilder.test.ts +57 -0
- package/src/__tests__/components/PluginWorkspaceView.shell.test.ts +2 -0
- package/src/components/AppSidebar.story.vue +79 -6
- package/src/components/AppSidebar.vue +72 -0
- package/src/components/BaseCheckbox.story.vue +27 -0
- package/src/components/BaseCheckbox.vue +63 -1
- package/src/components/BaseToggle.story.vue +27 -0
- package/src/components/BaseToggle.vue +66 -1
- package/src/components/CollapsibleCard.vue +123 -45
- package/src/components/FormBuilder.story.vue +13 -0
- package/src/components/PluginWorkspaceView.shell.ts +1 -0
- package/src/components/PluginWorkspaceView.vue +3 -0
- package/src/components/internal/FormFieldRendererInternal.vue +23 -5
- package/src/composables/controlSchemaAdapters.ts +3 -0
- package/src/composables/controlSchemaFormFields.ts +3 -0
- package/src/composables/controlSchemaTypes.ts +8 -0
- package/src/styles/components/app-sidebar.css +134 -6
- package/src/styles/components/checkbox.css +87 -0
- package/src/styles/components/collapsible-card.css +154 -14
- package/src/styles/components/toggle.css +80 -0
- package/src/types/components.ts +21 -0
- package/src/types/form-builder.ts +3 -0
- package/src/types/index.ts +2 -0
- package/dist/components-DtHA2bgp.js.map +0 -1
- package/dist/templates-DtdUvJ4c.js.map +0 -1
|
@@ -90,6 +90,7 @@ declare function __VLS_template(): {
|
|
|
90
90
|
expand: typeof expandCollapsed;
|
|
91
91
|
}): any;
|
|
92
92
|
footer?(_: {}): any;
|
|
93
|
+
'collapsed-footer'?(_: {}): any;
|
|
93
94
|
};
|
|
94
95
|
refs: {};
|
|
95
96
|
rootEl: HTMLElement;
|
|
@@ -100,6 +101,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
100
101
|
"update:values": (values: Record<string, unknown>) => any;
|
|
101
102
|
"update:toggle": (sectionId: string, value: boolean) => any;
|
|
102
103
|
"update:collapsed": (value: boolean) => any;
|
|
104
|
+
"section-action": (sectionId: string, actionId: string) => any;
|
|
103
105
|
"form-submit": (sectionId: string, values: Record<string, unknown>) => any;
|
|
104
106
|
"form-cancel": (sectionId: string) => any;
|
|
105
107
|
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
@@ -107,15 +109,18 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
107
109
|
"onUpdate:values"?: ((values: Record<string, unknown>) => any) | undefined;
|
|
108
110
|
"onUpdate:toggle"?: ((sectionId: string, value: boolean) => any) | undefined;
|
|
109
111
|
"onUpdate:collapsed"?: ((value: boolean) => any) | undefined;
|
|
112
|
+
"onSection-action"?: ((sectionId: string, actionId: string) => any) | undefined;
|
|
110
113
|
"onForm-submit"?: ((sectionId: string, values: Record<string, unknown>) => any) | undefined;
|
|
111
114
|
"onForm-cancel"?: ((sectionId: string) => any) | undefined;
|
|
112
115
|
}>, {
|
|
113
116
|
values: Record<string, unknown>;
|
|
114
117
|
modelValue: Record<string, unknown>;
|
|
115
118
|
title: string;
|
|
116
|
-
variant: "default" | "analysis";
|
|
117
119
|
width: string;
|
|
120
|
+
floating: boolean;
|
|
121
|
+
variant: "default" | "analysis";
|
|
118
122
|
subtitle: string;
|
|
123
|
+
badge: string | number;
|
|
119
124
|
controlOptions: ControlWorkspaceOptions;
|
|
120
125
|
model: ControlModel | ControlModelBinding;
|
|
121
126
|
viewIds: string[];
|
|
@@ -126,8 +131,6 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
126
131
|
forms: Record<string, FormSchema>;
|
|
127
132
|
dense: boolean;
|
|
128
133
|
collapsible: boolean;
|
|
129
|
-
badge: string | number;
|
|
130
|
-
floating: boolean;
|
|
131
134
|
side: "left" | "right";
|
|
132
135
|
toggleState: Record<string, boolean>;
|
|
133
136
|
contentId: string;
|
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
/** Renders a styled checkbox with an optional label, size variants, and disabled state. */
|
|
2
1
|
interface Props {
|
|
3
2
|
modelValue?: boolean;
|
|
4
3
|
label?: string;
|
|
4
|
+
description?: string;
|
|
5
|
+
icon?: string | string[];
|
|
6
|
+
iconColor?: string;
|
|
7
|
+
iconBg?: string;
|
|
5
8
|
disabled?: boolean;
|
|
6
9
|
size?: 'sm' | 'md' | 'lg';
|
|
10
|
+
variant?: 'default' | 'row';
|
|
7
11
|
}
|
|
8
12
|
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
13
|
"update:modelValue": (value: boolean) => any;
|
|
@@ -13,5 +17,6 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
13
17
|
disabled: boolean;
|
|
14
18
|
size: "sm" | "md" | "lg";
|
|
15
19
|
modelValue: boolean;
|
|
20
|
+
variant: "default" | "row";
|
|
16
21
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLLabelElement>;
|
|
17
22
|
export default _default;
|
|
@@ -43,9 +43,9 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
43
43
|
}>, {
|
|
44
44
|
disabled: boolean;
|
|
45
45
|
size: PillSize;
|
|
46
|
+
icon: boolean;
|
|
46
47
|
color: PillColor;
|
|
47
48
|
variant: PillVariant;
|
|
48
|
-
icon: boolean;
|
|
49
49
|
removable: boolean;
|
|
50
50
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
51
51
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -15,7 +15,7 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
15
15
|
}>, {
|
|
16
16
|
disabled: boolean;
|
|
17
17
|
size: "sm" | "md" | "lg";
|
|
18
|
-
direction: "horizontal" | "vertical";
|
|
19
18
|
variant: "list" | "tile";
|
|
19
|
+
direction: "horizontal" | "vertical";
|
|
20
20
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
21
21
|
export default _default;
|
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
/** Renders an on/off toggle switch with label, size, and keyboard interaction support. */
|
|
2
1
|
interface Props {
|
|
3
2
|
modelValue?: boolean;
|
|
4
3
|
label?: string;
|
|
4
|
+
description?: string;
|
|
5
|
+
icon?: string | string[];
|
|
6
|
+
iconColor?: string;
|
|
7
|
+
iconBg?: string;
|
|
5
8
|
disabled?: boolean;
|
|
6
9
|
size?: 'sm' | 'md' | 'lg';
|
|
7
10
|
reverse?: boolean;
|
|
11
|
+
variant?: 'default' | 'row';
|
|
8
12
|
}
|
|
9
13
|
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
14
|
"update:modelValue": (value: boolean) => any;
|
|
@@ -15,5 +19,6 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
15
19
|
disabled: boolean;
|
|
16
20
|
size: "sm" | "md" | "lg";
|
|
17
21
|
modelValue: boolean;
|
|
22
|
+
variant: "default" | "row";
|
|
18
23
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
19
24
|
export default _default;
|
|
@@ -1,12 +1,16 @@
|
|
|
1
|
+
import { SidebarBadgeTone, SidebarToolSectionAction } from '../types';
|
|
1
2
|
interface Props {
|
|
2
3
|
title: string;
|
|
3
4
|
subtitle?: string;
|
|
5
|
+
badge?: string | number;
|
|
6
|
+
badgeTone?: SidebarBadgeTone;
|
|
4
7
|
defaultOpen?: boolean;
|
|
5
8
|
disabled?: boolean;
|
|
6
9
|
dense?: boolean;
|
|
7
10
|
icon?: string | string[];
|
|
8
11
|
iconColor?: string;
|
|
9
12
|
iconBg?: string;
|
|
13
|
+
actions?: SidebarToolSectionAction[];
|
|
10
14
|
showToggle?: boolean;
|
|
11
15
|
toggleValue?: boolean;
|
|
12
16
|
toggleColor?: string;
|
|
@@ -21,11 +25,16 @@ declare function __VLS_template(): {
|
|
|
21
25
|
};
|
|
22
26
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
23
27
|
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
28
|
+
action: (actionId: string) => any;
|
|
24
29
|
"update:toggleValue": (value: boolean) => any;
|
|
25
30
|
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
31
|
+
onAction?: ((actionId: string) => any) | undefined;
|
|
26
32
|
"onUpdate:toggleValue"?: ((value: boolean) => any) | undefined;
|
|
27
33
|
}>, {
|
|
28
34
|
disabled: boolean;
|
|
35
|
+
badge: string | number;
|
|
36
|
+
badgeTone: SidebarBadgeTone;
|
|
37
|
+
actions: SidebarToolSectionAction[];
|
|
29
38
|
defaultOpen: boolean;
|
|
30
39
|
showToggle: boolean;
|
|
31
40
|
dense: boolean;
|
|
@@ -111,6 +111,7 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
111
111
|
values: Record<string, unknown>;
|
|
112
112
|
modelValue: Record<string, unknown>;
|
|
113
113
|
title: string;
|
|
114
|
+
floating: boolean;
|
|
114
115
|
subtitle: string;
|
|
115
116
|
initialValues: Record<string, unknown>;
|
|
116
117
|
controls: ControlSchema;
|
|
@@ -121,7 +122,6 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
121
122
|
componentPropsById: ControlComponentPropsByIdMap;
|
|
122
123
|
dense: boolean;
|
|
123
124
|
showSettings: boolean;
|
|
124
|
-
floating: boolean;
|
|
125
125
|
formEnhancements: FormEnhancements<Record<string, unknown>>;
|
|
126
126
|
showFormActions: boolean;
|
|
127
127
|
formLoading: boolean;
|
|
@@ -112,13 +112,13 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
112
112
|
values: Record<string, unknown>;
|
|
113
113
|
modelValue: Record<string, unknown>;
|
|
114
114
|
title: string;
|
|
115
|
+
floating: boolean;
|
|
115
116
|
subtitle: string;
|
|
116
117
|
initialValues: Record<string, unknown>;
|
|
117
118
|
controlOptions: ControlWorkspaceOptions;
|
|
118
119
|
model: ControlModel | ControlModelBinding;
|
|
119
120
|
dense: boolean;
|
|
120
121
|
showSettings: boolean;
|
|
121
|
-
floating: boolean;
|
|
122
122
|
formEnhancements: FormEnhancements<Record<string, unknown>>;
|
|
123
123
|
showFormActions: boolean;
|
|
124
124
|
formLoading: boolean;
|
|
@@ -18,6 +18,7 @@ declare function __VLS_template(): {
|
|
|
18
18
|
'settings-appearance'?: (props: PluginWorkspaceForwardedSlotProps) => unknown;
|
|
19
19
|
header?: (props: PluginWorkspaceForwardedSlotProps) => unknown;
|
|
20
20
|
collapsed?: (props: PluginWorkspaceForwardedSlotProps) => unknown;
|
|
21
|
+
'collapsed-footer'?: (props: PluginWorkspaceForwardedSlotProps) => unknown;
|
|
21
22
|
footer?: (props: PluginWorkspaceForwardedSlotProps) => unknown;
|
|
22
23
|
}> & {
|
|
23
24
|
default?: (props: PluginWorkspaceSlotProps) => unknown;
|
|
@@ -35,6 +36,7 @@ declare function __VLS_template(): {
|
|
|
35
36
|
'settings-appearance'?: (props: PluginWorkspaceForwardedSlotProps) => unknown;
|
|
36
37
|
header?: (props: PluginWorkspaceForwardedSlotProps) => unknown;
|
|
37
38
|
collapsed?: (props: PluginWorkspaceForwardedSlotProps) => unknown;
|
|
39
|
+
'collapsed-footer'?: (props: PluginWorkspaceForwardedSlotProps) => unknown;
|
|
38
40
|
footer?: (props: PluginWorkspaceForwardedSlotProps) => unknown;
|
|
39
41
|
};
|
|
40
42
|
refs: {};
|
|
@@ -56,6 +58,7 @@ declare const __VLS_component: import('vue').DefineComponent<PluginWorkspaceView
|
|
|
56
58
|
"notifications-click": () => any;
|
|
57
59
|
"settings-values-change": (data: Record<string, unknown>) => any;
|
|
58
60
|
"update:toggle": (sectionId: string, value: boolean) => any;
|
|
61
|
+
"section-action": (sectionId: string, actionId: string) => any;
|
|
59
62
|
"form-submit": (sectionId: string, values: Record<string, unknown>) => any;
|
|
60
63
|
"form-cancel": (sectionId: string) => any;
|
|
61
64
|
"update:activeView": (value: string) => any;
|
|
@@ -77,6 +80,7 @@ declare const __VLS_component: import('vue').DefineComponent<PluginWorkspaceView
|
|
|
77
80
|
"onNotifications-click"?: (() => any) | undefined;
|
|
78
81
|
"onSettings-values-change"?: ((data: Record<string, unknown>) => any) | undefined;
|
|
79
82
|
"onUpdate:toggle"?: ((sectionId: string, value: boolean) => any) | undefined;
|
|
83
|
+
"onSection-action"?: ((sectionId: string, actionId: string) => any) | undefined;
|
|
80
84
|
"onForm-submit"?: ((sectionId: string, values: Record<string, unknown>) => any) | undefined;
|
|
81
85
|
"onForm-cancel"?: ((sectionId: string) => any) | undefined;
|
|
82
86
|
"onUpdate:activeView"?: ((value: string) => any) | undefined;
|
|
@@ -88,6 +92,7 @@ declare const __VLS_component: import('vue').DefineComponent<PluginWorkspaceView
|
|
|
88
92
|
experiment: import('..').AppExperimentRecord | null;
|
|
89
93
|
modelValue: Record<string, unknown>;
|
|
90
94
|
title: string;
|
|
95
|
+
floating: boolean;
|
|
91
96
|
subtitle: string;
|
|
92
97
|
controls: import('..').ControlSchema;
|
|
93
98
|
controlOptions: import('..').ControlWorkspaceOptions;
|
|
@@ -120,7 +125,6 @@ declare const __VLS_component: import('vue').DefineComponent<PluginWorkspaceView
|
|
|
120
125
|
showAdmin: boolean;
|
|
121
126
|
adminPath: string;
|
|
122
127
|
showProfile: boolean;
|
|
123
|
-
floating: boolean;
|
|
124
128
|
formEnhancements: import('..').FormEnhancements<Record<string, unknown>>;
|
|
125
129
|
showFormActions: boolean;
|
|
126
130
|
formLoading: boolean;
|
package/dist/components/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { $ as
|
|
2
|
-
import { $n as TimePicker_default, Bn as ConcentrationInput_default, Cr as
|
|
1
|
+
import { $ as SampleLegend_default, A as ReagentEditor_default, At as SegmentedControl_default, B as ProgressBar_default, Ct as AppToastContainer_default, D as ScientificNumber_default, Dt as Calendar_default, E as ChemicalFormula_default, Et as DataFrame_default, F as BioTemplateExperimentWorkspaceView_default, G as ControlWorkspaceView_default, H as Divider_default, I as BioTemplateRenderer_default, J as SampleSelector_default, K as ComponentBindingRenderer_default, L as ChartContainer_default, M as RackEditor_default, Mt as BaseTabs_default, N as BioTemplatePresetWorkspaceView_default, Nt as ColorSlider_default, O as ProtocolStepEditor_default, Ot as DropdownButton_default, P as BioTemplatePackWorkspaceView_default, Pt as BaseButton_default, Q as PlateMapEditor_default, R as Breadcrumb_default, St as IconButton_default, Tt as FormField_default, U as AppContainer_default, V as StatusIndicator_default, W as DoseDesignWorkspaceView_default, X as LoadingSpinner_default, Y as AutoGroupModal_default, Z as ReagentList_default, _ as InstrumentStateBadge_default, _t as ExperimentPopover_default, a as ExperimentDataViewer_default, at as AppSidebar_default, bt as CollapsibleCard_default, c as LcmsSequenceTable_default, ct as StepWizard_default, dt as AppAvatarMenu_default, et as WellPlate_default, ft as PluginIcon_default, g as InstrumentStatusCard_default, gt as Skeleton_default, ht as EmptyState_default, i as TimeRangeInput_default, it as AppLayout_default, j as GroupAssigner_default, jt as BaseModal_default, k as SampleHierarchyTree_default, kt as BasePill_default, lt as AppTopBar_default, mt as ExperimentCodeBadge_default, n as FitPanel_default, nt as DoseCalculator_default, o as BatchProgressList_default, ot as FormBuilder_default, pt as ExperimentSelectorModal_default, q as ScheduleCalendar_default, r as ResourceCard_default, rt as PluginWorkspaceView_default, s as AuditTrail_default, st as FormActions_default, tt as ExperimentTimeline_default, ut as AppPluginSwitcher_default, v as InstrumentAlertLog_default, vt as ConfirmDialog_default, wt as AlertBox_default, xt as ThemeToggle_default, y as SequenceProgressBar_default, yt as SettingsModal_default, z as Avatar_default } from "../components-Blx4MG--.js";
|
|
2
|
+
import { $n as TimePicker_default, Ar as BaseInput_default, Bn as ConcentrationInput_default, Cr as BaseToggle_default, Dr as BaseSelect_default, Kn as FormulaInput_default, Qn as TagsInput_default, Sr as BaseRadioGroup_default, Tr as Tooltip_default, Un as MoleculeInput_default, Vn as UnitInput_default, Wn as SequenceInput_default, Xn as FileUploader_default, Yn as DateTimePicker_default, Zn as NumberInput_default, gr as DatePicker_default, kr as BaseTextarea_default, vr as MultiSelect_default, wr as BaseCheckbox_default, xr as BaseSlider_default } from "../templates-DSbHJC4v.js";
|
|
3
3
|
export { AlertBox_default as AlertBox, AppAvatarMenu_default as AppAvatarMenu, AppContainer_default as AppContainer, AppLayout_default as AppLayout, AppPluginSwitcher_default as AppPluginSwitcher, AppSidebar_default as AppSidebar, AppToastContainer_default as AppToastContainer, 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, BioTemplateExperimentWorkspaceView_default as BioTemplateExperimentWorkspaceView, BioTemplatePackWorkspaceView_default as BioTemplatePackWorkspaceView, BioTemplatePresetWorkspaceView_default as BioTemplatePresetWorkspaceView, BioTemplateRenderer_default as BioTemplateRenderer, Breadcrumb_default as Breadcrumb, Calendar_default as Calendar, ChartContainer_default as ChartContainer, ChemicalFormula_default as ChemicalFormula, CollapsibleCard_default as CollapsibleCard, ColorSlider_default as ColorSlider, ComponentBindingRenderer_default as ComponentBindingRenderer, ConcentrationInput_default as ConcentrationInput, ConfirmDialog_default as ConfirmDialog, ControlWorkspaceView_default as ControlWorkspaceView, DataFrame_default as DataFrame, DatePicker_default as DatePicker, DateTimePicker_default as DateTimePicker, Divider_default as Divider, DoseCalculator_default as DoseCalculator, DoseDesignWorkspaceView_default as DoseDesignWorkspaceView, 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, FormulaInput_default as FormulaInput, GroupAssigner_default as GroupAssigner, IconButton_default as IconButton, InstrumentAlertLog_default as InstrumentAlertLog, InstrumentStateBadge_default as InstrumentStateBadge, InstrumentStatusCard_default as InstrumentStatusCard, LcmsSequenceTable_default as LcmsSequenceTable, LoadingSpinner_default as LoadingSpinner, MoleculeInput_default as MoleculeInput, MultiSelect_default as MultiSelect, NumberInput_default as NumberInput, PlateMapEditor_default as PlateMapEditor, PluginIcon_default as PluginIcon, PluginWorkspaceView_default as PluginWorkspaceView, 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, SequenceProgressBar_default as SequenceProgressBar, 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 };
|