@tanstack/query-devtools 5.0.0 → 5.0.5

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/build/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { createSignal, render, lazy, createComponent, mergeProps } from './chunk/7MNJIXJ6.js';
1
+ import { createSignal, render, lazy, createComponent, mergeProps } from './chunk/Z53XT47W.js';
2
2
 
3
3
  // src/index.tsx
4
4
  var TanstackQueryDevtools = class {
@@ -62,7 +62,7 @@ var TanstackQueryDevtools = class {
62
62
  if (this.#Component) {
63
63
  Devtools = this.#Component;
64
64
  } else {
65
- Devtools = lazy(() => import('./Devtools/4TNE5QTO.js'));
65
+ Devtools = lazy(() => import('./Devtools/B2H37NSB.js'));
66
66
  this.#Component = Devtools;
67
67
  }
68
68
  const _self$ = this;
package/build/index.jsx CHANGED
@@ -2,7 +2,7 @@ import {
2
2
  createSignal,
3
3
  lazy,
4
4
  render
5
- } from "./chunk/PWC4YVZY.jsx";
5
+ } from "./chunk/AHAJNSNO.jsx";
6
6
 
7
7
  // src/index.tsx
8
8
  var TanstackQueryDevtools = class {
@@ -66,7 +66,7 @@ var TanstackQueryDevtools = class {
66
66
  if (this.#Component) {
67
67
  Devtools = this.#Component;
68
68
  } else {
69
- Devtools = lazy(() => import("./Devtools/3BAJISSX.jsx"));
69
+ Devtools = lazy(() => import("./Devtools/7SMWYMBY.jsx"));
70
70
  this.#Component = Devtools;
71
71
  }
72
72
  return <Devtools
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/query-devtools",
3
- "version": "5.0.0",
3
+ "version": "5.0.5",
4
4
  "description": "Developer tools to interact with and visualize the TanStack Query cache",
5
5
  "author": "tannerlinsley",
6
6
  "license": "MIT",
@@ -48,9 +48,9 @@
48
48
  "solid-js": "^1.7.8",
49
49
  "solid-transition-group": "^0.2.2",
50
50
  "superjson": "^1.12.4",
51
- "tsup-preset-solid": "^2.0.1",
51
+ "tsup-preset-solid": "^2.1.0",
52
52
  "vite-plugin-solid": "^2.7.0",
53
- "@tanstack/query-core": "5.0.0"
53
+ "@tanstack/query-core": "5.0.5"
54
54
  },
55
55
  "scripts": {
56
56
  "clean": "rimraf ./build && rimraf ./coverage",
@@ -1,3 +1,5 @@
1
+ import { describe, expect, it } from 'vitest'
2
+
1
3
  describe('ReactQueryDevtools', () => {
2
4
  it('should be able to open and close devtools', async () => {
3
5
  expect(1).toBe(1)
@@ -1,3 +1,4 @@
1
+ import { describe, expect, it } from 'vitest'
1
2
  import { deleteNestedDataByPath, updateNestedDataByPath } from '../utils'
2
3
 
3
4
  describe('Utils tests', () => {
@@ -1,4 +1,4 @@
1
- import { Show } from 'solid-js'
1
+ import { Show, createUniqueId } from 'solid-js'
2
2
 
3
3
  export function Search() {
4
4
  return (
@@ -390,10 +390,11 @@ export function Check(props: { checked: boolean; theme: 'light' | 'dark' }) {
390
390
  }
391
391
 
392
392
  export function TanstackLogo() {
393
+ const id = createUniqueId()
393
394
  return (
394
395
  <svg version="1.0" viewBox="0 0 633 633">
395
396
  <linearGradient
396
- id="a"
397
+ id={`a-${id}`}
397
398
  x1="-666.45"
398
399
  x2="-666.45"
399
400
  y1="163.28"
@@ -406,11 +407,11 @@ export function TanstackLogo() {
406
407
  <stop stop-color="#FFA770" offset=".71" />
407
408
  <stop stop-color="#FF7373" offset="1" />
408
409
  </linearGradient>
409
- <circle cx="316.5" cy="316.5" r="316.5" fill="url(#a)" />
410
+ <circle cx="316.5" cy="316.5" r="316.5" fill={`url(#a-${id})`} />
410
411
 
411
412
  <defs>
412
413
  <filter
413
- id="am"
414
+ id={`am-${id}`}
414
415
  x="-137.5"
415
416
  y="412"
416
417
  width="454"
@@ -422,18 +423,18 @@ export function TanstackLogo() {
422
423
  </defs>
423
424
 
424
425
  <mask
425
- id="b"
426
+ id={`b-${id}`}
426
427
  x="-137.5"
427
428
  y="412"
428
429
  width="454"
429
430
  height="396.9"
430
431
  maskUnits="userSpaceOnUse"
431
432
  >
432
- <g filter="url(#am)">
433
+ <g filter={`url(#am-${id})`}>
433
434
  <circle cx="316.5" cy="316.5" r="316.5" fill="#fff" />
434
435
  </g>
435
436
  </mask>
436
- <g mask="url(#b)">
437
+ <g mask={`url(#b-${id})`}>
437
438
  <ellipse
438
439
  cx="89.5"
439
440
  cy="610.5"
@@ -446,7 +447,7 @@ export function TanstackLogo() {
446
447
  </g>
447
448
  <defs>
448
449
  <filter
449
- id="ah"
450
+ id={`ah-${id}`}
450
451
  x="316.5"
451
452
  y="412"
452
453
  width="454"
@@ -458,18 +459,18 @@ export function TanstackLogo() {
458
459
  </defs>
459
460
 
460
461
  <mask
461
- id="k"
462
+ id={`k-${id}`}
462
463
  x="316.5"
463
464
  y="412"
464
465
  width="454"
465
466
  height="396.9"
466
467
  maskUnits="userSpaceOnUse"
467
468
  >
468
- <g filter="url(#ah)">
469
+ <g filter={`url(#ah-${id})`}>
469
470
  <circle cx="316.5" cy="316.5" r="316.5" fill="#fff" />
470
471
  </g>
471
472
  </mask>
472
- <g mask="url(#k)">
473
+ <g mask={`url(#k-${id})`}>
473
474
  <ellipse
474
475
  cx="543.5"
475
476
  cy="610.5"
@@ -482,7 +483,7 @@ export function TanstackLogo() {
482
483
  </g>
483
484
  <defs>
484
485
  <filter
485
- id="ae"
486
+ id={`ae-${id}`}
486
487
  x="-137.5"
487
488
  y="450"
488
489
  width="454"
@@ -494,18 +495,18 @@ export function TanstackLogo() {
494
495
  </defs>
495
496
 
496
497
  <mask
497
- id="j"
498
+ id={`j-${id}`}
498
499
  x="-137.5"
499
500
  y="450"
500
501
  width="454"
501
502
  height="396.9"
502
503
  maskUnits="userSpaceOnUse"
503
504
  >
504
- <g filter="url(#ae)">
505
+ <g filter={`url(#ae-${id})`}>
505
506
  <circle cx="316.5" cy="316.5" r="316.5" fill="#fff" />
506
507
  </g>
507
508
  </mask>
508
- <g mask="url(#j)">
509
+ <g mask={`url(#j-${id})`}>
509
510
  <ellipse
510
511
  cx="89.5"
511
512
  cy="648.5"
@@ -518,7 +519,7 @@ export function TanstackLogo() {
518
519
  </g>
519
520
  <defs>
520
521
  <filter
521
- id="ai"
522
+ id={`ai-${id}`}
522
523
  x="316.5"
523
524
  y="450"
524
525
  width="454"
@@ -530,18 +531,18 @@ export function TanstackLogo() {
530
531
  </defs>
531
532
 
532
533
  <mask
533
- id="i"
534
+ id={`i-${id}`}
534
535
  x="316.5"
535
536
  y="450"
536
537
  width="454"
537
538
  height="396.9"
538
539
  maskUnits="userSpaceOnUse"
539
540
  >
540
- <g filter="url(#ai)">
541
+ <g filter={`url(#ai-${id})`}>
541
542
  <circle cx="316.5" cy="316.5" r="316.5" fill="#fff" />
542
543
  </g>
543
544
  </mask>
544
- <g mask="url(#i)">
545
+ <g mask={`url(#i-${id})`}>
545
546
  <ellipse
546
547
  cx="543.5"
547
548
  cy="648.5"
@@ -554,7 +555,7 @@ export function TanstackLogo() {
554
555
  </g>
555
556
  <defs>
556
557
  <filter
557
- id="aj"
558
+ id={`aj-${id}`}
558
559
  x="-137.5"
559
560
  y="486"
560
561
  width="454"
@@ -566,18 +567,18 @@ export function TanstackLogo() {
566
567
  </defs>
567
568
 
568
569
  <mask
569
- id="h"
570
+ id={`h-${id}`}
570
571
  x="-137.5"
571
572
  y="486"
572
573
  width="454"
573
574
  height="396.9"
574
575
  maskUnits="userSpaceOnUse"
575
576
  >
576
- <g filter="url(#aj)">
577
+ <g filter={`url(#aj-${id})`}>
577
578
  <circle cx="316.5" cy="316.5" r="316.5" fill="#fff" />
578
579
  </g>
579
580
  </mask>
580
- <g mask="url(#h)">
581
+ <g mask={`url(#h-${id})`}>
581
582
  <ellipse
582
583
  cx="89.5"
583
584
  cy="684.5"
@@ -590,7 +591,7 @@ export function TanstackLogo() {
590
591
  </g>
591
592
  <defs>
592
593
  <filter
593
- id="ag"
594
+ id={`ag-${id}`}
594
595
  x="316.5"
595
596
  y="486"
596
597
  width="454"
@@ -602,18 +603,18 @@ export function TanstackLogo() {
602
603
  </defs>
603
604
 
604
605
  <mask
605
- id="g"
606
+ id={`g-${id}`}
606
607
  x="316.5"
607
608
  y="486"
608
609
  width="454"
609
610
  height="396.9"
610
611
  maskUnits="userSpaceOnUse"
611
612
  >
612
- <g filter="url(#ag)">
613
+ <g filter={`url(#ag-${id})`}>
613
614
  <circle cx="316.5" cy="316.5" r="316.5" fill="#fff" />
614
615
  </g>
615
616
  </mask>
616
- <g mask="url(#g)">
617
+ <g mask={`url(#g-${id})`}>
617
618
  <ellipse
618
619
  cx="543.5"
619
620
  cy="684.5"
@@ -626,7 +627,7 @@ export function TanstackLogo() {
626
627
  </g>
627
628
  <defs>
628
629
  <filter
629
- id="af"
630
+ id={`af-${id}`}
630
631
  x="272.2"
631
632
  y="308"
632
633
  width="176.9"
@@ -638,18 +639,18 @@ export function TanstackLogo() {
638
639
  </defs>
639
640
 
640
641
  <mask
641
- id="f"
642
+ id={`f-${id}`}
642
643
  x="272.2"
643
644
  y="308"
644
645
  width="176.9"
645
646
  height="129.3"
646
647
  maskUnits="userSpaceOnUse"
647
648
  >
648
- <g filter="url(#af)">
649
+ <g filter={`url(#af-${id})`}>
649
650
  <circle cx="316.5" cy="316.5" r="316.5" fill="#fff" />
650
651
  </g>
651
652
  </mask>
652
- <g mask="url(#f)">
653
+ <g mask={`url(#f-${id})`}>
653
654
  <line
654
655
  x1="436"
655
656
  x2="431"
@@ -687,7 +688,7 @@ export function TanstackLogo() {
687
688
  />
688
689
 
689
690
  <linearGradient
690
- id="m"
691
+ id={`m-${id}`}
691
692
  x1="-670.75"
692
693
  x2="-671.59"
693
694
  y1="164.4"
@@ -702,7 +703,7 @@ export function TanstackLogo() {
702
703
  <path
703
704
  d="m344.1 363 97.7 17.2c5.8 2.1 8.2 6.1 7.1 12.1s-4.7 9.2-11 9.9l-106-18.7-57.5-59.2c-3.2-4.8-2.9-9.1 0.8-12.8s8.3-4.4 13.7-2.1l55.2 53.6z"
704
705
  clip-rule="evenodd"
705
- fill="url(#m)"
706
+ fill={`url(#m-${id})`}
706
707
  fill-rule="evenodd"
707
708
  />
708
709
 
@@ -768,7 +769,7 @@ export function TanstackLogo() {
768
769
  </g>
769
770
  <defs>
770
771
  <filter
771
- id="ak"
772
+ id={`ak-${id}`}
772
773
  x="73.2"
773
774
  y="113.8"
774
775
  width="280.6"
@@ -780,20 +781,20 @@ export function TanstackLogo() {
780
781
  </defs>
781
782
 
782
783
  <mask
783
- id="e"
784
+ id={`e-${id}`}
784
785
  x="73.2"
785
786
  y="113.8"
786
787
  width="280.6"
787
788
  height="317.4"
788
789
  maskUnits="userSpaceOnUse"
789
790
  >
790
- <g filter="url(#ak)">
791
+ <g filter={`url(#ak-${id})`}>
791
792
  <circle cx="316.5" cy="316.5" r="316.5" fill="#fff" />
792
793
  </g>
793
794
  </mask>
794
- <g mask="url(#e)">
795
+ <g mask={`url(#e-${id})`}>
795
796
  <linearGradient
796
- id="n"
797
+ id={`n-${id}`}
797
798
  x1="-672.16"
798
799
  x2="-672.16"
799
800
  y1="165.03"
@@ -808,12 +809,12 @@ export function TanstackLogo() {
808
809
  <path
809
810
  d="m192.3 203c8.1 37.3 14 73.6 17.8 109.1 3.8 35.4 2.8 75.1-3 119.2l61.2-16.7c-15.6-59-25.2-97.9-28.6-116.6s-10.8-51.9-22.1-99.6l-25.3 4.6"
810
811
  clip-rule="evenodd"
811
- fill="url(#n)"
812
+ fill={`url(#n-${id})`}
812
813
  fill-rule="evenodd"
813
814
  />
814
815
  <g stroke="#2F8A00">
815
816
  <linearGradient
816
- id="r"
817
+ id={`r-${id}`}
817
818
  x1="-660.23"
818
819
  x2="-660.23"
819
820
  y1="166.72"
@@ -828,13 +829,13 @@ export function TanstackLogo() {
828
829
  <path
829
830
  d="m195 183.9s-12.6-22.1-36.5-29.9c-15.9-5.2-34.4-1.5-55.5 11.1 15.9 14.3 29.5 22.6 40.7 24.9 16.8 3.6 51.3-6.1 51.3-6.1z"
830
831
  clip-rule="evenodd"
831
- fill="url(#r)"
832
+ fill={`url(#r-${id})`}
832
833
  fill-rule="evenodd"
833
834
  stroke-width="13"
834
835
  />
835
836
 
836
837
  <linearGradient
837
- id="s"
838
+ id={`s-${id}`}
838
839
  x1="-661.36"
839
840
  x2="-661.36"
840
841
  y1="164.18"
@@ -849,13 +850,13 @@ export function TanstackLogo() {
849
850
  <path
850
851
  d="m194.9 184.5s-47.5-8.5-83.2 15.7c-23.8 16.2-34.3 49.3-31.6 99.4 30.3-27.8 52.1-48.5 65.2-61.9 19.8-20.2 49.6-53.2 49.6-53.2z"
851
852
  clip-rule="evenodd"
852
- fill="url(#s)"
853
+ fill={`url(#s-${id})`}
853
854
  fill-rule="evenodd"
854
855
  stroke-width="13"
855
856
  />
856
857
 
857
858
  <linearGradient
858
- id="q"
859
+ id={`q-${id}`}
859
860
  x1="-656.79"
860
861
  x2="-656.79"
861
862
  y1="165.15"
@@ -870,13 +871,13 @@ export function TanstackLogo() {
870
871
  <path
871
872
  d="m195 183.9c-0.8-21.9 6-38 20.6-48.2s29.8-15.4 45.5-15.3c-6.1 21.4-14.5 35.8-25.2 43.4s-24.4 14.2-40.9 20.1z"
872
873
  clip-rule="evenodd"
873
- fill="url(#q)"
874
+ fill={`url(#q-${id})`}
874
875
  fill-rule="evenodd"
875
876
  stroke-width="13"
876
877
  />
877
878
 
878
879
  <linearGradient
879
- id="p"
880
+ id={`p-${id}`}
880
881
  x1="-663.07"
881
882
  x2="-663.07"
882
883
  y1="165.44"
@@ -891,13 +892,13 @@ export function TanstackLogo() {
891
892
  <path
892
893
  d="m194.9 184.5c31.9-30 64.1-39.7 96.7-29s50.8 30.4 54.6 59.1c-35.2-5.5-60.4-9.6-75.8-12.1-15.3-2.6-40.5-8.6-75.5-18z"
893
894
  clip-rule="evenodd"
894
- fill="url(#p)"
895
+ fill={`url(#p-${id})`}
895
896
  fill-rule="evenodd"
896
897
  stroke-width="13"
897
898
  />
898
899
 
899
900
  <linearGradient
900
- id="o"
901
+ id={`o-${id}`}
901
902
  x1="-662.57"
902
903
  x2="-662.57"
903
904
  y1="164.44"
@@ -912,13 +913,13 @@ export function TanstackLogo() {
912
913
  <path
913
914
  d="m194.9 184.5c35.8-7.6 65.6-0.2 89.2 22s37.7 49 42.3 80.3c-39.8-9.7-68.3-23.8-85.5-42.4s-32.5-38.5-46-59.9z"
914
915
  clip-rule="evenodd"
915
- fill="url(#o)"
916
+ fill={`url(#o-${id})`}
916
917
  fill-rule="evenodd"
917
918
  stroke-width="13"
918
919
  />
919
920
 
920
921
  <linearGradient
921
- id="l"
922
+ id={`l-${id}`}
922
923
  x1="-656.43"
923
924
  x2="-656.43"
924
925
  y1="163.86"
@@ -933,7 +934,7 @@ export function TanstackLogo() {
933
934
  <path
934
935
  d="m194.9 184.5c-33.6 13.8-53.6 35.7-60.1 65.6s-3.6 63.1 8.7 99.6c27.4-40.3 43.2-69.6 47.4-88s5.6-44.1 4-77.2z"
935
936
  clip-rule="evenodd"
936
- fill="url(#l)"
937
+ fill={`url(#l-${id})`}
937
938
  fill-rule="evenodd"
938
939
  stroke-width="13"
939
940
  />
@@ -965,7 +966,7 @@ export function TanstackLogo() {
965
966
  </g>
966
967
  <defs>
967
968
  <filter
968
- id="al"
969
+ id={`al-${id}`}
969
970
  x="50.5"
970
971
  y="399"
971
972
  width="532"
@@ -977,20 +978,20 @@ export function TanstackLogo() {
977
978
  </defs>
978
979
 
979
980
  <mask
980
- id="d"
981
+ id={`d-${id}`}
981
982
  x="50.5"
982
983
  y="399"
983
984
  width="532"
984
985
  height="633"
985
986
  maskUnits="userSpaceOnUse"
986
987
  >
987
- <g filter="url(#al)">
988
+ <g filter={`url(#al-${id})`}>
988
989
  <circle cx="316.5" cy="316.5" r="316.5" fill="#fff" />
989
990
  </g>
990
991
  </mask>
991
- <g mask="url(#d)">
992
+ <g mask={`url(#d-${id})`}>
992
993
  <linearGradient
993
- id="u"
994
+ id={`u-${id}`}
994
995
  x1="-666.06"
995
996
  x2="-666.23"
996
997
  y1="163.36"
@@ -1002,11 +1003,17 @@ export function TanstackLogo() {
1002
1003
  <stop stop-color="#3C8700" offset="1" />
1003
1004
  </linearGradient>
1004
1005
 
1005
- <ellipse cx="316.5" cy="715.5" rx="266" ry="316.5" fill="url(#u)" />
1006
+ <ellipse
1007
+ cx="316.5"
1008
+ cy="715.5"
1009
+ rx="266"
1010
+ ry="316.5"
1011
+ fill={`url(#u-${id})`}
1012
+ />
1006
1013
  </g>
1007
1014
  <defs>
1008
1015
  <filter
1009
- id="ad"
1016
+ id={`ad-${id}`}
1010
1017
  x="391"
1011
1018
  y="-24"
1012
1019
  width="288"
@@ -1018,20 +1025,20 @@ export function TanstackLogo() {
1018
1025
  </defs>
1019
1026
 
1020
1027
  <mask
1021
- id="c"
1028
+ id={`c-${id}`}
1022
1029
  x="391"
1023
1030
  y="-24"
1024
1031
  width="288"
1025
1032
  height="283"
1026
1033
  maskUnits="userSpaceOnUse"
1027
1034
  >
1028
- <g filter="url(#ad)">
1035
+ <g filter={`url(#ad-${id})`}>
1029
1036
  <circle cx="316.5" cy="316.5" r="316.5" fill="#fff" />
1030
1037
  </g>
1031
1038
  </mask>
1032
- <g mask="url(#c)">
1039
+ <g mask={`url(#c-${id})`}>
1033
1040
  <linearGradient
1034
- id="t"
1041
+ id={`t-${id}`}
1035
1042
  x1="-664.56"
1036
1043
  x2="-664.56"
1037
1044
  y1="163.79"
@@ -1042,10 +1049,10 @@ export function TanstackLogo() {
1042
1049
  <stop stop-color="#FFDF00" offset="0" />
1043
1050
  <stop stop-color="#FF9D00" offset="1" />
1044
1051
  </linearGradient>
1045
- <circle cx="565.5" cy="89.5" r="113.5" fill="url(#t)" />
1052
+ <circle cx="565.5" cy="89.5" r="113.5" fill={`url(#t-${id})`} />
1046
1053
 
1047
1054
  <linearGradient
1048
- id="v"
1055
+ id={`v-${id}`}
1049
1056
  x1="-644.5"
1050
1057
  x2="-645.77"
1051
1058
  y1="342"
@@ -1063,14 +1070,14 @@ export function TanstackLogo() {
1063
1070
  y1="89"
1064
1071
  y2="89"
1065
1072
  fill="none"
1066
- stroke="url(#v)"
1073
+ stroke={`url(#v-${id})`}
1067
1074
  stroke-linecap="round"
1068
1075
  stroke-linejoin="bevel"
1069
1076
  stroke-width="12"
1070
1077
  />
1071
1078
 
1072
1079
  <linearGradient
1073
- id="aa"
1080
+ id={`aa-${id}`}
1074
1081
  x1="-641.56"
1075
1082
  x2="-642.83"
1076
1083
  y1="196.02"
@@ -1088,14 +1095,14 @@ export function TanstackLogo() {
1088
1095
  y1="55.5"
1089
1096
  y2="50"
1090
1097
  fill="none"
1091
- stroke="url(#aa)"
1098
+ stroke={`url(#aa-${id})`}
1092
1099
  stroke-linecap="round"
1093
1100
  stroke-linejoin="bevel"
1094
1101
  stroke-width="12"
1095
1102
  />
1096
1103
 
1097
1104
  <linearGradient
1098
- id="w"
1105
+ id={`w-${id}`}
1099
1106
  x1="-643.73"
1100
1107
  x2="-645"
1101
1108
  y1="185.83"
@@ -1113,14 +1120,14 @@ export function TanstackLogo() {
1113
1120
  y1="122"
1114
1121
  y2="130"
1115
1122
  fill="none"
1116
- stroke="url(#w)"
1123
+ stroke={`url(#w-${id})`}
1117
1124
  stroke-linecap="round"
1118
1125
  stroke-linejoin="bevel"
1119
1126
  stroke-width="12"
1120
1127
  />
1121
1128
 
1122
1129
  <linearGradient
1123
- id="ac"
1130
+ id={`ac-${id}`}
1124
1131
  x1="-638.94"
1125
1132
  x2="-640.22"
1126
1133
  y1="177.09"
@@ -1138,14 +1145,14 @@ export function TanstackLogo() {
1138
1145
  y1="153"
1139
1146
  y2="166"
1140
1147
  fill="none"
1141
- stroke="url(#ac)"
1148
+ stroke={`url(#ac-${id})`}
1142
1149
  stroke-linecap="round"
1143
1150
  stroke-linejoin="bevel"
1144
1151
  stroke-width="12"
1145
1152
  />
1146
1153
 
1147
1154
  <linearGradient
1148
- id="ab"
1155
+ id={`ab-${id}`}
1149
1156
  x1="-633.42"
1150
1157
  x2="-634.7"
1151
1158
  y1="172.41"
@@ -1163,14 +1170,14 @@ export function TanstackLogo() {
1163
1170
  y1="180"
1164
1171
  y2="199"
1165
1172
  fill="none"
1166
- stroke="url(#ab)"
1173
+ stroke={`url(#ab-${id})`}
1167
1174
  stroke-linecap="round"
1168
1175
  stroke-linejoin="bevel"
1169
1176
  stroke-width="12"
1170
1177
  />
1171
1178
 
1172
1179
  <linearGradient
1173
- id="y"
1180
+ id={`y-${id}`}
1174
1181
  x1="-619.05"
1175
1182
  x2="-619.52"
1176
1183
  y1="170.82"
@@ -1188,14 +1195,14 @@ export function TanstackLogo() {
1188
1195
  y1="203"
1189
1196
  y2="225.9"
1190
1197
  fill="none"
1191
- stroke="url(#y)"
1198
+ stroke={`url(#y-${id})`}
1192
1199
  stroke-linecap="round"
1193
1200
  stroke-linejoin="bevel"
1194
1201
  stroke-width="12"
1195
1202
  />
1196
1203
 
1197
1204
  <linearGradient
1198
- id="x"
1205
+ id={`x-${id}`}
1199
1206
  x1="-578.5"
1200
1207
  x2="-578.63"
1201
1208
  y1="170.31"
@@ -1213,14 +1220,14 @@ export function TanstackLogo() {
1213
1220
  y1="219.5"
1214
1221
  y2="244"
1215
1222
  fill="none"
1216
- stroke="url(#x)"
1223
+ stroke={`url(#x-${id})`}
1217
1224
  stroke-linecap="round"
1218
1225
  stroke-linejoin="bevel"
1219
1226
  stroke-width="12"
1220
1227
  />
1221
1228
 
1222
1229
  <linearGradient
1223
- id="z"
1230
+ id={`z-${id}`}
1224
1231
  x1="666.5"
1225
1232
  x2="666.5"
1226
1233
  y1="170.31"
@@ -1238,7 +1245,7 @@ export function TanstackLogo() {
1238
1245
  y1="228.5"
1239
1246
  y2="253"
1240
1247
  fill="none"
1241
- stroke="url(#z)"
1248
+ stroke={`url(#z-${id})`}
1242
1249
  stroke-linecap="round"
1243
1250
  stroke-linejoin="bevel"
1244
1251
  stroke-width="12"