@vitessce/vit-s 3.8.3 → 3.8.5
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 +6 -2
- package/package.json +12 -12
package/dist/index.js
CHANGED
|
@@ -32156,6 +32156,7 @@ const AUTO_INDEPENDENT_COORDINATION_TYPES = [
|
|
|
32156
32156
|
CoordinationType$1.FEATURE_SELECTION,
|
|
32157
32157
|
CoordinationType$1.FEATURE_VALUE_COLORMAP,
|
|
32158
32158
|
CoordinationType$1.FEATURE_VALUE_COLORMAP_RANGE,
|
|
32159
|
+
CoordinationType$1.FEATURE_AGGREGATION_STRATEGY,
|
|
32159
32160
|
// TODO: CoordinationType.FEATURE_COLOR_ENCODING,
|
|
32160
32161
|
// TODO: CoordinationType.ADDITIONAL_FEATURE_SETS,
|
|
32161
32162
|
CoordinationType$1.TOOLTIPS_VISIBLE,
|
|
@@ -32250,7 +32251,7 @@ const AUTO_INDEPENDENT_COORDINATION_TYPES = [
|
|
|
32250
32251
|
CoordinationType$1.HIERARCHY_LEVELS
|
|
32251
32252
|
]
|
|
32252
32253
|
});
|
|
32253
|
-
const version = "3.8.
|
|
32254
|
+
const version = "3.8.5";
|
|
32254
32255
|
const META_VERSION = {
|
|
32255
32256
|
version
|
|
32256
32257
|
};
|
|
@@ -32830,7 +32831,10 @@ z.object({
|
|
|
32830
32831
|
obsSets: obsSetsSpatialdataSchema,
|
|
32831
32832
|
obsEmbedding: obsEmbeddingSpatialdataSchemaConvenience,
|
|
32832
32833
|
// TODO: obsLabels
|
|
32833
|
-
|
|
32834
|
+
featureLabels: z.union([
|
|
32835
|
+
annDataFeatureLabels,
|
|
32836
|
+
z.array(annDataConvenienceFeatureLabelsItem)
|
|
32837
|
+
]),
|
|
32834
32838
|
// TODO: allow specifying tablePath and region at the top-level here.
|
|
32835
32839
|
coordinateSystem: z.string().optional().describe("The name of a coordinate transformation output used to transform all elements which lack a per-element coordinateSystem property.")
|
|
32836
32840
|
}).partial();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitessce/vit-s",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.5",
|
|
4
4
|
"author": "HIDIVE Lab at HMS",
|
|
5
5
|
"homepage": "http://vitessce.io",
|
|
6
6
|
"repository": {
|
|
@@ -28,16 +28,16 @@
|
|
|
28
28
|
"zustand": "^5.0.4",
|
|
29
29
|
"react-aria": "^3.28.0",
|
|
30
30
|
"react-error-boundary": "^5.0.0",
|
|
31
|
-
"@vitessce/styles": "3.8.
|
|
32
|
-
"@vitessce/abstract": "3.8.
|
|
33
|
-
"@vitessce/error": "3.8.
|
|
34
|
-
"@vitessce/constants-internal": "3.8.
|
|
35
|
-
"@vitessce/plugins": "3.8.
|
|
36
|
-
"@vitessce/schemas": "3.8.
|
|
37
|
-
"@vitessce/utils": "3.8.
|
|
38
|
-
"@vitessce/sets-utils": "3.8.
|
|
39
|
-
"@vitessce/config": "3.8.
|
|
40
|
-
"@vitessce/globals": "3.8.
|
|
31
|
+
"@vitessce/styles": "3.8.5",
|
|
32
|
+
"@vitessce/abstract": "3.8.5",
|
|
33
|
+
"@vitessce/error": "3.8.5",
|
|
34
|
+
"@vitessce/constants-internal": "3.8.5",
|
|
35
|
+
"@vitessce/plugins": "3.8.5",
|
|
36
|
+
"@vitessce/schemas": "3.8.5",
|
|
37
|
+
"@vitessce/utils": "3.8.5",
|
|
38
|
+
"@vitessce/sets-utils": "3.8.5",
|
|
39
|
+
"@vitessce/config": "3.8.5",
|
|
40
|
+
"@vitessce/globals": "3.8.5"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@testing-library/jest-dom": "^6.6.3",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"react-dom": "18.3.1",
|
|
47
47
|
"vite": "^7.0.0",
|
|
48
48
|
"vitest": "^3.1.4",
|
|
49
|
-
"@vitessce/types": "3.8.
|
|
49
|
+
"@vitessce/types": "3.8.5"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|