@vue/language-service 1.8.18 → 1.8.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data/language-blocks/en.json +136 -0
- package/data/language-blocks/fr.json +136 -0
- package/data/language-blocks/it.json +830 -0
- package/data/language-blocks/ja.json +136 -0
- package/data/language-blocks/ko.json +136 -0
- package/data/language-blocks/pt.json +136 -0
- package/data/language-blocks/zh-cn.json +136 -0
- package/data/model-modifiers/en.json +24 -0
- package/data/model-modifiers/fr.json +24 -0
- package/data/model-modifiers/it.json +140 -0
- package/data/model-modifiers/ja.json +24 -0
- package/data/model-modifiers/ko.json +24 -0
- package/data/model-modifiers/pt.json +24 -0
- package/data/model-modifiers/zh-cn.json +24 -0
- package/data/template/en.json +209 -1
- package/data/template/fr.json +209 -1
- package/data/template/it.json +1186 -0
- package/data/template/ja.json +209 -1
- package/data/template/ko.json +209 -1
- package/data/template/pt.json +208 -0
- package/data/template/zh-cn.json +209 -1
- package/out/helpers.js +4 -4
- package/out/plugins/data.js +19 -18
- package/out/plugins/vue-directive-comments.js +1 -1
- package/out/plugins/vue-extract-file.js +9 -11
- package/out/plugins/vue-template.js +7 -7
- package/out/plugins/vue-toggle-v-bind-codeaction.js +3 -3
- package/out/plugins/vue.js +1 -1
- package/package.json +8 -8
package/data/template/fr.json
CHANGED
|
@@ -36,6 +36,14 @@
|
|
|
36
36
|
{
|
|
37
37
|
"name": "pt",
|
|
38
38
|
"url": "https://pt.vuejs.org/api/built-in-components.html#transition"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "bn",
|
|
42
|
+
"url": "https://bn.vuejs.org/api/built-in-components.html#transition"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "it",
|
|
46
|
+
"url": "https://it.vuejs.org/api/built-in-components.html#transition"
|
|
39
47
|
}
|
|
40
48
|
]
|
|
41
49
|
},
|
|
@@ -74,6 +82,14 @@
|
|
|
74
82
|
{
|
|
75
83
|
"name": "pt",
|
|
76
84
|
"url": "https://pt.vuejs.org/api/built-in-components.html#transitiongroup"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "bn",
|
|
88
|
+
"url": "https://bn.vuejs.org/api/built-in-components.html#transitiongroup"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "it",
|
|
92
|
+
"url": "https://it.vuejs.org/api/built-in-components.html#transitiongroup"
|
|
77
93
|
}
|
|
78
94
|
]
|
|
79
95
|
},
|
|
@@ -112,6 +128,14 @@
|
|
|
112
128
|
{
|
|
113
129
|
"name": "pt",
|
|
114
130
|
"url": "https://pt.vuejs.org/api/built-in-components.html#keepalive"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "bn",
|
|
134
|
+
"url": "https://bn.vuejs.org/api/built-in-components.html#keepalive"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "it",
|
|
138
|
+
"url": "https://it.vuejs.org/api/built-in-components.html#keepalive"
|
|
115
139
|
}
|
|
116
140
|
]
|
|
117
141
|
},
|
|
@@ -119,7 +143,7 @@
|
|
|
119
143
|
"name": "Teleport",
|
|
120
144
|
"description": {
|
|
121
145
|
"kind": "markdown",
|
|
122
|
-
"value": "\nRend le contenu de son slot à une autre partie du DOM.\n\n- **Props :**\n\n ```ts\n interface TeleportProps {\n /**\n * Requis. Spécifie le conteneur cible.\n * Peut être un sélecteur ou un élément.\n */\n to: string | HTMLElement\n /**\n * S'il vaut `true`, le contenu restera à son emplacement\n * original au lieu d'être déplacé dans le conteneur cible.\n * Peut être changé de manière dynamique.\n */\n disabled?: boolean\n }\n ```\n\n- **Exemple**\n\n En spécifiant le conteneur cible :\n\n ```html\n <
|
|
146
|
+
"value": "\nRend le contenu de son slot à une autre partie du DOM.\n\n- **Props :**\n\n ```ts\n interface TeleportProps {\n /**\n * Requis. Spécifie le conteneur cible.\n * Peut être un sélecteur ou un élément.\n */\n to: string | HTMLElement\n /**\n * S'il vaut `true`, le contenu restera à son emplacement\n * original au lieu d'être déplacé dans le conteneur cible.\n * Peut être changé de manière dynamique.\n */\n disabled?: boolean\n }\n ```\n\n- **Exemple**\n\n En spécifiant le conteneur cible :\n\n ```html\n <Teleport to=\"#some-id\" />\n <Teleport to=\".some-class\" />\n <Teleport to=\"[data-teleport]\" />\n ```\n\n En le désactivant de manière conditionnelle :\n\n ```html\n <Teleport to=\"#popup\" :disabled=\"displayVideoInline\">\n <video src=\"./my-movie.mp4\">\n </Teleport>\n ```\n\n- **Voir aussi** [Guide - Teleport](https://fr.vuejs.org/guide/built-ins/teleport.html)\n"
|
|
123
147
|
},
|
|
124
148
|
"attributes": [],
|
|
125
149
|
"references": [
|
|
@@ -150,6 +174,14 @@
|
|
|
150
174
|
{
|
|
151
175
|
"name": "pt",
|
|
152
176
|
"url": "https://pt.vuejs.org/api/built-in-components.html#teleport"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"name": "bn",
|
|
180
|
+
"url": "https://bn.vuejs.org/api/built-in-components.html#teleport"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"name": "it",
|
|
184
|
+
"url": "https://it.vuejs.org/api/built-in-components.html#teleport"
|
|
153
185
|
}
|
|
154
186
|
]
|
|
155
187
|
},
|
|
@@ -188,6 +220,14 @@
|
|
|
188
220
|
{
|
|
189
221
|
"name": "pt",
|
|
190
222
|
"url": "https://pt.vuejs.org/api/built-in-components.html#suspense"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"name": "bn",
|
|
226
|
+
"url": "https://bn.vuejs.org/api/built-in-components.html#suspense"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"name": "it",
|
|
230
|
+
"url": "https://it.vuejs.org/api/built-in-components.html#suspense"
|
|
191
231
|
}
|
|
192
232
|
]
|
|
193
233
|
},
|
|
@@ -226,6 +266,14 @@
|
|
|
226
266
|
{
|
|
227
267
|
"name": "pt",
|
|
228
268
|
"url": "https://pt.vuejs.org/api/built-in-special-elements.html#component"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"name": "bn",
|
|
272
|
+
"url": "https://bn.vuejs.org/api/built-in-special-elements.html#component"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"name": "it",
|
|
276
|
+
"url": "https://it.vuejs.org/api/built-in-special-elements.html#component"
|
|
229
277
|
}
|
|
230
278
|
]
|
|
231
279
|
},
|
|
@@ -264,6 +312,14 @@
|
|
|
264
312
|
{
|
|
265
313
|
"name": "pt",
|
|
266
314
|
"url": "https://pt.vuejs.org/api/built-in-special-elements.html#slot"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"name": "bn",
|
|
318
|
+
"url": "https://bn.vuejs.org/api/built-in-special-elements.html#slot"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"name": "it",
|
|
322
|
+
"url": "https://it.vuejs.org/api/built-in-special-elements.html#slot"
|
|
267
323
|
}
|
|
268
324
|
]
|
|
269
325
|
},
|
|
@@ -302,6 +358,14 @@
|
|
|
302
358
|
{
|
|
303
359
|
"name": "pt",
|
|
304
360
|
"url": "https://pt.vuejs.org/api/built-in-special-elements.html#template"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"name": "bn",
|
|
364
|
+
"url": "https://bn.vuejs.org/api/built-in-special-elements.html#template"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"name": "it",
|
|
368
|
+
"url": "https://it.vuejs.org/api/built-in-special-elements.html#template"
|
|
305
369
|
}
|
|
306
370
|
]
|
|
307
371
|
}
|
|
@@ -341,6 +405,14 @@
|
|
|
341
405
|
{
|
|
342
406
|
"name": "pt",
|
|
343
407
|
"url": "https://pt.vuejs.org/api/built-in-directives.html#v-text"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"name": "bn",
|
|
411
|
+
"url": "https://bn.vuejs.org/api/built-in-directives.html#v-text"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"name": "it",
|
|
415
|
+
"url": "https://it.vuejs.org/api/built-in-directives.html#v-text"
|
|
344
416
|
}
|
|
345
417
|
]
|
|
346
418
|
},
|
|
@@ -378,6 +450,14 @@
|
|
|
378
450
|
{
|
|
379
451
|
"name": "pt",
|
|
380
452
|
"url": "https://pt.vuejs.org/api/built-in-directives.html#v-html"
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"name": "bn",
|
|
456
|
+
"url": "https://bn.vuejs.org/api/built-in-directives.html#v-html"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"name": "it",
|
|
460
|
+
"url": "https://it.vuejs.org/api/built-in-directives.html#v-html"
|
|
381
461
|
}
|
|
382
462
|
]
|
|
383
463
|
},
|
|
@@ -415,6 +495,14 @@
|
|
|
415
495
|
{
|
|
416
496
|
"name": "pt",
|
|
417
497
|
"url": "https://pt.vuejs.org/api/built-in-directives.html#v-show"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"name": "bn",
|
|
501
|
+
"url": "https://bn.vuejs.org/api/built-in-directives.html#v-show"
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"name": "it",
|
|
505
|
+
"url": "https://it.vuejs.org/api/built-in-directives.html#v-show"
|
|
418
506
|
}
|
|
419
507
|
]
|
|
420
508
|
},
|
|
@@ -452,6 +540,14 @@
|
|
|
452
540
|
{
|
|
453
541
|
"name": "pt",
|
|
454
542
|
"url": "https://pt.vuejs.org/api/built-in-directives.html#v-if"
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
"name": "bn",
|
|
546
|
+
"url": "https://bn.vuejs.org/api/built-in-directives.html#v-if"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"name": "it",
|
|
550
|
+
"url": "https://it.vuejs.org/api/built-in-directives.html#v-if"
|
|
455
551
|
}
|
|
456
552
|
]
|
|
457
553
|
},
|
|
@@ -490,6 +586,14 @@
|
|
|
490
586
|
{
|
|
491
587
|
"name": "pt",
|
|
492
588
|
"url": "https://pt.vuejs.org/api/built-in-directives.html#v-else"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"name": "bn",
|
|
592
|
+
"url": "https://bn.vuejs.org/api/built-in-directives.html#v-else"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"name": "it",
|
|
596
|
+
"url": "https://it.vuejs.org/api/built-in-directives.html#v-else"
|
|
493
597
|
}
|
|
494
598
|
]
|
|
495
599
|
},
|
|
@@ -527,6 +631,14 @@
|
|
|
527
631
|
{
|
|
528
632
|
"name": "pt",
|
|
529
633
|
"url": "https://pt.vuejs.org/api/built-in-directives.html#v-else-if"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
"name": "bn",
|
|
637
|
+
"url": "https://bn.vuejs.org/api/built-in-directives.html#v-else-if"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"name": "it",
|
|
641
|
+
"url": "https://it.vuejs.org/api/built-in-directives.html#v-else-if"
|
|
530
642
|
}
|
|
531
643
|
]
|
|
532
644
|
},
|
|
@@ -564,6 +676,14 @@
|
|
|
564
676
|
{
|
|
565
677
|
"name": "pt",
|
|
566
678
|
"url": "https://pt.vuejs.org/api/built-in-directives.html#v-for"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"name": "bn",
|
|
682
|
+
"url": "https://bn.vuejs.org/api/built-in-directives.html#v-for"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"name": "it",
|
|
686
|
+
"url": "https://it.vuejs.org/api/built-in-directives.html#v-for"
|
|
567
687
|
}
|
|
568
688
|
]
|
|
569
689
|
},
|
|
@@ -601,6 +721,14 @@
|
|
|
601
721
|
{
|
|
602
722
|
"name": "pt",
|
|
603
723
|
"url": "https://pt.vuejs.org/api/built-in-directives.html#v-on"
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
"name": "bn",
|
|
727
|
+
"url": "https://bn.vuejs.org/api/built-in-directives.html#v-on"
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
"name": "it",
|
|
731
|
+
"url": "https://it.vuejs.org/api/built-in-directives.html#v-on"
|
|
604
732
|
}
|
|
605
733
|
]
|
|
606
734
|
},
|
|
@@ -638,6 +766,14 @@
|
|
|
638
766
|
{
|
|
639
767
|
"name": "pt",
|
|
640
768
|
"url": "https://pt.vuejs.org/api/built-in-directives.html#v-bind"
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
"name": "bn",
|
|
772
|
+
"url": "https://bn.vuejs.org/api/built-in-directives.html#v-bind"
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
"name": "it",
|
|
776
|
+
"url": "https://it.vuejs.org/api/built-in-directives.html#v-bind"
|
|
641
777
|
}
|
|
642
778
|
]
|
|
643
779
|
},
|
|
@@ -675,6 +811,14 @@
|
|
|
675
811
|
{
|
|
676
812
|
"name": "pt",
|
|
677
813
|
"url": "https://pt.vuejs.org/api/built-in-directives.html#v-model"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"name": "bn",
|
|
817
|
+
"url": "https://bn.vuejs.org/api/built-in-directives.html#v-model"
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"name": "it",
|
|
821
|
+
"url": "https://it.vuejs.org/api/built-in-directives.html#v-model"
|
|
678
822
|
}
|
|
679
823
|
]
|
|
680
824
|
},
|
|
@@ -712,6 +856,14 @@
|
|
|
712
856
|
{
|
|
713
857
|
"name": "pt",
|
|
714
858
|
"url": "https://pt.vuejs.org/api/built-in-directives.html#v-slot"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"name": "bn",
|
|
862
|
+
"url": "https://bn.vuejs.org/api/built-in-directives.html#v-slot"
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"name": "it",
|
|
866
|
+
"url": "https://it.vuejs.org/api/built-in-directives.html#v-slot"
|
|
715
867
|
}
|
|
716
868
|
]
|
|
717
869
|
},
|
|
@@ -749,6 +901,14 @@
|
|
|
749
901
|
{
|
|
750
902
|
"name": "pt",
|
|
751
903
|
"url": "https://pt.vuejs.org/api/built-in-directives.html#v-pre"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"name": "bn",
|
|
907
|
+
"url": "https://bn.vuejs.org/api/built-in-directives.html#v-pre"
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"name": "it",
|
|
911
|
+
"url": "https://it.vuejs.org/api/built-in-directives.html#v-pre"
|
|
752
912
|
}
|
|
753
913
|
]
|
|
754
914
|
},
|
|
@@ -786,6 +946,14 @@
|
|
|
786
946
|
{
|
|
787
947
|
"name": "pt",
|
|
788
948
|
"url": "https://pt.vuejs.org/api/built-in-directives.html#v-once"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"name": "bn",
|
|
952
|
+
"url": "https://bn.vuejs.org/api/built-in-directives.html#v-once"
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"name": "it",
|
|
956
|
+
"url": "https://it.vuejs.org/api/built-in-directives.html#v-once"
|
|
789
957
|
}
|
|
790
958
|
]
|
|
791
959
|
},
|
|
@@ -823,6 +991,14 @@
|
|
|
823
991
|
{
|
|
824
992
|
"name": "pt",
|
|
825
993
|
"url": "https://pt.vuejs.org/api/built-in-directives.html#v-memo"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"name": "bn",
|
|
997
|
+
"url": "https://bn.vuejs.org/api/built-in-directives.html#v-memo"
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"name": "it",
|
|
1001
|
+
"url": "https://it.vuejs.org/api/built-in-directives.html#v-memo"
|
|
826
1002
|
}
|
|
827
1003
|
]
|
|
828
1004
|
},
|
|
@@ -860,6 +1036,14 @@
|
|
|
860
1036
|
{
|
|
861
1037
|
"name": "pt",
|
|
862
1038
|
"url": "https://pt.vuejs.org/api/built-in-directives.html#v-cloak"
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
"name": "bn",
|
|
1042
|
+
"url": "https://bn.vuejs.org/api/built-in-directives.html#v-cloak"
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
"name": "it",
|
|
1046
|
+
"url": "https://it.vuejs.org/api/built-in-directives.html#v-cloak"
|
|
863
1047
|
}
|
|
864
1048
|
]
|
|
865
1049
|
},
|
|
@@ -897,6 +1081,14 @@
|
|
|
897
1081
|
{
|
|
898
1082
|
"name": "pt",
|
|
899
1083
|
"url": "https://pt.vuejs.org/api/built-in-special-attributes.html#key"
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"name": "bn",
|
|
1087
|
+
"url": "https://bn.vuejs.org/api/built-in-special-attributes.html#key"
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
"name": "it",
|
|
1091
|
+
"url": "https://it.vuejs.org/api/built-in-special-attributes.html#key"
|
|
900
1092
|
}
|
|
901
1093
|
]
|
|
902
1094
|
},
|
|
@@ -934,6 +1126,14 @@
|
|
|
934
1126
|
{
|
|
935
1127
|
"name": "pt",
|
|
936
1128
|
"url": "https://pt.vuejs.org/api/built-in-special-attributes.html#ref"
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"name": "bn",
|
|
1132
|
+
"url": "https://bn.vuejs.org/api/built-in-special-attributes.html#ref"
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
"name": "it",
|
|
1136
|
+
"url": "https://it.vuejs.org/api/built-in-special-attributes.html#ref"
|
|
937
1137
|
}
|
|
938
1138
|
]
|
|
939
1139
|
},
|
|
@@ -971,6 +1171,14 @@
|
|
|
971
1171
|
{
|
|
972
1172
|
"name": "pt",
|
|
973
1173
|
"url": "https://pt.vuejs.org/api/built-in-special-attributes.html#is"
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
"name": "bn",
|
|
1177
|
+
"url": "https://bn.vuejs.org/api/built-in-special-attributes.html#is"
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"name": "it",
|
|
1181
|
+
"url": "https://it.vuejs.org/api/built-in-special-attributes.html#is"
|
|
974
1182
|
}
|
|
975
1183
|
]
|
|
976
1184
|
}
|