-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
4880 lines (4073 loc) · 201 KB
/
pnpm-lock.yaml
File metadata and controls
4880 lines (4073 loc) · 201 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
devDependencies:
'@biomejs/biome':
specifier: 1.9.4
version: 1.9.4
packages/idb-cache:
devDependencies:
'@rslib/core':
specifier: ^0.6.8
version: 0.6.8(typescript@5.8.3)
'@types/node':
specifier: ^22.15.3
version: 22.15.3
idb:
specifier: ^8.0.2
version: 8.0.2
typescript:
specifier: ^5.8.3
version: 5.8.3
vitest:
specifier: ^3.1.2
version: 3.1.2(@types/node@22.15.3)
publishDirectory: ../../
packages/idb-cache-app:
dependencies:
'@instructure/idb-cache':
specifier: workspace:*
version: link:../..
random-seed:
specifier: ^0.3.0
version: 0.3.0
react:
specifier: ^19.1.0
version: 19.1.0
react-dom:
specifier: ^19.1.0
version: 19.1.0(react@19.1.0)
devDependencies:
'@instructure/ui':
specifier: ^10.16.3
version: 10.16.3(@lezer/common@1.2.3)(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(sinon@15.2.0)
'@instructure/ui-buttons':
specifier: ^10.16.3
version: 10.16.3(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@instructure/ui-flex':
specifier: ^10.16.3
version: 10.16.3(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@instructure/ui-heading':
specifier: ^10.16.3
version: 10.16.3(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@instructure/ui-icons':
specifier: ^10.16.3
version: 10.16.3(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@instructure/ui-metric':
specifier: ^10.16.3
version: 10.16.3(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@instructure/ui-number-input':
specifier: ^10.16.3
version: 10.16.3(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@instructure/ui-radio-input':
specifier: ^10.16.3
version: 10.16.3(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@instructure/ui-responsive':
specifier: ^10.16.3
version: 10.16.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@instructure/ui-text':
specifier: ^10.16.3
version: 10.16.3(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@instructure/ui-text-input':
specifier: ^10.16.3
version: 10.16.3(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@instructure/ui-tooltip':
specifier: ^10.16.3
version: 10.16.3(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@instructure/ui-view':
specifier: ^10.16.3
version: 10.16.3(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@playwright/test':
specifier: ^1.52.0
version: 1.52.0
'@rsbuild/core':
specifier: ^1.3.15
version: 1.3.15
'@rsbuild/plugin-react':
specifier: ^1.3.0
version: 1.3.0(@rsbuild/core@1.3.15)
'@types/node':
specifier: ^22.15.3
version: 22.15.3
'@types/random-seed':
specifier: ^0.3.5
version: 0.3.5
'@types/react':
specifier: ^19.1.2
version: 19.1.2
'@types/react-dom':
specifier: ^18.3.7
version: 18.3.7(@types/react@19.1.2)
idb:
specifier: ^8.0.2
version: 8.0.2
playwright:
specifier: ^1.52.0
version: 1.52.0
typescript:
specifier: ^5.8.3
version: 5.8.3
uuid:
specifier: ^11.1.0
version: 11.1.0
packages:
'@ast-grep/napi-darwin-arm64@0.37.0':
resolution: {integrity: sha512-QAiIiaAbLvMEg/yBbyKn+p1gX2/FuaC0SMf7D7capm/oG4xGMzdeaQIcSosF4TCxxV+hIH4Bz9e4/u7w6Bnk3Q==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
'@ast-grep/napi-darwin-x64@0.37.0':
resolution: {integrity: sha512-zvcvdgekd4ySV3zUbUp8HF5nk5zqwiMXTuVzTUdl/w08O7JjM6XPOIVT+d2o/MqwM9rsXdzdergY5oY2RdhSPA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
'@ast-grep/napi-linux-arm64-gnu@0.37.0':
resolution: {integrity: sha512-L7Sj0lXy8X+BqSMgr1LB8cCoWk0rericdeu+dC8/c8zpsav5Oo2IQKY1PmiZ7H8IHoFBbURLf8iklY9wsD+cyA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@ast-grep/napi-linux-arm64-musl@0.37.0':
resolution: {integrity: sha512-LF9sAvYy6es/OdyJDO3RwkX3I82Vkfsng1sqUBcoWC1jVb1wX5YVzHtpQox9JrEhGl+bNp7FYxB4Qba9OdA5GA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@ast-grep/napi-linux-x64-gnu@0.37.0':
resolution: {integrity: sha512-TViz5/klqre6aSmJzswEIjApnGjJzstG/SE8VDWsrftMBMYt2PTu3MeluZVwzSqDao8doT/P+6U11dU05UOgxw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@ast-grep/napi-linux-x64-musl@0.37.0':
resolution: {integrity: sha512-/BcCH33S9E3ovOAEoxYngUNXgb+JLg991sdyiNP2bSoYd30a9RHrG7CYwW6fMgua3ijQ474eV6cq9yZO1bCpXg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@ast-grep/napi-win32-arm64-msvc@0.37.0':
resolution: {integrity: sha512-TjQA4cFoIEW2bgjLkaL9yqT4XWuuLa5MCNd0VCDhGRDMNQ9+rhwi9eLOWRaap3xzT7g+nlbcEHL3AkVCD2+b3A==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
'@ast-grep/napi-win32-ia32-msvc@0.37.0':
resolution: {integrity: sha512-uNmVka8fJCdYsyOlF9aZqQMLTatEYBynjChVTzUfFMDfmZ0bihs/YTqJVbkSm8TZM7CUX82apvn50z/dX5iWRA==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
'@ast-grep/napi-win32-x64-msvc@0.37.0':
resolution: {integrity: sha512-vCiFOT3hSCQuHHfZ933GAwnPzmL0G04JxQEsBRfqONywyT8bSdDc/ECpAfr3S9VcS4JZ9/F6tkePKW/Om2Dq2g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
'@ast-grep/napi@0.37.0':
resolution: {integrity: sha512-Hb4o6h1Pf6yRUAX07DR4JVY7dmQw+RVQMW5/m55GoiAT/VRoKCWBtIUPPOnqDVhbx1Cjfil9b6EDrgJsUAujEQ==}
engines: {node: '>= 10'}
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.26.2':
resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.25.9':
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.25.9':
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.25.9':
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.26.2':
resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/runtime@7.26.0':
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
'@babel/template@7.25.9':
resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.25.9':
resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
engines: {node: '>=6.9.0'}
'@babel/types@7.26.0':
resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
engines: {node: '>=6.9.0'}
'@biomejs/biome@1.9.4':
resolution: {integrity: sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog==}
engines: {node: '>=14.21.3'}
hasBin: true
'@biomejs/cli-darwin-arm64@1.9.4':
resolution: {integrity: sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [darwin]
'@biomejs/cli-darwin-x64@1.9.4':
resolution: {integrity: sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [darwin]
'@biomejs/cli-linux-arm64-musl@1.9.4':
resolution: {integrity: sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
'@biomejs/cli-linux-arm64@1.9.4':
resolution: {integrity: sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
'@biomejs/cli-linux-x64-musl@1.9.4':
resolution: {integrity: sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
'@biomejs/cli-linux-x64@1.9.4':
resolution: {integrity: sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
'@biomejs/cli-win32-arm64@1.9.4':
resolution: {integrity: sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [win32]
'@biomejs/cli-win32-x64@1.9.4':
resolution: {integrity: sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [win32]
'@codemirror/autocomplete@6.18.3':
resolution: {integrity: sha512-1dNIOmiM0z4BIBwxmxEfA1yoxh1MF/6KPBbh20a5vphGV0ictKlgQsbJs6D6SkR6iJpGbpwRsa6PFMNlg9T9pQ==}
peerDependencies:
'@codemirror/language': ^6.0.0
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
'@lezer/common': ^1.0.0
'@codemirror/commands@6.7.1':
resolution: {integrity: sha512-llTrboQYw5H4THfhN4U3qCnSZ1SOJ60ohhz+SzU0ADGtwlc533DtklQP0vSFaQuCPDn3BPpOd1GbbnUtwNjsrw==}
'@codemirror/lang-css@6.3.0':
resolution: {integrity: sha512-CyR4rUNG9OYcXDZwMPvJdtb6PHbBDKUc/6Na2BIwZ6dKab1JQqKa4di+RNRY9Myn7JB81vayKwJeQ7jEdmNVDA==}
'@codemirror/lang-html@6.4.9':
resolution: {integrity: sha512-aQv37pIMSlueybId/2PVSP6NPnmurFDVmZwzc7jszd2KAF8qd4VBbvNYPXWQq90WIARjsdVkPbw29pszmHws3Q==}
'@codemirror/lang-javascript@6.2.2':
resolution: {integrity: sha512-VGQfY+FCc285AhWuwjYxQyUQcYurWlxdKYT4bqwr3Twnd5wP5WSeu52t4tvvuWmljT4EmgEgZCqSieokhtY8hg==}
'@codemirror/lang-json@6.0.1':
resolution: {integrity: sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==}
'@codemirror/lang-markdown@6.3.1':
resolution: {integrity: sha512-y3sSPuQjBKZQbQwe3ZJKrSW6Silyl9PnrU/Mf0m2OQgIlPoSYTtOvEL7xs94SVMkb8f4x+SQFnzXPdX4Wk2lsg==}
'@codemirror/language@6.10.4':
resolution: {integrity: sha512-qjt7Wn/nxGuI278GYVlqE5V93Xn8ZQwzqZtgS0FaWr7K2yWgd5/FlBNqNi4jtUvBVvWJzAGfnggIlpyjTOaF4A==}
'@codemirror/legacy-modes@6.4.2':
resolution: {integrity: sha512-HsvWu08gOIIk303eZQCal4H4t65O/qp1V4ul4zVa3MHK5FJ0gz3qz3O55FIkm+aQUcshUOjBx38t2hPiJwW5/g==}
'@codemirror/lint@6.8.3':
resolution: {integrity: sha512-GSGfKxCo867P7EX1k2LoCrjuQFeqVgPGRRsSl4J4c0KMkD+k1y6WYvTQkzv0iZ8JhLJDujEvlnMchv4CZQLh3Q==}
'@codemirror/search@6.5.8':
resolution: {integrity: sha512-PoWtZvo7c1XFeZWmmyaOp2G0XVbOnm+fJzvghqGAktBW3cufwJUWvSCcNG0ppXiBEM05mZu6RhMtXPv2hpllig==}
'@codemirror/state@6.4.1':
resolution: {integrity: sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A==}
'@codemirror/view@6.35.0':
resolution: {integrity: sha512-I0tYy63q5XkaWsJ8QRv5h6ves7kvtrBWjBcnf/bzohFJQc5c14a1AQRdE8QpPF9eMp5Mq2FMm59TCj1gDfE7kw==}
'@emotion/babel-plugin@11.13.5':
resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==}
'@emotion/cache@11.13.5':
resolution: {integrity: sha512-Z3xbtJ+UcK76eWkagZ1onvn/wAVb1GOMuR15s30Fm2wrMgC7jzpnO2JZXr4eujTTqoQFUrZIw/rT0c6Zzjca1g==}
'@emotion/hash@0.9.2':
resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
'@emotion/is-prop-valid@1.3.1':
resolution: {integrity: sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==}
'@emotion/memoize@0.9.0':
resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}
'@emotion/react@11.13.5':
resolution: {integrity: sha512-6zeCUxUH+EPF1s+YF/2hPVODeV/7V07YU5x+2tfuRL8MdW6rv5vb2+CBEGTGwBdux0OIERcOS+RzxeK80k2DsQ==}
peerDependencies:
'@types/react': '*'
react: '>=16.8.0'
peerDependenciesMeta:
'@types/react':
optional: true
'@emotion/serialize@1.3.3':
resolution: {integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==}
'@emotion/sheet@1.4.0':
resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==}
'@emotion/unitless@0.10.0':
resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==}
'@emotion/use-insertion-effect-with-fallbacks@1.1.0':
resolution: {integrity: sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw==}
peerDependencies:
react: '>=16.8.0'
'@emotion/utils@1.4.2':
resolution: {integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==}
'@emotion/weak-memoize@0.4.0':
resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==}
'@esbuild/aix-ppc64@0.21.5':
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
'@esbuild/android-arm64@0.21.5':
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.21.5':
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.21.5':
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.21.5':
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.21.5':
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.21.5':
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.21.5':
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.21.5':
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.21.5':
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.21.5':
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.21.5':
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.21.5':
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.21.5':
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.21.5':
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.21.5':
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.21.5':
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
'@esbuild/netbsd-x64@0.21.5':
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-x64@0.21.5':
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
'@esbuild/sunos-x64@0.21.5':
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@0.21.5':
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.21.5':
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.21.5':
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
'@instructure/console@10.16.3':
resolution: {integrity: sha512-xxAG+dPHpUITiexmQaLk40JdxRxCaOtmnnICSEu3tFPsNYeSCnkZKPRaoxxtQ5/AssOH4B3OBVWDFx+9Q3mlcQ==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/debounce@10.16.3':
resolution: {integrity: sha512-YgPIwK7EgoQRiI1Lfig9X2hixkZlfBC7Zn2RW0Knuxa92kNgnASuY6aAORWzTz07vbQKSSf0QRvC09Xcih9Rwg==}
'@instructure/emotion@10.16.3':
resolution: {integrity: sha512-+yDqUrpbnMU/Jq7PRhe+Hz750U3cWXsyAg9z7kaqVtaQCbF7cSeeQmffb0fyVyNiZfpkyrcl6nuUwyKwsd1U6g==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/shared-types@10.16.3':
resolution: {integrity: sha512-vc0sm2JRnanjQ1iE+Fy3ZIKgMaT391+jIOkNtei0yOFMLV0k31FI6FAgNAVKcfL2S/k8h6Eikl0PVfmQBwbNeA==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/theme-registry@10.16.3':
resolution: {integrity: sha512-VS5dd/3kKVGtmbczEp9CJ5eZ9+UU1ZZoYJ0RmpuVsufLkYViS4B2NLkdTOry2w8whjyBoEnR8tqJC3twGkj+ew==}
'@instructure/ui-a11y-content@10.16.3':
resolution: {integrity: sha512-YGiaMiE5Kk+8qmiCdpJNzTNojz47fFm+iU9MsNzs7yS6XX0C+LyKGqtOrSdcTMmC0wrUUrn+W1tIiw+URGP1xg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-a11y-utils@10.16.3':
resolution: {integrity: sha512-FJKAwVKYaDrcIilav5s0qUAhXdrQDSyLpDBIKYyDl4K7v80sSPwxC6yP4hSZQY6kJ0ukhfKNo8CTaCBu9ratRA==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-alerts@10.16.3':
resolution: {integrity: sha512-TCTIopxHhymPJ7OyLiQayWLU//9YqUou5mTFwjI6TigCk+Jr4E5El/WZYvDVWb6xqyURrYymF2x/fnprc+AGNQ==}
peerDependencies:
react: '>=16.14 <=18'
react-dom: '>=16.14 <=18'
'@instructure/ui-avatar@10.16.3':
resolution: {integrity: sha512-FytJ4EVWtgoSwmr6N82ug66Vy9F4dfaQr+OhDXwlfeZNzX7jnyhc9YTxdH0uyZKVe62oCrdka//TS36PlN93fQ==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-axe-check@10.16.3':
resolution: {integrity: sha512-CByDxXrqjetjQv00v7VkwEb4K38tJ0qWx4m8to0QR9BTZspoXYZWcYPlxTvebtPDDm0PSPukldGJiZt/Ammb9w==}
'@instructure/ui-badge@10.16.3':
resolution: {integrity: sha512-YMG35cC9EH1/TeBjOLnXfKIwB7Az85wBgRrPAZlNvO4NesLJPetDj+1Mgw7+OJJxhshh4nVCYL/AbsLH7GuaIg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-billboard@10.16.3':
resolution: {integrity: sha512-S7E8VwvuVosmrPT+v74DutfMrTiq3XVd67V55xxSu5aQJMHAzRidHNQr7E8+MDuglUt0348CYqRLi947CXMwKw==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-breadcrumb@10.16.3':
resolution: {integrity: sha512-m5KDCfxoLTPb9G4PiQWtitGTe2n2eRHv4GqvQ5iSEGRxbWNxSka9+ddCyt/sZ+qCjqnj1P9jen1y1/uW/kPRFg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-buttons@10.16.3':
resolution: {integrity: sha512-SwsHxxWmJo7T6oTxEcw3fVaHcuRrJiqliyDKTD3wr+hili62UzZA1s5s1+E5XXg918omYHyYKhlPaPLQuA3zjQ==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-byline@10.16.3':
resolution: {integrity: sha512-SU+wUCeucZSryX6n6qjFBGa0FWYyhBmf6SNyMwHVEKBc4NjFBbwp6YNkNuXsmksXqn3kk684X0pIQeqRPKHFDA==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-calendar@10.16.3':
resolution: {integrity: sha512-wcwTYJW/1pFKPZ4rNyEEOxwg8vhbWJCLs546fMKQgWq0AFxm41OVYl3umxasu3t436ugk/r0GPQD5Skkp+2VxA==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-checkbox@10.16.3':
resolution: {integrity: sha512-W2bmicHylhQ1n3cTqWb2KIXJeSdfM6C7baLYVLQEg5t8fsKNh2M6CEMclKdyUJ+6cyxFgbyBqlPa8UKkwRNKlg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-code-editor@10.16.3':
resolution: {integrity: sha512-sp2BQUrTDIu9ZK5pgTKA5zgRQHGjQUdbGzMu804JFYLyYgabOiMqN/iF++5yZmHS8xq8ChvVTPVX3uTHw5Iy+g==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-color-picker@10.16.3':
resolution: {integrity: sha512-0gTnkfaUfathOqvaVsM0b2IhAfcDlP05BaMm1/a0rbt5/kY0Ki9Pd4bBwn0rK4yWetw+K4pFNShfmgn9+vys0w==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-color-utils@10.16.3':
resolution: {integrity: sha512-r8knI18uDzDZa8joiAu2WTDtx8P2EXtcL3IKPfHiGv/2QEL2dUa7zNUqZSg6QyLcjrBTUn81jeV2zvJmXsWqtA==}
'@instructure/ui-date-input@10.16.3':
resolution: {integrity: sha512-7gzIassqn/f92Nyz/gOM8MZ/uIxyKYiJsAk0M5OUQfxg7JqHDyD7sP7FYc+b7AYHeBQRFOjxs6sGtXuXEulp1g==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-date-time-input@10.16.3':
resolution: {integrity: sha512-/vBuTmNEcNYDte9rw+cDfI0B8TKC508f37S0zctSharA2pRNM6LnkvLXz+qxsY4p07XiYBEEOJjJrqVFIqm7pA==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-decorator@10.16.3':
resolution: {integrity: sha512-tgOhnwOu2GhiBj+Jwr49UfJEYFA+eDqpH1nEOK5l43/3Xzk3Wst8f8jOJqmbzUteBmxmqss6/HGS1mZLvpYySg==}
'@instructure/ui-dialog@10.16.3':
resolution: {integrity: sha512-vkNYZiJX/ImdLVvl9e/kjVB8VsN2jL0Byp/ULKPuauMCsyuNuOjXdRUb7/jzlHwqt5J6fhMKWPPFrLqiSYRjMw==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-dom-utils@10.16.3':
resolution: {integrity: sha512-ZPVMy0rtxWw098hPUg6znHN0+cjruHseoGoiOjicUH/JFRxIIxHTKy2gA5YDCU1PucCTF0489xOYvsYOjfkf7w==}
peerDependencies:
react: '>=16.14 <=18'
react-dom: '>=16.14 <=18'
'@instructure/ui-drawer-layout@10.16.3':
resolution: {integrity: sha512-J6aEwmjARPxWkFU1RbVeuUqG9oRevXqn4JuHiNMS6z/kRRXnKfTmPZ7f3zOf8h8dIFlzsvfrTQARZCH9ZUL5ZA==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-drilldown@10.16.3':
resolution: {integrity: sha512-PWmB6sbmk/N+cbAx6EApCTGrq0ehSrZcL6u6TOMuCKPWFM2Ned/xr2hsvmLcKnao56tX6gT9WL3HonoS0MwvVA==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-editable@10.16.3':
resolution: {integrity: sha512-eYMKwInHHJR5oqll0s5ujoqMIfItvP+pmktwG17QQPse1LOp2nYSHC2o57liEi3s+lOLxu1pl4SDJ+HwP8fowg==}
peerDependencies:
react: '>=16.14 <=18'
react-dom: '>=16.14 <=18'
'@instructure/ui-expandable@10.16.3':
resolution: {integrity: sha512-jpNuOOMqe022zpGD80LC1Wa5dv4Olczf3pSAcJwtp1uMb5U6A7MZM4esl6ppFgTPSknaGOb05+BHzsjHlL7qUw==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-file-drop@10.16.3':
resolution: {integrity: sha512-hPQWyVjeRiNt3bOAYdOMfqlRJDV8HfoiCMxwBZoWaO9WJQq0Hk1/iAaTbol5zRxeKfezRoO4tQJE20Du2SQaDQ==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-flex@10.16.3':
resolution: {integrity: sha512-TvWU/uXgDuiRF0iIVHcFF69BBpIyygd0d1D7kt6L6rOqsvHqEqIwI38mtccDhlWtT5Kh/arlj+273tEUHsTjWQ==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-focusable@10.16.3':
resolution: {integrity: sha512-+FIfikdkbucQ4jNfB4xvW3Pp65O4+nnR2JMB9ZFy/pwdeI9kAXUdJfPwBWEuHKR31HoUpogQlLpTJtzBB51jGA==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-form-field@10.16.3':
resolution: {integrity: sha512-FjO6R6ZBAtweN00Mt/pvfuwkdNjSYo0cnBrrWHrCq9ESXu7QTRM92XXOr2jZWLu9kFN2M5fDYOQhxF+H2UPySw==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-grid@10.16.3':
resolution: {integrity: sha512-dxTNTy5ES7oH2hba2QYck1Jr7TPkvBe6ReAWexeWj+3rCZiX2BVgqZt91R/gBUd1Jh4xPul4zzxTcv62eby5sA==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-heading@10.16.3':
resolution: {integrity: sha512-+onvIbUW9dv9pHo8KRyYDrabB9qfF/r8icodz90Z3O/LpmKMgz1gvhNDtgHBZVlFWDWmAlGD8c3H7tvavIp+fw==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-i18n@10.16.3':
resolution: {integrity: sha512-KjQ6m0KCRdisbmZb/ytGUmdIqDirGZ+OwQxt22evWUkr/8Uq5lYxx5vixcBrD6jH5HDE9Eet91UbJV05xA4k4w==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-icons@10.16.3':
resolution: {integrity: sha512-ZBhQ5l4jyrFMJ6iHVitTcdukjzJ/Kmlqa6dE+WJbtruJDcFP4jghfr9cwVAzI7eLTHWDgDaDPBn2Mav47A684w==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-img@10.16.3':
resolution: {integrity: sha512-Gzmj2Zz5U3jnxZ5Hk18jebbLbmPXMxztOQPq7bbugCdZfuU/0QEGYxYP069ilWp4R03RZ1POTFpsKoqnbIc/WA==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-link@10.16.3':
resolution: {integrity: sha512-lj2kUgeKGdXdHsxKlp+qptLafLxI3ymIc+6gJ4IblmpaoZDhGMGO4M41XYOAsW7gE9J0Q5SEdL0qrv3T+CBHHg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-list@10.16.3':
resolution: {integrity: sha512-+zcOl3fQWWWkVIjiUAGhqLA/rkdqyvoEUGnJejebGm8D2PJ0rlByUI1tuz/lov6HrOjuohnE+Ei2mmnBV59vwQ==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-menu@10.16.3':
resolution: {integrity: sha512-/wZaPhhvSIrQQg6aXtyJomJlg0i/eMY4+7o1kq7xf+niN0bTEp6HowQQydG60sTigdCVHFsmRPaDkn8DAO2JZg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-metric@10.16.3':
resolution: {integrity: sha512-OnbMVAMP8e5t1PYcqmjUEQBpaj9j4OGvL9kaYVmquIP34mQgXqChjoeLWdjSe77K2/mN07gA3OcX4JX0D8IarQ==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-modal@10.16.3':
resolution: {integrity: sha512-icEOHQnoXCykPHe6Lees9n351N7id+paJJHRMcydu7EZrYLrEjZfSCjqAwmfP/Zb2TsrWtMRWLwaWDDrCu6sKw==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-motion@10.16.3':
resolution: {integrity: sha512-ftN3O0qUqjP6roOv5fl7FLCrWPuAsMPAxXmvR9Hdc0PVD8u769qX52SgkzltMOSPiaNvd58sBWsAgIUPkRytTQ==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-navigation@10.16.3':
resolution: {integrity: sha512-hsehnKdGjxINaeQShM4c9vwafUCI0z6exfvm6ffUo/vwXIjmKrqAXnlLQxa4TSWIfK1wIP2I8IRfWcf8fuUOTw==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-number-input@10.16.3':
resolution: {integrity: sha512-hBc1TBJc6CCrQlBOSQ8XEyeX2mR0dzWQyTrvoJizSlSDjls7DFNSc+ouNDGNRRgNXGv5f2JmaWsbX/EYUqV5CA==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-options@10.16.3':
resolution: {integrity: sha512-0OvcE0HLC2W0A46v8onOw0WuQu4Dp/Hpr0IShQTPYArpYIpIJAYA4U8zKTxgYAeoyUSrnuElxkNO0VFezK4bMA==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-overlays@10.16.3':
resolution: {integrity: sha512-5gU2POCNxlPkwpudnCQOgeDg2IbfYmnjX/dfa6Za1dyqkd31AiBUGJz1kGYy/Rv/pUSqDEhNyf1PFODWu8R3nA==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-pages@10.16.3':
resolution: {integrity: sha512-EW7q13MHeF/RLF6lsdcq4JcXBryJx7eZY2TzzIBg+XbgfHZCRZj0E85fNOyEFceXlVWxNvEa8mrd+PF0j3TBlg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-pagination@10.16.3':
resolution: {integrity: sha512-TpOgCOMJbqSZyj2wclckT0tqN46KKIoPJxt6kTqTIn2mEW8256bTL+LaFJ+JZsxMBTJIGef7UejvmacDwNKn0A==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-pill@10.16.3':
resolution: {integrity: sha512-7MVyrHiXMB9iYkhAR5rqZ2fS080SvebjZV+Ztk1wNB2tftlJ47noss9WuZtH2v8+Z0wmjFHo0b6UhAh4dfNfqg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-popover@10.16.3':
resolution: {integrity: sha512-nZN+DOGW1Ne1ZdozkDP18hK1zbyr9+2kAAQORc0viN3q+b7Kc8VKMpItefaYP8Ob7+JIPzeB8ZnvOUypE9vuEw==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-portal@10.16.3':
resolution: {integrity: sha512-zWpQzTbPgbGmHHIMsPd3SgIUpGW8g0fMK8LUEjMAykVpiFgXP1ki4I0ipxlgDsVuwfnc/n8s+xG80s+FbBBqBA==}
peerDependencies:
react: '>=16.14 <=18'
react-dom: '>=16.14 <=18'
'@instructure/ui-position@10.16.3':
resolution: {integrity: sha512-CC76qk5w5JO4VgpzZMMNJGseZmKxdY4fy/3c/YLQqecqjPYGCTdBLzB+Tjls3pFZXTMIseYKdhS9JCVTA9uphw==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-progress@10.16.3':
resolution: {integrity: sha512-0YsHbo1Cme+Q4nCVh3b/ShKVVQWswNQq4T3P5SPVboUj9qz3kiCGTxzTwhFe1bD1K3J95aWwDfuZq/a3DEBSZw==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-prop-types@10.16.3':
resolution: {integrity: sha512-y2dTgW7kFL8HxClNKZr1iU7jevnMMe7v5TqvXkd72CG3mMXLkvU+zHVxowpnM0Ymus+JOZKcecIeRCtd6DBBWg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-radio-input@10.16.3':
resolution: {integrity: sha512-cW/W56YyBs76bzkZno6vzuNYaAFozXyDpwUUqfmS01ZFu9NvClqWTHQyo7BpP93sBRXQoKJAYWnkrtRwEmd20Q==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-range-input@10.16.3':
resolution: {integrity: sha512-PMJhYQ0PXD5qKIKx9HXIglDQUS/nfCQ2jeyAlEdUC6qvUyb+qoAeyIJ1jNdNwAvLpX5jeH/7+WQM3F7GEEQGsQ==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-rating@10.16.3':
resolution: {integrity: sha512-t3z366436zpUlVGynb7feyWxkiafqPqB4vnO9/q1W7OknYL8BmYI4xj1ClF3DZgxKuflfv4ZuDvSlqKmzrJAEw==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-react-utils@10.16.3':
resolution: {integrity: sha512-db30x2AyBKD982ZyxmiFrwOITO5ZTDyvq6Mm8B5ZNHKakc7/LsO8Ic5M8a5hM8ySOFda7HL+jrhSb1LcH4xwDQ==}
peerDependencies:
react: '>=16.14 <=18'
react-dom: '>=16.14 <=18'
'@instructure/ui-responsive@10.16.3':
resolution: {integrity: sha512-hCiSnlhPrkrAIKFR+sy5Cyu+OD6aPGiVNzbwxPNOlNgQQ2Ttc6+D2wGvO2axn1/dNaaDo4zpt5ex1rjIM/DBug==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-select@10.16.3':
resolution: {integrity: sha512-6CHANH4pfy22HZ8DaJX28orgv3h0kU6MJM89FUQaI7FNfsJkeUpyRHpbflA83/QUJJdJ8vUtd3THIWPFwLjF6w==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-selectable@10.16.3':
resolution: {integrity: sha512-6NDeganW2/miMCUqWZSJPQ9BXj5DITttbnULbe/hgjLFD0uMpI0JhQRYk0Ac+obO9G8UkUcJVVB6qjQXdOrYJw==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-side-nav-bar@10.16.3':
resolution: {integrity: sha512-P5IjQ670z9/myUfpGbe7P0MNYuBKApG49GtG/RIIVOAxfAerN32HFCm4LZCygjxiZ43G7ZxIRusMf0YYyF3O5w==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-simple-select@10.16.3':
resolution: {integrity: sha512-tyIBdpq+Wav0qlut7Ztv0bjv1FV4GUmGbat+/LcP7JjRSCjvr+OChnMWhYlZrYmxtGv/iAIaSuLvV8GYyG+jLw==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-source-code-editor@10.16.3':
resolution: {integrity: sha512-MrMH9fgf5GUo+unzvAMEc+AY9v0L7/xRMPBeY6apB7ffdWW8IDaoRXFIkgq2JtZn+seVhjTW7tDL+T8IuC80Og==}
peerDependencies:
react: '>=16.14 <=18'
react-dom: '>=16.14 <=18'
'@instructure/ui-spinner@10.16.3':
resolution: {integrity: sha512-rSf8EaqFvtOHBobcFBN1eELbJOChtDbJ0+rkWlMYr1s5VIJYF0SOuK8wumSv9KGhAzKNCK1UTQn9rgXEfASpNQ==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-svg-images@10.16.3':
resolution: {integrity: sha512-OGTBUvOx2KQQFp/ydw33+AsBUjEwpPimO7Ma0PQMW09doQeobC4q4YE1uizBm0LNlZkGHfaS74J+e1OSb4lfMg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-table@10.16.3':
resolution: {integrity: sha512-+DbHg5ieJTVVVV5oQsB31nxhmMrF0L40kJqk7bLBh2K6qAjQgN3hshzk7YrN1vCzcfZ4xz5nBmJXSZKtCaKigg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-tabs@10.16.3':
resolution: {integrity: sha512-17c2tTXk94Hw9uhkoFCTpOmhgR57ddy1B5iSIBH+Syr0MCWTKKZHGx3mYW1pmle4L2NM1VBWOac22/S2NNrebQ==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-tag@10.16.3':
resolution: {integrity: sha512-WTUd0GuNMQ8GN15wPK6ClRWR0U0rZjbc3YhUBqNY72fLogVwMuh8EXPd7hJpNNtJLz8yvNY13r9s+HLc2kQa1Q==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-test-locator@10.16.3':
resolution: {integrity: sha512-MJ/hMk7JhBGZSqlKsofA2pg4S2zFaibwlIegeh+O0GXJLQjwezeaSPOJxvCcSC8XBk0IyEHwR27FbM5Ir2j7/A==}
'@instructure/ui-test-queries@10.16.3':
resolution: {integrity: sha512-uYtWKnXdOsQVNHckBM8ZSxZ6zB6pLLAqQo+wItGPimFOZkXpfDUcRaI0KTWzu50+11zswMVwXZVp81MWTbXp7Q==}
'@instructure/ui-test-sandbox@10.16.3':
resolution: {integrity: sha512-J/tfsLAbVUtzPN3vMbtBLNQH6B5c2G6VveKYk2a0+F0DeMujn0nXu7cd3M4dBAQUihj9VKiFix3ZqXRUb//miw==}
peerDependencies:
react: '>=16.14 <=18'
react-dom: '>=16.14 <=18'
'@instructure/ui-test-utils@10.16.3':
resolution: {integrity: sha512-PzYBzPu4UDmIofIJfxTCovg9R+Mtiyi6bgy/Ll7UPRcVybo1k9bkgqOs3KIf/p7MjRMJ2Nqrv8Dvg3vElPxlUA==}
peerDependencies:
react: '>=16.14 <=18'
react-dom: '>=16.14 <=18'
'@instructure/ui-testable@10.16.3':
resolution: {integrity: sha512-a2oWwzIXty/WRVno49qf7IHeCDJKNbJZgIeJKqRRco1KC4DYDNyyIxDG7tgpeGXfKIMg2utGJ7v0NBqML6dVkw==}
peerDependencies:
react: '>=16.14 <=18'
react-dom: '>=16.14 <=18'
'@instructure/ui-text-area@10.16.3':
resolution: {integrity: sha512-auecVGYWOCZsOj1nIsf9gtfb292cB4PXyhgudu6A9SrRZpClfT6K4hOBCUBSM2Z4/hKFH8/8hpRHGXJ0MkBMBg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-text-input@10.16.3':
resolution: {integrity: sha512-n1rxOYeIC0ckkPwtMUIpoN3HX/ib+3aDfWnxrJ4f7KH8xGZBLhr2xRlucH69lRDDk8mCMBnUCpAtD/bkUSh6tg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-text@10.16.3':
resolution: {integrity: sha512-n22Y5s8y4TzSsLA2PrdeU1mQSADTDMHioF/KvdUwUaGLP3y0l4sDnHF2DGqI8lRIUX5Np3zLE3+HOp5k25lW9A==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-themes@10.16.3':
resolution: {integrity: sha512-Nu4lP21HvrxejesTclIGQXVmGtFyRqo0D4wDYXzL6GsDTEBwvmbZmFNzAWhoQ364RUjinafYvKRdA8hWcvnNHg==}
'@instructure/ui-time-select@10.16.3':
resolution: {integrity: sha512-6OTqMlsWt8GZFi1XDb5pYFtjhgTL75U+f0FPUHeetXmJnPt4RcNjJQ2sSuurvU34d7ZS7WdfOwfw1QMerfOCQg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-toggle-details@10.16.3':
resolution: {integrity: sha512-dkfI6L0/aMfwHJpa+6yjBQSXlZlDVRAO0Q6j8FY5avdNej1/1Q7eHT8i3jz2Vzmh3DHfoSspEodHqnwYRX0tdg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-tooltip@10.16.3':
resolution: {integrity: sha512-IcxNTOOx7d7FQf67CGLjJOvYnD21uBbI4+BwOfwSFMLuWnB55Ai9B8ewES+uf/hxJKbO8ilI3hgn0k/BP5efmg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-top-nav-bar@10.16.3':
resolution: {integrity: sha512-uP38VAjQoMxPB1E9SgqoOmKnpuOHD7OuMvPm7AskUjguzsFI+zL31TFWh/Wzc9wFKan/7LyO2xpIKxxa9691OQ==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-tray@10.16.3':
resolution: {integrity: sha512-s4F4PeEXbNEc1s3KpSImqQbdd1e3k0YfvF+FJxldCMQSE0zgVRNk5C6t1J9Rt1mYA+efswTxl9xfQKaBEpFpLQ==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-tree-browser@10.16.3':
resolution: {integrity: sha512-qN7PV6Jwn5UlktayYbmb4zkGetgy9Agt2Ewy+x/OWlqYli/rh9MldQKQPTkKo9DEaiycK7gccEQC2/Uh9MTimg==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-truncate-list@10.16.3':
resolution: {integrity: sha512-piqhlhwozoYxgIpFjKwm4IRR111ODKVfG9aY5LbeeRdGlsb0grtcFHHGcd7RFK88eT27tLgu/hxCgnXuKJxOuQ==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-truncate-text@10.16.3':
resolution: {integrity: sha512-7x02dtnqGg4hcmS9w2S4ua4KLT1vLdwZZwzMFwDDYMZYjdYMps8Tv8d8eObrohuv0m5qf4g4JGVlCvjHhIDdXQ==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui-utils@10.16.3':
resolution: {integrity: sha512-7ZqRdhJhEqi4rEi//QpMrepnzTWXz+StWyC35mceTQCiN0YZnQ2aeS47bgZuMDBHXOnKDcRsa6tbqLFX9xV0LQ==}
peerDependencies:
react: '>=16.14 <=18'
react-dom: '>=16.14 <=18'
'@instructure/ui-view@10.16.3':
resolution: {integrity: sha512-rHMTGew7S/5IXFevS9PHdoKsZQ9Qrjs7me73Kz8w71HHqsr82mD06FaP6x1oGERVuNFkubN0uq1hu91I0WJL/Q==}
peerDependencies:
react: '>=16.14 <=18'
'@instructure/ui@10.16.3':
resolution: {integrity: sha512-Qe+MmvIT2XfC5kjY0nxPOueI24uuZfbP1sD4bFcmDkm3IKMJgsqUmbYlru2Mbb5G84cga80dg897NQoAgljOXA==}
peerDependencies:
react: '>= 16.14 <= 18'
react-dom: '>= 16.14 <= 18'
'@instructure/uid@10.16.3':
resolution: {integrity: sha512-s7flJz9iBLo76XmmJJ25b1wbKZ23qrmAwwMP9sBLoUX67oMS8O7aaMSX77cvJrE+ite14nIaS4GCcSzyJT0ZDA==}
'@jest/schemas@29.6.3':
resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
'@jridgewell/gen-mapping@0.3.5':
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
'@jridgewell/set-array@1.2.1':
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
engines: {node: '>=6.0.0'}
'@jridgewell/sourcemap-codec@1.5.0':
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
'@lezer/common@1.2.3':
resolution: {integrity: sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==}
'@lezer/css@1.1.9':
resolution: {integrity: sha512-TYwgljcDv+YrV0MZFFvYFQHCfGgbPMR6nuqLabBdmZoFH3EP1gvw8t0vae326Ne3PszQkbXfVBjCnf3ZVCr0bA==}
'@lezer/highlight@1.2.1':
resolution: {integrity: sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==}
'@lezer/html@1.3.10':
resolution: {integrity: sha512-dqpT8nISx/p9Do3AchvYGV3qYc4/rKr3IBZxlHmpIKam56P47RSHkSF5f13Vu9hebS1jM0HmtJIwLbWz1VIY6w==}
'@lezer/javascript@1.4.19':
resolution: {integrity: sha512-j44kbR1QL26l6dMunZ1uhKBFteVGLVCBGNUD2sUaMnic+rbTviVuoK0CD1l9FTW31EueWvFFswCKMH7Z+M3JRA==}
'@lezer/json@1.0.2':
resolution: {integrity: sha512-xHT2P4S5eeCYECyKNPhr4cbEL9tc8w83SPwRC373o9uEdrvGKTZoJVAGxpOsZckMlEh9W23Pc72ew918RWQOBQ==}
'@lezer/lr@1.4.2':
resolution: {integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==}
'@lezer/markdown@1.3.2':
resolution: {integrity: sha512-Wu7B6VnrKTbBEohqa63h5vxXjiC4pO5ZQJ/TDbhJxPQaaIoRD/6UVDhSDtVsCwVZV12vvN9KxuLL3ATMnlG0oQ==}