-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
11668 lines (9359 loc) · 413 KB
/
Copy pathpnpm-lock.yaml
File metadata and controls
11668 lines (9359 loc) · 413 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:
.:
dependencies:
'@opentiny/icons':
specifier: ^0.1.4
version: 0.1.4
'@opentiny/tiny-engine':
specifier: ^2.7.0
version: 2.8.0(@opentiny/vue-design-smb@3.20.0)(@opentiny/vue-icon@3.20.0)(@opentiny/vue-locale@3.20.0)(@opentiny/vue-renderless@3.20.3)(@opentiny/vue-runtime@3.26.0)(@opentiny/vue-theme@3.20.2)(@opentiny/vue@3.20.0(echarts@5.4.1))(@vue/babel-plugin-jsx@1.5.0(@babel/core@7.23.9))(@vue/compiler-sfc@3.5.21)(echarts@5.4.1)(eslint@8.57.1)(vite@5.4.20(@types/node@18.19.127)(less@4.4.1))(vue@3.5.21)
'@opentiny/tiny-engine-meta-register':
specifier: ^2.7.0
version: 2.8.0(@opentiny/vue-renderless@3.20.3)
'@opentiny/tiny-engine-utils':
specifier: ^2.7.0
version: 2.8.0(@opentiny/vue-renderless@3.20.3)(vue@3.5.21)
'@opentiny/vue':
specifier: ~3.20.0
version: 3.20.0(echarts@5.4.1)
'@opentiny/vue-design-smb':
specifier: ~3.20.0
version: 3.20.0
'@opentiny/vue-icon':
specifier: ~3.20.0
version: 3.20.0
'@opentiny/vue-locale':
specifier: ~3.20.0
version: 3.20.0
'@opentiny/vue-renderless':
specifier: ~3.20.0
version: 3.20.3
'@opentiny/vue-theme':
specifier: ~3.20.0
version: 3.20.2
'@vueuse/core':
specifier: ^9.6.0
version: 9.13.0(vue@3.5.21)
tiny-engine-generate-code-tinypro:
specifier: ^1.0.0
version: 1.0.0(@opentiny/icons@0.1.4)(@opentiny/tiny-engine-meta-register@2.8.0(@opentiny/vue-renderless@3.20.3))(@opentiny/tiny-engine-utils@2.8.0(@opentiny/vue-renderless@3.20.3)(vue@3.5.21))(@opentiny/tiny-engine@2.8.0(@opentiny/vue-design-smb@3.20.0)(@opentiny/vue-icon@3.20.0)(@opentiny/vue-locale@3.20.0)(@opentiny/vue-renderless@3.20.3)(@opentiny/vue-runtime@3.26.0)(@opentiny/vue-theme@3.20.2)(@opentiny/vue@3.20.0(echarts@5.4.1))(@vue/babel-plugin-jsx@1.5.0(@babel/core@7.23.9))(@vue/compiler-sfc@3.5.21)(echarts@5.4.1)(eslint@8.57.1)(vite@5.4.20(@types/node@18.19.127)(less@4.4.1))(vue@3.5.21))(@opentiny/vue@3.20.0(echarts@5.4.1))(@vueuse/core@9.13.0(vue@3.5.21))(vue@3.5.21)
vue:
specifier: ^3.4.21
version: 3.5.21
devDependencies:
'@opentiny/tiny-engine-mock':
specifier: ^2.7.0
version: 2.8.0
'@opentiny/tiny-engine-vite-config':
specifier: ^2.7.0
version: 2.8.0(esbuild@0.21.5)(monaco-editor@0.51.0)(rollup@4.52.0)(vue@3.5.21)
'@vitejs/plugin-vue':
specifier: ^5.1.2
version: 5.2.4(vite@5.4.20(@types/node@18.19.127)(less@4.4.1))(vue@3.5.21)
concurrently:
specifier: ^8.2.0
version: 8.2.2
cross-env:
specifier: ^7.0.3
version: 7.0.3
vite:
specifier: ^5.4.2
version: 5.4.20(@types/node@18.19.127)(less@4.4.1)
packages:
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@babel/code-frame@7.27.1':
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.28.4':
resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==}
engines: {node: '>=6.9.0'}
'@babel/core@7.18.13':
resolution: {integrity: sha512-ZisbOvRRusFktksHSG6pjj1CSvkPkcZq/KHD45LAkVP/oiHJkNBZWfpvlLmX8OtHDG8IuzsFlVRWo08w7Qxn0A==}
engines: {node: '>=6.9.0'}
'@babel/core@7.23.9':
resolution: {integrity: sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==}
engines: {node: '>=6.9.0'}
'@babel/core@7.28.4':
resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.23.6':
resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.28.3':
resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.27.3':
resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.27.2':
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.28.3':
resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-environment-visitor@7.24.7':
resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-function-name@7.24.7':
resolution: {integrity: sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==}
engines: {node: '>=6.9.0'}
'@babel/helper-globals@7.28.0':
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
engines: {node: '>=6.9.0'}
'@babel/helper-hoist-variables@7.24.7':
resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-member-expression-to-functions@7.27.1':
resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.27.1':
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.28.3':
resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-optimise-call-expression@7.27.1':
resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.27.1':
resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
engines: {node: '>=6.9.0'}
'@babel/helper-replace-supers@7.27.1':
resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
engines: {node: '>=6.9.0'}
'@babel/helper-split-export-declaration@7.24.7':
resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.27.1':
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.27.1':
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.28.4':
resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.23.9':
resolution: {integrity: sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/parser@7.28.4':
resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-syntax-jsx@7.27.1':
resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-typescript@7.27.1':
resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-typescript@7.28.0':
resolution: {integrity: sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/runtime@7.28.4':
resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
engines: {node: '>=6.9.0'}
'@babel/template@7.27.2':
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.23.9':
resolution: {integrity: sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.28.4':
resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==}
engines: {node: '>=6.9.0'}
'@babel/types@7.28.4':
resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==}
engines: {node: '>=6.9.0'}
'@better-scroll/core@2.5.0':
resolution: {integrity: sha512-+3aKf8T3kUl4Gj1M7NKV3fNFhsrBpTWwHoDClkXVmQ8S3TxMMHf6Kyw6l1zKsg4r+9ukW5lDDkyif7/gY76qXQ==}
'@better-scroll/shared-utils@2.5.1':
resolution: {integrity: sha512-AplkfSjXVYP9LZiD6JsKgmgQJ/mG4uuLmBuwLz8W5OsYc7AYTfN8kw6GqZ5OwCGoXkVhBGyd8NeC4xwYItp0aw==}
'@better-scroll/wheel@2.5.0':
resolution: {integrity: sha512-+cru8CtMtgGGMv3yOxn33ApbtatOZBVUCa7+X3UqVVyaxi6FbCrcSZCBlXhXpsFhJo1R282O6nQyik6KUidvoA==}
'@esbuild-plugins/node-globals-polyfill@0.2.3':
resolution: {integrity: sha512-r3MIryXDeXDOZh7ih1l/yE9ZLORCd5e8vWg02azWRGj5SPTuoh69A2AIyn0Z31V/kHBfZ4HgWJ+OK3GTTwLmnw==}
peerDependencies:
esbuild: '*'
'@esbuild-plugins/node-modules-polyfill@0.2.2':
resolution: {integrity: sha512-LXV7QsWJxRuMYvKbiznh+U1ilIop3g2TeKRzUxOG5X3YITc8JyyTa90BmLwqqv0YnX4v32CSlG+vsziZp9dMvA==}
peerDependencies:
esbuild: '*'
'@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]
'@eslint-community/eslint-utils@4.9.0':
resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
'@eslint-community/regexpp@4.12.1':
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/eslintrc@2.1.4':
resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
'@eslint/js@8.57.1':
resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
'@floating-ui/core@1.7.3':
resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
'@floating-ui/dom@1.7.4':
resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
'@floating-ui/utils@0.2.10':
resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
'@humanwhocodes/config-array@0.13.0':
resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
engines: {node: '>=10.10.0'}
deprecated: Use @eslint/config-array instead
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
'@humanwhocodes/object-schema@2.0.3':
resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
deprecated: Use @eslint/object-schema instead
'@intlify/core-base@9.14.5':
resolution: {integrity: sha512-5ah5FqZG4pOoHjkvs8mjtv+gPKYU0zCISaYNjBNNqYiaITxW8ZtVih3GS/oTOqN8d9/mDLyrjD46GBApNxmlsA==}
engines: {node: '>= 16'}
'@intlify/message-compiler@9.14.5':
resolution: {integrity: sha512-IHzgEu61/YIpQV5Pc3aRWScDcnFKWvQA9kigcINcCBXN8mbW+vk9SK+lDxA6STzKQsVJxUPg9ACC52pKKo3SVQ==}
engines: {node: '>= 16'}
'@intlify/shared@9.14.5':
resolution: {integrity: sha512-9gB+E53BYuAEMhbCAxVgG38EZrk59sxBtv3jSizNL2hEWlgjBjAw1AwpLHtNaeda12pe6W20OGEa0TwuMSRbyQ==}
engines: {node: '>= 16'}
'@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
'@jridgewell/gen-mapping@0.3.13':
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
'@jridgewell/remapping@2.3.5':
resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
'@jridgewell/sourcemap-codec@1.5.5':
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
'@jridgewell/trace-mapping@0.3.31':
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
'@modelcontextprotocol/sdk@1.18.1':
resolution: {integrity: sha512-d//GE8/Yh7aC3e7p+kZG8JqqEAwwDUmAfvH1quogtbk+ksS6E0RR6toKKESPYYZVre0meqkJb27zb+dhqE9Sgw==}
engines: {node: '>=18'}
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
'@nodelib/fs.stat@2.0.5':
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
'@nodelib/fs.walk@1.2.8':
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
'@opentiny/fluent-editor@3.25.4':
resolution: {integrity: sha512-jdXXsBq2AIy9e8L8RkNXVo0ittDhfG7ELVs4lGUmnewIvdNOs64axttj2GGfW9Lup95oeMqdoOW0kf09GAx0Vw==}
'@opentiny/huicharts@1.0.1':
resolution: {integrity: sha512-KsVNZwCstMJec2vM/uMff9jj/nNHXCchiwGGU4+MGP1nRwg7Hkj8pjgJQh/tJR6+AEKPY/h+TewRM3S6KBtn5g==}
'@opentiny/icons@0.1.4':
resolution: {integrity: sha512-4S68BuARPpZqkB1gJDKgwqEoOpWUAxLTIfZ7CK1wpkzuSC42ZW+lIBQnqhvlqKWgKLSBHfLUgYXZoglhjIVikA==}
'@opentiny/next@0.2.1':
resolution: {integrity: sha512-o+p2rq3bud5l1r/uVs4v69bIMaEmvlIss9/ThNQoK3m1FwKBmNyDDPlPdawd3mGNzc249Vn0KnQ84q3ui0aRzg==}
engines: {node: ^18.0.0 || >=20.0.0}
'@opentiny/tiny-engine-block-compiler@2.8.0':
resolution: {integrity: sha512-AdEexxVNSWUhotmjEAwcLqncF9ynw15z09hsBzs5hARWykCZo1/kp0yIBiIsjR2p0+PdJoLVs7C184C4f5QnrQ==}
peerDependencies:
'@babel/core': ^7.26.0
'@vue/babel-plugin-jsx': ^1.2.5
'@vue/compiler-sfc': ^3.4.15
vue: ^3.4.15
'@opentiny/tiny-engine-builtin-component@2.8.0':
resolution: {integrity: sha512-Da4IwxH9Z4cpiAiqN9xJFnMnln6MIMADV/1gxwr/EfQaed2BBGHCkvH6ZTp4INk3/PEXxvrD3qdJyrPDlrlqUg==}
peerDependencies:
vue: ^3.4.15
'@opentiny/tiny-engine-canvas@2.8.0':
resolution: {integrity: sha512-OzZVMzS6jB2CrqVBz4mAJKJleWbVnI+nXFr2MUcG+hvZJHgps9PQa4VpaGggJ4AMvsVBAJgtqQQJB+NxenfkOw==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
'@opentiny/vue-renderless': ^3.20.0
vue: ^3.4.15
vue-i18n: ^9.9.0
'@opentiny/tiny-engine-common@2.8.0':
resolution: {integrity: sha512-7ocEipX7Sc7vpRgikeE5pqTmmxQgxaAACRt6PxLwxqAg6sx+UstwMe+rMbw7i7ub0rj0Y6FbVU49EM0X86suqQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
'@opentiny/vue-locale': ^3.20.0
'@opentiny/vue-renderless': ^3.20.0
vue: ^3.4.15
vue-i18n: ^9.9.0
'@opentiny/tiny-engine-configurator@2.8.0':
resolution: {integrity: sha512-IUaehLaJBYKpxzJ172/o3vJsr/8qBXGqA1Nh0/6d6L7tdyJV4lqtcoUYwhBvYi7jqBVAAbJ0Rt8qq33HDwIa7A==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-dsl-vue@2.8.0':
resolution: {integrity: sha512-h2j3wPyNrKng1Y2dO1HsKhTEGNPUajpN44siX80w8SHV6Tgk+g6WpVcQuGgffBwmrUrxykWN/1OGhdKDm7mtkQ==}
peerDependencies:
'@babel/generator': ^7.18.13
'@babel/parser': ^7.18.13
'@babel/traverse': ^7.18.13
eslint: ^8.57.1
'@opentiny/tiny-engine-i18n-host@2.8.0':
resolution: {integrity: sha512-TQPWi89N0l4vqiTulHaoxN/Rj0XpcFNMduNRvrc/Rqns0niMZIkrpi2Rie03i5j+Ro4tMn8qZ63EPsYBCobE8A==}
peerDependencies:
vue: ^3.4.15
vue-i18n: ^9.9.0
'@opentiny/tiny-engine-layout@2.8.0':
resolution: {integrity: sha512-R80fHos136AkBuvR7/TI4+kH/xA+BEB0KmnWriIDEp8i8UiUDzKeC2xflhHf6SrUSepaMrXDCiLsxZUDV3rUDw==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-design-smb': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
'@opentiny/vue-renderless': ^3.20.0
'@opentiny/vue-theme': ^3.20.0
vue: ^3.4.23
'@opentiny/tiny-engine-meta-register@2.8.0':
resolution: {integrity: sha512-ofXCtCaHJa33v40tJLqBOg5O11okHS8svWwAprxj1IOXkl5934zXOGjwLQ1hNzJ3kszyUa9sgDzxxkQTAeiC4Q==}
'@opentiny/tiny-engine-mock@2.8.0':
resolution: {integrity: sha512-tannksoW3YnGm8YG0ZiIRMyE8s3/eA7qCKwTKF646VXV2+Q5wiSb21MmIMAzPrr68duHdbqZnxTAIHaZrljoxg==}
engines: {node: '>= 16', npm: '>= 6'}
'@opentiny/tiny-engine-plugin-block@2.8.0':
resolution: {integrity: sha512-M8lgnlGma3nTj5+ieAgVZhF5pfZunaANzIyoGFYOf4qvQh+qP4cxsNEMpQ7jXq76DduprmKNswkqU3G7fp+SSw==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
'@opentiny/vue-renderless': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-bridge@2.8.0':
resolution: {integrity: sha512-16Qxxmm0+CTe45Y2nwWFVVOtUpkbmdUYuzg1APahJILhaqJ/MPK9J8+s7s/HGJnFk5/TbAUIKgEzU50MhRP45Q==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-datasource@2.8.0':
resolution: {integrity: sha512-jZ/EFSC7zJUu0ww94rcU1fRBO1yJOAuZEXBWRiNdiYDKMvlVE1yjIggEUGdTeHiHwuTasswYAtb2lPU487yyjQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
'@opentiny/vue-renderless': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-help@2.8.0':
resolution: {integrity: sha512-8Q1OtZlS0wOi9FnSAm5Jq1IyHeQXrbohMriA8EtJAHDUwpcPesFvrItsvovbSBEf+U/sHjvZwiYe6Q8pYooVjw==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-i18n@2.8.0':
resolution: {integrity: sha512-piOn6iKYKshgxSre4QYThbawHf/cOZM2bsCi1F6ioSLa4R0+ytSWahxgBcbDmgWDzWM7czbUtH6icbDK8IAhRw==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-materials@2.8.0':
resolution: {integrity: sha512-Yhx8M8Ez07LQtdU7WxuMo/WxF0HGXlHf3RXyTTPPBH1nFe+Sn5zeqk5b7naKMjPKOm2ENm/aYupTU1OBcNL+bQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
'@opentiny/vue-renderless': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-page@2.8.0':
resolution: {integrity: sha512-l4PFoJ/MlzFPBvWWO4l3WjU8Axil0hc7osrW1I/e5AMShFB9yepj2U97q9xTYcKuGyv4ajDiNCh8dOO5JemRsw==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
'@opentiny/vue-renderless': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-robot@2.8.0':
resolution: {integrity: sha512-fvi6QyqMRf9OaPvFBp8kab1WgVnAEcYKXJkgg7cTDHXp3bbb6wP6EzSC2fw6Pjx1wPsWQlQE3tRC9GuYi1uuvA==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
'@opentiny/vue-renderless': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-schema@2.8.0':
resolution: {integrity: sha512-A1DGWIBw3W6XVvS47ExJXkmmwlQeM+a89ilugBuExQJTlL2SCidJ+twXiQu/+ixl1/yfhuPAPetZoep0wl01uw==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-script@2.8.0':
resolution: {integrity: sha512-9BXo0cVRaviFUHBk5UmRGHYYZTutxlwa9iZkaH3/zPBky0kQnQqaSDO3k/w+IhFmMA6yKRdvvwOc1q0w5TdS7w==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-renderless': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-state@2.8.0':
resolution: {integrity: sha512-kBA11uSN+Q/9DIXMiULrl0UoAzNtTbSTuyahrvWc62SoUZlUKcBbvS/9LOBpjcHVn+F8sH+OOS0hHjVmv4DTIQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-tree@2.8.0':
resolution: {integrity: sha512-o4FpjYk3ZCeAAlcmjr5XquRyWpWkB7nxv3/OdwZiij/LV5rpFv+WNLKvuSZ1Ei80A3fxkr3uJIdqkkT8ZMFWfA==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
'@opentiny/vue-renderless': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-tutorial@2.8.0':
resolution: {integrity: sha512-758NXNLZQP3Hmty6rEHG41DzZvakhpi4AJg+9KaVOZqkRaqNF3ra3N7CzG0kSe6xyfW7o/k+T/iczkZ0GTUz0Q==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-setting-design@2.8.0':
resolution: {integrity: sha512-za+/bbEKXDFh7MwbKM/PM5Q/64OLNGuIHGZZyp4Ue/sxUz3Xd9Loc02r/RasSoYj7dTV/TcjraVD7MNWC3xWtA==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-setting-events@2.8.0':
resolution: {integrity: sha512-lRGHsBBgvwhu+nS5kHvRqgRGUUWXVzdjs2g7NK0px7xx+thKOkklyPhypC+Y3gRJD4SZmoiSkvk6IvnuokMk4g==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-setting-props@2.8.0':
resolution: {integrity: sha512-4K6Om6dbXcWdgyTuoLS+7gFuzdIB0rmR1NBtLKhorQngfKq7xze5U9vdWYyv0TnyLNQNQlwMOllo85FqBXsqew==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
'@opentiny/vue-renderless': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-setting-styles@2.8.0':
resolution: {integrity: sha512-fqA3wc2m88dRu5XcQfjsfL6y3rAAyOCbY5BjZd0yQHRQCABPZXvdiyC7jh8t9zmk5WghZS8AXpe8bpaKKgY+Qg==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
'@opentiny/vue-renderless': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-settings-panel@2.8.0':
resolution: {integrity: sha512-8d3o3rYNVlduWEqTOolW6A1s1fGcITAIkIDLwkL4U21EKNhipXWPymX/ON1ZZfCD/S6FG59MyJwTGAZ0IT6/hA==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-svgs@2.8.0':
resolution: {integrity: sha512-TbtoKgURylhMfSZiYzO9Zod2XPoUKeYF6i1b+dau1JKhyKR7poUSWA+lCc6Ro4+ntIPFq7XTnyyOiDnvwGKAgg==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-theme-base@2.8.0':
resolution: {integrity: sha512-OU2Ei4nflNVEcbSxmzoe2zU/YyjlApTsOteCIjnhVxv3Kcw7y4tyGwDWqySdomjQnSt587hzJhEeN1Tpf2mRmQ==}
'@opentiny/tiny-engine-toolbar-breadcrumb@2.8.0':
resolution: {integrity: sha512-9APso4aqb9Xoy0dMDkOuUbH38ChPWwRMiiAygUrVZyIhd6pBHqFrEQusWCpIQSpCPo8Ca8ucaFPYCnNlSARABw==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-clean@2.8.0':
resolution: {integrity: sha512-YUe5lItLusT5S+oQ2vDDav6rl/j5f18w+8al4RnYPul6/+iHdCVKBlOgYr1XWBR9EpHRNSMSEt7PU0zyofjG0g==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-collaboration@2.8.0':
resolution: {integrity: sha512-tCCb4qweYEEM9b2r+gic4cPdYEwHRdaESaLsPD4VA3mAp8ahwUNEIlSSF7WmxOGjoYl235cLtDBWHsNRP9Q1og==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-fullscreen@2.8.0':
resolution: {integrity: sha512-IjjeZlugI6Jz7qvoVXeyvmN7xDyp/kiPsSBcfDPfR85HGZMW1+ndmr1iipJ53BXHgOxVSfG82XX04v0dRYt5kg==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-generate-code@2.8.0':
resolution: {integrity: sha512-Y9OVMzMaT0bIrqWPpbSLS75prwcXjDEm8XbMAlXhVK8DM25Ww+P8O4aV0lSqw6EKCQpaopafpXrZ2+ymPUFzVQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-lang@2.8.0':
resolution: {integrity: sha512-9hUWYmewi9tkaBg7SJXZ1Azg5XWeptSRXlwH6DpKrAVGAKQP9XV+CSUGuai62HpzPfVuEWynSfEtFTU+/hKzYA==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-lock@2.8.0':
resolution: {integrity: sha512-pGtfVZE4wrJPh1UWjet/4Z+R4TxjaFInNjwsaucUl98fliyQdsb0OI+h/fTrRLdlunJAP7DiUyS9HuiRdwC6NA==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-logo@2.8.0':
resolution: {integrity: sha512-koXPyG3jJFchFLRCgKtpennGGOYrerWXrIZ9eCVjHvOSeT0mhF2G1l8kYAY+q3nsttpF3gS477AYP57IzgXYhQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-media@2.8.0':
resolution: {integrity: sha512-bvo0QtuxbHxxXK/IQGTN03C2XNxpAQE0zVlirUlKYWLF4qF9MQp7AndA50p8KlUVB8jllxAFhLyB6KUpKSgrhg==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-preview@2.8.0':
resolution: {integrity: sha512-ynZiIlLJ/Oc/ZlKSTgCugdQWvOyC31YLgDvnNMtphalET4IvKYJJksQCPholjIjCH+a+5BqieuYqOaGkuHUfeQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-redoundo@2.8.0':
resolution: {integrity: sha512-DExlPamSOugjILy2z+fDLGzhpd7wHJCFnN16I/UmzMkhefSghfWjZx9szwrugp8etj2ZqNHsjiYuBML5Dr/Rcg==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-refresh@2.8.0':
resolution: {integrity: sha512-8EKqhI4Xy0VuOOZYfKgodJzI/QONnSSk2El1Tbj4Ozuu3T3iMG5tftWaMy9XRgXZhcDUAkv11Z3TpmiRhTJBLg==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-save@2.8.0':
resolution: {integrity: sha512-Fvu5VNkVBNmkJKZDbuHh8G0LybHhYsgt9PctrZrDAjYkctq6nFonYUMomL+YtCYPSqPjCCu6ekSe351grwgDUQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-setting@2.8.0':
resolution: {integrity: sha512-l0I4gchv28nAr7LLhSyZFekJ6ovevv6+5LLcJMv62AMaYNUN+GJcPeazyt83eXX6vZPyERU3JUF4tJecTrerLA==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-theme-switch@2.8.0':
resolution: {integrity: sha512-KWAuLnVe30/K2tNuS+xOpiOfRUxMSGWgsOqO7XwUcXY6+zYGxqESLYLQgbt3atkK6E0ie3UlDPl9MM430emnsw==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-view-setting@2.8.0':
resolution: {integrity: sha512-oHu5+t8G4mZZmakmre9kedTJAsT1Nwz0jW4Y9s3ZAQV54+a1P00anDOTg9uYaLBgq9ZKZfplc78twZrv+eILwQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-utils@2.8.0':
resolution: {integrity: sha512-Jjc+o6iFKTjE0KzXKOaxe5briHlpQNdevOpOo/5wq4YJvkNT/9kvLUyYjeGwovGtlomqW1x0c3EjFoP+oEZVOw==}
peerDependencies:
'@opentiny/vue-renderless': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-vite-config@2.8.0':
resolution: {integrity: sha512-+dVjgupoOTcUYiQkixvdYyEpOeR79nZuK9mrscEu3vj5Z7TVuEEgBNR2bqlMNnp62bbp+/WAOcSEYzmrZhthQg==}
'@opentiny/tiny-engine-vite-plugin-meta-comments@2.8.0':
resolution: {integrity: sha512-tzui9FRj+WxZJdFqdqgBh06RLq4gHfTasDJ+TyKsGOeEpC1aKZjC7Rb0ehg5qN836fEz9+FbHdTSpug7Q5Tw7Q==}
'@opentiny/tiny-engine@2.8.0':
resolution: {integrity: sha512-HNRSXjAg4l/dFNT3ZgD3XuoIWwk9cBpktyJb42iA7WvjQNLDvjhcr0qx+dLKokYWE6rA7WBc/lDExEfufs04Ig==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-design-smb': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
'@opentiny/vue-locale': ^3.20.0
'@opentiny/vue-renderless': ^3.20.0
'@opentiny/vue-runtime': ^3.20.0
'@opentiny/vue-theme': ^3.20.0
vue: ^3.4.23
'@opentiny/tiny-robot-kit@0.3.0-rc.0':
resolution: {integrity: sha512-zWTZgLZ7TIiurPoBHVZ05msr6krCwqKC4GHIelYdWMRkx7rRiwws2vIhIH0IxZ6K3z30HrIzdkLqlPk7JEYsMA==}
peerDependencies:
vue: '>=3.0.0'
'@opentiny/tiny-robot-svgs@0.3.0-rc.0':
resolution: {integrity: sha512-vJeGs1C0DjZM+JErmareBsRNTeQu0ReuBNRqxQ0fdX8Q/wECpB5YYX8ZLB8mX6ngUkmAm0AbGgvhT8p+IjIJ4w==}
peerDependencies:
vue: '>=3.0.0'
'@opentiny/tiny-robot@0.3.0-rc.0':
resolution: {integrity: sha512-VrdSXzxXJObswp3alb7ICk4GscSxBsJMmkvSOkMqzAgKKO6HXS6C39MDRrgVv+ny4R8a3Sy6bK/sPsZfZvk6kQ==}
peerDependencies:
vue: ^3.3.11
'@opentiny/vue-action-menu@3.20.0':
resolution: {integrity: sha512-iyX8IhaXNH1uE1e/yEmqg3Kgf20hrGrXrMvfDPeYk07N/hiFnVkV8BPdseb/YYUxAsfFRThzp/4D1c7emIWAZg==}
'@opentiny/vue-action-sheet@3.20.0':
resolution: {integrity: sha512-RsPNahL74J2HhUGceO+kxO7HgC/JwnyMiZu7XVS9csq+eHolNz8xVEgX3MAgYdUagn8i049jVCA8oBkmTW2Thg==}
'@opentiny/vue-alert@3.20.0':
resolution: {integrity: sha512-5HKMhaFnoEBQEd/lB0q/2c2x9jTbNM6Ce7Smf//S63paJ7HwgipFEfErzgGH5gj5KRyELLgoIUXgyg+kN2hlog==}
'@opentiny/vue-amount@3.20.0':
resolution: {integrity: sha512-AGyz3p86yF1+s03upiJ5+dDrg/8enuf+WiVIWZp38D3ZLrkYvD/yMp1bOcOgQp8X+U5xUefpWi9WCqCy6hQt9g==}
'@opentiny/vue-anchor@3.20.0':
resolution: {integrity: sha512-0HaV3zCRZu7lRpK3eUiLXbTc4pETV0f5oDedZcgzyY17tzu7T3GK4UBdjpyVrlpUZ0KN0/43dRn4rC420FSkMg==}
'@opentiny/vue-area@3.20.0':
resolution: {integrity: sha512-tTM6DuG4578J38axe34olhBokzA9tE15WKG5w5A5C1pDePWxsVxqSBjFHoutQ6HdyOTo/jBYs2uwmZ0gu/G/bA==}
'@opentiny/vue-async-flowchart@3.20.0':
resolution: {integrity: sha512-0xQ9DK5nqMnS3gdbPX8N7MM03zAMwns6xs+fc6meA11TqHHj2sib/FBylZeD21R0WrY5CKzkHRgctdTJxpsLqQ==}
'@opentiny/vue-autocomplete@3.20.0':
resolution: {integrity: sha512-2C5C9VraAEOmJAUgxiiFDhnzmFGw2vw5QGlZsa7auZrmxFe1vv8MIGEcI/TTqM1aY3Q5VIBXtsmxPap4PaYjFQ==}
'@opentiny/vue-avatar@3.20.0':
resolution: {integrity: sha512-PrZGs5psFONX6aAsV70uZDl2O8hsh7A3L3K8yu17POPQ9NRC5PgYVuxnarYlA0rXcAXy8qUc+l8fdHyq5/YciA==}
'@opentiny/vue-badge@3.20.0':
resolution: {integrity: sha512-nq94ZliWOMTDFl7P1/PJFo2gV7JkMonsUJ+niVzqWF+O1w0ox5ACLICRVUQi1vAHDW227tDb4U87w5KP5oG0pg==}
'@opentiny/vue-base-select@3.20.0':
resolution: {integrity: sha512-7Z/12uX88tzDi1hyw6oEd1LhzB69xSVhRzVYsqR6szmPyiJY/Yb2OsLbe0OsLZ3ivogUT/JIlq8W4mS07IFwVg==}
'@opentiny/vue-breadcrumb-item@3.20.0':
resolution: {integrity: sha512-LIxqn+wFWDIyM7OeKdUuB/8c4DUZjttb+MX7eE9PphSiF+ZnxKfo+5HpNbMgUoWpo3zRhI+mOnfGEQ/g+OAZOg==}
'@opentiny/vue-breadcrumb@3.20.0':
resolution: {integrity: sha512-dFzovlZscbuHQs8cUXBPgxIGEbTSEpNP71zEeRA/hEUgK9CN7ghquBWctJaqsU5LfyHEuApIMkHr65YnrVHp9w==}
'@opentiny/vue-bulletin-board@3.20.0':
resolution: {integrity: sha512-NZow97Pa+ZGn64g+ViPhuazF9aRmLg604zzZmkGJi3VOYEu44tMvGqNr7Xk8AaxzEuMlB5c6mgS3kfloKohYiw==}
'@opentiny/vue-button-group@3.20.0':
resolution: {integrity: sha512-lQZY0ltkA3ooYn0+0SYdJTpvcDm32Hewi1CiJlE6UegXH0PAHd9mn5UORXic/8wF/3VhvxVJBs3xpvLZeS3cQA==}
'@opentiny/vue-button@3.20.0':
resolution: {integrity: sha512-3PhQa7VQOE6yuQrfydkGAQsAu2Z3WwhGiCq1F1LP3ZkWkN5Xl/RAH+f6LMeTeVyjCCTGod1VqOkIc8RTTKtdgQ==}
'@opentiny/vue-calendar-bar@3.20.0':
resolution: {integrity: sha512-wBA0uTSMo0gdmvMFMIMmHJlx4ktcec5pL0eW6no7n3Y+BMhIT8bTykzLQiH5+N1KZzMpIJxXyuHf4WI5h4MFqA==}
'@opentiny/vue-calendar-view@3.20.0':
resolution: {integrity: sha512-qv7lODj2i7E5IAWLXAa52YTx2U4z65RP97k7O2jsPYACFsuayH6+ceYm8PuxkY8dO5/xDQe89uuRYaRlQCQprw==}
'@opentiny/vue-calendar@3.20.0':
resolution: {integrity: sha512-3Rsa30l2hVREbN2VVoyKh7RWrSH5cTdwcGLvdZ1aoCfAxC3EKCUVn3qoyI2E13T/4nTPGSbZzIRfEoTECL2GCg==}
'@opentiny/vue-card-group@3.20.0':
resolution: {integrity: sha512-X/zBaxmnFB91bAVcg+nrsNjTN8nUhtibyxTt1jYAPjekxJTl37vbbNFy4obHsESIvEBI6Tru8kuMK4oRImsGCw==}
'@opentiny/vue-card-template@3.20.0':
resolution: {integrity: sha512-rmaXOQRPCoqZTm484jkGxN6hvIQ4fj0YfXBwNPph08lK2VQ2WVLsg96sNBPaAjMkl2Xo0HRyerEJ8RDOWj+JSw==}
'@opentiny/vue-card@3.20.0':
resolution: {integrity: sha512-oA+gJHM2XD/3go1pNJmBYRVinqD9roXqm9blXgMZ0u/oOmTwyq7K3OgEDM7LqV4JM1XokBQ7G4Yek1+OEVLFBw==}
'@opentiny/vue-carousel-item@3.20.0':
resolution: {integrity: sha512-lzLY11B6zKbQ1zsjLaW6C2zJTw1diAQ+ktB/fWDMot/TpIf4CklMlY2Vrb28KjUC36BBF6WkoyDBUXPu+vsklA==}
'@opentiny/vue-carousel@3.20.0':
resolution: {integrity: sha512-0d6goN5+7BIH1YiUUwtCKniNfDFDSFLOogw2lw2ylDwnQuX54YsYGsW43ZvwdI1+E9F+7/PkZos8rX5h4sK2MQ==}
'@opentiny/vue-cascader-menu@3.20.0':
resolution: {integrity: sha512-6rD19wylf+6hlyjijcHdYldPND2qmM0iHILCCJbx3RxtpGX7gKK3adNnjOTCsWdrJvsFAr7Wq0nPgXxEuXP57A==}
'@opentiny/vue-cascader-mobile@3.20.0':
resolution: {integrity: sha512-+F0uwGBditYffWTkzAEKd1sADYaJkZ2k4x3aXTYqt0LV5v8YP3N0xMRRmNYrHjukrbqNk4iHtxYv3l/QPLizEA==}
'@opentiny/vue-cascader-node@3.20.0':
resolution: {integrity: sha512-upfyePfI4op56nArfFw1FQehMmHp3UnCOYICiqb7EHtvyPAzrkqfRDFW26ndBHj+hK7ObL9OBdDqqyKMX7Aslw==}
'@opentiny/vue-cascader-panel@3.20.0':
resolution: {integrity: sha512-AHPRcn7xd3V+ZfddnMakR+wRMnXElh9EmZrftQp7hzSz/utKQqXQMybIv2m5SdmHFB7QJ/AbnboowPn2KPi+ig==}
'@opentiny/vue-cascader-select@3.20.0':
resolution: {integrity: sha512-Y5BIpTzD4T3eN9C9V+cXpRc/mgnOcyHkc6BvQb6TOf+V2JfauxhCYie0hOt33zbsGPOzlTXDqNPR8uN+IGZfRg==}
'@opentiny/vue-cascader-view@3.20.0':
resolution: {integrity: sha512-449sgZwV995SGs0zpVjm9UtdiWu5aF30pyC9mC4P5DhJr4WfOF4uc1lxdF6CPLrQWVgl6UUJmNqRuYxdFzd4+g==}
'@opentiny/vue-cascader@3.20.0':
resolution: {integrity: sha512-SdUrE5RBk/7I9ckrAKVD91LI9CjduFWR7fU2e6qrtDkmUCRzJ+F8KUNTwBU9u5xMUcAxRTgrIf1qDAFhVIWLUg==}
'@opentiny/vue-cell@3.20.0':
resolution: {integrity: sha512-Fd520gbFkHRIvCbPys9nn/hYLGieNa0WiVzSYdqVAL6EY1elURN5OJlKv0oHCfXaDL8y3Mgas0HXuTJjK0NTuQ==}
'@opentiny/vue-checkbox-button@3.20.0':
resolution: {integrity: sha512-5Bn1Kcx21IlpawUd3h4c8b60bHz4puRCKjoGgeGSPXXRPJ9Gdt7XliF/pAONcGhQ4/wPrFdR0QyZq4Xn+uskoA==}
'@opentiny/vue-checkbox-group@3.20.0':
resolution: {integrity: sha512-WFv6Iaqm/FYEBv+NsVdPl2epNTY6VR73EPdRrLaBpeo8MWJ2gCS+ucS7G4wBBFQhdDVjqTEkP/BY9lFoEWohXg==}
'@opentiny/vue-checkbox@3.20.0':
resolution: {integrity: sha512-2NNZCyKnfXQ0Ajd/m+f/V+GhCXGsfvNICr1M1F+fQ2Y61jq/QVVDdeLVJWDrLWOLUpnvcI+JNnjcX+Y6bu3Vew==}
'@opentiny/vue-col@3.20.0':
resolution: {integrity: sha512-aXxvz0Fb8wkjFUH1Cy8fENk1xzE1tB0ksV94AeUAAF7sop+MA49CdnjwQ/RSyxGOmbrtMn8NJlQh2nB/m0pgiQ==}
'@opentiny/vue-collapse-item@3.20.0':
resolution: {integrity: sha512-pjTY+gGoRrQtXs+O8sXLZi4bk9zSBkzqlL3/yDuY7RltLzG4QLxftLYXw/OStBtD4rntjsQBsVYh+wW8xvdo/A==}
'@opentiny/vue-collapse-transition@3.20.0':
resolution: {integrity: sha512-vJV4fxq29/pP6dD5RtA0YpxzzawCH/2qcZNGMwSubk8Eas15stImdnkw7q1yak826lr8Mjl18ULsAag2RLxVrA==}
'@opentiny/vue-collapse@3.20.0':
resolution: {integrity: sha512-croulEFqZ2YpEN/cHnoQlH4KOBQgyDnBXUmnGsRyBPy8mn+PVh1GXObsckpxRteJMUGRJkAN8/ddEW/G75Qo6A==}
'@opentiny/vue-color-picker@3.20.0':
resolution: {integrity: sha512-exn/c0E3oQSk5DvvbUWLym/SikYh0ktEY6xtX4/fQIKgOKT4464szECYoBI76pvmvGglijvbRlMeDnprc1Xubw==}
'@opentiny/vue-color-select-panel@3.20.0':
resolution: {integrity: sha512-FCQ/Ikcc8VO7yyfQm/3myeGWUzleKGdBUZgVM39JSI3CzV3GC/1Qm+AjIZTS0z2LQToU9WEAT8wZ8pBIpBQH8Q==}
'@opentiny/vue-column-list-group@3.20.0':
resolution: {integrity: sha512-s3RZqRZ0dkd74LOq+FasSqQe5M4BJ65z4UYiMg+Ol1cRc8LLmSGaYyAEeuICo/9ODI7f57k4sbUR1ShPYsh/ug==}
'@opentiny/vue-column-list-item@3.20.0':
resolution: {integrity: sha512-PmG4v/FjgTruX2ocw0MxzWFLNLJmSp/rvs72tAdnWRU711nI2aK5ZvNdelX8O9syVEiEPv0UHAMW1yDDqQvnXw==}
'@opentiny/vue-common@3.20.1':
resolution: {integrity: sha512-FSAPN4k7WOYGKDmLetNVHZk55QmVCanrLJvv+nnvcA3lbgxt+p/zzQrNCgXKn0scD9X/hv7emksy133ru1SPug==}
'@opentiny/vue-company@3.20.0':
resolution: {integrity: sha512-FRWal4/wWjszGT5smWAozyyD2ADKuVhfqBLS1KAAQ9d7EGJSL204IMmfVLmsyYUmg92gFQD1QKGGszBsViaZiw==}
'@opentiny/vue-config-provider@3.20.0':
resolution: {integrity: sha512-ppV6l4x4/JsvlcSX0qJlQiZ7nIemVg3wAVJ9YDrSf17ZWdDZZeinWfzpisCe7ZQpOY6mJBJFFBD03QLO/ia/Nw==}
'@opentiny/vue-container@3.20.0':
resolution: {integrity: sha512-ROLjfakjefRkpHihLjAT5EnyuyxqoLq5eJKGadJWWWY13S9u5pj3cvWuUCsz3+AiHxTZ4oReYXxpX5cd3TdL6w==}
'@opentiny/vue-country@3.20.0':
resolution: {integrity: sha512-/q9z7paxUMSQWaLl6ehvrcnmUSfVj9GBiCzB33QD0ztrbiiJYS40Dl9xWLuHvwTAWPHxodZj2QLaN9YFOWZYZA==}
'@opentiny/vue-crop@3.20.0':
resolution: {integrity: sha512-YPdiawm7soN0qhUyDOiPsuKtWG+qgb01PyyCoMgGvqwVWe3qcGAh1YtYQEt3CU1IdRiY2zvalgg2kxvzkGRCeQ==}
'@opentiny/vue-currency@3.20.0':
resolution: {integrity: sha512-5IGJqSU9RDV7DAs7/Iw4HXt8ZQVc9OTUkBLC+YHTRshI/Q3e72rKhR6pRYdL1mEjgidzzj5PonGaYW9ZiyalQw==}
'@opentiny/vue-date-panel@3.20.0':
resolution: {integrity: sha512-qaue/L1TCha6tkV6iJv+ltn6KLgS7F5+lIM7Tjua2utYLBK4snvvrHTGlGa4y0jY/B9W3j9CTy852GVrRct2pQ==}
'@opentiny/vue-date-picker-mobile-first@3.20.0':
resolution: {integrity: sha512-2TcBYjvI77R8O2QdUNRkfSmSzFZPgOMJg/C1XuW0eIn40nVUz6Q4LE/IS5EZHWu2akoKehBkfBORAQ7mbgQwMw==}
'@opentiny/vue-date-picker@3.20.0':
resolution: {integrity: sha512-pSz4ZZaz4zOq9pDhD2UnoUe1bu3xePs3JoTDa+XP8r2v5xysD2kwZFKZCrgdSd4VrnW8jlLx2nD9oZ6/lTbLgA==}
'@opentiny/vue-date-range@3.20.0':
resolution: {integrity: sha512-seDDJLqXb1a69WJLry/L+LWuyapmDI75AkXX/y0QjZ8dAPsAZXjfA9LcwkwNxFAHHV2SkswGNkFF9JfANQWNMQ==}