@neo4j-ndl/base 0.16.0 → 1.0.0-alpha-4cfc0f0
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/index.js +42 -0
- package/lib/cjs/index.js.map +1 -0
- package/lib/{optimised.config.js → cjs/tailwind-preset.config.js} +18 -6
- package/lib/cjs/tailwind-preset.config.js.map +1 -0
- package/lib/{tailwindConfig.js → cjs/tailwindTheme.js} +22 -7
- package/lib/cjs/tailwindTheme.js.map +1 -0
- package/lib/cjs/tokens/js/tokens-esm.js +250 -0
- package/lib/cjs/tokens/js/tokens-esm.js.map +1 -0
- package/lib/cjs/tokens/js/tokens.js +248 -0
- package/lib/cjs/tokens/js/tokens.js.map +1 -0
- package/lib/cjs/typescale.js +147 -0
- package/lib/cjs/typescale.js.map +1 -0
- package/lib/{typings.js → cjs/typings.js} +0 -0
- package/lib/cjs/typings.js.map +1 -0
- package/lib/esm/index.js +26 -0
- package/lib/esm/index.js.map +1 -0
- package/lib/esm/tailwind-preset.config.js +74 -0
- package/lib/esm/tailwind-preset.config.js.map +1 -0
- package/lib/esm/tailwindTheme.js +45 -0
- package/lib/esm/tailwindTheme.js.map +1 -0
- package/lib/esm/tokens/js/tokens-esm.js +247 -0
- package/lib/esm/tokens/js/tokens-esm.js.map +1 -0
- package/lib/esm/tokens/js/tokens.js +248 -0
- package/lib/esm/tokens/js/tokens.js.map +1 -0
- package/lib/esm/typescale.js +144 -0
- package/lib/esm/typescale.js.map +1 -0
- package/lib/esm/typings.js +22 -0
- package/lib/esm/typings.js.map +1 -0
- package/lib/neo4j-ds-styles.css +26243 -2194
- package/lib/tokens/css/tokens.css +34 -26
- package/lib/tokens/js/tokens-raw.js +229 -71
- package/lib/tokens/js/tokens.js +231 -214
- package/lib/tokens/scss/tokens.scss +34 -26
- package/lib/types/index.d.ts +25 -0
- package/lib/types/tailwind-preset.config.d.ts +7 -0
- package/lib/types/tailwindTheme.d.ts +2 -0
- package/lib/types/tokens/js/tokens-esm.d.ts +297 -0
- package/lib/{tokens → types/tokens}/js/tokens.d.ts +27 -8
- package/lib/{typescale.d.ts → types/typescale.d.ts} +9 -10
- package/lib/{typings.d.ts → types/typings.d.ts} +0 -0
- package/package.json +29 -12
- package/CHANGELOG.md +0 -369
- package/lib/optimised.config.d.ts +0 -206
- package/lib/optimised.config.js.map +0 -1
- package/lib/tailwindConfig.d.ts +0 -186
- package/lib/tailwindConfig.js.map +0 -1
- package/lib/tokens/js/tokens.js.map +0 -1
- package/lib/typescale.js +0 -137
- package/lib/typescale.js.map +0 -1
- package/lib/typings.js.map +0 -1
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
export namespace tokens {
|
|
2
|
+
namespace transitions {
|
|
3
|
+
export const values: {
|
|
4
|
+
properties: {
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
duration: {
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
"timing-function": {
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
export const stripped: string;
|
|
15
|
+
const _default: string;
|
|
16
|
+
export { _default as default };
|
|
17
|
+
}
|
|
18
|
+
const borderRadius: {
|
|
19
|
+
none: string;
|
|
20
|
+
sm: string;
|
|
21
|
+
md: string;
|
|
22
|
+
lg: string;
|
|
23
|
+
xl: string;
|
|
24
|
+
"1xl": string;
|
|
25
|
+
"2xl": string;
|
|
26
|
+
"3xl": string;
|
|
27
|
+
"4xl": string;
|
|
28
|
+
"5xl": string;
|
|
29
|
+
full: string;
|
|
30
|
+
};
|
|
31
|
+
const breakpoints: {
|
|
32
|
+
xs: string;
|
|
33
|
+
sm: string;
|
|
34
|
+
md: string;
|
|
35
|
+
lg: string;
|
|
36
|
+
xl: string;
|
|
37
|
+
"2xl": string;
|
|
38
|
+
};
|
|
39
|
+
namespace colors {
|
|
40
|
+
const primary: {
|
|
41
|
+
"10": string;
|
|
42
|
+
"20": string;
|
|
43
|
+
"30": string;
|
|
44
|
+
"40": string;
|
|
45
|
+
"50": string;
|
|
46
|
+
"60": string;
|
|
47
|
+
"70": string;
|
|
48
|
+
};
|
|
49
|
+
const danger: {
|
|
50
|
+
"10": string;
|
|
51
|
+
"20": string;
|
|
52
|
+
"30": string;
|
|
53
|
+
"40": string;
|
|
54
|
+
"50": string;
|
|
55
|
+
"60": string;
|
|
56
|
+
"70": string;
|
|
57
|
+
};
|
|
58
|
+
const success: {
|
|
59
|
+
"10": string;
|
|
60
|
+
"20": string;
|
|
61
|
+
"30": string;
|
|
62
|
+
"40": string;
|
|
63
|
+
"50": string;
|
|
64
|
+
"60": string;
|
|
65
|
+
"70": string;
|
|
66
|
+
};
|
|
67
|
+
const warning: {
|
|
68
|
+
"10": string;
|
|
69
|
+
"20": string;
|
|
70
|
+
"30": string;
|
|
71
|
+
"40": string;
|
|
72
|
+
"50": string;
|
|
73
|
+
"60": string;
|
|
74
|
+
"70": string;
|
|
75
|
+
};
|
|
76
|
+
const blueberry: {
|
|
77
|
+
"10": string;
|
|
78
|
+
"20": string;
|
|
79
|
+
"30": string;
|
|
80
|
+
"40": string;
|
|
81
|
+
"50": string;
|
|
82
|
+
"60": string;
|
|
83
|
+
"70": string;
|
|
84
|
+
};
|
|
85
|
+
const mint: {
|
|
86
|
+
"10": string;
|
|
87
|
+
"20": string;
|
|
88
|
+
"30": string;
|
|
89
|
+
"40": string;
|
|
90
|
+
"50": string;
|
|
91
|
+
"60": string;
|
|
92
|
+
"70": string;
|
|
93
|
+
};
|
|
94
|
+
const neutral: {
|
|
95
|
+
"10": string;
|
|
96
|
+
"20": string;
|
|
97
|
+
"30": string;
|
|
98
|
+
"40": string;
|
|
99
|
+
"50": string;
|
|
100
|
+
"60": string;
|
|
101
|
+
"70": string;
|
|
102
|
+
"80": string;
|
|
103
|
+
"90": string;
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
namespace font {
|
|
107
|
+
const size: {
|
|
108
|
+
h1: string;
|
|
109
|
+
h2: string;
|
|
110
|
+
h3: string;
|
|
111
|
+
h4: string;
|
|
112
|
+
h5: string;
|
|
113
|
+
h6: string;
|
|
114
|
+
"subheading-large": string;
|
|
115
|
+
"subheading-medium": string;
|
|
116
|
+
"subheading-small": string;
|
|
117
|
+
"body-large": string;
|
|
118
|
+
"body-medium": string;
|
|
119
|
+
"body-small": string;
|
|
120
|
+
code: string;
|
|
121
|
+
label: string;
|
|
122
|
+
};
|
|
123
|
+
namespace weight {
|
|
124
|
+
const bold: string;
|
|
125
|
+
const semibold: string;
|
|
126
|
+
const normal: string;
|
|
127
|
+
const medium: string;
|
|
128
|
+
const light: string;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
namespace palette {
|
|
132
|
+
export namespace light_1 {
|
|
133
|
+
export namespace neutral_1 {
|
|
134
|
+
namespace text {
|
|
135
|
+
export const weakest: string;
|
|
136
|
+
export const weaker: string;
|
|
137
|
+
export const weak: string;
|
|
138
|
+
const _default_1: string;
|
|
139
|
+
export { _default_1 as default };
|
|
140
|
+
export const inverse: string;
|
|
141
|
+
}
|
|
142
|
+
namespace bg {
|
|
143
|
+
const weak_1: string;
|
|
144
|
+
export { weak_1 as weak };
|
|
145
|
+
const _default_2: string;
|
|
146
|
+
export { _default_2 as default };
|
|
147
|
+
export const strong: string;
|
|
148
|
+
export const strongest: string;
|
|
149
|
+
}
|
|
150
|
+
namespace border {
|
|
151
|
+
const weak_2: string;
|
|
152
|
+
export { weak_2 as weak };
|
|
153
|
+
const strong_1: string;
|
|
154
|
+
export { strong_1 as strong };
|
|
155
|
+
}
|
|
156
|
+
const hover: string;
|
|
157
|
+
const pressed: string;
|
|
158
|
+
}
|
|
159
|
+
export { neutral_1 as neutral };
|
|
160
|
+
export namespace primary_1 {
|
|
161
|
+
const text_1: string;
|
|
162
|
+
export { text_1 as text };
|
|
163
|
+
export const icon: string;
|
|
164
|
+
export namespace bg_1 {
|
|
165
|
+
const strong_2: string;
|
|
166
|
+
export { strong_2 as strong };
|
|
167
|
+
const weak_3: string;
|
|
168
|
+
export { weak_3 as weak };
|
|
169
|
+
}
|
|
170
|
+
export { bg_1 as bg };
|
|
171
|
+
export namespace border_1 {
|
|
172
|
+
const strong_3: string;
|
|
173
|
+
export { strong_3 as strong };
|
|
174
|
+
const weak_4: string;
|
|
175
|
+
export { weak_4 as weak };
|
|
176
|
+
}
|
|
177
|
+
export { border_1 as border };
|
|
178
|
+
export const focus: string;
|
|
179
|
+
export namespace hover_1 {
|
|
180
|
+
const weak_5: string;
|
|
181
|
+
export { weak_5 as weak };
|
|
182
|
+
const strong_4: string;
|
|
183
|
+
export { strong_4 as strong };
|
|
184
|
+
}
|
|
185
|
+
export { hover_1 as hover };
|
|
186
|
+
export namespace pressed_1 {
|
|
187
|
+
const weak_6: string;
|
|
188
|
+
export { weak_6 as weak };
|
|
189
|
+
const strong_5: string;
|
|
190
|
+
export { strong_5 as strong };
|
|
191
|
+
}
|
|
192
|
+
export { pressed_1 as pressed };
|
|
193
|
+
}
|
|
194
|
+
export { primary_1 as primary };
|
|
195
|
+
export namespace danger_1 {
|
|
196
|
+
const text_2: string;
|
|
197
|
+
export { text_2 as text };
|
|
198
|
+
const icon_1: string;
|
|
199
|
+
export { icon_1 as icon };
|
|
200
|
+
export namespace bg_2 {
|
|
201
|
+
const strong_6: string;
|
|
202
|
+
export { strong_6 as strong };
|
|
203
|
+
const weak_7: string;
|
|
204
|
+
export { weak_7 as weak };
|
|
205
|
+
}
|
|
206
|
+
export { bg_2 as bg };
|
|
207
|
+
export namespace border_2 {
|
|
208
|
+
const strong_7: string;
|
|
209
|
+
export { strong_7 as strong };
|
|
210
|
+
const weak_8: string;
|
|
211
|
+
export { weak_8 as weak };
|
|
212
|
+
}
|
|
213
|
+
export { border_2 as border };
|
|
214
|
+
export namespace hover_2 {
|
|
215
|
+
const weak_9: string;
|
|
216
|
+
export { weak_9 as weak };
|
|
217
|
+
const strong_8: string;
|
|
218
|
+
export { strong_8 as strong };
|
|
219
|
+
}
|
|
220
|
+
export { hover_2 as hover };
|
|
221
|
+
export namespace pressed_2 {
|
|
222
|
+
const weak_10: string;
|
|
223
|
+
export { weak_10 as weak };
|
|
224
|
+
const strong_9: string;
|
|
225
|
+
export { strong_9 as strong };
|
|
226
|
+
}
|
|
227
|
+
export { pressed_2 as pressed };
|
|
228
|
+
}
|
|
229
|
+
export { danger_1 as danger };
|
|
230
|
+
export namespace warning_1 {
|
|
231
|
+
const text_3: string;
|
|
232
|
+
export { text_3 as text };
|
|
233
|
+
const icon_2: string;
|
|
234
|
+
export { icon_2 as icon };
|
|
235
|
+
export namespace bg_3 {
|
|
236
|
+
const strong_10: string;
|
|
237
|
+
export { strong_10 as strong };
|
|
238
|
+
const weak_11: string;
|
|
239
|
+
export { weak_11 as weak };
|
|
240
|
+
}
|
|
241
|
+
export { bg_3 as bg };
|
|
242
|
+
export namespace border_3 {
|
|
243
|
+
const strong_11: string;
|
|
244
|
+
export { strong_11 as strong };
|
|
245
|
+
const weak_12: string;
|
|
246
|
+
export { weak_12 as weak };
|
|
247
|
+
}
|
|
248
|
+
export { border_3 as border };
|
|
249
|
+
}
|
|
250
|
+
export { warning_1 as warning };
|
|
251
|
+
export namespace success_1 {
|
|
252
|
+
const text_4: string;
|
|
253
|
+
export { text_4 as text };
|
|
254
|
+
const icon_3: string;
|
|
255
|
+
export { icon_3 as icon };
|
|
256
|
+
export namespace bg_4 {
|
|
257
|
+
const strong_12: string;
|
|
258
|
+
export { strong_12 as strong };
|
|
259
|
+
const weak_13: string;
|
|
260
|
+
export { weak_13 as weak };
|
|
261
|
+
}
|
|
262
|
+
export { bg_4 as bg };
|
|
263
|
+
export namespace border_4 {
|
|
264
|
+
const strong_13: string;
|
|
265
|
+
export { strong_13 as strong };
|
|
266
|
+
const weak_14: string;
|
|
267
|
+
export { weak_14 as weak };
|
|
268
|
+
}
|
|
269
|
+
export { border_4 as border };
|
|
270
|
+
}
|
|
271
|
+
export { success_1 as success };
|
|
272
|
+
}
|
|
273
|
+
export { light_1 as light };
|
|
274
|
+
}
|
|
275
|
+
namespace boxShadow {
|
|
276
|
+
const l2: string;
|
|
277
|
+
const l3: string;
|
|
278
|
+
const l4: string;
|
|
279
|
+
const l5: string;
|
|
280
|
+
}
|
|
281
|
+
const space: {
|
|
282
|
+
"0": string;
|
|
283
|
+
"1": string;
|
|
284
|
+
"2": string;
|
|
285
|
+
"3": string;
|
|
286
|
+
"4": string;
|
|
287
|
+
"5": string;
|
|
288
|
+
"6": string;
|
|
289
|
+
"7": string;
|
|
290
|
+
"8": string;
|
|
291
|
+
"9": string;
|
|
292
|
+
"10": string;
|
|
293
|
+
"11": string;
|
|
294
|
+
"12": string;
|
|
295
|
+
"13": string;
|
|
296
|
+
};
|
|
297
|
+
}
|
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
export namespace transitions {
|
|
2
|
+
export const values: {
|
|
3
|
+
properties: {
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
duration: {
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
"timing-function": {
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
export const stripped: string;
|
|
14
|
+
const _default: string;
|
|
15
|
+
export { _default as default };
|
|
16
|
+
}
|
|
1
17
|
export const borderRadius: {
|
|
2
18
|
none: string;
|
|
3
19
|
sm: string;
|
|
@@ -118,15 +134,15 @@ export namespace palette {
|
|
|
118
134
|
export const weakest: string;
|
|
119
135
|
export const weaker: string;
|
|
120
136
|
export const weak: string;
|
|
121
|
-
const
|
|
122
|
-
export {
|
|
137
|
+
const _default_1: string;
|
|
138
|
+
export { _default_1 as default };
|
|
123
139
|
export const inverse: string;
|
|
124
140
|
}
|
|
125
141
|
namespace bg {
|
|
126
142
|
const weak_1: string;
|
|
127
143
|
export { weak_1 as weak };
|
|
128
|
-
const
|
|
129
|
-
export {
|
|
144
|
+
const _default_2: string;
|
|
145
|
+
export { _default_2 as default };
|
|
130
146
|
export const strong: string;
|
|
131
147
|
export const strongest: string;
|
|
132
148
|
}
|
|
@@ -262,15 +278,18 @@ export namespace boxShadow {
|
|
|
262
278
|
const l5: string;
|
|
263
279
|
}
|
|
264
280
|
export const space: {
|
|
281
|
+
"0": string;
|
|
265
282
|
"1": string;
|
|
266
283
|
"2": string;
|
|
267
284
|
"3": string;
|
|
268
285
|
"4": string;
|
|
286
|
+
"5": string;
|
|
269
287
|
"6": string;
|
|
288
|
+
"7": string;
|
|
270
289
|
"8": string;
|
|
290
|
+
"9": string;
|
|
291
|
+
"10": string;
|
|
292
|
+
"11": string;
|
|
271
293
|
"12": string;
|
|
272
|
-
"
|
|
273
|
-
"20": string;
|
|
274
|
-
"24": string;
|
|
275
|
-
"32": string;
|
|
294
|
+
"13": string;
|
|
276
295
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
export const typescale: {
|
|
2
2
|
h1: (string | {
|
|
3
3
|
letterSpacing: string;
|
|
4
4
|
lineHeight: string;
|
|
@@ -29,45 +29,44 @@ declare const _exports: {
|
|
|
29
29
|
lineHeight: string;
|
|
30
30
|
fontWeight: string;
|
|
31
31
|
})[];
|
|
32
|
-
'subheading-large': (string | {
|
|
32
|
+
'n-subheading-large': (string | {
|
|
33
33
|
letterSpacing: string;
|
|
34
34
|
lineHeight: string;
|
|
35
35
|
fontWeight: string;
|
|
36
36
|
})[];
|
|
37
|
-
'subheading-medium': (string | {
|
|
37
|
+
'n-subheading-medium': (string | {
|
|
38
38
|
letterSpacing: string;
|
|
39
39
|
lineHeight: string;
|
|
40
40
|
fontWeight: string;
|
|
41
41
|
})[];
|
|
42
|
-
'subheading-small': (string | {
|
|
42
|
+
'n-subheading-small': (string | {
|
|
43
43
|
letterSpacing: string;
|
|
44
44
|
lineHeight: string;
|
|
45
45
|
fontWeight: string;
|
|
46
46
|
})[];
|
|
47
|
-
'body-large': (string | {
|
|
47
|
+
'n-body-large': (string | {
|
|
48
48
|
letterSpacing: string;
|
|
49
49
|
lineHeight: string;
|
|
50
50
|
fontWeight: string;
|
|
51
51
|
})[];
|
|
52
|
-
'body-medium': (string | {
|
|
52
|
+
'n-body-medium': (string | {
|
|
53
53
|
letterSpacing: string;
|
|
54
54
|
lineHeight: string;
|
|
55
55
|
fontWeight: string;
|
|
56
56
|
})[];
|
|
57
|
-
'body-small': (string | {
|
|
57
|
+
'n-body-small': (string | {
|
|
58
58
|
letterSpacing: string;
|
|
59
59
|
lineHeight: string;
|
|
60
60
|
fontWeight: string;
|
|
61
61
|
})[];
|
|
62
|
-
code: (string | {
|
|
62
|
+
'n-code': (string | {
|
|
63
63
|
letterSpacing: string;
|
|
64
64
|
lineHeight: string;
|
|
65
65
|
fontWeight: string;
|
|
66
66
|
})[];
|
|
67
|
-
label: (string | {
|
|
67
|
+
'n-label': (string | {
|
|
68
68
|
letterSpacing: string;
|
|
69
69
|
lineHeight: string;
|
|
70
70
|
fontWeight: string;
|
|
71
71
|
})[];
|
|
72
72
|
};
|
|
73
|
-
export = _exports;
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,12 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neo4j-ndl/base",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0-alpha-4cfc0f0",
|
|
4
4
|
"description": "Neo4j base package for the design system",
|
|
5
5
|
"author": "Neo4j Inc.",
|
|
6
6
|
"homepage": "",
|
|
7
7
|
"license": "GPL-3.0",
|
|
8
|
-
"main": "./lib/
|
|
9
|
-
"
|
|
8
|
+
"main": "./lib/cjs/index.js",
|
|
9
|
+
"module": "./lib/esm/index.js",
|
|
10
|
+
"types": "./lib/types/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"require": "./lib/cjs/index.js",
|
|
14
|
+
"import": "./lib/esm/index.js",
|
|
15
|
+
"types": "./lib/types/index.d.ts"
|
|
16
|
+
},
|
|
17
|
+
"./lib/neo4j-ds-styles.css": {
|
|
18
|
+
"import": "./lib/neo4j-ds-styles.css",
|
|
19
|
+
"require": "./lib/neo4j-ds-styles.css"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
10
22
|
"directories": {
|
|
11
23
|
"lib": "lib",
|
|
12
24
|
"test": "__tests__"
|
|
@@ -19,23 +31,28 @@
|
|
|
19
31
|
},
|
|
20
32
|
"scripts": {
|
|
21
33
|
"test": "jest",
|
|
22
|
-
"build
|
|
34
|
+
"build": "yarn build:style-dictionary && yarn build:esm && yarn build:cjs && yarn build:css",
|
|
35
|
+
"build:style-dictionary": "style-dictionary build --config sd.config.js",
|
|
36
|
+
"build:esm": "tsc -p tsconfig.esm.json",
|
|
37
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
23
38
|
"build:css": "postcss src/styles.css -o lib/neo4j-ds-styles.css",
|
|
24
|
-
"watch:css": "postcss -w src/styles.css -o lib/neo4j-ds-styles.css"
|
|
25
|
-
"build": "yarn build-style-dictionary && tsc && yarn build:css"
|
|
39
|
+
"watch:css": "postcss -w src/styles.css -o lib/neo4j-ds-styles.css"
|
|
26
40
|
},
|
|
27
41
|
"devDependencies": {
|
|
28
42
|
"@testing-library/jest-dom": "^5.15.1",
|
|
29
43
|
"@types/jest": "^27.0.3",
|
|
30
44
|
"autoprefixer": "^10.4.0",
|
|
31
45
|
"jest": "^27.3.1",
|
|
32
|
-
"postcss": "^8.4.
|
|
33
|
-
"postcss-cli": "^
|
|
46
|
+
"postcss": "^8.4.18",
|
|
47
|
+
"postcss-cli": "^10.0.0",
|
|
34
48
|
"postcss-import": "^14.0.2",
|
|
35
|
-
"postcss-nested": "^
|
|
49
|
+
"postcss-nested": "^6.0.0",
|
|
36
50
|
"style-dictionary": "^3.0.3",
|
|
37
|
-
"tailwindcss": "
|
|
51
|
+
"tailwindcss": "3.1.8",
|
|
38
52
|
"ts-node": "^10.4.0",
|
|
39
|
-
"typescript": "
|
|
53
|
+
"typescript": "4.8.4"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"@neo4j-ndl/base": "1.0.0-alpha-4cfc0f0"
|
|
40
57
|
}
|
|
41
|
-
}
|
|
58
|
+
}
|