-
Notifications
You must be signed in to change notification settings - Fork 1
/
pnpm-lock.yaml
6084 lines (5484 loc) · 314 KB
/
pnpm-lock.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: 5.3
importers:
.:
specifiers:
'@babel/runtime': 7.12.18
'@emotion/css': ^11.7.1
'@emotion/react': ^11.7.1
'@emotion/styled': ^11.6.0
'@mdx-js/mdx': 1.6.21
'@mdx-js/react': 1.6.22
'@mui/material': ^5.2.8
'@mui/system': ^5.2.8
'@mui/types': ^7.1.0
'@react-aria/ssr': 3.1.0
'@react-types/provider': 3.3.2
'@react-types/shared': 3.10.1
'@spectrum-css/button': ^6.0.0
'@spectrum-css/buttongroup': ^5.0.0
'@spectrum-css/card': ^4.0.9
'@spectrum-css/divider': ^1.0.13
'@spectrum-css/fieldgroup': ^3.0.12
'@spectrum-css/fieldlabel': ^4.0.9
'@spectrum-css/link': ^3.1.12
'@spectrum-css/page': ^5.0.0
'@spectrum-css/typography': ^4.0.9
'@spectrum-css/vars': ^6.0.0
'@spectrum-css/well': ^3.0.11
'@teambit/design.ui.external-link': 0.0.344
'@teambit/documenter.markdown.hybrid-live-code-snippet': 0.1.3
'@teambit/documenter.markdown.mdx': 0.1.8
'@teambit/eslint-config-bit-react': ~0.0.367
'@teambit/harmony': 0.2.11
'@teambit/html.modules.render-template': 0.0.95
'@teambit/mdx.ui.mdx-scope-context': 0.0.368
'@testing-library/react': ^12.0.0
'@testing-library/react-hooks': 7.0.2
'@types/jest': 26.0.20
'@types/lodash': ^4.14.178
'@types/node': 12.20.4
'@types/react': ^17.0.8
'@types/react-dom': ^17.0.5
'@types/react-helmet': ^6.1.5
'@types/testing-library__jest-dom': 5.9.5
'@typescript-eslint/eslint-plugin': 4.29.3
'@waweb/base-ui.elements.icon': 0.2.2
'@waweb/base-ui.input.error': 0.1.1
'@waweb/base-ui.layout.breakpoints': 0.1.0
'@waweb/base-ui.layout.grid-component': 0.1.0
'@waweb/base-ui.routing.compare-url': 0.1.1
'@waweb/base-ui.routing.link': 0.1.1
'@waweb/base-ui.routing.native-link': 0.1.1
'@waweb/base-ui.routing.native-nav-link': 0.1.1
'@waweb/base-ui.routing.routing-provider': 0.1.1
'@waweb/base-ui.text.text-sizes': 0.1.0
'@waweb/base-ui.theme.brand-definition': 0.1.0
'@waweb/base-ui.theme.color-definition': 0.1.0
'@waweb/base-ui.theme.colors': 0.1.0
'@waweb/base-ui.theme.fonts.book': 0.1.0
'@waweb/base-ui.theme.fonts.roboto': 0.1.0
'@waweb/base-ui.theme.heading-margin-definition': 0.1.0
'@waweb/base-ui.theme.icons-font': 0.2.0
'@waweb/base-ui.theme.shadow-definition': 0.1.0
'@waweb/base-ui.theme.size-definition': 0.1.0
'@waweb/base-ui.theme.sizes': 0.1.0
'@waweb/base-ui.utils.is-browser': 0.1.0
chai: 4.3.0
clsx: 1.1.1
copy-to-clipboard: 3.3.1
core-js: ^3.0.0
eslint-import-resolver-node: 0.3.6
eslint-plugin-import: 2.22.1
eslint-plugin-jest: 24.4.0
eslint-plugin-jsx-a11y: 6.4.1
eslint-plugin-mdx: 1.15.0
eslint-plugin-react: 7.25.1
json-formatter-js: ^2.3.4
lodash: ^4.17.21
react: ^17.0.2
react-dom: ^17.0.2
react-helmet: ^6.1.0
remark-admonitions: 1.2.1
remark-frontmatter: 2.0.0
unist-util-remove: 2.0.1
unist-util-visit: 2.0.3
url-parse: ^1.5.4
vfile: 4.2.0
yaml: 1.10.2
dependencies:
'@babel/runtime': registry.npmjs.org/@babel/runtime/7.12.18
'@emotion/css': registry.npmjs.org/@emotion/css/11.7.1
'@emotion/react': registry.npmjs.org/@emotion/react/11.7.1_b08e3c15324cbe90a6ff8fcd416c932c
'@emotion/styled': registry.npmjs.org/@emotion/styled/11.6.0_0044a6ec6dcf5de7705bffaaff7afd26
'@mdx-js/mdx': registry.npmjs.org/@mdx-js/mdx/1.6.21
'@mdx-js/react': registry.npmjs.org/@mdx-js/react/1.6.22_react@17.0.2
'@mui/material': registry.npmjs.org/@mui/material/5.2.8_f5341c4d41f1e34c3a73251df9f98a19
'@mui/system': registry.npmjs.org/@mui/system/5.2.8_bcb8cb45f4440c38ab7df0ee3f383339
'@mui/types': registry.npmjs.org/@mui/types/7.1.0_@types+react@17.0.38
'@react-aria/ssr': registry.npmjs.org/@react-aria/ssr/3.1.0_react@17.0.2
'@react-types/provider': registry.npmjs.org/@react-types/provider/3.3.2_react@17.0.2
'@react-types/shared': registry.npmjs.org/@react-types/shared/3.10.1_react@17.0.2
'@spectrum-css/button': registry.npmjs.org/@spectrum-css/button/6.0.0_@spectrum-css+vars@6.0.0
'@spectrum-css/buttongroup': registry.npmjs.org/@spectrum-css/buttongroup/5.0.0_934901797b95ff291a436fa0383c26e7
'@spectrum-css/card': registry.npmjs.org/@spectrum-css/card/4.0.9_305ab6014d611722dddc1e09e3eec139
'@spectrum-css/divider': registry.npmjs.org/@spectrum-css/divider/1.0.13
'@spectrum-css/fieldgroup': registry.npmjs.org/@spectrum-css/fieldgroup/3.0.12_@spectrum-css+vars@6.0.0
'@spectrum-css/fieldlabel': registry.npmjs.org/@spectrum-css/fieldlabel/4.0.9_@spectrum-css+vars@6.0.0
'@spectrum-css/link': registry.npmjs.org/@spectrum-css/link/3.1.12_@spectrum-css+vars@6.0.0
'@spectrum-css/page': registry.npmjs.org/@spectrum-css/page/5.0.0
'@spectrum-css/typography': registry.npmjs.org/@spectrum-css/typography/4.0.9_@spectrum-css+vars@6.0.0
'@spectrum-css/vars': registry.npmjs.org/@spectrum-css/vars/6.0.0
'@spectrum-css/well': registry.npmjs.org/@spectrum-css/well/3.0.11_@spectrum-css+vars@6.0.0
'@teambit/design.ui.external-link': registry.npmjs.org/@teambit/design.ui.external-link/0.0.344_react-dom@17.0.2+react@17.0.2
'@teambit/documenter.markdown.hybrid-live-code-snippet': registry.npmjs.org/@teambit/documenter.markdown.hybrid-live-code-snippet/0.1.3_b3482aaf5744fc7c2aeb7941b0e0a78f
'@teambit/documenter.markdown.mdx': registry.npmjs.org/@teambit/documenter.markdown.mdx/0.1.8_b3482aaf5744fc7c2aeb7941b0e0a78f
'@teambit/eslint-config-bit-react': registry.npmjs.org/@teambit/eslint-config-bit-react/0.0.367_42c1a70dd5598d21f152f1cd353fd960
'@teambit/harmony': registry.npmjs.org/@teambit/harmony/0.2.11
'@teambit/mdx.ui.mdx-scope-context': registry.npmjs.org/@teambit/mdx.ui.mdx-scope-context/0.0.368_react-dom@17.0.2+react@17.0.2
'@testing-library/react': registry.npmjs.org/@testing-library/react/12.1.2_react-dom@17.0.2+react@17.0.2
'@types/lodash': registry.npmjs.org/@types/lodash/4.14.178
'@types/react-helmet': registry.npmjs.org/@types/react-helmet/6.1.5
'@typescript-eslint/eslint-plugin': registry.npmjs.org/@typescript-eslint/eslint-plugin/4.29.3
'@waweb/base-ui.elements.icon': 0.2.2_50e4d7661d4073d94d0032c114475119
'@waweb/base-ui.input.error': 0.1.1_64ce02d81d406daeee5df8a9cc9894ae
'@waweb/base-ui.layout.breakpoints': 0.1.0_react-dom@17.0.2+react@17.0.2
'@waweb/base-ui.layout.grid-component': 0.1.0_react-dom@17.0.2+react@17.0.2
'@waweb/base-ui.routing.compare-url': 0.1.1_0f78d4402c65c297154ea304700b01fa
'@waweb/base-ui.routing.link': 0.1.1_e8456b3e94cfe1421a471661503c4f33
'@waweb/base-ui.routing.native-link': 0.1.1_64ce02d81d406daeee5df8a9cc9894ae
'@waweb/base-ui.routing.native-nav-link': 0.1.1_e8456b3e94cfe1421a471661503c4f33
'@waweb/base-ui.routing.routing-provider': 0.1.1_e8456b3e94cfe1421a471661503c4f33
'@waweb/base-ui.text.text-sizes': 0.1.0_react-dom@17.0.2+react@17.0.2
'@waweb/base-ui.theme.brand-definition': 0.1.0_react-dom@17.0.2+react@17.0.2
'@waweb/base-ui.theme.color-definition': 0.1.0_react-dom@17.0.2+react@17.0.2
'@waweb/base-ui.theme.colors': 0.1.0_react-dom@17.0.2+react@17.0.2
'@waweb/base-ui.theme.fonts.book': 0.1.0_react-dom@17.0.2+react@17.0.2
'@waweb/base-ui.theme.fonts.roboto': 0.1.0_react-dom@17.0.2+react@17.0.2
'@waweb/base-ui.theme.heading-margin-definition': 0.1.0_react-dom@17.0.2+react@17.0.2
'@waweb/base-ui.theme.icons-font': 0.2.0_react-dom@17.0.2+react@17.0.2
'@waweb/base-ui.theme.shadow-definition': 0.1.0_react-dom@17.0.2+react@17.0.2
'@waweb/base-ui.theme.size-definition': 0.1.0_react-dom@17.0.2+react@17.0.2
'@waweb/base-ui.theme.sizes': 0.1.0_react-dom@17.0.2+react@17.0.2
'@waweb/base-ui.utils.is-browser': 0.1.0
clsx: registry.npmjs.org/clsx/1.1.1
copy-to-clipboard: registry.npmjs.org/copy-to-clipboard/3.3.1
core-js: registry.npmjs.org/core-js/3.20.3
eslint-import-resolver-node: registry.npmjs.org/eslint-import-resolver-node/0.3.6
eslint-plugin-import: registry.npmjs.org/eslint-plugin-import/2.22.1
eslint-plugin-jest: registry.npmjs.org/eslint-plugin-jest/24.4.0_f56de5161e43747d9d82fcdf1d245b16
eslint-plugin-jsx-a11y: registry.npmjs.org/eslint-plugin-jsx-a11y/6.4.1
eslint-plugin-mdx: registry.npmjs.org/eslint-plugin-mdx/1.15.0
eslint-plugin-react: registry.npmjs.org/eslint-plugin-react/7.25.1
json-formatter-js: registry.npmjs.org/json-formatter-js/2.3.4
lodash: registry.npmjs.org/lodash/4.17.21
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
react-helmet: registry.npmjs.org/react-helmet/6.1.0_react@17.0.2
remark-admonitions: registry.npmjs.org/remark-admonitions/1.2.1
remark-frontmatter: registry.npmjs.org/remark-frontmatter/2.0.0
unist-util-remove: registry.npmjs.org/unist-util-remove/2.0.1
unist-util-visit: registry.npmjs.org/unist-util-visit/2.0.3
url-parse: registry.npmjs.org/url-parse/1.5.4
vfile: registry.npmjs.org/vfile/4.2.0
yaml: registry.npmjs.org/yaml/1.10.2
devDependencies:
'@teambit/html.modules.render-template': registry.npmjs.org/@teambit/html.modules.render-template/0.0.95
'@testing-library/react-hooks': registry.npmjs.org/@testing-library/react-hooks/7.0.2_react-dom@17.0.2+react@17.0.2
'@types/jest': registry.npmjs.org/@types/jest/26.0.20
'@types/node': registry.npmjs.org/@types/node/12.20.4
'@types/react': registry.npmjs.org/@types/react/17.0.38
'@types/react-dom': registry.npmjs.org/@types/react-dom/17.0.11
'@types/testing-library__jest-dom': registry.npmjs.org/@types/testing-library__jest-dom/5.9.5
chai: registry.npmjs.org/chai/4.3.0
base-ui/text/heading:
specifiers: {}
base-ui/text/paragraph:
specifiers: {}
base-ui/theme/fonts/adobe-clean:
specifiers: {}
base-ui/theme/fonts/adobe-clean-serif:
specifiers: {}
base-ui/theme/theme-provider:
specifiers: {}
base-ui/ui/hooks/use-media-query:
specifiers: {}
demo/content/hello-world:
specifiers: {}
demo/theme/brands:
specifiers: {}
demo/theme/demo-theme:
specifiers: {}
demo/ui/atoms/heading:
specifiers: {}
demo/ui/atoms/text:
specifiers: {}
demo/ui/molecules/card:
specifiers: {}
demo/ui/views/welcome:
specifiers: {}
docs/theme/docs-theme:
specifiers: {}
docs/ui/copied-message:
specifiers: {}
docs/ui/copy-box:
specifiers: {}
docs/ui/heading:
specifiers: {}
docs/ui/label:
specifiers: {}
docs/ui/layout:
specifiers: {}
docs/ui/paragraph:
specifiers: {}
envs/wa-react:
specifiers: {}
mdx/ui/docs/link:
specifiers: {}
mdx/ui/docs/snippet:
specifiers: {}
mdx/ui/mdx-layout:
specifiers: {}
mdx/ui/mdx-scope-context:
specifiers: {}
spectrum/design/typography:
specifiers: {}
spectrum/theme/spectrum-theme:
specifiers: {}
spectrum/ui/atoms/button:
specifiers: {}
spectrum/ui/hooks/use-color-scheme:
specifiers: {}
spectrum/ui/hooks/use-scale:
specifiers: {}
spectrum/ui/organisms/page:
specifiers: {}
spectrum/ui/organisms/provider:
specifiers: {}
spectrum/ui/util/breakpoint:
specifiers: {}
spectrum/ui/util/slots:
specifiers: {}
tools/mdx-compiler:
specifiers: {}
tools/packages-excluder:
specifiers: {}
packages:
/@waweb/base-ui.elements.icon/0.2.2_50e4d7661d4073d94d0032c114475119:
resolution: {integrity: sha1-9dshSPmv/peJGJNuO7wN0ikVy1I=, tarball: '@waweb/base-ui.elements.icon/-/@waweb-base-ui.elements.icon-0.2.2.tgz'}
peerDependencies:
'@mui/material': ^5.2.8
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
'@mui/material': registry.npmjs.org/@mui/material/5.2.8_f5341c4d41f1e34c3a73251df9f98a19
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
dev: false
/@waweb/base-ui.input.error/0.1.1_64ce02d81d406daeee5df8a9cc9894ae:
resolution: {integrity: sha1-ROu676c0JpOHHFCO3cJKM0YVU+A=, tarball: '@waweb/base-ui.input.error/-/@waweb-base-ui.input.error-0.1.1.tgz'}
peerDependencies:
'@testing-library/react': ^12.0.0
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
'@testing-library/react': registry.npmjs.org/@testing-library/react/12.1.2_react-dom@17.0.2+react@17.0.2
classnames: registry.npmjs.org/classnames/2.3.1
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
dev: false
/@waweb/base-ui.layout.breakpoints/0.1.0_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-bngGyXSfekofmOcBiqyzUY5bb6U=, tarball: '@waweb/base-ui.layout.breakpoints/-/@waweb-base-ui.layout.breakpoints-0.1.0.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
dev: false
/@waweb/base-ui.layout.grid-component/0.1.0_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-4LsTTAzJ1StFFH2UtXuxv9fCPbE=, tarball: '@waweb/base-ui.layout.grid-component/-/@waweb-base-ui.layout.grid-component-0.1.0.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
'@waweb/base-ui.layout.breakpoints': 0.1.0_react-dom@17.0.2+react@17.0.2
clsx: registry.npmjs.org/clsx/1.1.1
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
dev: false
/@waweb/base-ui.routing.compare-url/0.1.1_0f78d4402c65c297154ea304700b01fa:
resolution: {integrity: sha1-liwdtzV1gMU9pcJYEm1saCpr1Ck=, tarball: '@waweb/base-ui.routing.compare-url/-/@waweb-base-ui.routing.compare-url-0.1.1.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
url-parse: ^1.5.4
dependencies:
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
url-parse: registry.npmjs.org/url-parse/1.5.4
dev: false
/@waweb/base-ui.routing.link/0.1.1_e8456b3e94cfe1421a471661503c4f33:
resolution: {integrity: sha1-5VSVe3QOdtUJwsfdx8MpUFXZ4Q8=, tarball: '@waweb/base-ui.routing.link/-/@waweb-base-ui.routing.link-0.1.1.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
'@waweb/base-ui.routing.native-link': 0.1.1_64ce02d81d406daeee5df8a9cc9894ae
'@waweb/base-ui.routing.routing-provider': 0.1.1_e8456b3e94cfe1421a471661503c4f33
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
transitivePeerDependencies:
- '@testing-library/react'
- url-parse
dev: false
/@waweb/base-ui.routing.native-link/0.1.1_64ce02d81d406daeee5df8a9cc9894ae:
resolution: {integrity: sha1-ukJa8SzuoSWLrZdnoeTCx/2dpro=, tarball: '@waweb/base-ui.routing.native-link/-/@waweb-base-ui.routing.native-link-0.1.1.tgz'}
peerDependencies:
'@testing-library/react': ^12.0.0
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
'@testing-library/react': registry.npmjs.org/@testing-library/react/12.1.2_react-dom@17.0.2+react@17.0.2
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
dev: false
/@waweb/base-ui.routing.native-nav-link/0.1.1_e8456b3e94cfe1421a471661503c4f33:
resolution: {integrity: sha1-zkj+zakkB8YNUJbvlYOpvRHuer0=, tarball: '@waweb/base-ui.routing.native-nav-link/-/@waweb-base-ui.routing.native-nav-link-0.1.1.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
'@waweb/base-ui.routing.compare-url': 0.1.1_0f78d4402c65c297154ea304700b01fa
'@waweb/base-ui.routing.native-link': 0.1.1_64ce02d81d406daeee5df8a9cc9894ae
'@waweb/base-ui.utils.is-browser': 0.1.0
classnames: registry.npmjs.org/classnames/2.3.1
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
transitivePeerDependencies:
- '@testing-library/react'
- url-parse
dev: false
/@waweb/base-ui.routing.routing-provider/0.1.1_e8456b3e94cfe1421a471661503c4f33:
resolution: {integrity: sha1-BnXXARBkAf3Ym9K+5Vz0SgwDFg4=, tarball: '@waweb/base-ui.routing.routing-provider/-/@waweb-base-ui.routing.routing-provider-0.1.1.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
'@waweb/base-ui.routing.native-link': 0.1.1_64ce02d81d406daeee5df8a9cc9894ae
'@waweb/base-ui.routing.native-nav-link': 0.1.1_e8456b3e94cfe1421a471661503c4f33
'@waweb/base-ui.utils.is-browser': 0.1.0
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
transitivePeerDependencies:
- '@testing-library/react'
- url-parse
dev: false
/@waweb/base-ui.text.text-sizes/0.1.0_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-Nl7l+zieryAOwj9uczID3pYKECg=, tarball: '@waweb/base-ui.text.text-sizes/-/@waweb-base-ui.text.text-sizes-0.1.0.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
dev: false
/@waweb/base-ui.theme.brand-definition/0.1.0_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-FMbIYfEmd+JI9dZemLCzjSd92PA=, tarball: '@waweb/base-ui.theme.brand-definition/-/@waweb-base-ui.theme.brand-definition-0.1.0.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
dev: false
/@waweb/base-ui.theme.color-definition/0.1.0_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-F3PXFRTPtZ6bFm9M/8gdxDAqyWU=, tarball: '@waweb/base-ui.theme.color-definition/-/@waweb-base-ui.theme.color-definition-0.1.0.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
'@waweb/base-ui.theme.colors': 0.1.0_react-dom@17.0.2+react@17.0.2
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
dev: false
/@waweb/base-ui.theme.colors/0.1.0_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-PSuI0hnDJlm2ugqHOuOPRQc4jVg=, tarball: '@waweb/base-ui.theme.colors/-/@waweb-base-ui.theme.colors-0.1.0.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
dev: false
/@waweb/base-ui.theme.fonts.book/0.1.0_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-hCMeJwikzck4Q+J76hK7WADhWcU=, tarball: '@waweb/base-ui.theme.fonts.book/-/@waweb-base-ui.theme.fonts.book-0.1.0.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
dev: false
/@waweb/base-ui.theme.fonts.roboto/0.1.0_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-RQwa9jfUQ5xAWos667/AXeVOZKs=, tarball: '@waweb/base-ui.theme.fonts.roboto/-/@waweb-base-ui.theme.fonts.roboto-0.1.0.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
dev: false
/@waweb/base-ui.theme.heading-margin-definition/0.1.0_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-c6UZjNthNC+76VY0L4BlPnNCmlI=, tarball: '@waweb/base-ui.theme.heading-margin-definition/-/@waweb-base-ui.theme.heading-margin-definition-0.1.0.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
dev: false
/@waweb/base-ui.theme.icons-font/0.2.0_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-bI+C4HQT1IIdMxRwT5PgWYkbkMQ=, tarball: '@waweb/base-ui.theme.icons-font/-/@waweb-base-ui.theme.icons-font-0.2.0.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
dev: false
/@waweb/base-ui.theme.shadow-definition/0.1.0_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-4bx73CC76O8qzIF8CR+anf6VXpI=, tarball: '@waweb/base-ui.theme.shadow-definition/-/@waweb-base-ui.theme.shadow-definition-0.1.0.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
dev: false
/@waweb/base-ui.theme.size-definition/0.1.0_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-ia7taJWh9Zp/VHuaETzPqw3L4vw=, tarball: '@waweb/base-ui.theme.size-definition/-/@waweb-base-ui.theme.size-definition-0.1.0.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
dev: false
/@waweb/base-ui.theme.sizes/0.1.0_react-dom@17.0.2+react@17.0.2:
resolution: {integrity: sha1-tWrw6L9xUK5EdHpN8Y7ocUwQIKc=, tarball: '@waweb/base-ui.theme.sizes/-/@waweb-base-ui.theme.sizes-0.1.0.tgz'}
peerDependencies:
react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
core-js: registry.npmjs.org/core-js/3.20.3
react: registry.npmjs.org/react/17.0.2
react-dom: registry.npmjs.org/react-dom/17.0.2_react@17.0.2
dev: false
/@waweb/base-ui.utils.is-browser/0.1.0:
resolution: {integrity: sha1-/lIdVlThenvWBcSxkMpQqvserg0=, tarball: '@waweb/base-ui.utils.is-browser/-/@waweb-base-ui.utils.is-browser-0.1.0.tgz'}
dev: false
registry.npmjs.org/@babel/code-frame/7.16.7:
resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz}
name: '@babel/code-frame'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': registry.npmjs.org/@babel/highlight/7.16.7
dev: false
registry.npmjs.org/@babel/core/7.11.6:
resolution: {integrity: sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/core/-/core-7.11.6.tgz}
name: '@babel/core'
version: 7.11.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmjs.org/@babel/code-frame/7.16.7
'@babel/generator': registry.npmjs.org/@babel/generator/7.16.8
'@babel/helper-module-transforms': registry.npmjs.org/@babel/helper-module-transforms/7.16.7
'@babel/helpers': registry.npmjs.org/@babel/helpers/7.16.7
'@babel/parser': registry.npmjs.org/@babel/parser/7.16.8
'@babel/template': registry.npmjs.org/@babel/template/7.16.7
'@babel/traverse': registry.npmjs.org/@babel/traverse/7.16.8
'@babel/types': registry.npmjs.org/@babel/types/7.16.8
convert-source-map: registry.npmjs.org/convert-source-map/1.8.0
debug: registry.npmjs.org/debug/4.3.3
gensync: registry.npmjs.org/gensync/1.0.0-beta.2
json5: registry.npmjs.org/json5/2.2.0
lodash: registry.npmjs.org/lodash/4.17.21
resolve: registry.npmjs.org/resolve/1.21.0
semver: registry.npmjs.org/semver/5.7.1
source-map: registry.npmjs.org/source-map/0.5.7
transitivePeerDependencies:
- supports-color
dev: false
registry.npmjs.org/@babel/core/7.12.9:
resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz}
name: '@babel/core'
version: 7.12.9
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmjs.org/@babel/code-frame/7.16.7
'@babel/generator': registry.npmjs.org/@babel/generator/7.16.8
'@babel/helper-module-transforms': registry.npmjs.org/@babel/helper-module-transforms/7.16.7
'@babel/helpers': registry.npmjs.org/@babel/helpers/7.16.7
'@babel/parser': registry.npmjs.org/@babel/parser/7.16.8
'@babel/template': registry.npmjs.org/@babel/template/7.16.7
'@babel/traverse': registry.npmjs.org/@babel/traverse/7.16.8
'@babel/types': registry.npmjs.org/@babel/types/7.16.8
convert-source-map: registry.npmjs.org/convert-source-map/1.8.0
debug: registry.npmjs.org/debug/4.3.3
gensync: registry.npmjs.org/gensync/1.0.0-beta.2
json5: registry.npmjs.org/json5/2.2.0
lodash: registry.npmjs.org/lodash/4.17.21
resolve: registry.npmjs.org/resolve/1.21.0
semver: registry.npmjs.org/semver/5.7.1
source-map: registry.npmjs.org/source-map/0.5.7
transitivePeerDependencies:
- supports-color
dev: false
registry.npmjs.org/@babel/generator/7.16.8:
resolution: {integrity: sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/generator/-/generator-7.16.8.tgz}
name: '@babel/generator'
version: 7.16.8
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.16.8
jsesc: registry.npmjs.org/jsesc/2.5.2
source-map: registry.npmjs.org/source-map/0.5.7
dev: false
registry.npmjs.org/@babel/helper-environment-visitor/7.16.7:
resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz}
name: '@babel/helper-environment-visitor'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.16.8
dev: false
registry.npmjs.org/@babel/helper-function-name/7.16.7:
resolution: {integrity: sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz}
name: '@babel/helper-function-name'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-get-function-arity': registry.npmjs.org/@babel/helper-get-function-arity/7.16.7
'@babel/template': registry.npmjs.org/@babel/template/7.16.7
'@babel/types': registry.npmjs.org/@babel/types/7.16.8
dev: false
registry.npmjs.org/@babel/helper-get-function-arity/7.16.7:
resolution: {integrity: sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz}
name: '@babel/helper-get-function-arity'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.16.8
dev: false
registry.npmjs.org/@babel/helper-hoist-variables/7.16.7:
resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz}
name: '@babel/helper-hoist-variables'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.16.8
dev: false
registry.npmjs.org/@babel/helper-module-imports/7.16.7:
resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz}
name: '@babel/helper-module-imports'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.16.8
dev: false
registry.npmjs.org/@babel/helper-module-transforms/7.16.7:
resolution: {integrity: sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz}
name: '@babel/helper-module-transforms'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': registry.npmjs.org/@babel/helper-environment-visitor/7.16.7
'@babel/helper-module-imports': registry.npmjs.org/@babel/helper-module-imports/7.16.7
'@babel/helper-simple-access': registry.npmjs.org/@babel/helper-simple-access/7.16.7
'@babel/helper-split-export-declaration': registry.npmjs.org/@babel/helper-split-export-declaration/7.16.7
'@babel/helper-validator-identifier': registry.npmjs.org/@babel/helper-validator-identifier/7.16.7
'@babel/template': registry.npmjs.org/@babel/template/7.16.7
'@babel/traverse': registry.npmjs.org/@babel/traverse/7.16.8
'@babel/types': registry.npmjs.org/@babel/types/7.16.8
transitivePeerDependencies:
- supports-color
dev: false
registry.npmjs.org/@babel/helper-plugin-utils/7.10.4:
resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz}
name: '@babel/helper-plugin-utils'
version: 7.10.4
dev: false
registry.npmjs.org/@babel/helper-plugin-utils/7.16.7:
resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz}
name: '@babel/helper-plugin-utils'
version: 7.16.7
engines: {node: '>=6.9.0'}
dev: false
registry.npmjs.org/@babel/helper-simple-access/7.16.7:
resolution: {integrity: sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz}
name: '@babel/helper-simple-access'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.16.8
dev: false
registry.npmjs.org/@babel/helper-split-export-declaration/7.16.7:
resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz}
name: '@babel/helper-split-export-declaration'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types/7.16.8
dev: false
registry.npmjs.org/@babel/helper-validator-identifier/7.16.7:
resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz}
name: '@babel/helper-validator-identifier'
version: 7.16.7
engines: {node: '>=6.9.0'}
dev: false
registry.npmjs.org/@babel/helpers/7.16.7:
resolution: {integrity: sha512-9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.7.tgz}
name: '@babel/helpers'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmjs.org/@babel/template/7.16.7
'@babel/traverse': registry.npmjs.org/@babel/traverse/7.16.8
'@babel/types': registry.npmjs.org/@babel/types/7.16.8
transitivePeerDependencies:
- supports-color
dev: false
registry.npmjs.org/@babel/highlight/7.16.7:
resolution: {integrity: sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz}
name: '@babel/highlight'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmjs.org/@babel/helper-validator-identifier/7.16.7
chalk: registry.npmjs.org/chalk/2.4.2
js-tokens: registry.npmjs.org/js-tokens/4.0.0
dev: false
registry.npmjs.org/@babel/parser/7.16.8:
resolution: {integrity: sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/parser/-/parser-7.16.8.tgz}
name: '@babel/parser'
version: 7.16.8
engines: {node: '>=6.0.0'}
hasBin: true
dev: false
registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/7.11.0_@babel+core@7.11.6:
resolution: {integrity: sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz}
id: registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/7.11.0
name: '@babel/plugin-proposal-object-rest-spread'
version: 7.11.0
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.11.6
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.16.7
'@babel/plugin-syntax-object-rest-spread': registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.11.6
'@babel/plugin-transform-parameters': registry.npmjs.org/@babel/plugin-transform-parameters/7.16.7_@babel+core@7.11.6
dev: false
registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9:
resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz}
id: registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/7.12.1
name: '@babel/plugin-proposal-object-rest-spread'
version: 7.12.1
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.12.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.16.7
'@babel/plugin-syntax-object-rest-spread': registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9
'@babel/plugin-transform-parameters': registry.npmjs.org/@babel/plugin-transform-parameters/7.16.7_@babel+core@7.12.9
dev: false
registry.npmjs.org/@babel/plugin-syntax-jsx/7.10.4_@babel+core@7.11.6:
resolution: {integrity: sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-jsx/7.10.4
name: '@babel/plugin-syntax-jsx'
version: 7.10.4
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.11.6
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.16.7
dev: false
registry.npmjs.org/@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9:
resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-jsx/7.12.1
name: '@babel/plugin-syntax-jsx'
version: 7.12.1
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.12.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.16.7
dev: false
registry.npmjs.org/@babel/plugin-syntax-jsx/7.16.7:
resolution: {integrity: sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz}
name: '@babel/plugin-syntax-jsx'
version: 7.16.7
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.16.7
dev: false
registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.11.6:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/7.8.3
name: '@babel/plugin-syntax-object-rest-spread'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.11.6
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.16.7
dev: false
registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/7.8.3
name: '@babel/plugin-syntax-object-rest-spread'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.12.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.16.7
dev: false
registry.npmjs.org/@babel/plugin-transform-parameters/7.16.7_@babel+core@7.11.6:
resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz}
id: registry.npmjs.org/@babel/plugin-transform-parameters/7.16.7
name: '@babel/plugin-transform-parameters'
version: 7.16.7
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.11.6
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.16.7
dev: false
registry.npmjs.org/@babel/plugin-transform-parameters/7.16.7_@babel+core@7.12.9:
resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz}
id: registry.npmjs.org/@babel/plugin-transform-parameters/7.16.7
name: '@babel/plugin-transform-parameters'
version: 7.16.7
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core/7.12.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils/7.16.7
dev: false
registry.npmjs.org/@babel/runtime-corejs3/7.16.8:
resolution: {integrity: sha512-3fKhuICS1lMz0plI5ktOE/yEtBRMVxplzRkdn6mJQ197XiY0JnrzYV0+Mxozq3JZ8SBV9Ecurmw1XsGbwOf+Sg==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.16.8.tgz}
name: '@babel/runtime-corejs3'
version: 7.16.8
engines: {node: '>=6.9.0'}
dependencies:
core-js-pure: registry.npmjs.org/core-js-pure/3.20.3
regenerator-runtime: registry.npmjs.org/regenerator-runtime/0.13.9
dev: false
registry.npmjs.org/@babel/runtime/7.12.18:
resolution: {integrity: sha512-BogPQ7ciE6SYAUPtlm9tWbgI9+2AgqSam6QivMgXgAT+fKbgppaj4ZX15MHeLC1PVF5sNk70huBu20XxWOs8Cg==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.18.tgz}
name: '@babel/runtime'
version: 7.12.18
dependencies:
regenerator-runtime: registry.npmjs.org/regenerator-runtime/0.13.9
dev: false
registry.npmjs.org/@babel/runtime/7.16.7:
resolution: {integrity: sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz}
name: '@babel/runtime'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: registry.npmjs.org/regenerator-runtime/0.13.9
registry.npmjs.org/@babel/template/7.16.7:
resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz}
name: '@babel/template'
version: 7.16.7
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmjs.org/@babel/code-frame/7.16.7
'@babel/parser': registry.npmjs.org/@babel/parser/7.16.8
'@babel/types': registry.npmjs.org/@babel/types/7.16.8
dev: false
registry.npmjs.org/@babel/traverse/7.16.8:
resolution: {integrity: sha512-xe+H7JlvKsDQwXRsBhSnq1/+9c+LlQcCK3Tn/l5sbx02HYns/cn7ibp9+RV1sIUqu7hKg91NWsgHurO9dowITQ==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.8.tgz}
name: '@babel/traverse'
version: 7.16.8
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmjs.org/@babel/code-frame/7.16.7
'@babel/generator': registry.npmjs.org/@babel/generator/7.16.8
'@babel/helper-environment-visitor': registry.npmjs.org/@babel/helper-environment-visitor/7.16.7
'@babel/helper-function-name': registry.npmjs.org/@babel/helper-function-name/7.16.7
'@babel/helper-hoist-variables': registry.npmjs.org/@babel/helper-hoist-variables/7.16.7
'@babel/helper-split-export-declaration': registry.npmjs.org/@babel/helper-split-export-declaration/7.16.7
'@babel/parser': registry.npmjs.org/@babel/parser/7.16.8
'@babel/types': registry.npmjs.org/@babel/types/7.16.8
debug: registry.npmjs.org/debug/4.3.3
globals: registry.npmjs.org/globals/11.12.0
transitivePeerDependencies:
- supports-color
dev: false
registry.npmjs.org/@babel/types/7.16.8:
resolution: {integrity: sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@babel/types/-/types-7.16.8.tgz}
name: '@babel/types'
version: 7.16.8
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmjs.org/@babel/helper-validator-identifier/7.16.7
to-fast-properties: registry.npmjs.org/to-fast-properties/2.0.0
dev: false
registry.npmjs.org/@emotion/babel-plugin/11.7.2:
resolution: {integrity: sha512-6mGSCWi9UzXut/ZAN6lGFu33wGR3SJisNl3c0tvlmb8XChH1b2SUvxvnOh7hvLpqyRdHHU9AiazV3Cwbk5SXKQ==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.7.2.tgz}
name: '@emotion/babel-plugin'
version: 11.7.2
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/helper-module-imports': registry.npmjs.org/@babel/helper-module-imports/7.16.7
'@babel/plugin-syntax-jsx': registry.npmjs.org/@babel/plugin-syntax-jsx/7.16.7
'@babel/runtime': registry.npmjs.org/@babel/runtime/7.16.7
'@emotion/hash': registry.npmjs.org/@emotion/hash/0.8.0
'@emotion/memoize': registry.npmjs.org/@emotion/memoize/0.7.5
'@emotion/serialize': registry.npmjs.org/@emotion/serialize/1.0.2
babel-plugin-macros: registry.npmjs.org/babel-plugin-macros/2.8.0
convert-source-map: registry.npmjs.org/convert-source-map/1.8.0
escape-string-regexp: registry.npmjs.org/escape-string-regexp/4.0.0
find-root: registry.npmjs.org/find-root/1.1.0
source-map: registry.npmjs.org/source-map/0.5.7
stylis: registry.npmjs.org/stylis/4.0.13
dev: false
registry.npmjs.org/@emotion/cache/11.7.1:
resolution: {integrity: sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@emotion/cache/-/cache-11.7.1.tgz}
name: '@emotion/cache'
version: 11.7.1
dependencies:
'@emotion/memoize': registry.npmjs.org/@emotion/memoize/0.7.5
'@emotion/sheet': registry.npmjs.org/@emotion/sheet/1.1.0
'@emotion/utils': registry.npmjs.org/@emotion/utils/1.0.0
'@emotion/weak-memoize': registry.npmjs.org/@emotion/weak-memoize/0.2.5
stylis: registry.npmjs.org/stylis/4.0.13
dev: false
registry.npmjs.org/@emotion/css/11.7.1:
resolution: {integrity: sha512-RUUgPlMZunlc7SE5A6Hg+VWRzb2cU6O9xlV78KCFgcnl25s7Qz/20oQg71iKudpLqk7xj0vhbJlwcJJMT0BOZg==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@emotion/css/-/css-11.7.1.tgz}
name: '@emotion/css'
version: 11.7.1
peerDependencies:
'@babel/core': ^7.0.0
peerDependenciesMeta:
'@babel/core':
optional: true
dependencies:
'@emotion/babel-plugin': registry.npmjs.org/@emotion/babel-plugin/11.7.2
'@emotion/cache': registry.npmjs.org/@emotion/cache/11.7.1
'@emotion/serialize': registry.npmjs.org/@emotion/serialize/1.0.2
'@emotion/sheet': registry.npmjs.org/@emotion/sheet/1.1.0
'@emotion/utils': registry.npmjs.org/@emotion/utils/1.0.0
dev: false
registry.npmjs.org/@emotion/hash/0.8.0:
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz}
name: '@emotion/hash'
version: 0.8.0
dev: false
registry.npmjs.org/@emotion/is-prop-valid/1.1.1:
resolution: {integrity: sha512-bW1Tos67CZkOURLc0OalnfxtSXQJMrAMV0jZTVGJUPSOd4qgjF3+tTD5CwJM13PHA8cltGW1WGbbvV9NpvUZPw==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.1.1.tgz}
name: '@emotion/is-prop-valid'
version: 1.1.1
dependencies:
'@emotion/memoize': registry.npmjs.org/@emotion/memoize/0.7.5
dev: false
registry.npmjs.org/@emotion/memoize/0.7.5:
resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.5.tgz}
name: '@emotion/memoize'
version: 0.7.5
dev: false
registry.npmjs.org/@emotion/react/11.7.1_b08e3c15324cbe90a6ff8fcd416c932c:
resolution: {integrity: sha512-DV2Xe3yhkF1yT4uAUoJcYL1AmrnO5SVsdfvu+fBuS7IbByDeTVx9+wFmvx9Idzv7/78+9Mgx2Hcmr7Fex3tIyw==, registry: https://node.bit.dev/, tarball: https://registry.npmjs.org/@emotion/react/-/react-11.7.1.tgz}
id: registry.npmjs.org/@emotion/react/11.7.1
name: '@emotion/react'