@neo4j-ndl/react-graph 2.0.22 → 2.0.23
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/lib/cjs/_generated/style-rules/index.js +10 -1
- package/lib/cjs/_generated/style-rules/index.js.map +1 -1
- package/lib/cjs/_generated/style-rules/literal-schemas.js +16 -1
- package/lib/cjs/_generated/style-rules/literal-schemas.js.map +1 -1
- package/lib/cjs/_generated/style-rules/numeric-utils.js +163 -0
- package/lib/cjs/_generated/style-rules/numeric-utils.js.map +1 -0
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/stories/graph-visualization-range-styling.story.js +35 -35
- package/lib/cjs/stories/graph-visualization-range-styling.story.js.map +1 -1
- package/lib/cjs/styling/compile-graph-styles.js +68 -22
- package/lib/cjs/styling/compile-graph-styles.js.map +1 -1
- package/lib/cjs/styling/style-types.js +21 -12
- package/lib/cjs/styling/style-types.js.map +1 -1
- package/lib/esm/_generated/style-rules/index.js +2 -1
- package/lib/esm/_generated/style-rules/index.js.map +1 -1
- package/lib/esm/_generated/style-rules/literal-schemas.js +15 -0
- package/lib/esm/_generated/style-rules/literal-schemas.js.map +1 -1
- package/lib/esm/_generated/style-rules/numeric-utils.js +155 -0
- package/lib/esm/_generated/style-rules/numeric-utils.js.map +1 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/stories/graph-visualization-range-styling.story.js +35 -35
- package/lib/esm/stories/graph-visualization-range-styling.story.js.map +1 -1
- package/lib/esm/styling/compile-graph-styles.js +69 -23
- package/lib/esm/styling/compile-graph-styles.js.map +1 -1
- package/lib/esm/styling/style-types.js +21 -12
- package/lib/esm/styling/style-types.js.map +1 -1
- package/lib/types/_generated/style-rules/index.d.ts +4 -2
- package/lib/types/_generated/style-rules/index.d.ts.map +1 -1
- package/lib/types/_generated/style-rules/literal-schemas.d.ts +13 -0
- package/lib/types/_generated/style-rules/literal-schemas.d.ts.map +1 -1
- package/lib/types/_generated/style-rules/numeric-utils.d.ts +45 -0
- package/lib/types/_generated/style-rules/numeric-utils.d.ts.map +1 -0
- package/lib/types/index.d.ts +1 -1
- package/lib/types/index.d.ts.map +1 -1
- package/lib/types/styling/compile-graph-styles.d.ts.map +1 -1
- package/lib/types/styling/style-types.d.ts +87 -26
- package/lib/types/styling/style-types.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
*/
|
|
21
21
|
import { type Node, type Relationship } from '@neo4j-nvl/base';
|
|
22
22
|
import { z } from 'zod';
|
|
23
|
-
import { type DatetimeLiteral, type LocalDatetimeLiteral, type TimeLiteral } from '../_generated/style-rules';
|
|
23
|
+
import { type BigintLiteral, type DatetimeLiteral, type LocalDatetimeLiteral, type NumericLiteral, type TimeLiteral } from '../_generated/style-rules';
|
|
24
24
|
export declare const SelectorSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
25
25
|
label: z.ZodNullable<z.ZodString>;
|
|
26
26
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -36,7 +36,9 @@ export declare const MatchSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
36
36
|
}, z.core.$strip>, z.ZodObject<{
|
|
37
37
|
property: z.ZodString;
|
|
38
38
|
}, z.core.$strip>]>;
|
|
39
|
-
export declare const CypherValueSchema: z.ZodUnion<readonly [z.ZodString, z.
|
|
39
|
+
export declare const CypherValueSchema: z.ZodUnion<readonly [z.ZodString, z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
40
|
+
bigint: z.ZodString;
|
|
41
|
+
}, z.core.$strip>]>, z.ZodBoolean, z.ZodNull, z.ZodObject<{
|
|
40
42
|
datetime: z.ZodString;
|
|
41
43
|
}, z.core.$strip>, z.ZodObject<{
|
|
42
44
|
localdatetime: z.ZodString;
|
|
@@ -44,13 +46,25 @@ export declare const CypherValueSchema: z.ZodUnion<readonly [z.ZodString, z.ZodN
|
|
|
44
46
|
time: z.ZodString;
|
|
45
47
|
}, z.core.$strip>]>;
|
|
46
48
|
export type CypherValue = z.infer<typeof CypherValueSchema>;
|
|
49
|
+
/** A JSON-safe bigint literal represented by a signed decimal string. */
|
|
50
|
+
export declare const GraphBigintLiteralSchema: z.ZodObject<{
|
|
51
|
+
bigint: z.ZodString;
|
|
52
|
+
}, z.core.$strip>;
|
|
53
|
+
/** A number, native bigint, or JSON-safe bigint literal. */
|
|
54
|
+
export declare const GraphNumericLiteralSchema: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
55
|
+
bigint: z.ZodString;
|
|
56
|
+
}, z.core.$strip>]>;
|
|
57
|
+
export type GraphBigintLiteral = BigintLiteral;
|
|
58
|
+
export type GraphNumericLiteral = NumericLiteral;
|
|
47
59
|
export declare const ValueSchema: z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodObject<{
|
|
48
60
|
label: z.ZodNullable<z.ZodString>;
|
|
49
61
|
}, z.core.$strip>, z.ZodObject<{
|
|
50
62
|
reltype: z.ZodNullable<z.ZodString>;
|
|
51
63
|
}, z.core.$strip>, z.ZodObject<{
|
|
52
64
|
property: z.ZodString;
|
|
53
|
-
}, z.core.$strip>]>, z.ZodUnion<readonly [z.ZodString, z.
|
|
65
|
+
}, z.core.$strip>]>, z.ZodUnion<readonly [z.ZodString, z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
66
|
+
bigint: z.ZodString;
|
|
67
|
+
}, z.core.$strip>]>, z.ZodBoolean, z.ZodNull, z.ZodObject<{
|
|
54
68
|
datetime: z.ZodString;
|
|
55
69
|
}, z.core.$strip>, z.ZodObject<{
|
|
56
70
|
localdatetime: z.ZodString;
|
|
@@ -112,47 +126,66 @@ export declare const NvlCaptionSchema: z.ZodObject<{
|
|
|
112
126
|
}, z.core.$strip>;
|
|
113
127
|
export type Caption = z.infer<typeof NvlCaptionSchema>;
|
|
114
128
|
/**
|
|
115
|
-
* Gradient coloring based on a continuous numeric property value.
|
|
129
|
+
* Gradient coloring based on a continuous numeric property value. Range
|
|
130
|
+
* boundaries accept numbers, native bigints, and JSON-safe bigint literals.
|
|
116
131
|
* Colors must be a standard hex string (#rrggbb).
|
|
117
132
|
* If the property is missing, non-numeric, or any color is invalid, the
|
|
118
133
|
* colorRange is silently ignored — other style properties still apply.
|
|
119
134
|
*/
|
|
120
135
|
export declare const ColorRangeSchema: z.ZodObject<{
|
|
121
136
|
onProperty: z.ZodString;
|
|
122
|
-
minValue: z.ZodNumber
|
|
137
|
+
minValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
138
|
+
bigint: z.ZodString;
|
|
139
|
+
}, z.core.$strip>]>;
|
|
123
140
|
minColor: z.ZodString;
|
|
124
|
-
maxValue: z.ZodNumber
|
|
141
|
+
maxValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
142
|
+
bigint: z.ZodString;
|
|
143
|
+
}, z.core.$strip>]>;
|
|
125
144
|
maxColor: z.ZodString;
|
|
126
|
-
midValue: z.ZodOptional<z.ZodNumber
|
|
145
|
+
midValue: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
146
|
+
bigint: z.ZodString;
|
|
147
|
+
}, z.core.$strip>]>>;
|
|
127
148
|
midColor: z.ZodOptional<z.ZodString>;
|
|
128
149
|
isDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
129
150
|
}, z.core.$strip>;
|
|
130
151
|
export type ColorRange = z.infer<typeof ColorRangeSchema>;
|
|
131
152
|
/**
|
|
132
153
|
* Size interpolation for nodes based on a continuous numeric property value.
|
|
154
|
+
* Range boundaries accept numbers, native bigints, and JSON-safe bigint
|
|
155
|
+
* literals.
|
|
133
156
|
* Maps a property value in [minValue, maxValue] to a size in [minSize, maxSize].
|
|
134
157
|
* If the property is missing or non-numeric, sizeRange is silently ignored —
|
|
135
158
|
* other style properties still apply.
|
|
136
159
|
*/
|
|
137
160
|
export declare const SizeRangeSchema: z.ZodObject<{
|
|
138
161
|
onProperty: z.ZodString;
|
|
139
|
-
minValue: z.ZodNumber
|
|
140
|
-
|
|
162
|
+
minValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
163
|
+
bigint: z.ZodString;
|
|
164
|
+
}, z.core.$strip>]>;
|
|
165
|
+
maxValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
166
|
+
bigint: z.ZodString;
|
|
167
|
+
}, z.core.$strip>]>;
|
|
141
168
|
minSize: z.ZodNumber;
|
|
142
169
|
maxSize: z.ZodNumber;
|
|
143
170
|
isDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
144
171
|
}, z.core.$strip>;
|
|
145
172
|
export type SizeRange = z.infer<typeof SizeRangeSchema>;
|
|
146
173
|
/**
|
|
147
|
-
* Width interpolation for relationships based on a continuous numeric property
|
|
174
|
+
* Width interpolation for relationships based on a continuous numeric property
|
|
175
|
+
* value. Range boundaries accept numbers, native bigints, and JSON-safe bigint
|
|
176
|
+
* literals.
|
|
148
177
|
* Maps a property value in [minValue, maxValue] to a width in [minWidth, maxWidth].
|
|
149
178
|
* If the property is missing or non-numeric, widthRange is silently ignored —
|
|
150
179
|
* other style properties still apply.
|
|
151
180
|
*/
|
|
152
181
|
export declare const WidthRangeSchema: z.ZodObject<{
|
|
153
182
|
onProperty: z.ZodString;
|
|
154
|
-
minValue: z.ZodNumber
|
|
155
|
-
|
|
183
|
+
minValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
184
|
+
bigint: z.ZodString;
|
|
185
|
+
}, z.core.$strip>]>;
|
|
186
|
+
maxValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
187
|
+
bigint: z.ZodString;
|
|
188
|
+
}, z.core.$strip>]>;
|
|
156
189
|
minWidth: z.ZodNumber;
|
|
157
190
|
maxWidth: z.ZodNumber;
|
|
158
191
|
isDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -194,11 +227,17 @@ export declare const StyleSchema: z.ZodObject<{
|
|
|
194
227
|
}, z.core.$strip>>;
|
|
195
228
|
colorRange: z.ZodOptional<z.ZodObject<{
|
|
196
229
|
onProperty: z.ZodString;
|
|
197
|
-
minValue: z.ZodNumber
|
|
230
|
+
minValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
231
|
+
bigint: z.ZodString;
|
|
232
|
+
}, z.core.$strip>]>;
|
|
198
233
|
minColor: z.ZodString;
|
|
199
|
-
maxValue: z.ZodNumber
|
|
234
|
+
maxValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
235
|
+
bigint: z.ZodString;
|
|
236
|
+
}, z.core.$strip>]>;
|
|
200
237
|
maxColor: z.ZodString;
|
|
201
|
-
midValue: z.ZodOptional<z.ZodNumber
|
|
238
|
+
midValue: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
239
|
+
bigint: z.ZodString;
|
|
240
|
+
}, z.core.$strip>]>>;
|
|
202
241
|
midColor: z.ZodOptional<z.ZodString>;
|
|
203
242
|
isDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
204
243
|
}, z.core.$strip>>;
|
|
@@ -208,8 +247,12 @@ export declare const StyleSchema: z.ZodObject<{
|
|
|
208
247
|
}, z.core.$strip>>;
|
|
209
248
|
sizeRange: z.ZodOptional<z.ZodObject<{
|
|
210
249
|
onProperty: z.ZodString;
|
|
211
|
-
minValue: z.ZodNumber
|
|
212
|
-
|
|
250
|
+
minValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
251
|
+
bigint: z.ZodString;
|
|
252
|
+
}, z.core.$strip>]>;
|
|
253
|
+
maxValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
254
|
+
bigint: z.ZodString;
|
|
255
|
+
}, z.core.$strip>]>;
|
|
213
256
|
minSize: z.ZodNumber;
|
|
214
257
|
maxSize: z.ZodNumber;
|
|
215
258
|
isDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -222,8 +265,12 @@ export declare const StyleSchema: z.ZodObject<{
|
|
|
222
265
|
}, z.core.$strip>>;
|
|
223
266
|
widthRange: z.ZodOptional<z.ZodObject<{
|
|
224
267
|
onProperty: z.ZodString;
|
|
225
|
-
minValue: z.ZodNumber
|
|
226
|
-
|
|
268
|
+
minValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
269
|
+
bigint: z.ZodString;
|
|
270
|
+
}, z.core.$strip>]>;
|
|
271
|
+
maxValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
272
|
+
bigint: z.ZodString;
|
|
273
|
+
}, z.core.$strip>]>;
|
|
227
274
|
minWidth: z.ZodNumber;
|
|
228
275
|
maxWidth: z.ZodNumber;
|
|
229
276
|
isDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -276,11 +323,17 @@ export declare const GraphStyleRuleSchema: z.ZodObject<{
|
|
|
276
323
|
}, z.core.$strip>>;
|
|
277
324
|
colorRange: z.ZodOptional<z.ZodObject<{
|
|
278
325
|
onProperty: z.ZodString;
|
|
279
|
-
minValue: z.ZodNumber
|
|
326
|
+
minValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
327
|
+
bigint: z.ZodString;
|
|
328
|
+
}, z.core.$strip>]>;
|
|
280
329
|
minColor: z.ZodString;
|
|
281
|
-
maxValue: z.ZodNumber
|
|
330
|
+
maxValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
331
|
+
bigint: z.ZodString;
|
|
332
|
+
}, z.core.$strip>]>;
|
|
282
333
|
maxColor: z.ZodString;
|
|
283
|
-
midValue: z.ZodOptional<z.ZodNumber
|
|
334
|
+
midValue: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
335
|
+
bigint: z.ZodString;
|
|
336
|
+
}, z.core.$strip>]>>;
|
|
284
337
|
midColor: z.ZodOptional<z.ZodString>;
|
|
285
338
|
isDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
286
339
|
}, z.core.$strip>>;
|
|
@@ -290,8 +343,12 @@ export declare const GraphStyleRuleSchema: z.ZodObject<{
|
|
|
290
343
|
}, z.core.$strip>>;
|
|
291
344
|
sizeRange: z.ZodOptional<z.ZodObject<{
|
|
292
345
|
onProperty: z.ZodString;
|
|
293
|
-
minValue: z.ZodNumber
|
|
294
|
-
|
|
346
|
+
minValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
347
|
+
bigint: z.ZodString;
|
|
348
|
+
}, z.core.$strip>]>;
|
|
349
|
+
maxValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
350
|
+
bigint: z.ZodString;
|
|
351
|
+
}, z.core.$strip>]>;
|
|
295
352
|
minSize: z.ZodNumber;
|
|
296
353
|
maxSize: z.ZodNumber;
|
|
297
354
|
isDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -304,8 +361,12 @@ export declare const GraphStyleRuleSchema: z.ZodObject<{
|
|
|
304
361
|
}, z.core.$strip>>;
|
|
305
362
|
widthRange: z.ZodOptional<z.ZodObject<{
|
|
306
363
|
onProperty: z.ZodString;
|
|
307
|
-
minValue: z.ZodNumber
|
|
308
|
-
|
|
364
|
+
minValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
365
|
+
bigint: z.ZodString;
|
|
366
|
+
}, z.core.$strip>]>;
|
|
367
|
+
maxValue: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt, z.ZodObject<{
|
|
368
|
+
bigint: z.ZodString;
|
|
369
|
+
}, z.core.$strip>]>;
|
|
309
370
|
minWidth: z.ZodNumber;
|
|
310
371
|
maxWidth: z.ZodNumber;
|
|
311
372
|
isDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"style-types.d.ts","sourceRoot":"","sources":["../../../src/styling/style-types.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAEH,OAAO,EAAE,KAAK,IAAI,EAAE,KAAK,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/D,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EACL,KAAK,eAAe,EAEpB,KAAK,oBAAoB,EAEzB,KAAK,WAAW,EAEjB,MAAM,2BAA2B,CAAC;AA2BnC,eAAO,MAAM,cAAc;;;;;;mBAIzB,CAAC;AACH,KAAK,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE/C,eAAO,MAAM,WAAW;;;;;;mBAItB,CAAC;AAGH,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"style-types.d.ts","sourceRoot":"","sources":["../../../src/styling/style-types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neo4j-ndl/react-graph",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.23",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"description": "React implementation of the graph visualization from Neo4j Design System",
|
|
6
6
|
"keywords": [
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"@neo4j-nvl/interaction-handlers": "^1.0.0",
|
|
59
59
|
"@neo4j-nvl/react": "^1.0.0",
|
|
60
60
|
"@neo4j-ndl/base": "^4.17.2",
|
|
61
|
-
"@neo4j-ndl/react": "^4.18.
|
|
61
|
+
"@neo4j-ndl/react": "^4.18.2"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"classnames": "2.5.1",
|