@vitessce/vit-s 2.0.0-beta.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/LICENSE +21 -0
- package/dist/CallbackPublisher.js +68 -0
- package/dist/LoadingIndicator.js +27 -0
- package/dist/TitleInfo.js +151 -0
- package/dist/VitS.js +113 -0
- package/dist/Vitessce.integration.test.js +36 -0
- package/dist/Vitessce.js +101 -0
- package/dist/VitessceGrid.js +55 -0
- package/dist/VitessceGrid.test.js +36 -0
- package/dist/Warning.js +45 -0
- package/dist/classNames.js +8 -0
- package/dist/component-registry.js +16 -0
- package/dist/data/AbstractLoader.js +35 -0
- package/dist/data/AbstractTwoStepLoader.js +7 -0
- package/dist/data/LoaderResult.js +7 -0
- package/dist/data/index.js +3 -0
- package/dist/data/loader-registry.js +15 -0
- package/dist/data-hook-utils.js +175 -0
- package/dist/data-hooks.js +241 -0
- package/dist/errors/AbstractLoaderError.js +13 -0
- package/dist/errors/DataSourceFetchError.js +13 -0
- package/dist/errors/DatasetNotFoundError.js +17 -0
- package/dist/errors/LoaderNotFoundError.js +17 -0
- package/dist/errors/LoaderValidationError.js +15 -0
- package/dist/errors/OptionsValidationError.js +15 -0
- package/dist/errors/index.js +6 -0
- package/dist/export-utils.js +70 -0
- package/dist/export-utils.test.js +66 -0
- package/dist/file-options-schemas-legacy.js +136 -0
- package/dist/file-options-schemas-legacy.test.js +126 -0
- package/dist/file-options-schemas.js +322 -0
- package/dist/file-options-schemas.test.js +23 -0
- package/dist/hooks.js +215 -0
- package/dist/index.js +18 -0
- package/dist/joint-file-types-legacy.js +278 -0
- package/dist/joint-file-types-legacy.test.js +400 -0
- package/dist/joint-file-types.js +148 -0
- package/dist/joint-file-types.test.js +139 -0
- package/dist/loader-registry.js +98 -0
- package/dist/plugins.js +154 -0
- package/dist/plugins.test.fixtures.js +76 -0
- package/dist/plugins.test.js +30 -0
- package/dist/schemas/PrettyJsonSchema.js +34 -0
- package/dist/schemas/config-0.1.0.schema.json +84 -0
- package/dist/schemas/config-1.0.0.schema.json +733 -0
- package/dist/schemas/config-1.0.1.schema.json +909 -0
- package/dist/schemas/config-1.0.10.schema.json +969 -0
- package/dist/schemas/config-1.0.11.schema.json +990 -0
- package/dist/schemas/config-1.0.12.schema.json +997 -0
- package/dist/schemas/config-1.0.13.schema.json +1013 -0
- package/dist/schemas/config-1.0.14.schema.json +1048 -0
- package/dist/schemas/config-1.0.15.schema.json +1048 -0
- package/dist/schemas/config-1.0.15.schema.test.js +22 -0
- package/dist/schemas/config-1.0.2.schema.json +910 -0
- package/dist/schemas/config-1.0.3.schema.json +910 -0
- package/dist/schemas/config-1.0.4.schema.json +949 -0
- package/dist/schemas/config-1.0.5.schema.json +949 -0
- package/dist/schemas/config-1.0.6.schema.json +949 -0
- package/dist/schemas/config-1.0.7.schema.json +949 -0
- package/dist/schemas/config-1.0.8.schema.json +965 -0
- package/dist/schemas/config-1.0.9.schema.json +965 -0
- package/dist/schemas/obsSets.schema.js +195 -0
- package/dist/schemas/obsSets.schema.json +194 -0
- package/dist/schemas/obsSetsTabular.schema.js +38 -0
- package/dist/schemas/obsSetsTabular.schema.json +37 -0
- package/dist/schemas/raster.schema.js +120 -0
- package/dist/schemas/raster.schema.json +119 -0
- package/dist/schemas/schema.test-old.js +50 -0
- package/dist/schemas/schema.test.js +46 -0
- package/dist/schemas.js +4 -0
- package/dist/shared-mui/components.js +35 -0
- package/dist/shared-mui/container.js +211 -0
- package/dist/shared-mui/styles.js +63 -0
- package/dist/shared-plot-options/CellColorEncodingOption.js +18 -0
- package/dist/shared-plot-options/OptionSelect.js +12 -0
- package/dist/shared-plot-options/OptionsContainer.js +12 -0
- package/dist/shared-plot-options/index.js +4 -0
- package/dist/shared-plot-options/styles.js +48 -0
- package/dist/state/hooks.js +550 -0
- package/dist/view-config-upgraders.js +525 -0
- package/dist/view-config-utils.js +286 -0
- package/dist/view-config-utils.test.fixtures.js +765 -0
- package/dist/view-config-utils.test.js +66 -0
- package/dist/view-config-versions.js +47 -0
- package/dist/vitessce-grid-layout/VitessceGridLayout.js +96 -0
- package/dist/vitessce-grid-layout/VitessceGridLayout.test.js +40 -0
- package/dist/vitessce-grid-layout/index.js +1 -0
- package/dist/vitessce-grid-layout/layout-utils.js +61 -0
- package/dist/vitessce-grid-layout/layout-utils.test.js +146 -0
- package/dist/vitessce-grid-utils.js +140 -0
- package/package.json +43 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "https://github.com/vitessce/vitessce/#dataset",
|
|
4
|
+
"title": "Vitessce data set",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"definitions": {
|
|
7
|
+
"components": {
|
|
8
|
+
"type": "array",
|
|
9
|
+
"items": {
|
|
10
|
+
"type": "object",
|
|
11
|
+
"additionalProperties": false,
|
|
12
|
+
"required": ["component", "x", "y"],
|
|
13
|
+
"properties": {
|
|
14
|
+
"component": { "type": "string" },
|
|
15
|
+
"props": { "type": "object" },
|
|
16
|
+
"x": { "type": "integer" },
|
|
17
|
+
"y": { "type": "integer" },
|
|
18
|
+
"w": { "type": "integer" },
|
|
19
|
+
"h": { "type": "integer" }
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"requestInit": {
|
|
24
|
+
"type": "object",
|
|
25
|
+
"additionalProperties": false,
|
|
26
|
+
"required": [],
|
|
27
|
+
"properties": {
|
|
28
|
+
"method": {
|
|
29
|
+
"type": "string"
|
|
30
|
+
},
|
|
31
|
+
"headers": {
|
|
32
|
+
"type": "object"
|
|
33
|
+
},
|
|
34
|
+
"body": {
|
|
35
|
+
"type": "string"
|
|
36
|
+
},
|
|
37
|
+
"mode": {
|
|
38
|
+
"type": "string"
|
|
39
|
+
},
|
|
40
|
+
"credentials": {
|
|
41
|
+
"type": "string"
|
|
42
|
+
},
|
|
43
|
+
"cache": {
|
|
44
|
+
"type": "string"
|
|
45
|
+
},
|
|
46
|
+
"redirect": {
|
|
47
|
+
"type": "string"
|
|
48
|
+
},
|
|
49
|
+
"referrer": {
|
|
50
|
+
"type": "string"
|
|
51
|
+
},
|
|
52
|
+
"integrity": {
|
|
53
|
+
"type": "string"
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"additionalProperties": false,
|
|
59
|
+
"required": ["version", "name", "layers"],
|
|
60
|
+
"properties": {
|
|
61
|
+
"name": { "type": "string" },
|
|
62
|
+
"public": { "type": "boolean" },
|
|
63
|
+
"description": { "type": "string" },
|
|
64
|
+
"layers": {
|
|
65
|
+
"type": "array",
|
|
66
|
+
"items": {
|
|
67
|
+
"type": "object",
|
|
68
|
+
"additionalProperties": false,
|
|
69
|
+
"required": ["name", "type", "fileType", "url"],
|
|
70
|
+
"properties": {
|
|
71
|
+
"name": { "type": "string" },
|
|
72
|
+
"type": { "type": "string" },
|
|
73
|
+
"fileType": { "type": "string" },
|
|
74
|
+
"url": { "type": "string" },
|
|
75
|
+
"requestInit": { "$ref": "#/definitions/requestInit" }
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"staticLayout": { "$ref": "#/definitions/components" },
|
|
80
|
+
"version": {
|
|
81
|
+
"type": "string", "enum": ["0.1.0"]
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|