@vitessce/constants-internal 3.0.1 → 3.1.1
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 +10 -6
- package/dist-tsc/constants.d.ts +2 -0
- package/dist-tsc/constants.js +4 -0
- package/dist-tsc/version.json +5 -5
- package/package.json +1 -1
- package/src/constants.js +4 -0
- package/src/version.json +6 -6
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",
|
|
@@ -490,16 +494,16 @@ const COMPONENT_COORDINATION_TYPES = {
|
|
|
490
494
|
CoordinationType.FEATURE_SELECTION
|
|
491
495
|
]
|
|
492
496
|
};
|
|
493
|
-
const note = "This file is
|
|
494
|
-
const version = "3.
|
|
495
|
-
const
|
|
496
|
-
const
|
|
497
|
-
const hash = "
|
|
497
|
+
const note = "This file is autogenerated by .changeset/post-changelog.mjs.";
|
|
498
|
+
const version = "3.1.1";
|
|
499
|
+
const date = "2023-08-02";
|
|
500
|
+
const branch = "changeset-release/main";
|
|
501
|
+
const hash = "0dbc5e39";
|
|
498
502
|
const version$1 = {
|
|
499
503
|
note,
|
|
500
504
|
version,
|
|
501
|
-
branch,
|
|
502
505
|
date,
|
|
506
|
+
branch,
|
|
503
507
|
hash
|
|
504
508
|
};
|
|
505
509
|
export {
|
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"note": "This file is
|
|
3
|
-
"version": "3.
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"hash": "
|
|
2
|
+
"note": "This file is autogenerated by .changeset/post-changelog.mjs.",
|
|
3
|
+
"version": "3.1.1",
|
|
4
|
+
"date": "2023-08-02",
|
|
5
|
+
"branch": "changeset-release/main",
|
|
6
|
+
"hash": "0dbc5e39"
|
|
7
7
|
}
|
package/package.json
CHANGED
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"note": "This file is
|
|
3
|
-
"version": "3.
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"hash": "
|
|
7
|
-
}
|
|
2
|
+
"note": "This file is autogenerated by .changeset/post-changelog.mjs.",
|
|
3
|
+
"version": "3.1.1",
|
|
4
|
+
"date": "2023-08-02",
|
|
5
|
+
"branch": "changeset-release/main",
|
|
6
|
+
"hash": "0dbc5e39"
|
|
7
|
+
}
|