@deck.gl-community/graph-layers 9.2.5 → 9.2.8
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/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# graph-layers
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@deck.gl-community/graph-layers)
|
|
4
|
+
[](https://www.npmjs.com/package/@deck.gl-community/graph-layers)
|
|
5
|
+
|
|
3
6
|
TBD
|
|
4
7
|
|
|
5
8
|
<p align="center">
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const GRAPH_STYLE_SCHEMA_CDN_URL = 'https://cdn.jsdelivr.net/npm/@deck.gl-community/graph-layers@9.2.
|
|
1
|
+
export const GRAPH_STYLE_SCHEMA_CDN_URL = 'https://cdn.jsdelivr.net/npm/@deck.gl-community/graph-layers@9.2.8/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.
|
|
3
|
+
"$id": "https://cdn.jsdelivr.net/npm/@deck.gl-community/graph-layers@9.2.8/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
|
@@ -8208,7 +8208,7 @@ function isPlainObject(value) {
|
|
|
8208
8208
|
}
|
|
8209
8209
|
|
|
8210
8210
|
// dist/loaders/json-graph-loader.js
|
|
8211
|
-
var VERSION = true ? "9.2.
|
|
8211
|
+
var VERSION = true ? "9.2.8" : "latest";
|
|
8212
8212
|
var JSONGraphLoader = {
|
|
8213
8213
|
dataType: null,
|
|
8214
8214
|
batchType: null,
|
|
@@ -8233,7 +8233,7 @@ var JSONGraphLoader = {
|
|
|
8233
8233
|
};
|
|
8234
8234
|
|
|
8235
8235
|
// dist/loaders/dot-graph-loader.js
|
|
8236
|
-
var VERSION2 = true ? "9.2.
|
|
8236
|
+
var VERSION2 = true ? "9.2.8" : "latest";
|
|
8237
8237
|
var DOTGraphLoader = {
|
|
8238
8238
|
dataType: null,
|
|
8239
8239
|
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.
|
|
7
|
+
const VERSION = typeof "9.2.8" !== 'undefined' ? "9.2.8" : '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.
|
|
7
|
+
const VERSION = typeof "9.2.8" !== 'undefined' ? "9.2.8" : '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.
|
|
3
|
+
"version": "9.2.8",
|
|
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": "9cb179aa3d1707f32116034150ab7130ce88b18c"
|
|
72
72
|
}
|