-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
3848 lines (3848 loc) · 155 KB
/
package-lock.json
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
{
"name": "Github-Topics-Search-API",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"dependencies": {
"@angular/cli": "^15.0.3",
"@angular/material": "^17.0.4",
"bootstrap": "^3.4.1"
}
},
"node_modules/@angular-devkit/architect": {
"version": "0.1500.3",
"resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1500.3.tgz",
"integrity": "sha512-LNVCyxMz5T9Fib7H3zT2sCE9fhvCUgJoCdT9nN/onDi6LoJx2uGdkVq3IgIsrxAR86pk2ZAR/1d5HdwohxbM8g==",
"dependencies": {
"@angular-devkit/core": "15.0.3",
"rxjs": "6.6.7"
},
"engines": {
"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
"yarn": ">= 1.13.0"
}
},
"node_modules/@angular-devkit/architect/node_modules/rxjs": {
"version": "6.6.7",
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz",
"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
"dependencies": {
"tslib": "^1.9.0"
},
"engines": {
"npm": ">=2.0.0"
}
},
"node_modules/@angular-devkit/architect/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@angular-devkit/core": {
"version": "15.0.3",
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-15.0.3.tgz",
"integrity": "sha512-sJsC1uZnOs66uTEGS6E/FlMInERvChIC1oUwfgP4NMYFy4KLkzTDYZ+JAtK5/k418N+j0aS+DndfrRT3n7WNUw==",
"dependencies": {
"ajv": "8.11.0",
"ajv-formats": "2.1.1",
"jsonc-parser": "3.2.0",
"rxjs": "6.6.7",
"source-map": "0.7.4"
},
"engines": {
"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
"yarn": ">= 1.13.0"
},
"peerDependencies": {
"chokidar": "^3.5.2"
},
"peerDependenciesMeta": {
"chokidar": {
"optional": true
}
}
},
"node_modules/@angular-devkit/core/node_modules/rxjs": {
"version": "6.6.7",
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz",
"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
"dependencies": {
"tslib": "^1.9.0"
},
"engines": {
"npm": ">=2.0.0"
}
},
"node_modules/@angular-devkit/core/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@angular-devkit/schematics": {
"version": "15.0.3",
"resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-15.0.3.tgz",
"integrity": "sha512-vIS8XaH3pyWql1G4Nux7EplQsph3FiMXd6U/YV9YK0g1U0k0Rh8w+9zM4yrRbrNf2BKrx1VObS0n6ibGrm1TwA==",
"dependencies": {
"@angular-devkit/core": "15.0.3",
"jsonc-parser": "3.2.0",
"magic-string": "0.26.7",
"ora": "5.4.1",
"rxjs": "6.6.7"
},
"engines": {
"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
"yarn": ">= 1.13.0"
}
},
"node_modules/@angular-devkit/schematics/node_modules/rxjs": {
"version": "6.6.7",
"resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz",
"integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==",
"dependencies": {
"tslib": "^1.9.0"
},
"engines": {
"npm": ">=2.0.0"
}
},
"node_modules/@angular-devkit/schematics/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@angular/animations": {
"version": "17.0.8",
"resolved": "https://registry.npmjs.org/@angular/animations/-/animations-17.0.8.tgz",
"integrity": "sha512-iKJ2s4ZqVoGS9tSRBuuwYEWTV+Rw6b4zDY1rqiXvbZrpNRxfzYr6s+aYsLQQEindZ4hzxgp9j60FJ8aE/g4w6A==",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^18.13.0 || >=20.9.0"
},
"peerDependencies": {
"@angular/core": "17.0.8"
}
},
"node_modules/@angular/cdk": {
"version": "17.0.4",
"resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-17.0.4.tgz",
"integrity": "sha512-mh/EuIR0NPfpNqAXBSZWuJeBMXUvUDYdKhiFWZet5NLO1bDgFe1MGLBjtW4us95k4BZsMLbCKNxJgc+4JqwUvg==",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"optionalDependencies": {
"parse5": "^7.1.2"
},
"peerDependencies": {
"@angular/common": "^17.0.0 || ^18.0.0",
"@angular/core": "^17.0.0 || ^18.0.0",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/cli": {
"version": "15.0.3",
"resolved": "https://registry.npmjs.org/@angular/cli/-/cli-15.0.3.tgz",
"integrity": "sha512-xLmsSkGeTxkHYHmsThT3mnethXt3VN71e+lOGs+GobJb3R2Lh8FrU07bsr5at/ixaSC/Ejvvt9dhuwZonysDEQ==",
"dependencies": {
"@angular-devkit/architect": "0.1500.3",
"@angular-devkit/core": "15.0.3",
"@angular-devkit/schematics": "15.0.3",
"@schematics/angular": "15.0.3",
"@yarnpkg/lockfile": "1.1.0",
"ansi-colors": "4.1.3",
"ini": "3.0.1",
"inquirer": "8.2.4",
"jsonc-parser": "3.2.0",
"npm-package-arg": "9.1.2",
"npm-pick-manifest": "8.0.1",
"open": "8.4.0",
"ora": "5.4.1",
"pacote": "15.0.6",
"resolve": "1.22.1",
"semver": "7.3.8",
"symbol-observable": "4.0.0",
"yargs": "17.6.2"
},
"bin": {
"ng": "bin/ng.js"
},
"engines": {
"node": "^14.20.0 || ^16.13.0 || >=18.10.0",
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
"yarn": ">= 1.13.0"
}
},
"node_modules/@angular/common": {
"version": "17.0.8",
"resolved": "https://registry.npmjs.org/@angular/common/-/common-17.0.8.tgz",
"integrity": "sha512-fFfwtdg7H+OkqnvV/ENu8F8KGfgIiH16DDbQqYY5KQyyQB+SMsoVW29F1fGx6Y30s7ZlsLOy6cHhgrw74itkSw==",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^18.13.0 || >=20.9.0"
},
"peerDependencies": {
"@angular/core": "17.0.8",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/core": {
"version": "17.0.8",
"resolved": "https://registry.npmjs.org/@angular/core/-/core-17.0.8.tgz",
"integrity": "sha512-tzYsK24LdkNuKNJK6efF4XOqspvF/qOe9j/n1Y61a6mNvFwsJFGbcmdZMby4hI/YRm6oIDoIIFjSep8ycp6Pbw==",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^18.13.0 || >=20.9.0"
},
"peerDependencies": {
"rxjs": "^6.5.3 || ^7.4.0",
"zone.js": "~0.14.0"
}
},
"node_modules/@angular/forms": {
"version": "17.0.8",
"resolved": "https://registry.npmjs.org/@angular/forms/-/forms-17.0.8.tgz",
"integrity": "sha512-WZBHbMQjaSovAzOMhKqZN+m7eUPGfOzh9rKFKvj6UQLIJ9qSpEpqlvL0omU1z/47s3XXeLiBzomMiRfQISJvvw==",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^18.13.0 || >=20.9.0"
},
"peerDependencies": {
"@angular/common": "17.0.8",
"@angular/core": "17.0.8",
"@angular/platform-browser": "17.0.8",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/material": {
"version": "17.0.4",
"resolved": "https://registry.npmjs.org/@angular/material/-/material-17.0.4.tgz",
"integrity": "sha512-IKkys4EavE1TMHApPMbFLvJU4pP8S8XNfY2eS7/kFwW7eyTcz0zV/IKeBbxkpej19MaouozU+KWeRJtxHg6x8g==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/auto-init": "15.0.0-canary.a246a4439.0",
"@material/banner": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/button": "15.0.0-canary.a246a4439.0",
"@material/card": "15.0.0-canary.a246a4439.0",
"@material/checkbox": "15.0.0-canary.a246a4439.0",
"@material/chips": "15.0.0-canary.a246a4439.0",
"@material/circular-progress": "15.0.0-canary.a246a4439.0",
"@material/data-table": "15.0.0-canary.a246a4439.0",
"@material/density": "15.0.0-canary.a246a4439.0",
"@material/dialog": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/drawer": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/fab": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/floating-label": "15.0.0-canary.a246a4439.0",
"@material/form-field": "15.0.0-canary.a246a4439.0",
"@material/icon-button": "15.0.0-canary.a246a4439.0",
"@material/image-list": "15.0.0-canary.a246a4439.0",
"@material/layout-grid": "15.0.0-canary.a246a4439.0",
"@material/line-ripple": "15.0.0-canary.a246a4439.0",
"@material/linear-progress": "15.0.0-canary.a246a4439.0",
"@material/list": "15.0.0-canary.a246a4439.0",
"@material/menu": "15.0.0-canary.a246a4439.0",
"@material/menu-surface": "15.0.0-canary.a246a4439.0",
"@material/notched-outline": "15.0.0-canary.a246a4439.0",
"@material/radio": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/segmented-button": "15.0.0-canary.a246a4439.0",
"@material/select": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/slider": "15.0.0-canary.a246a4439.0",
"@material/snackbar": "15.0.0-canary.a246a4439.0",
"@material/switch": "15.0.0-canary.a246a4439.0",
"@material/tab": "15.0.0-canary.a246a4439.0",
"@material/tab-bar": "15.0.0-canary.a246a4439.0",
"@material/tab-indicator": "15.0.0-canary.a246a4439.0",
"@material/tab-scroller": "15.0.0-canary.a246a4439.0",
"@material/textfield": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/tooltip": "15.0.0-canary.a246a4439.0",
"@material/top-app-bar": "15.0.0-canary.a246a4439.0",
"@material/touch-target": "15.0.0-canary.a246a4439.0",
"@material/typography": "15.0.0-canary.a246a4439.0",
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/animations": "^17.0.0 || ^18.0.0",
"@angular/cdk": "17.0.4",
"@angular/common": "^17.0.0 || ^18.0.0",
"@angular/core": "^17.0.0 || ^18.0.0",
"@angular/forms": "^17.0.0 || ^18.0.0",
"@angular/platform-browser": "^17.0.0 || ^18.0.0",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/platform-browser": {
"version": "17.0.8",
"resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-17.0.8.tgz",
"integrity": "sha512-XaI+p2AxQaIHzR761lhPUf4OcOp46WDW0IfbvOzaezHE+8r81joZyVSDQPgXSa/aRfI58YhcfUavuGqyU3PphA==",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^18.13.0 || >=20.9.0"
},
"peerDependencies": {
"@angular/animations": "17.0.8",
"@angular/common": "17.0.8",
"@angular/core": "17.0.8"
},
"peerDependenciesMeta": {
"@angular/animations": {
"optional": true
}
}
},
"node_modules/@gar/promisify": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz",
"integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw=="
},
"node_modules/@isaacs/cliui": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
"dependencies": {
"string-width": "^5.1.2",
"string-width-cjs": "npm:string-width@^4.2.0",
"strip-ansi": "^7.0.1",
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
"wrap-ansi": "^8.1.0",
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
},
"engines": {
"node": ">=12"
}
},
"node_modules/@isaacs/cliui/node_modules/ansi-regex": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
"integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
}
},
"node_modules/@isaacs/cliui/node_modules/ansi-styles": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/@isaacs/cliui/node_modules/emoji-regex": {
"version": "9.2.2",
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
},
"node_modules/@isaacs/cliui/node_modules/string-width": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
"dependencies": {
"eastasianwidth": "^0.2.0",
"emoji-regex": "^9.2.2",
"strip-ansi": "^7.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@isaacs/cliui/node_modules/strip-ansi": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"dependencies": {
"ansi-regex": "^6.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
"node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
"dependencies": {
"ansi-styles": "^6.1.0",
"string-width": "^5.0.1",
"strip-ansi": "^7.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
"node_modules/@material/animation": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/animation/-/animation-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-0eV06UGYeuFwC/4t+yjg3LCRGRLq72ybBtJYzcBDpP4ASTjie0WmpAOFJYXRq2U5X/yxLviDMhpRemoSUjgZ0Q==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/auto-init": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/auto-init/-/auto-init-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-0QfmjT5elQ10hCxToVgq/WaC3301tVH1sJaO3O2yocVzr7s6iWm8/zch16V5hcHzQHbtcT3Rf4y1ZzmdNys2Iw==",
"dependencies": {
"@material/base": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/banner": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/banner/-/banner-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-PBLgH7JEbEpTkLy33oyWXUhIFmSsdOrR6Gn6qIgQRo1qrnk5RSBGW2gEq4Z6793vjxM107gKudDb23E4Fcu4vg==",
"dependencies": {
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/button": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/tokens": "15.0.0-canary.a246a4439.0",
"@material/typography": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/base": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/base/-/base-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-/ob3v3IFU8q2gGdVNWw5kNPjW2mRTeBIz1YdhGWUmRxKn2Kl8bdLOvrAmZtQMmPn/4cGXvinxpec/zVBWQKDkA==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/button": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/button/-/button-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-rGpVRde0Aqhv2t9QvT8Zl3HvG89BeUNPOpgfpaLBZ4SGGAO4rIrckl/eCENibKgmmdCKcYZlG9gc5abQVPfUvw==",
"dependencies": {
"@material/density": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/focus-ring": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/tokens": "15.0.0-canary.a246a4439.0",
"@material/touch-target": "15.0.0-canary.a246a4439.0",
"@material/typography": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/card": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/card/-/card-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-+rYUnBPgv5QVF6BeUs3toIRdSwFVohGmjk2ptTXMZkKxqAJt7Nr9Znbm3Ym2hD8GUHJeh3pyGFvEs6rG6JMYAw==",
"dependencies": {
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/tokens": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/checkbox": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/checkbox/-/checkbox-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-sQwHzm1TSxHUoPrqplWTk/BhyzdDhzcwlbucwJK9W0o9WXMDk+d9PvcCxpP/9sAnVqZk42BfE89Y0T1DHglZ9A==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/density": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/focus-ring": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/touch-target": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/chips": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/chips/-/chips-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-TiV9WJ5taEHPGWPhXbxJvUJhLzThg+VpK7aAlvL4RurtmJ7pURuEdRS4Z6o0OEqi3wKQ4z/+K44kZUn/+9HALg==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/checkbox": "15.0.0-canary.a246a4439.0",
"@material/density": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/focus-ring": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/tokens": "15.0.0-canary.a246a4439.0",
"@material/touch-target": "15.0.0-canary.a246a4439.0",
"@material/typography": "15.0.0-canary.a246a4439.0",
"safevalues": "^0.3.4",
"tslib": "^2.1.0"
}
},
"node_modules/@material/circular-progress": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/circular-progress/-/circular-progress-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-+QTfyExPWzgm2tqMInd32qQOftsC1b8MUhAhZSfuecYBfqAc7KZkQEKa2nm4y8EHKMFWe8/DcxLV6IxMBLgHwA==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/progress-indicator": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/data-table": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/data-table/-/data-table-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-89qVOjR7gqby6fsmh7tKj29SjQ2sGLXu2IzCeX3Vni4mz+xxo5dv11jxYNADvdgJDfhyDJFPh1FlqAH7O09nFA==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/checkbox": "15.0.0-canary.a246a4439.0",
"@material/density": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/icon-button": "15.0.0-canary.a246a4439.0",
"@material/linear-progress": "15.0.0-canary.a246a4439.0",
"@material/list": "15.0.0-canary.a246a4439.0",
"@material/menu": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/select": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/tokens": "15.0.0-canary.a246a4439.0",
"@material/touch-target": "15.0.0-canary.a246a4439.0",
"@material/typography": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/density": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/density/-/density-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-h8BJVCWkPR97WeWCN6/atVbSOP8J4+ZbbssidcwsnX7b3+3IaWdtBxGii25dsILX8pUVwwqxVis24y211b+8rg==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/dialog": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/dialog/-/dialog-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-4lyxd+5ccOEMUGKzZcssaYyzkCsYTpYCSQSANR0toQPLv3voDwKMfA709uZI6+nL7Re6Xdf7jx8qe+QpTTjVcw==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/button": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/icon-button": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/tokens": "15.0.0-canary.a246a4439.0",
"@material/touch-target": "15.0.0-canary.a246a4439.0",
"@material/typography": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/dom": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/dom/-/dom-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-AftSOGQoQg/Ys2kOVjZzvqWmsnhg3Kam/2UC4Gj0DMMCu36J4MAoD+3PpnOd1aG3wiJKtUXR2vPIwE8I/PM9yg==",
"dependencies": {
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/drawer": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/drawer/-/drawer-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-/JUmbzRBaikdbZ250yA9ZTPqp2W5nGvvuHYoNVAAmtOmxuwGvvNNpWiVZy2lIYeYcf1hA7hJ5mEQxs0aSD7iWQ==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/list": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/typography": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/elevation": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/elevation/-/elevation-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-lwPIOb8fHyOljIWYcVLPT73dPIEOKat/CXu6gqYIVMQgZQIksQNUA7z1O3l7apkRSuYUOYSXqrgU7AnWP4KcJg==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/fab": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/fab/-/fab-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-XUex3FNqxPD1i/4jITucB/RWTNkkdv52mbNmwrvbuThZlhuhyH9GzOQYTDop/b2783TPcv++xr8UUbuh8GWYzA==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/focus-ring": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/tokens": "15.0.0-canary.a246a4439.0",
"@material/touch-target": "15.0.0-canary.a246a4439.0",
"@material/typography": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/feature-targeting": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-/SU9X5y8CRp6RS9qnjnM/N5qfsJ8bYILpR841eZmN6DLqMupaM9Yy7Mx8+v/QvpBLLhk+jmu79nFzwkwW54d6Q==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/floating-label": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/floating-label/-/floating-label-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-832qZ/qxKx0KUatoeVY3Q2NmboVgiWBG0/1VsbJyodHrgQWfnBOHgLE+M322o6uM3OhvO+kWm4iYbvwhmLZGsw==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/typography": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/focus-ring": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/focus-ring/-/focus-ring-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-ar0BtACFS3K14k/enAg0ePeEA/f/RJY4Ji4L/00Dw/B3XVpNRbqLH49jkcbtcQjdTS0FEyk2sWSNMZl6wVi0/A==",
"dependencies": {
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0"
}
},
"node_modules/@material/form-field": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/form-field/-/form-field-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-Q/+ErgtAUFUPPUmWA1m5IP5voiN8XjPRwyoAlFxSTa/4t+EA5B18Z8Bsn9b6I0AC8RHke06H7UWrKz8XUDIFpw==",
"dependencies": {
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/typography": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/icon-button": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/icon-button/-/icon-button-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-Igyo94rkIlqC91BR1Tv+WLTz1ZWcZZjl1xU7Vsx8mbWA1PnaRDUTNVV5LFi4e0ORp6GSblFTImpHngEy4agMEg==",
"dependencies": {
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/density": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/focus-ring": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/touch-target": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/image-list": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/image-list/-/image-list-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-Rcj3q7Tp7Nwbe5ht6ptTc3zqK8TSDJHaPDBf+kzi0kkh6MAB4qoHPgn+HnA+zIZ79CScU56bN7zjA6XYaZvsLw==",
"dependencies": {
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/typography": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/layout-grid": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/layout-grid/-/layout-grid-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-bkfxZuVzgtjEJgR3n8pvDQbe88ffULDJ5d2DF34IR8SOiRmQcj7UzqAt95XwIUcWlfisLCoIryP4U8XSpFb1EQ==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/line-ripple": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/line-ripple/-/line-ripple-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-20WmwRrejmtOdI37+959UqEVIjbMtAXlkDOkfCIA3OUhp+oZSjVkCqKxI16jxxVlnzJ353fy8xeSKzOHe4sExQ==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/linear-progress": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/linear-progress/-/linear-progress-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-IcCd4476pXHloTYadHDJ+2c2lntoVigeNnQEiD/ASQTKqKrJqkIdvvczFm9Ryu+V2+TKhp7vvQGFLUMaLPcmhw==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/progress-indicator": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/list": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/list/-/list-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-4H5dKIjCUGIPmKjfcegV0SBybD5NNdHp26OU6sovvWIvxSGQtDJr6z9I7i+0vF/HIS5ScbHD2+9/txtL80iqCA==",
"dependencies": {
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/density": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/tokens": "15.0.0-canary.a246a4439.0",
"@material/typography": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/menu": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/menu/-/menu-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-2HOHQAIdWQtXjSvEIrW3lnbcIwFf5XaQhFzCEZ04FcSGApc4iLwsmRFVW3PzWx+mVrUrEfO/K42DVULIX9J1Pg==",
"dependencies": {
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/list": "15.0.0-canary.a246a4439.0",
"@material/menu-surface": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/tokens": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/menu-surface": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/menu-surface/-/menu-surface-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-4h4wZ0Rs7qBg1Otldw8ljp+LCULNL42pqbqcTXhKAkJM7pHcSw4k7IfoThSRLU3+V8T3/+qiAXyeQix2OGHzwg==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/notched-outline": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/notched-outline/-/notched-outline-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-zmRZHJ+5cOWsBatRyK50wuht78olXySyKOJIIEmy8lxSMZefI1764u0mr8tS1KYF8vSAl5cUlwCC3/2Njz1FPg==",
"dependencies": {
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/floating-label": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/progress-indicator": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/progress-indicator/-/progress-indicator-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-92HM5niUnqG5Y3M/xkscBD+2lkaWPDcIRPo0RHPYcyldL+EhWRv/sdQpfdiXw/h3uvKSowKxBMCHm8krAyf+sQ==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/radio": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/radio/-/radio-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-on8EVztWXc/ajcaowFZ31ClGADYxQrhj4ulMne0NxdHHWQ44ttf5aXOVqtv5mxeOzrRACOkQyTUXBG07yTWCEQ==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/density": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/focus-ring": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/touch-target": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/ripple": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/ripple/-/ripple-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-Vl615/PIBpBD+IOI9Xypz0SV3RsmYJYSNx890Rih7irhUOaPsOUBmTYOWF5AsGBynqLcXoTNVhK92drYLKtJwQ==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/rtl": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/rtl/-/rtl-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-pgJFw8ZRpWGpwv7ZuBTJ+WdNmFBKoLVoMbbxKQWTHXVwhAqn3aoIq95o62T5QeEG/+sguNShdquG45CpAMmSRw==",
"dependencies": {
"@material/theme": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/segmented-button": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/segmented-button/-/segmented-button-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-oqGHs2C7C+yJW/xZf/wP8jBGLs6HcerhM3CsorLAEMH3MGuIlVC17WcisBewEWucsILYEWbySXy/7T4h6/psZA==",
"dependencies": {
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/touch-target": "15.0.0-canary.a246a4439.0",
"@material/typography": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/select": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/select/-/select-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-odoNLiVOgdwbEeePkjHtlr43pjskDwyO8hi4z3jcud1Rg1czk5zoJ2mUI0+olOJjBQ26PGocwrSLqf3qaThbIA==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/density": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/floating-label": "15.0.0-canary.a246a4439.0",
"@material/line-ripple": "15.0.0-canary.a246a4439.0",
"@material/list": "15.0.0-canary.a246a4439.0",
"@material/menu": "15.0.0-canary.a246a4439.0",
"@material/menu-surface": "15.0.0-canary.a246a4439.0",
"@material/notched-outline": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/tokens": "15.0.0-canary.a246a4439.0",
"@material/typography": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/shape": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/shape/-/shape-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-rcWPlCoHyP79ozeEKk73KWt9WTWdh6R68+n75l08TSTvnWZB5RRTmsI9BMkz55O9OJD/8H8ZsOxBe4x2QXUT7w==",
"dependencies": {
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/slider": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/slider/-/slider-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-is1BSBpxaXBBv+wSVpe9WGWmWl59yJEeDNubTES2UFD0er3BmA+PdKkL09vvytDnBcbKf77TbxaRiUSGVaKUQA==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/tokens": "15.0.0-canary.a246a4439.0",
"@material/typography": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/snackbar": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/snackbar/-/snackbar-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-2NAtC1qozR/uajszZnPy08Ej8HNnpgvCjNCBerDN4SLH2Q0/aWrVrUjqRCp2ayAvsX+szoroGbCboMhaWRzDuQ==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/button": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/icon-button": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/tokens": "15.0.0-canary.a246a4439.0",
"@material/typography": "15.0.0-canary.a246a4439.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/switch": {
"version": "15.0.0-canary.a246a4439.0",
"resolved": "https://registry.npmjs.org/@material/switch/-/switch-15.0.0-canary.a246a4439.0.tgz",
"integrity": "sha512-o0wcbYgm2yRs4een5uxT4RJnJ003DxXe33rk8vTBG2o7cdiSR3X7GJQxeIK3D9wPgWCAwBLhNYSzXrlTL5pkMw==",
"dependencies": {
"@material/animation": "15.0.0-canary.a246a4439.0",
"@material/base": "15.0.0-canary.a246a4439.0",
"@material/density": "15.0.0-canary.a246a4439.0",
"@material/dom": "15.0.0-canary.a246a4439.0",
"@material/elevation": "15.0.0-canary.a246a4439.0",
"@material/feature-targeting": "15.0.0-canary.a246a4439.0",
"@material/focus-ring": "15.0.0-canary.a246a4439.0",
"@material/ripple": "15.0.0-canary.a246a4439.0",
"@material/rtl": "15.0.0-canary.a246a4439.0",
"@material/shape": "15.0.0-canary.a246a4439.0",
"@material/theme": "15.0.0-canary.a246a4439.0",
"@material/tokens": "15.0.0-canary.a246a4439.0",