-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
1061 lines (1061 loc) · 50.6 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": "coctails",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"dependencies": {
"@angular/forms": "^15.1.4",
"@angular/material": "^15.1.4",
"@angular/platform-browser": "^15.1.4",
"@auth0/angular-jwt": "^5.1.2",
"bootstrap": "^5.2.3",
"jquery": "^3.6.3",
"popper.js": "^1.16.1"
},
"devDependencies": {
"@types/jquery": "^3.5.16"
}
},
"node_modules/@angular/animations": {
"version": "15.1.4",
"resolved": "https://registry.npmjs.org/@angular/animations/-/animations-15.1.4.tgz",
"integrity": "sha512-aNLBjEsxykkG+cVA86IMLQaqVym7TSe3yAVM+KrOX4l76V7rDnByR/Fh29mj5tOfx/V08gm4HgIQ7VMqZAhCWw==",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/core": "15.1.4"
}
},
"node_modules/@angular/cdk": {
"version": "15.1.4",
"resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-15.1.4.tgz",
"integrity": "sha512-uCYrquUYakm+ym3l/0GG2HtyEtzJlr3eO3T8Oezvl4HcNB0jlcN80ut5SwQC0KcgiWDuP1BVv8PGinD2vearJg==",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"optionalDependencies": {
"parse5": "^7.1.2"
},
"peerDependencies": {
"@angular/common": "^15.0.0 || ^16.0.0",
"@angular/core": "^15.0.0 || ^16.0.0",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/common": {
"version": "15.1.4",
"resolved": "https://registry.npmjs.org/@angular/common/-/common-15.1.4.tgz",
"integrity": "sha512-E2klptW9CbXDAYZEL988RQ0XWQPf8obr6p+/+j2zy8kn14VJgsjn/27S9M8sX76nfXOaA6vQSbofZycTU7IiFQ==",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/core": "15.1.4",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/core": {
"version": "15.1.4",
"resolved": "https://registry.npmjs.org/@angular/core/-/core-15.1.4.tgz",
"integrity": "sha512-eWXtL4pe/pG4klehsm1URpgF4gnUjFpCXzHJ0Shp5HwLszoflZMbzdoRTSyOG5iMxDhsk0wwnHTfG+j4NTJN3A==",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
},
"peerDependencies": {
"rxjs": "^6.5.3 || ^7.4.0",
"zone.js": "~0.11.4 || ~0.12.0"
}
},
"node_modules/@angular/forms": {
"version": "15.1.4",
"resolved": "https://registry.npmjs.org/@angular/forms/-/forms-15.1.4.tgz",
"integrity": "sha512-gUBenRZS4gTevA3AJdpCVIuMeWU++OTqj6Rd8bv+x42W/RoOSVVcb3bInVECJFedAhx6P2/TWFGV1sVGwW+3sg==",
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/common": "15.1.4",
"@angular/core": "15.1.4",
"@angular/platform-browser": "15.1.4",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/material": {
"version": "15.1.4",
"resolved": "https://registry.npmjs.org/@angular/material/-/material-15.1.4.tgz",
"integrity": "sha512-mepKRVzO3v4BxGkzkwO1PZjWTdLDbqkydmmiEYkzPOUk9I3tElzjYlybB0xuY6A5CIdXU9Mdc+AaUZWng2yN/g==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/auto-init": "15.0.0-canary.684e33d25.0",
"@material/banner": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/button": "15.0.0-canary.684e33d25.0",
"@material/card": "15.0.0-canary.684e33d25.0",
"@material/checkbox": "15.0.0-canary.684e33d25.0",
"@material/chips": "15.0.0-canary.684e33d25.0",
"@material/circular-progress": "15.0.0-canary.684e33d25.0",
"@material/data-table": "15.0.0-canary.684e33d25.0",
"@material/density": "15.0.0-canary.684e33d25.0",
"@material/dialog": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/drawer": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/fab": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/floating-label": "15.0.0-canary.684e33d25.0",
"@material/form-field": "15.0.0-canary.684e33d25.0",
"@material/icon-button": "15.0.0-canary.684e33d25.0",
"@material/image-list": "15.0.0-canary.684e33d25.0",
"@material/layout-grid": "15.0.0-canary.684e33d25.0",
"@material/line-ripple": "15.0.0-canary.684e33d25.0",
"@material/linear-progress": "15.0.0-canary.684e33d25.0",
"@material/list": "15.0.0-canary.684e33d25.0",
"@material/menu": "15.0.0-canary.684e33d25.0",
"@material/menu-surface": "15.0.0-canary.684e33d25.0",
"@material/notched-outline": "15.0.0-canary.684e33d25.0",
"@material/radio": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/segmented-button": "15.0.0-canary.684e33d25.0",
"@material/select": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/slider": "15.0.0-canary.684e33d25.0",
"@material/snackbar": "15.0.0-canary.684e33d25.0",
"@material/switch": "15.0.0-canary.684e33d25.0",
"@material/tab": "15.0.0-canary.684e33d25.0",
"@material/tab-bar": "15.0.0-canary.684e33d25.0",
"@material/tab-indicator": "15.0.0-canary.684e33d25.0",
"@material/tab-scroller": "15.0.0-canary.684e33d25.0",
"@material/textfield": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tooltip": "15.0.0-canary.684e33d25.0",
"@material/top-app-bar": "15.0.0-canary.684e33d25.0",
"@material/touch-target": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/animations": "^15.0.0 || ^16.0.0",
"@angular/cdk": "15.1.4",
"@angular/common": "^15.0.0 || ^16.0.0",
"@angular/core": "^15.0.0 || ^16.0.0",
"@angular/forms": "^15.0.0 || ^16.0.0",
"@angular/platform-browser": "^15.0.0 || ^16.0.0",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/platform-browser": {
"version": "15.1.4",
"resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-15.1.4.tgz",
"integrity": "sha512-PrRNVbnPY38eh0zVDoNlx2EDHe4AzQ4bhJv3Wsrm+IFgi0e4yet8FQuL6sj1JBjLztKuZsndG2M/fyRWIpYkMQ==",
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/animations": "15.1.4",
"@angular/common": "15.1.4",
"@angular/core": "15.1.4"
},
"peerDependenciesMeta": {
"@angular/animations": {
"optional": true
}
}
},
"node_modules/@auth0/angular-jwt": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/@auth0/angular-jwt/-/angular-jwt-5.1.2.tgz",
"integrity": "sha512-8ulz24cPpEkZb9/AdAaWfYIkomQDbZqvB9LproF/48Klnr30EJx09AYF9sbKTN4qLSgIZSlCb/Y7XQJZ51vSzA==",
"dependencies": {
"tslib": "^2.0.0"
},
"peerDependencies": {
"@angular/common": ">=12.0.0"
}
},
"node_modules/@material/animation": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/animation/-/animation-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-5osi1z4JQIXcklPALbH/zTfOm2pDzHt9Fxm7ZyURy250xIZj6QjULRzPTnzOhC2ropfix9ra2Cfggbf0dcRbEQ==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/auto-init": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/auto-init/-/auto-init-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-OigQTmrVzkcGvxNjOaIe5oItTFPgrO9xLewvharDI6m6yvO1z7OBnkcW+sFN6ggLNYNxd0O1u9v64vMsmeDABQ==",
"dependencies": {
"@material/base": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/banner": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/banner/-/banner-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-PqtGp3KWzdu58rWv/DIvSfe38m5YKOBbAAbBinSvgadBb/da+IE1t5F7YPNKE1T5lJsQBGVUYx6QBIeXm+aI/A==",
"dependencies": {
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/button": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/base": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/base/-/base-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-oOaqb/SfjWwTKsdJUZmeh/Qrs41nIJI0N+zELsxnvbGjSIN1ZMAKYZFPMahqvC68OJ6+5CvJM8PoTNs5l+B8IQ==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/button": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/button/-/button-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-Nkekk4edeX+ObVOa7UlwavaHdmckPV5wU4SAJf3iA3R61cmz+KsgAgpzfcwv5WfNhIlc2nLu8QYEecpHdo9d/w==",
"dependencies": {
"@material/density": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/focus-ring": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"@material/touch-target": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/card": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/card/-/card-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-xhyB7XX5KkEiCEqwSPkl58ZGYL6xFdnY62zimyBXJRG/Eaa0Swj3kW20hVCpt4f7c9Zmp8Se27rg8vnKmhvO3g==",
"dependencies": {
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/checkbox": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/checkbox/-/checkbox-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-NFpM3TS924PmVsk2KQLNU95OYCf8ZwYgzeqfnAexU0bEfjUJXINBun2Go0AaeOUMjuvWUe+byjrXgv8SFYbMUA==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/density": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/focus-ring": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/touch-target": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/chips": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/chips/-/chips-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-z4ajQ4NnsAQ/Si9tZ4xmxzjj2Qb+vW++4QjCjjjwAGIZbCe0xglAnMh2t66XLJUxt7RoKZuZVEO7ZqcFZpvJFQ==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/checkbox": "15.0.0-canary.684e33d25.0",
"@material/density": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/focus-ring": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"@material/touch-target": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"safevalues": "^0.3.4",
"tslib": "^2.1.0"
}
},
"node_modules/@material/circular-progress": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/circular-progress/-/circular-progress-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-G6qD0nGNtEUwWnAMJuA9INYFpZoKtx7KFjBaPF4Ol2YLHtmShALNAYyn54TMAK8AZ2IpW08PXjGS7Ye88vrdEQ==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/progress-indicator": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/data-table": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/data-table/-/data-table-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-+wDw1DDDFfAsKAMzs84f/5GCjux39zjNfW8tL4wFbkWNwewmQrG9zaQMJhBpVOtLCrM8Gj6SOgOANqgqoCjvGg==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/checkbox": "15.0.0-canary.684e33d25.0",
"@material/density": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/icon-button": "15.0.0-canary.684e33d25.0",
"@material/linear-progress": "15.0.0-canary.684e33d25.0",
"@material/list": "15.0.0-canary.684e33d25.0",
"@material/menu": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/select": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"@material/touch-target": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/density": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/density/-/density-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-661yEVRMGrlq6S6WuSbPRO+ZwpdUOg2glCc7y96doM6itSLOa3UEAldjOLfsYZVB74GnKCiuDp//QmfoRyYTfA==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/dialog": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/dialog/-/dialog-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-szn0dHnfeQTSOC6SSRSGAzX6Tnx+4NnSMUwNkXm+3bwjds8ZVK26+DXwLrP5f3ID5F1K5sFsRf2INo5/TNTHyQ==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/button": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/icon-button": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"@material/touch-target": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/dom": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/dom/-/dom-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-7pEJLYov+tGgfuD8mZxoVU6rWtPI8ppjTAhz+F27Hz9FG0JETMWTKpDPBXLnKvX7vhIxL83GvZ9geNHCe8Hfog==",
"dependencies": {
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/drawer": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/drawer/-/drawer-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-/KMckLf1PYU/H3PXnS4e0aFl03qG3JlSv4LGgX6juJufcONqGTl/m63EMO/L/eUy6H1CRrXmVDjik/jzHLyDhg==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/list": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/elevation": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/elevation/-/elevation-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-WDF8SsRtq3rXUbVVbd9K4DUijIPH0bUFSOreVYxudpuxAfTlDS5+aeS1EK9UIBFYLuba4u5wVT2tDv6e1RTfrQ==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/fab": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/fab/-/fab-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-KCu87rWOKEAe9vZcAm6K8XazYSWPNjMG+OhrbPjHW6bCO7as1YCgtmkBkhff7csY/rFmcVpIy884xtUfLmSudQ==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/focus-ring": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"@material/touch-target": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/feature-targeting": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-HyH1erNTSjS63sigNSUMaCd0nJhTNdDFeC+myrxwtDaQm+uYJ8troCNtQM3g6mx0XATNtX5aTOoPmrM6yVVi1A==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/floating-label": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/floating-label/-/floating-label-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-f7TPp6bKpGvV3sYYiZHSGlrixXKkXXITW3Esp7KB9jRq42c0H82novmdwvY0eTef4ootmA2JEysr78KQfHBUPg==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/focus-ring": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/focus-ring/-/focus-ring-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-ikw2RVUfgzXChpWIzPH1VzRvTjYb5ZKj4H+CZf7jqPUXMstFOZg90Bp7ARLZHqYiyNMuUq3zUTHozS6iHorSqg==",
"dependencies": {
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0"
}
},
"node_modules/@material/form-field": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/form-field/-/form-field-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-vpF9N/uq5no/7+8GAbEH0868FhOuBgxAWRr1Sfb+jthKfBr8OS/wPU/AHzZHdHdAm7PQynbeOXfDsX2dI//PDA==",
"dependencies": {
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/icon-button": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/icon-button/-/icon-button-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-wMI+XGzmIN/o2ePBKg2hLyx7H4pXCRAyyIKMQS1FMp1UKa2tYmiHVX/V8skhKwCqxg3i6Ls/LxMjfPxTR18WvQ==",
"dependencies": {
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/density": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/focus-ring": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/touch-target": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/image-list": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/image-list/-/image-list-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-Ol+uaHYBe5R/cgzlfh5ONnMVX0wO6fV74JMUcQCQlxP6lXau/edARo4tkRc7A7UJUkU3VRv0EpEjLoCRNUPGaA==",
"dependencies": {
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/layout-grid": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/layout-grid/-/layout-grid-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-ALXE1mqFNb/RB2lVRQ3/r1Aufw2mFZnOjRE+boYDVepmAG/xWyPCyaGoavELJF5l4GAb0tXi8wA/8HeGbLOpuA==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/line-ripple": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/line-ripple/-/line-ripple-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-7hRx8C/e9i0P6pgQpNOMfTwSS2r1fwEvBL72QDVGLtLuoKKwsjjgP6Z0Jat/GeHJe87u9LQvGBoD4upt+of/HA==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/linear-progress": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/linear-progress/-/linear-progress-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-iJclt7mKmcMk6pqD7ocXKfCWZhqBoODp7N593jYlxVpTJuEz2wiVAjZUDn/YGj/Uz3CRH+2YFfOiLr9pwWjhDg==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/progress-indicator": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/list": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/list/-/list-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-rQ+FCSdzmwTcT00IYE0uRV3CS4oGSccKFl9hkcF+aHFW61L7ORh/SCGUDPrEfQFrFkMn5f8qroVJjpUAMXBz4g==",
"dependencies": {
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/density": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/menu": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/menu/-/menu-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-r7wzDLSGSI9629/mfpvsMzkVxpmV75kcD3IrW0Pcu6/Bv/1xi0EvjcUXzNJJoQlwN4Zj35Ymz/PCjZkIDIz68Q==",
"dependencies": {
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/list": "15.0.0-canary.684e33d25.0",
"@material/menu-surface": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/menu-surface": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/menu-surface/-/menu-surface-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-RVO5GAYcfWPaKwxsF/NhUAmrYXQCQBKvRQW0TIlbmAJz6lcFeTs6YZqF3u1C7qrL3ZQGz+sur/7ywj6QU0oMow==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/notched-outline": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/notched-outline/-/notched-outline-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-9YHcBkvJLPVYzkHcWoTpBZAFrEd+j1hjhGxLhh0LuNrZe8VroUkZD1TTnUAPHRG3os6EqEWWaKb0RN+aPIF2yQ==",
"dependencies": {
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/floating-label": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/progress-indicator": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/progress-indicator/-/progress-indicator-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-c0icji4faeNWUoqGENGC7Hav0Puxh0RwXIDVizffaUxKIGbajpIp5+4Zop73fK/xFLGMB/npg7TbP+aCGjQ3fw==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@material/radio": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/radio/-/radio-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-U3Eh8sNUA8trDla1Bq8Bo02foxYvtoewaKeF8A8tAju81XZ4jRiftfOsOWZDZEHCVbbCB2QwvutvFlnay5n+Aw==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/density": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/focus-ring": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/touch-target": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/ripple": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/ripple/-/ripple-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-RyePu7SjIm/OuyyEieZ/gxiPYkNZOZHeid72WRcN9ofdlljj2pifcdPvcfZA+v/DMS33xo5GjG2L/Qj6ClWrKw==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/rtl": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/rtl/-/rtl-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-NqdJl8Ayupp1Th+vCNCpVQHbUFOuF7TCte9LD1norTIBUF/QizIxWby2W5uUEiPbnh5j9PmE1CJtfLwKun3pcw==",
"dependencies": {
"@material/theme": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/segmented-button": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/segmented-button/-/segmented-button-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-bEGgg8vgXNLyukyV8HRjFMuQ6t6nm5LQ4Pgm22um61Yc8qyi0BOqV41OR4SVdUrUqZxh1aVD+p+4NN03+LfQXw==",
"dependencies": {
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/touch-target": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/select": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/select/-/select-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-kf178/2TeEinTv0mgmSBcmmExQ2h7a7dtR1E3WuqQgisJ/R6+zVLMkC2CnfIyzxYX2vkuUTG0ue3Reh/6XiqSg==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/density": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/floating-label": "15.0.0-canary.684e33d25.0",
"@material/line-ripple": "15.0.0-canary.684e33d25.0",
"@material/list": "15.0.0-canary.684e33d25.0",
"@material/menu": "15.0.0-canary.684e33d25.0",
"@material/menu-surface": "15.0.0-canary.684e33d25.0",
"@material/notched-outline": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/shape": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/shape/-/shape-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-aEelpaTFmpnCji3TUGP9bVCS/bRVjUmLTHBPZtuu1gOrUVVtJ6kYOg73dZNJF+XOoNL2yOX/LRcKwsop29tptA==",
"dependencies": {
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/slider": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/slider/-/slider-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-WVyK+2pSNSZmj07M2K/a3TADoQ9FBCndfNC/vE7/wGIg4dddJJK5KvQ+yruf9R2cSzTL/S1sZ5WpyyeM8E9HTw==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/snackbar": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/snackbar/-/snackbar-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-itO+DCkOannZzR1/cCHcqAm7ifhuFvXmDItNoA8qLEcAyJDJJRkhpwj3XQ01yuo9gBFcSctp7Txt7e+Hncm/Jg==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/button": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/icon-button": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/switch": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/switch/-/switch-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-Jxi0gl92yvvZZsAPxvVHzXx2ga+T/djMow98jvEczmpUorWnAhgiCr9CsSSRoosahWyRB8NLZOxUQrACxvffjw==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/density": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/focus-ring": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"safevalues": "^0.3.4",
"tslib": "^2.1.0"
}
},
"node_modules/@material/tab": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/tab/-/tab-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-WQL3wj9syHNcfe8KbgGGUcA34M8C/xZ+n0Fkkh8Kk6puVwaU+xqUNihsxPY6YzKpmh4PZ4oJaBdiN8zvFT1zqQ==",
"dependencies": {
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/focus-ring": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/tab-indicator": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/tab-bar": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/tab-bar/-/tab-bar-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-SW/cMaDsIGGkM1ag3A7GJRlmr8eXmObWsvitQJzh6Azr5zzZtSI+GQygkMesAEE1gbpqOVN8d40rh3H7VVIAcA==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/density": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/tab": "15.0.0-canary.684e33d25.0",
"@material/tab-indicator": "15.0.0-canary.684e33d25.0",
"@material/tab-scroller": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/tab-indicator": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/tab-indicator/-/tab-indicator-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-kKICqSPqOlaf0lzaFFCmuOqPXJC+cK48Qmsc+m5o6fJhkmuZRCYpIwB2JeP+uZSOq/bTH+SrPtCtnVlgWg6ksA==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/tab-scroller": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/tab-scroller/-/tab-scroller-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-H6EU/TSiK/M2DyyORX5GEtXD9rKYxTMHC2VxsNWARPMFJGzgeW2ugYkFv+rKI1/c0bs0CJ4e+qFnOlBsQXZvyQ==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/tab": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/textfield": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/textfield/-/textfield-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-OvgpDXjvpyJTtAWskO69IDybFvDNzr9w2PN/Fk7yFm+uNVupaWz1Ew8lZ4gGslaTNSVmh2XcsvmzxcLINSiiNg==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/density": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/floating-label": "15.0.0-canary.684e33d25.0",
"@material/line-ripple": "15.0.0-canary.684e33d25.0",
"@material/notched-outline": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/theme": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/theme/-/theme-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-AZxaXXAvRKzAi20RlMxzt2U5UmkCWyv7DMWEBXsxtG5Tk54mi1HsbVUp3fxDPTlmL7Pq8p1/DESg/o7TgRCVlw==",
"dependencies": {
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/tokens": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-wVwbQOTCXDPKYPdHQHLr026y36MMFelID1CmbfRk6mSol4O8yE9U0fXcShfRDW8Qo5E3X31w9c2A6T3neJY7wQ==",
"dependencies": {
"@material/elevation": "15.0.0-canary.684e33d25.0"
}
},
"node_modules/@material/tooltip": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/tooltip/-/tooltip-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-dtm26QjxyQdinc8btgz6yys07b7bUW4FZgNF2EBPeGrICrPg7jf+JEvDziz5g8VMaTBQLOQRSCGy0MKuRlOjLw==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/button": "15.0.0-canary.684e33d25.0",
"@material/dom": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/tokens": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"safevalues": "^0.3.4",
"tslib": "^2.1.0"
}
},
"node_modules/@material/top-app-bar": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/top-app-bar/-/top-app-bar-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-1M+oupUxflfW7u81P1XlxoLZB8bLzwtpKofIfDNRbEsiKhlLTERJR3Yak3BGE9xakNMysAaBHlkb5MrN5bNPFw==",
"dependencies": {
"@material/animation": "15.0.0-canary.684e33d25.0",
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/elevation": "15.0.0-canary.684e33d25.0",
"@material/ripple": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/shape": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"@material/typography": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/touch-target": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/touch-target/-/touch-target-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-zdE69Slg8+T7sTn1OwqZ6H7WBYac9mxJ/JlJqfTqthzIjZRcCxBSYymQJcDHjsrPnUojOtr9U4Tpm5YZ96TEkQ==",
"dependencies": {
"@material/base": "15.0.0-canary.684e33d25.0",
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/rtl": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@material/typography": {
"version": "15.0.0-canary.684e33d25.0",
"resolved": "https://registry.npmjs.org/@material/typography/-/typography-15.0.0-canary.684e33d25.0.tgz",
"integrity": "sha512-aVnvgMwcfNa/K4wujzpKDIxjGl2hbkEL+m+OKDSQqWYjKcP9QrbzCXJruJBqxrBoPRHLbqo47k5f9uT8raSgjw==",
"dependencies": {
"@material/feature-targeting": "15.0.0-canary.684e33d25.0",
"@material/theme": "15.0.0-canary.684e33d25.0",
"tslib": "^2.1.0"
}
},
"node_modules/@popperjs/core": {
"version": "2.11.6",
"resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz",
"integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==",
"peer": true,
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/popperjs"
}
},
"node_modules/@types/jquery": {
"version": "3.5.16",
"resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.16.tgz",
"integrity": "sha512-bsI7y4ZgeMkmpG9OM710RRzDFp+w4P1RGiIt30C1mSBT+ExCleeh4HObwgArnDFELmRrOpXgSYN9VF1hj+f1lw==",
"dev": true,
"dependencies": {
"@types/sizzle": "*"
}
},
"node_modules/@types/sizzle": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz",
"integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==",
"dev": true
},
"node_modules/bootstrap": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.2.3.tgz",
"integrity": "sha512-cEKPM+fwb3cT8NzQZYEu4HilJ3anCrWqh3CHAok1p9jXqMPsPTBhU25fBckEJHJ/p+tTxTFTsFQGM+gaHpi3QQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/twbs"
},
{
"type": "opencollective",
"url": "https://opencollective.com/bootstrap"
}
],
"peerDependencies": {
"@popperjs/core": "^2.11.6"
}
},
"node_modules/entities": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz",
"integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==",
"optional": true,
"peer": true,
"engines": {
"node": ">=0.12"
},
"funding": {