-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
12015 lines (9663 loc) · 428 KB
/
pnpm-lock.yaml
File metadata and controls
12015 lines (9663 loc) · 428 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/tiny-engine':
specifier: ^2.10.0
version: 2.10.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.29.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.18.13))(@vue/compiler-sfc@3.5.30)(echarts@5.4.1)(eslint@8.57.1)(vite@5.4.21(@types/node@18.19.130)(less@4.6.4))(vue-router@4.6.3(vue@3.5.30))(vue@3.5.30)(zod@3.25.76)
'@opentiny/tiny-engine-meta-register':
specifier: ^2.10.0
version: 2.10.0(@opentiny/vue-renderless@3.20.3)
'@opentiny/tiny-engine-utils':
specifier: ^2.10.0
version: 2.10.0(@opentiny/vue-renderless@3.20.3)(vue@3.5.30)
'@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.30)
vue:
specifier: ^3.4.21
version: 3.5.30
devDependencies:
'@opentiny/tiny-engine-mock':
specifier: ^2.10.0
version: 2.10.0
'@opentiny/tiny-engine-vite-config':
specifier: ^2.10.0
version: 2.10.0(esbuild@0.21.5)(monaco-editor@0.51.0)(rollup@4.59.0)(vue@3.5.30)
'@vitejs/plugin-vue':
specifier: ^5.1.2
version: 5.2.4(vite@5.4.21(@types/node@18.19.130)(less@4.6.4))(vue@3.5.30)
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.21(@types/node@18.19.130)(less@4.6.4)
packages:
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@babel/code-frame@7.29.0':
resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.29.0':
resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==}
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.29.0':
resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.23.6':
resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.29.1':
resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
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.28.6':
resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.28.6':
resolution: {integrity: sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==}
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.28.5':
resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.28.6':
resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.28.6':
resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==}
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.28.6':
resolution: {integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==}
engines: {node: '>=6.9.0'}
'@babel/helper-replace-supers@7.28.6':
resolution: {integrity: sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==}
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.28.5':
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.29.2':
resolution: {integrity: sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==}
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.29.2':
resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-syntax-jsx@7.28.6':
resolution: {integrity: sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-typescript@7.28.6':
resolution: {integrity: sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-typescript@7.28.6':
resolution: {integrity: sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/runtime@7.29.2':
resolution: {integrity: sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==}
engines: {node: '>=6.9.0'}
'@babel/template@7.28.6':
resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.23.9':
resolution: {integrity: sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.29.0':
resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
engines: {node: '>=6.9.0'}
'@babel/types@7.29.0':
resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
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.1':
resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
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.2':
resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
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.5':
resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==}
'@floating-ui/dom@1.7.6':
resolution: {integrity: sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==}
'@floating-ui/utils@0.2.11':
resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==}
'@hono/node-server@1.19.11':
resolution: {integrity: sha512-dr8/3zEaB+p0D2n/IUrlPF1HZm586qgJNXK1a9fhg/PzdtkK7Ksd5l312tJX2yBuALqDYBlG20QEbayqPyxn+g==}
engines: {node: '>=18.14.1'}
peerDependencies:
hono: ^4
'@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.4':
resolution: {integrity: sha512-vtZCt7NqWhKEtHa3SD/322DlgP5uR9MqWxnE0y8Q0tjDs9H5Lxhss+b5wv8rmuXRoHKLESNgw9d+EN9ybBbj9g==}
engines: {node: '>= 16'}
'@intlify/message-compiler@9.14.4':
resolution: {integrity: sha512-vcyCLiVRN628U38c3PbahrhbbXrckrM9zpy0KZVlDk2Z0OnGwv8uQNNXP3twwGtfLsCf4gu3ci6FMIZnPaqZsw==}
engines: {node: '>= 16'}
'@intlify/shared@9.14.4':
resolution: {integrity: sha512-P9zv6i1WvMc9qDBWvIgKkymjY2ptIiQ065PjDv7z7fDqH3J/HBRBN5IoiR46r/ujRcU7hCuSIZWvCAFCyuOYZA==}
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.27.1':
resolution: {integrity: sha512-sr6GbP+4edBwFndLbM60gf07z0FQ79gaExpnsjMGePXqFcSSb7t6iscpjk9DhFhwd+mTEQrzNafGP8/iGGFYaA==}
engines: {node: '>=18'}
peerDependencies:
'@cfworker/json-schema': ^4.1.1
zod: ^3.25 || ^4.0
peerDependenciesMeta:
'@cfworker/json-schema':
optional: true
'@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.11':
resolution: {integrity: sha512-YvNnKTSa8na/4WfqsFoz102MIcacvlVgdlVSrC5jvmXC9B3pitR7wqJIfofutS1f+KxaiBDUsrSHMDdb7wAKsQ==}
'@opentiny/huicharts@1.0.1':
resolution: {integrity: sha512-KsVNZwCstMJec2vM/uMff9jj/nNHXCchiwGGU4+MGP1nRwg7Hkj8pjgJQh/tJR6+AEKPY/h+TewRM3S6KBtn5g==}
'@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.10.0':
resolution: {integrity: sha512-epsCVlzR5/B1QD7hlcMylJeCM4i7KVIufYfmmTHXH81vQzdcTnAGlHXHk2eU4WmCAh+9XqfaYiAJWIJIOmIHcA==}
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.10.0':
resolution: {integrity: sha512-R4/bPaHa7wURAK2ohRX5A8ry7zvKpO7iMbWW/XeBHQrtwBkDAteV8Om90YDP3DTV61FXXZ4s3Uc4Zon5+y7/yA==}
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-canvas@2.10.0':
resolution: {integrity: sha512-VCLnajU4X5JgYG2CslhYofiofI5XSfj5gSb5BO8WTBEqzVdxgYqrjdvQCi0hrhSb3LLTabZCCfYoJm/ok1nZFA==}
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.10.0':
resolution: {integrity: sha512-47I2nr07QrdjrykxnjrYNyM4fYRpZjGnoVZ2/DbOr54FYqyAwMbG83s2sEsDp7HRl1jvUp7R7b1CvWFbx29fbA==}
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.10.0':
resolution: {integrity: sha512-IO6D1GMYioK7M4EN+Ig+uUFgxwRKcmpR3at+tgQiCP1LiHSY3xnx9BkW3eO2Oqt6HYJbOsJYSv99E1KoEcXG1g==}
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-dsl-vue@2.10.0':
resolution: {integrity: sha512-1PfmfHShnbiGkF2+uyvYa3MiflLCDMc3CyK/SeqKtWSF4NGW8Fy4MGRLNjKktvV4kBVeBrLkcAbUMm7lEEpMMg==}
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.10.0':
resolution: {integrity: sha512-KvmBXjI79rdJYK9CFAv4SBi2+A1HcWy1uBMxakgMtvUKVepNHOvWaZ+hkqZU2wDCDdaQDuL2Yn5RdlSTN+Q4Tg==}
peerDependencies:
vue: ^3.4.15
vue-i18n: ^9.9.0
'@opentiny/tiny-engine-layout@2.10.0':
resolution: {integrity: sha512-972dFjQvbyO030kcXbsmu3qG6lXk1/53ENODx8l+FMwponFyGbcQ6HeHrYVD/qFoBlGGMbKljpxwa/ayp1QaXA==}
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.10.0':
resolution: {integrity: sha512-sH8QQRCotEw0g5vLL8bX8CJwzHVtMfklyjT/+gRiAf78SkJHmr3RHi8YjA98n7OW/O/b4JmAOXxcH+EsCGjb/g==}
'@opentiny/tiny-engine-mock@2.10.0':
resolution: {integrity: sha512-69oC0eOM7uf+HyKe2LpK0l94u7BfNEnRDj/RQqQElTs/osg/Mth9oFz1W6ZBSLTEdg6AMARxUh9F6Yi3aHQslg==}
engines: {node: '>= 16', npm: '>= 6'}
'@opentiny/tiny-engine-plugin-block@2.10.0':
resolution: {integrity: sha512-2bag416xKir/pQiJoYgm+3Bj6pqa2fsSa8bQ5buJFzOpkw1+1yAsvbt7Dk03GXmf4xn43yaaUiPCa6dHwp8cLw==}
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.10.0':
resolution: {integrity: sha512-vYCMIW7VVD2jCUpp7zChxteXerm9bOzc0T55IfqDZV3CP8Ir+pzVvKrU13jQklSi+7Fu92ZCB7NsMq5y3j9X6g==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-datasource@2.10.0':
resolution: {integrity: sha512-o7e3AD1KfycurdbH8NOpgG+XbCU2mz2xVTy8tCzvBP/GxigpRqIxSlJIjMTi9IpT7dVXcM0U0vNUBCf0gpEPfQ==}
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.10.0':
resolution: {integrity: sha512-PII1WXWUtlO+fLwId3IEoWzG5zm7vQ4tL+xotz+qcAg0oWkrWobhjovewVpU74cJoEcHuggJxh6igccJue7LSQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-i18n@2.10.0':
resolution: {integrity: sha512-RWkzvHa/zT1Kz8rFdIFnlPvpck9ys18xI7qsQHxCzgFzAEiWz45mGZkCsDw4UZ2SSlilCYJL2PYLjqqQdwOIVA==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-materials@2.10.0':
resolution: {integrity: sha512-BFmKNAGp3cMhJX5JTjccz2JvrzptreYo+wEuu/uc+nWa64GXmRzll35sKVwzA+KS7+k8Qm2FBpAlr+86Gp2KVw==}
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-model-manager@2.10.0':
resolution: {integrity: sha512-fAISXJlPimmprYzBxCnrx2qXQOj4sUqvBNQss/ti7lW24qD3Wsu6EfkQgPRObMax+2YqKOUg5lL4v5S6yWOHQQ==}
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.10.0':
resolution: {integrity: sha512-TITww7zxqKrzkPxcDru0bQzHLuaQUjeprCgxHFdJ3zk3C95r9/aAyzBPb0zHTzqQ9sdi44qeoco7C2xPdFidGQ==}
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-resource@2.10.0':
resolution: {integrity: sha512-TfxqrrKtGtJo5vIiVuT9NdFE8xZveSSwH+yvI0Y4x7LUBCWBmQ8+D4p8ZFVtY+pdQLCkglg221zPF9NC/9OSfg==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-robot@2.10.0':
resolution: {integrity: sha512-HpSRTUfLZ8HxiEnfmJ/yWSvEGOfPmbtY356Posh0z16KNS8RWgv39i6iMx60c34fYKxPatH2PtrXg7jt0ApVXQ==}
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.10.0':
resolution: {integrity: sha512-EnaoYTMJoxWfIshO+1SubjrborPTTEhR/Q8CcnBgpzwEfj/7x9sl/pGLhu41oKKgRXGhyGlOlqhYW9LA0oM7Wg==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-script@2.10.0':
resolution: {integrity: sha512-MjptkiF31iFEYtgp4Tdm4+6u1Y13e3YE8mL0BISm77QUcNXgIokRVomiEqNeMK3pwyl1l0vWNA/YXrrWTcdfDw==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-renderless': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-state@2.10.0':
resolution: {integrity: sha512-aPGJ+VindrmBbhvH4YqdYrenD5AnwYd0jr9+7U9w85XCgzxPWKXGMRrBOU7xzhrdNt6BSyIqRQrp8R1Z3KfEOw==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-plugin-tree@2.10.0':
resolution: {integrity: sha512-IVpgHTHi7L/0Ii9AFTbRNepdw3px0qKksFGhgyuLkNz1SidAvKlLOxQYAPFfGPIhA243Xkp9EWt1zYULhz6nLQ==}
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.10.0':
resolution: {integrity: sha512-enOpcAGqMdIzN4jT2sPE3/BBBvz5Aa23vrKuufHWcv8X4P4M/jMSwcwuqcYoNUJ+S5J+RLzZHNoPMS32K8ubWg==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-setting-design@2.10.0':
resolution: {integrity: sha512-OcH+8ULbfYMflFTG7GwXvM7TGxjleyBwdA8NP4aRim1tePMew7TkxJTE/Q6HU2FM2ittOZhphEcAwCkieo1mlA==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-setting-events@2.10.0':
resolution: {integrity: sha512-OnQvvILEgrnrq4jWQWFF0Y30UGASFMt2W7McgkUtMoEG1mjiaKR1eDIl3GH+rJC27CJwq0KoWQq9wCxkAEXcFw==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-setting-props@2.10.0':
resolution: {integrity: sha512-wlRqeiarCDDuY/4L0bAUoNtsLYWssiJKID8ZRQAY8VDT/otOg1gs9tcfsbcS/6oGMOAYXWUHQBybWuJC+42gaQ==}
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.10.0':
resolution: {integrity: sha512-a/jWG2ls8cCqzcMYGstVvr8fvRj+uNDFovu8HGGuuFNQK7KcvxY0OqmQYFdQaYDoE7Sm25jPDydf3tBRtD91PA==}
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.10.0':
resolution: {integrity: sha512-QTGdTu6hvSZQ4yD7pkAAgTi67oJwZbQx/PMQ4aduM1upLC+eQXjwwgdzmB8jTi/msooX+/7cf+DtOKFvLPprmw==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-svgs@2.10.0':
resolution: {integrity: sha512-xY00jeao6FfuOZ44MpIE2FaiGOYBp+fNGv2cdR39ONMYNxAMjBpAzj/QX8ROH4K8aEvVEUSKbWvCzwQQlz3+TQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-theme-base@2.10.0':
resolution: {integrity: sha512-LRRcapPQro8oZXSoa4OQCngUVaDVC6nPfEutbvAGuXfrBmztV/eC5dA2q1eE8C5TbovyZFXKlqU0pQyaJX0X7w==}
'@opentiny/tiny-engine-toolbar-breadcrumb@2.10.0':
resolution: {integrity: sha512-x6kr6hqac7nWTS7LQHTIO66TlAAXOfFAZxsOYpCuS8pKU09esLRZsc2YRb0kjHgqJdzlgZRRrrg1TRlnTNaeAA==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-clean@2.10.0':
resolution: {integrity: sha512-8j6T0/b9L/oeosho4clzxV5PpTpn3XeEYRvbHFA1u3wuHJQMDhrg11G+mT+es/JYA8wsHd9sv9D7dAQGYCo9IA==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-collaboration@2.10.0':
resolution: {integrity: sha512-vvcjiGampRagHo3Jt8qhiQKrdSSEIp9Jz9wCy6Kc2J3i/H6V73YMScb6Ku/mT9AkY0WZq9VppagTQvX1TXNajQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-fullscreen@2.10.0':
resolution: {integrity: sha512-6gUqEodZ1uuPvL5cx1auY5XBkt1hgqSZ0PLDFOfERfP0SBg9lf46H36/8yJym85Ove2YISdfOtOSxOF4Dd/yfQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-generate-code@2.10.0':
resolution: {integrity: sha512-KkE+/fFAAMKAOLon9C92AusxcW+y+Ta6q0PMMW39mKzsKV2ODycXjnGcfCAVRd8GXGK/qvjSaYjBuMxpVvvZsA==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-lang@2.10.0':
resolution: {integrity: sha512-ul9dM2oUczRTT1fiShBDSTaBsDQ88YiXhWfwPpEhBZrMwPI80qktMiR1bhqAcuR1F01YtLuDRCEEB7AV+8Axuw==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-lock@2.10.0':
resolution: {integrity: sha512-UC9y/xGKcxVmUFmDsqrj1ypQLdLIYVdh8xZnj2yAfzJ7M8uf8m0tnBDR6flkpzpM+Vn9LoFxYvIWgkAMkrRU+A==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-logo@2.10.0':
resolution: {integrity: sha512-zV5Xs0Qii+3kE83n9eo0xy9rKG9udReKaGa+paAM5gIGolJVEIElC8wy0EH2j1Wr1PrwTLe6e/u6UJobYFRJLQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-media@2.10.0':
resolution: {integrity: sha512-ihgLs8G2oPdAnRMgFXKkTdJ0siZauiN76YymG7gbYkrKuDVvfA89S6m46q1Ne0kKD6KV7VPntyTvguN1PAqJwQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-preview@2.10.0':
resolution: {integrity: sha512-7pXu/mx6Zhr8ZNalXkMCsAYYK1DW7iuIL762nAQ8yNSi7jxTxmgxUJq2JvKK/2D8lymX+BcbXrspuOYMiNQlJg==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-redoundo@2.10.0':
resolution: {integrity: sha512-Vu4pL9EY+XtEMWZfiDRIpAJ5i8G0RaoE+4WHbfxMUmt7vJ86VStgJb18cgFCgWDr0Ybz6JD5fpxIZveZKnrktg==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-refresh@2.10.0':
resolution: {integrity: sha512-P6TQ7AUenu3V0BTfkFGZJnx0MrasUXXnsjiowEOekT6umkn8z7XunKZPv8Tl5wQKHuU91tanPUTXEzjUFs5FrQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-save@2.10.0':
resolution: {integrity: sha512-PugzYI2mLSWJzckk8q/y9ZK3Ql2FxOW6vuFJvPYiGgGx9Re75Qvgh+HRT5bhonLmntDZcXhWhFFyspbgBWr4sg==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-setting@2.10.0':
resolution: {integrity: sha512-hlulf/UCk2WA5ScbDz1XTYFkmupxoHXxExuRYmB2GsRYvHnTNj21Vn0zNHSxMNc7I5Zc9ONTZimA/KvJB2CAfA==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-theme-switch@2.10.0':
resolution: {integrity: sha512-NCSbL2+z1INd85yo+VoGHeHcNIgHgLt3vjA9wZwuRxRWZu+5vzXLoAqWsIWKP2ODfwFIG1aS0/839xeMIcvetg==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-user@2.10.0':
resolution: {integrity: sha512-/6TJfJbW28Mwe9RzpkFChe3vCIPphQTMhDYxQgXZaJbWLoLewlIvZM1hUtIdaiodNY2uyWLQmSNnrq4ff/HNSA==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-toolbar-view-setting@2.10.0':
resolution: {integrity: sha512-tpJiGIhanfA6F+ASgzGtycaFTCnbCE+uEMEjAYoH1hQbBpfSvre2DAA1zfMuiGO06zKZBEfvpY1PDUeTbOFc9g==}
peerDependencies:
'@opentiny/vue': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-utils@2.10.0':
resolution: {integrity: sha512-+5PwB4pgacimBfUelyIGEZ1ytzJxvegWldGZjFiy90s0TLhPU3vBiqHFpf9PL1EAtOJkWV0sQ0jPEQxD5hDD6Q==}
peerDependencies:
'@opentiny/vue-renderless': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-vite-config@2.10.0':
resolution: {integrity: sha512-KYwNnfJcK75l40CtC73CDr5en9gVLLC/IaR4iW314l1O130AzNcztC/dQ/9xpnJsNrx6tHpzGjTAIQNOA7DsDg==}
'@opentiny/tiny-engine-vite-plugin-meta-comments@2.10.0':
resolution: {integrity: sha512-Y7Oi7OhWT5QLaPqIEoLSWoXdzwwfSsozzKa44o/CAqj0InEbdG2rK2lGdvBu9c1EHSxw01XkuDg8iuxEbdae8g==}
'@opentiny/tiny-engine-workspace-application-center@2.10.0':
resolution: {integrity: sha512-S65kWZswbyMZIJGoyvTj4PiFscHzVZg+QuU0EUyE2B2b/FSl4sleu1Tfv+DudsdzcLmptN7O83qzdBaAmnNGZQ==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine-workspace-template-center@2.10.0':
resolution: {integrity: sha512-Jv+mYcAltUrV10mTW4vR2aMwGqxfdfB3HuHY7Y/0phSWHTKRCXzxAPnBWS7hhsev5ECnFiWKSuZjE6jaAhxcCg==}
peerDependencies:
'@opentiny/vue': ^3.20.0
'@opentiny/vue-icon': ^3.20.0
vue: ^3.4.15
'@opentiny/tiny-engine@2.10.0':
resolution: {integrity: sha512-Jj4McVZUJZN9N9zPGYsl3Wz/yuDVtSZkxgzhI/ffOPzgvbr0uV6lE+awHm9txA512oc2mi2z9oufTj5lQ+hohg==}
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
vue-router: 4.6.3
'@opentiny/tiny-robot-kit@0.3.1':
resolution: {integrity: sha512-ecbPu7i0Uo7Fany8q9LKDhxJx7NjU9YHKJKd64QhQ4zGkEEcLkf7R99IDdmuul7AY7+kXm6zoSfE4dFdABlISw==}
peerDependencies:
vue: '>=3.0.0'
'@opentiny/tiny-robot-svgs@0.3.1':
resolution: {integrity: sha512-W/NnCDLiI93huO4zCaw2tgVz5n/A7Ry1VSJr835UisqZODT5Al/CNac/f84YECDUtycdA0h8+O2dQOGc3MWLxQ==}
peerDependencies:
vue: '>=3.0.0'
'@opentiny/tiny-robot@0.3.1':
resolution: {integrity: sha512-K4EfI5iiJQZ5H11kp4xNf4+93CgbtfxgaQXEjzVMQ4dnOde/wWtVbXY3TF+/5e3mPctckIbilv2GV2xFvgT9fA==}
peerDependencies:
vue: ^3.3.11
'@opentiny/tiny-schema-renderer@1.0.0-beta.6':
resolution: {integrity: sha512-zkLJAoAqBVxg4cPDmuK0UltBj41Xt+iExzQxfDxzwJxiDv6bg0vkMtWM9hoWj7V9IIlNBeTnSgQPV0HMxSTUxg==}
'@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':