primevue 3.28.0 → 3.29.0

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.
Files changed (420) hide show
  1. package/README.md +3 -3
  2. package/autocomplete/AutoComplete.d.ts +153 -1
  3. package/autocomplete/AutoComplete.vue +46 -17
  4. package/autocomplete/autocomplete.cjs.js +80 -74
  5. package/autocomplete/autocomplete.cjs.min.js +1 -1
  6. package/autocomplete/autocomplete.esm.js +80 -75
  7. package/autocomplete/autocomplete.esm.min.js +1 -1
  8. package/autocomplete/autocomplete.js +81 -76
  9. package/autocomplete/autocomplete.min.js +1 -1
  10. package/basecomponent/BaseComponent.vue +19 -5
  11. package/basecomponent/basecomponent.cjs.js +19 -5
  12. package/basecomponent/basecomponent.cjs.min.js +1 -1
  13. package/basecomponent/basecomponent.esm.js +19 -5
  14. package/basecomponent/basecomponent.esm.min.js +1 -1
  15. package/basecomponent/basecomponent.js +20 -7
  16. package/basecomponent/basecomponent.min.js +1 -1
  17. package/calendar/Calendar.d.ts +269 -0
  18. package/calendar/Calendar.vue +75 -59
  19. package/calendar/calendar.cjs.js +223 -259
  20. package/calendar/calendar.cjs.min.js +1 -1
  21. package/calendar/calendar.esm.js +223 -260
  22. package/calendar/calendar.esm.min.js +1 -1
  23. package/calendar/calendar.js +224 -261
  24. package/calendar/calendar.min.js +1 -1
  25. package/carousel/Carousel.d.ts +154 -0
  26. package/carousel/Carousel.vue +27 -14
  27. package/carousel/carousel.cjs.js +64 -65
  28. package/carousel/carousel.cjs.min.js +1 -1
  29. package/carousel/carousel.esm.js +64 -66
  30. package/carousel/carousel.esm.min.js +1 -1
  31. package/carousel/carousel.js +65 -67
  32. package/carousel/carousel.min.js +1 -1
  33. package/cascadeselect/CascadeSelect.d.ts +133 -0
  34. package/cascadeselect/CascadeSelect.vue +15 -12
  35. package/cascadeselect/CascadeSelectSub.vue +7 -3
  36. package/cascadeselect/cascadeselect.cjs.js +63 -66
  37. package/cascadeselect/cascadeselect.cjs.min.js +1 -1
  38. package/cascadeselect/cascadeselect.esm.js +63 -67
  39. package/cascadeselect/cascadeselect.esm.min.js +1 -1
  40. package/cascadeselect/cascadeselect.js +64 -68
  41. package/cascadeselect/cascadeselect.min.js +1 -1
  42. package/checkbox/Checkbox.d.ts +60 -0
  43. package/checkbox/Checkbox.vue +7 -5
  44. package/checkbox/checkbox.cjs.js +17 -15
  45. package/checkbox/checkbox.cjs.min.js +1 -1
  46. package/checkbox/checkbox.esm.js +17 -16
  47. package/checkbox/checkbox.esm.min.js +1 -1
  48. package/checkbox/checkbox.js +18 -17
  49. package/checkbox/checkbox.min.js +1 -1
  50. package/chips/Chips.d.ts +80 -0
  51. package/chips/Chips.vue +9 -5
  52. package/chips/chips.cjs.js +23 -24
  53. package/chips/chips.cjs.min.js +1 -1
  54. package/chips/chips.esm.js +23 -25
  55. package/chips/chips.esm.min.js +1 -1
  56. package/chips/chips.js +24 -26
  57. package/chips/chips.min.js +1 -1
  58. package/colorpicker/ColorPicker.d.ts +76 -0
  59. package/colorpicker/ColorPicker.vue +11 -9
  60. package/colorpicker/colorpicker.cjs.js +28 -27
  61. package/colorpicker/colorpicker.cjs.min.js +1 -1
  62. package/colorpicker/colorpicker.esm.js +28 -28
  63. package/colorpicker/colorpicker.esm.min.js +1 -1
  64. package/colorpicker/colorpicker.js +29 -29
  65. package/colorpicker/colorpicker.min.js +1 -1
  66. package/column/Column.d.ts +303 -2
  67. package/column/Column.vue +3 -0
  68. package/column/column.cjs.js +7 -0
  69. package/column/column.cjs.min.js +1 -1
  70. package/column/column.esm.js +3 -0
  71. package/column/column.esm.min.js +1 -1
  72. package/column/column.js +7 -2
  73. package/column/column.min.js +1 -1
  74. package/columngroup/ColumnGroup.d.ts +34 -0
  75. package/columngroup/ColumnGroup.vue +3 -0
  76. package/columngroup/columngroup.cjs.js +7 -0
  77. package/columngroup/columngroup.cjs.min.js +1 -1
  78. package/columngroup/columngroup.esm.js +3 -0
  79. package/columngroup/columngroup.esm.min.js +1 -1
  80. package/columngroup/columngroup.js +7 -2
  81. package/columngroup/columngroup.min.js +1 -1
  82. package/config/PrimeVue.d.ts +163 -2
  83. package/confirmdialog/ConfirmDialog.d.ts +14 -7
  84. package/contextmenu/ContextMenu.d.ts +1 -1
  85. package/core/core.js +448 -331
  86. package/core/core.min.js +9 -9
  87. package/datatable/BodyCell.vue +29 -13
  88. package/datatable/ColumnFilter.vue +49 -20
  89. package/datatable/DataTable.d.ts +188 -1
  90. package/datatable/DataTable.vue +25 -14
  91. package/datatable/FooterCell.vue +15 -1
  92. package/datatable/HeaderCell.vue +31 -6
  93. package/datatable/HeaderCheckbox.vue +35 -5
  94. package/datatable/RowCheckbox.vue +36 -5
  95. package/datatable/RowRadioButton.vue +26 -6
  96. package/datatable/TableBody.vue +41 -11
  97. package/datatable/TableFooter.vue +31 -5
  98. package/datatable/TableHeader.vue +53 -6
  99. package/datatable/datatable.cjs.js +559 -376
  100. package/datatable/datatable.cjs.min.js +1 -1
  101. package/datatable/datatable.esm.js +559 -377
  102. package/datatable/datatable.esm.min.js +1 -1
  103. package/datatable/datatable.js +560 -378
  104. package/datatable/datatable.min.js +1 -1
  105. package/dataview/DataView.d.ts +72 -0
  106. package/dataview/DataView.vue +13 -8
  107. package/dataview/dataview.cjs.js +33 -37
  108. package/dataview/dataview.cjs.min.js +1 -1
  109. package/dataview/dataview.esm.js +33 -38
  110. package/dataview/dataview.esm.min.js +1 -1
  111. package/dataview/dataview.js +33 -38
  112. package/dataview/dataview.min.js +1 -1
  113. package/dataviewlayoutoptions/DataViewLayoutOptions.d.ts +65 -0
  114. package/dataviewlayoutoptions/DataViewLayoutOptions.vue +7 -5
  115. package/dataviewlayoutoptions/dataviewlayoutoptions.cjs.js +19 -17
  116. package/dataviewlayoutoptions/dataviewlayoutoptions.cjs.min.js +1 -1
  117. package/dataviewlayoutoptions/dataviewlayoutoptions.esm.js +19 -18
  118. package/dataviewlayoutoptions/dataviewlayoutoptions.esm.min.js +1 -1
  119. package/dataviewlayoutoptions/dataviewlayoutoptions.js +20 -19
  120. package/dataviewlayoutoptions/dataviewlayoutoptions.min.js +1 -1
  121. package/dialog/Dialog.d.ts +6 -4
  122. package/dialog/Dialog.vue +2 -3
  123. package/dialog/dialog.cjs.js +4 -5
  124. package/dialog/dialog.cjs.min.js +1 -1
  125. package/dialog/dialog.esm.js +4 -5
  126. package/dialog/dialog.esm.min.js +1 -1
  127. package/dialog/dialog.js +4 -5
  128. package/dialog/dialog.min.js +1 -1
  129. package/dropdown/Dropdown.d.ts +162 -1
  130. package/dropdown/Dropdown.vue +44 -25
  131. package/dropdown/dropdown.cjs.js +97 -93
  132. package/dropdown/dropdown.cjs.min.js +1 -1
  133. package/dropdown/dropdown.esm.js +97 -94
  134. package/dropdown/dropdown.esm.min.js +1 -1
  135. package/dropdown/dropdown.js +98 -95
  136. package/dropdown/dropdown.min.js +1 -1
  137. package/editor/Editor.d.ts +67 -0
  138. package/editor/Editor.vue +35 -33
  139. package/editor/editor.cjs.js +88 -73
  140. package/editor/editor.cjs.min.js +1 -1
  141. package/editor/editor.esm.js +85 -74
  142. package/editor/editor.esm.min.js +1 -1
  143. package/editor/editor.js +89 -75
  144. package/editor/editor.min.js +1 -1
  145. package/fileupload/FileUpload.d.ts +23 -23
  146. package/fileupload/FileUpload.vue +3 -3
  147. package/fileupload/fileupload.cjs.js +4 -4
  148. package/fileupload/fileupload.cjs.min.js +1 -1
  149. package/fileupload/fileupload.esm.js +4 -4
  150. package/fileupload/fileupload.esm.min.js +1 -1
  151. package/fileupload/fileupload.js +4 -4
  152. package/fileupload/fileupload.min.js +1 -1
  153. package/galleria/Galleria.d.ts +196 -0
  154. package/galleria/Galleria.vue +5 -3
  155. package/galleria/GalleriaContent.vue +10 -6
  156. package/galleria/GalleriaItem.vue +12 -9
  157. package/galleria/GalleriaThumbnails.vue +46 -9
  158. package/galleria/galleria.cjs.js +106 -104
  159. package/galleria/galleria.cjs.min.js +1 -1
  160. package/galleria/galleria.esm.js +106 -105
  161. package/galleria/galleria.esm.min.js +1 -1
  162. package/galleria/galleria.js +107 -106
  163. package/galleria/galleria.min.js +1 -1
  164. package/image/Image.d.ts +170 -0
  165. package/image/Image.vue +49 -21
  166. package/image/image.cjs.js +94 -59
  167. package/image/image.cjs.min.js +1 -1
  168. package/image/image.esm.js +94 -60
  169. package/image/image.esm.min.js +1 -1
  170. package/image/image.js +95 -61
  171. package/image/image.min.js +1 -1
  172. package/inputmask/InputMask.d.ts +25 -0
  173. package/inputmask/InputMask.vue +3 -1
  174. package/inputmask/inputmask.cjs.js +9 -3
  175. package/inputmask/inputmask.cjs.min.js +1 -1
  176. package/inputmask/inputmask.esm.js +6 -4
  177. package/inputmask/inputmask.esm.min.js +1 -1
  178. package/inputmask/inputmask.js +10 -5
  179. package/inputmask/inputmask.min.js +1 -1
  180. package/inputnumber/InputNumber.d.ts +69 -0
  181. package/inputnumber/InputNumber.vue +13 -11
  182. package/inputnumber/inputnumber.cjs.js +19 -28
  183. package/inputnumber/inputnumber.cjs.min.js +1 -1
  184. package/inputnumber/inputnumber.esm.js +19 -29
  185. package/inputnumber/inputnumber.esm.min.js +1 -1
  186. package/inputnumber/inputnumber.js +20 -30
  187. package/inputnumber/inputnumber.min.js +1 -1
  188. package/inputswitch/InputSwitch.d.ts +51 -0
  189. package/inputswitch/InputSwitch.vue +7 -4
  190. package/inputswitch/inputswitch.cjs.js +15 -11
  191. package/inputswitch/inputswitch.cjs.min.js +1 -1
  192. package/inputswitch/inputswitch.esm.js +12 -12
  193. package/inputswitch/inputswitch.esm.min.js +1 -1
  194. package/inputswitch/inputswitch.js +16 -13
  195. package/inputswitch/inputswitch.min.js +1 -1
  196. package/inputtext/InputText.d.ts +25 -0
  197. package/inputtext/InputText.vue +4 -1
  198. package/inputtext/inputtext.cjs.js +9 -3
  199. package/inputtext/inputtext.cjs.min.js +1 -1
  200. package/inputtext/inputtext.esm.js +6 -4
  201. package/inputtext/inputtext.esm.min.js +1 -1
  202. package/inputtext/inputtext.js +10 -5
  203. package/inputtext/inputtext.min.js +1 -1
  204. package/knob/Knob.d.ts +78 -0
  205. package/knob/Knob.vue +8 -4
  206. package/knob/knob.cjs.js +17 -13
  207. package/knob/knob.cjs.min.js +1 -1
  208. package/knob/knob.esm.js +14 -14
  209. package/knob/knob.esm.min.js +1 -1
  210. package/knob/knob.js +18 -15
  211. package/knob/knob.min.js +1 -1
  212. package/listbox/Listbox.d.ts +137 -1
  213. package/listbox/Listbox.vue +28 -15
  214. package/listbox/listbox.cjs.js +83 -78
  215. package/listbox/listbox.cjs.min.js +1 -1
  216. package/listbox/listbox.esm.js +83 -79
  217. package/listbox/listbox.esm.min.js +1 -1
  218. package/listbox/listbox.js +84 -80
  219. package/listbox/listbox.min.js +1 -1
  220. package/megamenu/MegaMenu.d.ts +5 -5
  221. package/menu/Menu.d.ts +4 -4
  222. package/menubar/Menubar.d.ts +1 -1
  223. package/multiselect/MultiSelect.d.ts +223 -1
  224. package/multiselect/MultiSelect.vue +72 -41
  225. package/multiselect/multiselect.cjs.js +156 -151
  226. package/multiselect/multiselect.cjs.min.js +1 -1
  227. package/multiselect/multiselect.esm.js +156 -152
  228. package/multiselect/multiselect.esm.min.js +1 -1
  229. package/multiselect/multiselect.js +157 -153
  230. package/multiselect/multiselect.min.js +1 -1
  231. package/orderlist/OrderList.d.ts +94 -0
  232. package/orderlist/OrderList.vue +38 -18
  233. package/orderlist/orderlist.cjs.js +50 -36
  234. package/orderlist/orderlist.cjs.min.js +1 -1
  235. package/orderlist/orderlist.esm.js +50 -37
  236. package/orderlist/orderlist.esm.min.js +1 -1
  237. package/orderlist/orderlist.js +51 -38
  238. package/orderlist/orderlist.min.js +1 -1
  239. package/organizationchart/OrganizationChart.d.ts +129 -0
  240. package/organizationchart/OrganizationChart.vue +14 -2
  241. package/organizationchart/OrganizationChartNode.vue +37 -16
  242. package/organizationchart/organizationchart.cjs.js +77 -61
  243. package/organizationchart/organizationchart.cjs.min.js +1 -1
  244. package/organizationchart/organizationchart.esm.js +77 -62
  245. package/organizationchart/organizationchart.esm.min.js +1 -1
  246. package/organizationchart/organizationchart.js +78 -63
  247. package/organizationchart/organizationchart.min.js +1 -1
  248. package/package.json +1 -1
  249. package/paginator/CurrentPageReport.vue +5 -1
  250. package/paginator/FirstPageLink.vue +13 -2
  251. package/paginator/JumpToPageDropdown.vue +3 -1
  252. package/paginator/JumpToPageInput.vue +3 -1
  253. package/paginator/LastPageLink.vue +13 -2
  254. package/paginator/NextPageLink.vue +13 -2
  255. package/paginator/PageLinks.vue +12 -2
  256. package/paginator/Paginator.d.ts +133 -0
  257. package/paginator/Paginator.vue +23 -12
  258. package/paginator/PrevPageLink.vue +13 -2
  259. package/paginator/RowsPerPageDropdown.vue +3 -1
  260. package/paginator/paginator.cjs.js +135 -76
  261. package/paginator/paginator.cjs.min.js +1 -1
  262. package/paginator/paginator.esm.js +135 -77
  263. package/paginator/paginator.esm.min.js +1 -1
  264. package/paginator/paginator.js +136 -78
  265. package/paginator/paginator.min.js +1 -1
  266. package/panelmenu/PanelMenu.d.ts +4 -8
  267. package/password/Password.d.ts +104 -0
  268. package/password/Password.vue +11 -9
  269. package/password/password.cjs.js +26 -28
  270. package/password/password.cjs.min.js +1 -1
  271. package/password/password.esm.js +26 -29
  272. package/password/password.esm.min.js +1 -1
  273. package/password/password.js +27 -30
  274. package/password/password.min.js +1 -1
  275. package/picklist/PickList.d.ts +160 -0
  276. package/picklist/PickList.vue +46 -34
  277. package/picklist/picklist.cjs.js +111 -85
  278. package/picklist/picklist.cjs.min.js +1 -1
  279. package/picklist/picklist.esm.js +111 -86
  280. package/picklist/picklist.esm.min.js +1 -1
  281. package/picklist/picklist.js +112 -87
  282. package/picklist/picklist.min.js +1 -1
  283. package/radiobutton/RadioButton.d.ts +55 -0
  284. package/radiobutton/RadioButton.vue +7 -5
  285. package/radiobutton/radiobutton.cjs.js +19 -16
  286. package/radiobutton/radiobutton.cjs.min.js +1 -1
  287. package/radiobutton/radiobutton.esm.js +16 -17
  288. package/radiobutton/radiobutton.esm.min.js +1 -1
  289. package/radiobutton/radiobutton.js +20 -18
  290. package/radiobutton/radiobutton.min.js +1 -1
  291. package/rating/Rating.d.ts +96 -0
  292. package/rating/Rating.vue +32 -9
  293. package/rating/rating.cjs.js +41 -34
  294. package/rating/rating.cjs.min.js +1 -1
  295. package/rating/rating.esm.js +41 -35
  296. package/rating/rating.esm.min.js +1 -1
  297. package/rating/rating.js +42 -36
  298. package/rating/rating.min.js +1 -1
  299. package/row/Row.d.ts +29 -0
  300. package/row/Row.vue +3 -0
  301. package/row/row.cjs.js +7 -0
  302. package/row/row.cjs.min.js +1 -1
  303. package/row/row.esm.js +3 -0
  304. package/row/row.esm.min.js +1 -1
  305. package/row/row.js +7 -2
  306. package/row/row.min.js +1 -1
  307. package/selectbutton/SelectButton.d.ts +68 -0
  308. package/selectbutton/SelectButton.vue +13 -2
  309. package/selectbutton/selectbutton.cjs.js +20 -10
  310. package/selectbutton/selectbutton.cjs.min.js +1 -1
  311. package/selectbutton/selectbutton.esm.js +20 -11
  312. package/selectbutton/selectbutton.esm.min.js +1 -1
  313. package/selectbutton/selectbutton.js +21 -12
  314. package/selectbutton/selectbutton.min.js +1 -1
  315. package/slider/Slider.d.ts +48 -0
  316. package/slider/Slider.vue +7 -2
  317. package/slider/slider.cjs.js +22 -16
  318. package/slider/slider.cjs.min.js +1 -1
  319. package/slider/slider.esm.js +19 -17
  320. package/slider/slider.esm.min.js +1 -1
  321. package/slider/slider.js +23 -18
  322. package/slider/slider.min.js +1 -1
  323. package/splitbutton/SplitButton.d.ts +0 -4
  324. package/splitbutton/SplitButton.vue +2 -2
  325. package/splitbutton/splitbutton.cjs.js +7 -6
  326. package/splitbutton/splitbutton.cjs.min.js +1 -1
  327. package/splitbutton/splitbutton.esm.js +7 -6
  328. package/splitbutton/splitbutton.esm.min.js +1 -1
  329. package/splitbutton/splitbutton.js +7 -6
  330. package/splitbutton/splitbutton.min.js +1 -1
  331. package/splitter/Splitter.d.ts +3 -3
  332. package/textarea/Textarea.d.ts +32 -0
  333. package/textarea/Textarea.vue +4 -1
  334. package/textarea/textarea.cjs.js +9 -3
  335. package/textarea/textarea.cjs.min.js +1 -1
  336. package/textarea/textarea.esm.js +6 -4
  337. package/textarea/textarea.esm.min.js +1 -1
  338. package/textarea/textarea.js +10 -5
  339. package/textarea/textarea.min.js +1 -1
  340. package/timeline/Timeline.d.ts +49 -0
  341. package/timeline/Timeline.vue +9 -7
  342. package/timeline/timeline.cjs.js +19 -21
  343. package/timeline/timeline.cjs.min.js +1 -1
  344. package/timeline/timeline.esm.js +16 -22
  345. package/timeline/timeline.esm.min.js +1 -1
  346. package/timeline/timeline.js +20 -23
  347. package/timeline/timeline.min.js +1 -1
  348. package/toast/Toast.d.ts +4 -0
  349. package/toast/Toast.vue +1 -1
  350. package/toast/toast.cjs.js +3 -3
  351. package/toast/toast.cjs.min.js +1 -1
  352. package/toast/toast.esm.js +3 -3
  353. package/toast/toast.esm.min.js +1 -1
  354. package/toast/toast.js +3 -3
  355. package/toast/toast.min.js +1 -1
  356. package/togglebutton/ToggleButton.d.ts +59 -0
  357. package/togglebutton/ToggleButton.vue +7 -5
  358. package/togglebutton/togglebutton.cjs.js +15 -14
  359. package/togglebutton/togglebutton.cjs.min.js +1 -1
  360. package/togglebutton/togglebutton.esm.js +15 -15
  361. package/togglebutton/togglebutton.esm.min.js +1 -1
  362. package/togglebutton/togglebutton.js +16 -16
  363. package/togglebutton/togglebutton.min.js +1 -1
  364. package/tooltip/Tooltip.d.ts +10 -0
  365. package/tooltip/tooltip.cjs.js +51 -9
  366. package/tooltip/tooltip.cjs.min.js +1 -1
  367. package/tooltip/tooltip.esm.js +52 -10
  368. package/tooltip/tooltip.esm.min.js +1 -1
  369. package/tooltip/tooltip.js +51 -9
  370. package/tooltip/tooltip.min.js +1 -1
  371. package/tree/Tree.d.ts +137 -0
  372. package/tree/Tree.vue +12 -9
  373. package/tree/TreeNode.vue +23 -10
  374. package/tree/tree.cjs.js +85 -79
  375. package/tree/tree.cjs.min.js +1 -1
  376. package/tree/tree.esm.js +85 -80
  377. package/tree/tree.esm.min.js +1 -1
  378. package/tree/tree.js +86 -81
  379. package/tree/tree.min.js +1 -1
  380. package/treeselect/TreeSelect.d.ts +103 -1
  381. package/treeselect/TreeSelect.vue +15 -12
  382. package/treeselect/treeselect.cjs.js +37 -39
  383. package/treeselect/treeselect.cjs.min.js +1 -1
  384. package/treeselect/treeselect.esm.js +37 -40
  385. package/treeselect/treeselect.esm.min.js +1 -1
  386. package/treeselect/treeselect.js +38 -41
  387. package/treeselect/treeselect.min.js +1 -1
  388. package/treetable/BodyCell.vue +38 -10
  389. package/treetable/FooterCell.vue +15 -1
  390. package/treetable/HeaderCell.vue +28 -5
  391. package/treetable/TreeTable.d.ts +162 -0
  392. package/treetable/TreeTable.vue +25 -19
  393. package/treetable/TreeTableRow.vue +5 -0
  394. package/treetable/treetable.cjs.js +205 -158
  395. package/treetable/treetable.cjs.min.js +1 -1
  396. package/treetable/treetable.esm.js +205 -159
  397. package/treetable/treetable.esm.min.js +1 -1
  398. package/treetable/treetable.js +206 -160
  399. package/treetable/treetable.min.js +1 -1
  400. package/tristatecheckbox/TriStateCheckbox.d.ts +93 -0
  401. package/tristatecheckbox/TriStateCheckbox.vue +19 -8
  402. package/tristatecheckbox/tristatecheckbox.cjs.js +31 -22
  403. package/tristatecheckbox/tristatecheckbox.cjs.min.js +1 -1
  404. package/tristatecheckbox/tristatecheckbox.esm.js +31 -23
  405. package/tristatecheckbox/tristatecheckbox.esm.min.js +1 -1
  406. package/tristatecheckbox/tristatecheckbox.js +32 -24
  407. package/tristatecheckbox/tristatecheckbox.min.js +1 -1
  408. package/ts-helpers.d.ts +3 -1
  409. package/vetur-attributes.json +180 -0
  410. package/vetur-tags.json +94 -39
  411. package/virtualscroller/VirtualScroller.d.ts +97 -0
  412. package/virtualscroller/VirtualScroller.vue +7 -5
  413. package/virtualscroller/virtualscroller.cjs.js +22 -19
  414. package/virtualscroller/virtualscroller.cjs.min.js +1 -1
  415. package/virtualscroller/virtualscroller.esm.js +22 -20
  416. package/virtualscroller/virtualscroller.esm.min.js +1 -1
  417. package/virtualscroller/virtualscroller.js +23 -21
  418. package/virtualscroller/virtualscroller.min.js +1 -1
  419. package/web-types.json +467 -3
  420. package/datatable/TableLoadingBody.vue +0 -25
package/web-types.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "framework": "vue",
4
4
  "name": "PrimeVue",
5
- "version": "3.28.0",
5
+ "version": "3.29.0",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -709,6 +709,16 @@
709
709
  "kind": "expression",
710
710
  "type": "string"
711
711
  }
712
+ },
713
+ {
714
+ "name": "pt",
715
+ "default": "null",
716
+ "doc-url": "https://primevue.org/autocomplete",
717
+ "description": "Uses to pass attributes to DOM elements inside the component.",
718
+ "value": {
719
+ "kind": "expression",
720
+ "type": "any"
721
+ }
712
722
  }
713
723
  ],
714
724
  "events": [
@@ -2011,6 +2021,16 @@
2011
2021
  "kind": "expression",
2012
2022
  "type": "object"
2013
2023
  }
2024
+ },
2025
+ {
2026
+ "name": "pt",
2027
+ "default": "null",
2028
+ "doc-url": "https://primevue.org/calendar",
2029
+ "description": "Uses to pass attributes to DOM elements inside the component.",
2030
+ "value": {
2031
+ "kind": "expression",
2032
+ "type": "any"
2033
+ }
2014
2034
  }
2015
2035
  ],
2016
2036
  "events": [
@@ -2392,6 +2412,16 @@
2392
2412
  "kind": "expression",
2393
2413
  "type": "boolean"
2394
2414
  }
2415
+ },
2416
+ {
2417
+ "name": "pt",
2418
+ "default": "null",
2419
+ "doc-url": "https://primevue.org/carousel",
2420
+ "description": "Uses to pass attributes to DOM elements inside the component.",
2421
+ "value": {
2422
+ "kind": "expression",
2423
+ "type": "any"
2424
+ }
2395
2425
  }
2396
2426
  ],
2397
2427
  "slots": [
@@ -2745,6 +2775,16 @@
2745
2775
  "kind": "expression",
2746
2776
  "type": "string"
2747
2777
  }
2778
+ },
2779
+ {
2780
+ "name": "pt",
2781
+ "default": "null",
2782
+ "doc-url": "https://primevue.org/cascadeselect",
2783
+ "description": "Uses to pass attributes to DOM elements inside the component.",
2784
+ "value": {
2785
+ "kind": "expression",
2786
+ "type": "any"
2787
+ }
2748
2788
  }
2749
2789
  ],
2750
2790
  "events": [
@@ -3170,6 +3210,16 @@
3170
3210
  "kind": "expression",
3171
3211
  "type": "string"
3172
3212
  }
3213
+ },
3214
+ {
3215
+ "name": "pt",
3216
+ "default": "null",
3217
+ "doc-url": "https://primevue.org/checkbox",
3218
+ "description": "Uses to pass attributes to DOM elements inside the component.",
3219
+ "value": {
3220
+ "kind": "expression",
3221
+ "type": "any"
3222
+ }
3173
3223
  }
3174
3224
  ],
3175
3225
  "events": [
@@ -3413,6 +3463,16 @@
3413
3463
  "kind": "expression",
3414
3464
  "type": "object"
3415
3465
  }
3466
+ },
3467
+ {
3468
+ "name": "pt",
3469
+ "default": "null",
3470
+ "doc-url": "https://primevue.org/chips",
3471
+ "description": "Uses to pass attributes to DOM elements inside the component.",
3472
+ "value": {
3473
+ "kind": "expression",
3474
+ "type": "any"
3475
+ }
3416
3476
  }
3417
3477
  ],
3418
3478
  "events": [
@@ -3596,6 +3656,16 @@
3596
3656
  "kind": "expression",
3597
3657
  "type": "string"
3598
3658
  }
3659
+ },
3660
+ {
3661
+ "name": "pt",
3662
+ "default": "null",
3663
+ "doc-url": "https://primevue.org/colorpicker",
3664
+ "description": "Uses to pass attributes to DOM elements inside the component.",
3665
+ "value": {
3666
+ "kind": "expression",
3667
+ "type": "any"
3668
+ }
3599
3669
  }
3600
3670
  ],
3601
3671
  "events": [
@@ -4058,6 +4128,16 @@
4058
4128
  "kind": "expression",
4059
4129
  "type": "boolean"
4060
4130
  }
4131
+ },
4132
+ {
4133
+ "name": "pt",
4134
+ "default": "null",
4135
+ "doc-url": "https://primevue.org/datatable",
4136
+ "description": "Uses to pass attributes to DOM elements inside the component.",
4137
+ "value": {
4138
+ "kind": "expression",
4139
+ "type": "any"
4140
+ }
4061
4141
  }
4062
4142
  ],
4063
4143
  "slots": [
@@ -4185,7 +4265,29 @@
4185
4265
  "symbol": "ColumnGroup"
4186
4266
  },
4187
4267
  "doc-url": "https://primevue.org/datatable",
4188
- "description": "Columns can be grouped at header and footer sections by defining a ColumnGroup with nested rows and columns"
4268
+ "description": "Columns can be grouped at header and footer sections by defining a ColumnGroup with nested rows and columns",
4269
+ "attributes": [
4270
+ {
4271
+ "name": "type",
4272
+ "default": "null",
4273
+ "doc-url": "https://primevue.org/datatable",
4274
+ "description": "Defines the type of the group.",
4275
+ "value": {
4276
+ "kind": "expression",
4277
+ "type": "string"
4278
+ }
4279
+ },
4280
+ {
4281
+ "name": "pt",
4282
+ "default": "null",
4283
+ "doc-url": "https://primevue.org/datatable",
4284
+ "description": "Uses to pass attributes to DOM elements inside the component.",
4285
+ "value": {
4286
+ "kind": "expression",
4287
+ "type": "any"
4288
+ }
4289
+ }
4290
+ ]
4189
4291
  },
4190
4292
  {
4191
4293
  "name": "ConfirmDialog",
@@ -5049,6 +5151,16 @@
5049
5151
  "kind": "expression",
5050
5152
  "type": "string"
5051
5153
  }
5154
+ },
5155
+ {
5156
+ "name": "pt",
5157
+ "default": "null",
5158
+ "doc-url": "https://primevue.org/datatable",
5159
+ "description": "Uses to pass attributes to DOM elements inside the component.",
5160
+ "value": {
5161
+ "kind": "expression",
5162
+ "type": "any"
5163
+ }
5052
5164
  }
5053
5165
  ],
5054
5166
  "events": [
@@ -6180,6 +6292,16 @@
6180
6292
  "kind": "expression",
6181
6293
  "type": "string"
6182
6294
  }
6295
+ },
6296
+ {
6297
+ "name": "pt",
6298
+ "default": "null",
6299
+ "doc-url": "https://primevue.org/dataview",
6300
+ "description": "Uses to pass attributes to DOM elements inside the component.",
6301
+ "value": {
6302
+ "kind": "expression",
6303
+ "type": "any"
6304
+ }
6183
6305
  }
6184
6306
  ],
6185
6307
  "events": [
@@ -6271,6 +6393,16 @@
6271
6393
  "kind": "expression",
6272
6394
  "type": "string"
6273
6395
  }
6396
+ },
6397
+ {
6398
+ "name": "pt",
6399
+ "default": "null",
6400
+ "doc-url": "https://primevue.org/dataview",
6401
+ "description": "Uses to pass attributes to DOM elements inside the component.",
6402
+ "value": {
6403
+ "kind": "expression",
6404
+ "type": "any"
6405
+ }
6274
6406
  }
6275
6407
  ],
6276
6408
  "slots": [
@@ -7223,6 +7355,16 @@
7223
7355
  "kind": "expression",
7224
7356
  "type": "string"
7225
7357
  }
7358
+ },
7359
+ {
7360
+ "name": "pt",
7361
+ "default": "null",
7362
+ "doc-url": "https://primevue.org/dropdown",
7363
+ "description": "Uses to pass attributes to DOM elements inside the component.",
7364
+ "value": {
7365
+ "kind": "expression",
7366
+ "type": "any"
7367
+ }
7226
7368
  }
7227
7369
  ],
7228
7370
  "events": [
@@ -7464,6 +7606,16 @@
7464
7606
  "kind": "expression",
7465
7607
  "type": "object"
7466
7608
  }
7609
+ },
7610
+ {
7611
+ "name": "pt",
7612
+ "default": "null",
7613
+ "doc-url": "https://primevue.org/editor",
7614
+ "description": "Uses to pass attributes to DOM elements inside the component.",
7615
+ "value": {
7616
+ "kind": "expression",
7617
+ "type": "any"
7618
+ }
7467
7619
  }
7468
7620
  ],
7469
7621
  "events": [
@@ -8362,6 +8514,16 @@
8362
8514
  "kind": "expression",
8363
8515
  "type": "any"
8364
8516
  }
8517
+ },
8518
+ {
8519
+ "name": "pt",
8520
+ "default": "null",
8521
+ "doc-url": "https://primevue.org/galleria",
8522
+ "description": "Uses to pass attributes to DOM elements inside the component.",
8523
+ "value": {
8524
+ "kind": "expression",
8525
+ "type": "any"
8526
+ }
8365
8527
  }
8366
8528
  ],
8367
8529
  "slots": [
@@ -8450,6 +8612,36 @@
8450
8612
  "kind": "expression",
8451
8613
  "type": "string"
8452
8614
  }
8615
+ },
8616
+ {
8617
+ "name": "zoomInDisabled",
8618
+ "default": "false",
8619
+ "doc-url": "https://primevue.org/image",
8620
+ "description": "Disable the zoom-in button",
8621
+ "value": {
8622
+ "kind": "expression",
8623
+ "type": "boolean"
8624
+ }
8625
+ },
8626
+ {
8627
+ "name": "zoomOutDisabled",
8628
+ "default": "false",
8629
+ "doc-url": "https://primevue.org/image",
8630
+ "description": "Disable the zoom-out button",
8631
+ "value": {
8632
+ "kind": "expression",
8633
+ "type": "boolean"
8634
+ }
8635
+ },
8636
+ {
8637
+ "name": "pt",
8638
+ "default": "null",
8639
+ "doc-url": "https://primevue.org/image",
8640
+ "description": "Uses to pass attributes to DOM elements inside the component.",
8641
+ "value": {
8642
+ "kind": "expression",
8643
+ "type": "any"
8644
+ }
8453
8645
  }
8454
8646
  ],
8455
8647
  "events": [
@@ -8499,6 +8691,16 @@
8499
8691
  "name": "close",
8500
8692
  "doc-url": "https://primevue.org/image",
8501
8693
  "description": "Custom content for the component close."
8694
+ },
8695
+ {
8696
+ "name": "image",
8697
+ "doc-url": "https://primevue.org/image",
8698
+ "description": "Custom content for the component image."
8699
+ },
8700
+ {
8701
+ "name": "preview",
8702
+ "doc-url": "https://primevue.org/image",
8703
+ "description": "Custom content for the component preview."
8502
8704
  }
8503
8705
  ]
8504
8706
  },
@@ -8704,6 +8906,16 @@
8704
8906
  "kind": "expression",
8705
8907
  "type": "boolean"
8706
8908
  }
8909
+ },
8910
+ {
8911
+ "name": "pt",
8912
+ "default": "null",
8913
+ "doc-url": "https://primevue.org/inputmask",
8914
+ "description": "Uses to pass attributes to DOM elements inside the component.",
8915
+ "value": {
8916
+ "kind": "expression",
8917
+ "type": "any"
8918
+ }
8707
8919
  }
8708
8920
  ]
8709
8921
  },
@@ -9015,6 +9227,16 @@
9015
9227
  "kind": "expression",
9016
9228
  "type": "object"
9017
9229
  }
9230
+ },
9231
+ {
9232
+ "name": "pt",
9233
+ "default": "null",
9234
+ "doc-url": "https://primevue.org/inputnumber",
9235
+ "description": "Uses to pass attributes to DOM elements inside the component.",
9236
+ "value": {
9237
+ "kind": "expression",
9238
+ "type": "any"
9239
+ }
9018
9240
  }
9019
9241
  ],
9020
9242
  "events": [
@@ -9161,6 +9383,16 @@
9161
9383
  "kind": "expression",
9162
9384
  "type": "object"
9163
9385
  }
9386
+ },
9387
+ {
9388
+ "name": "pt",
9389
+ "default": "null",
9390
+ "doc-url": "https://primevue.org/inputswitch",
9391
+ "description": "Uses to pass attributes to DOM elements inside the component.",
9392
+ "value": {
9393
+ "kind": "expression",
9394
+ "type": "any"
9395
+ }
9164
9396
  }
9165
9397
  ],
9166
9398
  "events": [
@@ -9199,6 +9431,16 @@
9199
9431
  "kind": "expression",
9200
9432
  "type": "any"
9201
9433
  }
9434
+ },
9435
+ {
9436
+ "name": "pt",
9437
+ "default": "null",
9438
+ "doc-url": "https://primevue.org/inputtext",
9439
+ "description": "Uses to pass attributes to DOM elements inside the component.",
9440
+ "value": {
9441
+ "kind": "expression",
9442
+ "type": "any"
9443
+ }
9202
9444
  }
9203
9445
  ]
9204
9446
  },
@@ -9370,6 +9612,16 @@
9370
9612
  "kind": "expression",
9371
9613
  "type": "string"
9372
9614
  }
9615
+ },
9616
+ {
9617
+ "name": "pt",
9618
+ "default": "null",
9619
+ "doc-url": "https://primevue.org/knob",
9620
+ "description": "Uses to pass attributes to DOM elements inside the component.",
9621
+ "value": {
9622
+ "kind": "expression",
9623
+ "type": "any"
9624
+ }
9373
9625
  }
9374
9626
  ],
9375
9627
  "events": [
@@ -9686,6 +9938,16 @@
9686
9938
  "kind": "expression",
9687
9939
  "type": "string"
9688
9940
  }
9941
+ },
9942
+ {
9943
+ "name": "pt",
9944
+ "default": "null",
9945
+ "doc-url": "https://primevue.org/listbox",
9946
+ "description": "Uses to pass attributes to DOM elements inside the component.",
9947
+ "value": {
9948
+ "kind": "expression",
9949
+ "type": "any"
9950
+ }
9689
9951
  }
9690
9952
  ],
9691
9953
  "events": [
@@ -10674,6 +10936,16 @@
10674
10936
  "kind": "expression",
10675
10937
  "type": "string"
10676
10938
  }
10939
+ },
10940
+ {
10941
+ "name": "pt",
10942
+ "default": "null",
10943
+ "doc-url": "https://primevue.org/multiselect",
10944
+ "description": "Uses to pass attributes to DOM elements inside the component.",
10945
+ "value": {
10946
+ "kind": "expression",
10947
+ "type": "any"
10948
+ }
10677
10949
  }
10678
10950
  ],
10679
10951
  "events": [
@@ -10962,6 +11234,16 @@
10962
11234
  "kind": "expression",
10963
11235
  "type": "boolean"
10964
11236
  }
11237
+ },
11238
+ {
11239
+ "name": "pt",
11240
+ "default": "null",
11241
+ "doc-url": "https://primevue.org/orderlist",
11242
+ "description": "Uses to pass attributes to DOM elements inside the component.",
11243
+ "value": {
11244
+ "kind": "expression",
11245
+ "type": "any"
11246
+ }
10965
11247
  }
10966
11248
  ],
10967
11249
  "events": [
@@ -11111,6 +11393,16 @@
11111
11393
  "kind": "expression",
11112
11394
  "type": "object"
11113
11395
  }
11396
+ },
11397
+ {
11398
+ "name": "pt",
11399
+ "default": "null",
11400
+ "doc-url": "https://primevue.org/organizationchart",
11401
+ "description": "Uses to pass attributes to DOM elements inside the component.",
11402
+ "value": {
11403
+ "kind": "expression",
11404
+ "type": "any"
11405
+ }
11114
11406
  }
11115
11407
  ],
11116
11408
  "events": [
@@ -11383,6 +11675,16 @@
11383
11675
  "kind": "expression",
11384
11676
  "type": "boolean"
11385
11677
  }
11678
+ },
11679
+ {
11680
+ "name": "pt",
11681
+ "default": "null",
11682
+ "doc-url": "https://primevue.org/paginator",
11683
+ "description": "Uses to pass attributes to DOM elements inside the component.",
11684
+ "value": {
11685
+ "kind": "expression",
11686
+ "type": "any"
11687
+ }
11386
11688
  }
11387
11689
  ],
11388
11690
  "events": [
@@ -11866,6 +12168,16 @@
11866
12168
  "kind": "expression",
11867
12169
  "type": "object"
11868
12170
  }
12171
+ },
12172
+ {
12173
+ "name": "pt",
12174
+ "default": "null",
12175
+ "doc-url": "https://primevue.org/password",
12176
+ "description": "Uses to pass attributes to DOM elements inside the component.",
12177
+ "value": {
12178
+ "kind": "expression",
12179
+ "type": "any"
12180
+ }
11869
12181
  }
11870
12182
  ],
11871
12183
  "slots": [
@@ -12004,6 +12316,16 @@
12004
12316
  "kind": "expression",
12005
12317
  "type": "boolean"
12006
12318
  }
12319
+ },
12320
+ {
12321
+ "name": "pt",
12322
+ "default": "null",
12323
+ "doc-url": "https://primevue.org/picklist",
12324
+ "description": "Uses to pass attributes to DOM elements inside the component.",
12325
+ "value": {
12326
+ "kind": "expression",
12327
+ "type": "any"
12328
+ }
12007
12329
  }
12008
12330
  ],
12009
12331
  "events": [
@@ -12470,6 +12792,16 @@
12470
12792
  "kind": "expression",
12471
12793
  "type": "string"
12472
12794
  }
12795
+ },
12796
+ {
12797
+ "name": "pt",
12798
+ "default": "null",
12799
+ "doc-url": "https://primevue.org/radiobutton",
12800
+ "description": "Uses to pass attributes to DOM elements inside the component.",
12801
+ "value": {
12802
+ "kind": "expression",
12803
+ "type": "any"
12804
+ }
12473
12805
  }
12474
12806
  ],
12475
12807
  "events": [
@@ -12589,6 +12921,16 @@
12589
12921
  "kind": "expression",
12590
12922
  "type": "string"
12591
12923
  }
12924
+ },
12925
+ {
12926
+ "name": "pt",
12927
+ "default": "null",
12928
+ "doc-url": "https://primevue.org/rating",
12929
+ "description": "Uses to pass attributes to DOM elements inside the component.",
12930
+ "value": {
12931
+ "kind": "expression",
12932
+ "type": "any"
12933
+ }
12592
12934
  }
12593
12935
  ],
12594
12936
  "events": [
@@ -12646,7 +12988,29 @@
12646
12988
  "symbol": "Row"
12647
12989
  },
12648
12990
  "doc-url": "https://primevue.org/datatable",
12649
- "description": "DataTable can be grouped by defining a Row component with nested columns"
12991
+ "description": "DataTable can be grouped by defining a Row component with nested columns",
12992
+ "attributes": [
12993
+ {
12994
+ "name": "type",
12995
+ "default": "null",
12996
+ "doc-url": "https://primevue.org/datatable",
12997
+ "description": "Defines the type of the group.",
12998
+ "value": {
12999
+ "kind": "expression",
13000
+ "type": "string"
13001
+ }
13002
+ },
13003
+ {
13004
+ "name": "pt",
13005
+ "default": "null",
13006
+ "doc-url": "https://primevue.org/datatable",
13007
+ "description": "Uses to pass attributes to DOM elements inside the component.",
13008
+ "value": {
13009
+ "kind": "expression",
13010
+ "type": "any"
13011
+ }
13012
+ }
13013
+ ]
12650
13014
  },
12651
13015
  {
12652
13016
  "name": "ScrollPanel",
@@ -12855,6 +13219,16 @@
12855
13219
  "kind": "expression",
12856
13220
  "type": "string"
12857
13221
  }
13222
+ },
13223
+ {
13224
+ "name": "pt",
13225
+ "default": "null",
13226
+ "doc-url": "https://primevue.org/selectbutton",
13227
+ "description": "Uses to pass attributes to DOM elements inside the component.",
13228
+ "value": {
13229
+ "kind": "expression",
13230
+ "type": "any"
13231
+ }
12858
13232
  }
12859
13233
  ],
12860
13234
  "events": [
@@ -13251,6 +13625,16 @@
13251
13625
  "kind": "expression",
13252
13626
  "type": "string"
13253
13627
  }
13628
+ },
13629
+ {
13630
+ "name": "pt",
13631
+ "default": "null",
13632
+ "doc-url": "https://primevue.org/slider",
13633
+ "description": "Uses to pass attributes to DOM elements inside the component.",
13634
+ "value": {
13635
+ "kind": "expression",
13636
+ "type": "any"
13637
+ }
13254
13638
  }
13255
13639
  ],
13256
13640
  "events": [
@@ -14459,6 +14843,16 @@
14459
14843
  "kind": "expression",
14460
14844
  "type": "boolean"
14461
14845
  }
14846
+ },
14847
+ {
14848
+ "name": "pt",
14849
+ "default": "null",
14850
+ "doc-url": "https://primevue.org/textarea",
14851
+ "description": "Uses to pass attributes to DOM elements inside the component.",
14852
+ "value": {
14853
+ "kind": "expression",
14854
+ "type": "any"
14855
+ }
14462
14856
  }
14463
14857
  ]
14464
14858
  },
@@ -14608,6 +15002,16 @@
14608
15002
  "kind": "expression",
14609
15003
  "type": "string"
14610
15004
  }
15005
+ },
15006
+ {
15007
+ "name": "pt",
15008
+ "default": "null",
15009
+ "doc-url": "https://primevue.org/timeline",
15010
+ "description": "Uses to pass attributes to DOM elements inside the component.",
15011
+ "value": {
15012
+ "kind": "expression",
15013
+ "type": "any"
15014
+ }
14611
15015
  }
14612
15016
  ],
14613
15017
  "slots": [
@@ -14877,6 +15281,16 @@
14877
15281
  "kind": "expression",
14878
15282
  "type": "object"
14879
15283
  }
15284
+ },
15285
+ {
15286
+ "name": "pt",
15287
+ "default": "null",
15288
+ "doc-url": "https://primevue.org/togglebutton",
15289
+ "description": "Uses to pass attributes to DOM elements inside the component.",
15290
+ "value": {
15291
+ "kind": "expression",
15292
+ "type": "any"
15293
+ }
14880
15294
  }
14881
15295
  ],
14882
15296
  "events": [
@@ -15123,6 +15537,16 @@
15123
15537
  "kind": "expression",
15124
15538
  "type": "string"
15125
15539
  }
15540
+ },
15541
+ {
15542
+ "name": "pt",
15543
+ "default": "null",
15544
+ "doc-url": "https://primevue.org/tree",
15545
+ "description": "Uses to pass attributes to DOM elements inside the component.",
15546
+ "value": {
15547
+ "kind": "expression",
15548
+ "type": "any"
15549
+ }
15126
15550
  }
15127
15551
  ],
15128
15552
  "events": [
@@ -15380,6 +15804,16 @@
15380
15804
  "kind": "expression",
15381
15805
  "type": "string"
15382
15806
  }
15807
+ },
15808
+ {
15809
+ "name": "pt",
15810
+ "default": "null",
15811
+ "doc-url": "https://primevue.org/treeselect",
15812
+ "description": "Uses to pass attributes to DOM elements inside the component.",
15813
+ "value": {
15814
+ "kind": "expression",
15815
+ "type": "any"
15816
+ }
15383
15817
  }
15384
15818
  ],
15385
15819
  "events": [
@@ -15885,6 +16319,16 @@
15885
16319
  "kind": "expression",
15886
16320
  "type": "string"
15887
16321
  }
16322
+ },
16323
+ {
16324
+ "name": "pt",
16325
+ "default": "null",
16326
+ "doc-url": "https://primevue.org/treetable",
16327
+ "description": "Uses to pass attributes to DOM elements inside the component.",
16328
+ "value": {
16329
+ "kind": "expression",
16330
+ "type": "any"
16331
+ }
15888
16332
  }
15889
16333
  ],
15890
16334
  "events": [
@@ -16289,6 +16733,16 @@
16289
16733
  "kind": "expression",
16290
16734
  "type": "string"
16291
16735
  }
16736
+ },
16737
+ {
16738
+ "name": "pt",
16739
+ "default": "null",
16740
+ "doc-url": "https://primevue.org/tristatecheckbox",
16741
+ "description": "Uses to pass attributes to DOM elements inside the component.",
16742
+ "value": {
16743
+ "kind": "expression",
16744
+ "type": "any"
16745
+ }
16292
16746
  }
16293
16747
  ],
16294
16748
  "slots": [
@@ -16487,6 +16941,16 @@
16487
16941
  "kind": "expression",
16488
16942
  "type": "number|string"
16489
16943
  }
16944
+ },
16945
+ {
16946
+ "name": "pt",
16947
+ "default": "null",
16948
+ "doc-url": "https://primevue.org/virtualscroller",
16949
+ "description": "Uses to pass attributes to DOM elements inside the component.",
16950
+ "value": {
16951
+ "kind": "expression",
16952
+ "type": "any"
16953
+ }
16490
16954
  }
16491
16955
  ],
16492
16956
  "events": [