@morscherlab/mint-sdk 1.1.0-beta.1 → 1.1.0-beta.11
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 +18 -4
- package/dist/{EmptyState-D1c4RdC7.js → EmptyState-DgBRoYAy.js} +22 -13
- package/dist/EmptyState-DgBRoYAy.js.map +1 -0
- package/dist/{ExperimentSelectorModal-B7w6k3Y8.js → ExperimentSelectorModal-BBWXC7KW.js} +3 -3
- package/dist/{ExperimentSelectorModal-B7w6k3Y8.js.map → ExperimentSelectorModal-BBWXC7KW.js.map} +1 -1
- package/dist/{SettingsModal-DPDwCbXK.js → SettingsModal-Dpg-X1OM.js} +3 -3
- package/dist/{SettingsModal-DPDwCbXK.js.map → SettingsModal-Dpg-X1OM.js.map} +1 -1
- package/dist/__tests__/components/BaseToggle.test.d.ts +1 -0
- package/dist/__tests__/components/SectionCard.test.d.ts +1 -0
- package/dist/__tests__/composables/analysisArtifactTarget.test.d.ts +1 -0
- package/dist/__tests__/types/GeneratedJsonSchema.test.d.ts +1 -0
- package/dist/analysisArtifactTypes-ejqR8MX3.js.map +1 -1
- package/dist/components/BaseSelect.vue.d.ts +1 -1
- package/dist/components/BaseToggle.vue.d.ts +2 -0
- package/dist/components/FitPanel.vue.d.ts +1 -1
- package/dist/components/PluginWorkspaceView.props.d.ts +1 -1
- package/dist/components/SectionCard.vue.d.ts +47 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +6 -6
- package/dist/{components-UfkPN1bK.js → components-Ci_BTx00.js} +711 -633
- package/dist/components-Ci_BTx00.js.map +1 -0
- package/dist/composables/analysisArtifactTarget.d.ts +5 -0
- package/dist/composables/index.d.ts +3 -1
- package/dist/composables/index.js +8 -8
- package/dist/composables/platformContextHelpers.d.ts +2 -0
- package/dist/composables/useAnalysisArtifacts.d.ts +3 -1
- package/dist/composables/useGeneratedAnalysis.d.ts +1 -1
- package/dist/composables/usePlatformContext.d.ts +3 -0
- package/dist/composables/usePluginClient.d.ts +11 -5
- package/dist/{composables-F4JFK9K1.js → composables-C0VEJ73O.js} +172 -30
- package/dist/composables-C0VEJ73O.js.map +1 -0
- package/dist/index.js +11 -11
- package/dist/install.js +5 -5
- package/dist/styles.css +312 -11
- package/dist/tailwind.preset.d.ts +5 -0
- package/dist/tailwind.preset.js +7 -2
- package/dist/tailwind.preset.js.map +1 -1
- package/dist/templates/index.js +3 -3
- package/dist/{templates-Cttbjbyc.js → templates-Cdj93S9C.js} +2 -2
- package/dist/{templates-Cttbjbyc.js.map → templates-Cdj93S9C.js.map} +1 -1
- package/dist/types/analysisArtifactTypes.d.ts +8 -0
- package/dist/types/components.d.ts +2 -0
- package/dist/types/generated-ui.d.ts +13 -0
- package/dist/types/index.d.ts +2 -2
- package/dist/types/platform.d.ts +2 -0
- package/dist/{useControlSchema-Dallso-L.js → useControlSchema-B_qgU4rW.js} +48 -19
- package/dist/useControlSchema-B_qgU4rW.js.map +1 -0
- package/dist/{useExperimentSelector-BMjzNcf2.js → useExperimentSelector-BuQZRgMt.js} +2 -2
- package/dist/{useExperimentSelector-BMjzNcf2.js.map → useExperimentSelector-BuQZRgMt.js.map} +1 -1
- package/dist/{useFormBuilder-BXaaDI41.js → useFormBuilder-D1G5J5Z5.js} +2 -2
- package/dist/{useFormBuilder-BXaaDI41.js.map → useFormBuilder-D1G5J5Z5.js.map} +1 -1
- package/dist/{useProtocolTemplates-BP7_4RGQ.js → useProtocolTemplates-DeaOmMaw.js} +4 -4
- package/dist/{useProtocolTemplates-BP7_4RGQ.js.map → useProtocolTemplates-DeaOmMaw.js.map} +1 -1
- package/package.json +1 -1
- package/src/__tests__/components/BaseSelect.test.ts +52 -0
- package/src/__tests__/components/BaseToggle.test.ts +40 -0
- package/src/__tests__/components/GeneratedPluginView.test.ts +10 -0
- package/src/__tests__/components/PluginWorkspaceView.test.ts +68 -14
- package/src/__tests__/components/SectionCard.test.ts +181 -0
- package/src/__tests__/composables/analysisArtifactTarget.test.ts +77 -0
- package/src/__tests__/composables/useAnalysisArtifacts.test.ts +74 -1
- package/src/__tests__/composables/useGeneratedAnalysis.test.ts +2 -0
- package/src/__tests__/composables/usePlatformContext.test.ts +28 -0
- package/src/__tests__/composables/usePluginClient.test.ts +365 -21
- package/src/__tests__/composables/usePluginConfig.test.ts +323 -7
- package/src/__tests__/types/GeneratedJsonSchema.test.ts +62 -0
- package/src/components/BaseSelect.vue +16 -2
- package/src/components/BaseToggle.vue +3 -1
- package/src/components/GeneratedPluginView.vue +1 -1
- package/src/components/PluginWorkspaceView.props.ts +1 -1
- package/src/components/PluginWorkspaceView.vue +1 -5
- package/src/components/SectionCard.story.vue +163 -0
- package/src/components/SectionCard.vue +98 -0
- package/src/components/index.ts +1 -0
- package/src/composables/analysisArtifactTarget.ts +53 -0
- package/src/composables/index.ts +6 -0
- package/src/composables/platformContextHelpers.ts +10 -3
- package/src/composables/useAnalysisArtifacts.ts +48 -0
- package/src/composables/useGeneratedAnalysis.ts +30 -12
- package/src/composables/usePluginClient.ts +130 -20
- package/src/composables/usePluginConfig.ts +156 -20
- package/src/styles/components/section-card.css +161 -0
- package/src/styles/index.css +1 -0
- package/src/styles/variables.css +25 -0
- package/src/tailwind.preset.ts +5 -0
- package/src/types/analysisArtifactTypes.ts +9 -0
- package/src/types/components.ts +12 -0
- package/src/types/generated-ui.ts +13 -0
- package/src/types/index.ts +3 -0
- package/src/types/platform.ts +2 -0
- package/dist/EmptyState-D1c4RdC7.js.map +0 -1
- package/dist/components-UfkPN1bK.js.map +0 -1
- package/dist/composables-F4JFK9K1.js.map +0 -1
- package/dist/useControlSchema-Dallso-L.js.map +0 -1
package/dist/styles.css
CHANGED
|
@@ -9575,14 +9575,14 @@ to {
|
|
|
9575
9575
|
}
|
|
9576
9576
|
}
|
|
9577
9577
|
|
|
9578
|
-
.mint-generated-workspace[data-v-
|
|
9578
|
+
.mint-generated-workspace[data-v-6219e939] {
|
|
9579
9579
|
position: relative;
|
|
9580
9580
|
min-width: 0;
|
|
9581
9581
|
min-height: calc(100vh - 5rem);
|
|
9582
9582
|
padding: clamp(1rem, 2.5vw, 2.5rem);
|
|
9583
9583
|
background: var(--color-bg-primary);
|
|
9584
9584
|
}
|
|
9585
|
-
.mint-generated-workspace__loading[data-v-
|
|
9585
|
+
.mint-generated-workspace__loading[data-v-6219e939] {
|
|
9586
9586
|
display: flex;
|
|
9587
9587
|
min-height: 24rem;
|
|
9588
9588
|
align-items: center;
|
|
@@ -9590,7 +9590,7 @@ to {
|
|
|
9590
9590
|
gap: 0.75rem;
|
|
9591
9591
|
color: var(--color-text-secondary);
|
|
9592
9592
|
}
|
|
9593
|
-
.mint-generated-workspace__header[data-v-
|
|
9593
|
+
.mint-generated-workspace__header[data-v-6219e939] {
|
|
9594
9594
|
display: flex;
|
|
9595
9595
|
align-items: flex-start;
|
|
9596
9596
|
justify-content: space-between;
|
|
@@ -9598,17 +9598,17 @@ to {
|
|
|
9598
9598
|
max-width: 76rem;
|
|
9599
9599
|
margin: 0 auto 1.25rem;
|
|
9600
9600
|
}
|
|
9601
|
-
.mint-generated-workspace__header h1[data-v-
|
|
9601
|
+
.mint-generated-workspace__header h1[data-v-6219e939] {
|
|
9602
9602
|
margin: 0;
|
|
9603
9603
|
color: var(--color-text-primary);
|
|
9604
9604
|
font-size: clamp(1.35rem, 2vw, 1.8rem);
|
|
9605
9605
|
line-height: 1.2;
|
|
9606
9606
|
}
|
|
9607
|
-
.mint-generated-workspace__header p[data-v-
|
|
9607
|
+
.mint-generated-workspace__header p[data-v-6219e939]:not(.mint-generated-workspace__eyebrow) {
|
|
9608
9608
|
margin: 0.4rem 0 0;
|
|
9609
9609
|
color: var(--color-text-secondary);
|
|
9610
9610
|
}
|
|
9611
|
-
.mint-generated-workspace__eyebrow[data-v-
|
|
9611
|
+
.mint-generated-workspace__eyebrow[data-v-6219e939] {
|
|
9612
9612
|
margin: 0 0 0.35rem;
|
|
9613
9613
|
color: var(--color-text-muted);
|
|
9614
9614
|
font-size: 0.72rem;
|
|
@@ -9616,13 +9616,13 @@ to {
|
|
|
9616
9616
|
letter-spacing: 0.08em;
|
|
9617
9617
|
text-transform: uppercase;
|
|
9618
9618
|
}
|
|
9619
|
-
.mint-generated-workspace__resources[data-v-
|
|
9619
|
+
.mint-generated-workspace__resources[data-v-6219e939] {
|
|
9620
9620
|
display: flex;
|
|
9621
9621
|
flex-wrap: wrap;
|
|
9622
9622
|
justify-content: flex-end;
|
|
9623
9623
|
gap: 0.4rem;
|
|
9624
9624
|
}
|
|
9625
|
-
.mint-generated-workspace__resources span[data-v-
|
|
9625
|
+
.mint-generated-workspace__resources span[data-v-6219e939] {
|
|
9626
9626
|
padding: 0.3rem 0.55rem;
|
|
9627
9627
|
border: 1px solid var(--color-border);
|
|
9628
9628
|
border-radius: 999px;
|
|
@@ -9631,7 +9631,7 @@ to {
|
|
|
9631
9631
|
font-size: 0.75rem;
|
|
9632
9632
|
font-weight: 600;
|
|
9633
9633
|
}
|
|
9634
|
-
.mint-generated-workspace__result[data-v-
|
|
9634
|
+
.mint-generated-workspace__result[data-v-6219e939] {
|
|
9635
9635
|
max-width: 76rem;
|
|
9636
9636
|
min-height: 24rem;
|
|
9637
9637
|
margin: 0 auto;
|
|
@@ -9642,10 +9642,10 @@ to {
|
|
|
9642
9642
|
box-shadow: var(--shadow-sm);
|
|
9643
9643
|
}
|
|
9644
9644
|
@media (max-width: 640px) {
|
|
9645
|
-
.mint-generated-workspace__header[data-v-
|
|
9645
|
+
.mint-generated-workspace__header[data-v-6219e939] {
|
|
9646
9646
|
flex-direction: column;
|
|
9647
9647
|
}
|
|
9648
|
-
.mint-generated-workspace__resources[data-v-
|
|
9648
|
+
.mint-generated-workspace__resources[data-v-6219e939] {
|
|
9649
9649
|
justify-content: flex-start;
|
|
9650
9650
|
}
|
|
9651
9651
|
}
|
|
@@ -19708,6 +19708,145 @@ to { transform: rotate(360deg);
|
|
|
19708
19708
|
animation: none;
|
|
19709
19709
|
}
|
|
19710
19710
|
}
|
|
19711
|
+
/* SectionCard — the MINT 1.1 one-card system.
|
|
19712
|
+
*
|
|
19713
|
+
* One card per page region: 12px radius, one shadow token (--card-shadow),
|
|
19714
|
+
* a single header strip, and hairline-separated regions inside — never a
|
|
19715
|
+
* card nested in a card.
|
|
19716
|
+
*/
|
|
19717
|
+
.mint-section-card {
|
|
19718
|
+
display: flex;
|
|
19719
|
+
flex-direction: column;
|
|
19720
|
+
border-radius: 12px;
|
|
19721
|
+
border: 1px solid var(--border-color);
|
|
19722
|
+
background: var(--bg-secondary);
|
|
19723
|
+
box-shadow: var(--card-shadow);
|
|
19724
|
+
overflow: hidden;
|
|
19725
|
+
transition: background-color var(--mint-transition), border-color var(--mint-transition);
|
|
19726
|
+
}
|
|
19727
|
+
|
|
19728
|
+
/* Fill the height the parent offers: the body takes the slack and scrolls,
|
|
19729
|
+
* so the header and footer stay pinned to the card's edges. */
|
|
19730
|
+
.mint-section-card--fill {
|
|
19731
|
+
flex: 1;
|
|
19732
|
+
min-height: 0;
|
|
19733
|
+
}
|
|
19734
|
+
.mint-section-card--fill .mint-section-card__body {
|
|
19735
|
+
flex: 1;
|
|
19736
|
+
min-height: 0;
|
|
19737
|
+
overflow: auto;
|
|
19738
|
+
}
|
|
19739
|
+
.mint-section-card__header {
|
|
19740
|
+
display: flex;
|
|
19741
|
+
align-items: center;
|
|
19742
|
+
gap: 0.625rem;
|
|
19743
|
+
padding: 0.6875rem 1rem;
|
|
19744
|
+
border-bottom: 1px solid var(--border-color);
|
|
19745
|
+
flex-shrink: 0;
|
|
19746
|
+
}
|
|
19747
|
+
.mint-section-card__header--divider-light {
|
|
19748
|
+
border-bottom-color: var(--border-light);
|
|
19749
|
+
}
|
|
19750
|
+
.mint-section-card__icon-chip {
|
|
19751
|
+
display: inline-flex;
|
|
19752
|
+
align-items: center;
|
|
19753
|
+
justify-content: center;
|
|
19754
|
+
flex-shrink: 0;
|
|
19755
|
+
width: 1.375rem;
|
|
19756
|
+
height: 1.375rem;
|
|
19757
|
+
border-radius: 6px;
|
|
19758
|
+
}
|
|
19759
|
+
.mint-section-card__icon {
|
|
19760
|
+
width: 0.8125rem;
|
|
19761
|
+
height: 0.8125rem;
|
|
19762
|
+
}
|
|
19763
|
+
.mint-section-card__icon-chip--primary {
|
|
19764
|
+
background: var(--color-primary-soft);
|
|
19765
|
+
color: var(--color-primary);
|
|
19766
|
+
}
|
|
19767
|
+
.mint-section-card__icon-chip--experiment {
|
|
19768
|
+
background: var(--color-experiment-soft);
|
|
19769
|
+
color: var(--color-experiment);
|
|
19770
|
+
}
|
|
19771
|
+
.mint-section-card__icon-chip--project {
|
|
19772
|
+
background: var(--color-project-soft);
|
|
19773
|
+
color: var(--color-project);
|
|
19774
|
+
}
|
|
19775
|
+
.mint-section-card__icon-chip--success {
|
|
19776
|
+
background: var(--mint-success-bg);
|
|
19777
|
+
color: var(--mint-success);
|
|
19778
|
+
}
|
|
19779
|
+
.mint-section-card__icon-chip--error {
|
|
19780
|
+
background: var(--mint-error-bg);
|
|
19781
|
+
color: var(--mint-error);
|
|
19782
|
+
}
|
|
19783
|
+
.mint-section-card__icon-chip--warning {
|
|
19784
|
+
background: var(--mint-warning-bg);
|
|
19785
|
+
color: var(--mint-warning);
|
|
19786
|
+
}
|
|
19787
|
+
.mint-section-card__icon-chip--info {
|
|
19788
|
+
background: var(--mint-info-bg);
|
|
19789
|
+
color: var(--mint-info);
|
|
19790
|
+
}
|
|
19791
|
+
.mint-section-card__title {
|
|
19792
|
+
margin: 0;
|
|
19793
|
+
font-size: 0.8125rem;
|
|
19794
|
+
font-weight: 600;
|
|
19795
|
+
color: var(--text-primary);
|
|
19796
|
+
}
|
|
19797
|
+
.mint-section-card__title--uppercase {
|
|
19798
|
+
font-size: 0.75rem;
|
|
19799
|
+
letter-spacing: 0.08em;
|
|
19800
|
+
text-transform: uppercase;
|
|
19801
|
+
color: var(--text-secondary);
|
|
19802
|
+
}
|
|
19803
|
+
.mint-section-card__count {
|
|
19804
|
+
font-family: 'Fira Code', monospace;
|
|
19805
|
+
font-size: 0.6875rem;
|
|
19806
|
+
color: var(--text-muted);
|
|
19807
|
+
}
|
|
19808
|
+
.mint-section-card__spacer {
|
|
19809
|
+
flex: 1;
|
|
19810
|
+
}
|
|
19811
|
+
.mint-section-card__toolbar {
|
|
19812
|
+
flex-shrink: 0;
|
|
19813
|
+
}
|
|
19814
|
+
.mint-section-card__footer {
|
|
19815
|
+
display: flex;
|
|
19816
|
+
align-items: center;
|
|
19817
|
+
justify-content: space-between;
|
|
19818
|
+
padding: 0.5rem 1rem;
|
|
19819
|
+
border-top: 1px solid var(--border-color);
|
|
19820
|
+
background: var(--bg-primary);
|
|
19821
|
+
flex-shrink: 0;
|
|
19822
|
+
}
|
|
19823
|
+
|
|
19824
|
+
/* Hairline row helpers — regions inside a card separate with 1px lines,
|
|
19825
|
+
* rendered by a 1px gap over a hairline-colored track. */
|
|
19826
|
+
.mint-section-card__rows {
|
|
19827
|
+
display: flex;
|
|
19828
|
+
flex-direction: column;
|
|
19829
|
+
gap: 1px;
|
|
19830
|
+
background: var(--border-light);
|
|
19831
|
+
}
|
|
19832
|
+
.mint-section-card__row {
|
|
19833
|
+
display: flex;
|
|
19834
|
+
align-items: center;
|
|
19835
|
+
gap: 0.625rem;
|
|
19836
|
+
padding: 0.5625rem 1rem;
|
|
19837
|
+
background: var(--bg-secondary);
|
|
19838
|
+
transition: background-color var(--mint-transition);
|
|
19839
|
+
}
|
|
19840
|
+
a.mint-section-card__row,
|
|
19841
|
+
button.mint-section-card__row {
|
|
19842
|
+
cursor: pointer;
|
|
19843
|
+
color: inherit;
|
|
19844
|
+
text-decoration: none;
|
|
19845
|
+
}
|
|
19846
|
+
a.mint-section-card__row:hover,
|
|
19847
|
+
button.mint-section-card__row:hover {
|
|
19848
|
+
background: var(--bg-primary);
|
|
19849
|
+
}
|
|
19711
19850
|
.mint-artifact-save-dialog {
|
|
19712
19851
|
display: flex;
|
|
19713
19852
|
flex-direction: column;
|
|
@@ -19824,6 +19963,18 @@ to { transform: rotate(360deg);
|
|
|
19824
19963
|
--color-cta-hover: #EA580C;
|
|
19825
19964
|
--color-purple: #8B5CF6;
|
|
19826
19965
|
|
|
19966
|
+
/* Entity accent colors — experiments (cyan) and projects (sky), from the
|
|
19967
|
+
MINT 1.1 card system. -soft backs icon chips and pills, -border outlines
|
|
19968
|
+
pills that sit on a card surface. */
|
|
19969
|
+
--color-experiment: #06B6D4;
|
|
19970
|
+
--color-experiment-hover: #0891B2;
|
|
19971
|
+
--color-experiment-soft: rgba(6, 182, 212, 0.12);
|
|
19972
|
+
--color-experiment-border: rgba(6, 182, 212, 0.3);
|
|
19973
|
+
--color-project: #0EA5E9;
|
|
19974
|
+
--color-project-hover: #0284C7;
|
|
19975
|
+
--color-project-soft: rgba(14, 165, 233, 0.12);
|
|
19976
|
+
--color-project-border: rgba(14, 165, 233, 0.32);
|
|
19977
|
+
|
|
19827
19978
|
/* MINT brand mark — used for browser theme-color, marketing chrome, app icon background */
|
|
19828
19979
|
--mint-brand: #7BD0B5;
|
|
19829
19980
|
--mint-brand-hover: #5FB89A;
|
|
@@ -19839,6 +19990,8 @@ to { transform: rotate(360deg);
|
|
|
19839
19990
|
--shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
19840
19991
|
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
19841
19992
|
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
19993
|
+
/* The MINT 1.1 card system uses exactly one shadow for every card. */
|
|
19994
|
+
--card-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.04), 0 1px 3px 0 rgb(0 0 0 / 0.06);
|
|
19842
19995
|
|
|
19843
19996
|
/* Border radius */
|
|
19844
19997
|
--radius-sm: 0.25rem;
|
|
@@ -19935,6 +20088,17 @@ html.dark {
|
|
|
19935
20088
|
--shadow: 0 1px 3px 0 rgb(0 0 0 / 0.3), 0 1px 2px -1px rgb(0 0 0 / 0.2);
|
|
19936
20089
|
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.2);
|
|
19937
20090
|
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.2);
|
|
20091
|
+
--card-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.24), 0 1px 3px 0 rgb(0 0 0 / 0.32);
|
|
20092
|
+
|
|
20093
|
+
/* Entity accent colors - Dark mode */
|
|
20094
|
+
--color-experiment: #22D3EE;
|
|
20095
|
+
--color-experiment-hover: #67E8F9;
|
|
20096
|
+
--color-experiment-soft: rgba(34, 211, 238, 0.16);
|
|
20097
|
+
--color-experiment-border: rgba(34, 211, 238, 0.36);
|
|
20098
|
+
--color-project: #38BDF8;
|
|
20099
|
+
--color-project-hover: #7DD3FC;
|
|
20100
|
+
--color-project-soft: rgba(56, 189, 248, 0.16);
|
|
20101
|
+
--color-project-border: rgba(56, 189, 248, 0.38);
|
|
19938
20102
|
|
|
19939
20103
|
/* Semantic colors - Dark mode */
|
|
19940
20104
|
--mint-success-bg: rgba(16, 185, 129, 0.15);
|
|
@@ -25587,6 +25751,143 @@ code, pre {
|
|
|
25587
25751
|
.mint-sample-legend__add-text--lg {
|
|
25588
25752
|
font-size: 1rem;
|
|
25589
25753
|
}
|
|
25754
|
+
/* SectionCard — the MINT 1.1 one-card system.
|
|
25755
|
+
*
|
|
25756
|
+
* One card per page region: 12px radius, one shadow token (--card-shadow),
|
|
25757
|
+
* a single header strip, and hairline-separated regions inside — never a
|
|
25758
|
+
* card nested in a card.
|
|
25759
|
+
*/
|
|
25760
|
+
.mint-section-card {
|
|
25761
|
+
display: flex;
|
|
25762
|
+
flex-direction: column;
|
|
25763
|
+
border-radius: 12px;
|
|
25764
|
+
border: 1px solid var(--border-color);
|
|
25765
|
+
background: var(--bg-secondary);
|
|
25766
|
+
box-shadow: var(--card-shadow);
|
|
25767
|
+
overflow: hidden;
|
|
25768
|
+
transition: background-color var(--mint-transition), border-color var(--mint-transition);
|
|
25769
|
+
}
|
|
25770
|
+
/* Fill the height the parent offers: the body takes the slack and scrolls,
|
|
25771
|
+
* so the header and footer stay pinned to the card's edges. */
|
|
25772
|
+
.mint-section-card--fill {
|
|
25773
|
+
flex: 1;
|
|
25774
|
+
min-height: 0;
|
|
25775
|
+
}
|
|
25776
|
+
.mint-section-card--fill .mint-section-card__body {
|
|
25777
|
+
flex: 1;
|
|
25778
|
+
min-height: 0;
|
|
25779
|
+
overflow: auto;
|
|
25780
|
+
}
|
|
25781
|
+
.mint-section-card__header {
|
|
25782
|
+
display: flex;
|
|
25783
|
+
align-items: center;
|
|
25784
|
+
gap: 0.625rem;
|
|
25785
|
+
padding: 0.6875rem 1rem;
|
|
25786
|
+
border-bottom: 1px solid var(--border-color);
|
|
25787
|
+
flex-shrink: 0;
|
|
25788
|
+
}
|
|
25789
|
+
.mint-section-card__header--divider-light {
|
|
25790
|
+
border-bottom-color: var(--border-light);
|
|
25791
|
+
}
|
|
25792
|
+
.mint-section-card__icon-chip {
|
|
25793
|
+
display: inline-flex;
|
|
25794
|
+
align-items: center;
|
|
25795
|
+
justify-content: center;
|
|
25796
|
+
flex-shrink: 0;
|
|
25797
|
+
width: 1.375rem;
|
|
25798
|
+
height: 1.375rem;
|
|
25799
|
+
border-radius: 6px;
|
|
25800
|
+
}
|
|
25801
|
+
.mint-section-card__icon {
|
|
25802
|
+
width: 0.8125rem;
|
|
25803
|
+
height: 0.8125rem;
|
|
25804
|
+
}
|
|
25805
|
+
.mint-section-card__icon-chip--primary {
|
|
25806
|
+
background: var(--color-primary-soft);
|
|
25807
|
+
color: var(--color-primary);
|
|
25808
|
+
}
|
|
25809
|
+
.mint-section-card__icon-chip--experiment {
|
|
25810
|
+
background: var(--color-experiment-soft);
|
|
25811
|
+
color: var(--color-experiment);
|
|
25812
|
+
}
|
|
25813
|
+
.mint-section-card__icon-chip--project {
|
|
25814
|
+
background: var(--color-project-soft);
|
|
25815
|
+
color: var(--color-project);
|
|
25816
|
+
}
|
|
25817
|
+
.mint-section-card__icon-chip--success {
|
|
25818
|
+
background: var(--mint-success-bg);
|
|
25819
|
+
color: var(--mint-success);
|
|
25820
|
+
}
|
|
25821
|
+
.mint-section-card__icon-chip--error {
|
|
25822
|
+
background: var(--mint-error-bg);
|
|
25823
|
+
color: var(--mint-error);
|
|
25824
|
+
}
|
|
25825
|
+
.mint-section-card__icon-chip--warning {
|
|
25826
|
+
background: var(--mint-warning-bg);
|
|
25827
|
+
color: var(--mint-warning);
|
|
25828
|
+
}
|
|
25829
|
+
.mint-section-card__icon-chip--info {
|
|
25830
|
+
background: var(--mint-info-bg);
|
|
25831
|
+
color: var(--mint-info);
|
|
25832
|
+
}
|
|
25833
|
+
.mint-section-card__title {
|
|
25834
|
+
margin: 0;
|
|
25835
|
+
font-size: 0.8125rem;
|
|
25836
|
+
font-weight: 600;
|
|
25837
|
+
color: var(--text-primary);
|
|
25838
|
+
}
|
|
25839
|
+
.mint-section-card__title--uppercase {
|
|
25840
|
+
font-size: 0.75rem;
|
|
25841
|
+
letter-spacing: 0.08em;
|
|
25842
|
+
text-transform: uppercase;
|
|
25843
|
+
color: var(--text-secondary);
|
|
25844
|
+
}
|
|
25845
|
+
.mint-section-card__count {
|
|
25846
|
+
font-family: 'Fira Code', monospace;
|
|
25847
|
+
font-size: 0.6875rem;
|
|
25848
|
+
color: var(--text-muted);
|
|
25849
|
+
}
|
|
25850
|
+
.mint-section-card__spacer {
|
|
25851
|
+
flex: 1;
|
|
25852
|
+
}
|
|
25853
|
+
.mint-section-card__toolbar {
|
|
25854
|
+
flex-shrink: 0;
|
|
25855
|
+
}
|
|
25856
|
+
.mint-section-card__footer {
|
|
25857
|
+
display: flex;
|
|
25858
|
+
align-items: center;
|
|
25859
|
+
justify-content: space-between;
|
|
25860
|
+
padding: 0.5rem 1rem;
|
|
25861
|
+
border-top: 1px solid var(--border-color);
|
|
25862
|
+
background: var(--bg-primary);
|
|
25863
|
+
flex-shrink: 0;
|
|
25864
|
+
}
|
|
25865
|
+
/* Hairline row helpers — regions inside a card separate with 1px lines,
|
|
25866
|
+
* rendered by a 1px gap over a hairline-colored track. */
|
|
25867
|
+
.mint-section-card__rows {
|
|
25868
|
+
display: flex;
|
|
25869
|
+
flex-direction: column;
|
|
25870
|
+
gap: 1px;
|
|
25871
|
+
background: var(--border-light);
|
|
25872
|
+
}
|
|
25873
|
+
.mint-section-card__row {
|
|
25874
|
+
display: flex;
|
|
25875
|
+
align-items: center;
|
|
25876
|
+
gap: 0.625rem;
|
|
25877
|
+
padding: 0.5625rem 1rem;
|
|
25878
|
+
background: var(--bg-secondary);
|
|
25879
|
+
transition: background-color var(--mint-transition);
|
|
25880
|
+
}
|
|
25881
|
+
a.mint-section-card__row,
|
|
25882
|
+
button.mint-section-card__row {
|
|
25883
|
+
cursor: pointer;
|
|
25884
|
+
color: inherit;
|
|
25885
|
+
text-decoration: none;
|
|
25886
|
+
}
|
|
25887
|
+
a.mint-section-card__row:hover,
|
|
25888
|
+
button.mint-section-card__row:hover {
|
|
25889
|
+
background: var(--bg-primary);
|
|
25890
|
+
}
|
|
25590
25891
|
/* BaseSelect Component Styles */
|
|
25591
25892
|
.mint-select {
|
|
25592
25893
|
position: relative;
|
|
@@ -16,6 +16,10 @@ declare const mintPreset: {
|
|
|
16
16
|
'warning-hover': string;
|
|
17
17
|
brand: string;
|
|
18
18
|
'brand-hover': string;
|
|
19
|
+
experiment: string;
|
|
20
|
+
'experiment-hover': string;
|
|
21
|
+
project: string;
|
|
22
|
+
'project-hover': string;
|
|
19
23
|
};
|
|
20
24
|
bg: {
|
|
21
25
|
primary: string;
|
|
@@ -48,6 +52,7 @@ declare const mintPreset: {
|
|
|
48
52
|
mint: string;
|
|
49
53
|
'mint-md': string;
|
|
50
54
|
'mint-lg': string;
|
|
55
|
+
'mint-card': string;
|
|
51
56
|
};
|
|
52
57
|
transitionDuration: {
|
|
53
58
|
mint: string;
|
package/dist/tailwind.preset.js
CHANGED
|
@@ -14,7 +14,11 @@ var mintPreset = { theme: { extend: {
|
|
|
14
14
|
warning: "var(--mint-warning)",
|
|
15
15
|
"warning-hover": "var(--mint-warning-hover)",
|
|
16
16
|
brand: "var(--mint-brand)",
|
|
17
|
-
"brand-hover": "var(--mint-brand-hover)"
|
|
17
|
+
"brand-hover": "var(--mint-brand-hover)",
|
|
18
|
+
experiment: "var(--color-experiment)",
|
|
19
|
+
"experiment-hover": "var(--color-experiment-hover)",
|
|
20
|
+
project: "var(--color-project)",
|
|
21
|
+
"project-hover": "var(--color-project-hover)"
|
|
18
22
|
},
|
|
19
23
|
bg: {
|
|
20
24
|
primary: "var(--mint-bg-primary)",
|
|
@@ -56,7 +60,8 @@ var mintPreset = { theme: { extend: {
|
|
|
56
60
|
boxShadow: {
|
|
57
61
|
mint: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
|
|
58
62
|
"mint-md": "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
|
|
59
|
-
"mint-lg": "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)"
|
|
63
|
+
"mint-lg": "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
|
|
64
|
+
"mint-card": "var(--card-shadow)"
|
|
60
65
|
},
|
|
61
66
|
transitionDuration: { mint: "150ms" }
|
|
62
67
|
} } };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tailwind.preset.js","names":[],"sources":["../src/tailwind.preset.ts"],"sourcesContent":["import type { Config } from 'tailwindcss'\n\nconst mintPreset = {\n theme: {\n extend: {\n colors: {\n mint: {\n primary: 'var(--color-primary)',\n 'primary-hover': 'var(--color-primary-hover)',\n 'primary-light': 'var(--color-primary-light)',\n cta: 'var(--color-cta)',\n 'cta-hover': 'var(--color-cta-hover)',\n danger: 'var(--mint-error)',\n 'danger-hover': 'var(--mint-error-hover)',\n success: 'var(--mint-success)',\n 'success-hover': 'var(--mint-success-hover)',\n warning: 'var(--mint-warning)',\n 'warning-hover': 'var(--mint-warning-hover)',\n brand: 'var(--mint-brand)',\n 'brand-hover': 'var(--mint-brand-hover)',\n },\n bg: {\n primary: 'var(--mint-bg-primary)',\n secondary: 'var(--mint-bg-secondary)',\n card: 'var(--mint-bg-card)',\n hover: 'var(--mint-bg-hover)',\n input: 'var(--mint-bg-input)',\n },\n text: {\n primary: 'var(--mint-text-primary)',\n secondary: 'var(--mint-text-secondary)',\n muted: 'var(--mint-text-muted)',\n inverse: 'var(--mint-text-inverse)',\n },\n border: {\n DEFAULT: 'var(--mint-border)',\n focus: 'var(--mint-border-focus)',\n },\n },\n fontFamily: {\n sans: ['Fira Sans', 'system-ui', '-apple-system', 'sans-serif'],\n mono: ['Fira Code', 'ui-monospace', 'SFMono-Regular', 'monospace'],\n },\n borderRadius: {\n mint: '0.5rem',\n 'mint-sm': '0.375rem',\n 'mint-lg': '0.75rem',\n },\n boxShadow: {\n mint: '0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)',\n 'mint-md': '0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)',\n 'mint-lg': '0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)',\n },\n transitionDuration: {\n mint: '150ms',\n },\n },\n },\n} satisfies Partial<Config>\n\nexport default mintPreset\n"],"mappings":";AAEA,IAAM,aAAa,EACjB,OAAO,EACL,QAAQ;CACN,QAAQ;EACN,MAAM;GACJ,SAAS;GACT,iBAAiB;GACjB,iBAAiB;GACjB,KAAK;GACL,aAAa;GACb,QAAQ;GACR,gBAAgB;GAChB,SAAS;GACT,iBAAiB;GACjB,SAAS;GACT,iBAAiB;GACjB,OAAO;GACP,eAAe;
|
|
1
|
+
{"version":3,"file":"tailwind.preset.js","names":[],"sources":["../src/tailwind.preset.ts"],"sourcesContent":["import type { Config } from 'tailwindcss'\n\nconst mintPreset = {\n theme: {\n extend: {\n colors: {\n mint: {\n primary: 'var(--color-primary)',\n 'primary-hover': 'var(--color-primary-hover)',\n 'primary-light': 'var(--color-primary-light)',\n cta: 'var(--color-cta)',\n 'cta-hover': 'var(--color-cta-hover)',\n danger: 'var(--mint-error)',\n 'danger-hover': 'var(--mint-error-hover)',\n success: 'var(--mint-success)',\n 'success-hover': 'var(--mint-success-hover)',\n warning: 'var(--mint-warning)',\n 'warning-hover': 'var(--mint-warning-hover)',\n brand: 'var(--mint-brand)',\n 'brand-hover': 'var(--mint-brand-hover)',\n experiment: 'var(--color-experiment)',\n 'experiment-hover': 'var(--color-experiment-hover)',\n project: 'var(--color-project)',\n 'project-hover': 'var(--color-project-hover)',\n },\n bg: {\n primary: 'var(--mint-bg-primary)',\n secondary: 'var(--mint-bg-secondary)',\n card: 'var(--mint-bg-card)',\n hover: 'var(--mint-bg-hover)',\n input: 'var(--mint-bg-input)',\n },\n text: {\n primary: 'var(--mint-text-primary)',\n secondary: 'var(--mint-text-secondary)',\n muted: 'var(--mint-text-muted)',\n inverse: 'var(--mint-text-inverse)',\n },\n border: {\n DEFAULT: 'var(--mint-border)',\n focus: 'var(--mint-border-focus)',\n },\n },\n fontFamily: {\n sans: ['Fira Sans', 'system-ui', '-apple-system', 'sans-serif'],\n mono: ['Fira Code', 'ui-monospace', 'SFMono-Regular', 'monospace'],\n },\n borderRadius: {\n mint: '0.5rem',\n 'mint-sm': '0.375rem',\n 'mint-lg': '0.75rem',\n },\n boxShadow: {\n mint: '0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)',\n 'mint-md': '0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)',\n 'mint-lg': '0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)',\n 'mint-card': 'var(--card-shadow)',\n },\n transitionDuration: {\n mint: '150ms',\n },\n },\n },\n} satisfies Partial<Config>\n\nexport default mintPreset\n"],"mappings":";AAEA,IAAM,aAAa,EACjB,OAAO,EACL,QAAQ;CACN,QAAQ;EACN,MAAM;GACJ,SAAS;GACT,iBAAiB;GACjB,iBAAiB;GACjB,KAAK;GACL,aAAa;GACb,QAAQ;GACR,gBAAgB;GAChB,SAAS;GACT,iBAAiB;GACjB,SAAS;GACT,iBAAiB;GACjB,OAAO;GACP,eAAe;GACf,YAAY;GACZ,oBAAoB;GACpB,SAAS;GACT,iBAAiB;GAClB;EACD,IAAI;GACF,SAAS;GACT,WAAW;GACX,MAAM;GACN,OAAO;GACP,OAAO;GACR;EACD,MAAM;GACJ,SAAS;GACT,WAAW;GACX,OAAO;GACP,SAAS;GACV;EACD,QAAQ;GACN,SAAS;GACT,OAAO;GACR;EACF;CACD,YAAY;EACV,MAAM;GAAC;GAAa;GAAa;GAAiB;GAAa;EAC/D,MAAM;GAAC;GAAa;GAAgB;GAAkB;GAAY;EACnE;CACD,cAAc;EACZ,MAAM;EACN,WAAW;EACX,WAAW;EACZ;CACD,WAAW;EACT,MAAM;EACN,WAAW;EACX,WAAW;EACX,aAAa;EACd;CACD,oBAAoB,EAClB,MAAM,SACP;CACF,EACF,EACF"}
|
package/dist/templates/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import "../experiment-utils-CxkruZ3G.js";
|
|
2
|
-
import "../EmptyState-
|
|
3
|
-
import "../useControlSchema-
|
|
4
|
-
import { $ as toTimeCourseRows, $t as listBioTemplatePacks, A as createSamplePrepTemplate, At as toCalibrationCurveRows, B as toBioTemplateComponentProps, Bt as validatePlateMapData, C as createFlowCytometryPanelTemplate, Ct as toInstrumentRunScheduleEvents, D as createTimeCourseTemplate, Dt as toFlowPanelRows, E as createProtocolStepsTemplate, Et as toFlowPanelDataFrame, F as getBioTemplateComponentProps, Ft as validateAssayMatrixData, G as toTemplateDataFrame, Gt as validateSampleSheetData, H as toBioTemplateComponentPropsById, Ht as validateQpcrPlateData, I as listBioTemplateComponentBindings, It as validateCalibrationCurveData, J as toDoseLayoutState, Jt as getBioTemplatePresetInfo, K as toWellMapArray, Kt as validateTimeCourseData, L as toBioTemplateComponentBindings, Lt as validateDoseResponseData, M as createPlateMapTemplate, Mt as toAssayMatrixDataFrame, N as bioTemplatePresetControlValuesToOptions, Nt as toAssayMatrixRows, O as createCalibrationCurveTemplate, Ot as toCalibrationCurveColumns, P as getBioTemplateComponentBindings, Pt as toAssayMatrixSampleOptions, Q as toTimeCourseDataFrame, Qt as getBioTemplatePackInfo, R as toBioTemplateComponentBindingsById, Rt as validateFlowCytometryPanelData, S as createInstrumentRunTemplate, St as toInstrumentRunRows, T as createAssayMatrixTemplate, Tt as toFlowPanelColumns, U as toBioTemplateComponentSnippets, Ut as validateReagentListData, V as toBioTemplateComponentPropsByComponent, Vt as validateProtocolStepsData, W as toBioTemplateComponentUsage, Wt as validateSamplePrepData, X as toWellPlateWells, Xt as searchBioTemplatePresets, Y as toPlateMapEditorState, Yt as listBioTemplatePresets, Z as toTimeCourseColumns, Zt as bioTemplatePacks, _ as createElisaAssayCollection, _t as toProtocolDataFrame, a as getBioTemplateControlDefaults, an as TEMPLATE_COLLECTION_KEY, at as toSamplePrepColumns, b as createQpcrExpressionCollection, bt as toInstrumentRunColumns, c as listBioTemplatePresetControlSchemas, cn as createTemplateEnvelope, ct as toReagentColumns, d as createBioTemplatePresetCollectionFromControls, dn as extractTemplateCollection, dt as toReagentRows, en as searchBioTemplatePacks, et as toTimeCourseSteps, f as createWellPlateScreenCollection, fn as getTemplateData, ft as toQpcrColumns, g as createFlowCytometryAssayCollection, gt as toProtocolColumns, h as createWesternBlotAssayCollection, ht as toQpcrWellPlateWells, i as createBioTemplateControlToolkit, in as searchBioTemplateCatalog, it as toSampleRows, j as createSampleSheetTemplate, jt as toAssayMatrixColumns, k as createDoseResponseTemplate, kt as toCalibrationCurveDataFrame, l as requireBioTemplateControlSchema, ln as ensureTemplateEnvelope, lt as toReagentDataFrame, m as createDefaultBioTemplate, mt as toQpcrRows, n as bioTemplateControlsToSectionFormSchemas, nn as getBioTemplateInfo, nt as toSampleDataFrame, o as getBioTemplateControlSchema, on as assertTemplateEnvelope, ot as toSamplePrepDataFrame, p as createBioTemplatePackCollection, pt as toQpcrDataFrame, q as toDoseConditions, qt as bioTemplatePresets, r as bioTemplateControlsToSidebarPanels, rn as listBioTemplateCatalog, rt as toSampleOptions, s as listBioTemplateControlSchemas, sn as createTemplateCollection, st as toSamplePrepRows, t as bioTemplateControlsToFormSchema, tn as bioTemplateCatalog, tt as toSampleColumns, u as createBioTemplatePresetCollection, un as ensureTemplateFromCollection, ut as toReagentListItems, v as createTargetedMetabolomicsCollection, vt as toProtocolRows, w as createReagentListTemplate, wt as toInstrumentRunSteps, x as createQpcrPlateTemplate, xt as toInstrumentRunDataFrame, y as createLcmsBatchCollection, yt as toProtocolSteps, z as toBioTemplateComponentImports, zt as validateInstrumentRunData } from "../templates-
|
|
2
|
+
import "../EmptyState-DgBRoYAy.js";
|
|
3
|
+
import "../useControlSchema-B_qgU4rW.js";
|
|
4
|
+
import { $ as toTimeCourseRows, $t as listBioTemplatePacks, A as createSamplePrepTemplate, At as toCalibrationCurveRows, B as toBioTemplateComponentProps, Bt as validatePlateMapData, C as createFlowCytometryPanelTemplate, Ct as toInstrumentRunScheduleEvents, D as createTimeCourseTemplate, Dt as toFlowPanelRows, E as createProtocolStepsTemplate, Et as toFlowPanelDataFrame, F as getBioTemplateComponentProps, Ft as validateAssayMatrixData, G as toTemplateDataFrame, Gt as validateSampleSheetData, H as toBioTemplateComponentPropsById, Ht as validateQpcrPlateData, I as listBioTemplateComponentBindings, It as validateCalibrationCurveData, J as toDoseLayoutState, Jt as getBioTemplatePresetInfo, K as toWellMapArray, Kt as validateTimeCourseData, L as toBioTemplateComponentBindings, Lt as validateDoseResponseData, M as createPlateMapTemplate, Mt as toAssayMatrixDataFrame, N as bioTemplatePresetControlValuesToOptions, Nt as toAssayMatrixRows, O as createCalibrationCurveTemplate, Ot as toCalibrationCurveColumns, P as getBioTemplateComponentBindings, Pt as toAssayMatrixSampleOptions, Q as toTimeCourseDataFrame, Qt as getBioTemplatePackInfo, R as toBioTemplateComponentBindingsById, Rt as validateFlowCytometryPanelData, S as createInstrumentRunTemplate, St as toInstrumentRunRows, T as createAssayMatrixTemplate, Tt as toFlowPanelColumns, U as toBioTemplateComponentSnippets, Ut as validateReagentListData, V as toBioTemplateComponentPropsByComponent, Vt as validateProtocolStepsData, W as toBioTemplateComponentUsage, Wt as validateSamplePrepData, X as toWellPlateWells, Xt as searchBioTemplatePresets, Y as toPlateMapEditorState, Yt as listBioTemplatePresets, Z as toTimeCourseColumns, Zt as bioTemplatePacks, _ as createElisaAssayCollection, _t as toProtocolDataFrame, a as getBioTemplateControlDefaults, an as TEMPLATE_COLLECTION_KEY, at as toSamplePrepColumns, b as createQpcrExpressionCollection, bt as toInstrumentRunColumns, c as listBioTemplatePresetControlSchemas, cn as createTemplateEnvelope, ct as toReagentColumns, d as createBioTemplatePresetCollectionFromControls, dn as extractTemplateCollection, dt as toReagentRows, en as searchBioTemplatePacks, et as toTimeCourseSteps, f as createWellPlateScreenCollection, fn as getTemplateData, ft as toQpcrColumns, g as createFlowCytometryAssayCollection, gt as toProtocolColumns, h as createWesternBlotAssayCollection, ht as toQpcrWellPlateWells, i as createBioTemplateControlToolkit, in as searchBioTemplateCatalog, it as toSampleRows, j as createSampleSheetTemplate, jt as toAssayMatrixColumns, k as createDoseResponseTemplate, kt as toCalibrationCurveDataFrame, l as requireBioTemplateControlSchema, ln as ensureTemplateEnvelope, lt as toReagentDataFrame, m as createDefaultBioTemplate, mt as toQpcrRows, n as bioTemplateControlsToSectionFormSchemas, nn as getBioTemplateInfo, nt as toSampleDataFrame, o as getBioTemplateControlSchema, on as assertTemplateEnvelope, ot as toSamplePrepDataFrame, p as createBioTemplatePackCollection, pt as toQpcrDataFrame, q as toDoseConditions, qt as bioTemplatePresets, r as bioTemplateControlsToSidebarPanels, rn as listBioTemplateCatalog, rt as toSampleOptions, s as listBioTemplateControlSchemas, sn as createTemplateCollection, st as toSamplePrepRows, t as bioTemplateControlsToFormSchema, tn as bioTemplateCatalog, tt as toSampleColumns, u as createBioTemplatePresetCollection, un as ensureTemplateFromCollection, ut as toReagentListItems, v as createTargetedMetabolomicsCollection, vt as toProtocolRows, w as createReagentListTemplate, wt as toInstrumentRunSteps, x as createQpcrPlateTemplate, xt as toInstrumentRunDataFrame, y as createLcmsBatchCollection, yt as toProtocolSteps, z as toBioTemplateComponentImports, zt as validateInstrumentRunData } from "../templates-Cdj93S9C.js";
|
|
5
5
|
export { TEMPLATE_COLLECTION_KEY, assertTemplateEnvelope, bioTemplateCatalog, bioTemplateControlsToFormSchema, bioTemplateControlsToSectionFormSchemas, bioTemplateControlsToSidebarPanels, bioTemplatePacks, bioTemplatePresetControlValuesToOptions, bioTemplatePresets, createAssayMatrixTemplate, createBioTemplateControlToolkit, createBioTemplatePackCollection, createBioTemplatePresetCollection, createBioTemplatePresetCollectionFromControls, createCalibrationCurveTemplate, createDefaultBioTemplate, createDoseResponseTemplate, createElisaAssayCollection, createFlowCytometryAssayCollection, createFlowCytometryPanelTemplate, createInstrumentRunTemplate, createLcmsBatchCollection, createPlateMapTemplate, createProtocolStepsTemplate, createQpcrExpressionCollection, createQpcrPlateTemplate, createReagentListTemplate, createSamplePrepTemplate, createSampleSheetTemplate, createTargetedMetabolomicsCollection, createTemplateCollection, createTemplateEnvelope, createTimeCourseTemplate, createWellPlateScreenCollection, createWesternBlotAssayCollection, ensureTemplateEnvelope, ensureTemplateFromCollection, extractTemplateCollection, getBioTemplateComponentBindings, getBioTemplateComponentProps, getBioTemplateControlDefaults, getBioTemplateControlSchema, getBioTemplateInfo, getBioTemplatePackInfo, getBioTemplatePresetInfo, getTemplateData, listBioTemplateCatalog, listBioTemplateComponentBindings, listBioTemplateControlSchemas, listBioTemplatePacks, listBioTemplatePresetControlSchemas, listBioTemplatePresets, requireBioTemplateControlSchema, searchBioTemplateCatalog, searchBioTemplatePacks, searchBioTemplatePresets, toAssayMatrixColumns, toAssayMatrixDataFrame, toAssayMatrixRows, toAssayMatrixSampleOptions, toBioTemplateComponentBindings, toBioTemplateComponentBindingsById, toBioTemplateComponentImports, toBioTemplateComponentProps, toBioTemplateComponentPropsByComponent, toBioTemplateComponentPropsById, toBioTemplateComponentSnippets, toBioTemplateComponentUsage, toCalibrationCurveColumns, toCalibrationCurveDataFrame, toCalibrationCurveRows, toDoseConditions, toDoseLayoutState, toFlowPanelColumns, toFlowPanelDataFrame, toFlowPanelRows, toInstrumentRunColumns, toInstrumentRunDataFrame, toInstrumentRunRows, toInstrumentRunScheduleEvents, toInstrumentRunSteps, toPlateMapEditorState, toProtocolColumns, toProtocolDataFrame, toProtocolRows, toProtocolSteps, toQpcrColumns, toQpcrDataFrame, toQpcrRows, toQpcrWellPlateWells, toReagentColumns, toReagentDataFrame, toReagentListItems, toReagentRows, toSampleColumns, toSampleDataFrame, toSampleOptions, toSamplePrepColumns, toSamplePrepDataFrame, toSamplePrepRows, toSampleRows, toTemplateDataFrame, toTimeCourseColumns, toTimeCourseDataFrame, toTimeCourseRows, toTimeCourseSteps, toWellMapArray, toWellPlateWells, validateAssayMatrixData, validateCalibrationCurveData, validateDoseResponseData, validateFlowCytometryPanelData, validateInstrumentRunData, validatePlateMapData, validateProtocolStepsData, validateQpcrPlateData, validateReagentListData, validateSamplePrepData, validateSampleSheetData, validateTimeCourseData };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as controlsToFormSchema, i as useControlSchema, r as getControlDefaults, x as controlsToSidebarPanels, y as controlsToSectionFormSchemas } from "./useControlSchema-
|
|
1
|
+
import { _ as controlsToFormSchema, i as useControlSchema, r as getControlDefaults, x as controlsToSidebarPanels, y as controlsToSectionFormSchemas } from "./useControlSchema-B_qgU4rW.js";
|
|
2
2
|
//#region src/templates/builderReadUtils.ts
|
|
3
3
|
function isRecord$2(value) {
|
|
4
4
|
return typeof value === "object" && value !== null && !Array.isArray(value);
|
|
@@ -5060,4 +5060,4 @@ function getBioTemplateControlDefaults(target) {
|
|
|
5060
5060
|
//#endregion
|
|
5061
5061
|
export { toTimeCourseRows as $, listBioTemplatePacks as $t, createSamplePrepTemplate as A, toCalibrationCurveRows as At, toBioTemplateComponentProps as B, validatePlateMapData as Bt, createFlowCytometryPanelTemplate as C, toInstrumentRunScheduleEvents as Ct, createTimeCourseTemplate as D, toFlowPanelRows as Dt, createProtocolStepsTemplate as E, toFlowPanelDataFrame as Et, getBioTemplateComponentProps as F, validateAssayMatrixData as Ft, toTemplateDataFrame as G, validateSampleSheetData as Gt, toBioTemplateComponentPropsById as H, validateQpcrPlateData as Ht, listBioTemplateComponentBindings as I, validateCalibrationCurveData as It, toDoseLayoutState as J, getBioTemplatePresetInfo as Jt, toWellMapArray as K, validateTimeCourseData as Kt, toBioTemplateComponentBindings as L, validateDoseResponseData as Lt, createPlateMapTemplate as M, toAssayMatrixDataFrame as Mt, bioTemplatePresetControlValuesToOptions as N, toAssayMatrixRows as Nt, createCalibrationCurveTemplate as O, toCalibrationCurveColumns as Ot, getBioTemplateComponentBindings as P, toAssayMatrixSampleOptions as Pt, toTimeCourseDataFrame as Q, getBioTemplatePackInfo as Qt, toBioTemplateComponentBindingsById as R, validateFlowCytometryPanelData as Rt, createInstrumentRunTemplate as S, toInstrumentRunRows as St, createAssayMatrixTemplate as T, toFlowPanelColumns as Tt, toBioTemplateComponentSnippets as U, validateReagentListData as Ut, toBioTemplateComponentPropsByComponent as V, validateProtocolStepsData as Vt, toBioTemplateComponentUsage as W, validateSamplePrepData as Wt, toWellPlateWells as X, searchBioTemplatePresets as Xt, toPlateMapEditorState as Y, listBioTemplatePresets as Yt, toTimeCourseColumns as Z, bioTemplatePacks as Zt, createElisaAssayCollection as _, toProtocolDataFrame as _t, getBioTemplateControlDefaults as a, TEMPLATE_COLLECTION_KEY as an, toSamplePrepColumns as at, createQpcrExpressionCollection as b, toInstrumentRunColumns as bt, listBioTemplatePresetControlSchemas as c, createTemplateEnvelope as cn, toReagentColumns as ct, createBioTemplatePresetCollectionFromControls as d, extractTemplateCollection as dn, toReagentRows as dt, searchBioTemplatePacks as en, toTimeCourseSteps as et, createWellPlateScreenCollection as f, getTemplateData as fn, toQpcrColumns as ft, createFlowCytometryAssayCollection as g, toProtocolColumns as gt, createWesternBlotAssayCollection as h, toQpcrWellPlateWells as ht, createBioTemplateControlToolkit as i, searchBioTemplateCatalog as in, toSampleRows as it, createSampleSheetTemplate as j, toAssayMatrixColumns as jt, createDoseResponseTemplate as k, toCalibrationCurveDataFrame as kt, requireBioTemplateControlSchema as l, ensureTemplateEnvelope as ln, toReagentDataFrame as lt, createDefaultBioTemplate as m, toQpcrRows as mt, bioTemplateControlsToSectionFormSchemas as n, getBioTemplateInfo as nn, toSampleDataFrame as nt, getBioTemplateControlSchema as o, assertTemplateEnvelope as on, toSamplePrepDataFrame as ot, createBioTemplatePackCollection as p, toQpcrDataFrame as pt, toDoseConditions as q, bioTemplatePresets as qt, bioTemplateControlsToSidebarPanels as r, listBioTemplateCatalog as rn, toSampleOptions as rt, listBioTemplateControlSchemas as s, createTemplateCollection as sn, toSamplePrepRows as st, bioTemplateControlsToFormSchema as t, bioTemplateCatalog as tn, toSampleColumns as tt, createBioTemplatePresetCollection as u, ensureTemplateFromCollection as un, toReagentListItems as ut, createTargetedMetabolomicsCollection as v, toProtocolRows as vt, createReagentListTemplate as w, toInstrumentRunSteps as wt, createQpcrPlateTemplate as x, toInstrumentRunDataFrame as xt, createLcmsBatchCollection as y, toProtocolSteps as yt, toBioTemplateComponentImports as z, validateInstrumentRunData as zt };
|
|
5062
5062
|
|
|
5063
|
-
//# sourceMappingURL=templates-
|
|
5063
|
+
//# sourceMappingURL=templates-Cdj93S9C.js.map
|