@vitessce/vit-s 4.0.1 → 4.0.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/dist/index.js +13 -2
- package/package.json +13 -13
package/dist/index.js
CHANGED
|
@@ -34108,7 +34108,7 @@ const AUTO_INDEPENDENT_COORDINATION_TYPES = [
|
|
|
34108
34108
|
CoordinationType$1.HIERARCHY_LEVELS
|
|
34109
34109
|
]
|
|
34110
34110
|
});
|
|
34111
|
-
const version = "4.0.
|
|
34111
|
+
const version = "4.0.2";
|
|
34112
34112
|
const META_VERSION = {
|
|
34113
34113
|
version
|
|
34114
34114
|
};
|
|
@@ -34607,7 +34607,18 @@ z.object({
|
|
|
34607
34607
|
z.object({
|
|
34608
34608
|
projectionAnnotationSpacing: z.number(),
|
|
34609
34609
|
featureIndexProp: z.string().optional().describe("The name of the Neuroglancer AnnotationProperty containing feature IDs. For example, specify 'gene' to use prop_gene() in the Neuroglancer shader code."),
|
|
34610
|
-
pointIndexProp: z.string().optional().describe("The name of the Neuroglancer AnnotationProperty containing point IDs. For example, specify 'point_id' to use prop_point_id() in the Neuroglancer shader code.")
|
|
34610
|
+
pointIndexProp: z.string().optional().describe("The name of the Neuroglancer AnnotationProperty containing point IDs. For example, specify 'point_id' to use prop_point_id() in the Neuroglancer shader code."),
|
|
34611
|
+
transform: z.object({
|
|
34612
|
+
matrix: z.array(z.array(z.number())),
|
|
34613
|
+
outputDimensions: z.record(z.tuple([z.number(), z.string()]))
|
|
34614
|
+
}).optional().describe("A coordinate transformation matrix to apply to the annotation layer source to map annotation coordinates to the global coordinate space."),
|
|
34615
|
+
// Note: See comments in neuroglancer-sorger.js
|
|
34616
|
+
// We may remove these in the future, pending clarification
|
|
34617
|
+
// to questions in the tissue-map-tools repo
|
|
34618
|
+
// - https://github.com/hms-dbmi/tissue-map-tools/issues/20
|
|
34619
|
+
// - https://github.com/hms-dbmi/tissue-map-tools/issues/38
|
|
34620
|
+
quantitativeColorProp: z.string().optional(),
|
|
34621
|
+
quantitativeColorMax: z.number().optional()
|
|
34611
34622
|
}).partial().nullable();
|
|
34612
34623
|
z.object({
|
|
34613
34624
|
obsIndex: z.string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitessce/vit-s",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.2",
|
|
4
4
|
"author": "HIDIVE Lab at HMS",
|
|
5
5
|
"homepage": "http://vitessce.io",
|
|
6
6
|
"repository": {
|
|
@@ -31,17 +31,17 @@
|
|
|
31
31
|
"react-error-boundary": "^5.0.0",
|
|
32
32
|
"@placemarkio/flat-drop-files": "^1.0.2",
|
|
33
33
|
"zarrita": "0.6.1",
|
|
34
|
-
"@vitessce/
|
|
35
|
-
"@vitessce/
|
|
36
|
-
"@vitessce/
|
|
37
|
-
"@vitessce/
|
|
38
|
-
"@vitessce/
|
|
39
|
-
"@vitessce/schemas": "4.0.
|
|
40
|
-
"@vitessce/utils": "4.0.
|
|
41
|
-
"@vitessce/
|
|
42
|
-
"@vitessce/
|
|
43
|
-
"@vitessce/globals": "4.0.
|
|
44
|
-
"@vitessce/
|
|
34
|
+
"@vitessce/error": "4.0.2",
|
|
35
|
+
"@vitessce/styles": "4.0.2",
|
|
36
|
+
"@vitessce/abstract": "4.0.2",
|
|
37
|
+
"@vitessce/constants-internal": "4.0.2",
|
|
38
|
+
"@vitessce/plugins": "4.0.2",
|
|
39
|
+
"@vitessce/schemas": "4.0.2",
|
|
40
|
+
"@vitessce/zarr-utils": "4.0.2",
|
|
41
|
+
"@vitessce/utils": "4.0.2",
|
|
42
|
+
"@vitessce/sets-utils": "4.0.2",
|
|
43
|
+
"@vitessce/globals": "4.0.2",
|
|
44
|
+
"@vitessce/config": "4.0.2"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@testing-library/jest-dom": "^6.6.3",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"react-dom": "19.2.6",
|
|
51
51
|
"vite": "^7.0.0",
|
|
52
52
|
"vitest": "^3.1.4",
|
|
53
|
-
"@vitessce/types": "4.0.
|
|
53
|
+
"@vitessce/types": "4.0.2"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|