-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
2125 lines (1871 loc) · 99.1 KB
/
yarn.lock
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
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@babel/code-frame@^7.12.13":
version "7.12.13"
resolved "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658"
integrity sha1-3PyCa+72XnXFDiHTg319lXmN1lg=
dependencies:
"@babel/highlight" "^7.12.13"
"@babel/compat-data@^7.13.15":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.0.tgz#a901128bce2ad02565df95e6ecbf195cf9465919"
integrity sha512-vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q==
"@babel/core@^7.12.10":
version "7.14.3"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.3.tgz#5395e30405f0776067fbd9cf0884f15bfb770a38"
integrity sha512-jB5AmTKOCSJIZ72sd78ECEhuPiDMKlQdDI/4QRI6lzYATx5SSogS1oQA2AoPecRCknm30gHi2l+QVvNUu3wZAg==
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/generator" "^7.14.3"
"@babel/helper-compilation-targets" "^7.13.16"
"@babel/helper-module-transforms" "^7.14.2"
"@babel/helpers" "^7.14.0"
"@babel/parser" "^7.14.3"
"@babel/template" "^7.12.13"
"@babel/traverse" "^7.14.2"
"@babel/types" "^7.14.2"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
json5 "^2.1.2"
semver "^6.3.0"
source-map "^0.5.0"
"@babel/generator@^7.14.2", "@babel/generator@^7.14.3":
version "7.14.3"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.3.tgz#0c2652d91f7bddab7cccc6ba8157e4f40dcedb91"
integrity sha512-bn0S6flG/j0xtQdz3hsjJ624h3W0r3llttBMfyHX3YrZ/KtLYr15bjA0FXkgW7FpvrDuTuElXeVjiKlYRpnOFA==
dependencies:
"@babel/types" "^7.14.2"
jsesc "^2.5.1"
source-map "^0.5.0"
"@babel/helper-annotate-as-pure@^7.12.13":
version "7.12.13"
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab"
integrity sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-compilation-targets@^7.13.16":
version "7.13.16"
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz#6e91dccf15e3f43e5556dffe32d860109887563c"
integrity sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA==
dependencies:
"@babel/compat-data" "^7.13.15"
"@babel/helper-validator-option" "^7.12.17"
browserslist "^4.14.5"
semver "^6.3.0"
"@babel/helper-create-class-features-plugin@^7.14.3":
version "7.14.3"
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.3.tgz#832111bcf4f57ca57a4c5b1a000fc125abc6554a"
integrity sha512-BnEfi5+6J2Lte9LeiL6TxLWdIlEv9Woacc1qXzXBgbikcOzMRM2Oya5XGg/f/ngotv1ej2A/b+3iJH8wbS1+lQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.12.13"
"@babel/helper-function-name" "^7.14.2"
"@babel/helper-member-expression-to-functions" "^7.13.12"
"@babel/helper-optimise-call-expression" "^7.12.13"
"@babel/helper-replace-supers" "^7.14.3"
"@babel/helper-split-export-declaration" "^7.12.13"
"@babel/helper-function-name@^7.14.2":
version "7.14.2"
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.2.tgz#397688b590760b6ef7725b5f0860c82427ebaac2"
integrity sha512-NYZlkZRydxw+YT56IlhIcS8PAhb+FEUiOzuhFTfqDyPmzAhRge6ua0dQYT/Uh0t/EDHq05/i+e5M2d4XvjgarQ==
dependencies:
"@babel/helper-get-function-arity" "^7.12.13"
"@babel/template" "^7.12.13"
"@babel/types" "^7.14.2"
"@babel/helper-get-function-arity@^7.12.13":
version "7.12.13"
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz#bc63451d403a3b3082b97e1d8b3fe5bd4091e583"
integrity sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-member-expression-to-functions@^7.13.12":
version "7.13.12"
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz#dfe368f26d426a07299d8d6513821768216e6d72"
integrity sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==
dependencies:
"@babel/types" "^7.13.12"
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.13.12":
version "7.13.12"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz#c6a369a6f3621cb25da014078684da9196b61977"
integrity sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==
dependencies:
"@babel/types" "^7.13.12"
"@babel/helper-module-transforms@^7.14.2":
version "7.14.2"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.2.tgz#ac1cc30ee47b945e3e0c4db12fa0c5389509dfe5"
integrity sha512-OznJUda/soKXv0XhpvzGWDnml4Qnwp16GN+D/kZIdLsWoHj05kyu8Rm5kXmMef+rVJZ0+4pSGLkeixdqNUATDA==
dependencies:
"@babel/helper-module-imports" "^7.13.12"
"@babel/helper-replace-supers" "^7.13.12"
"@babel/helper-simple-access" "^7.13.12"
"@babel/helper-split-export-declaration" "^7.12.13"
"@babel/helper-validator-identifier" "^7.14.0"
"@babel/template" "^7.12.13"
"@babel/traverse" "^7.14.2"
"@babel/types" "^7.14.2"
"@babel/helper-optimise-call-expression@^7.12.13":
version "7.12.13"
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz#5c02d171b4c8615b1e7163f888c1c81c30a2aaea"
integrity sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0":
version "7.13.0"
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz#806526ce125aed03373bc416a828321e3a6a33af"
integrity sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==
"@babel/helper-replace-supers@^7.13.12", "@babel/helper-replace-supers@^7.14.3":
version "7.14.3"
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.3.tgz#ca17b318b859d107f0e9b722d58cf12d94436600"
integrity sha512-Rlh8qEWZSTfdz+tgNV/N4gz1a0TMNwCUcENhMjHTHKp3LseYH5Jha0NSlyTQWMnjbYcwFt+bqAMqSLHVXkQ6UA==
dependencies:
"@babel/helper-member-expression-to-functions" "^7.13.12"
"@babel/helper-optimise-call-expression" "^7.12.13"
"@babel/traverse" "^7.14.2"
"@babel/types" "^7.14.2"
"@babel/helper-simple-access@^7.13.12":
version "7.13.12"
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz#dd6c538afb61819d205a012c31792a39c7a5eaf6"
integrity sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==
dependencies:
"@babel/types" "^7.13.12"
"@babel/helper-split-export-declaration@^7.12.13":
version "7.12.13"
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz#e9430be00baf3e88b0e13e6f9d4eaf2136372b05"
integrity sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-validator-identifier@^7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz#d26cad8a47c65286b15df1547319a5d0bcf27288"
integrity sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==
"@babel/helper-validator-option@^7.12.17":
version "7.12.17"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831"
integrity sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==
"@babel/helpers@^7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.0.tgz#ea9b6be9478a13d6f961dbb5f36bf75e2f3b8f62"
integrity sha512-+ufuXprtQ1D1iZTO/K9+EBRn+qPWMJjZSw/S0KlFrxCw4tkrzv9grgpDHkY9MeQTjTY8i2sp7Jep8DfU6tN9Mg==
dependencies:
"@babel/template" "^7.12.13"
"@babel/traverse" "^7.14.0"
"@babel/types" "^7.14.0"
"@babel/highlight@^7.12.13":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.0.tgz#3197e375711ef6bf834e67d0daec88e4f46113cf"
integrity sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==
dependencies:
"@babel/helper-validator-identifier" "^7.14.0"
chalk "^2.0.0"
js-tokens "^4.0.0"
"@babel/parser@^7.12.0", "@babel/parser@^7.12.13", "@babel/parser@^7.13.9", "@babel/parser@^7.14.2", "@babel/parser@^7.14.3":
version "7.14.3"
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.3.tgz#9b530eecb071fd0c93519df25c5ff9f14759f298"
integrity sha512-7MpZDIfI7sUC5zWo2+foJ50CSI5lcqDehZ0lVgIhSi4bFEk94fLAKlF3Q0nzSQQ+ca0lm+O6G9ztKVBeu8PMRQ==
"@babel/plugin-syntax-import-meta@^7.10.4":
version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-jsx@^7.0.0":
version "7.12.13"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz#044fb81ebad6698fe62c478875575bcbb9b70f15"
integrity sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-syntax-typescript@^7.12.13":
version "7.12.13"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz#9dff111ca64154cef0f4dc52cf843d9f12ce4474"
integrity sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w==
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-transform-typescript@^7.12.1":
version "7.14.3"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.14.3.tgz#44f67f725a60cccee33d9d6fee5e4f338258f34f"
integrity sha512-G5Bb5pY6tJRTC4ag1visSgiDoGgJ1u1fMUgmc2ijLkcIdzP83Q1qyZX4ggFQ/SkR+PNOatkaYC+nKcTlpsX4ag==
dependencies:
"@babel/helper-create-class-features-plugin" "^7.14.3"
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-syntax-typescript" "^7.12.13"
"@babel/template@^7.0.0", "@babel/template@^7.12.13":
version "7.12.13"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327"
integrity sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/parser" "^7.12.13"
"@babel/types" "^7.12.13"
"@babel/traverse@^7.0.0", "@babel/traverse@^7.14.0", "@babel/traverse@^7.14.2":
version "7.14.2"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.2.tgz#9201a8d912723a831c2679c7ebbf2fe1416d765b"
integrity sha512-TsdRgvBFHMyHOOzcP9S6QU0QQtjxlRpEYOy3mcCO5RgmC305ki42aSAmfZEMSSYBla2oZ9BMqYlncBaKmD/7iA==
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/generator" "^7.14.2"
"@babel/helper-function-name" "^7.14.2"
"@babel/helper-split-export-declaration" "^7.12.13"
"@babel/parser" "^7.14.2"
"@babel/types" "^7.14.2"
debug "^4.1.0"
globals "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.12.0", "@babel/types@^7.12.13", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.14.0", "@babel/types@^7.14.2":
version "7.14.2"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.2.tgz#4208ae003107ef8a057ea8333e56eb64d2f6a2c3"
integrity sha512-SdjAG/3DikRHpUOjxZgnkbR11xUlyDMUFJdvnIgZEE16mqmY0BINMmc4//JMJglEmn6i7sq6p+mGrFWyZ98EEw==
dependencies:
"@babel/helper-validator-identifier" "^7.14.0"
to-fast-properties "^2.0.0"
"@material/animation@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/animation/-/animation-12.0.0-canary.d5f6ad3fe.0.tgz#c4e4580dacf1b81a4f7fd26b58f01945cb125414"
integrity sha512-OjysNLD1PL0sL9N4PwseTcXEollYXUlRrC2cMvhwRAIkJrW3SlXVQlMI6i7VHotUitsDj6XrHh6ksUUyYvO5Ww==
dependencies:
tslib "^2.1.0"
"@material/auto-init@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/auto-init/-/auto-init-12.0.0-canary.d5f6ad3fe.0.tgz#68282c461a6967e259766760345f4bbf0ae9009a"
integrity sha512-ullGWZGZyWCVqcg1Ab3ITf63Owz/4rRjAEq1lidxoAJDus3pT4pcJVCOBwOaHe3ENrnNdlcYqpsfU1ElpYfakQ==
dependencies:
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/banner@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/banner/-/banner-12.0.0-canary.d5f6ad3fe.0.tgz#638835e61348bb0aa0e64f2907916b01520790ab"
integrity sha512-l6rH//TzMmkR7TWFmOWRZH1JzCgI2GIA0tEP5tjLoTbLGRUWVuBRm7mirggYo0QcujDPbHJRWMKLAyjmaIVnjg==
dependencies:
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/button" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/base@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/base/-/base-12.0.0-canary.d5f6ad3fe.0.tgz#b01eb165c2937f67291a0a80623d52a6b7c615b8"
integrity sha512-dxRze6Alhjw8m3C4oHaKOHb/s89TYupmsTktECrwQBmYisr1KxisYsbWooujGfvpx+3El9vFu1fteT+wEbqN+g==
dependencies:
tslib "^2.1.0"
"@material/button@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/button/-/button-12.0.0-canary.d5f6ad3fe.0.tgz#0a602b2df596e85c5614e22d28059a82f74cb415"
integrity sha512-kmKnm1F1quBr3PH5FGW/YnTZf0VkcXbc4zFzUFSBTgJHXTL4ip8va7+u7D8t4vBnUECTAcIH8IZwNmVPlPE4ew==
dependencies:
"@material/density" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/elevation" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/touch-target" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/card@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/card/-/card-12.0.0-canary.d5f6ad3fe.0.tgz#b8f55d6e7517920d0147687afaa019f93cdd8787"
integrity sha512-Y8K7eskk7KKcaiBScBtDgaDj0OENjl5z+x0g3QEanN+Z4OSPvCMelfnO+ZCJVxvneAXMIjIgGKBsMCdLVtt0qg==
dependencies:
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/elevation" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/checkbox@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/checkbox/-/checkbox-12.0.0-canary.d5f6ad3fe.0.tgz#077de0e79b3ecdb229fc639cf0924cdf1d8c29c9"
integrity sha512-wlFOK7Trm14j0re5RJdqhZ7MdUMuqS+bolSEfRSfCLCwfEQkZzGuMLh5CNdTliFIDj7cJKMA+T5Hmbh0ksaQnQ==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/density" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/touch-target" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/chips@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/chips/-/chips-12.0.0-canary.d5f6ad3fe.0.tgz#b140c1db242e1038d1916a9ecebec33a587f34e2"
integrity sha512-BCNLb3xyYZ6O/8cbFYHRMw+uz4uA2Rz0GuBHv8GIJvZNBSYvQg4cXQKGglLszeRk7eX4BCH6m0RAA80LREOHUg==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/checkbox" "12.0.0-canary.d5f6ad3fe.0"
"@material/density" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/elevation" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/touch-target" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/circular-progress@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/circular-progress/-/circular-progress-12.0.0-canary.d5f6ad3fe.0.tgz#cb4fc419af82bc3ec16e3a6ee01260c4743c08e9"
integrity sha512-dbfqCJ95Lf2cet3hWBMKM5obS+ArYryP3Of8tkXtJ0dOz0Zp55pofcGc6l6fLSIFmfPZRBCOmgAHmUCObe6pMA==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/progress-indicator" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/data-table@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/data-table/-/data-table-12.0.0-canary.d5f6ad3fe.0.tgz#f677320cb3eddf0a032670a32823a751c5a199fd"
integrity sha512-GC+fsF0DO2Xrcqx4V2j5uIplB9YJUqwozbg06xLn/nGhc1Zpprj6syTa9anj+D/2fIfpUVOHL3bj3o6Jz1BCCw==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/checkbox" "12.0.0-canary.d5f6ad3fe.0"
"@material/density" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/elevation" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/icon-button" "12.0.0-canary.d5f6ad3fe.0"
"@material/linear-progress" "12.0.0-canary.d5f6ad3fe.0"
"@material/list" "12.0.0-canary.d5f6ad3fe.0"
"@material/menu" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/select" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/touch-target" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/density@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/density/-/density-12.0.0-canary.d5f6ad3fe.0.tgz#9a67f01a6b3a827ca8938468bb1e942f3988ce86"
integrity sha512-X8irtANFlw8hAFgFf8jSih9sed84A5GJ6x/RyIXdi5ZRBNC8CWNPQRgWRt4wgFJpsV1VF5he+5d0j1UC1DjzGw==
dependencies:
tslib "^2.1.0"
"@material/dialog@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/dialog/-/dialog-12.0.0-canary.d5f6ad3fe.0.tgz#c1c0bd1324bcbb8f0ec1d2d16338af1637c022e1"
integrity sha512-0cTeHFdTFT5MYvCxhU6c9EdfBDwUbX2Lh5KL2J8c2zjGYwa2f43uzSLXlxr11KRXsbjltmGuCbBdNilspJd7hA==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/button" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/elevation" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/icon-button" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/touch-target" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/dom@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/dom/-/dom-12.0.0-canary.d5f6ad3fe.0.tgz#559e0469be76a45c5b89ee51e1d55dedbda1967f"
integrity sha512-haBMGEUxWi9lipixhWe1Dy3lg2T1nnwifduUly8xgJCZ8IvNk7RFUDIOejMSwE7XUVtIimaW5bYonOlVWSclqg==
dependencies:
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/drawer@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/drawer/-/drawer-12.0.0-canary.d5f6ad3fe.0.tgz#b6336e10ba3c85f8be42246d7dbf5ab1fc93dc8e"
integrity sha512-yHy0Uh1NqhGCi4mnVsD26jz/Eb2zRrIGSqufJhP4o5X0TVH7yWc97cNdlCviQGQNMztv8b8SJDAfEfvb6te7UQ==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/elevation" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/list" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/elevation@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/elevation/-/elevation-12.0.0-canary.d5f6ad3fe.0.tgz#a348549c8ef6ab66bf6a4946abbb0a86cf66c7ca"
integrity sha512-3AKj1L5UiSMlUD7LFJhgE6F/L24FeAIAoU5kQ3XEWw1v2HkvqxKpaG/DVw2OserXAGYUJhtBOsUI/6qsKHJy2Q==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/fab@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/fab/-/fab-12.0.0-canary.d5f6ad3fe.0.tgz#5e8c1f86db11ac03de7239348ff83728b94ed385"
integrity sha512-ESSief0Uha/0i7QGeoJedMuVVJky6SkxB5UQUuxx8mJaKPvAGoHTHejGSz1N0xHw8CQb8xoGTnzgZkm6r04Xag==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/elevation" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/touch-target" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/feature-targeting@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/feature-targeting/-/feature-targeting-12.0.0-canary.d5f6ad3fe.0.tgz#41cd1e86e56ae9362e22200c32abc1bb60773447"
integrity sha512-BN9JimC7vf0Th8IpNH0jCFZZSkLU6t5sUwNKaDeWZ6GA4dh5def/d4LYo02xlfW+axdpzJVW7g/V/T3wz28OMw==
dependencies:
tslib "^2.1.0"
"@material/floating-label@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/floating-label/-/floating-label-12.0.0-canary.d5f6ad3fe.0.tgz#c32226249fc7f4fb26b5f63fa185c96a5e14e48f"
integrity sha512-GUCMg6J/XqG//Q65cZacwk0hWuAT1uJOZnubQiWy21RB/QroH45qlTkcAzee7k68YCot0JyA9HFPoiTeodo+yg==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/form-field@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/form-field/-/form-field-12.0.0-canary.d5f6ad3fe.0.tgz#8dc9a463d8a028d4c0dc071409294afe18918875"
integrity sha512-jokyZJhcRiTFzCHZSuHeB5mTVdryNWrZ70xzXsS1R5xVmBVFC0CrraicaSYsISp1Cke5Wi6T9W004MsX06cO6A==
dependencies:
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/icon-button@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/icon-button/-/icon-button-12.0.0-canary.d5f6ad3fe.0.tgz#26b07d16e5a89360cb9a44e5a07a63f6d8a74de9"
integrity sha512-as/kmsGh6mfXq7MOZN1GXbUilIsH/cQf2C0urxC8NK+LrZhODNy9KLWnaGZQ0ufGnRU4ImVIHfDol2MOl2Vj9w==
dependencies:
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/density" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/image-list@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/image-list/-/image-list-12.0.0-canary.d5f6ad3fe.0.tgz#bdca8160e070acc4fb0e56600428ba63b0dfc79f"
integrity sha512-6nVr5TIpYgDPNpdxGzGvCRD1zkvxmJj5cjM0oahxN7Ai74B3MWIb8kwwDXeKZzw+k6oYxF5l8iNId/U/q2HhsA==
dependencies:
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/layout-grid@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/layout-grid/-/layout-grid-12.0.0-canary.d5f6ad3fe.0.tgz#1797d5ea44c2d6eabef098d00e9287b3735c31d7"
integrity sha512-zCuPG2ojZfkVd1x/yRwGahxNcwzcCHCY3gLgPBo3n6hafUqmXkEdNzG5fPbvmkVPsdhdxnekRiDrz0WOAFDufw==
dependencies:
tslib "^2.1.0"
"@material/line-ripple@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/line-ripple/-/line-ripple-12.0.0-canary.d5f6ad3fe.0.tgz#1c28657fa16cc709969d1624689161a8ab96507e"
integrity sha512-Mgdua9XeOr2ZWZquUdNfat8xNo9BY97pCppDwl3aeLI2s7I119b8mQoDkiboLSdi3JDYMseeB8ijcEy2Nau3Hg==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/linear-progress@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/linear-progress/-/linear-progress-12.0.0-canary.d5f6ad3fe.0.tgz#33a376349e128accf6fabd397c5ade4022367c76"
integrity sha512-ymsvv6NtM/PC+NviVSlYlUT9QAVO8/vrfG7WAacm3Q3kx/ZeibfBskOyHFHHGbL3mHo4FJ+A31i+Y3y7PZ9dzA==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/progress-indicator" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/list@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/list/-/list-12.0.0-canary.d5f6ad3fe.0.tgz#0465a5e77a6844d3a10dc35a9f721dd84a573b31"
integrity sha512-NbIxxVeRIrHAm2HEii63YM7CqzVSMGnY+XaoYiSeIpKi2vAXKEi/LfiSJeoqs/JMEbybEh2FiX+cxVA0Ej0odw==
dependencies:
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/density" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/menu-surface@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/menu-surface/-/menu-surface-12.0.0-canary.d5f6ad3fe.0.tgz#388f02d5184345e95445bda8ba541f80ab14d276"
integrity sha512-zBXAeVS3WboO0JRlNVO20ROfp4KJvzwXAb4PJ0CPU1IHw28fcD762H90qYM5mPp1ytAxX6xGmjNeJozEit+kZw==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/elevation" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/menu@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/menu/-/menu-12.0.0-canary.d5f6ad3fe.0.tgz#4c6539cec1fc21c81ef7c4709e77ca87913e1d72"
integrity sha512-XFbh2N1YHliJlbeyysdr+wXeSIOytagXm+iZ04LAUApa/SVs8h67O+jcTGLlSTwFNrndvGUkcM9I6WP4LazTCQ==
dependencies:
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/elevation" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/list" "12.0.0-canary.d5f6ad3fe.0"
"@material/menu-surface" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/notched-outline@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/notched-outline/-/notched-outline-12.0.0-canary.d5f6ad3fe.0.tgz#5fbe9dce9b3a2d7f5c6ae987b72670ee416f79a9"
integrity sha512-9dPchBjV7M0t+TSGwOmhaolsCfC2TobtWDYHOdBAvV5nVLwnG7/DCUWpzbU4JF65VRk070wqRCQKVRo9aKxnGQ==
dependencies:
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/floating-label" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/progress-indicator@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/progress-indicator/-/progress-indicator-12.0.0-canary.d5f6ad3fe.0.tgz#947b6d20efbde19b1b5480ca157ada32fb468c87"
integrity sha512-Hr2oo2pbVhMQmxbtn2eIhooGC/Rinpn6kshsr0grrx2OBFUFGcPfrG8FD9sKZYNavG0C+FDDlX065zF//6pvmQ==
dependencies:
tslib "^2.1.0"
"@material/radio@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/radio/-/radio-12.0.0-canary.d5f6ad3fe.0.tgz#91ca5c9f2b235d500c7b467e2b0eb0e1166d20e0"
integrity sha512-HXMfsYMPW7St7Y4zXPDe0tQHPe/F51NE2u1dBARJb7uV46K7iiaEBjuMVy1LdqgIhFb/3dCXYnL9trYm922jsQ==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/density" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/touch-target" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/ripple@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/ripple/-/ripple-12.0.0-canary.d5f6ad3fe.0.tgz#73c7fa25a925e778c96ff7b87abb745b03ad1967"
integrity sha512-4cLmb6Cun9kD72/KN+8jOlSYatDlz5+URinTp8MX154/kXD0/lBj41BHruVvCr+KAJ9HJhUJ8VN6QReLwpc0ww==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/rtl@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/rtl/-/rtl-12.0.0-canary.d5f6ad3fe.0.tgz#1a52c259045c3125c3d9404eff6231c83af436e0"
integrity sha512-8tEM4QJKnNrKlywN7PjLBbobraqzEYEg9yh4wNWfSVMa0t3ZwHgnOY6Y8B5nZAglJFreNYng5PoIGMSxNExXpg==
dependencies:
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/segmented-button@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/segmented-button/-/segmented-button-12.0.0-canary.d5f6ad3fe.0.tgz#0052a8031db026df7d6a999929a851ab6b31c435"
integrity sha512-xmqjfGWyORpc7oce1UCCNWuf5olIRyMHH0D0D/waY/jUoTQbDZX7Cod3nSvwNiJvITTGVIvyejvGcYpS0cmDVg==
dependencies:
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/elevation" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/touch-target" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/select@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/select/-/select-12.0.0-canary.d5f6ad3fe.0.tgz#d96d05976dbcc57be5add1069c6ed0aa3294dfca"
integrity sha512-D8DxakRk4LW4sAEW220DoBWovWVfBSyiK5LPY7/RX+K83gElhNhPo7XI+pwc64MBUfwFM0pxUdoRGvZULYP9yw==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/density" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/floating-label" "12.0.0-canary.d5f6ad3fe.0"
"@material/line-ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/list" "12.0.0-canary.d5f6ad3fe.0"
"@material/menu" "12.0.0-canary.d5f6ad3fe.0"
"@material/menu-surface" "12.0.0-canary.d5f6ad3fe.0"
"@material/notched-outline" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/shape@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/shape/-/shape-12.0.0-canary.d5f6ad3fe.0.tgz#8c7d4710827c4dd1066bbd11f5fc0427c12d220d"
integrity sha512-4bHtO3KUutStbcbY6qPst4UYABxtdBlwv9dLDkftsgtviB5/7ZS9L+Ihwz9rssCl6UH7QwWnQXJ/jEm8qXCUGQ==
dependencies:
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/slider@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/slider/-/slider-12.0.0-canary.d5f6ad3fe.0.tgz#608d1844fd38ff50014d54602bae9e62573b5046"
integrity sha512-07JyiRQBlQGgzijFeus4EomJHo4CTvQ5iUGg4W0JTN1E8+iiyEZ1wBgNtHSNe2MpYUxj4e417EV3a/4eHMLJJg==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/elevation" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/snackbar@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/snackbar/-/snackbar-12.0.0-canary.d5f6ad3fe.0.tgz#1e08173417e125bc5ac2b4f1e54824f58286292e"
integrity sha512-lljngCHKSdDmnHhidDh3Al/vQsn5idkBsCW7bU4Hj+EvlILYWpxpESz1PuBLayi+rzxdKShTWoBIGKN6vPi2HQ==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/button" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/elevation" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/icon-button" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/switch@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/switch/-/switch-12.0.0-canary.d5f6ad3fe.0.tgz#9756d02982af8e3da2438cbe1eb078d8c9f4644f"
integrity sha512-nek8Etp4/cdMaO+Kpp7pfAnYKhUC1md2HeA7ZrrgnV/5bTzyy+Dg0GMxarRAfIEmaflB16xrWZJK5fBf5nuWcg==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/density" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/elevation" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/tab-bar@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/tab-bar/-/tab-bar-12.0.0-canary.d5f6ad3fe.0.tgz#4d1043d66c9a5f63ddac8289612f96e81dae845c"
integrity sha512-x9QKqyfGv6/3auY/OTlqIevUNtzt26wQtS+fp8VYJfXZIeTrCn/zru/5x4KtIUnJfm45io7yw++jtDsVBR9sRA==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/density" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/tab" "12.0.0-canary.d5f6ad3fe.0"
"@material/tab-scroller" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/tab-indicator@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/tab-indicator/-/tab-indicator-12.0.0-canary.d5f6ad3fe.0.tgz#2fd95620a69c3ae3ca61263b76002a2ab75e6c4e"
integrity sha512-9GkcwubNdVxBGeCIt1wCAQZwi88ojo5qHe3mYOYM8JTijMP7tl4bkGJdT+Ux2crWpFoxmsIeqBVREGNW7P10WQ==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/tab-scroller@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/tab-scroller/-/tab-scroller-12.0.0-canary.d5f6ad3fe.0.tgz#02ebbbcdd1feddc6ccb0566337d91d9b02bbb780"
integrity sha512-44rpr8FC3BRMpGXLigk8iIRdig1VxfPbTdGw74AKrUT6eoDSd0Wk+4SCRmJ8B5ypgGwaBQKTUP2MXpu9RfmGxQ==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/tab" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/tab@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/tab/-/tab-12.0.0-canary.d5f6ad3fe.0.tgz#3d56e8d8a60e6a3fe1b518f0f3ee90b184d27527"
integrity sha512-MmLcmQpuTBZvNbtshGOMvrkDaml6P3P34tukK4jLxKJWVoNkDaFC0KVRVz9VIJ5mMHeWC6OaIinmGTApCC8PoQ==
dependencies:
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/tab-indicator" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/textfield@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/textfield/-/textfield-12.0.0-canary.d5f6ad3fe.0.tgz#a3c9113efdee8934b4382a24e7246885a9510a97"
integrity sha512-oBlGn7QLrKKwBNHf6Ea03q41+d3cN4TaEgGf1eV3TKBig1CuCBxMe5nJBT89sTYCCtebAtYbWcOevdFIjtfSZg==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/density" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/floating-label" "12.0.0-canary.d5f6ad3fe.0"
"@material/line-ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/notched-outline" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/theme@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/theme/-/theme-12.0.0-canary.d5f6ad3fe.0.tgz#8a6a04c475e3366e64e821a9afbe0c291bb10bed"
integrity sha512-WA6GgpOhhGJNut8aIX/CmTuOu390Srxaaa1+gK+RboRZNnJHVBJ6FfFcoo9ScK+fyTj8JiiTb1juKv9g6MxtXg==
dependencies:
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/tooltip@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/tooltip/-/tooltip-12.0.0-canary.d5f6ad3fe.0.tgz#b700ecb783fb3ed2dc95f215568f04eb9dcb1dbe"
integrity sha512-CPFURl8lC+sN7OYRa7AOZrZ7o+0DscJBQjQ2LGRA8aL5zhxxaXoVkXGwYHDHaaG32kaBB0YeuU/XGEChvdZWRQ==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/dom" "12.0.0-canary.d5f6ad3fe.0"
"@material/elevation" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/top-app-bar@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/top-app-bar/-/top-app-bar-12.0.0-canary.d5f6ad3fe.0.tgz#6098c0ccb9d066e5e2841bffa3954858f5a698a8"
integrity sha512-XErXWKk1h7wgG/a5WSY03UE89YLqZAH655l/PcdHyF2CXJz0bPNlTkflqqzPlBIiqJ6ASF1NQRv3z7K3TIv0qw==
dependencies:
"@material/animation" "12.0.0-canary.d5f6ad3fe.0"
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/elevation" "12.0.0-canary.d5f6ad3fe.0"
"@material/ripple" "12.0.0-canary.d5f6ad3fe.0"
"@material/rtl" "12.0.0-canary.d5f6ad3fe.0"
"@material/shape" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
"@material/typography" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/touch-target@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/touch-target/-/touch-target-12.0.0-canary.d5f6ad3fe.0.tgz#2a47b68d2c801a7e8f0e718d10c3ff7b8d67dbb0"
integrity sha512-r3x+NorhYUERCZq4PWR1bDmbtEFi/mj7Q8VzYGMEcMPazu2t/kWtJiyO1Jazn1oNQLucaDI/eVhT0G3mQHFHqQ==
dependencies:
"@material/base" "12.0.0-canary.d5f6ad3fe.0"
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@material/typography@12.0.0-canary.d5f6ad3fe.0":
version "12.0.0-canary.d5f6ad3fe.0"
resolved "https://registry.yarnpkg.com/@material/typography/-/typography-12.0.0-canary.d5f6ad3fe.0.tgz#cb04097603e3d1796c5cfe2652764a771790fd71"
integrity sha512-LFPqXDolTdpmtLRB5QzOl081cCU5C5qVn59xm/IxStk65TerndQrRPTSFdE5C5lEn5LW8r/5UuNsWzX9Wbc2vg==
dependencies:
"@material/feature-targeting" "12.0.0-canary.d5f6ad3fe.0"
"@material/theme" "12.0.0-canary.d5f6ad3fe.0"
tslib "^2.1.0"
"@rollup/pluginutils@^4.1.0":
version "4.1.0"
resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.1.0.tgz#0dcc61c780e39257554feb7f77207dceca13c838"
integrity sha512-TrBhfJkFxA+ER+ew2U2/fHbebhLT/l/2pRk0hfj9KusXUuRXd2v0R58AfaZK9VXDQ4TogOSEmICVrQAA3zFnHQ==
dependencies:
estree-walker "^2.0.1"
picomatch "^2.2.2"
"@vitejs/plugin-vue-jsx@^1.1.2":
version "1.1.4"
resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.1.4.tgz#3af194202f9ed38a7384f7a7c72f5b66ce863859"
integrity sha512-QomJwH9oF5Ixl000fLK4TjKE4gwnxpArZdcHs6ANrtgsXwxyoib8msz9tNgiP2TiBfg7VdShbaUBYMvm0gPGsA==
dependencies:
"@babel/core" "^7.12.10"
"@babel/plugin-syntax-import-meta" "^7.10.4"
"@babel/plugin-transform-typescript" "^7.12.1"
"@rollup/pluginutils" "^4.1.0"
"@vue/babel-plugin-jsx" "^1.0.3"
hash-sum "^2.0.0"
"@vitejs/plugin-vue@^1.0.0":
version "1.2.2"
resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-1.2.2.tgz#b0038fc11b9099f4cd01fcbf0ee419adda417b52"
integrity sha512-5BI2WFfs/Z0pAV4S/IQf1oH3bmFYlL5ATMBHgTt1Lf7hAnfpNd5oUAAs6hZPfk3QhvyUQgtk0rJBlabwNFcBJQ==
"@vue/babel-helper-vue-transform-on@^1.0.2":
version "1.0.2"
resolved "https://registry.yarnpkg.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.2.tgz#9b9c691cd06fc855221a2475c3cc831d774bc7dc"
integrity sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==
"@vue/babel-plugin-jsx@^1.0.3":
version "1.0.6"
resolved "https://registry.yarnpkg.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.6.tgz#184bf3541ab6efdbe5079ab8b20c19e2af100bfb"
integrity sha512-RzYsvBhzKUmY2YG6LoV+W5PnlnkInq0thh1AzCmewwctAgGN6e9UFon6ZrQQV1CO5G5PeME7MqpB+/vvGg0h4g==
dependencies:
"@babel/helper-module-imports" "^7.0.0"
"@babel/plugin-syntax-jsx" "^7.0.0"
"@babel/template" "^7.0.0"
"@babel/traverse" "^7.0.0"
"@babel/types" "^7.0.0"
"@vue/babel-helper-vue-transform-on" "^1.0.2"
camelcase "^6.0.0"
html-tags "^3.1.0"
svg-tags "^1.0.0"
"@vue/compiler-core@3.0.11":
version "3.0.11"
resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.11.tgz#5ef579e46d7b336b8735228758d1c2c505aae69a"
integrity sha512-6sFj6TBac1y2cWCvYCA8YzHJEbsVkX7zdRs/3yK/n1ilvRqcn983XvpBbnN3v4mZ1UiQycTvOiajJmOgN9EVgw==
dependencies:
"@babel/parser" "^7.12.0"
"@babel/types" "^7.12.0"
"@vue/shared" "3.0.11"
estree-walker "^2.0.1"
source-map "^0.6.1"
"@vue/compiler-dom@3.0.11":
version "3.0.11"
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.11.tgz#b15fc1c909371fd671746020ba55b5dab4a730ee"
integrity sha512-+3xB50uGeY5Fv9eMKVJs2WSRULfgwaTJsy23OIltKgMrynnIj8hTYY2UL97HCoz78aDw1VDXdrBQ4qepWjnQcw==
dependencies:
"@vue/compiler-core" "3.0.11"
"@vue/shared" "3.0.11"
"@vue/compiler-sfc@^3.0.8":
version "3.0.11"
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.11.tgz#cd8ca2154b88967b521f5ad3b10f5f8b6b665679"
integrity sha512-7fNiZuCecRleiyVGUWNa6pn8fB2fnuJU+3AGjbjl7r1P5wBivfl02H4pG+2aJP5gh2u+0wXov1W38tfWOphsXw==
dependencies:
"@babel/parser" "^7.13.9"
"@babel/types" "^7.13.0"
"@vue/compiler-core" "3.0.11"
"@vue/compiler-dom" "3.0.11"
"@vue/compiler-ssr" "3.0.11"
"@vue/shared" "3.0.11"
consolidate "^0.16.0"
estree-walker "^2.0.1"
hash-sum "^2.0.0"
lru-cache "^5.1.1"
magic-string "^0.25.7"
merge-source-map "^1.1.0"
postcss "^8.1.10"
postcss-modules "^4.0.0"
postcss-selector-parser "^6.0.4"
source-map "^0.6.1"
"@vue/compiler-ssr@3.0.11":
version "3.0.11"
resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.11.tgz#ac5a05fd1257412fa66079c823d8203b6a889a13"
integrity sha512-66yUGI8SGOpNvOcrQybRIhl2M03PJ+OrDPm78i7tvVln86MHTKhM3ERbALK26F7tXl0RkjX4sZpucCpiKs3MnA==
dependencies:
"@vue/compiler-dom" "3.0.11"
"@vue/shared" "3.0.11"
"@vue/devtools-api@^6.0.0-beta.10":
version "6.0.0-beta.11"
resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.0.0-beta.11.tgz#4fb4161ee41ba75f3f5198d4bfd80e4ffb7f2462"
integrity sha512-vpw61AkW9U8c2upjJCljHq9eh1KkD4FJ7DYbRzIETpj9WAw2VESudJZosAk4M+7npBo1Zu1jNQY03HUMVO/czQ==
"@vue/reactivity@3.0.11":
version "3.0.11"
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.11.tgz#07b588349fd05626b17f3500cbef7d4bdb4dbd0b"
integrity sha512-SKM3YKxtXHBPMf7yufXeBhCZ4XZDKP9/iXeQSC8bBO3ivBuzAi4aZi0bNoeE2IF2iGfP/AHEt1OU4ARj4ao/Xw==
dependencies:
"@vue/shared" "3.0.11"
"@vue/runtime-core@3.0.11":
version "3.0.11"
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.11.tgz#c52dfc6acf3215493623552c1c2919080c562e44"
integrity sha512-87XPNwHfz9JkmOlayBeCCfMh9PT2NBnv795DSbi//C/RaAnc/bGZgECjmkD7oXJ526BZbgk9QZBPdFT8KMxkAg==
dependencies:
"@vue/reactivity" "3.0.11"
"@vue/shared" "3.0.11"