1 | # @spark-web/next-utils
|
2 |
|
3 | ## 5.0.0
|
4 |
|
5 | ### Major Changes
|
6 |
|
7 | - This release of spark-web standardises the version across all packages to be
|
8 | **`v5`**, primarily signifying the switch from `@emotion/css` to
|
9 | `@emotion/react` as one of the key dependencies of the entire library, in
|
10 | order to support server-side rendering / SSR.
|
11 |
|
12 | This release also introduces support for theming, to allow for more co-branded
|
13 | experiences across our web applications. It also supports component-level
|
14 | theming for `<Button />`, `<ButtonLink />`, and `<Checkbox />`, which provides
|
15 | the capability to override the global theme available inside an application.
|
16 |
|
17 | To use this in an application, you can wrap the affected areas with a
|
18 | `ThemeProvider`:
|
19 |
|
20 | ```
|
21 | <ThemeProvider theme="pantheon">
|
22 | <Input type="text" />
|
23 | <Button type="submit" />
|
24 | </ThemeProvider>
|
25 | ```
|
26 |
|
27 | Part of the theming capabilities includes a new theme for `spark-web` called
|
28 | "pantheon", which should map with our co-branding efforts in the Pantheon
|
29 | project. It currently includes a small set of colors and its corresponding
|
30 | font family.
|
31 |
|
32 | ### Patch Changes
|
33 |
|
34 | - [#532](https://github.com/brighte-labs/spark-web/pull/532)
|
35 | [`631573c`](https://github.com/brighte-labs/spark-web/commit/631573cb72981d99b9afa4ad559123f44e47b2a9)
|
36 | Thanks [@ralcoriza-brighte](https://github.com/ralcoriza-brighte)! - Fix
|
37 | type-related issues
|
38 |
|
39 | - Updated dependencies
|
40 | [[`631573c`](https://github.com/brighte-labs/spark-web/commit/631573cb72981d99b9afa4ad559123f44e47b2a9)]:
|
41 | - @spark-web/link@5.0.0
|
42 | - @spark-web/ssr@5.0.0
|
43 |
|
44 | ## 5.0.0-rc.31
|
45 |
|
46 | ### Patch Changes
|
47 |
|
48 | - Fix type-related issues
|
49 |
|
50 | - Updated dependencies []:
|
51 | - @spark-web/link@5.0.0-rc.31
|
52 | - @spark-web/ssr@5.0.0-rc.31
|
53 |
|
54 | ## 5.0.0-rc.30
|
55 |
|
56 | ### Minor Changes
|
57 |
|
58 | - Adopt latest changes from stable main branch
|
59 |
|
60 | ### Patch Changes
|
61 |
|
62 | - Updated dependencies []:
|
63 | - @spark-web/link@5.0.0-rc.30
|
64 | - @spark-web/ssr@5.0.0-rc.30
|
65 |
|
66 | ## 5.0.0-rc.29
|
67 |
|
68 | ### Minor Changes
|
69 |
|
70 | - Revise stylesheet maps to align with theme name change
|
71 |
|
72 | ### Patch Changes
|
73 |
|
74 | - Updated dependencies []:
|
75 | - @spark-web/link@5.0.0-rc.29
|
76 | - @spark-web/ssr@5.0.0-rc.29
|
77 |
|
78 | ## 5.0.0-rc.28
|
79 |
|
80 | ### Minor Changes
|
81 |
|
82 | - Move fonts to theme package; Introduce Pantheon font family and stylesheet
|
83 |
|
84 | ### Patch Changes
|
85 |
|
86 | - Updated dependencies []:
|
87 | - @spark-web/link@5.0.0-rc.28
|
88 | - @spark-web/ssr@5.0.0-rc.28
|
89 |
|
90 | ## 5.0.0-rc.27
|
91 |
|
92 | ### Minor Changes
|
93 |
|
94 | - Remove theme prop in button link
|
95 |
|
96 | ### Patch Changes
|
97 |
|
98 | - Updated dependencies []:
|
99 | - @spark-web/link@5.0.0-rc.27
|
100 | - @spark-web/ssr@5.0.0-rc.27
|
101 |
|
102 | ## 5.0.0-rc.26
|
103 |
|
104 | ### Minor Changes
|
105 |
|
106 | - Roll back on using theme prop for component level theming; prefer using
|
107 | ThemeProvider in applications instead
|
108 |
|
109 | ### Patch Changes
|
110 |
|
111 | - Updated dependencies []:
|
112 | - @spark-web/link@5.0.0-rc.26
|
113 | - @spark-web/ssr@5.0.0-rc.26
|
114 |
|
115 | ## 5.0.0-rc.25
|
116 |
|
117 | ### Minor Changes
|
118 |
|
119 | - Implement checkbox tokens for test theme
|
120 |
|
121 | ### Patch Changes
|
122 |
|
123 | - Updated dependencies []:
|
124 | - @spark-web/link@5.0.0-rc.25
|
125 | - @spark-web/ssr@5.0.0-rc.25
|
126 |
|
127 | ## 5.0.0-rc.24
|
128 |
|
129 | ### Minor Changes
|
130 |
|
131 | - Resolve issues with package build output
|
132 |
|
133 | ### Patch Changes
|
134 |
|
135 | - Updated dependencies []:
|
136 | - @spark-web/link@5.0.0-rc.24
|
137 | - @spark-web/ssr@5.0.0-rc.24
|
138 |
|
139 | ## 2.0.0-rc.21
|
140 |
|
141 | ### Minor Changes
|
142 |
|
143 | - Introduce global theming provider to set global default theme
|
144 |
|
145 | ### Patch Changes
|
146 |
|
147 | - Updated dependencies []:
|
148 | - @spark-web/link@2.0.0-rc.21
|
149 | - @spark-web/ssr@2.0.0-rc.21
|
150 |
|
151 | ## 2.0.0-rc.20
|
152 |
|
153 | ### Minor Changes
|
154 |
|
155 | - Support for component-level theming; button-level theming
|
156 |
|
157 | ### Patch Changes
|
158 |
|
159 | - Updated dependencies []:
|
160 | - @spark-web/link@2.0.0-rc.20
|
161 | - @spark-web/ssr@2.0.0-rc.20
|
162 |
|
163 | ## 2.0.0-rc.19
|
164 |
|
165 | ### Major Changes
|
166 |
|
167 | - test
|
168 |
|
169 | ### Patch Changes
|
170 |
|
171 | - Updated dependencies []:
|
172 | - @spark-web/link@2.0.0-rc.19
|
173 | - @spark-web/ssr@2.0.0-rc.19
|
174 |
|
175 | ## 2.0.0-rc.18
|
176 |
|
177 | ### Major Changes
|
178 |
|
179 | - tests
|
180 |
|
181 | ### Patch Changes
|
182 |
|
183 | - Updated dependencies []:
|
184 | - @spark-web/link@2.0.0-rc.18
|
185 | - @spark-web/ssr@2.0.0-rc.18
|
186 |
|
187 | ## 2.0.0-rc.17
|
188 |
|
189 | ### Major Changes
|
190 |
|
191 | - test
|
192 |
|
193 | ### Patch Changes
|
194 |
|
195 | - Updated dependencies []:
|
196 | - @spark-web/link@2.0.0-rc.17
|
197 | - @spark-web/ssr@2.0.0-rc.17
|
198 |
|
199 | ## 2.0.0-rc.16
|
200 |
|
201 | ### Major Changes
|
202 |
|
203 | - test
|
204 |
|
205 | ### Patch Changes
|
206 |
|
207 | - Updated dependencies []:
|
208 | - @spark-web/link@2.0.0-rc.16
|
209 | - @spark-web/ssr@2.0.0-rc.16
|
210 |
|
211 | ## 2.0.0-rc.15
|
212 |
|
213 | ### Major Changes
|
214 |
|
215 | - test
|
216 |
|
217 | ### Patch Changes
|
218 |
|
219 | - Updated dependencies []:
|
220 | - @spark-web/link@2.0.0-rc.15
|
221 | - @spark-web/ssr@2.0.0-rc.15
|
222 |
|
223 | ## 2.0.0-rc.14
|
224 |
|
225 | ### Major Changes
|
226 |
|
227 | - test
|
228 |
|
229 | ### Patch Changes
|
230 |
|
231 | - Updated dependencies []:
|
232 | - @spark-web/link@2.0.0-rc.14
|
233 | - @spark-web/ssr@2.0.0-rc.14
|
234 |
|
235 | ## 2.0.0-rc.13
|
236 |
|
237 | ### Major Changes
|
238 |
|
239 | - test
|
240 |
|
241 | ### Patch Changes
|
242 |
|
243 | - Updated dependencies []:
|
244 | - @spark-web/link@2.0.0-rc.13
|
245 | - @spark-web/ssr@2.0.0-rc.13
|
246 |
|
247 | ## 2.0.0-rc.12
|
248 |
|
249 | ### Major Changes
|
250 |
|
251 | - test
|
252 |
|
253 | ### Patch Changes
|
254 |
|
255 | - Updated dependencies []:
|
256 | - @spark-web/link@2.0.0-rc.12
|
257 | - @spark-web/ssr@2.0.0-rc.12
|
258 |
|
259 | ## 2.0.0-rc.11
|
260 |
|
261 | ### Major Changes
|
262 |
|
263 | - test
|
264 |
|
265 | ### Patch Changes
|
266 |
|
267 | - Updated dependencies []:
|
268 | - @spark-web/link@2.0.0-rc.11
|
269 | - @spark-web/ssr@2.0.0-rc.11
|
270 |
|
271 | ## 2.0.0-rc.10
|
272 |
|
273 | ### Major Changes
|
274 |
|
275 | - test
|
276 |
|
277 | ### Patch Changes
|
278 |
|
279 | - Updated dependencies []:
|
280 | - @spark-web/link@2.0.0-rc.10
|
281 | - @spark-web/ssr@2.0.0-rc.10
|
282 |
|
283 | ## 2.0.0-rc.9
|
284 |
|
285 | ### Major Changes
|
286 |
|
287 | - test
|
288 |
|
289 | ### Patch Changes
|
290 |
|
291 | - Updated dependencies []:
|
292 | - @spark-web/link@2.0.0-rc.9
|
293 | - @spark-web/ssr@2.0.0-rc.9
|
294 |
|
295 | ## 2.0.0-rc.8
|
296 |
|
297 | ### Major Changes
|
298 |
|
299 | - test
|
300 |
|
301 | ### Patch Changes
|
302 |
|
303 | - Updated dependencies []:
|
304 | - @spark-web/link@2.0.0-rc.8
|
305 | - @spark-web/ssr@2.0.0-rc.8
|
306 |
|
307 | ## 2.0.0-rc.7
|
308 |
|
309 | ### Major Changes
|
310 |
|
311 | - test
|
312 |
|
313 | ### Patch Changes
|
314 |
|
315 | - Updated dependencies []:
|
316 | - @spark-web/link@2.0.0-rc.7
|
317 | - @spark-web/ssr@2.0.0-rc.7
|
318 |
|
319 | ## 2.0.0-rc.6
|
320 |
|
321 | ### Major Changes
|
322 |
|
323 | - test
|
324 |
|
325 | ### Patch Changes
|
326 |
|
327 | - Updated dependencies []:
|
328 | - @spark-web/link@2.0.0-rc.6
|
329 | - @spark-web/ssr@2.0.0-rc.6
|
330 |
|
331 | ## 2.0.0-rc.5
|
332 |
|
333 | ### Major Changes
|
334 |
|
335 | - test
|
336 |
|
337 | ### Patch Changes
|
338 |
|
339 | - Updated dependencies []:
|
340 | - @spark-web/link@2.0.0-rc.5
|
341 | - @spark-web/ssr@2.0.0-rc.5
|
342 |
|
343 | ## 2.0.0-rc.4
|
344 |
|
345 | ### Major Changes
|
346 |
|
347 | - bug
|
348 |
|
349 | ### Patch Changes
|
350 |
|
351 | - Updated dependencies []:
|
352 | - @spark-web/link@2.0.0-rc.4
|
353 | - @spark-web/ssr@2.0.0-rc.4
|
354 |
|
355 | ## 2.0.0-rc.3
|
356 |
|
357 | ### Major Changes
|
358 |
|
359 | - upgrade package
|
360 |
|
361 | ### Patch Changes
|
362 |
|
363 | - Updated dependencies []:
|
364 | - @spark-web/link@2.0.0-rc.3
|
365 | - @spark-web/ssr@2.0.0-rc.3
|
366 |
|
367 | ## 2.0.0-rc.2
|
368 |
|
369 | ### Major Changes
|
370 |
|
371 | - add parser
|
372 |
|
373 | ### Patch Changes
|
374 |
|
375 | - Updated dependencies []:
|
376 | - @spark-web/link@2.0.0-rc.2
|
377 | - @spark-web/ssr@2.0.0-rc.2
|
378 |
|
379 | ## 2.0.0-rc.1
|
380 |
|
381 | ### Major Changes
|
382 |
|
383 | - rc
|
384 |
|
385 | ### Patch Changes
|
386 |
|
387 | - Updated dependencies []:
|
388 | - @spark-web/link@2.0.0-rc.1
|
389 | - @spark-web/ssr@2.0.0-rc.1
|
390 |
|
391 | ## 2.0.0-rc.0
|
392 |
|
393 | ### Major Changes
|
394 |
|
395 | - rc versio
|
396 |
|
397 | ### Patch Changes
|
398 |
|
399 | - Updated dependencies []:
|
400 | - @spark-web/ssr@2.0.0-rc.0
|
401 | - @spark-web/link@2.0.0-rc.0
|
402 |
|
403 | ## 1.2.0
|
404 |
|
405 | ### Minor Changes
|
406 |
|
407 | - [#382](https://github.com/brighte-labs/spark-web/pull/382)
|
408 | [`955bf5d`](https://github.com/brighte-labs/spark-web/commit/955bf5d7698bfdf45e7f317aa3e726c81d3444c0)
|
409 | Thanks [@dilipt-brighte](https://github.com/dilipt-brighte)! - Updates React
|
410 | version to latest (18.2.0)
|
411 |
|
412 | ### Patch Changes
|
413 |
|
414 | - Updated dependencies
|
415 | [[`955bf5d`](https://github.com/brighte-labs/spark-web/commit/955bf5d7698bfdf45e7f317aa3e726c81d3444c0)]:
|
416 | - @spark-web/link@1.1.0
|
417 |
|
418 | ## 1.1.2
|
419 |
|
420 | ### Patch Changes
|
421 |
|
422 | - [#274](https://github.com/brighte-labs/spark-web/pull/274)
|
423 | [`b6976e3`](https://github.com/brighte-labs/spark-web/commit/b6976e36ab0a577ba700660c5dc8d2d1251082bb)
|
424 | Thanks [@szhang-brighte](https://github.com/szhang-brighte)! - update
|
425 | @spark-web/link version
|
426 |
|
427 | ## 1.1.1
|
428 |
|
429 | ### Patch Changes
|
430 |
|
431 | - [#222](https://github.com/brighte-labs/spark-web/pull/222)
|
432 | [`7f93c45`](https://github.com/brighte-labs/spark-web/commit/7f93c45bbae8c765e10df9d0dd7615473797749b)
|
433 | Thanks [@lukebennett88](https://github.com/lukebennett88)! - Update
|
434 | dependencies
|
435 |
|
436 | - [#242](https://github.com/brighte-labs/spark-web/pull/242)
|
437 | [`6df05f7`](https://github.com/brighte-labs/spark-web/commit/6df05f764e4181c140d6547d6b897d0210468f6a)
|
438 | Thanks [@lukebennett88](https://github.com/lukebennett88)! - - Add homepage
|
439 | and repository keys to package.json
|
440 | - Add CHANGELOG and README to files key in package.json
|
441 | - Updated dependencies
|
442 | [[`6fc8d1b`](https://github.com/brighte-labs/spark-web/commit/6fc8d1bc37e25d0cd622bc37f68a1d92eb5961b5),
|
443 | [`7f93c45`](https://github.com/brighte-labs/spark-web/commit/7f93c45bbae8c765e10df9d0dd7615473797749b),
|
444 | [`6df05f7`](https://github.com/brighte-labs/spark-web/commit/6df05f764e4181c140d6547d6b897d0210468f6a)]:
|
445 | - @spark-web/link@1.0.10
|
446 | - @spark-web/ssr@1.0.9
|
447 |
|
448 | ## 1.1.0
|
449 |
|
450 | ### Minor Changes
|
451 |
|
452 | - [#206](https://github.com/brighte-labs/spark-web/pull/206)
|
453 | [`b49e627`](https://github.com/brighte-labs/spark-web/commit/b49e627476817a65529cf7da3a96373690283351)
|
454 | Thanks [@lukebennett88](https://github.com/lukebennett88)! - Move `next` out
|
455 | of dependencies and into devDependencies and peerDependencies
|
456 |
|
457 | ## 1.0.9
|
458 |
|
459 | ### Patch Changes
|
460 |
|
461 | - [#208](https://github.com/brighte-labs/spark-web/pull/208)
|
462 | [`1ea26ef`](https://github.com/brighte-labs/spark-web/commit/1ea26ef04a3b45875ed0dd2326eeab1fbe1e4bc5)
|
463 | Thanks [@lukebennett88](https://github.com/lukebennett88)! - Lower required
|
464 | node version
|
465 |
|
466 | - Updated dependencies
|
467 | [[`1ea26ef`](https://github.com/brighte-labs/spark-web/commit/1ea26ef04a3b45875ed0dd2326eeab1fbe1e4bc5)]:
|
468 | - @spark-web/link@1.0.9
|
469 | - @spark-web/ssr@1.0.8
|
470 |
|
471 | ## 1.0.8
|
472 |
|
473 | ### Patch Changes
|
474 |
|
475 | - [#197](https://github.com/brighte-labs/spark-web/pull/197)
|
476 | [`94016d8`](https://github.com/brighte-labs/spark-web/commit/94016d84e26bbe55833bbcbab847a2cce6041538)
|
477 | Thanks [@lukebennett88](https://github.com/lukebennett88)! - Update packages
|
478 |
|
479 | - Updated dependencies
|
480 | [[`94016d8`](https://github.com/brighte-labs/spark-web/commit/94016d84e26bbe55833bbcbab847a2cce6041538)]:
|
481 | - @spark-web/link@1.0.8
|
482 | - @spark-web/ssr@1.0.7
|
483 |
|
484 | ## 1.0.7
|
485 |
|
486 | ### Patch Changes
|
487 |
|
488 | - [#173](https://github.com/brighte-labs/spark-web/pull/173)
|
489 | [`90b7e9c`](https://github.com/brighte-labs/spark-web/commit/90b7e9cf4eb7e864d765c74b22c3dedf3d262e25)
|
490 | Thanks [@lukebennett88](https://github.com/lukebennett88)! - Update babel
|
491 | dependency
|
492 |
|
493 | * [#173](https://github.com/brighte-labs/spark-web/pull/173)
|
494 | [`90b7e9c`](https://github.com/brighte-labs/spark-web/commit/90b7e9cf4eb7e864d765c74b22c3dedf3d262e25)
|
495 | Thanks [@lukebennett88](https://github.com/lukebennett88)! - Update next
|
496 | dependency
|
497 |
|
498 | * Updated dependencies
|
499 | [[`90b7e9c`](https://github.com/brighte-labs/spark-web/commit/90b7e9cf4eb7e864d765c74b22c3dedf3d262e25)]:
|
500 | - @spark-web/link@1.0.7
|
501 | - @spark-web/ssr@1.0.6
|
502 |
|
503 | ## 1.0.6
|
504 |
|
505 | ### Patch Changes
|
506 |
|
507 | - [#167](https://github.com/brighte-labs/spark-web/pull/167)
|
508 | [`4f79350`](https://github.com/brighte-labs/spark-web/commit/4f793508fdb43ddd452f0d59a3126101f9fa5459)
|
509 | Thanks [@lukebennett88](https://github.com/lukebennett88)! - Update Babel
|
510 |
|
511 | - Updated dependencies
|
512 | [[`4f79350`](https://github.com/brighte-labs/spark-web/commit/4f793508fdb43ddd452f0d59a3126101f9fa5459)]:
|
513 | - @spark-web/link@1.0.6
|
514 | - @spark-web/ssr@1.0.5
|
515 |
|
516 | ## 1.0.5
|
517 |
|
518 | ### Patch Changes
|
519 |
|
520 | - [#113](https://github.com/brighte-labs/spark-web/pull/113)
|
521 | [`156236d`](https://github.com/brighte-labs/spark-web/commit/156236d2474aee66a0b8e2030635f9c08a5b78ba)
|
522 | Thanks [@lukebennett88](https://github.com/lukebennett88)! - Update
|
523 | dependencies
|
524 |
|
525 | - Updated dependencies
|
526 | [[`156236d`](https://github.com/brighte-labs/spark-web/commit/156236d2474aee66a0b8e2030635f9c08a5b78ba)]:
|
527 | - @spark-web/link@1.0.5
|
528 | - @spark-web/ssr@1.0.4
|
529 |
|
530 | ## 1.0.4
|
531 |
|
532 | ### Patch Changes
|
533 |
|
534 | - [#52](https://github.com/brighte-labs/spark-web/pull/52)
|
535 | [`82ab744`](https://github.com/brighte-labs/spark-web/commit/82ab744f198466810f3386bc459b8ab4d57c820e)
|
536 | Thanks [@lukebennett88](https://github.com/lukebennett88)! - Add files array
|
537 | to package.json files
|
538 |
|
539 | - Updated dependencies
|
540 | [[`5744b68`](https://github.com/brighte-labs/spark-web/commit/5744b6820f626b93a14e11e1fbd96bcbe1b12b27),
|
541 | [`82ab744`](https://github.com/brighte-labs/spark-web/commit/82ab744f198466810f3386bc459b8ab4d57c820e)]:
|
542 | - @spark-web/link@1.0.4
|
543 | - @spark-web/ssr@1.0.3
|
544 |
|
545 | ## 1.0.3
|
546 |
|
547 | ### Patch Changes
|
548 |
|
549 | - [#42](https://github.com/brighte-labs/spark-web/pull/42)
|
550 | [`435779a`](https://github.com/brighte-labs/spark-web/commit/435779aa42bd635bbf43e1fd41724c666402caa2)
|
551 | Thanks [@lukebennett88](https://github.com/lukebennett88)! - Prevent multiple
|
552 | versions of React
|
553 |
|
554 | - Updated dependencies
|
555 | [[`435779a`](https://github.com/brighte-labs/spark-web/commit/435779aa42bd635bbf43e1fd41724c666402caa2)]:
|
556 | - @spark-web/link@1.0.3
|
557 |
|
558 | ## 1.0.2
|
559 |
|
560 | ### Patch Changes
|
561 |
|
562 | - [#40](https://github.com/brighte-labs/spark-web/pull/40)
|
563 | [`062c8ab`](https://github.com/brighte-labs/spark-web/commit/062c8ab8c7b4120f8d14c269b5f7801288c678ca)
|
564 | Thanks [@lukebennett88](https://github.com/lukebennett88)! - Add
|
565 | @babel/transform-runtime
|
566 |
|
567 | - Updated dependencies
|
568 | [[`062c8ab`](https://github.com/brighte-labs/spark-web/commit/062c8ab8c7b4120f8d14c269b5f7801288c678ca)]:
|
569 | - @spark-web/link@1.0.2
|
570 | - @spark-web/ssr@1.0.2
|
571 |
|
572 | ## 1.0.1
|
573 |
|
574 | ### Patch Changes
|
575 |
|
576 | - [#36](https://github.com/brighte-labs/spark-web/pull/36)
|
577 | [`8546f8f`](https://github.com/brighte-labs/spark-web/commit/8546f8f05daaa79ea3ff954c6c4928a7a2d0622d)
|
578 | Thanks [@lukebennett88](https://github.com/lukebennett88)! - Update Babel
|
579 | config
|
580 |
|
581 | - Updated dependencies
|
582 | [[`8546f8f`](https://github.com/brighte-labs/spark-web/commit/8546f8f05daaa79ea3ff954c6c4928a7a2d0622d)]:
|
583 | - @spark-web/link@1.0.1
|
584 | - @spark-web/ssr@1.0.1
|
585 |
|
586 | ## 1.0.0
|
587 |
|
588 | ### Major Changes
|
589 |
|
590 | - [#27](https://github.com/brighte-labs/spark-web/pull/27)
|
591 | [`4c8e398`](https://github.com/brighte-labs/spark-web/commit/4c8e3988f8a59d3dab60a6b67b1128b6ff2a5f2c)
|
592 | Thanks [@JedWatson](https://github.com/JedWatson)! - Initial Version
|
593 |
|
594 | ### Patch Changes
|
595 |
|
596 | - Updated dependencies
|
597 | [[`4c8e398`](https://github.com/brighte-labs/spark-web/commit/4c8e3988f8a59d3dab60a6b67b1128b6ff2a5f2c)]:
|
598 | - @spark-web/link@1.0.0
|
599 | - @spark-web/ssr@1.0.0
|
600 |
|
\ | No newline at end of file |