-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
7174 lines (7174 loc) · 270 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": "admin-dashboard",
"version": "0.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "admin-dashboard",
"version": "0.0.0",
"license": "MIT",
"dependencies": {
"@headlessui/vue": "^1.6.7",
"@heroicons/vue": "^1.0.6",
"@syncfusion/ej2-popups": "^20.2.40",
"@syncfusion/ej2-vue-buttons": "^20.2.46",
"@syncfusion/ej2-vue-calendars": "^20.2.40",
"@syncfusion/ej2-vue-charts": "^20.2.40",
"@syncfusion/ej2-vue-dropdowns": "^20.2.40",
"@syncfusion/ej2-vue-filemanager": "^20.2.45",
"@syncfusion/ej2-vue-grids": "^20.2.40",
"@syncfusion/ej2-vue-heatmap": "^20.2.48",
"@syncfusion/ej2-vue-inputs": "^20.2.38",
"@syncfusion/ej2-vue-kanban": "^20.2.38",
"@syncfusion/ej2-vue-layouts": "^20.2.46",
"@syncfusion/ej2-vue-lists": "^20.2.46",
"@syncfusion/ej2-vue-navigations": "^20.2.49",
"@syncfusion/ej2-vue-notifications": "^20.2.45",
"@syncfusion/ej2-vue-popups": "^20.2.40",
"@syncfusion/ej2-vue-richtexteditor": "^20.2.40",
"@syncfusion/ej2-vue-schedule": "^20.2.40",
"dotenv": "^16.0.2",
"init": "^0.1.2",
"install": "^0.13.0",
"pinia": "^2.0.16",
"solid-icons": "^1.0.1",
"vue": "^3.2.38",
"vue-class-component": "^8.0.0-rc.1",
"vue-router": "^4.1.2"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.0.3",
"@vue/test-utils": "^2.0.2",
"autoprefixer": "^10.4.7",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^9.0.0",
"jsdom": "^20.0.0",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.6",
"vite": "^3.0.9",
"vitest": "^0.18.1"
}
},
"node_modules/@babel/parser": {
"version": "7.19.1",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.1.tgz",
"integrity": "sha512-h7RCSorm1DdTVGJf3P2Mhj3kdnkmF/EiysUkzS2TdgAYqyjFdMQJbVuXOBej2SBJaXan/lIVtT6KkGbyyq753A==",
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@esbuild/linux-loong64": {
"version": "0.15.7",
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.7.tgz",
"integrity": "sha512-IKznSJOsVUuyt7cDzzSZyqBEcZe+7WlBqTVXiF1OXP/4Nm387ToaXZ0fyLwI1iBlI/bzpxVq411QE2/Bt2XWWw==",
"cpu": [
"loong64"
],
"dev": true,
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">=12"
}
},
"node_modules/@eslint/eslintrc": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.0.tgz",
"integrity": "sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==",
"dev": true,
"license": "MIT",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.3.2",
"globals": "^13.15.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@headlessui/vue": {
"version": "1.6.7",
"resolved": "https://registry.npmjs.org/@headlessui/vue/-/vue-1.6.7.tgz",
"integrity": "sha512-5sTCBpkUoFE7zhANn/6Z+pf3PUA7MD6BBaTsJcQybq9E4fnNiMM9agOJI9meXbtcawE6Dm8EeB5A8HAJEnZCbQ==",
"license": "MIT",
"engines": {
"node": ">=10"
},
"peerDependencies": {
"vue": "^3.2.0"
}
},
"node_modules/@heroicons/vue": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/@heroicons/vue/-/vue-1.0.6.tgz",
"integrity": "sha512-ng2YcCQrdoQWEFpw+ipFl2rZo8mZ56v0T5+MyfQQvNqfKChwgP6DMloZLW+rl17GEcHkE3H82UTAMKBKZr4+WA==",
"license": "MIT",
"peerDependencies": {
"vue": ">= 3"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.9.5",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz",
"integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@humanwhocodes/object-schema": "^1.2.1",
"debug": "^4.1.1",
"minimatch": "^3.0.4"
},
"engines": {
"node": ">=10.10.0"
}
},
"node_modules/@humanwhocodes/object-schema": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
"dev": true,
"license": "BSD-3-Clause"
},
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dev": true,
"license": "MIT",
"dependencies": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@syncfusion/ej2-base": {
"version": "20.2.48",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-base/-/ej2-base-20.2.48.tgz",
"integrity": "sha512-w0FQTYd4QOMlQCn2VcyjaNBMDRhD4BwNpxaoUnEJJ8x4CCYtD1x64vhMJo7qb4Yxw34xus580cEKnZ5N5hmmdA==",
"dependencies": {
"@syncfusion/ej2-icons": "~20.2.45"
},
"bin": {
"syncfusion-license": "bin/syncfusion-license.js"
}
},
"node_modules/@syncfusion/ej2-buttons": {
"version": "20.2.46",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-buttons/-/ej2-buttons-20.2.46.tgz",
"integrity": "sha512-cd+jb2o+xbOyzNmSIBw0tpRMpmuVg0HNyd0bbi9yqbZsh+Sl0AEUvIcXuNCFUsfZuqpwRiOgk9hN2r8PWzbmOg==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.46"
}
},
"node_modules/@syncfusion/ej2-calendars": {
"version": "20.2.40",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-calendars/-/ej2-calendars-20.2.40.tgz",
"integrity": "sha512-LmjnJivWJsTa1mvUUgejspxnQvSfDrZcCIvq0yjITgqMN2I5MGhEHq33P1BoGE+gaDLBaAOld0G7GbBXbZIh2Q==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.39",
"@syncfusion/ej2-buttons": "~20.2.38",
"@syncfusion/ej2-inputs": "~20.2.38",
"@syncfusion/ej2-lists": "~20.2.39",
"@syncfusion/ej2-popups": "~20.2.40"
}
},
"node_modules/@syncfusion/ej2-charts": {
"version": "20.2.40",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-charts/-/ej2-charts-20.2.40.tgz",
"integrity": "sha512-g7V/uV9s8zyBVS97mDpTEkYEJLkAsYHMjh5bbzyJNxw2VAqvYe7pDR5BfoLspwXpwptB94sX4NocO1xOjXLs2g==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.39",
"@syncfusion/ej2-calendars": "~20.2.40",
"@syncfusion/ej2-compression": "~20.2.38",
"@syncfusion/ej2-data": "~20.2.38",
"@syncfusion/ej2-file-utils": "~20.2.38",
"@syncfusion/ej2-navigations": "~20.2.39",
"@syncfusion/ej2-pdf-export": "~20.2.38",
"@syncfusion/ej2-svg-base": "~20.2.38"
}
},
"node_modules/@syncfusion/ej2-compression": {
"version": "20.2.45",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-compression/-/ej2-compression-20.2.45.tgz",
"integrity": "sha512-4nTwFNiWf+QNzuvB1idlDHwb5FJw03epUuZIY5ZPZGPj7YahGCCRM4l+9exvU6p3nGDfVx18lLfFW3DZNzPGlQ==",
"dependencies": {
"@syncfusion/ej2-file-utils": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-data": {
"version": "20.2.45",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-data/-/ej2-data-20.2.45.tgz",
"integrity": "sha512-Oi9oKcJi14k788unERmO4ymWax8JlyPRkyHWeoxPlnxIpTVLGH9XszhVYMDzFfebla+aepABhoIzWFJ9C/22Gg==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-dropdowns": {
"version": "20.2.40",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-20.2.40.tgz",
"integrity": "sha512-k78H18ewbAojstZ2ZCwPRyLI9uoEapCakQJrP07T75kEKIisrzTXYt3Te/9KX6wC47+lyGvywcFWPGNwrg5amw==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.39",
"@syncfusion/ej2-data": "~20.2.38",
"@syncfusion/ej2-inputs": "~20.2.38",
"@syncfusion/ej2-lists": "~20.2.39",
"@syncfusion/ej2-navigations": "~20.2.39",
"@syncfusion/ej2-popups": "~20.2.40"
}
},
"node_modules/@syncfusion/ej2-excel-export": {
"version": "20.2.48",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-excel-export/-/ej2-excel-export-20.2.48.tgz",
"integrity": "sha512-yWpwtj8y71j178sNT0Xr5kWkNNFpa9KvOki3J/4+oaprvNThs+YwKcbKyVNTJ3hQXJEb9hfLZwVE/OR5liRrqg==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.48",
"@syncfusion/ej2-compression": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-file-utils": {
"version": "20.2.45",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-file-utils/-/ej2-file-utils-20.2.45.tgz",
"integrity": "sha512-3vdkzqg3R4mzjNdexEMXQRU2FoSbA3WlIbcHwdrH9ZC8ruW2U+zUltssVccw3wXOlzS03wpZGHqzC5WkrUgrOw=="
},
"node_modules/@syncfusion/ej2-filemanager": {
"version": "20.2.45",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-filemanager/-/ej2-filemanager-20.2.45.tgz",
"integrity": "sha512-Rr36QnACdSUbPOUkNS3HsOLsbeUJUSwU4yKtfQ03GytlQH2ztrldvSbvavAnrkzArAmvQVwjSI9gYXGTYS5/gA==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.45",
"@syncfusion/ej2-buttons": "~20.2.45",
"@syncfusion/ej2-data": "~20.2.45",
"@syncfusion/ej2-grids": "~20.2.45",
"@syncfusion/ej2-inputs": "~20.2.45",
"@syncfusion/ej2-layouts": "~20.2.45",
"@syncfusion/ej2-lists": "~20.2.45",
"@syncfusion/ej2-navigations": "~20.2.45",
"@syncfusion/ej2-popups": "~20.2.45",
"@syncfusion/ej2-splitbuttons": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-filemanager/node_modules/@syncfusion/ej2-calendars": {
"version": "20.2.46",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-calendars/-/ej2-calendars-20.2.46.tgz",
"integrity": "sha512-XB1LY1dS5rGIU88J1m8eLFgI9MFMjz4qZ+RzyQAL9h7cAoXod0T5ihYkqkB6sypuiEpkephLGrBXkgBhces6pg==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.46",
"@syncfusion/ej2-buttons": "~20.2.46",
"@syncfusion/ej2-inputs": "~20.2.45",
"@syncfusion/ej2-lists": "~20.2.46",
"@syncfusion/ej2-popups": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-filemanager/node_modules/@syncfusion/ej2-dropdowns": {
"version": "20.2.48",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-20.2.48.tgz",
"integrity": "sha512-3eotBffVQp4HEGDgoeF4wXZueyMS/Hh2vAjtjO4v/KR2SvDomXbDlQU6Lce0Za4xlMhoAd71dzThyu7BA8qEOg==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.48",
"@syncfusion/ej2-data": "~20.2.45",
"@syncfusion/ej2-inputs": "~20.2.48",
"@syncfusion/ej2-lists": "~20.2.46",
"@syncfusion/ej2-navigations": "~20.2.48",
"@syncfusion/ej2-popups": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-filemanager/node_modules/@syncfusion/ej2-grids": {
"version": "20.2.49",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-grids/-/ej2-grids-20.2.49.tgz",
"integrity": "sha512-GCdehpbFFh0v2yPfwqLEFZndscfqkIpl05FE03rWeq2hGzwWeU7au0ybb61CtbvvtwnJVU2xgH2XMgQmCKbsFw==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.48",
"@syncfusion/ej2-buttons": "~20.2.46",
"@syncfusion/ej2-calendars": "~20.2.46",
"@syncfusion/ej2-compression": "~20.2.45",
"@syncfusion/ej2-data": "~20.2.45",
"@syncfusion/ej2-dropdowns": "~20.2.48",
"@syncfusion/ej2-excel-export": "~20.2.48",
"@syncfusion/ej2-file-utils": "~20.2.45",
"@syncfusion/ej2-inputs": "~20.2.48",
"@syncfusion/ej2-lists": "~20.2.46",
"@syncfusion/ej2-navigations": "~20.2.49",
"@syncfusion/ej2-pdf-export": "~20.2.45",
"@syncfusion/ej2-popups": "~20.2.49",
"@syncfusion/ej2-splitbuttons": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-filemanager/node_modules/@syncfusion/ej2-inputs": {
"version": "20.2.48",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-inputs/-/ej2-inputs-20.2.48.tgz",
"integrity": "sha512-DjPqXpbD/xqPhdFrbnAteDE0wIXhGJdjautaWp7IDZnqwcqrzEt58+58I1MLdiHKOtc8ZybkaH17w6uAEtB/KQ==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.48",
"@syncfusion/ej2-buttons": "~20.2.46",
"@syncfusion/ej2-popups": "~20.2.45",
"@syncfusion/ej2-splitbuttons": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-filemanager/node_modules/@syncfusion/ej2-popups": {
"version": "20.2.49",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-popups/-/ej2-popups-20.2.49.tgz",
"integrity": "sha512-DeaJC+6b/XRhuGc8Px3EUVTwuCy+j5HyaggsmtOJ9QPbHiqwcs5u7KsXYfGVwszSZRFswqFk+uvSoxBaxC9WtA==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.48",
"@syncfusion/ej2-buttons": "~20.2.46"
}
},
"node_modules/@syncfusion/ej2-grids": {
"version": "20.2.40",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-grids/-/ej2-grids-20.2.40.tgz",
"integrity": "sha512-mLnrvTRcZhZMAqh1kjJ7Ys9SzCEJw4h4vlyoGMktmTcRPa8bAP54WfEeX/nJ8g/cKxdYke1bjGPNzB797XZJAg==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.39",
"@syncfusion/ej2-buttons": "~20.2.38",
"@syncfusion/ej2-calendars": "~20.2.40",
"@syncfusion/ej2-compression": "~20.2.38",
"@syncfusion/ej2-data": "~20.2.38",
"@syncfusion/ej2-dropdowns": "~20.2.40",
"@syncfusion/ej2-excel-export": "~20.2.39",
"@syncfusion/ej2-file-utils": "~20.2.38",
"@syncfusion/ej2-inputs": "~20.2.38",
"@syncfusion/ej2-lists": "~20.2.39",
"@syncfusion/ej2-navigations": "~20.2.39",
"@syncfusion/ej2-pdf-export": "~20.2.38",
"@syncfusion/ej2-popups": "~20.2.40",
"@syncfusion/ej2-splitbuttons": "~20.2.38"
}
},
"node_modules/@syncfusion/ej2-heatmap": {
"version": "20.2.48",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-heatmap/-/ej2-heatmap-20.2.48.tgz",
"integrity": "sha512-qvWsszBlTrofQAa5iPA0tu/CYVjZ/ULo2tbQJUNcR1WbZ41zuDYzsi9YQloiEIVMmkDvY/R5xsKh0R7x5VgTFg==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.48",
"@syncfusion/ej2-compression": "~20.2.45",
"@syncfusion/ej2-data": "~20.2.45",
"@syncfusion/ej2-file-utils": "~20.2.45",
"@syncfusion/ej2-pdf-export": "~20.2.45",
"@syncfusion/ej2-svg-base": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-icons": {
"version": "20.2.45",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-icons/-/ej2-icons-20.2.45.tgz",
"integrity": "sha512-8WFTWbxSRRTz0wn1JC4DXWHvF7NY3Ne8X8AcGzo+a6fjYFLuctV8CAYqdVembb3ABqcab75zuSy+UVoKyLpAQQ=="
},
"node_modules/@syncfusion/ej2-inputs": {
"version": "20.2.38",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-inputs/-/ej2-inputs-20.2.38.tgz",
"integrity": "sha512-Zfxr/UFGpNMi97kZIbw8GdsCN1SVrcb+oyXB+fA8McwfaKSTcfUaluQTK5BgI/QsgPVRstrAxqhwYanYuzIkRA==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.38",
"@syncfusion/ej2-buttons": "~20.2.38",
"@syncfusion/ej2-popups": "~20.2.38",
"@syncfusion/ej2-splitbuttons": "~20.2.38"
}
},
"node_modules/@syncfusion/ej2-kanban": {
"version": "20.2.38",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-kanban/-/ej2-kanban-20.2.38.tgz",
"integrity": "sha512-9jaZtQPWgacbdMbiHtH2cNVzf7FUl5MD5mEwLjdZ5DlLDJHtMO76GBE/Use7PMiFleuTj+/pp1U1P7+QZACyuA==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.38",
"@syncfusion/ej2-buttons": "~20.2.38",
"@syncfusion/ej2-data": "~20.2.38",
"@syncfusion/ej2-dropdowns": "~20.2.38",
"@syncfusion/ej2-inputs": "~20.2.38",
"@syncfusion/ej2-layouts": "~20.2.38",
"@syncfusion/ej2-navigations": "~20.2.38",
"@syncfusion/ej2-popups": "~20.2.38"
}
},
"node_modules/@syncfusion/ej2-layouts": {
"version": "20.2.46",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-layouts/-/ej2-layouts-20.2.46.tgz",
"integrity": "sha512-IVymncm4HQ1xSm5f1ynaBLV9JEffrmR6B9vY5PFtAfOjlXOTF1XEf67OlO3giujM/dOhjodBY1pSqjPdsd6V8g==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.46"
}
},
"node_modules/@syncfusion/ej2-lists": {
"version": "20.2.46",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-lists/-/ej2-lists-20.2.46.tgz",
"integrity": "sha512-lSNKhLfOBHIgCabQkpC16CYQHM1SUMvCZmAihqdbfyyq7C1Pg2DYpkk4oTiKUzq/WQruijw7T+WEdw9HeWZCUg==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.46",
"@syncfusion/ej2-buttons": "~20.2.46",
"@syncfusion/ej2-data": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-navigations": {
"version": "20.2.49",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-navigations/-/ej2-navigations-20.2.49.tgz",
"integrity": "sha512-JvKIO+Ymig9+6+FCiscrTY6I7/YDjnYJYw2YpP0xpqBdY2JZM589tqclyOa8REk77vU6QLBSJfUpUG5UswvEag==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.48",
"@syncfusion/ej2-buttons": "~20.2.46",
"@syncfusion/ej2-data": "~20.2.45",
"@syncfusion/ej2-inputs": "~20.2.48",
"@syncfusion/ej2-lists": "~20.2.46",
"@syncfusion/ej2-popups": "~20.2.49"
}
},
"node_modules/@syncfusion/ej2-navigations/node_modules/@syncfusion/ej2-inputs": {
"version": "20.2.48",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-inputs/-/ej2-inputs-20.2.48.tgz",
"integrity": "sha512-DjPqXpbD/xqPhdFrbnAteDE0wIXhGJdjautaWp7IDZnqwcqrzEt58+58I1MLdiHKOtc8ZybkaH17w6uAEtB/KQ==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.48",
"@syncfusion/ej2-buttons": "~20.2.46",
"@syncfusion/ej2-popups": "~20.2.45",
"@syncfusion/ej2-splitbuttons": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-navigations/node_modules/@syncfusion/ej2-popups": {
"version": "20.2.49",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-popups/-/ej2-popups-20.2.49.tgz",
"integrity": "sha512-DeaJC+6b/XRhuGc8Px3EUVTwuCy+j5HyaggsmtOJ9QPbHiqwcs5u7KsXYfGVwszSZRFswqFk+uvSoxBaxC9WtA==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.48",
"@syncfusion/ej2-buttons": "~20.2.46"
}
},
"node_modules/@syncfusion/ej2-notifications": {
"version": "20.2.45",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-notifications/-/ej2-notifications-20.2.45.tgz",
"integrity": "sha512-uOBp5mBDtrRr/ZGF9XpfBduBhp5b4IF3Z3bGXaGrAgASfJuLkisGqk9sVdEphAnFMmOh4XcD3sdL4h/ZZwtdPg==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.45",
"@syncfusion/ej2-buttons": "~20.2.45",
"@syncfusion/ej2-popups": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-notifications/node_modules/@syncfusion/ej2-popups": {
"version": "20.2.49",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-popups/-/ej2-popups-20.2.49.tgz",
"integrity": "sha512-DeaJC+6b/XRhuGc8Px3EUVTwuCy+j5HyaggsmtOJ9QPbHiqwcs5u7KsXYfGVwszSZRFswqFk+uvSoxBaxC9WtA==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.48",
"@syncfusion/ej2-buttons": "~20.2.46"
}
},
"node_modules/@syncfusion/ej2-pdf-export": {
"version": "20.2.45",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-pdf-export/-/ej2-pdf-export-20.2.45.tgz",
"integrity": "sha512-UBBAL65waavS5L2QTn+Yzpgqo1EAVN88Hzul7jIGoTYzNQFs1Z4XtDA9ko9VERJEAPFxhqaDTZNTT/1uvdq7uQ==",
"dependencies": {
"@syncfusion/ej2-compression": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-popups": {
"version": "20.2.40",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-popups/-/ej2-popups-20.2.40.tgz",
"integrity": "sha512-WiZ4RCCN6/Lgmt9mkA+x5tpqOOHB1pHjsdOVrxbMaelx4QNwiuyQzKTBUDJgUIsw4GIo0XvVo3pQYb03CIMhUA==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.39",
"@syncfusion/ej2-buttons": "~20.2.38"
}
},
"node_modules/@syncfusion/ej2-richtexteditor": {
"version": "20.2.40",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-richtexteditor/-/ej2-richtexteditor-20.2.40.tgz",
"integrity": "sha512-XSBQ0Hol2wOhNlAsJJUb5J9rTAu1qNxJnDdccIRQjd3r9S9bH7IXf/U75xCQhXS6Bxr8z/Iw5uaC6y42YhGQQw==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.39",
"@syncfusion/ej2-buttons": "~20.2.38",
"@syncfusion/ej2-filemanager": "~20.2.39",
"@syncfusion/ej2-inputs": "~20.2.38",
"@syncfusion/ej2-navigations": "~20.2.39",
"@syncfusion/ej2-popups": "~20.2.40",
"@syncfusion/ej2-splitbuttons": "~20.2.38"
}
},
"node_modules/@syncfusion/ej2-schedule": {
"version": "20.2.40",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-schedule/-/ej2-schedule-20.2.40.tgz",
"integrity": "sha512-5MjEp6Drmzdnjns/j6Q4aAIUs5ks5PdDmmtHQ7mBogoq3jb1TdQml7oG53LoiNu1odHrn5MUSwfHczd36lKL3g==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.39",
"@syncfusion/ej2-buttons": "~20.2.38",
"@syncfusion/ej2-calendars": "~20.2.40",
"@syncfusion/ej2-data": "~20.2.38",
"@syncfusion/ej2-dropdowns": "~20.2.40",
"@syncfusion/ej2-excel-export": "~20.2.39",
"@syncfusion/ej2-inputs": "~20.2.38",
"@syncfusion/ej2-lists": "~20.2.39",
"@syncfusion/ej2-navigations": "~20.2.39",
"@syncfusion/ej2-popups": "~20.2.40"
}
},
"node_modules/@syncfusion/ej2-splitbuttons": {
"version": "20.2.45",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-splitbuttons/-/ej2-splitbuttons-20.2.45.tgz",
"integrity": "sha512-i91cQ9kA8u61lJClMuxMZ0MjbutaobIQnK9fOb15/oLaag4tfyl21aCGomJ4VDa50RA3939kMpiE+PeSuwOQgQ==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.45",
"@syncfusion/ej2-popups": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-splitbuttons/node_modules/@syncfusion/ej2-popups": {
"version": "20.2.49",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-popups/-/ej2-popups-20.2.49.tgz",
"integrity": "sha512-DeaJC+6b/XRhuGc8Px3EUVTwuCy+j5HyaggsmtOJ9QPbHiqwcs5u7KsXYfGVwszSZRFswqFk+uvSoxBaxC9WtA==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.48",
"@syncfusion/ej2-buttons": "~20.2.46"
}
},
"node_modules/@syncfusion/ej2-svg-base": {
"version": "20.2.45",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-svg-base/-/ej2-svg-base-20.2.45.tgz",
"integrity": "sha512-TP5fvnix38VWEzMBkrLIfArcWweeKH6TOj83jHPewBgQcMzC+dkeiNZHxLR0EFnuYcN75jNkeAy9mzxs5E1Gmw==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-vue-base": {
"version": "20.2.45",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-base/-/ej2-vue-base-20.2.45.tgz",
"integrity": "sha512-4hVsOzFT70h/RFcZS2moBnydlQin15jN67Ie9Q6D9utG79EJJZZbYM1YTVApACcNtxWJ00Ypc9uCx1znTPNTQg==",
"hasInstallScript": true,
"dependencies": {
"@syncfusion/ej2-base": "~20.2.45",
"glob": "^7.0.5"
}
},
"node_modules/@syncfusion/ej2-vue-buttons": {
"version": "20.2.46",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-buttons/-/ej2-vue-buttons-20.2.46.tgz",
"integrity": "sha512-QZ5N0SkQJT0xOLeKOdGWQQqFENMlUCySAm4CO+hDJkQNKSDUvg/9XLkpBJW1hqF/7enYkxeQ5+x0BSo1Sq+Gkw==",
"hasInstallScript": true,
"dependencies": {
"@syncfusion/ej2-base": "~20.2.46",
"@syncfusion/ej2-buttons": "20.2.46",
"@syncfusion/ej2-vue-base": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-vue-calendars": {
"version": "20.2.40",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-calendars/-/ej2-vue-calendars-20.2.40.tgz",
"integrity": "sha512-HYBwbdhtIuaSr2jqeCFk6ItYl8HDKwLSjYZCuMzRejTAV+dZhVXgiYDjmWLaaMm0z3X4GcL4kfJcNC+DcaZ1BA==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.39",
"@syncfusion/ej2-calendars": "20.2.40",
"@syncfusion/ej2-vue-base": "~20.2.38"
}
},
"node_modules/@syncfusion/ej2-vue-charts": {
"version": "20.2.40",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-charts/-/ej2-vue-charts-20.2.40.tgz",
"integrity": "sha512-OwMlXxM0TvCq6IfqH8eErmJy2FkD7d1weWnP8Gu5AycQvipN21tS1sguUDtoi4PDhroSop3JC4fVHioYPGkm2A==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.39",
"@syncfusion/ej2-charts": "20.2.40",
"@syncfusion/ej2-vue-base": "~20.2.38"
}
},
"node_modules/@syncfusion/ej2-vue-dropdowns": {
"version": "20.2.40",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-dropdowns/-/ej2-vue-dropdowns-20.2.40.tgz",
"integrity": "sha512-vMmEz5ehxdeYZWyuJAcgVj4Vd4rTVywnRLd7C4kz0F6utjJK1jE3tUWn3Qi3W6bEO4WbG2KeYzUkLbtHUoaC5Q==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.39",
"@syncfusion/ej2-dropdowns": "20.2.40",
"@syncfusion/ej2-vue-base": "~20.2.38"
}
},
"node_modules/@syncfusion/ej2-vue-filemanager": {
"version": "20.2.45",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-filemanager/-/ej2-vue-filemanager-20.2.45.tgz",
"integrity": "sha512-naN+OcYCVwsxJ3EHIVvqdMBEi2FS/80AkzBItZ5eG9spCnKj/HaGRjW/xt3Ok1lkC+WryKbZq0+1Xeaoy/6h0g==",
"hasInstallScript": true,
"dependencies": {
"@syncfusion/ej2-base": "~20.2.45",
"@syncfusion/ej2-filemanager": "20.2.45",
"@syncfusion/ej2-vue-base": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-vue-grids": {
"version": "20.2.40",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-grids/-/ej2-vue-grids-20.2.40.tgz",
"integrity": "sha512-ArokCz+eFN2cuIMqaCkQOjy1qX9znqaW+Wm6qW+y9jItZ7Mq1IspFcxXVbM4QGSeEovjTs1AWEzWsR2HR+ZK2Q==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.39",
"@syncfusion/ej2-grids": "20.2.40",
"@syncfusion/ej2-vue-base": "~20.2.38"
}
},
"node_modules/@syncfusion/ej2-vue-heatmap": {
"version": "20.2.48",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-heatmap/-/ej2-vue-heatmap-20.2.48.tgz",
"integrity": "sha512-PHIjskJhgpcR1BXrQO58pZMKm6nQVFOMgLeEmGsBK3AtA3LKESUgbQGjuwxgHAwoTFa8sEo+g2et+8HEIqm/9w==",
"hasInstallScript": true,
"dependencies": {
"@syncfusion/ej2-base": "~20.2.48",
"@syncfusion/ej2-heatmap": "20.2.48",
"@syncfusion/ej2-vue-base": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-vue-inputs": {
"version": "20.2.38",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-inputs/-/ej2-vue-inputs-20.2.38.tgz",
"integrity": "sha512-Zd6/rJsyCCkLmKTF7yIMfD1wWu+LMYazCtPgZPqXDkWOdzmpHxpuwkZrg0/xDwC1O/PJq86sJT5uCtIFp0Swog==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.38",
"@syncfusion/ej2-inputs": "20.2.38",
"@syncfusion/ej2-vue-base": "~20.2.38"
}
},
"node_modules/@syncfusion/ej2-vue-kanban": {
"version": "20.2.38",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-kanban/-/ej2-vue-kanban-20.2.38.tgz",
"integrity": "sha512-yYGwJZpVmCY0D3zM4kD3MDAp/IjhNJF8nvHlFgaXMFd1wcNVHNriKWvMflHzq1Lujcj2IlRIoGKxp4f4vPUemw==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.38",
"@syncfusion/ej2-kanban": "20.2.38",
"@syncfusion/ej2-vue-base": "~20.2.38"
}
},
"node_modules/@syncfusion/ej2-vue-layouts": {
"version": "20.2.46",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-layouts/-/ej2-vue-layouts-20.2.46.tgz",
"integrity": "sha512-Z9Nfwdi1L60KXLxsTD9fkBuss9ZjPcdTsP7gdvf6Mbm6BAzAujlG6/fdzYtdZYTkbuxg2qZW7NhBsdVqdnhcew==",
"hasInstallScript": true,
"dependencies": {
"@syncfusion/ej2-base": "~20.2.46",
"@syncfusion/ej2-layouts": "20.2.46",
"@syncfusion/ej2-vue-base": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-vue-lists": {
"version": "20.2.46",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-lists/-/ej2-vue-lists-20.2.46.tgz",
"integrity": "sha512-fNnwTL1Enhx/bYTuKrZH2pzjCGdSh4sTvqS5SJWzhMvGFV9XoVb19jKYIBgXJCydCrd1ZuSOBX/RR0gZbxFfNg==",
"hasInstallScript": true,
"dependencies": {
"@syncfusion/ej2-base": "~20.2.46",
"@syncfusion/ej2-lists": "20.2.46",
"@syncfusion/ej2-vue-base": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-vue-navigations": {
"version": "20.2.49",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-navigations/-/ej2-vue-navigations-20.2.49.tgz",
"integrity": "sha512-a/RK567LezTxXhUwKFFcKqN1/kdnY/oq9gU9pkomEf8b/KlzgK+U9Cp4iH54TZnB39S8g7q1+dfO0+1KbeH2Wg==",
"hasInstallScript": true,
"dependencies": {
"@syncfusion/ej2-base": "~20.2.48",
"@syncfusion/ej2-navigations": "20.2.49",
"@syncfusion/ej2-vue-base": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-vue-notifications": {
"version": "20.2.45",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-notifications/-/ej2-vue-notifications-20.2.45.tgz",
"integrity": "sha512-zPmkddEaeLGz5UVlFMRQLGLHDNOry0c0FEHopgl+sFjilMp5xmBzH1xiHEPXHZFFWNE2m1Fv4Qy4hdiUPiHc8g==",
"hasInstallScript": true,
"dependencies": {
"@syncfusion/ej2-base": "~20.2.45",
"@syncfusion/ej2-notifications": "20.2.45",
"@syncfusion/ej2-vue-base": "~20.2.45"
}
},
"node_modules/@syncfusion/ej2-vue-popups": {
"version": "20.2.40",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-popups/-/ej2-vue-popups-20.2.40.tgz",
"integrity": "sha512-T5XEdygPx8XXhpykf9YkD+/9eZfSPbfEFw33s+I3GDoK56XxUOb7eZQyKxymDZkS1Agw30mzIvizbRwPfhMu9Q==",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.39",
"@syncfusion/ej2-popups": "20.2.40",
"@syncfusion/ej2-vue-base": "~20.2.38"
}
},
"node_modules/@syncfusion/ej2-vue-richtexteditor": {
"version": "20.2.40",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-richtexteditor/-/ej2-vue-richtexteditor-20.2.40.tgz",
"integrity": "sha512-QvOSK+FaNeUNVVHCOs7zgNZir7/JA9iey3rE4cv3i2V/qLvJ1/dcHVsCWjqiKD75v2vnT9IThBj3zCGZexV+NA==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.39",
"@syncfusion/ej2-richtexteditor": "20.2.40",
"@syncfusion/ej2-vue-base": "~20.2.38"
}
},
"node_modules/@syncfusion/ej2-vue-schedule": {
"version": "20.2.40",
"resolved": "https://registry.npmjs.org/@syncfusion/ej2-vue-schedule/-/ej2-vue-schedule-20.2.40.tgz",
"integrity": "sha512-JeUAVhCJNmUMXaxA26enyFDUdQaYkPujOUsJ80UHuvCoCw7yrfhul/bWXMn/WCjz7Zx8KUKXkYF9Xe4cY9UfAA==",
"license": "SEE LICENSE IN license",
"dependencies": {
"@syncfusion/ej2-base": "~20.2.39",
"@syncfusion/ej2-schedule": "20.2.40",
"@syncfusion/ej2-vue-base": "~20.2.38"
}
},
"node_modules/@tootallnate/once": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz",
"integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">= 10"
}
},
"node_modules/@types/chai": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.1.tgz",
"integrity": "sha512-/zPMqDkzSZ8t3VtxOa4KPq7uzzW978M9Tvh+j7GHKuo6k6GTLxPJ4J5gE5cjfJ26pnXst0N5Hax8Sr0T2Mi9zQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/chai-subset": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/@types/chai-subset/-/chai-subset-1.3.3.tgz",
"integrity": "sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@types/chai": "*"
}
},
"node_modules/@types/node": {
"version": "18.6.1",
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.6.1.tgz",
"integrity": "sha512-z+2vB6yDt1fNwKOeGbckpmirO+VBDuQqecXkgeIqDlaOtmKn6hPR/viQ8cxCfqLU4fTlvM3+YjM367TukWdxpg==",
"dev": true,
"license": "MIT"
},
"node_modules/@vitejs/plugin-vue": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-3.1.0.tgz",
"integrity": "sha512-fmxtHPjSOEIRg6vHYDaem+97iwCUg/uSIaTzp98lhELt2ISOQuDo2hbkBdXod0g15IhfPMQmAxh4heUks2zvDA==",
"dev": true,
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"peerDependencies": {
"vite": "^3.0.0",
"vue": "^3.2.25"
}
},
"node_modules/@vue/compiler-core": {
"version": "3.2.39",
"resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.39.tgz",
"integrity": "sha512-mf/36OWXqWn0wsC40nwRRGheR/qoID+lZXbIuLnr4/AngM0ov8Xvv8GHunC0rKRIkh60bTqydlqTeBo49rlbqw==",
"dependencies": {
"@babel/parser": "^7.16.4",
"@vue/shared": "3.2.39",
"estree-walker": "^2.0.2",
"source-map": "^0.6.1"
}
},
"node_modules/@vue/compiler-dom": {
"version": "3.2.39",
"resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.39.tgz",
"integrity": "sha512-HMFI25Be1C8vLEEv1hgEO1dWwG9QQ8LTTPmCkblVJY/O3OvWx6r1+zsox5mKPMGvqYEZa6l8j+xgOfUspgo7hw==",
"dependencies": {
"@vue/compiler-core": "3.2.39",
"@vue/shared": "3.2.39"
}
},
"node_modules/@vue/compiler-sfc": {
"version": "3.2.39",
"resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.39.tgz",
"integrity": "sha512-fqAQgFs1/BxTUZkd0Vakn3teKUt//J3c420BgnYgEOoVdTwYpBTSXCMJ88GOBCylmUBbtquGPli9tVs7LzsWIA==",
"dependencies": {
"@babel/parser": "^7.16.4",
"@vue/compiler-core": "3.2.39",
"@vue/compiler-dom": "3.2.39",
"@vue/compiler-ssr": "3.2.39",
"@vue/reactivity-transform": "3.2.39",
"@vue/shared": "3.2.39",
"estree-walker": "^2.0.2",
"magic-string": "^0.25.7",
"postcss": "^8.1.10",
"source-map": "^0.6.1"
}
},
"node_modules/@vue/compiler-ssr": {
"version": "3.2.39",
"resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.39.tgz",
"integrity": "sha512-EoGCJ6lincKOZGW+0Ky4WOKsSmqL7hp1ZYgen8M7u/mlvvEQUaO9tKKOy7K43M9U2aA3tPv0TuYYQFrEbK2eFQ==",
"dependencies": {
"@vue/compiler-dom": "3.2.39",
"@vue/shared": "3.2.39"
}
},
"node_modules/@vue/devtools-api": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.2.1.tgz",
"integrity": "sha512-OEgAMeQXvCoJ+1x8WyQuVZzFo0wcyCmUR3baRVLmKBo1LmYZWMlRiXlux5jd0fqVJu6PfDbOrZItVqUEzLobeQ==",
"license": "MIT"
},
"node_modules/@vue/reactivity": {
"version": "3.2.39",
"resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.2.39.tgz",
"integrity": "sha512-vlaYX2a3qMhIZfrw3Mtfd+BuU+TZmvDrPMa+6lpfzS9k/LnGxkSuf0fhkP0rMGfiOHPtyKoU9OJJJFGm92beVQ==",
"dependencies": {
"@vue/shared": "3.2.39"
}
},
"node_modules/@vue/reactivity-transform": {
"version": "3.2.39",
"resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.39.tgz",
"integrity": "sha512-HGuWu864zStiWs9wBC6JYOP1E00UjMdDWIG5W+FpUx28hV3uz9ODOKVNm/vdOy/Pvzg8+OcANxAVC85WFBbl3A==",
"dependencies": {
"@babel/parser": "^7.16.4",
"@vue/compiler-core": "3.2.39",
"@vue/shared": "3.2.39",
"estree-walker": "^2.0.2",
"magic-string": "^0.25.7"
}
},
"node_modules/@vue/runtime-core": {
"version": "3.2.39",
"resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.2.39.tgz",
"integrity": "sha512-xKH5XP57JW5JW+8ZG1khBbuLakINTgPuINKL01hStWLTTGFOrM49UfCFXBcFvWmSbci3gmJyLl2EAzCaZWsx8g==",
"dependencies": {
"@vue/reactivity": "3.2.39",
"@vue/shared": "3.2.39"
}
},
"node_modules/@vue/runtime-dom": {
"version": "3.2.39",
"resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.2.39.tgz",
"integrity": "sha512-4G9AEJP+sLhsqf5wXcyKVWQKUhI+iWfy0hWQgea+CpaTD7BR0KdQzvoQdZhwCY6B3oleSyNLkLAQwm0ya/wNoA==",
"dependencies": {
"@vue/runtime-core": "3.2.39",
"@vue/shared": "3.2.39",
"csstype": "^2.6.8"
}
},
"node_modules/@vue/server-renderer": {
"version": "3.2.39",
"resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.2.39.tgz",
"integrity": "sha512-1yn9u2YBQWIgytFMjz4f/t0j43awKytTGVptfd3FtBk76t1pd8mxbek0G/DrnjJhd2V7mSTb5qgnxMYt8Z5iSQ==",
"dependencies": {
"@vue/compiler-ssr": "3.2.39",
"@vue/shared": "3.2.39"
},
"peerDependencies": {
"vue": "3.2.39"
}
},
"node_modules/@vue/shared": {
"version": "3.2.39",
"resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.39.tgz",
"integrity": "sha512-D3dl2ZB9qE6mTuWPk9RlhDeP1dgNRUKC3NJxji74A4yL8M2MwlhLKUC/49WHjrNzSPug58fWx/yFbaTzGAQSBw=="
},
"node_modules/@vue/test-utils": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@vue/test-utils/-/test-utils-2.0.2.tgz",
"integrity": "sha512-E2P4oXSaWDqTZNbmKZFVLrNN/siVN78YkEqs7pHryWerrlZR9bBFLWdJwRoguX45Ru6HxIflzKl4vQvwRMwm5g==",
"dev": true,
"license": "MIT",
"peerDependencies": {
"vue": "^3.0.1"
}
},
"node_modules/abab": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz",
"integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==",
"dev": true,
"license": "BSD-3-Clause"
},
"node_modules/acorn": {
"version": "8.8.0",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz",
"integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==",
"dev": true,
"license": "MIT",
"bin": {
"acorn": "bin/acorn"
},
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/acorn-globals": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz",
"integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
"dev": true,
"license": "MIT",
"dependencies": {
"acorn": "^7.1.1",
"acorn-walk": "^7.1.1"
}
},
"node_modules/acorn-globals/node_modules/acorn": {
"version": "7.4.1",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
"dev": true,
"license": "MIT",
"bin": {
"acorn": "bin/acorn"
},
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/acorn-jsx": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
"dev": true,
"license": "MIT",
"peerDependencies": {
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
"node_modules/acorn-node": {
"version": "1.8.2",
"resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz",
"integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"acorn": "^7.0.0",
"acorn-walk": "^7.0.0",
"xtend": "^4.0.2"
}
},
"node_modules/acorn-node/node_modules/acorn": {
"version": "7.4.1",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
"dev": true,
"license": "MIT",
"bin": {
"acorn": "bin/acorn"
},
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/acorn-walk": {