-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
2253 lines (2253 loc) · 93.8 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": "train-booking-system_mean",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "train-booking-system_mean",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"@angular/material": "^16.0.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongodb": "^5.5.0",
"mongoose": "^7.2.1",
"nodemon": "^2.0.22",
"path": "^0.12.7"
}
},
"node_modules/@angular/animations": {
"version": "16.0.3",
"resolved": "https://registry.npmjs.org/@angular/animations/-/animations-16.0.3.tgz",
"integrity": "sha512-YKy3ECR3+Os1viw3FhBJ+pUqPTACGB1sxeZ2LYCX8LLynpetQ/yQQWQUYDGXEZQJrXlnnDS8QDlebEIvk1hCcQ==",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^16.14.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/core": "16.0.3"
}
},
"node_modules/@angular/cdk": {
"version": "16.0.2",
"resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-16.0.2.tgz",
"integrity": "sha512-wspHIYEnYPDBcDldm3tKJU3FJW/M6fB0N+ja+79Amo3+yQBpkr57mfjRYaLGaPZeHXsRah8y+P7YGj6I8NN7Pw==",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"optionalDependencies": {
"parse5": "^7.1.2"
},
"peerDependencies": {
"@angular/common": "^16.0.0 || ^17.0.0",
"@angular/core": "^16.0.0 || ^17.0.0",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/common": {
"version": "16.0.3",
"resolved": "https://registry.npmjs.org/@angular/common/-/common-16.0.3.tgz",
"integrity": "sha512-pN1Mz2xwPs9+W3i+wBletdPMJC+exP9dCdy+iSG5pwpvii1jF3CbstHAPE/pmsoUlQ9nN+vrFowDAXVV7FQpWw==",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^16.14.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/core": "16.0.3",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/core": {
"version": "16.0.3",
"resolved": "https://registry.npmjs.org/@angular/core/-/core-16.0.3.tgz",
"integrity": "sha512-vaUOLgDk03aKDHX6jtv4NEDB6gEBCXvgTpvsTmDUXcCa9WxyXs4Ak22q9ZyNln8/7UG5Uo1gTn90FlOAh9jHww==",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^16.14.0 || >=18.10.0"
},
"peerDependencies": {
"rxjs": "^6.5.3 || ^7.4.0",
"zone.js": "~0.13.0"
}
},
"node_modules/@angular/forms": {
"version": "16.0.3",
"resolved": "https://registry.npmjs.org/@angular/forms/-/forms-16.0.3.tgz",
"integrity": "sha512-bCDD17HO9yzKNo4dFJm1doHDlkeBJaIrZKOEtwU6GJ4UcfhBV/xS+upYzZggj4SRIcKbu+ivWhoNGSJS3Lgo/w==",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^16.14.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/common": "16.0.3",
"@angular/core": "16.0.3",
"@angular/platform-browser": "16.0.3",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/material": {
"version": "16.0.2",
"resolved": "https://registry.npmjs.org/@angular/material/-/material-16.0.2.tgz",
"integrity": "sha512-0bOWXfKsSDiRP39Nv4mJr85G6dChJTI3sNx5g9aWb88il0AiJP0CjgVqMkjoPlzNEcxewWJ8EEPGHf2maszNFQ==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/auto-init": "15.0.0-canary.576d3d2c8.0",
"@material/banner": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/button": "15.0.0-canary.576d3d2c8.0",
"@material/card": "15.0.0-canary.576d3d2c8.0",
"@material/checkbox": "15.0.0-canary.576d3d2c8.0",
"@material/chips": "15.0.0-canary.576d3d2c8.0",
"@material/circular-progress": "15.0.0-canary.576d3d2c8.0",
"@material/data-table": "15.0.0-canary.576d3d2c8.0",
"@material/density": "15.0.0-canary.576d3d2c8.0",
"@material/dialog": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/drawer": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/fab": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/floating-label": "15.0.0-canary.576d3d2c8.0",
"@material/form-field": "15.0.0-canary.576d3d2c8.0",
"@material/icon-button": "15.0.0-canary.576d3d2c8.0",
"@material/image-list": "15.0.0-canary.576d3d2c8.0",
"@material/layout-grid": "15.0.0-canary.576d3d2c8.0",
"@material/line-ripple": "15.0.0-canary.576d3d2c8.0",
"@material/linear-progress": "15.0.0-canary.576d3d2c8.0",
"@material/list": "15.0.0-canary.576d3d2c8.0",
"@material/menu": "15.0.0-canary.576d3d2c8.0",
"@material/menu-surface": "15.0.0-canary.576d3d2c8.0",
"@material/notched-outline": "15.0.0-canary.576d3d2c8.0",
"@material/radio": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/segmented-button": "15.0.0-canary.576d3d2c8.0",
"@material/select": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/slider": "15.0.0-canary.576d3d2c8.0",
"@material/snackbar": "15.0.0-canary.576d3d2c8.0",
"@material/switch": "15.0.0-canary.576d3d2c8.0",
"@material/tab": "15.0.0-canary.576d3d2c8.0",
"@material/tab-bar": "15.0.0-canary.576d3d2c8.0",
"@material/tab-indicator": "15.0.0-canary.576d3d2c8.0",
"@material/tab-scroller": "15.0.0-canary.576d3d2c8.0",
"@material/textfield": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tooltip": "15.0.0-canary.576d3d2c8.0",
"@material/top-app-bar": "15.0.0-canary.576d3d2c8.0",
"@material/touch-target": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/animations": "^16.0.0 || ^17.0.0",
"@angular/cdk": "16.0.2",
"@angular/common": "^16.0.0 || ^17.0.0",
"@angular/core": "^16.0.0 || ^17.0.0",
"@angular/forms": "^16.0.0 || ^17.0.0",
"@angular/platform-browser": "^16.0.0 || ^17.0.0",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/platform-browser": {
"version": "16.0.3",
"resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-16.0.3.tgz",
"integrity": "sha512-3YzRixYdmFhmTauHhnwLAHq1SOmHCk2VfUYsSfGyZM71DGMGXvUYVPZ00IE1+Hoh61ulv9do4+FDcGhB+r2Huw==",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^16.14.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/animations": "16.0.3",
"@angular/common": "16.0.3",
"@angular/core": "16.0.3"
},
"peerDependenciesMeta": {
"@angular/animations": {
"optional": true
}
}
},
"node_modules/@material/animation": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/animation/-/animation-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-kOba/FmgxMNWL7Zgyma7Ar0vsF+M/lu089qOeAviD/ccohYatmsr0LGaqFZL+M1AjnW9wXOoBtJXPF2kFii5AQ==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/auto-init": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/auto-init/-/auto-init-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-MWH+0YdPr8a4FsJEkQC6nJ57WmPIqm3kS1WbROkSoxb/eZGECJCA6ajpWfgQtfjjKBrV217mRpen80Uf6fY9Kg==",
"dependencies": {
"@material/base": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/banner": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/banner/-/banner-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-/tV7PDwmWMLQbyLjN2kuJvkAK2HyVCrmnd9ftcBoR02HGQ6uHGPiJYsP8Xw/ueBdpix2gM9ujtD6Vqby/Y6vMg==",
"dependencies": {
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/button": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/base": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/base/-/base-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-fObaR0dtmP8JrtZ0jzO28iP+TCn2RJzyOC1OHC7qyYOmGYw7MaHF9lArCdD++J93mhppTK3Fe+nOaBT6QkQW+g==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/button": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/button/-/button-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-NrL9dJ364BJhf31+pffZw9iqOEM9pYxYshSH0xO9mjuo/F/VmPsFrUoK4PE+rx2/JltIhGJ+zaooZowEYIHlKg==",
"dependencies": {
"@material/density": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/focus-ring": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"@material/touch-target": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/card": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/card/-/card-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-lBwgu7wHjvS2LhiqsUBm+m6MEYMt74bON8GV6XCHXJYJK1Bvr7W5ib9D4KrOrEg9U2ksXK7i76b87c3yCuIRkQ==",
"dependencies": {
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/checkbox": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/checkbox/-/checkbox-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-eb2Mq0ME6l0o358/WSeRLzaSqj8YEDb1LLQZqivZQhcNV9NnqUtMEMx1UEEaH7RelbsSraqQAQQ8/zoKmDBZKg==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/density": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/focus-ring": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/touch-target": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/chips": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/chips/-/chips-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-IvKmOpk8FHPzJXD19uHkPjmquQP6oerNh1QL2FdVm5+6dLt43CMVlCe8qzGorQofw3xWeY304aGL9eGEwuz51A==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/checkbox": "15.0.0-canary.576d3d2c8.0",
"@material/density": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/focus-ring": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"@material/touch-target": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"safevalues": "^0.3.4",
"tslib": "^2.1.0"
}
},
"node_modules/@material/circular-progress": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/circular-progress/-/circular-progress-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-J4yrTYftgDiw1buLPSPQKp6FRhgQ0RU6WEHX1OIy6RL0AySSsOB6eDAcVzOg5enWsXBtSsEwjNLXTb5UmHtilA==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/progress-indicator": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/data-table": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/data-table/-/data-table-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-E3K8exa8ihrUFz61gUvJ9zwqcLwHY4k5vcHiqKhf9Sa4Lqgy7FQmd+EMckr0X62aaj+RqmJdahiJoWDFBx7LVw==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/checkbox": "15.0.0-canary.576d3d2c8.0",
"@material/density": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/icon-button": "15.0.0-canary.576d3d2c8.0",
"@material/linear-progress": "15.0.0-canary.576d3d2c8.0",
"@material/list": "15.0.0-canary.576d3d2c8.0",
"@material/menu": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/select": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"@material/touch-target": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/density": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/density/-/density-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-seBxT1LkU4jhzyeP1yT1coWXs0QGhwmwfeZOCx2YG2RmHD8a+ucf0y4BjWGDQSc4B9nudeIOYkXEUMfSdjRoQA==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/dialog": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/dialog/-/dialog-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-12rNdRft1iKpZQLCVlYK3f314wFU1KlF6Ejbx8wT6dz4mrNhgYYoxjOOpL0D/Ys1iMR2EUBJOHdv7ghU/ApcGA==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/button": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/icon-button": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"@material/touch-target": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/dom": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/dom/-/dom-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-oo8vmADL6Z26iCWG7PEvUYEeVWXufETGHYVbWIEPGCr7uzB6j4Apb+JDKn0h3yMP33t7VJibQTBkA5q5Y4Vtxw==",
"dependencies": {
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/drawer": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/drawer/-/drawer-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-+y+DaXemENGgouy0qzP8XhcO+n57V40lyzHd5lZ7MaTSy7VcgKUjIoAX/aTGKjbh/jFk+fuQZeCwC8D0oAZz8g==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/list": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/elevation": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/elevation/-/elevation-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-9jMCY7Wwbo2FBzXKM2InxgsGvflOGPm/ZeUAZ5OtIV3WSvj/nI08FxPcZFwUJvWvyB3OgwSVAWPfT0gsD1sUHQ==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/fab": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/fab/-/fab-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-5t8QDhDbdRelLiQbPHWh/M36Q4LNPMRqBnoA3V3r2H7+zOVhA5msqi8GLp2zx+cW6oAQjrs6QF9fMLOkXX8qgw==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/focus-ring": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"@material/touch-target": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/feature-targeting": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-i93vd9JZj5mDCzSrIAJjnuwySo/zkf3S+TmCcOb5vp/8R6Tkj5djTZt067PIUX+HN17Ukit7NSpSVTbJjAsaBQ==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/floating-label": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/floating-label/-/floating-label-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-5NX6px0ndc51rRg/OcmehTpXrSuwmdsblpkHLxzYeeDKygBzGz+5ixfRSa8QWoHifEZdcTaUNsz5G7vQPngHdA==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/focus-ring": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/focus-ring/-/focus-ring-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-dV0UnsKyYhF3SUcRhWdcyYtO/2GkOLcANq+iujDywfMuqQfo48ui8fA1x9C8Jl7LJPVTNvRjiI4kEsWJya273g==",
"dependencies": {
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0"
}
},
"node_modules/@material/form-field": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/form-field/-/form-field-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-4c00pPlVwx8lvfYO28Ato+WcA9HmKmU5NmmPrYuifMxGpz8BwHPL3369wsE40qkgZt8bvtwVE2lDcij6kJ434g==",
"dependencies": {
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/icon-button": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/icon-button/-/icon-button-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-Wer60ASSo7nj2xXcJRUTFbm6uiKVvtpuoAn9a7SvtNYDLPGBTCmDDxI0VEXjDfTMSPhpxIo92i40gl5Hk0fsKQ==",
"dependencies": {
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/density": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/focus-ring": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/touch-target": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/image-list": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/image-list/-/image-list-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-veGiP8W43sHWhny8enHNXLaPkvubjgh5NzJOryfTyHb+Ixyfr6/FYCtNGtRgTkNiy7nRye33mMaNqQ/oRyN/LA==",
"dependencies": {
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/layout-grid": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/layout-grid/-/layout-grid-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-Vxh2Lyv0XvkSFuzio6PmooZtDVFyhFXAhTXWhvxYBgTPyrYB8lsUcWRwHJZEkKuz3Sti7WKtF5rqv+p3KGy01A==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/line-ripple": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/line-ripple/-/line-ripple-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-NnHk935Ae39eH4Ac7aR0GKIUd3/7WkV5VRW/SXdwTaEie0hLK9+AGXkhJH0U6pmmWmM7moJNRFXZMSv5oavkBw==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/linear-progress": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/linear-progress/-/linear-progress-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-yuvhPo1n8J7C+VtzP2RjqNfyiApx2k2W5g7zVAWmfDJbvqtPqciO8rqKhrQM67ZfpfseA1HgG1kVqigbxi4ERg==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/progress-indicator": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/list": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/list/-/list-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-MPEC640uS3i6fvRSWaUetErAeRsqyqlM6l59/pf9EY1+L/gV6tFheb07/nj41l0sI6BbUr+qR1j98Ybj/8pKQg==",
"dependencies": {
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/density": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/menu": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/menu/-/menu-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-l/PQjH78oLnMBBzRavPAarsqT567dDnglaLMhlZHHcgpzWdGQreJ/kIPoaMr/VPaIAAwjQfivNUaIb17+3mLEw==",
"dependencies": {
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/list": "15.0.0-canary.576d3d2c8.0",
"@material/menu-surface": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/menu-surface": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/menu-surface/-/menu-surface-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-BLTOgfVR96uRE5vvXy+ZO7A/NgzMjT7YhxRbODYv+vSi46Gmdyx09GQcOKMUZspat9vNRqh/AYSXpJ6j5E9U2w==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/notched-outline": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/notched-outline/-/notched-outline-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-+l3AHq8JuNBz4J0d5jsWAueghwnzAASMq7BIqrZUMEfyCSG3MJ2Pzzj5AMLyqFvb6IMMSqbNozgkVwtD/Qh8SQ==",
"dependencies": {
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/floating-label": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/progress-indicator": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/progress-indicator/-/progress-indicator-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-Id+ie1pRQRbaglj8P/LAB7wIuQf5zlwuMw6MhefjkgXRXg5GkJQIeE4EQOzVhDQUkvLOBapKP8gRMs7t9TwHPg==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/radio": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/radio/-/radio-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-/BpEL6YWKM+7c4dWqOcSM8wbfz1K3g3r+q+r1ReBKlvUh+Uhz++PW6qjMxPTPNt7a+yzH9/LkXMRZan9/+pjxw==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/density": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/focus-ring": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/touch-target": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/ripple": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/ripple/-/ripple-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-YewgiAu6fmHLiJrML2sWeNXYZB4ooCY8m+mMl2eSsAq0YDpIFL8gsrgPAAKete5J9ASbF6id1jsm0pyoM6AO1g==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/rtl": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/rtl/-/rtl-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-LCVuYdauCQ7+SD1h+rrqRazP9ownLDsq0XSgbRZXFPAVq8ED8FDvlK8+Ustu4/slLNBq3F78M6SlzOWyCnErRA==",
"dependencies": {
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/segmented-button": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/segmented-button/-/segmented-button-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-XGluudwIFds1XU+W+C+5pxTP5z8t4wn4UC24RCbMG2AhmeF3cP+iou1eL9gRT/OQ5YYG+E+tB7UeTQUXpxIVcA==",
"dependencies": {
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/touch-target": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/select": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/select/-/select-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-4HBxKVgsEdTRUZo7ciH2rGUMnE2dmKzGo2XGK1yQadbS26Dn3uIJV92xvn+fv5eoHWvYcHrcq1/7pH+JhuAogQ==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/density": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/floating-label": "15.0.0-canary.576d3d2c8.0",
"@material/line-ripple": "15.0.0-canary.576d3d2c8.0",
"@material/list": "15.0.0-canary.576d3d2c8.0",
"@material/menu": "15.0.0-canary.576d3d2c8.0",
"@material/menu-surface": "15.0.0-canary.576d3d2c8.0",
"@material/notched-outline": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/shape": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/shape/-/shape-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-AYcQjpeWq/lJoBtUdjSeOf9nVCqGrsNTzuBqwKcQ+bPHkhHsD8h5YK6yD//DR2fTT0TFidvOY3NsYqcP460B0Q==",
"dependencies": {
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/slider": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/slider/-/slider-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-80GPBNJXWO3tCK95P49H+Ru/+Q6E6NNwGgZHx6L5ADFKJt5k6jZLwjZ1DlX5kqD10WpV3qVggSxbP9/TgGdNAQ==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/snackbar": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/snackbar/-/snackbar-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-aOPR54EI1BrlompgcWcYtCgGHvd+mtvHrgcbvHbB1BxqIVG7X6N2gJ/8I4yzDNjXbxlu0hPVSsVRwhuvlF6NcA==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/button": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/icon-button": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/switch": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/switch/-/switch-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-WSOdXZJotvxhAsWxhvaBHXC5sGRSWxkyAX1lCg39y5NisopiKSNlPWgZcl++yyFKVhpoYzYVV7yGynRWFj/VWQ==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/density": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/focus-ring": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"safevalues": "^0.3.4",
"tslib": "^2.1.0"
}
},
"node_modules/@material/tab": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/tab/-/tab-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-3crRmZpIG6qRByPr784Cy2Yi714+YLAXD3q1PGcrb2dqNl/ckFBS3JnwkfvDYTTOBz+sOkVcDIbadAUivnqWZQ==",
"dependencies": {
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/focus-ring": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/tab-indicator": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/tab-bar": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/tab-bar/-/tab-bar-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-CuBJe4jt3mOO7zUy8tpUZizeac76AP2Scw/R8GZCArj+tW/Sxtx+J0VAMMzpLrkxChbflLKdKj7/vehvt1dRpA==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/density": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/tab": "15.0.0-canary.576d3d2c8.0",
"@material/tab-indicator": "15.0.0-canary.576d3d2c8.0",
"@material/tab-scroller": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/tab-indicator": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/tab-indicator/-/tab-indicator-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-zPGeBimy+mG0Eo2wc83aKS8cdiyQM7RZW0BFl570BGejzjTRWoW3hoQTqKj/3Ha7/jcN+kMHMFpsNr8toWGC4g==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/tab-scroller": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/tab-scroller/-/tab-scroller-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-8ambIVmtdrKgSirGxVYJEDaXOQE81m3lJrPp8hBjuQeo8m6+769mb1cXf7uvUazsuHTQPl7BAxrd+BF5b+v32w==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/tab": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/textfield": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/textfield/-/textfield-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-Pyd+xyKXrAbsvE5Prh2A0QvzMLvK5toBGsVGkwU/Y3qzu0lZQpd4uxgCGFau0/Ni8Jl58CNxmPTFnT69MLgM9Q==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/density": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/floating-label": "15.0.0-canary.576d3d2c8.0",
"@material/line-ripple": "15.0.0-canary.576d3d2c8.0",
"@material/notched-outline": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/theme": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/theme/-/theme-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-wD3N8+2uqyRc9K1q3Q5YvTKgbecSFQuJGQeQFsHKNsshuqm0lQgserWs5ECHJ4NKihAceR4y+9K6tFlutnd2UQ==",
"dependencies": {
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/tokens": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-Gg864O9D+hEPm+el/rl9gGo9JoMdNV1imqBr3pQR1NbH8Whn2qSUl7JufVOz1qe4WwU5wzV2bqXfEVI5/R37Ug==",
"dependencies": {
"@material/elevation": "15.0.0-canary.576d3d2c8.0"
}
},
"node_modules/@material/tooltip": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/tooltip/-/tooltip-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-jLqEOTSaGY2iezoNnbvgmbHh+U+4KXaL1WvCwWrrzuaq+d204pEFfuhnIrFksChgn/vTKLbBJ08j41Dxv483mg==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/button": "15.0.0-canary.576d3d2c8.0",
"@material/dom": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/tokens": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"safevalues": "^0.3.4",
"tslib": "^2.1.0"
}
},
"node_modules/@material/top-app-bar": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/top-app-bar/-/top-app-bar-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-3GSVTPiK0dpexfIxImg7He8WWzTJ94Su+WuKhCHMBUsnc1jeMWD22fNBXo0HrEBK6+4U+4PxJXgrGE9xI3uzug==",
"dependencies": {
"@material/animation": "15.0.0-canary.576d3d2c8.0",
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/elevation": "15.0.0-canary.576d3d2c8.0",
"@material/ripple": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/shape": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"@material/typography": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/touch-target": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/touch-target/-/touch-target-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-wCJSv1yPnD2CQN9r24MBWTFL3+xJOsFo9W/3jPpipvTGi16Nq5ce0Fr6gw7Y/hVUfkqSdKudly9bTNTJnmhglA==",
"dependencies": {
"@material/base": "15.0.0-canary.576d3d2c8.0",
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/rtl": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/typography": {
"version": "15.0.0-canary.576d3d2c8.0",
"resolved": "https://registry.npmjs.org/@material/typography/-/typography-15.0.0-canary.576d3d2c8.0.tgz",
"integrity": "sha512-hScFlyRZ8Qv/jL5rihhs1SR/wt7yGIq8KLYObi45LhMHHEl3s+otGcg8JmWrD+xZufVz/pemRlNJ9wlM+yO4rQ==",
"dependencies": {
"@material/feature-targeting": "15.0.0-canary.576d3d2c8.0",
"@material/theme": "15.0.0-canary.576d3d2c8.0",
"tslib": "^2.1.0"
}
},
"node_modules/@types/node": {
"version": "20.2.5",
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.2.5.tgz",
"integrity": "sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ=="
},
"node_modules/@types/webidl-conversions": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
"integrity": "sha512-xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog=="
},
"node_modules/@types/whatwg-url": {
"version": "8.2.2",
"resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz",
"integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==",
"dependencies": {
"@types/node": "*",
"@types/webidl-conversions": "*"
}
},
"node_modules/abbrev": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
},
"node_modules/accepts": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
"dependencies": {
"mime-types": "~2.1.34",
"negotiator": "0.6.3"
},
"engines": {
"node": ">= 0.6"
}
},
"node_modules/anymatch": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
"dependencies": {
"normalize-path": "^3.0.0",
"picomatch": "^2.0.4"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/array-flatten": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
},
"node_modules/balanced-match": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},