@vitessce/constants-internal 3.0.0 → 3.1.0
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 +8 -4
- package/dist-tsc/constant-relationships.test.js +1 -0
- package/dist-tsc/constants.d.ts +2 -0
- package/dist-tsc/constants.js +4 -0
- package/dist-tsc/version.json +4 -4
- package/package.json +3 -3
- package/src/constant-relationships.test.js +1 -0
- package/src/constants.js +4 -0
- package/src/version.json +4 -4
package/dist/index.js
CHANGED
|
@@ -93,6 +93,10 @@ const FileType = {
|
|
|
93
93
|
ANNDATA_EXPRESSION_MATRIX_ZARR: "anndata-expression-matrix.zarr"
|
|
94
94
|
};
|
|
95
95
|
const CoordinationType = {
|
|
96
|
+
// Meta coordination scopes
|
|
97
|
+
META_COORDINATION_SCOPES: "metaCoordinationScopes",
|
|
98
|
+
META_COORDINATION_SCOPES_BY: "metaCoordinationScopesBy",
|
|
99
|
+
// Other coordination scopes
|
|
96
100
|
DATASET: "dataset",
|
|
97
101
|
// Entity types
|
|
98
102
|
OBS_TYPE: "obsType",
|
|
@@ -491,10 +495,10 @@ const COMPONENT_COORDINATION_TYPES = {
|
|
|
491
495
|
]
|
|
492
496
|
};
|
|
493
497
|
const note = "This file is regenerated by push-demo.sh.";
|
|
494
|
-
const version = "3.0.
|
|
495
|
-
const branch = "release-v3.0.
|
|
496
|
-
const date = "2023-06-
|
|
497
|
-
const hash = "
|
|
498
|
+
const version = "3.0.1";
|
|
499
|
+
const branch = "release-v3.0.1";
|
|
500
|
+
const date = "2023-06-30";
|
|
501
|
+
const hash = "8014e94f";
|
|
498
502
|
const version$1 = {
|
|
499
503
|
note,
|
|
500
504
|
version,
|
package/dist-tsc/constants.d.ts
CHANGED
|
@@ -81,6 +81,8 @@ export namespace FileType {
|
|
|
81
81
|
const ANNDATA_EXPRESSION_MATRIX_ZARR: string;
|
|
82
82
|
}
|
|
83
83
|
export namespace CoordinationType {
|
|
84
|
+
const META_COORDINATION_SCOPES: string;
|
|
85
|
+
const META_COORDINATION_SCOPES_BY: string;
|
|
84
86
|
const DATASET: string;
|
|
85
87
|
const OBS_TYPE: string;
|
|
86
88
|
const FEATURE_TYPE: string;
|
package/dist-tsc/constants.js
CHANGED
|
@@ -102,6 +102,10 @@ export const FileType = {
|
|
|
102
102
|
* to help prevent typos.
|
|
103
103
|
*/
|
|
104
104
|
export const CoordinationType = {
|
|
105
|
+
// Meta coordination scopes
|
|
106
|
+
META_COORDINATION_SCOPES: 'metaCoordinationScopes',
|
|
107
|
+
META_COORDINATION_SCOPES_BY: 'metaCoordinationScopesBy',
|
|
108
|
+
// Other coordination scopes
|
|
105
109
|
DATASET: 'dataset',
|
|
106
110
|
// Entity types
|
|
107
111
|
OBS_TYPE: 'obsType',
|
package/dist-tsc/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitessce/constants-internal",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"author": "Gehlenborg Lab",
|
|
5
5
|
"homepage": "http://vitessce.io",
|
|
6
6
|
"repository": {
|
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
],
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"vite": "^4.3.0",
|
|
20
|
-
"vitest": "^0.
|
|
20
|
+
"vitest": "^0.32.2"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"bundle": "pnpm exec vite build -c ../../scripts/vite.config.js",
|
|
24
|
-
"test": "pnpm exec vitest --run
|
|
24
|
+
"test": "pnpm exec vitest --run"
|
|
25
25
|
},
|
|
26
26
|
"module": "dist/index.js",
|
|
27
27
|
"exports": {
|
package/src/constants.js
CHANGED
|
@@ -106,6 +106,10 @@ export const FileType = {
|
|
|
106
106
|
* to help prevent typos.
|
|
107
107
|
*/
|
|
108
108
|
export const CoordinationType = {
|
|
109
|
+
// Meta coordination scopes
|
|
110
|
+
META_COORDINATION_SCOPES: 'metaCoordinationScopes',
|
|
111
|
+
META_COORDINATION_SCOPES_BY: 'metaCoordinationScopesBy',
|
|
112
|
+
// Other coordination scopes
|
|
109
113
|
DATASET: 'dataset',
|
|
110
114
|
// Entity types
|
|
111
115
|
OBS_TYPE: 'obsType',
|
package/src/version.json
CHANGED