@deck.gl-community/graph-layers 9.2.0-beta.5 → 9.2.0-beta.6
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.
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const GRAPH_STYLE_SCHEMA_CDN_URL = 'https://cdn.jsdelivr.net/npm/@deck.gl-community/graph-layers@9.2.0-beta.
|
|
1
|
+
export const GRAPH_STYLE_SCHEMA_CDN_URL = 'https://cdn.jsdelivr.net/npm/@deck.gl-community/graph-layers@9.2.0-beta.6/dist/graph-style-schema.json';
|
|
2
2
|
export default GRAPH_STYLE_SCHEMA_CDN_URL;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"$id": "https://cdn.jsdelivr.net/npm/@deck.gl-community/graph-layers@9.2.0-beta.
|
|
3
|
+
"$id": "https://cdn.jsdelivr.net/npm/@deck.gl-community/graph-layers@9.2.0-beta.6/dist/graph-style-schema.json",
|
|
4
4
|
"title": "Deck.gl Graph Stylesheet",
|
|
5
5
|
"description": "JSON schema describing the declarative stylesheet format supported by @deck.gl-community/graph-layers.",
|
|
6
6
|
"$ref": "#/definitions/GraphStylesheet",
|
package/dist/index.cjs
CHANGED
|
@@ -6668,7 +6668,7 @@ __publicField(GridLayer, "defaultProps", {
|
|
|
6668
6668
|
});
|
|
6669
6669
|
|
|
6670
6670
|
// dist/loaders/json-graph-loader.js
|
|
6671
|
-
var VERSION = true ? "9.2.0-beta.
|
|
6671
|
+
var VERSION = true ? "9.2.0-beta.6" : "latest";
|
|
6672
6672
|
var JSONGraphLoader = {
|
|
6673
6673
|
dataType: null,
|
|
6674
6674
|
batchType: null,
|
|
@@ -8129,7 +8129,7 @@ function isPlainObject(value) {
|
|
|
8129
8129
|
}
|
|
8130
8130
|
|
|
8131
8131
|
// dist/loaders/dot-graph-loader.js
|
|
8132
|
-
var VERSION2 = true ? "9.2.0-beta.
|
|
8132
|
+
var VERSION2 = true ? "9.2.0-beta.6" : "latest";
|
|
8133
8133
|
var DOTGraphLoader = {
|
|
8134
8134
|
dataType: null,
|
|
8135
8135
|
batchType: null,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { ArrowGraphDataBuilder } from "../graph-data/arrow-graph-data-builder.js";
|
|
5
5
|
// __VERSION__ is injected by babel-plugin-version-inline
|
|
6
6
|
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
|
|
7
|
-
const VERSION = typeof "9.2.0-beta.
|
|
7
|
+
const VERSION = typeof "9.2.0-beta.6" !== 'undefined' ? "9.2.0-beta.6" : 'latest';
|
|
8
8
|
export const DOTGraphLoader = {
|
|
9
9
|
dataType: null,
|
|
10
10
|
batchType: null,
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// import {PlainGraphDataBuilder} from '../graph-data/plain-graph-data-builder';
|
|
5
5
|
// __VERSION__ is injected by babel-plugin-version-inline
|
|
6
6
|
// @ts-ignore TS2304: Cannot find name '__VERSION__'.
|
|
7
|
-
const VERSION = typeof "9.2.0-beta.
|
|
7
|
+
const VERSION = typeof "9.2.0-beta.6" !== 'undefined' ? "9.2.0-beta.6" : 'latest';
|
|
8
8
|
export const JSONGraphLoader = {
|
|
9
9
|
dataType: null,
|
|
10
10
|
batchType: null,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deck.gl-community/graph-layers",
|
|
3
|
-
"version": "9.2.0-beta.
|
|
3
|
+
"version": "9.2.0-beta.6",
|
|
4
4
|
"description": "WebGL2-Powered library for Graph Visualization",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"zod": "^4.0.0"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "c72a43fa7f8edfb9456b37656b095d036946b3a4"
|
|
72
72
|
}
|