primevue 3.38.0 → 3.38.1

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 (798) hide show
  1. package/LICENSE.md +21 -0
  2. package/README.md +173 -0
  3. package/accordion/Accordion.d.ts +233 -0
  4. package/accordion/Accordion.vue +259 -0
  5. package/accordion/BaseAccordion.vue +45 -0
  6. package/accordion/package.json +9 -0
  7. package/accordion/style/AccordionStyle.d.ts +3 -0
  8. package/accordion/style/package.json +6 -0
  9. package/accordiontab/AccordionTab.d.ts +226 -0
  10. package/accordiontab/AccordionTab.vue +12 -0
  11. package/accordiontab/BaseAccordionTab.vue +26 -0
  12. package/accordiontab/package.json +9 -0
  13. package/accordiontab/style/AccordionTabStyle.d.ts +3 -0
  14. package/accordiontab/style/package.json +6 -0
  15. package/animateonscroll/AnimateOnScroll.d.ts +87 -0
  16. package/animateonscroll/package.json +6 -0
  17. package/animateonscroll/style/AnimateOnScrollStyle.d.ts +3 -0
  18. package/animateonscroll/style/package.json +6 -0
  19. package/api/Api.d.ts +325 -0
  20. package/api/package.json +6 -0
  21. package/autocomplete/AutoComplete.d.ts +734 -0
  22. package/autocomplete/AutoComplete.vue +948 -0
  23. package/autocomplete/BaseAutoComplete.vue +176 -0
  24. package/autocomplete/package.json +9 -0
  25. package/autocomplete/style/AutoCompleteStyle.d.ts +3 -0
  26. package/autocomplete/style/package.json +6 -0
  27. package/avatar/Avatar.d.ts +169 -0
  28. package/avatar/Avatar.vue +32 -0
  29. package/avatar/BaseAvatar.vue +45 -0
  30. package/avatar/package.json +9 -0
  31. package/avatar/style/AvatarStyle.d.ts +3 -0
  32. package/avatar/style/package.json +6 -0
  33. package/avatargroup/AvatarGroup.d.ts +89 -0
  34. package/avatargroup/AvatarGroup.vue +14 -0
  35. package/avatargroup/BaseAvatarGroup.vue +15 -0
  36. package/avatargroup/package.json +9 -0
  37. package/avatargroup/style/AvatarGroupStyle.d.ts +3 -0
  38. package/avatargroup/style/package.json +6 -0
  39. package/badge/Badge.d.ts +125 -0
  40. package/badge/Badge.vue +14 -0
  41. package/badge/BaseBadge.vue +29 -0
  42. package/badge/package.json +9 -0
  43. package/badge/style/BadgeStyle.d.ts +3 -0
  44. package/badge/style/package.json +6 -0
  45. package/badgedirective/BadgeDirective.d.ts +158 -0
  46. package/badgedirective/package.json +6 -0
  47. package/badgedirective/style/BadgeDirectiveStyle.d.ts +3 -0
  48. package/badgedirective/style/package.json +6 -0
  49. package/base/package.json +5 -0
  50. package/base/style/BaseStyle.d.ts +10 -0
  51. package/base/style/package.json +6 -0
  52. package/basecomponent/BaseComponent.d.ts +23 -0
  53. package/basecomponent/BaseComponent.vue +218 -0
  54. package/basecomponent/package.json +9 -0
  55. package/basecomponent/style/BaseComponentStyle.d.ts +3 -0
  56. package/basecomponent/style/package.json +6 -0
  57. package/basedirective/BaseDirective.d.ts +38 -0
  58. package/basedirective/package.json +6 -0
  59. package/baseicon/BaseIcon.vue +43 -0
  60. package/baseicon/package.json +8 -0
  61. package/baseicon/style/BaseIconStyle.d.ts +3 -0
  62. package/baseicon/style/package.json +6 -0
  63. package/blockui/BaseBlockUI.vue +33 -0
  64. package/blockui/BlockUI.d.ts +161 -0
  65. package/blockui/BlockUI.vue +104 -0
  66. package/blockui/package.json +9 -0
  67. package/blockui/style/BlockUIStyle.d.ts +3 -0
  68. package/blockui/style/package.json +6 -0
  69. package/breadcrumb/BaseBreadcrumb.vue +29 -0
  70. package/breadcrumb/Breadcrumb.d.ts +232 -0
  71. package/breadcrumb/Breadcrumb.vue +35 -0
  72. package/breadcrumb/BreadcrumbItem.vue +99 -0
  73. package/breadcrumb/package.json +9 -0
  74. package/breadcrumb/style/BreadcrumbStyle.d.ts +3 -0
  75. package/breadcrumb/style/package.json +6 -0
  76. package/button/BaseButton.vue +81 -0
  77. package/button/Button.d.ts +248 -0
  78. package/button/Button.vue +58 -0
  79. package/button/package.json +9 -0
  80. package/button/style/ButtonStyle.d.ts +3 -0
  81. package/button/style/package.json +6 -0
  82. package/calendar/BaseCalendar.vue +231 -0
  83. package/calendar/Calendar.d.ts +888 -0
  84. package/calendar/Calendar.vue +2955 -0
  85. package/calendar/package.json +9 -0
  86. package/calendar/style/CalendarStyle.d.ts +3 -0
  87. package/calendar/style/package.json +6 -0
  88. package/card/BaseCard.vue +10 -0
  89. package/card/Card.d.ts +135 -0
  90. package/card/Card.vue +30 -0
  91. package/card/package.json +9 -0
  92. package/card/style/CardStyle.d.ts +3 -0
  93. package/card/style/package.json +6 -0
  94. package/carousel/BaseCarousel.vue +66 -0
  95. package/carousel/Carousel.d.ts +374 -0
  96. package/carousel/Carousel.vue +636 -0
  97. package/carousel/package.json +9 -0
  98. package/carousel/style/CarouselStyle.d.ts +3 -0
  99. package/carousel/style/package.json +6 -0
  100. package/cascadeselect/BaseCascadeSelect.vue +119 -0
  101. package/cascadeselect/CascadeSelect.d.ts +473 -0
  102. package/cascadeselect/CascadeSelect.vue +741 -0
  103. package/cascadeselect/CascadeSelectSub.vue +143 -0
  104. package/cascadeselect/package.json +9 -0
  105. package/cascadeselect/style/CascadeSelectStyle.d.ts +3 -0
  106. package/cascadeselect/style/package.json +6 -0
  107. package/chart/BaseChart.vue +33 -0
  108. package/chart/Chart.d.ts +195 -0
  109. package/chart/Chart.vue +96 -0
  110. package/chart/package.json +9 -0
  111. package/chart/style/ChartStyle.d.ts +3 -0
  112. package/chart/style/package.json +6 -0
  113. package/checkbox/BaseCheckbox.vue +72 -0
  114. package/checkbox/Checkbox.d.ts +271 -0
  115. package/checkbox/Checkbox.vue +90 -0
  116. package/checkbox/package.json +9 -0
  117. package/checkbox/style/CheckboxStyle.d.ts +3 -0
  118. package/checkbox/style/package.json +6 -0
  119. package/chip/BaseChip.vue +37 -0
  120. package/chip/Chip.d.ts +193 -0
  121. package/chip/Chip.vue +43 -0
  122. package/chip/package.json +9 -0
  123. package/chip/style/ChipStyle.d.ts +3 -0
  124. package/chip/style/package.json +6 -0
  125. package/chips/BaseChips.vue +73 -0
  126. package/chips/Chips.d.ts +286 -0
  127. package/chips/Chips.vue +256 -0
  128. package/chips/package.json +9 -0
  129. package/chips/style/ChipsStyle.d.ts +3 -0
  130. package/chips/style/package.json +6 -0
  131. package/colorpicker/BaseColorPicker.vue +54 -0
  132. package/colorpicker/ColorPicker.d.ts +240 -0
  133. package/colorpicker/ColorPicker.vue +649 -0
  134. package/colorpicker/package.json +9 -0
  135. package/colorpicker/style/ColorPickerStyle.d.ts +3 -0
  136. package/colorpicker/style/package.json +6 -0
  137. package/column/BaseColumn.vue +193 -0
  138. package/column/Column.d.ts +999 -0
  139. package/column/Column.vue +11 -0
  140. package/column/package.json +9 -0
  141. package/column/style/ColumnStyle.d.ts +3 -0
  142. package/column/style/package.json +6 -0
  143. package/columngroup/BaseColumnGroup.vue +21 -0
  144. package/columngroup/ColumnGroup.d.ts +133 -0
  145. package/columngroup/ColumnGroup.vue +11 -0
  146. package/columngroup/package.json +9 -0
  147. package/columngroup/style/ColumnGroupStyle.d.ts +3 -0
  148. package/columngroup/style/package.json +6 -0
  149. package/config/PrimeVue.d.ts +376 -0
  150. package/config/package.json +6 -0
  151. package/confirmationeventbus/package.json +5 -0
  152. package/confirmationoptions/ConfirmationOptions.d.ts +84 -0
  153. package/confirmationoptions/package.json +3 -0
  154. package/confirmationservice/ConfirmationService.d.ts +40 -0
  155. package/confirmationservice/package.json +6 -0
  156. package/confirmdialog/BaseConfirmDialog.vue +26 -0
  157. package/confirmdialog/ConfirmDialog.d.ts +262 -0
  158. package/confirmdialog/ConfirmDialog.vue +162 -0
  159. package/confirmdialog/package.json +9 -0
  160. package/confirmdialog/style/ConfirmDialogStyle.d.ts +3 -0
  161. package/confirmdialog/style/package.json +6 -0
  162. package/confirmpopup/BaseConfirmPopup.vue +18 -0
  163. package/confirmpopup/ConfirmPopup.d.ts +212 -0
  164. package/confirmpopup/ConfirmPopup.vue +321 -0
  165. package/confirmpopup/package.json +9 -0
  166. package/confirmpopup/style/ConfirmPopupStyle.d.ts +3 -0
  167. package/confirmpopup/style/package.json +6 -0
  168. package/contextmenu/BaseContextMenu.vue +53 -0
  169. package/contextmenu/ContextMenu.d.ts +398 -0
  170. package/contextmenu/ContextMenu.vue +594 -0
  171. package/contextmenu/ContextMenuSub.vue +242 -0
  172. package/contextmenu/package.json +9 -0
  173. package/contextmenu/style/ContextMenuStyle.d.ts +3 -0
  174. package/contextmenu/style/package.json +6 -0
  175. package/datatable/BaseDataTable.vue +281 -0
  176. package/datatable/BodyCell.vue +538 -0
  177. package/datatable/ColumnFilter.vue +720 -0
  178. package/datatable/DataTable.d.ts +1499 -0
  179. package/datatable/DataTable.vue +2105 -0
  180. package/datatable/FooterCell.vue +103 -0
  181. package/datatable/HeaderCell.vue +365 -0
  182. package/datatable/HeaderCheckbox.vue +94 -0
  183. package/datatable/RowCheckbox.vue +114 -0
  184. package/datatable/RowRadioButton.vue +79 -0
  185. package/datatable/TableBody.vue +639 -0
  186. package/datatable/TableFooter.vue +136 -0
  187. package/datatable/TableHeader.vue +336 -0
  188. package/datatable/package.json +9 -0
  189. package/datatable/style/DataTableStyle.d.ts +3 -0
  190. package/datatable/style/package.json +6 -0
  191. package/dataview/BaseDataView.vue +81 -0
  192. package/dataview/DataView.d.ts +337 -0
  193. package/dataview/DataView.vue +170 -0
  194. package/dataview/package.json +9 -0
  195. package/dataview/style/DataViewStyle.d.ts +3 -0
  196. package/dataview/style/package.json +6 -0
  197. package/dataviewlayoutoptions/BaseDataViewLayoutOptions.vue +18 -0
  198. package/dataviewlayoutoptions/DataViewLayoutOptions.d.ts +169 -0
  199. package/dataviewlayoutoptions/DataViewLayoutOptions.vue +57 -0
  200. package/dataviewlayoutoptions/package.json +9 -0
  201. package/dataviewlayoutoptions/style/DataViewLayoutOptionsStyle.d.ts +3 -0
  202. package/dataviewlayoutoptions/style/package.json +6 -0
  203. package/deferredcontent/DeferredContent.d.ts +133 -0
  204. package/deferredcontent/DeferredContent.vue +64 -0
  205. package/deferredcontent/package.json +9 -0
  206. package/deferredcontent/style/DeferredContentStyle.d.ts +3 -0
  207. package/deferredcontent/style/package.json +6 -0
  208. package/dialog/BaseDialog.vue +126 -0
  209. package/dialog/Dialog.d.ts +409 -0
  210. package/dialog/Dialog.vue +406 -0
  211. package/dialog/package.json +9 -0
  212. package/dialog/style/DialogStyle.d.ts +3 -0
  213. package/dialog/style/package.json +6 -0
  214. package/dialogservice/DialogService.d.ts +38 -0
  215. package/dialogservice/package.json +6 -0
  216. package/divider/BaseDivider.vue +29 -0
  217. package/divider/Divider.d.ts +129 -0
  218. package/divider/Divider.vue +16 -0
  219. package/divider/package.json +9 -0
  220. package/divider/style/DividerStyle.d.ts +3 -0
  221. package/divider/style/package.json +6 -0
  222. package/dock/BaseDock.vue +45 -0
  223. package/dock/Dock.d.ts +306 -0
  224. package/dock/Dock.vue +40 -0
  225. package/dock/DockSub.vue +309 -0
  226. package/dock/package.json +9 -0
  227. package/dock/style/DockStyle.d.ts +3 -0
  228. package/dock/style/package.json +6 -0
  229. package/dropdown/BaseDropdown.vue +165 -0
  230. package/dropdown/Dropdown.d.ts +711 -0
  231. package/dropdown/Dropdown.vue +929 -0
  232. package/dropdown/package.json +9 -0
  233. package/dropdown/style/DropdownStyle.d.ts +3 -0
  234. package/dropdown/style/package.json +6 -0
  235. package/dynamicdialog/BaseDynamicDialog.vue +16 -0
  236. package/dynamicdialog/DynamicDialog.d.ts +52 -0
  237. package/dynamicdialog/DynamicDialog.vue +77 -0
  238. package/dynamicdialog/package.json +9 -0
  239. package/dynamicdialog/style/AccordionStyle.d.ts +3 -0
  240. package/dynamicdialog/style/package.json +6 -0
  241. package/dynamicdialogeventbus/package.json +5 -0
  242. package/dynamicdialogoptions/DynamicDialogOptions.d.ts +93 -0
  243. package/dynamicdialogoptions/package.json +3 -0
  244. package/editor/BaseEditor.vue +26 -0
  245. package/editor/Editor.d.ts +306 -0
  246. package/editor/Editor.vue +171 -0
  247. package/editor/package.json +9 -0
  248. package/editor/style/EditorStyle.d.ts +3 -0
  249. package/editor/style/package.json +6 -0
  250. package/fieldset/BaseFieldset.vue +24 -0
  251. package/fieldset/Fieldset.d.ts +212 -0
  252. package/fieldset/Fieldset.vue +91 -0
  253. package/fieldset/package.json +9 -0
  254. package/fieldset/style/FieldsetStyle.d.ts +3 -0
  255. package/fieldset/style/package.json +6 -0
  256. package/fileupload/BaseFileUpload.vue +111 -0
  257. package/fileupload/FileContent.vue +75 -0
  258. package/fileupload/FileUpload.d.ts +609 -0
  259. package/fileupload/FileUpload.vue +415 -0
  260. package/fileupload/package.json +9 -0
  261. package/fileupload/style/FileUploadStyle.d.ts +3 -0
  262. package/fileupload/style/package.json +6 -0
  263. package/focustrap/FocusTrap.d.ts +95 -0
  264. package/focustrap/package.json +6 -0
  265. package/focustrap/style/FocusTrapStyle.d.ts +3 -0
  266. package/focustrap/style/package.json +6 -0
  267. package/galleria/BaseGalleria.vue +125 -0
  268. package/galleria/Galleria.d.ts +519 -0
  269. package/galleria/Galleria.vue +95 -0
  270. package/galleria/GalleriaContent.vue +153 -0
  271. package/galleria/GalleriaItem.vue +201 -0
  272. package/galleria/GalleriaThumbnails.vue +537 -0
  273. package/galleria/package.json +9 -0
  274. package/galleria/style/GalleriaStyle.d.ts +3 -0
  275. package/galleria/style/package.json +6 -0
  276. package/icons/angledoubledown/index.d.ts +12 -0
  277. package/icons/angledoubledown/index.vue +18 -0
  278. package/icons/angledoubledown/package.json +9 -0
  279. package/icons/angledoubleleft/index.d.ts +12 -0
  280. package/icons/angledoubleleft/index.vue +18 -0
  281. package/icons/angledoubleleft/package.json +9 -0
  282. package/icons/angledoubleright/index.d.ts +12 -0
  283. package/icons/angledoubleright/index.vue +18 -0
  284. package/icons/angledoubleright/package.json +9 -0
  285. package/icons/angledoubleup/index.d.ts +12 -0
  286. package/icons/angledoubleup/index.vue +18 -0
  287. package/icons/angledoubleup/package.json +9 -0
  288. package/icons/angledown/index.d.ts +12 -0
  289. package/icons/angledown/index.vue +16 -0
  290. package/icons/angledown/package.json +9 -0
  291. package/icons/angleleft/index.d.ts +12 -0
  292. package/icons/angleleft/index.vue +16 -0
  293. package/icons/angleleft/package.json +9 -0
  294. package/icons/angleright/index.d.ts +12 -0
  295. package/icons/angleright/index.vue +16 -0
  296. package/icons/angleright/package.json +9 -0
  297. package/icons/angleup/index.d.ts +12 -0
  298. package/icons/angleup/index.vue +16 -0
  299. package/icons/angleup/package.json +9 -0
  300. package/icons/arrowdown/index.d.ts +12 -0
  301. package/icons/arrowdown/index.vue +32 -0
  302. package/icons/arrowdown/package.json +9 -0
  303. package/icons/arrowup/index.d.ts +12 -0
  304. package/icons/arrowup/index.vue +32 -0
  305. package/icons/arrowup/package.json +9 -0
  306. package/icons/ban/index.d.ts +12 -0
  307. package/icons/ban/index.vue +30 -0
  308. package/icons/ban/package.json +9 -0
  309. package/icons/bars/index.d.ts +12 -0
  310. package/icons/bars/index.vue +18 -0
  311. package/icons/bars/package.json +9 -0
  312. package/icons/calendar/index.d.ts +12 -0
  313. package/icons/calendar/index.vue +16 -0
  314. package/icons/calendar/package.json +9 -0
  315. package/icons/check/index.d.ts +12 -0
  316. package/icons/check/index.vue +16 -0
  317. package/icons/check/package.json +9 -0
  318. package/icons/chevrondown/index.d.ts +12 -0
  319. package/icons/chevrondown/index.vue +16 -0
  320. package/icons/chevrondown/package.json +9 -0
  321. package/icons/chevronleft/index.d.ts +12 -0
  322. package/icons/chevronleft/index.vue +16 -0
  323. package/icons/chevronleft/package.json +9 -0
  324. package/icons/chevronright/index.d.ts +12 -0
  325. package/icons/chevronright/index.vue +16 -0
  326. package/icons/chevronright/package.json +9 -0
  327. package/icons/chevronup/index.d.ts +12 -0
  328. package/icons/chevronup/index.vue +16 -0
  329. package/icons/chevronup/package.json +9 -0
  330. package/icons/exclamationtriangle/index.d.ts +12 -0
  331. package/icons/exclamationtriangle/index.vue +38 -0
  332. package/icons/exclamationtriangle/package.json +9 -0
  333. package/icons/eye/index.d.ts +12 -0
  334. package/icons/eye/index.vue +18 -0
  335. package/icons/eye/package.json +9 -0
  336. package/icons/eyeslash/index.d.ts +12 -0
  337. package/icons/eyeslash/index.vue +32 -0
  338. package/icons/eyeslash/package.json +9 -0
  339. package/icons/filter/index.d.ts +12 -0
  340. package/icons/filter/index.vue +30 -0
  341. package/icons/filter/package.json +9 -0
  342. package/icons/filterslash/index.d.ts +12 -0
  343. package/icons/filterslash/index.vue +32 -0
  344. package/icons/filterslash/package.json +9 -0
  345. package/icons/index.d.ts +12 -0
  346. package/icons/infocircle/index.d.ts +12 -0
  347. package/icons/infocircle/index.vue +32 -0
  348. package/icons/infocircle/package.json +9 -0
  349. package/icons/minus/index.d.ts +12 -0
  350. package/icons/minus/index.vue +16 -0
  351. package/icons/minus/package.json +9 -0
  352. package/icons/pencil/index.d.ts +12 -0
  353. package/icons/pencil/index.vue +30 -0
  354. package/icons/pencil/package.json +9 -0
  355. package/icons/plus/index.d.ts +12 -0
  356. package/icons/plus/index.vue +30 -0
  357. package/icons/plus/package.json +9 -0
  358. package/icons/refresh/index.d.ts +12 -0
  359. package/icons/refresh/index.vue +32 -0
  360. package/icons/refresh/package.json +9 -0
  361. package/icons/search/index.d.ts +12 -0
  362. package/icons/search/index.vue +32 -0
  363. package/icons/search/package.json +9 -0
  364. package/icons/searchminus/index.d.ts +12 -0
  365. package/icons/searchminus/index.vue +32 -0
  366. package/icons/searchminus/package.json +9 -0
  367. package/icons/searchplus/index.d.ts +12 -0
  368. package/icons/searchplus/index.vue +32 -0
  369. package/icons/searchplus/package.json +9 -0
  370. package/icons/sortalt/index.d.ts +12 -0
  371. package/icons/sortalt/index.vue +36 -0
  372. package/icons/sortalt/package.json +9 -0
  373. package/icons/sortamountdown/index.d.ts +12 -0
  374. package/icons/sortamountdown/index.vue +50 -0
  375. package/icons/sortamountdown/package.json +9 -0
  376. package/icons/sortamountupalt/index.d.ts +12 -0
  377. package/icons/sortamountupalt/index.vue +50 -0
  378. package/icons/sortamountupalt/package.json +9 -0
  379. package/icons/spinner/index.d.ts +12 -0
  380. package/icons/spinner/index.vue +30 -0
  381. package/icons/spinner/package.json +9 -0
  382. package/icons/star/index.d.ts +12 -0
  383. package/icons/star/index.vue +30 -0
  384. package/icons/star/package.json +9 -0
  385. package/icons/starfill/index.d.ts +12 -0
  386. package/icons/starfill/index.vue +30 -0
  387. package/icons/starfill/package.json +9 -0
  388. package/icons/thlarge/index.d.ts +12 -0
  389. package/icons/thlarge/index.vue +32 -0
  390. package/icons/thlarge/package.json +9 -0
  391. package/icons/times/index.d.ts +12 -0
  392. package/icons/times/index.vue +16 -0
  393. package/icons/times/package.json +9 -0
  394. package/icons/timescircle/index.d.ts +12 -0
  395. package/icons/timescircle/index.vue +32 -0
  396. package/icons/timescircle/package.json +9 -0
  397. package/icons/trash/index.d.ts +12 -0
  398. package/icons/trash/index.vue +32 -0
  399. package/icons/trash/package.json +9 -0
  400. package/icons/undo/index.d.ts +12 -0
  401. package/icons/undo/index.vue +32 -0
  402. package/icons/undo/package.json +9 -0
  403. package/icons/upload/index.d.ts +12 -0
  404. package/icons/upload/index.vue +32 -0
  405. package/icons/upload/package.json +9 -0
  406. package/icons/windowmaximize/index.d.ts +12 -0
  407. package/icons/windowmaximize/index.vue +32 -0
  408. package/icons/windowmaximize/package.json +9 -0
  409. package/icons/windowminimize/index.d.ts +12 -0
  410. package/icons/windowminimize/index.vue +32 -0
  411. package/icons/windowminimize/package.json +9 -0
  412. package/image/BaseImage.vue +53 -0
  413. package/image/Image.d.ts +318 -0
  414. package/image/Image.vue +232 -0
  415. package/image/package.json +9 -0
  416. package/image/style/ImageStyle.d.ts +3 -0
  417. package/image/style/package.json +6 -0
  418. package/inlinemessage/BaseInlineMessage.vue +25 -0
  419. package/inlinemessage/InlineMessage.d.ts +147 -0
  420. package/inlinemessage/InlineMessage.vue +46 -0
  421. package/inlinemessage/package.json +9 -0
  422. package/inlinemessage/style/InlineMessageStyle.d.ts +3 -0
  423. package/inlinemessage/style/package.json +6 -0
  424. package/inplace/BaseInplace.vue +41 -0
  425. package/inplace/Inplace.d.ts +195 -0
  426. package/inplace/Inplace.vue +71 -0
  427. package/inplace/package.json +9 -0
  428. package/inplace/style/InplaceStyle.d.ts +3 -0
  429. package/inplace/style/package.json +6 -0
  430. package/inputmask/BaseInputMask.vue +33 -0
  431. package/inputmask/InputMask.d.ts +186 -0
  432. package/inputmask/InputMask.vue +512 -0
  433. package/inputmask/package.json +9 -0
  434. package/inputmask/style/InputMaskStyle.d.ts +3 -0
  435. package/inputmask/style/package.json +6 -0
  436. package/inputnumber/BaseInputNumber.vue +153 -0
  437. package/inputnumber/InputNumber.d.ts +369 -0
  438. package/inputnumber/InputNumber.vue +1004 -0
  439. package/inputnumber/package.json +9 -0
  440. package/inputnumber/style/InputNumberStyle.d.ts +3 -0
  441. package/inputnumber/style/package.json +6 -0
  442. package/inputswitch/BaseInputSwitch.vue +57 -0
  443. package/inputswitch/InputSwitch.d.ts +198 -0
  444. package/inputswitch/InputSwitch.vue +64 -0
  445. package/inputswitch/package.json +9 -0
  446. package/inputswitch/style/InputSwitchStyle.d.ts +3 -0
  447. package/inputswitch/style/package.json +6 -0
  448. package/inputtext/BaseInputText.vue +22 -0
  449. package/inputtext/InputText.d.ts +142 -0
  450. package/inputtext/InputText.vue +31 -0
  451. package/inputtext/package.json +9 -0
  452. package/inputtext/style/InputTextStyle.d.ts +3 -0
  453. package/inputtext/style/package.json +6 -0
  454. package/knob/BaseKnob.vue +81 -0
  455. package/knob/Knob.d.ts +243 -0
  456. package/knob/Knob.vue +219 -0
  457. package/knob/package.json +9 -0
  458. package/knob/style/KnobStyle.d.ts +3 -0
  459. package/knob/style/package.json +6 -0
  460. package/listbox/BaseListbox.vue +89 -0
  461. package/listbox/Listbox.d.ts +521 -0
  462. package/listbox/Listbox.vue +717 -0
  463. package/listbox/package.json +9 -0
  464. package/listbox/style/ListboxStyle.d.ts +3 -0
  465. package/listbox/style/package.json +6 -0
  466. package/megamenu/BaseMegaMenu.vue +45 -0
  467. package/megamenu/MegaMenu.d.ts +373 -0
  468. package/megamenu/MegaMenu.vue +590 -0
  469. package/megamenu/MegaMenuSub.vue +236 -0
  470. package/megamenu/package.json +9 -0
  471. package/megamenu/style/MegaMenuStyle.d.ts +3 -0
  472. package/megamenu/style/package.json +6 -0
  473. package/menu/BaseMenu.vue +53 -0
  474. package/menu/Menu.d.ts +359 -0
  475. package/menu/Menu.vue +373 -0
  476. package/menu/Menuitem.vue +118 -0
  477. package/menu/package.json +9 -0
  478. package/menu/style/MenuStyle.d.ts +3 -0
  479. package/menu/style/package.json +6 -0
  480. package/menubar/BaseMenubar.vue +37 -0
  481. package/menubar/Menubar.d.ts +361 -0
  482. package/menubar/Menubar.vue +599 -0
  483. package/menubar/MenubarSub.vue +224 -0
  484. package/menubar/package.json +9 -0
  485. package/menubar/style/MenubarStyle.d.ts +3 -0
  486. package/menubar/style/package.json +6 -0
  487. package/menuitem/MenuItem.d.ts +95 -0
  488. package/menuitem/package.json +3 -0
  489. package/message/BaseMessage.vue +45 -0
  490. package/message/Message.d.ts +234 -0
  491. package/message/Message.vue +89 -0
  492. package/message/package.json +9 -0
  493. package/message/style/MessageStyle.d.ts +3 -0
  494. package/message/style/package.json +6 -0
  495. package/multiselect/BaseMultiSelect.vue +174 -0
  496. package/multiselect/MultiSelect.d.ts +852 -0
  497. package/multiselect/MultiSelect.vue +1072 -0
  498. package/multiselect/package.json +9 -0
  499. package/multiselect/style/MultiSelectStyle.d.ts +3 -0
  500. package/multiselect/style/package.json +6 -0
  501. package/orderlist/BaseOrderList.vue +81 -0
  502. package/orderlist/OrderList.d.ts +366 -0
  503. package/orderlist/OrderList.vue +561 -0
  504. package/orderlist/package.json +9 -0
  505. package/orderlist/style/OrderListStyle.d.ts +3 -0
  506. package/orderlist/style/package.json +6 -0
  507. package/organizationchart/BaseOrganizationChart.vue +37 -0
  508. package/organizationchart/OrganizationChart.d.ts +342 -0
  509. package/organizationchart/OrganizationChart.vue +77 -0
  510. package/organizationchart/OrganizationChartNode.vue +164 -0
  511. package/organizationchart/package.json +9 -0
  512. package/organizationchart/style/OrganizationChartStyle.d.ts +3 -0
  513. package/organizationchart/style/package.json +6 -0
  514. package/overlayeventbus/package.json +5 -0
  515. package/overlaypanel/BaseOverlayPanel.vue +49 -0
  516. package/overlaypanel/OverlayPanel.d.ts +258 -0
  517. package/overlaypanel/OverlayPanel.vue +322 -0
  518. package/overlaypanel/package.json +9 -0
  519. package/overlaypanel/style/OverlayPanelStyle.d.ts +3 -0
  520. package/overlaypanel/style/package.json +6 -0
  521. package/package.json +1 -1
  522. package/paginator/BasePaginator.vue +49 -0
  523. package/paginator/CurrentPageReport.vue +56 -0
  524. package/paginator/FirstPageLink.vue +38 -0
  525. package/paginator/JumpToPageDropdown.vue +56 -0
  526. package/paginator/JumpToPageInput.vue +57 -0
  527. package/paginator/LastPageLink.vue +38 -0
  528. package/paginator/NextPageLink.vue +38 -0
  529. package/paginator/PageLinks.vue +56 -0
  530. package/paginator/Paginator.d.ts +367 -0
  531. package/paginator/Paginator.vue +303 -0
  532. package/paginator/PrevPageLink.vue +38 -0
  533. package/paginator/RowsPerPageDropdown.vue +58 -0
  534. package/paginator/package.json +9 -0
  535. package/paginator/style/PaginatorStyle.d.ts +3 -0
  536. package/paginator/style/package.json +6 -0
  537. package/panel/BasePanel.vue +24 -0
  538. package/panel/Panel.d.ts +244 -0
  539. package/panel/Panel.vue +95 -0
  540. package/panel/package.json +9 -0
  541. package/panel/style/PanelStyle.d.ts +3 -0
  542. package/panel/style/package.json +6 -0
  543. package/panelmenu/BasePanelMenu.vue +33 -0
  544. package/panelmenu/PanelMenu.d.ts +392 -0
  545. package/panelmenu/PanelMenu.vue +277 -0
  546. package/panelmenu/PanelMenuList.vue +397 -0
  547. package/panelmenu/PanelMenuSub.vue +213 -0
  548. package/panelmenu/package.json +9 -0
  549. package/panelmenu/style/PanelMenuStyle.d.ts +3 -0
  550. package/panelmenu/style/package.json +6 -0
  551. package/passthrough/index.d.ts +6 -0
  552. package/passthrough/package.json +6 -0
  553. package/passthrough/tailwind/index.d.ts +4 -0
  554. package/passthrough/tailwind/package.json +6 -0
  555. package/password/BasePassword.vue +114 -0
  556. package/password/Password.d.ts +346 -0
  557. package/password/Password.vue +301 -0
  558. package/password/package.json +9 -0
  559. package/password/style/PasswordStyle.d.ts +3 -0
  560. package/password/style/package.json +6 -0
  561. package/picklist/BasePickList.vue +101 -0
  562. package/picklist/PickList.d.ts +583 -0
  563. package/picklist/PickList.vue +892 -0
  564. package/picklist/package.json +9 -0
  565. package/picklist/style/PickListStyle.d.ts +3 -0
  566. package/picklist/style/package.json +6 -0
  567. package/portal/Portal.d.ts +37 -0
  568. package/portal/Portal.vue +41 -0
  569. package/portal/package.json +9 -0
  570. package/portal/style/PortalStyle.d.ts +3 -0
  571. package/portal/style/package.json +6 -0
  572. package/progressbar/BaseProgressBar.vue +29 -0
  573. package/progressbar/ProgressBar.d.ts +135 -0
  574. package/progressbar/ProgressBar.vue +35 -0
  575. package/progressbar/package.json +9 -0
  576. package/progressbar/style/ProgressBarStyle.d.ts +3 -0
  577. package/progressbar/style/package.json +6 -0
  578. package/progressspinner/BaseProgressSpinner.vue +29 -0
  579. package/progressspinner/ProgressSpinner.d.ts +129 -0
  580. package/progressspinner/ProgressSpinner.vue +23 -0
  581. package/progressspinner/package.json +9 -0
  582. package/progressspinner/style/ProgressSpinnerStyle.d.ts +3 -0
  583. package/progressspinner/style/package.json +6 -0
  584. package/radiobutton/BaseRadioButton.vue +51 -0
  585. package/radiobutton/RadioButton.d.ts +194 -0
  586. package/radiobutton/RadioButton.vue +52 -0
  587. package/radiobutton/package.json +9 -0
  588. package/radiobutton/style/RadioButtonStyle.d.ts +3 -0
  589. package/radiobutton/style/package.json +6 -0
  590. package/rating/BaseRating.vue +49 -0
  591. package/rating/Rating.d.ts +300 -0
  592. package/rating/Rating.vue +128 -0
  593. package/rating/package.json +9 -0
  594. package/rating/style/RatingStyle.d.ts +3 -0
  595. package/rating/style/package.json +6 -0
  596. package/ripple/Ripple.d.ts +82 -0
  597. package/ripple/package.json +6 -0
  598. package/ripple/style/RippleStyle.d.ts +3 -0
  599. package/ripple/style/package.json +6 -0
  600. package/row/Row.d.ts +113 -0
  601. package/row/Row.vue +11 -0
  602. package/row/package.json +9 -0
  603. package/row/style/RowStyle.d.ts +3 -0
  604. package/row/style/package.json +6 -0
  605. package/scrollpanel/BaseScrollPanel.vue +21 -0
  606. package/scrollpanel/ScrollPanel.d.ts +161 -0
  607. package/scrollpanel/ScrollPanel.vue +362 -0
  608. package/scrollpanel/package.json +9 -0
  609. package/scrollpanel/style/ScrollPanelStyle.d.ts +3 -0
  610. package/scrollpanel/style/package.json +6 -0
  611. package/scrolltop/BaseScrollTop.vue +33 -0
  612. package/scrolltop/ScrollTop.d.ts +158 -0
  613. package/scrolltop/ScrollTop.vue +97 -0
  614. package/scrolltop/package.json +9 -0
  615. package/scrolltop/style/ScrollTopStyle.d.ts +3 -0
  616. package/scrolltop/style/package.json +6 -0
  617. package/selectbutton/BaseSelectButton.vue +37 -0
  618. package/selectbutton/SelectButton.d.ts +253 -0
  619. package/selectbutton/SelectButton.vue +188 -0
  620. package/selectbutton/package.json +9 -0
  621. package/selectbutton/style/SelectButtonStyle.d.ts +3 -0
  622. package/selectbutton/style/package.json +6 -0
  623. package/sidebar/BaseSidebar.vue +53 -0
  624. package/sidebar/Sidebar.d.ts +241 -0
  625. package/sidebar/Sidebar.vue +195 -0
  626. package/sidebar/package.json +9 -0
  627. package/sidebar/style/SidebarStyle.d.ts +3 -0
  628. package/sidebar/style/package.json +6 -0
  629. package/skeleton/BaseSkeleton.vue +41 -0
  630. package/skeleton/Skeleton.d.ts +135 -0
  631. package/skeleton/Skeleton.vue +18 -0
  632. package/skeleton/package.json +9 -0
  633. package/skeleton/style/SkeletonStyle.d.ts +3 -0
  634. package/skeleton/style/package.json +6 -0
  635. package/slider/BaseSlider.vue +54 -0
  636. package/slider/Slider.d.ts +201 -0
  637. package/slider/Slider.vue +325 -0
  638. package/slider/package.json +9 -0
  639. package/slider/style/SliderStyle.d.ts +3 -0
  640. package/slider/style/package.json +6 -0
  641. package/speeddial/BaseSpeedDial.vue +76 -0
  642. package/speeddial/SpeedDial.d.ts +364 -0
  643. package/speeddial/SpeedDial.vue +466 -0
  644. package/speeddial/package.json +9 -0
  645. package/speeddial/style/SpeedDialStyle.d.ts +3 -0
  646. package/speeddial/style/package.json +6 -0
  647. package/splitbutton/BaseSplitButton.vue +93 -0
  648. package/splitbutton/SplitButton.d.ts +274 -0
  649. package/splitbutton/SplitButton.vue +118 -0
  650. package/splitbutton/package.json +9 -0
  651. package/splitbutton/style/SplitButtonStyle.d.ts +3 -0
  652. package/splitbutton/style/package.json +6 -0
  653. package/splitter/BaseSplitter.vue +37 -0
  654. package/splitter/Splitter.d.ts +235 -0
  655. package/splitter/Splitter.vue +381 -0
  656. package/splitter/package.json +9 -0
  657. package/splitter/style/SplitterStyle.d.ts +3 -0
  658. package/splitter/style/package.json +6 -0
  659. package/splitterpanel/BaseSplitterPanel.vue +25 -0
  660. package/splitterpanel/SplitterPanel.d.ts +133 -0
  661. package/splitterpanel/SplitterPanel.vue +28 -0
  662. package/splitterpanel/package.json +9 -0
  663. package/splitterpanel/style/SplitterPanelStyle.d.ts +3 -0
  664. package/splitterpanel/style/package.json +6 -0
  665. package/steps/BaseSteps.vue +32 -0
  666. package/steps/Steps.d.ts +217 -0
  667. package/steps/Steps.vue +208 -0
  668. package/steps/package.json +9 -0
  669. package/steps/style/StepsStyle.d.ts +3 -0
  670. package/steps/style/package.json +6 -0
  671. package/styleclass/StyleClass.d.ts +100 -0
  672. package/styleclass/package.json +6 -0
  673. package/styleclass/style/StyleClassStyle.d.ts +3 -0
  674. package/styleclass/style/package.json +6 -0
  675. package/tabmenu/BaseTabMenu.vue +37 -0
  676. package/tabmenu/TabMenu.d.ts +261 -0
  677. package/tabmenu/TabMenu.vue +303 -0
  678. package/tabmenu/package.json +9 -0
  679. package/tabmenu/style/TabMenuStyle.d.ts +3 -0
  680. package/tabmenu/style/package.json +6 -0
  681. package/tabpanel/BaseTabPanel.vue +21 -0
  682. package/tabpanel/TabPanel.d.ts +198 -0
  683. package/tabpanel/TabPanel.vue +12 -0
  684. package/tabpanel/package.json +9 -0
  685. package/tabpanel/style/TabPanelStyle.d.ts +3 -0
  686. package/tabpanel/style/package.json +6 -0
  687. package/tabview/BaseTabView.vue +53 -0
  688. package/tabview/TabView.d.ts +257 -0
  689. package/tabview/TabView.vue +372 -0
  690. package/tabview/package.json +9 -0
  691. package/tabview/style/TabViewStyle.d.ts +3 -0
  692. package/tabview/style/package.json +6 -0
  693. package/tag/BaseTag.vue +21 -0
  694. package/tag/Tag.d.ts +143 -0
  695. package/tag/Tag.vue +18 -0
  696. package/tag/package.json +9 -0
  697. package/tag/style/TagStyle.d.ts +3 -0
  698. package/tag/style/package.json +6 -0
  699. package/terminal/BaseTerminal.vue +25 -0
  700. package/terminal/Terminal.d.ts +165 -0
  701. package/terminal/Terminal.vue +57 -0
  702. package/terminal/package.json +9 -0
  703. package/terminal/style/TerminalStyle.d.ts +3 -0
  704. package/terminal/style/package.json +6 -0
  705. package/terminalservice/TerminalService.d.ts +30 -0
  706. package/terminalservice/package.json +6 -0
  707. package/textarea/BaseTextarea.vue +19 -0
  708. package/textarea/Textarea.d.ts +145 -0
  709. package/textarea/Textarea.vue +55 -0
  710. package/textarea/package.json +9 -0
  711. package/textarea/style/TextareaStyle.d.ts +3 -0
  712. package/textarea/style/package.json +6 -0
  713. package/tieredmenu/BaseTieredMenu.vue +57 -0
  714. package/tieredmenu/TieredMenu.d.ts +400 -0
  715. package/tieredmenu/TieredMenu.vue +608 -0
  716. package/tieredmenu/TieredMenuSub.vue +212 -0
  717. package/tieredmenu/package.json +9 -0
  718. package/tieredmenu/style/TieredMenuStyle.d.ts +3 -0
  719. package/tieredmenu/style/package.json +6 -0
  720. package/timeline/BaseTimeline.vue +27 -0
  721. package/timeline/Timeline.d.ts +219 -0
  722. package/timeline/Timeline.vue +43 -0
  723. package/timeline/package.json +9 -0
  724. package/timeline/style/TimelineStyle.d.ts +3 -0
  725. package/timeline/style/package.json +6 -0
  726. package/toast/BaseToast.vue +61 -0
  727. package/toast/Toast.d.ts +349 -0
  728. package/toast/Toast.vue +162 -0
  729. package/toast/ToastMessage.vue +120 -0
  730. package/toast/package.json +9 -0
  731. package/toast/style/ToastStyle.d.ts +3 -0
  732. package/toast/style/package.json +6 -0
  733. package/toasteventbus/package.json +5 -0
  734. package/toastservice/ToastService.d.ts +52 -0
  735. package/toastservice/package.json +6 -0
  736. package/togglebutton/BaseToggleButton.vue +64 -0
  737. package/togglebutton/ToggleButton.d.ts +263 -0
  738. package/togglebutton/ToggleButton.vue +105 -0
  739. package/togglebutton/package.json +9 -0
  740. package/togglebutton/style/ToggleButtonStyle.d.ts +3 -0
  741. package/togglebutton/style/package.json +6 -0
  742. package/toolbar/BaseToolbar.vue +21 -0
  743. package/toolbar/Toolbar.d.ts +139 -0
  744. package/toolbar/Toolbar.vue +22 -0
  745. package/toolbar/package.json +9 -0
  746. package/toolbar/style/ToolbarStyle.d.ts +3 -0
  747. package/toolbar/style/package.json +6 -0
  748. package/tooltip/Tooltip.d.ts +202 -0
  749. package/tooltip/package.json +6 -0
  750. package/tooltip/style/TooltipStyle.d.ts +3 -0
  751. package/tooltip/style/package.json +6 -0
  752. package/tree/BaseTree.vue +81 -0
  753. package/tree/Tree.d.ts +469 -0
  754. package/tree/Tree.vue +244 -0
  755. package/tree/TreeNode.vue +444 -0
  756. package/tree/package.json +9 -0
  757. package/tree/style/TreeStyle.d.ts +3 -0
  758. package/tree/style/package.json +6 -0
  759. package/treeselect/BaseTreeSelect.vue +87 -0
  760. package/treeselect/TreeSelect.d.ts +417 -0
  761. package/treeselect/TreeSelect.vue +441 -0
  762. package/treeselect/package.json +9 -0
  763. package/treeselect/style/TreeSelectStyle.d.ts +3 -0
  764. package/treeselect/style/package.json +6 -0
  765. package/treetable/BaseTreeTable.vue +173 -0
  766. package/treetable/BodyCell.vue +217 -0
  767. package/treetable/FooterCell.vue +103 -0
  768. package/treetable/HeaderCell.vue +238 -0
  769. package/treetable/TreeTable.d.ts +786 -0
  770. package/treetable/TreeTable.vue +853 -0
  771. package/treetable/TreeTableRow.vue +431 -0
  772. package/treetable/package.json +9 -0
  773. package/treetable/style/TreeTableStyle.d.ts +3 -0
  774. package/treetable/style/package.json +6 -0
  775. package/tristatecheckbox/BaseTriStateCheckbox.vue +42 -0
  776. package/tristatecheckbox/TriStateCheckbox.d.ts +244 -0
  777. package/tristatecheckbox/TriStateCheckbox.vue +111 -0
  778. package/tristatecheckbox/package.json +9 -0
  779. package/tristatecheckbox/style/TriStateCheckboxStyle.d.ts +3 -0
  780. package/tristatecheckbox/style/package.json +6 -0
  781. package/ts-helpers.d.ts +38 -0
  782. package/useconfirm/UseConfirm.d.ts +6 -0
  783. package/useconfirm/package.json +6 -0
  784. package/usedialog/UseDialog.d.ts +5 -0
  785. package/usedialog/package.json +6 -0
  786. package/usestyle/UseStyle.d.ts +21 -0
  787. package/usestyle/package.json +6 -0
  788. package/usetoast/UseToast.d.ts +3 -0
  789. package/usetoast/package.json +6 -0
  790. package/utils/Utils.d.ts +114 -0
  791. package/utils/package.json +6 -0
  792. package/virtualscroller/BaseVirtualScroller.vue +100 -0
  793. package/virtualscroller/VirtualScroller.d.ts +520 -0
  794. package/virtualscroller/VirtualScroller.vue +673 -0
  795. package/virtualscroller/package.json +9 -0
  796. package/virtualscroller/style/VirtualScrollerStyle.d.ts +3 -0
  797. package/virtualscroller/style/package.json +6 -0
  798. package/web-types.json +1 -1
package/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018-2023 PrimeTek
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,173 @@
1
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
2
+ [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue)
3
+ [![Discord Chat](https://img.shields.io/discord/557940238991753223.svg?color=7289da&label=chat&logo=discord)](https://discord.gg/gzKFYnpmCY)
4
+ [![Prime Discussions](https://img.shields.io/github/discussions-search?query=org%3Aprimefaces&logo=github&label=Prime%20Discussions&link=https%3A%2F%2Fgithub.com%2Forgs%2Fprimefaces%2Fdiscussions)](https://github.com/orgs/primefaces/discussions)
5
+
6
+ [![PrimeVue Hero](https://www.primefaces.org/static/social/primevue-preview.jpg)](https://primevue.org/)
7
+
8
+ # PrimeVue
9
+
10
+ PrimeVue is a rich set of open source UI Components for Vue. See [PrimeVue homepage](https://primevue.org/) for live showcase and documentation.
11
+
12
+ ## Download
13
+
14
+ PrimeVue is available at [npm](https://www.npmjs.com/package/primevue).
15
+
16
+ ```
17
+ # Using npm
18
+ npm install primevue
19
+
20
+ # Using yarn
21
+ yarn add primevue
22
+
23
+ # Using pnpm
24
+ pnpm add primevue
25
+ ```
26
+
27
+ ## Plugin
28
+
29
+ PrimeVue plugin is required to be installed with the **use** function to set up the default [configuration](https://primevue.org/theming).
30
+
31
+ ```javascript
32
+ import { createApp } from 'vue';
33
+ import PrimeVue from 'primevue/config';
34
+ const app = createApp(App);
35
+
36
+ app.use(PrimeVue);
37
+ ```
38
+
39
+ ## Theming
40
+
41
+ PrimeVue has two theming has modes; styled or unstyled.
42
+
43
+ **Styled Mode**
44
+
45
+ Styled mode is based on pre-skinned components with opinionated themes like Material, Bootstrap or PrimeOne themes. Theme is the required css file to be imported, visit the [Themes](https://primevue.org/theming) section for the complete list of available themes to choose from.
46
+
47
+ ```javascript
48
+ // theme
49
+ import 'primevue/resources/themes/lara-light-teal/theme.css';
50
+ ```
51
+
52
+ **Unstyled Mode**
53
+
54
+ Unstyled mode is disabled by default for all components. Using the PrimeVue plugin during installation, set `unstyled` as true to enable it globally. Visit the [Unstyled mode](https://primevue.org/unstyled) documentation for more information and examples.
55
+
56
+ ```javascript
57
+ import { createApp } from 'vue';
58
+ import PrimeVue from 'primevue/config';
59
+ const app = createApp(App);
60
+
61
+ app.use(PrimeVue, { unstyled: true });
62
+ ```
63
+
64
+ ## Usage
65
+
66
+ Each component can be imported individually so that you only bundle what you use. Import path is available in the documentation of the corresponding component.
67
+
68
+ ```javascript
69
+ import Button from 'primevue/button';
70
+
71
+ const app = createApp(App);
72
+ app.component('Button', Button);
73
+ ```
74
+
75
+ ## Prop Cases
76
+
77
+ Component prop names are described as camel case throughout the documentation however kebab-case is also fully supported. Events on the other hand should always be kebab-case.
78
+
79
+ ```vue
80
+ <Dialog :showHeader="false"></Dialog>
81
+
82
+ <!-- can be written as -->
83
+
84
+ <Dialog :show-header="false"></Dialog>
85
+ ```
86
+
87
+ ## Nuxt Integration
88
+
89
+ The [nuxt-primevue](https://www.npmjs.com/package/nuxt-primevue) package is the official module by PrimeTek.
90
+
91
+ ```
92
+ # Using npm
93
+ npm install --save-dev nuxt-primevue
94
+
95
+ # Using yarn
96
+ yarn add --dev nuxt-primevue
97
+
98
+ # Using pnpm
99
+ pnpm add -D nuxt-primevue
100
+ ```
101
+
102
+ The module is enabled by adding `nuxt-primevue` to the modules option. Configuration values are defined with the `primevue` property.
103
+
104
+ ```javascript
105
+ export default defineNuxtConfig({
106
+ modules: ['nuxt-primevue'],
107
+ primevue: {
108
+ /* Options */
109
+ }
110
+ });
111
+ ```
112
+
113
+ Whether to install the PrimeVue plugin, defaults to true. Disable this option if you prefer to configure PrimeVue manually e.g. with a Nuxt plugin.
114
+
115
+ ```javascript
116
+ primevue: {
117
+ usePrimeVue: true;
118
+ }
119
+ ```
120
+
121
+ The names of the components, directives and composables to import and register are provided using the include property. When the value is ignored or set using the \* alias, all of the components, directives and composables are registered respectively.
122
+
123
+ ```javascript
124
+ primevue: {
125
+ components: {
126
+ include: ['Button', 'DataTable']
127
+ },
128
+ directives: {
129
+ include: ['Ripple', 'Tooltip']
130
+ },
131
+ composables: {
132
+ include: ['useStyle']
133
+ }
134
+ }
135
+ ```
136
+
137
+ In styled mode, the theme can be defined at Nuxt configuration with the css property. Note that this only applies to styled mode, in unstyled mode a theme file is not required as styling is done externally.
138
+
139
+ ```javascript
140
+ export default defineNuxtConfig({
141
+ css: ['primevue/resources/themes/lara-dark-teal/theme.css']
142
+ });
143
+ ```
144
+
145
+ For detailed [information](https://primevue.org/nuxt)
146
+
147
+ ## Example
148
+
149
+ We've created various samples for the popular options in the Vue ecosystem. Visit the [primevue-examples](https://github.com/primefaces/primevue-examples) repository for the samples.
150
+
151
+ ### Vite
152
+
153
+ <a href="https://github.com/primefaces/primevue-examples/tree/main/vite-quickstart">
154
+ <img src="https://primefaces.org/cdn/primevue/images/logos/vite.svg" alt="vite" width="112" height="112">
155
+ </a>
156
+
157
+ ### Nuxt
158
+
159
+ <a href="https://github.com/primefaces/primevue-examples/tree/main/nuxt-quickstart">
160
+ <img src="https://primefaces.org/cdn/primevue/images/logos/nuxt.svg" alt="nuxt" width="112" height="112">
161
+ </a>
162
+
163
+ ### Astro
164
+
165
+ <a href="https://github.com/primefaces/primevue-examples/tree/main/astro-quickstart">
166
+ <img src="https://primefaces.org/cdn/primevue/images/logos/astro.svg" alt="astro" width="112" height="112">
167
+ </a>
168
+
169
+ ## Contributors
170
+
171
+ <a href="https://github.com/primefaces/primevue/graphs/contributors">
172
+ <img src="https://contrib.rocks/image?repo=primefaces/primevue" />
173
+ </a>
@@ -0,0 +1,233 @@
1
+ /**
2
+ *
3
+ * Accordion groups a collection of contents in tabs.
4
+ *
5
+ * [Live Demo](https://www.primevue.org/accordion/)
6
+ *
7
+ * @module accordion
8
+ *
9
+ */
10
+ import { VNode } from 'vue';
11
+ import { AccordionTabPassThroughOptionType } from '../accordiontab';
12
+ import { ComponentHooks } from '../basecomponent';
13
+ import { PassThroughOptions } from '../passthrough';
14
+ import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
15
+
16
+ export declare type AccordionPassThroughOptionType = AccordionPassThroughAttributes | ((options: AccordionPassThroughMethodOptions) => AccordionPassThroughAttributes | string) | string | null | undefined;
17
+
18
+ /**
19
+ * Custom passthrough(pt) option method.
20
+ */
21
+ export interface AccordionPassThroughMethodOptions {
22
+ /**
23
+ * Defines instance.
24
+ */
25
+ instance: any;
26
+ /**
27
+ * Defines valid properties.
28
+ */
29
+ props: AccordionProps;
30
+ /**
31
+ * Defines current inline state.
32
+ */
33
+ state: AccordionState;
34
+ /**
35
+ * Defines passthrough(pt) options in global config.
36
+ */
37
+ global: object | undefined;
38
+ }
39
+ /**
40
+ * Custom tab open event.
41
+ * @see {@link AccordionEmits.tab-open}
42
+ */
43
+ export interface AccordionTabOpenEvent {
44
+ /**
45
+ * Browser mouse event.
46
+ * @type {MouseEvent}
47
+ */
48
+ originalEvent: MouseEvent;
49
+ /**
50
+ * Opened tab index.
51
+ */
52
+ index: number;
53
+ }
54
+
55
+ /**
56
+ * Custom tab close event.
57
+ * @see {@link AccordionEmits.tab-close}
58
+ * @extends {AccordionTabOpenEvent}
59
+ */
60
+ export interface AccordionTabCloseEvent extends AccordionTabOpenEvent {}
61
+
62
+ /**
63
+ * Custom tab open event.
64
+ * @see {@link AccordionEmits.tab-open}
65
+ * @extends AccordionTabOpenEvent
66
+ */
67
+ export interface AccordionClickEvent extends AccordionTabOpenEvent {}
68
+
69
+ /**
70
+ * Custom passthrough(pt) options.
71
+ * @see {@link AccordionProps.pt}
72
+ */
73
+ export interface AccordionPassThroughOptions {
74
+ /**
75
+ * Used to pass attributes to the root's DOM element.
76
+ */
77
+ root?: AccordionPassThroughOptionType;
78
+ /**
79
+ * Used to pass attributes to AccordionTab helper components.
80
+ * @deprecated since v3.30.1. Use 'accordiontab' property instead.
81
+ */
82
+ tab?: AccordionTabPassThroughOptionType;
83
+ /**
84
+ * Used to pass attributes to AccordionTab helper components.
85
+ */
86
+ accordiontab?: AccordionTabPassThroughOptionType;
87
+ /**
88
+ * Used to manage all lifecycle hooks
89
+ * @see {@link BaseComponent.ComponentHooks}
90
+ */
91
+ hooks?: ComponentHooks;
92
+ }
93
+
94
+ /**
95
+ * Custom passthrough attributes for each DOM elements
96
+ */
97
+ export interface AccordionPassThroughAttributes {
98
+ [key: string]: any;
99
+ }
100
+
101
+ /**
102
+ * Defines current inline state in Accordion component.
103
+ */
104
+ export interface AccordionState {
105
+ /**
106
+ * Current id state as a string
107
+ */
108
+ id: string;
109
+ /**
110
+ * Current active index state.
111
+ */
112
+ d_activeIndex: number | number[];
113
+ }
114
+
115
+ /**
116
+ * Defines valid properties in Accordion component.
117
+ */
118
+ export interface AccordionProps {
119
+ /**
120
+ * When enabled, multiple tabs can be activated at the same time.
121
+ * @defaultValue false
122
+ */
123
+ multiple?: boolean | undefined;
124
+ /**
125
+ * Index of the active tab or an array of indexes in multiple mode.
126
+ * @defaultValue null
127
+ */
128
+ activeIndex?: number | number[] | null | undefined;
129
+ /**
130
+ * When enabled, hidden tabs are not rendered at all. Defaults to false that hides tabs with css.
131
+ * @defaultValue false
132
+ */
133
+ lazy?: boolean | undefined;
134
+ /**
135
+ * Icon of a collapsed tab.
136
+ */
137
+ expandIcon?: string | undefined;
138
+ /**
139
+ * Icon of an expanded tab.
140
+ */
141
+ collapseIcon?: string | undefined;
142
+ /**
143
+ * Index of the element in tabbing order.
144
+ * @defaultValue 0
145
+ */
146
+ tabindex?: number | undefined;
147
+ /**
148
+ * When enabled, the focused tab is activated.
149
+ * @defaultValue false
150
+ */
151
+ selectOnFocus?: boolean | undefined;
152
+ /**
153
+ * Used to pass attributes to DOM elements inside the component.
154
+ * @type {AccordionPassThroughOptions}
155
+ */
156
+ pt?: PassThrough<AccordionPassThroughOptions>;
157
+ /**
158
+ * Used to configure passthrough(pt) options of the component.
159
+ * @type {PassThroughOptions}
160
+ */
161
+ ptOptions?: PassThroughOptions;
162
+ /**
163
+ * When enabled, it removes component related styles in the core.
164
+ * @defaultValue false
165
+ */
166
+ unstyled?: boolean;
167
+ }
168
+
169
+ /**
170
+ * Defines valid slots in Accordion slots.
171
+ */
172
+ export interface AccordionSlots {
173
+ /**
174
+ * Default slot to detect AccordionTab components.
175
+ */
176
+ default(): VNode[];
177
+ /**
178
+ * Custom collapse icon template.
179
+ */
180
+ collapseicon(): VNode[];
181
+ /**
182
+ * Custom expand icon template.
183
+ */
184
+ expandicon(): VNode[];
185
+ }
186
+
187
+ /**
188
+ * Defines valid emits in Accordion component.
189
+ */
190
+ export interface AccordionEmits {
191
+ /**
192
+ * Emitted when the active tab changes.
193
+ * @param {number | undefined} value - Index of new active tab.
194
+ */
195
+ 'update:activeIndex'(value: number | undefined): void;
196
+ /**
197
+ * Callback to invoke when a tab gets expanded.
198
+ * @param {AccordionTabOpenEvent} event - Custom tab open event.
199
+ */
200
+ 'tab-open'(event: AccordionTabOpenEvent): void;
201
+ /**
202
+ * Callback to invoke when an active tab is collapsed by clicking on the header.
203
+ * @param {AccordionTabCloseEvent} event - Custom tab close event.
204
+ */
205
+ 'tab-close'(event: AccordionTabCloseEvent): void;
206
+ /**
207
+ * Callback to invoke when an active tab is clicked.
208
+ * @param {AccordionClickEvent} event - Custom tab click event.
209
+ */
210
+ 'tab-click'(event: AccordionClickEvent): void;
211
+ }
212
+
213
+ /**
214
+ * **PrimeVue - Accordion**
215
+ *
216
+ * _Accordion groups a collection of contents in tabs._
217
+ *
218
+ * [Live Demo](https://www.primevue.org/accordion/)
219
+ * --- ---
220
+ * ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
221
+ *
222
+ * @group Component
223
+ *
224
+ */
225
+ declare class Accordion extends ClassComponent<AccordionProps, AccordionSlots, AccordionEmits> {}
226
+
227
+ declare module '@vue/runtime-core' {
228
+ interface GlobalComponents {
229
+ Accordion: GlobalComponentConstructor<Accordion>;
230
+ }
231
+ }
232
+
233
+ export default Accordion;
@@ -0,0 +1,259 @@
1
+ <template>
2
+ <div :class="cx('root')" v-bind="ptm('root')">
3
+ <div v-for="(tab, i) of tabs" :key="getKey(tab, i)" :class="cx('tab.root', { tab, index: i })" v-bind="getTabPT(tab, 'root', i)" data-pc-name="accordiontab" :data-pc-index="i" :data-p-active="isTabActive(i)">
4
+ <div
5
+ :style="getTabProp(tab, 'headerStyle')"
6
+ :class="[cx('tab.header', { tab, index: i }), getTabProp(tab, 'headerClass')]"
7
+ v-bind="{ ...getTabProp(tab, 'headerProps'), ...getTabPT(tab, 'header', i) }"
8
+ :data-p-highlight="isTabActive(i)"
9
+ :data-p-disabled="getTabProp(tab, 'disabled')"
10
+ >
11
+ <a
12
+ :id="getTabHeaderActionId(i)"
13
+ :class="cx('tab.headerAction')"
14
+ :tabindex="getTabProp(tab, 'disabled') ? -1 : tabindex"
15
+ role="button"
16
+ :aria-disabled="getTabProp(tab, 'disabled')"
17
+ :aria-expanded="isTabActive(i)"
18
+ :aria-controls="getTabContentId(i)"
19
+ @click="onTabClick($event, tab, i)"
20
+ @keydown="onTabKeyDown($event, tab, i)"
21
+ v-bind="{ ...getTabProp(tab, 'headeractionprops'), ...getTabPT(tab, 'headeraction', i) }"
22
+ >
23
+ <component v-if="tab.children && tab.children.headericon" :is="tab.children.headericon" :isTabActive="isTabActive(i)" :index="i"></component>
24
+ <component
25
+ v-else-if="isTabActive(i)"
26
+ :is="$slots.collapseicon ? $slots.collapseicon : collapseIcon ? 'span' : 'ChevronDownIcon'"
27
+ :class="[cx('tab.headerIcon'), collapseIcon]"
28
+ aria-hidden="true"
29
+ v-bind="getTabPT(tab, 'headericon', i)"
30
+ />
31
+ <component v-else :is="$slots.expandicon ? $slots.expandicon : expandIcon ? 'span' : 'ChevronRightIcon'" :class="[cx('tab.headerIcon'), expandIcon]" aria-hidden="true" v-bind="getTabPT(tab, 'headericon', i)" />
32
+ <span v-if="tab.props && tab.props.header" :class="cx('tab.headerTitle')" v-bind="getTabPT(tab, 'headertitle', i)">{{ tab.props.header }}</span>
33
+ <component v-if="tab.children && tab.children.header" :is="tab.children.header"></component>
34
+ </a>
35
+ </div>
36
+ <transition name="p-toggleable-content" v-bind="getTabPT(tab, 'transition', i)">
37
+ <div
38
+ v-if="lazy ? isTabActive(i) : true"
39
+ v-show="lazy ? true : isTabActive(i)"
40
+ :id="getTabContentId(i)"
41
+ :style="getTabProp(tab, 'contentStyle')"
42
+ :class="[cx('tab.toggleableContent'), getTabProp(tab, 'contentClass')]"
43
+ role="region"
44
+ :aria-labelledby="getTabHeaderActionId(i)"
45
+ v-bind="{ ...getTabProp(tab, 'contentProps'), ...getTabPT(tab, 'toggleablecontent', i) }"
46
+ >
47
+ <div :class="cx('tab.content')" v-bind="getTabPT(tab, 'content', i)">
48
+ <component :is="tab"></component>
49
+ </div>
50
+ </div>
51
+ </transition>
52
+ </div>
53
+ </div>
54
+ </template>
55
+
56
+ <script>
57
+ import ChevronDownIcon from 'primevue/icons/chevrondown';
58
+ import ChevronRightIcon from 'primevue/icons/chevronright';
59
+ import Ripple from 'primevue/ripple';
60
+ import { DomHandler, UniqueComponentId } from 'primevue/utils';
61
+ import { mergeProps } from 'vue';
62
+ import BaseAccordion from './BaseAccordion.vue';
63
+
64
+ export default {
65
+ name: 'Accordion',
66
+ extends: BaseAccordion,
67
+ emits: ['update:activeIndex', 'tab-open', 'tab-close', 'tab-click'],
68
+ data() {
69
+ return {
70
+ id: this.$attrs.id,
71
+ d_activeIndex: this.activeIndex
72
+ };
73
+ },
74
+ watch: {
75
+ '$attrs.id': function (newValue) {
76
+ this.id = newValue || UniqueComponentId();
77
+ },
78
+ activeIndex(newValue) {
79
+ this.d_activeIndex = newValue;
80
+ }
81
+ },
82
+ mounted() {
83
+ this.id = this.id || UniqueComponentId();
84
+ },
85
+ methods: {
86
+ isAccordionTab(child) {
87
+ return child.type.name === 'AccordionTab';
88
+ },
89
+ isTabActive(index) {
90
+ return this.multiple ? this.d_activeIndex && this.d_activeIndex.includes(index) : this.d_activeIndex === index;
91
+ },
92
+ getTabProp(tab, name) {
93
+ return tab.props ? tab.props[name] : undefined;
94
+ },
95
+ getKey(tab, index) {
96
+ return this.getTabProp(tab, 'header') || index;
97
+ },
98
+ getTabHeaderActionId(index) {
99
+ return `${this.id}_${index}_header_action`;
100
+ },
101
+ getTabContentId(index) {
102
+ return `${this.id}_${index}_content`;
103
+ },
104
+ getTabPT(tab, key, index) {
105
+ const count = this.tabs.length;
106
+ const tabMetaData = {
107
+ props: tab.props || {},
108
+ parent: {
109
+ props: this.$props,
110
+ state: this.$data
111
+ },
112
+ context: {
113
+ index,
114
+ count,
115
+ first: index === 0,
116
+ last: index === count - 1,
117
+ active: this.isTabActive(index)
118
+ }
119
+ };
120
+
121
+ return mergeProps(this.ptm(`tab.${key}`, { tab: tabMetaData }), this.ptm(`accordiontab.${key}`, { accordiontab: tabMetaData }), this.ptm(`accordiontab.${key}`, tabMetaData), this.ptmo(this.getTabProp(tab, 'pt'), key, tabMetaData));
122
+ },
123
+ onTabClick(event, tab, index) {
124
+ this.changeActiveIndex(event, tab, index);
125
+ this.$emit('tab-click', { originalEvent: event, index });
126
+ },
127
+ onTabKeyDown(event, tab, index) {
128
+ switch (event.code) {
129
+ case 'ArrowDown':
130
+ this.onTabArrowDownKey(event);
131
+ break;
132
+
133
+ case 'ArrowUp':
134
+ this.onTabArrowUpKey(event);
135
+ break;
136
+
137
+ case 'Home':
138
+ this.onTabHomeKey(event);
139
+ break;
140
+
141
+ case 'End':
142
+ this.onTabEndKey(event);
143
+ break;
144
+
145
+ case 'Enter':
146
+ case 'Space':
147
+ this.onTabEnterKey(event, tab, index);
148
+ break;
149
+
150
+ default:
151
+ break;
152
+ }
153
+ },
154
+ onTabArrowDownKey(event) {
155
+ const nextHeaderAction = this.findNextHeaderAction(event.target.parentElement.parentElement);
156
+
157
+ nextHeaderAction ? this.changeFocusedTab(event, nextHeaderAction) : this.onTabHomeKey(event);
158
+ event.preventDefault();
159
+ },
160
+ onTabArrowUpKey(event) {
161
+ const prevHeaderAction = this.findPrevHeaderAction(event.target.parentElement.parentElement);
162
+
163
+ prevHeaderAction ? this.changeFocusedTab(event, prevHeaderAction) : this.onTabEndKey(event);
164
+ event.preventDefault();
165
+ },
166
+ onTabHomeKey(event) {
167
+ const firstHeaderAction = this.findFirstHeaderAction();
168
+
169
+ this.changeFocusedTab(event, firstHeaderAction);
170
+ event.preventDefault();
171
+ },
172
+ onTabEndKey(event) {
173
+ const lastHeaderAction = this.findLastHeaderAction();
174
+
175
+ this.changeFocusedTab(event, lastHeaderAction);
176
+ event.preventDefault();
177
+ },
178
+ onTabEnterKey(event, tab, index) {
179
+ this.changeActiveIndex(event, tab, index);
180
+
181
+ event.preventDefault();
182
+ },
183
+ findNextHeaderAction(tabElement, selfCheck = false) {
184
+ const nextTabElement = selfCheck ? tabElement : tabElement.nextElementSibling;
185
+ const headerElement = DomHandler.findSingle(nextTabElement, '[data-pc-section="header"]');
186
+
187
+ return headerElement ? (DomHandler.getAttribute(headerElement, 'data-p-disabled') ? this.findNextHeaderAction(headerElement.parentElement) : DomHandler.findSingle(headerElement, '[data-pc-section="headeraction"]')) : null;
188
+ },
189
+ findPrevHeaderAction(tabElement, selfCheck = false) {
190
+ const prevTabElement = selfCheck ? tabElement : tabElement.previousElementSibling;
191
+ const headerElement = DomHandler.findSingle(prevTabElement, '[data-pc-section="header"]');
192
+
193
+ return headerElement ? (DomHandler.getAttribute(headerElement, 'data-p-disabled') ? this.findPrevHeaderAction(headerElement.parentElement) : DomHandler.findSingle(headerElement, '[data-pc-section="headeraction"]')) : null;
194
+ },
195
+ findFirstHeaderAction() {
196
+ return this.findNextHeaderAction(this.$el.firstElementChild, true);
197
+ },
198
+ findLastHeaderAction() {
199
+ return this.findPrevHeaderAction(this.$el.lastElementChild, true);
200
+ },
201
+ changeActiveIndex(event, tab, index) {
202
+ if (!this.getTabProp(tab, 'disabled')) {
203
+ const active = this.isTabActive(index);
204
+ const eventName = active ? 'tab-close' : 'tab-open';
205
+
206
+ if (this.multiple) {
207
+ if (active) {
208
+ this.d_activeIndex = this.d_activeIndex.filter((i) => i !== index);
209
+ } else {
210
+ if (this.d_activeIndex) this.d_activeIndex.push(index);
211
+ else this.d_activeIndex = [index];
212
+ }
213
+ } else {
214
+ this.d_activeIndex = this.d_activeIndex === index ? null : index;
215
+ }
216
+
217
+ this.$emit('update:activeIndex', this.d_activeIndex);
218
+ this.$emit(eventName, { originalEvent: event, index });
219
+ }
220
+ },
221
+ changeFocusedTab(event, element) {
222
+ if (element) {
223
+ DomHandler.focus(element);
224
+
225
+ if (this.selectOnFocus) {
226
+ const index = parseInt(element.parentElement.parentElement.dataset.pcIndex, 10);
227
+ const tab = this.tabs[index];
228
+
229
+ this.changeActiveIndex(event, tab, index);
230
+ }
231
+ }
232
+ }
233
+ },
234
+ computed: {
235
+ tabs() {
236
+ return this.$slots.default().reduce((tabs, child) => {
237
+ if (this.isAccordionTab(child)) {
238
+ tabs.push(child);
239
+ } else if (child.children && child.children instanceof Array) {
240
+ child.children.forEach((nestedChild) => {
241
+ if (this.isAccordionTab(nestedChild)) {
242
+ tabs.push(nestedChild);
243
+ }
244
+ });
245
+ }
246
+
247
+ return tabs;
248
+ }, []);
249
+ }
250
+ },
251
+ components: {
252
+ ChevronDownIcon,
253
+ ChevronRightIcon
254
+ },
255
+ directives: {
256
+ ripple: Ripple
257
+ }
258
+ };
259
+ </script>