primevue 3.29.1 → 3.30.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 (1288) hide show
  1. package/README.md +15 -9
  2. package/accordion/Accordion.d.ts +17 -0
  3. package/accordion/Accordion.vue +38 -92
  4. package/accordion/BaseAccordion.vue +93 -0
  5. package/accordion/accordion.cjs.js +340 -330
  6. package/accordion/accordion.cjs.min.js +1 -1
  7. package/accordion/accordion.esm.js +339 -329
  8. package/accordion/accordion.esm.min.js +1 -1
  9. package/accordion/accordion.js +340 -331
  10. package/accordion/accordion.min.js +1 -1
  11. package/accordiontab/AccordionTab.d.ts +28 -0
  12. package/accordiontab/AccordionTab.vue +2 -13
  13. package/accordiontab/BaseAccordionTab.vue +24 -0
  14. package/accordiontab/accordiontab.cjs.js +24 -14
  15. package/accordiontab/accordiontab.cjs.min.js +1 -1
  16. package/accordiontab/accordiontab.esm.js +24 -14
  17. package/accordiontab/accordiontab.esm.min.js +1 -1
  18. package/accordiontab/accordiontab.js +24 -14
  19. package/accordiontab/accordiontab.min.js +1 -1
  20. package/api/api.cjs.js +475 -500
  21. package/api/api.cjs.min.js +1 -1
  22. package/api/api.esm.js +475 -500
  23. package/api/api.esm.min.js +1 -1
  24. package/api/api.js +475 -500
  25. package/api/api.min.js +1 -1
  26. package/autocomplete/AutoComplete.d.ts +23 -2
  27. package/autocomplete/AutoComplete.vue +40 -322
  28. package/autocomplete/BaseAutoComplete.vue +322 -0
  29. package/autocomplete/autocomplete.cjs.js +1290 -1237
  30. package/autocomplete/autocomplete.cjs.min.js +1 -1
  31. package/autocomplete/autocomplete.esm.js +1291 -1238
  32. package/autocomplete/autocomplete.esm.min.js +1 -1
  33. package/autocomplete/autocomplete.js +1290 -1238
  34. package/autocomplete/autocomplete.min.js +1 -1
  35. package/avatar/Avatar.d.ts +14 -0
  36. package/avatar/Avatar.vue +13 -81
  37. package/avatar/BaseAvatar.vue +96 -0
  38. package/avatar/avatar.cjs.js +101 -110
  39. package/avatar/avatar.cjs.min.js +1 -1
  40. package/avatar/avatar.esm.js +102 -111
  41. package/avatar/avatar.esm.min.js +1 -1
  42. package/avatar/avatar.js +102 -112
  43. package/avatar/avatar.min.js +1 -1
  44. package/avatargroup/AvatarGroup.d.ts +11 -0
  45. package/avatargroup/AvatarGroup.vue +3 -14
  46. package/avatargroup/BaseAvatarGroup.vue +35 -0
  47. package/avatargroup/avatargroup.cjs.js +31 -35
  48. package/avatargroup/avatargroup.cjs.min.js +1 -1
  49. package/avatargroup/avatargroup.esm.js +31 -35
  50. package/avatargroup/avatargroup.esm.min.js +1 -1
  51. package/avatargroup/avatargroup.js +32 -37
  52. package/avatargroup/avatargroup.min.js +1 -1
  53. package/badge/Badge.d.ts +12 -0
  54. package/badge/Badge.vue +3 -38
  55. package/badge/BaseBadge.vue +86 -0
  56. package/badge/badge.cjs.js +59 -40
  57. package/badge/badge.cjs.min.js +1 -1
  58. package/badge/badge.esm.js +59 -40
  59. package/badge/badge.esm.min.js +1 -1
  60. package/badge/badge.js +60 -42
  61. package/badge/badge.min.js +1 -1
  62. package/badgedirective/BadgeDirective.d.ts +43 -1
  63. package/badgedirective/badgedirective.cjs.js +66 -45
  64. package/badgedirective/badgedirective.cjs.min.js +1 -1
  65. package/badgedirective/badgedirective.esm.js +64 -47
  66. package/badgedirective/badgedirective.esm.min.js +1 -1
  67. package/badgedirective/badgedirective.js +66 -47
  68. package/badgedirective/badgedirective.min.js +1 -1
  69. package/base/base.cjs.js +18 -0
  70. package/base/base.cjs.min.js +1 -0
  71. package/base/base.esm.js +13 -0
  72. package/base/base.esm.min.js +1 -0
  73. package/base/base.js +22 -0
  74. package/base/base.min.js +1 -0
  75. package/base/package.json +5 -0
  76. package/basecomponent/BaseComponent.d.ts +23 -0
  77. package/basecomponent/BaseComponent.vue +462 -12
  78. package/basecomponent/basecomponent.cjs.js +170 -36
  79. package/basecomponent/basecomponent.cjs.min.js +1 -1
  80. package/basecomponent/basecomponent.esm.js +170 -36
  81. package/basecomponent/basecomponent.esm.min.js +1 -1
  82. package/basecomponent/basecomponent.js +170 -38
  83. package/basecomponent/basecomponent.min.js +1 -1
  84. package/basecomponent/package.json +1 -0
  85. package/basedirective/BaseDirective.d.ts +38 -0
  86. package/basedirective/basedirective.cjs.js +157 -0
  87. package/basedirective/basedirective.cjs.min.js +1 -0
  88. package/basedirective/basedirective.esm.js +155 -0
  89. package/basedirective/basedirective.esm.min.js +1 -0
  90. package/basedirective/basedirective.js +157 -0
  91. package/basedirective/basedirective.min.js +1 -0
  92. package/basedirective/package.json +6 -0
  93. package/baseicon/baseicon.cjs.js +22 -26
  94. package/baseicon/baseicon.cjs.min.js +1 -1
  95. package/baseicon/baseicon.esm.js +22 -26
  96. package/baseicon/baseicon.esm.min.js +1 -1
  97. package/baseicon/baseicon.js +22 -26
  98. package/baseicon/baseicon.min.js +1 -1
  99. package/blockui/BaseBlockUI.vue +64 -0
  100. package/blockui/BlockUI.d.ts +12 -0
  101. package/blockui/BlockUI.vue +10 -48
  102. package/blockui/blockui.cjs.js +103 -115
  103. package/blockui/blockui.cjs.min.js +1 -1
  104. package/blockui/blockui.esm.js +103 -115
  105. package/blockui/blockui.esm.min.js +1 -1
  106. package/blockui/blockui.js +103 -116
  107. package/blockui/blockui.min.js +1 -1
  108. package/breadcrumb/BaseBreadcrumb.vue +85 -0
  109. package/breadcrumb/Breadcrumb.d.ts +12 -0
  110. package/breadcrumb/Breadcrumb.vue +6 -54
  111. package/breadcrumb/BreadcrumbItem.vue +10 -21
  112. package/breadcrumb/breadcrumb.cjs.js +198 -219
  113. package/breadcrumb/breadcrumb.cjs.min.js +1 -1
  114. package/breadcrumb/breadcrumb.esm.js +198 -219
  115. package/breadcrumb/breadcrumb.esm.min.js +1 -1
  116. package/breadcrumb/breadcrumb.js +198 -220
  117. package/breadcrumb/breadcrumb.min.js +1 -1
  118. package/button/BaseButton.vue +115 -0
  119. package/button/Button.d.ts +24 -0
  120. package/button/Button.vue +21 -121
  121. package/button/button.cjs.js +176 -174
  122. package/button/button.cjs.min.js +1 -1
  123. package/button/button.esm.js +174 -173
  124. package/button/button.esm.min.js +1 -1
  125. package/button/button.js +176 -175
  126. package/button/button.min.js +1 -1
  127. package/calendar/BaseCalendar.vue +453 -0
  128. package/calendar/Calendar.d.ts +24 -12
  129. package/calendar/Calendar.vue +129 -493
  130. package/calendar/calendar.cjs.js +3115 -3197
  131. package/calendar/calendar.cjs.min.js +1 -1
  132. package/calendar/calendar.esm.js +3115 -3197
  133. package/calendar/calendar.esm.min.js +1 -1
  134. package/calendar/calendar.js +3115 -3198
  135. package/calendar/calendar.min.js +1 -1
  136. package/card/BaseCard.vue +21 -0
  137. package/card/Card.d.ts +11 -0
  138. package/card/Card.vue +9 -9
  139. package/card/card.cjs.js +40 -41
  140. package/card/card.cjs.min.js +1 -1
  141. package/card/card.esm.js +40 -41
  142. package/card/card.esm.min.js +1 -1
  143. package/card/card.js +40 -41
  144. package/card/card.min.js +1 -1
  145. package/carousel/BaseCarousel.vue +197 -0
  146. package/carousel/Carousel.d.ts +12 -0
  147. package/carousel/Carousel.vue +36 -188
  148. package/carousel/carousel.cjs.js +705 -737
  149. package/carousel/carousel.cjs.min.js +1 -1
  150. package/carousel/carousel.esm.js +704 -736
  151. package/carousel/carousel.esm.min.js +1 -1
  152. package/carousel/carousel.js +705 -738
  153. package/carousel/carousel.min.js +1 -1
  154. package/cascadeselect/BaseCascadeSelect.vue +257 -0
  155. package/cascadeselect/CascadeSelect.d.ts +19 -7
  156. package/cascadeselect/CascadeSelect.vue +18 -242
  157. package/cascadeselect/CascadeSelectSub.vue +15 -22
  158. package/cascadeselect/cascadeselect.cjs.js +1143 -1083
  159. package/cascadeselect/cascadeselect.cjs.min.js +1 -1
  160. package/cascadeselect/cascadeselect.esm.js +1143 -1083
  161. package/cascadeselect/cascadeselect.esm.min.js +1 -1
  162. package/cascadeselect/cascadeselect.js +1143 -1084
  163. package/cascadeselect/cascadeselect.min.js +1 -1
  164. package/chart/BaseChart.vue +48 -0
  165. package/chart/Chart.d.ts +12 -0
  166. package/chart/Chart.vue +3 -27
  167. package/chart/chart.cjs.js +144 -135
  168. package/chart/chart.cjs.min.js +1 -1
  169. package/chart/chart.esm.js +144 -135
  170. package/chart/chart.esm.min.js +1 -1
  171. package/chart/chart.js +145 -137
  172. package/chart/chart.min.js +1 -1
  173. package/checkbox/BaseCheckbox.vue +93 -0
  174. package/checkbox/Checkbox.d.ts +41 -0
  175. package/checkbox/Checkbox.vue +16 -74
  176. package/checkbox/checkbox.cjs.js +201 -140
  177. package/checkbox/checkbox.cjs.min.js +1 -1
  178. package/checkbox/checkbox.esm.js +201 -140
  179. package/checkbox/checkbox.esm.min.js +1 -1
  180. package/checkbox/checkbox.js +202 -141
  181. package/checkbox/checkbox.min.js +1 -1
  182. package/chip/BaseChip.vue +78 -0
  183. package/chip/Chip.d.ts +12 -0
  184. package/chip/Chip.vue +7 -63
  185. package/chip/chip.cjs.js +106 -129
  186. package/chip/chip.cjs.min.js +1 -1
  187. package/chip/chip.esm.js +105 -128
  188. package/chip/chip.esm.min.js +1 -1
  189. package/chip/chip.js +106 -130
  190. package/chip/chip.min.js +1 -1
  191. package/chips/BaseChips.vue +143 -0
  192. package/chips/Chips.d.ts +12 -0
  193. package/chips/Chips.vue +11 -127
  194. package/chips/chips.cjs.js +368 -344
  195. package/chips/chips.cjs.min.js +1 -1
  196. package/chips/chips.esm.js +368 -344
  197. package/chips/chips.esm.min.js +1 -1
  198. package/chips/chips.js +368 -345
  199. package/chips/chips.min.js +1 -1
  200. package/colorpicker/BaseColorPicker.vue +89 -0
  201. package/colorpicker/ColorPicker.d.ts +14 -2
  202. package/colorpicker/ColorPicker.vue +16 -34
  203. package/colorpicker/colorpicker.cjs.js +699 -650
  204. package/colorpicker/colorpicker.cjs.min.js +1 -1
  205. package/colorpicker/colorpicker.esm.js +698 -649
  206. package/colorpicker/colorpicker.esm.min.js +1 -1
  207. package/colorpicker/colorpicker.js +699 -651
  208. package/colorpicker/colorpicker.min.js +1 -1
  209. package/column/BaseColumn.vue +191 -0
  210. package/column/Column.d.ts +56 -29
  211. package/column/Column.vue +2 -180
  212. package/column/column.cjs.js +193 -183
  213. package/column/column.cjs.min.js +1 -1
  214. package/column/column.esm.js +193 -183
  215. package/column/column.esm.min.js +1 -1
  216. package/column/column.js +193 -183
  217. package/column/column.min.js +1 -1
  218. package/columngroup/BaseColumnGroup.vue +19 -0
  219. package/columngroup/ColumnGroup.d.ts +23 -0
  220. package/columngroup/ColumnGroup.vue +2 -8
  221. package/columngroup/columngroup.cjs.js +21 -11
  222. package/columngroup/columngroup.cjs.min.js +1 -1
  223. package/columngroup/columngroup.esm.js +21 -11
  224. package/columngroup/columngroup.esm.min.js +1 -1
  225. package/columngroup/columngroup.js +21 -11
  226. package/columngroup/columngroup.min.js +1 -1
  227. package/config/PrimeVue.d.ts +15 -1
  228. package/config/config.cjs.js +167 -168
  229. package/config/config.cjs.min.js +1 -1
  230. package/config/config.esm.js +167 -168
  231. package/config/config.esm.min.js +1 -1
  232. package/config/config.js +167 -168
  233. package/config/config.min.js +1 -1
  234. package/confirmationservice/confirmationservice.cjs.js +12 -13
  235. package/confirmationservice/confirmationservice.cjs.min.js +1 -1
  236. package/confirmationservice/confirmationservice.esm.js +12 -13
  237. package/confirmationservice/confirmationservice.esm.min.js +1 -1
  238. package/confirmationservice/confirmationservice.js +12 -13
  239. package/confirmationservice/confirmationservice.min.js +1 -1
  240. package/confirmdialog/BaseConfirmDialog.vue +35 -0
  241. package/confirmdialog/ConfirmDialog.d.ts +12 -0
  242. package/confirmdialog/ConfirmDialog.vue +18 -33
  243. package/confirmdialog/confirmdialog.cjs.js +213 -183
  244. package/confirmdialog/confirmdialog.cjs.min.js +1 -1
  245. package/confirmdialog/confirmdialog.esm.js +213 -183
  246. package/confirmdialog/confirmdialog.esm.min.js +1 -1
  247. package/confirmdialog/confirmdialog.js +214 -184
  248. package/confirmdialog/confirmdialog.min.js +1 -1
  249. package/confirmpopup/BaseConfirmPopup.vue +111 -0
  250. package/confirmpopup/ConfirmPopup.d.ts +12 -0
  251. package/confirmpopup/ConfirmPopup.vue +21 -109
  252. package/confirmpopup/confirmpopup.cjs.js +375 -377
  253. package/confirmpopup/confirmpopup.cjs.min.js +1 -1
  254. package/confirmpopup/confirmpopup.esm.js +375 -377
  255. package/confirmpopup/confirmpopup.esm.min.js +1 -1
  256. package/confirmpopup/confirmpopup.js +375 -378
  257. package/confirmpopup/confirmpopup.min.js +1 -1
  258. package/contextmenu/BaseContextMenu.vue +133 -0
  259. package/contextmenu/ContextMenu.d.ts +16 -0
  260. package/contextmenu/ContextMenu.vue +6 -93
  261. package/contextmenu/ContextMenuSub.vue +24 -58
  262. package/contextmenu/contextmenu.cjs.js +989 -951
  263. package/contextmenu/contextmenu.cjs.min.js +1 -1
  264. package/contextmenu/contextmenu.esm.js +988 -950
  265. package/contextmenu/contextmenu.esm.min.js +1 -1
  266. package/contextmenu/contextmenu.js +989 -952
  267. package/contextmenu/contextmenu.min.js +1 -1
  268. package/core/core.js +12138 -11708
  269. package/core/core.min.js +76 -70
  270. package/datatable/BaseDataTable.vue +740 -0
  271. package/datatable/BodyCell.vue +48 -35
  272. package/datatable/ColumnFilter.vue +74 -59
  273. package/datatable/DataTable.d.ts +31 -8
  274. package/datatable/DataTable.vue +82 -593
  275. package/datatable/FooterCell.vue +15 -11
  276. package/datatable/HeaderCell.vue +30 -24
  277. package/datatable/HeaderCheckbox.vue +8 -7
  278. package/datatable/RowCheckbox.vue +13 -7
  279. package/datatable/RowRadioButton.vue +13 -7
  280. package/datatable/TableBody.vue +24 -35
  281. package/datatable/TableFooter.vue +20 -9
  282. package/datatable/TableHeader.vue +32 -21
  283. package/datatable/datatable.cjs.js +5908 -5735
  284. package/datatable/datatable.cjs.min.js +1 -1
  285. package/datatable/datatable.esm.js +5908 -5735
  286. package/datatable/datatable.esm.min.js +1 -1
  287. package/datatable/datatable.js +5908 -5736
  288. package/datatable/datatable.min.js +1 -1
  289. package/dataview/BaseDataView.vue +100 -0
  290. package/dataview/DataView.d.ts +16 -0
  291. package/dataview/DataView.vue +13 -86
  292. package/dataview/dataview.cjs.js +291 -295
  293. package/dataview/dataview.cjs.min.js +1 -1
  294. package/dataview/dataview.esm.js +290 -294
  295. package/dataview/dataview.esm.min.js +1 -1
  296. package/dataview/dataview.js +292 -296
  297. package/dataview/dataview.min.js +1 -1
  298. package/dataviewlayoutoptions/BaseDataViewLayoutOptions.vue +35 -0
  299. package/dataviewlayoutoptions/DataViewLayoutOptions.d.ts +12 -0
  300. package/dataviewlayoutoptions/DataViewLayoutOptions.vue +5 -14
  301. package/dataviewlayoutoptions/dataviewlayoutoptions.cjs.js +91 -75
  302. package/dataviewlayoutoptions/dataviewlayoutoptions.cjs.min.js +1 -1
  303. package/dataviewlayoutoptions/dataviewlayoutoptions.esm.js +90 -74
  304. package/dataviewlayoutoptions/dataviewlayoutoptions.esm.min.js +1 -1
  305. package/dataviewlayoutoptions/dataviewlayoutoptions.js +92 -76
  306. package/dataviewlayoutoptions/dataviewlayoutoptions.min.js +1 -1
  307. package/deferredcontent/DeferredContent.d.ts +12 -0
  308. package/deferredcontent/deferredcontent.cjs.js +49 -51
  309. package/deferredcontent/deferredcontent.cjs.min.js +1 -1
  310. package/deferredcontent/deferredcontent.esm.js +49 -51
  311. package/deferredcontent/deferredcontent.esm.min.js +1 -1
  312. package/deferredcontent/deferredcontent.js +49 -51
  313. package/deferredcontent/deferredcontent.min.js +1 -1
  314. package/dialog/BaseDialog.vue +319 -0
  315. package/dialog/Dialog.d.ts +12 -0
  316. package/dialog/Dialog.vue +23 -339
  317. package/dialog/dialog.cjs.js +591 -603
  318. package/dialog/dialog.cjs.min.js +1 -1
  319. package/dialog/dialog.esm.js +590 -602
  320. package/dialog/dialog.esm.min.js +1 -1
  321. package/dialog/dialog.js +591 -604
  322. package/dialog/dialog.min.js +1 -1
  323. package/dialogservice/dialogservice.cjs.js +24 -21
  324. package/dialogservice/dialogservice.cjs.min.js +1 -1
  325. package/dialogservice/dialogservice.esm.js +23 -20
  326. package/dialogservice/dialogservice.esm.min.js +1 -1
  327. package/dialogservice/dialogservice.js +24 -21
  328. package/dialogservice/dialogservice.min.js +1 -1
  329. package/divider/BaseDivider.vue +136 -0
  330. package/divider/Divider.d.ts +12 -0
  331. package/divider/Divider.vue +4 -120
  332. package/divider/divider.cjs.js +64 -74
  333. package/divider/divider.cjs.min.js +1 -1
  334. package/divider/divider.esm.js +64 -74
  335. package/divider/divider.esm.min.js +1 -1
  336. package/divider/divider.js +65 -76
  337. package/divider/divider.min.js +1 -1
  338. package/dock/BaseDock.vue +185 -0
  339. package/dock/Dock.d.ts +12 -0
  340. package/dock/Dock.vue +3 -146
  341. package/dock/DockSub.vue +19 -39
  342. package/dock/dock.cjs.js +423 -411
  343. package/dock/dock.cjs.min.js +1 -1
  344. package/dock/dock.esm.js +424 -412
  345. package/dock/dock.esm.min.js +1 -1
  346. package/dock/dock.js +424 -413
  347. package/dock/dock.min.js +1 -1
  348. package/dropdown/BaseDropdown.vue +313 -0
  349. package/dropdown/Dropdown.d.ts +17 -1
  350. package/dropdown/Dropdown.vue +60 -320
  351. package/dropdown/dropdown.cjs.js +1261 -1226
  352. package/dropdown/dropdown.cjs.min.js +1 -1
  353. package/dropdown/dropdown.esm.js +1261 -1226
  354. package/dropdown/dropdown.esm.min.js +1 -1
  355. package/dropdown/dropdown.js +1261 -1227
  356. package/dropdown/dropdown.min.js +1 -1
  357. package/dynamicdialog/DynamicDialog.d.ts +7 -1
  358. package/dynamicdialog/DynamicDialog.vue +3 -3
  359. package/dynamicdialog/dynamicdialog.cjs.js +90 -89
  360. package/dynamicdialog/dynamicdialog.cjs.min.js +1 -1
  361. package/dynamicdialog/dynamicdialog.esm.js +90 -89
  362. package/dynamicdialog/dynamicdialog.esm.min.js +1 -1
  363. package/dynamicdialog/dynamicdialog.js +90 -89
  364. package/dynamicdialog/dynamicdialog.min.js +1 -1
  365. package/editor/BaseEditor.vue +996 -0
  366. package/editor/Editor.d.ts +57 -5
  367. package/editor/Editor.vue +25 -981
  368. package/editor/editor.cjs.js +241 -236
  369. package/editor/editor.cjs.min.js +1 -1
  370. package/editor/editor.esm.js +241 -236
  371. package/editor/editor.esm.min.js +1 -1
  372. package/editor/editor.js +241 -237
  373. package/editor/editor.min.js +1 -1
  374. package/fieldset/BaseFieldset.vue +65 -0
  375. package/fieldset/Fieldset.d.ts +12 -0
  376. package/fieldset/Fieldset.vue +9 -39
  377. package/fieldset/fieldset.cjs.js +150 -140
  378. package/fieldset/fieldset.cjs.min.js +1 -1
  379. package/fieldset/fieldset.esm.js +149 -139
  380. package/fieldset/fieldset.esm.min.js +1 -1
  381. package/fieldset/fieldset.js +150 -141
  382. package/fieldset/fieldset.min.js +1 -1
  383. package/fileupload/BaseFileUpload.vue +189 -0
  384. package/fileupload/FileContent.vue +10 -8
  385. package/fileupload/FileUpload.d.ts +12 -4
  386. package/fileupload/FileUpload.vue +29 -190
  387. package/fileupload/fileupload.cjs.js +817 -790
  388. package/fileupload/fileupload.cjs.min.js +1 -1
  389. package/fileupload/fileupload.esm.js +817 -790
  390. package/fileupload/fileupload.esm.min.js +1 -1
  391. package/fileupload/fileupload.js +817 -790
  392. package/fileupload/fileupload.min.js +1 -1
  393. package/focustrap/FocusTrap.d.ts +44 -0
  394. package/focustrap/focustrap.cjs.js +116 -102
  395. package/focustrap/focustrap.cjs.min.js +1 -1
  396. package/focustrap/focustrap.esm.js +116 -106
  397. package/focustrap/focustrap.esm.min.js +1 -1
  398. package/focustrap/focustrap.js +117 -104
  399. package/focustrap/focustrap.min.js +1 -1
  400. package/galleria/BaseGalleria.vue +499 -0
  401. package/galleria/Galleria.d.ts +12 -0
  402. package/galleria/Galleria.vue +6 -413
  403. package/galleria/GalleriaContent.vue +8 -22
  404. package/galleria/GalleriaItem.vue +13 -27
  405. package/galleria/GalleriaThumbnails.vue +32 -56
  406. package/galleria/galleria.cjs.js +1164 -1247
  407. package/galleria/galleria.cjs.min.js +1 -1
  408. package/galleria/galleria.esm.js +1164 -1247
  409. package/galleria/galleria.esm.min.js +1 -1
  410. package/galleria/galleria.js +1164 -1248
  411. package/galleria/galleria.min.js +1 -1
  412. package/icons/angledoubledown/index.cjs.js +6 -9
  413. package/icons/angledoubledown/index.cjs.min.js +1 -1
  414. package/icons/angledoubledown/index.esm.js +6 -9
  415. package/icons/angledoubledown/index.esm.min.js +1 -1
  416. package/icons/angledoubledown/index.js +6 -9
  417. package/icons/angledoubledown/index.min.js +1 -1
  418. package/icons/angledoubleleft/index.cjs.js +6 -9
  419. package/icons/angledoubleleft/index.cjs.min.js +1 -1
  420. package/icons/angledoubleleft/index.esm.js +6 -9
  421. package/icons/angledoubleleft/index.esm.min.js +1 -1
  422. package/icons/angledoubleleft/index.js +6 -9
  423. package/icons/angledoubleleft/index.min.js +1 -1
  424. package/icons/angledoubleright/index.cjs.js +6 -9
  425. package/icons/angledoubleright/index.cjs.min.js +1 -1
  426. package/icons/angledoubleright/index.esm.js +6 -9
  427. package/icons/angledoubleright/index.esm.min.js +1 -1
  428. package/icons/angledoubleright/index.js +6 -9
  429. package/icons/angledoubleright/index.min.js +1 -1
  430. package/icons/angledoubleup/index.cjs.js +6 -9
  431. package/icons/angledoubleup/index.cjs.min.js +1 -1
  432. package/icons/angledoubleup/index.esm.js +6 -9
  433. package/icons/angledoubleup/index.esm.min.js +1 -1
  434. package/icons/angledoubleup/index.js +6 -9
  435. package/icons/angledoubleup/index.min.js +1 -1
  436. package/icons/angledown/index.cjs.js +6 -9
  437. package/icons/angledown/index.cjs.min.js +1 -1
  438. package/icons/angledown/index.esm.js +6 -9
  439. package/icons/angledown/index.esm.min.js +1 -1
  440. package/icons/angledown/index.js +6 -9
  441. package/icons/angledown/index.min.js +1 -1
  442. package/icons/angleleft/index.cjs.js +6 -9
  443. package/icons/angleleft/index.cjs.min.js +1 -1
  444. package/icons/angleleft/index.esm.js +6 -9
  445. package/icons/angleleft/index.esm.min.js +1 -1
  446. package/icons/angleleft/index.js +6 -9
  447. package/icons/angleleft/index.min.js +1 -1
  448. package/icons/angleright/index.cjs.js +6 -9
  449. package/icons/angleright/index.cjs.min.js +1 -1
  450. package/icons/angleright/index.esm.js +6 -9
  451. package/icons/angleright/index.esm.min.js +1 -1
  452. package/icons/angleright/index.js +6 -9
  453. package/icons/angleright/index.min.js +1 -1
  454. package/icons/angleup/index.cjs.js +6 -9
  455. package/icons/angleup/index.cjs.min.js +1 -1
  456. package/icons/angleup/index.esm.js +6 -9
  457. package/icons/angleup/index.esm.min.js +1 -1
  458. package/icons/angleup/index.js +6 -9
  459. package/icons/angleup/index.min.js +1 -1
  460. package/icons/arrowdown/index.cjs.js +29 -26
  461. package/icons/arrowdown/index.cjs.min.js +1 -1
  462. package/icons/arrowdown/index.esm.js +29 -26
  463. package/icons/arrowdown/index.esm.min.js +1 -1
  464. package/icons/arrowdown/index.js +30 -28
  465. package/icons/arrowdown/index.min.js +1 -1
  466. package/icons/arrowdown/index.vue +10 -3
  467. package/icons/arrowup/index.cjs.js +29 -26
  468. package/icons/arrowup/index.cjs.min.js +1 -1
  469. package/icons/arrowup/index.esm.js +29 -26
  470. package/icons/arrowup/index.esm.min.js +1 -1
  471. package/icons/arrowup/index.js +30 -28
  472. package/icons/arrowup/index.min.js +1 -1
  473. package/icons/arrowup/index.vue +10 -3
  474. package/icons/ban/index.cjs.js +27 -24
  475. package/icons/ban/index.cjs.min.js +1 -1
  476. package/icons/ban/index.esm.js +27 -24
  477. package/icons/ban/index.esm.min.js +1 -1
  478. package/icons/ban/index.js +28 -26
  479. package/icons/ban/index.min.js +1 -1
  480. package/icons/ban/index.vue +10 -3
  481. package/icons/bars/index.cjs.js +6 -9
  482. package/icons/bars/index.cjs.min.js +1 -1
  483. package/icons/bars/index.esm.js +6 -9
  484. package/icons/bars/index.esm.min.js +1 -1
  485. package/icons/bars/index.js +6 -9
  486. package/icons/bars/index.min.js +1 -1
  487. package/icons/calendar/index.cjs.js +6 -9
  488. package/icons/calendar/index.cjs.min.js +1 -1
  489. package/icons/calendar/index.esm.js +6 -9
  490. package/icons/calendar/index.esm.min.js +1 -1
  491. package/icons/calendar/index.js +6 -9
  492. package/icons/calendar/index.min.js +1 -1
  493. package/icons/check/index.cjs.js +6 -9
  494. package/icons/check/index.cjs.min.js +1 -1
  495. package/icons/check/index.esm.js +6 -9
  496. package/icons/check/index.esm.min.js +1 -1
  497. package/icons/check/index.js +6 -9
  498. package/icons/check/index.min.js +1 -1
  499. package/icons/chevrondown/index.cjs.js +6 -9
  500. package/icons/chevrondown/index.cjs.min.js +1 -1
  501. package/icons/chevrondown/index.esm.js +6 -9
  502. package/icons/chevrondown/index.esm.min.js +1 -1
  503. package/icons/chevrondown/index.js +6 -9
  504. package/icons/chevrondown/index.min.js +1 -1
  505. package/icons/chevronleft/index.cjs.js +6 -9
  506. package/icons/chevronleft/index.cjs.min.js +1 -1
  507. package/icons/chevronleft/index.esm.js +6 -9
  508. package/icons/chevronleft/index.esm.min.js +1 -1
  509. package/icons/chevronleft/index.js +6 -9
  510. package/icons/chevronleft/index.min.js +1 -1
  511. package/icons/chevronright/index.cjs.js +6 -9
  512. package/icons/chevronright/index.cjs.min.js +1 -1
  513. package/icons/chevronright/index.esm.js +6 -9
  514. package/icons/chevronright/index.esm.min.js +1 -1
  515. package/icons/chevronright/index.js +6 -9
  516. package/icons/chevronright/index.min.js +1 -1
  517. package/icons/chevronup/index.cjs.js +6 -9
  518. package/icons/chevronup/index.cjs.min.js +1 -1
  519. package/icons/chevronup/index.esm.js +6 -9
  520. package/icons/chevronup/index.esm.min.js +1 -1
  521. package/icons/chevronup/index.js +6 -9
  522. package/icons/chevronup/index.min.js +1 -1
  523. package/icons/exclamationtriangle/index.cjs.js +35 -9
  524. package/icons/exclamationtriangle/index.cjs.min.js +1 -1
  525. package/icons/exclamationtriangle/index.esm.js +36 -10
  526. package/icons/exclamationtriangle/index.esm.min.js +1 -1
  527. package/icons/exclamationtriangle/index.js +36 -11
  528. package/icons/exclamationtriangle/index.min.js +1 -1
  529. package/icons/exclamationtriangle/index.vue +10 -3
  530. package/icons/eye/index.cjs.js +6 -9
  531. package/icons/eye/index.cjs.min.js +1 -1
  532. package/icons/eye/index.esm.js +6 -9
  533. package/icons/eye/index.esm.min.js +1 -1
  534. package/icons/eye/index.js +6 -9
  535. package/icons/eye/index.min.js +1 -1
  536. package/icons/eyeslash/index.cjs.js +29 -26
  537. package/icons/eyeslash/index.cjs.min.js +1 -1
  538. package/icons/eyeslash/index.esm.js +29 -26
  539. package/icons/eyeslash/index.esm.min.js +1 -1
  540. package/icons/eyeslash/index.js +30 -28
  541. package/icons/eyeslash/index.min.js +1 -1
  542. package/icons/eyeslash/index.vue +10 -3
  543. package/icons/filter/index.cjs.js +27 -24
  544. package/icons/filter/index.cjs.min.js +1 -1
  545. package/icons/filter/index.esm.js +27 -24
  546. package/icons/filter/index.esm.min.js +1 -1
  547. package/icons/filter/index.js +28 -26
  548. package/icons/filter/index.min.js +1 -1
  549. package/icons/filter/index.vue +10 -3
  550. package/icons/filterslash/index.cjs.js +29 -26
  551. package/icons/filterslash/index.cjs.min.js +1 -1
  552. package/icons/filterslash/index.esm.js +29 -26
  553. package/icons/filterslash/index.esm.min.js +1 -1
  554. package/icons/filterslash/index.js +30 -28
  555. package/icons/filterslash/index.min.js +1 -1
  556. package/icons/filterslash/index.vue +10 -3
  557. package/icons/infocircle/index.cjs.js +29 -26
  558. package/icons/infocircle/index.cjs.min.js +1 -1
  559. package/icons/infocircle/index.esm.js +29 -26
  560. package/icons/infocircle/index.esm.min.js +1 -1
  561. package/icons/infocircle/index.js +30 -28
  562. package/icons/infocircle/index.min.js +1 -1
  563. package/icons/infocircle/index.vue +10 -3
  564. package/icons/minus/index.cjs.js +6 -9
  565. package/icons/minus/index.cjs.min.js +1 -1
  566. package/icons/minus/index.esm.js +6 -9
  567. package/icons/minus/index.esm.min.js +1 -1
  568. package/icons/minus/index.js +6 -9
  569. package/icons/minus/index.min.js +1 -1
  570. package/icons/pencil/index.cjs.js +27 -24
  571. package/icons/pencil/index.cjs.min.js +1 -1
  572. package/icons/pencil/index.esm.js +27 -24
  573. package/icons/pencil/index.esm.min.js +1 -1
  574. package/icons/pencil/index.js +28 -26
  575. package/icons/pencil/index.min.js +1 -1
  576. package/icons/pencil/index.vue +10 -3
  577. package/icons/plus/index.cjs.js +27 -24
  578. package/icons/plus/index.cjs.min.js +1 -1
  579. package/icons/plus/index.esm.js +27 -24
  580. package/icons/plus/index.esm.min.js +1 -1
  581. package/icons/plus/index.js +28 -26
  582. package/icons/plus/index.min.js +1 -1
  583. package/icons/plus/index.vue +10 -3
  584. package/icons/refresh/index.cjs.js +29 -26
  585. package/icons/refresh/index.cjs.min.js +1 -1
  586. package/icons/refresh/index.esm.js +29 -26
  587. package/icons/refresh/index.esm.min.js +1 -1
  588. package/icons/refresh/index.js +30 -28
  589. package/icons/refresh/index.min.js +1 -1
  590. package/icons/refresh/index.vue +10 -3
  591. package/icons/search/index.cjs.js +29 -26
  592. package/icons/search/index.cjs.min.js +1 -1
  593. package/icons/search/index.esm.js +29 -26
  594. package/icons/search/index.esm.min.js +1 -1
  595. package/icons/search/index.js +30 -28
  596. package/icons/search/index.min.js +1 -1
  597. package/icons/search/index.vue +10 -3
  598. package/icons/searchminus/index.cjs.js +29 -26
  599. package/icons/searchminus/index.cjs.min.js +1 -1
  600. package/icons/searchminus/index.esm.js +29 -26
  601. package/icons/searchminus/index.esm.min.js +1 -1
  602. package/icons/searchminus/index.js +30 -28
  603. package/icons/searchminus/index.min.js +1 -1
  604. package/icons/searchminus/index.vue +10 -3
  605. package/icons/searchplus/index.cjs.js +29 -26
  606. package/icons/searchplus/index.cjs.min.js +1 -1
  607. package/icons/searchplus/index.esm.js +29 -26
  608. package/icons/searchplus/index.esm.min.js +1 -1
  609. package/icons/searchplus/index.js +30 -28
  610. package/icons/searchplus/index.min.js +1 -1
  611. package/icons/searchplus/index.vue +10 -3
  612. package/icons/sortalt/index.cjs.js +39 -9
  613. package/icons/sortalt/index.cjs.min.js +1 -1
  614. package/icons/sortalt/index.esm.js +40 -10
  615. package/icons/sortalt/index.esm.min.js +1 -1
  616. package/icons/sortalt/index.js +40 -11
  617. package/icons/sortalt/index.min.js +1 -1
  618. package/icons/sortalt/index.vue +10 -3
  619. package/icons/sortamountdown/index.cjs.js +24 -9
  620. package/icons/sortamountdown/index.cjs.min.js +1 -1
  621. package/icons/sortamountdown/index.esm.js +25 -10
  622. package/icons/sortamountdown/index.esm.min.js +1 -1
  623. package/icons/sortamountdown/index.js +25 -11
  624. package/icons/sortamountdown/index.min.js +1 -1
  625. package/icons/sortamountdown/index.vue +10 -3
  626. package/icons/sortamountupalt/index.cjs.js +24 -9
  627. package/icons/sortamountupalt/index.cjs.min.js +1 -1
  628. package/icons/sortamountupalt/index.esm.js +25 -10
  629. package/icons/sortamountupalt/index.esm.min.js +1 -1
  630. package/icons/sortamountupalt/index.js +25 -11
  631. package/icons/sortamountupalt/index.min.js +1 -1
  632. package/icons/sortamountupalt/index.vue +10 -3
  633. package/icons/spinner/index.cjs.js +27 -24
  634. package/icons/spinner/index.cjs.min.js +1 -1
  635. package/icons/spinner/index.esm.js +27 -24
  636. package/icons/spinner/index.esm.min.js +1 -1
  637. package/icons/spinner/index.js +28 -26
  638. package/icons/spinner/index.min.js +1 -1
  639. package/icons/spinner/index.vue +10 -3
  640. package/icons/star/index.cjs.js +27 -24
  641. package/icons/star/index.cjs.min.js +1 -1
  642. package/icons/star/index.esm.js +27 -24
  643. package/icons/star/index.esm.min.js +1 -1
  644. package/icons/star/index.js +28 -26
  645. package/icons/star/index.min.js +1 -1
  646. package/icons/star/index.vue +10 -3
  647. package/icons/starfill/index.cjs.js +27 -24
  648. package/icons/starfill/index.cjs.min.js +1 -1
  649. package/icons/starfill/index.esm.js +27 -24
  650. package/icons/starfill/index.esm.min.js +1 -1
  651. package/icons/starfill/index.js +28 -26
  652. package/icons/starfill/index.min.js +1 -1
  653. package/icons/starfill/index.vue +10 -3
  654. package/icons/thlarge/index.cjs.js +29 -26
  655. package/icons/thlarge/index.cjs.min.js +1 -1
  656. package/icons/thlarge/index.esm.js +29 -26
  657. package/icons/thlarge/index.esm.min.js +1 -1
  658. package/icons/thlarge/index.js +30 -28
  659. package/icons/thlarge/index.min.js +1 -1
  660. package/icons/thlarge/index.vue +10 -3
  661. package/icons/times/index.cjs.js +6 -9
  662. package/icons/times/index.cjs.min.js +1 -1
  663. package/icons/times/index.esm.js +6 -9
  664. package/icons/times/index.esm.min.js +1 -1
  665. package/icons/times/index.js +6 -9
  666. package/icons/times/index.min.js +1 -1
  667. package/icons/timescircle/index.cjs.js +29 -26
  668. package/icons/timescircle/index.cjs.min.js +1 -1
  669. package/icons/timescircle/index.esm.js +29 -26
  670. package/icons/timescircle/index.esm.min.js +1 -1
  671. package/icons/timescircle/index.js +30 -28
  672. package/icons/timescircle/index.min.js +1 -1
  673. package/icons/timescircle/index.vue +10 -3
  674. package/icons/trash/index.cjs.js +29 -26
  675. package/icons/trash/index.cjs.min.js +1 -1
  676. package/icons/trash/index.esm.js +29 -26
  677. package/icons/trash/index.esm.min.js +1 -1
  678. package/icons/trash/index.js +30 -28
  679. package/icons/trash/index.min.js +1 -1
  680. package/icons/trash/index.vue +10 -3
  681. package/icons/undo/index.cjs.js +29 -26
  682. package/icons/undo/index.cjs.min.js +1 -1
  683. package/icons/undo/index.esm.js +29 -26
  684. package/icons/undo/index.esm.min.js +1 -1
  685. package/icons/undo/index.js +30 -28
  686. package/icons/undo/index.min.js +1 -1
  687. package/icons/undo/index.vue +10 -3
  688. package/icons/upload/index.cjs.js +29 -26
  689. package/icons/upload/index.cjs.min.js +1 -1
  690. package/icons/upload/index.esm.js +29 -26
  691. package/icons/upload/index.esm.min.js +1 -1
  692. package/icons/upload/index.js +30 -28
  693. package/icons/upload/index.min.js +1 -1
  694. package/icons/upload/index.vue +10 -3
  695. package/icons/windowmaximize/index.cjs.js +29 -26
  696. package/icons/windowmaximize/index.cjs.min.js +1 -1
  697. package/icons/windowmaximize/index.esm.js +29 -26
  698. package/icons/windowmaximize/index.esm.min.js +1 -1
  699. package/icons/windowmaximize/index.js +30 -28
  700. package/icons/windowmaximize/index.min.js +1 -1
  701. package/icons/windowmaximize/index.vue +10 -3
  702. package/icons/windowminimize/index.cjs.js +29 -26
  703. package/icons/windowminimize/index.cjs.min.js +1 -1
  704. package/icons/windowminimize/index.esm.js +29 -26
  705. package/icons/windowminimize/index.esm.min.js +1 -1
  706. package/icons/windowminimize/index.js +30 -28
  707. package/icons/windowminimize/index.min.js +1 -1
  708. package/icons/windowminimize/index.vue +10 -3
  709. package/image/BaseImage.vue +153 -0
  710. package/image/Image.d.ts +12 -0
  711. package/image/Image.vue +17 -130
  712. package/image/image.cjs.js +385 -379
  713. package/image/image.cjs.min.js +1 -1
  714. package/image/image.esm.js +385 -379
  715. package/image/image.esm.min.js +1 -1
  716. package/image/image.js +385 -380
  717. package/image/image.min.js +1 -1
  718. package/inlinemessage/BaseInlineMessage.vue +54 -0
  719. package/inlinemessage/InlineMessage.d.ts +12 -0
  720. package/inlinemessage/InlineMessage.vue +5 -36
  721. package/inlinemessage/inlinemessage.cjs.js +80 -80
  722. package/inlinemessage/inlinemessage.cjs.min.js +1 -1
  723. package/inlinemessage/inlinemessage.esm.js +80 -80
  724. package/inlinemessage/inlinemessage.esm.min.js +1 -1
  725. package/inlinemessage/inlinemessage.js +81 -82
  726. package/inlinemessage/inlinemessage.min.js +1 -1
  727. package/inplace/BaseInplace.vue +72 -0
  728. package/inplace/Inplace.d.ts +12 -0
  729. package/inplace/Inplace.vue +6 -58
  730. package/inplace/inplace.cjs.js +145 -145
  731. package/inplace/inplace.cjs.min.js +1 -1
  732. package/inplace/inplace.esm.js +144 -144
  733. package/inplace/inplace.esm.min.js +1 -1
  734. package/inplace/inplace.js +145 -146
  735. package/inplace/inplace.min.js +1 -1
  736. package/inputmask/BaseInputMask.vue +43 -0
  737. package/inputmask/InputMask.d.ts +11 -0
  738. package/inputmask/InputMask.vue +3 -34
  739. package/inputmask/inputmask.cjs.js +464 -519
  740. package/inputmask/inputmask.cjs.min.js +1 -1
  741. package/inputmask/inputmask.esm.js +464 -519
  742. package/inputmask/inputmask.esm.min.js +1 -1
  743. package/inputmask/inputmask.js +465 -520
  744. package/inputmask/inputmask.min.js +1 -1
  745. package/inputnumber/BaseInputNumber.vue +288 -0
  746. package/inputnumber/InputNumber.d.ts +12 -0
  747. package/inputnumber/InputNumber.vue +50 -283
  748. package/inputnumber/inputnumber.cjs.js +1113 -1157
  749. package/inputnumber/inputnumber.cjs.min.js +1 -1
  750. package/inputnumber/inputnumber.esm.js +1112 -1156
  751. package/inputnumber/inputnumber.esm.min.js +1 -1
  752. package/inputnumber/inputnumber.js +1113 -1158
  753. package/inputnumber/inputnumber.min.js +1 -1
  754. package/inputswitch/BaseInputSwitch.vue +101 -0
  755. package/inputswitch/InputSwitch.d.ts +17 -0
  756. package/inputswitch/InputSwitch.vue +6 -83
  757. package/inputswitch/inputswitch.cjs.js +149 -138
  758. package/inputswitch/inputswitch.cjs.min.js +1 -1
  759. package/inputswitch/inputswitch.esm.js +149 -138
  760. package/inputswitch/inputswitch.esm.min.js +1 -1
  761. package/inputswitch/inputswitch.js +150 -140
  762. package/inputswitch/inputswitch.min.js +1 -1
  763. package/inputtext/BaseInputText.vue +34 -0
  764. package/inputtext/InputText.d.ts +15 -0
  765. package/inputtext/InputText.vue +10 -6
  766. package/inputtext/inputtext.cjs.js +58 -20
  767. package/inputtext/inputtext.cjs.min.js +1 -1
  768. package/inputtext/inputtext.esm.js +58 -20
  769. package/inputtext/inputtext.esm.min.js +1 -1
  770. package/inputtext/inputtext.js +58 -20
  771. package/inputtext/inputtext.min.js +1 -1
  772. package/knob/BaseKnob.vue +114 -0
  773. package/knob/Knob.d.ts +12 -0
  774. package/knob/Knob.vue +6 -101
  775. package/knob/knob.cjs.js +316 -326
  776. package/knob/knob.cjs.min.js +1 -1
  777. package/knob/knob.esm.js +316 -326
  778. package/knob/knob.esm.min.js +1 -1
  779. package/knob/knob.js +317 -328
  780. package/knob/knob.min.js +1 -1
  781. package/listbox/BaseListbox.vue +156 -0
  782. package/listbox/Listbox.d.ts +12 -0
  783. package/listbox/Listbox.vue +45 -141
  784. package/listbox/listbox.cjs.js +925 -877
  785. package/listbox/listbox.cjs.min.js +1 -1
  786. package/listbox/listbox.esm.js +925 -877
  787. package/listbox/listbox.esm.min.js +1 -1
  788. package/listbox/listbox.js +925 -878
  789. package/listbox/listbox.min.js +1 -1
  790. package/megamenu/BaseMegaMenu.vue +238 -0
  791. package/megamenu/MegaMenu.d.ts +16 -0
  792. package/megamenu/MegaMenu.vue +6 -129
  793. package/megamenu/MegaMenuSub.vue +27 -91
  794. package/megamenu/megamenu.cjs.js +1028 -979
  795. package/megamenu/megamenu.cjs.min.js +1 -1
  796. package/megamenu/megamenu.esm.js +1029 -980
  797. package/megamenu/megamenu.esm.min.js +1 -1
  798. package/megamenu/megamenu.js +1028 -980
  799. package/megamenu/megamenu.min.js +1 -1
  800. package/menu/BaseMenu.vue +112 -0
  801. package/menu/Menu.d.ts +12 -0
  802. package/menu/Menu.vue +15 -92
  803. package/menu/Menuitem.vue +22 -27
  804. package/menu/menu.cjs.js +609 -651
  805. package/menu/menu.cjs.min.js +1 -1
  806. package/menu/menu.esm.js +608 -650
  807. package/menu/menu.esm.min.js +1 -1
  808. package/menu/menu.js +609 -652
  809. package/menu/menu.min.js +1 -1
  810. package/menubar/BaseMenubar.vue +155 -0
  811. package/menubar/Menubar.d.ts +16 -0
  812. package/menubar/Menubar.vue +11 -110
  813. package/menubar/MenubarSub.vue +19 -55
  814. package/menubar/menubar.cjs.js +970 -923
  815. package/menubar/menubar.cjs.min.js +1 -1
  816. package/menubar/menubar.esm.js +970 -923
  817. package/menubar/menubar.esm.min.js +1 -1
  818. package/menubar/menubar.js +970 -924
  819. package/menubar/menubar.min.js +1 -1
  820. package/message/BaseMessage.vue +105 -0
  821. package/message/Message.d.ts +12 -0
  822. package/message/Message.vue +10 -89
  823. package/message/message.cjs.js +150 -154
  824. package/message/message.cjs.min.js +1 -1
  825. package/message/message.esm.js +149 -153
  826. package/message/message.esm.min.js +1 -1
  827. package/message/message.js +150 -155
  828. package/message/message.min.js +1 -1
  829. package/multiselect/BaseMultiSelect.vue +363 -0
  830. package/multiselect/MultiSelect.d.ts +12 -5
  831. package/multiselect/MultiSelect.vue +76 -373
  832. package/multiselect/multiselect.cjs.js +1513 -1449
  833. package/multiselect/multiselect.cjs.min.js +1 -1
  834. package/multiselect/multiselect.esm.js +1513 -1449
  835. package/multiselect/multiselect.esm.min.js +1 -1
  836. package/multiselect/multiselect.js +1513 -1450
  837. package/multiselect/multiselect.min.js +1 -1
  838. package/orderlist/BaseOrderList.vue +146 -0
  839. package/orderlist/OrderList.d.ts +12 -0
  840. package/orderlist/OrderList.vue +35 -156
  841. package/orderlist/orderlist.cjs.js +627 -686
  842. package/orderlist/orderlist.cjs.min.js +1 -1
  843. package/orderlist/orderlist.esm.js +626 -685
  844. package/orderlist/orderlist.esm.min.js +1 -1
  845. package/orderlist/orderlist.js +627 -687
  846. package/orderlist/orderlist.min.js +1 -1
  847. package/organizationchart/BaseOrganizationChart.vue +111 -0
  848. package/organizationchart/OrganizationChart.d.ts +12 -0
  849. package/organizationchart/OrganizationChart.vue +4 -80
  850. package/organizationchart/OrganizationChartNode.vue +15 -16
  851. package/organizationchart/organizationchart.cjs.js +315 -313
  852. package/organizationchart/organizationchart.cjs.min.js +1 -1
  853. package/organizationchart/organizationchart.esm.js +315 -313
  854. package/organizationchart/organizationchart.esm.min.js +1 -1
  855. package/organizationchart/organizationchart.js +316 -315
  856. package/organizationchart/organizationchart.min.js +1 -1
  857. package/overlaypanel/BaseOverlayPanel.vue +135 -0
  858. package/overlaypanel/OverlayPanel.d.ts +12 -0
  859. package/overlaypanel/OverlayPanel.vue +10 -122
  860. package/overlaypanel/overlaypanel.cjs.js +352 -374
  861. package/overlaypanel/overlaypanel.cjs.min.js +1 -1
  862. package/overlaypanel/overlaypanel.esm.js +351 -373
  863. package/overlaypanel/overlaypanel.esm.min.js +1 -1
  864. package/overlaypanel/overlaypanel.js +352 -375
  865. package/overlaypanel/overlaypanel.min.js +1 -1
  866. package/package.json +1 -1
  867. package/paginator/BasePaginator.vue +147 -0
  868. package/paginator/CurrentPageReport.vue +2 -1
  869. package/paginator/FirstPageLink.vue +3 -12
  870. package/paginator/JumpToPageDropdown.vue +13 -1
  871. package/paginator/JumpToPageInput.vue +12 -1
  872. package/paginator/LastPageLink.vue +3 -12
  873. package/paginator/NextPageLink.vue +3 -12
  874. package/paginator/PageLinks.vue +4 -2
  875. package/paginator/Paginator.d.ts +41 -5
  876. package/paginator/Paginator.vue +19 -93
  877. package/paginator/PrevPageLink.vue +3 -12
  878. package/paginator/RowsPerPageDropdown.vue +13 -1
  879. package/paginator/paginator.cjs.js +753 -782
  880. package/paginator/paginator.cjs.min.js +1 -1
  881. package/paginator/paginator.esm.js +754 -783
  882. package/paginator/paginator.esm.min.js +1 -1
  883. package/paginator/paginator.js +753 -783
  884. package/paginator/paginator.min.js +1 -1
  885. package/panel/BasePanel.vue +67 -0
  886. package/panel/Panel.d.ts +12 -0
  887. package/panel/Panel.vue +11 -45
  888. package/panel/panel.cjs.js +151 -154
  889. package/panel/panel.cjs.min.js +1 -1
  890. package/panel/panel.esm.js +151 -154
  891. package/panel/panel.esm.min.js +1 -1
  892. package/panel/panel.js +151 -155
  893. package/panel/panel.min.js +1 -1
  894. package/panelmenu/BasePanelMenu.vue +118 -0
  895. package/panelmenu/PanelMenu.d.ts +16 -0
  896. package/panelmenu/PanelMenu.vue +28 -104
  897. package/panelmenu/PanelMenuList.vue +5 -3
  898. package/panelmenu/PanelMenuSub.vue +29 -49
  899. package/panelmenu/panelmenu.cjs.js +1034 -1007
  900. package/panelmenu/panelmenu.cjs.min.js +1 -1
  901. package/panelmenu/panelmenu.esm.js +1034 -1007
  902. package/panelmenu/panelmenu.esm.min.js +1 -1
  903. package/panelmenu/panelmenu.js +1034 -1008
  904. package/panelmenu/panelmenu.min.js +1 -1
  905. package/password/BasePassword.vue +180 -0
  906. package/password/Password.d.ts +16 -0
  907. package/password/Password.vue +12 -176
  908. package/password/password.cjs.js +473 -479
  909. package/password/password.cjs.min.js +1 -1
  910. package/password/password.esm.js +472 -478
  911. package/password/password.esm.min.js +1 -1
  912. package/password/password.js +473 -480
  913. package/password/password.min.js +1 -1
  914. package/picklist/BasePickList.vue +167 -0
  915. package/picklist/PickList.d.ts +14 -2
  916. package/picklist/PickList.vue +46 -175
  917. package/picklist/picklist.cjs.js +1060 -1108
  918. package/picklist/picklist.cjs.min.js +1 -1
  919. package/picklist/picklist.esm.js +1059 -1107
  920. package/picklist/picklist.esm.min.js +1 -1
  921. package/picklist/picklist.js +1060 -1109
  922. package/picklist/picklist.min.js +1 -1
  923. package/portal/portal.cjs.js +28 -32
  924. package/portal/portal.cjs.min.js +1 -1
  925. package/portal/portal.esm.js +28 -32
  926. package/portal/portal.esm.min.js +1 -1
  927. package/portal/portal.js +28 -32
  928. package/portal/portal.min.js +1 -1
  929. package/progressbar/BaseProgressBar.vue +158 -0
  930. package/progressbar/ProgressBar.d.ts +12 -0
  931. package/progressbar/ProgressBar.vue +7 -141
  932. package/progressbar/progressbar.cjs.js +80 -100
  933. package/progressbar/progressbar.cjs.min.js +1 -1
  934. package/progressbar/progressbar.esm.js +80 -100
  935. package/progressbar/progressbar.esm.min.js +1 -1
  936. package/progressbar/progressbar.js +81 -102
  937. package/progressbar/progressbar.min.js +1 -1
  938. package/progressspinner/BaseProgressSpinner.vue +68 -0
  939. package/progressspinner/ProgressSpinner.d.ts +12 -0
  940. package/progressspinner/ProgressSpinner.vue +5 -47
  941. package/progressspinner/progressspinner.cjs.js +65 -72
  942. package/progressspinner/progressspinner.cjs.min.js +1 -1
  943. package/progressspinner/progressspinner.esm.js +65 -72
  944. package/progressspinner/progressspinner.esm.min.js +1 -1
  945. package/progressspinner/progressspinner.js +66 -74
  946. package/progressspinner/progressspinner.min.js +1 -1
  947. package/radiobutton/BaseRadioButton.vue +72 -0
  948. package/radiobutton/RadioButton.d.ts +17 -0
  949. package/radiobutton/RadioButton.vue +7 -68
  950. package/radiobutton/radiobutton.cjs.js +145 -106
  951. package/radiobutton/radiobutton.cjs.min.js +1 -1
  952. package/radiobutton/radiobutton.esm.js +145 -106
  953. package/radiobutton/radiobutton.esm.min.js +1 -1
  954. package/radiobutton/radiobutton.js +146 -107
  955. package/radiobutton/radiobutton.min.js +1 -1
  956. package/rating/BaseRating.vue +98 -0
  957. package/rating/Rating.d.ts +30 -1
  958. package/rating/Rating.vue +13 -76
  959. package/rating/rating.cjs.js +238 -206
  960. package/rating/rating.cjs.min.js +1 -1
  961. package/rating/rating.esm.js +238 -206
  962. package/rating/rating.esm.min.js +1 -1
  963. package/rating/rating.js +238 -207
  964. package/rating/rating.min.js +1 -1
  965. package/resources/primevue.css +3 -521
  966. package/resources/primevue.min.css +3 -1
  967. package/ripple/Ripple.d.ts +48 -1
  968. package/ripple/ripple.cjs.js +102 -82
  969. package/ripple/ripple.cjs.min.js +1 -1
  970. package/ripple/ripple.esm.js +100 -84
  971. package/ripple/ripple.esm.min.js +1 -1
  972. package/ripple/ripple.js +102 -84
  973. package/ripple/ripple.min.js +1 -1
  974. package/row/Row.d.ts +25 -1
  975. package/row/row.cjs.js +5 -5
  976. package/row/row.cjs.min.js +1 -1
  977. package/row/row.esm.js +5 -5
  978. package/row/row.esm.min.js +1 -1
  979. package/row/row.js +5 -5
  980. package/row/row.min.js +1 -1
  981. package/scrollpanel/BaseScrollPanel.vue +92 -0
  982. package/scrollpanel/ScrollPanel.d.ts +12 -0
  983. package/scrollpanel/ScrollPanel.vue +29 -82
  984. package/scrollpanel/scrollpanel.cjs.js +370 -358
  985. package/scrollpanel/scrollpanel.cjs.min.js +1 -1
  986. package/scrollpanel/scrollpanel.esm.js +370 -358
  987. package/scrollpanel/scrollpanel.esm.min.js +1 -1
  988. package/scrollpanel/scrollpanel.js +370 -359
  989. package/scrollpanel/scrollpanel.min.js +1 -1
  990. package/scrolltop/BaseScrollTop.vue +78 -0
  991. package/scrolltop/ScrollTop.d.ts +12 -0
  992. package/scrolltop/ScrollTop.vue +5 -61
  993. package/scrolltop/scrolltop.cjs.js +140 -147
  994. package/scrolltop/scrolltop.cjs.min.js +1 -1
  995. package/scrolltop/scrolltop.esm.js +140 -147
  996. package/scrolltop/scrolltop.esm.min.js +1 -1
  997. package/scrolltop/scrolltop.js +140 -148
  998. package/scrolltop/scrolltop.min.js +1 -1
  999. package/selectbutton/BaseSelectButton.vue +46 -0
  1000. package/selectbutton/SelectButton.d.ts +12 -0
  1001. package/selectbutton/SelectButton.vue +11 -44
  1002. package/selectbutton/selectbutton.cjs.js +241 -209
  1003. package/selectbutton/selectbutton.cjs.min.js +1 -1
  1004. package/selectbutton/selectbutton.esm.js +241 -209
  1005. package/selectbutton/selectbutton.esm.min.js +1 -1
  1006. package/selectbutton/selectbutton.js +242 -210
  1007. package/selectbutton/selectbutton.min.js +1 -1
  1008. package/sidebar/BaseSidebar.vue +255 -0
  1009. package/sidebar/Sidebar.d.ts +12 -0
  1010. package/sidebar/Sidebar.vue +10 -251
  1011. package/sidebar/sidebar.cjs.js +316 -329
  1012. package/sidebar/sidebar.cjs.min.js +1 -1
  1013. package/sidebar/sidebar.esm.js +315 -328
  1014. package/sidebar/sidebar.esm.min.js +1 -1
  1015. package/sidebar/sidebar.js +316 -330
  1016. package/sidebar/sidebar.min.js +1 -1
  1017. package/skeleton/BaseSkeleton.vue +96 -0
  1018. package/skeleton/Skeleton.d.ts +12 -0
  1019. package/skeleton/Skeleton.vue +3 -74
  1020. package/skeleton/skeleton.cjs.js +81 -75
  1021. package/skeleton/skeleton.cjs.min.js +1 -1
  1022. package/skeleton/skeleton.esm.js +81 -75
  1023. package/skeleton/skeleton.esm.min.js +1 -1
  1024. package/skeleton/skeleton.js +82 -77
  1025. package/skeleton/skeleton.min.js +1 -1
  1026. package/slider/BaseSlider.vue +118 -0
  1027. package/slider/Slider.d.ts +12 -0
  1028. package/slider/Slider.vue +13 -104
  1029. package/slider/slider.cjs.js +411 -400
  1030. package/slider/slider.cjs.min.js +1 -1
  1031. package/slider/slider.esm.js +411 -400
  1032. package/slider/slider.esm.min.js +1 -1
  1033. package/slider/slider.js +411 -401
  1034. package/slider/slider.min.js +1 -1
  1035. package/speeddial/BaseSpeedDial.vue +234 -0
  1036. package/speeddial/SpeedDial.d.ts +12 -0
  1037. package/speeddial/SpeedDial.vue +19 -237
  1038. package/speeddial/speeddial.cjs.js +607 -614
  1039. package/speeddial/speeddial.cjs.min.js +1 -1
  1040. package/speeddial/speeddial.esm.js +606 -613
  1041. package/speeddial/speeddial.esm.min.js +1 -1
  1042. package/speeddial/speeddial.js +607 -615
  1043. package/speeddial/speeddial.min.js +1 -1
  1044. package/splitbutton/BaseSplitButton.vue +149 -0
  1045. package/splitbutton/SplitButton.d.ts +24 -2
  1046. package/splitbutton/SplitButton.vue +17 -135
  1047. package/splitbutton/splitbutton.cjs.js +230 -220
  1048. package/splitbutton/splitbutton.cjs.min.js +1 -1
  1049. package/splitbutton/splitbutton.esm.js +230 -220
  1050. package/splitbutton/splitbutton.esm.min.js +1 -1
  1051. package/splitbutton/splitbutton.js +230 -221
  1052. package/splitbutton/splitbutton.min.js +1 -1
  1053. package/splitter/BaseSplitter.vue +101 -0
  1054. package/splitter/Splitter.d.ts +12 -0
  1055. package/splitter/Splitter.vue +13 -97
  1056. package/splitter/splitter.cjs.js +427 -409
  1057. package/splitter/splitter.cjs.min.js +1 -1
  1058. package/splitter/splitter.esm.js +427 -409
  1059. package/splitter/splitter.esm.min.js +1 -1
  1060. package/splitter/splitter.js +427 -410
  1061. package/splitter/splitter.min.js +1 -1
  1062. package/splitterpanel/BaseSplitterPanel.vue +49 -0
  1063. package/splitterpanel/SplitterPanel.d.ts +12 -0
  1064. package/splitterpanel/SplitterPanel.vue +3 -16
  1065. package/splitterpanel/splitterpanel.cjs.js +52 -26
  1066. package/splitterpanel/splitterpanel.cjs.min.js +1 -1
  1067. package/splitterpanel/splitterpanel.esm.js +52 -26
  1068. package/splitterpanel/splitterpanel.esm.min.js +1 -1
  1069. package/splitterpanel/splitterpanel.js +53 -28
  1070. package/splitterpanel/splitterpanel.min.js +1 -1
  1071. package/steps/BaseSteps.vue +112 -0
  1072. package/steps/Steps.d.ts +12 -0
  1073. package/steps/Steps.vue +14 -110
  1074. package/steps/steps.cjs.js +248 -260
  1075. package/steps/steps.cjs.min.js +1 -1
  1076. package/steps/steps.esm.js +248 -260
  1077. package/steps/steps.esm.min.js +1 -1
  1078. package/steps/steps.js +248 -261
  1079. package/steps/steps.min.js +1 -1
  1080. package/styleclass/StyleClass.d.ts +17 -0
  1081. package/styleclass/styleclass.cjs.js +117 -141
  1082. package/styleclass/styleclass.cjs.min.js +1 -1
  1083. package/styleclass/styleclass.esm.js +113 -141
  1084. package/styleclass/styleclass.esm.min.js +1 -1
  1085. package/styleclass/styleclass.js +117 -142
  1086. package/styleclass/styleclass.min.js +1 -1
  1087. package/tabmenu/BaseTabMenu.vue +100 -0
  1088. package/tabmenu/TabMenu.d.ts +12 -0
  1089. package/tabmenu/TabMenu.vue +39 -107
  1090. package/tabmenu/tabmenu.cjs.js +365 -394
  1091. package/tabmenu/tabmenu.cjs.min.js +1 -1
  1092. package/tabmenu/tabmenu.esm.js +364 -393
  1093. package/tabmenu/tabmenu.esm.min.js +1 -1
  1094. package/tabmenu/tabmenu.js +365 -395
  1095. package/tabmenu/tabmenu.min.js +1 -1
  1096. package/tabpanel/BaseTabPanel.vue +19 -0
  1097. package/tabpanel/TabPanel.d.ts +19 -0
  1098. package/tabpanel/TabPanel.vue +3 -13
  1099. package/tabpanel/tabpanel.cjs.js +19 -14
  1100. package/tabpanel/tabpanel.cjs.min.js +1 -1
  1101. package/tabpanel/tabpanel.esm.js +19 -14
  1102. package/tabpanel/tabpanel.esm.min.js +1 -1
  1103. package/tabpanel/tabpanel.js +19 -14
  1104. package/tabpanel/tabpanel.min.js +1 -1
  1105. package/tabview/BaseTabView.vue +159 -0
  1106. package/tabview/TabView.d.ts +16 -0
  1107. package/tabview/TabView.vue +53 -172
  1108. package/tabview/tabview.cjs.js +459 -459
  1109. package/tabview/tabview.cjs.min.js +1 -1
  1110. package/tabview/tabview.esm.js +458 -458
  1111. package/tabview/tabview.esm.min.js +1 -1
  1112. package/tabview/tabview.js +459 -460
  1113. package/tabview/tabview.min.js +1 -1
  1114. package/tag/BaseTag.vue +59 -0
  1115. package/tag/Tag.d.ts +12 -0
  1116. package/tag/Tag.vue +6 -47
  1117. package/tag/tag.cjs.js +58 -71
  1118. package/tag/tag.cjs.min.js +1 -1
  1119. package/tag/tag.esm.js +58 -71
  1120. package/tag/tag.esm.min.js +1 -1
  1121. package/tag/tag.js +59 -73
  1122. package/tag/tag.min.js +1 -1
  1123. package/terminal/BaseTerminal.vue +65 -0
  1124. package/terminal/Terminal.d.ts +12 -0
  1125. package/terminal/Terminal.vue +10 -45
  1126. package/terminal/terminal.cjs.js +112 -107
  1127. package/terminal/terminal.cjs.min.js +1 -1
  1128. package/terminal/terminal.esm.js +111 -106
  1129. package/terminal/terminal.esm.min.js +1 -1
  1130. package/terminal/terminal.js +112 -108
  1131. package/terminal/terminal.min.js +1 -1
  1132. package/textarea/BaseTextarea.vue +45 -0
  1133. package/textarea/Textarea.d.ts +12 -0
  1134. package/textarea/Textarea.vue +3 -18
  1135. package/textarea/textarea.cjs.js +80 -79
  1136. package/textarea/textarea.cjs.min.js +1 -1
  1137. package/textarea/textarea.esm.js +80 -79
  1138. package/textarea/textarea.esm.min.js +1 -1
  1139. package/textarea/textarea.js +81 -81
  1140. package/textarea/textarea.min.js +1 -1
  1141. package/tieredmenu/BaseTieredMenu.vue +142 -0
  1142. package/tieredmenu/TieredMenu.d.ts +16 -0
  1143. package/tieredmenu/TieredMenu.vue +5 -105
  1144. package/tieredmenu/TieredMenuSub.vue +23 -50
  1145. package/tieredmenu/tieredmenu.cjs.js +987 -941
  1146. package/tieredmenu/tieredmenu.cjs.min.js +1 -1
  1147. package/tieredmenu/tieredmenu.esm.js +987 -941
  1148. package/tieredmenu/tieredmenu.esm.min.js +1 -1
  1149. package/tieredmenu/tieredmenu.js +987 -942
  1150. package/tieredmenu/tieredmenu.min.js +1 -1
  1151. package/timeline/BaseTimeline.vue +155 -0
  1152. package/timeline/Timeline.d.ts +11 -0
  1153. package/timeline/Timeline.vue +9 -139
  1154. package/timeline/timeline.cjs.js +87 -90
  1155. package/timeline/timeline.cjs.min.js +1 -1
  1156. package/timeline/timeline.esm.js +87 -90
  1157. package/timeline/timeline.esm.min.js +1 -1
  1158. package/timeline/timeline.js +87 -91
  1159. package/timeline/timeline.min.js +1 -1
  1160. package/toast/BaseToast.vue +181 -0
  1161. package/toast/Toast.d.ts +12 -0
  1162. package/toast/Toast.vue +4 -155
  1163. package/toast/ToastMessage.vue +9 -31
  1164. package/toast/toast.cjs.js +389 -380
  1165. package/toast/toast.cjs.min.js +1 -1
  1166. package/toast/toast.esm.js +388 -379
  1167. package/toast/toast.esm.min.js +1 -1
  1168. package/toast/toast.js +389 -381
  1169. package/toast/toast.min.js +1 -1
  1170. package/toastservice/toastservice.cjs.js +15 -16
  1171. package/toastservice/toastservice.cjs.min.js +1 -1
  1172. package/toastservice/toastservice.esm.js +15 -16
  1173. package/toastservice/toastservice.esm.min.js +1 -1
  1174. package/toastservice/toastservice.js +15 -16
  1175. package/toastservice/toastservice.min.js +1 -1
  1176. package/togglebutton/BaseToggleButton.vue +85 -0
  1177. package/togglebutton/ToggleButton.d.ts +12 -0
  1178. package/togglebutton/ToggleButton.vue +7 -77
  1179. package/togglebutton/togglebutton.cjs.js +193 -170
  1180. package/togglebutton/togglebutton.cjs.min.js +1 -1
  1181. package/togglebutton/togglebutton.esm.js +192 -169
  1182. package/togglebutton/togglebutton.esm.min.js +1 -1
  1183. package/togglebutton/togglebutton.js +194 -171
  1184. package/togglebutton/togglebutton.min.js +1 -1
  1185. package/toolbar/BaseToolbar.vue +55 -0
  1186. package/toolbar/Toolbar.d.ts +12 -0
  1187. package/toolbar/Toolbar.vue +7 -34
  1188. package/toolbar/toolbar.cjs.js +50 -52
  1189. package/toolbar/toolbar.cjs.min.js +1 -1
  1190. package/toolbar/toolbar.esm.js +50 -52
  1191. package/toolbar/toolbar.esm.min.js +1 -1
  1192. package/toolbar/toolbar.js +51 -54
  1193. package/toolbar/toolbar.min.js +1 -1
  1194. package/tooltip/Tooltip.d.ts +44 -0
  1195. package/tooltip/tooltip.cjs.js +379 -400
  1196. package/tooltip/tooltip.cjs.min.js +1 -1
  1197. package/tooltip/tooltip.esm.js +379 -404
  1198. package/tooltip/tooltip.esm.min.js +1 -1
  1199. package/tooltip/tooltip.js +409 -432
  1200. package/tooltip/tooltip.min.js +1 -1
  1201. package/tree/BaseTree.vue +211 -0
  1202. package/tree/Tree.d.ts +32 -10
  1203. package/tree/Tree.vue +13 -173
  1204. package/tree/TreeNode.vue +23 -45
  1205. package/tree/tree.cjs.js +852 -855
  1206. package/tree/tree.cjs.min.js +1 -1
  1207. package/tree/tree.esm.js +852 -855
  1208. package/tree/tree.esm.min.js +1 -1
  1209. package/tree/tree.js +852 -856
  1210. package/tree/tree.min.js +1 -1
  1211. package/treeselect/BaseTreeSelect.vue +184 -0
  1212. package/treeselect/TreeSelect.d.ts +19 -2
  1213. package/treeselect/TreeSelect.vue +21 -180
  1214. package/treeselect/treeselect.cjs.js +675 -622
  1215. package/treeselect/treeselect.cjs.min.js +1 -1
  1216. package/treeselect/treeselect.esm.js +675 -622
  1217. package/treeselect/treeselect.esm.min.js +1 -1
  1218. package/treeselect/treeselect.js +675 -623
  1219. package/treeselect/treeselect.min.js +1 -1
  1220. package/treetable/BaseTreeTable.vue +434 -0
  1221. package/treetable/BodyCell.vue +30 -29
  1222. package/treetable/FooterCell.vue +15 -11
  1223. package/treetable/HeaderCell.vue +26 -21
  1224. package/treetable/TreeTable.d.ts +29 -4
  1225. package/treetable/TreeTable.vue +37 -379
  1226. package/treetable/TreeTableRow.vue +9 -11
  1227. package/treetable/treetable.cjs.js +2104 -2129
  1228. package/treetable/treetable.cjs.min.js +1 -1
  1229. package/treetable/treetable.esm.js +2104 -2129
  1230. package/treetable/treetable.esm.min.js +1 -1
  1231. package/treetable/treetable.js +2104 -2130
  1232. package/treetable/treetable.min.js +1 -1
  1233. package/tristatecheckbox/BaseTriStateCheckbox.vue +65 -0
  1234. package/tristatecheckbox/TriStateCheckbox.d.ts +33 -6
  1235. package/tristatecheckbox/TriStateCheckbox.vue +12 -49
  1236. package/tristatecheckbox/tristatecheckbox.cjs.js +196 -144
  1237. package/tristatecheckbox/tristatecheckbox.cjs.min.js +1 -1
  1238. package/tristatecheckbox/tristatecheckbox.esm.js +196 -144
  1239. package/tristatecheckbox/tristatecheckbox.esm.min.js +1 -1
  1240. package/tristatecheckbox/tristatecheckbox.js +197 -145
  1241. package/tristatecheckbox/tristatecheckbox.min.js +1 -1
  1242. package/useconfirm/useconfirm.cjs.js +6 -9
  1243. package/useconfirm/useconfirm.cjs.min.js +1 -1
  1244. package/useconfirm/useconfirm.esm.js +6 -9
  1245. package/useconfirm/useconfirm.esm.min.js +1 -1
  1246. package/useconfirm/useconfirm.js +6 -9
  1247. package/useconfirm/useconfirm.min.js +1 -1
  1248. package/usedialog/usedialog.cjs.js +6 -9
  1249. package/usedialog/usedialog.cjs.min.js +1 -1
  1250. package/usedialog/usedialog.esm.js +6 -9
  1251. package/usedialog/usedialog.esm.min.js +1 -1
  1252. package/usedialog/usedialog.js +6 -9
  1253. package/usedialog/usedialog.min.js +1 -1
  1254. package/usestyle/UseStyle.d.ts +19 -0
  1255. package/usestyle/package.json +6 -0
  1256. package/usestyle/usestyle.cjs.js +73 -0
  1257. package/usestyle/usestyle.cjs.min.js +1 -0
  1258. package/usestyle/usestyle.esm.js +69 -0
  1259. package/usestyle/usestyle.esm.min.js +1 -0
  1260. package/usestyle/usestyle.js +76 -0
  1261. package/usestyle/usestyle.min.js +1 -0
  1262. package/usetoast/usetoast.cjs.js +6 -9
  1263. package/usetoast/usetoast.cjs.min.js +1 -1
  1264. package/usetoast/usetoast.esm.js +6 -9
  1265. package/usetoast/usetoast.esm.min.js +1 -1
  1266. package/usetoast/usetoast.js +6 -9
  1267. package/usetoast/usetoast.min.js +1 -1
  1268. package/utils/Utils.d.ts +12 -1
  1269. package/utils/utils.cjs.js +958 -996
  1270. package/utils/utils.cjs.min.js +1 -1
  1271. package/utils/utils.esm.js +958 -996
  1272. package/utils/utils.esm.min.js +1 -1
  1273. package/utils/utils.js +958 -996
  1274. package/utils/utils.min.js +1 -1
  1275. package/vetur-attributes.json +332 -0
  1276. package/vetur-tags.json +168 -80
  1277. package/virtualscroller/BaseVirtualScroller.vue +164 -0
  1278. package/virtualscroller/VirtualScroller.d.ts +22 -5
  1279. package/virtualscroller/VirtualScroller.vue +6 -151
  1280. package/virtualscroller/virtualscroller.cjs.js +865 -800
  1281. package/virtualscroller/virtualscroller.cjs.min.js +1 -1
  1282. package/virtualscroller/virtualscroller.esm.js +864 -799
  1283. package/virtualscroller/virtualscroller.esm.min.js +1 -1
  1284. package/virtualscroller/virtualscroller.js +865 -801
  1285. package/virtualscroller/virtualscroller.min.js +1 -1
  1286. package/web-types.json +836 -4
  1287. package/resources/images/color.png +0 -0
  1288. package/resources/images/hue.png +0 -0
@@ -1,4 +1,3 @@
1
- import BaseComponent from 'primevue/basecomponent';
2
1
  import Button from 'primevue/button';
3
2
  import AngleDoubleDownIcon from 'primevue/icons/angledoubledown';
4
3
  import AngleDoubleUpIcon from 'primevue/icons/angledoubleup';
@@ -6,713 +5,655 @@ import AngleDownIcon from 'primevue/icons/angledown';
6
5
  import AngleUpIcon from 'primevue/icons/angleup';
7
6
  import Ripple from 'primevue/ripple';
8
7
  import { UniqueComponentId, ObjectUtils, DomHandler } from 'primevue/utils';
8
+ import BaseComponent from 'primevue/basecomponent';
9
+ import { useStyle } from 'primevue/usestyle';
9
10
  import { resolveComponent, resolveDirective, openBlock, createElementBlock, mergeProps, createElementVNode, renderSlot, createVNode, withCtx, normalizeProps, guardReactiveProps, createCommentVNode, TransitionGroup, Fragment, renderList, withDirectives } from 'vue';
10
11
 
11
- var script = {
12
- name: 'OrderList',
13
- extends: BaseComponent,
14
- emits: ['update:modelValue', 'reorder', 'update:selection', 'selection-change', 'focus', 'blur'],
15
- props: {
16
- modelValue: {
17
- type: Array,
18
- default: null
19
- },
20
- selection: {
21
- type: Array,
22
- default: null
23
- },
24
- dataKey: {
25
- type: String,
26
- default: null
27
- },
28
- listStyle: {
29
- type: null,
30
- default: null
31
- },
32
- metaKeySelection: {
33
- type: Boolean,
34
- default: true
35
- },
36
- responsive: {
37
- type: Boolean,
38
- default: true
39
- },
40
- breakpoint: {
41
- type: String,
42
- default: '960px'
43
- },
44
- stripedRows: {
45
- type: Boolean,
46
- default: false
47
- },
48
- tabindex: {
49
- type: Number,
50
- default: 0
51
- },
52
- listProps: {
53
- type: null,
54
- default: null
55
- },
56
- moveUpButtonProps: {
57
- type: null,
58
- default: null
59
- },
60
- moveTopButtonProps: {
61
- type: null,
62
- default: null
63
- },
64
- moveDownButtonProps: {
65
- type: null,
66
- default: null
67
- },
68
- moveBottomButtonProps: {
69
- type: null,
70
- default: null
71
- },
72
- 'aria-labelledby': {
73
- type: String,
74
- default: null
75
- },
76
- 'aria-label': {
77
- type: String,
78
- default: null
79
- }
12
+ var styles = "\n.p-orderlist {\n display: flex;\n}\n\n.p-orderlist-controls {\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n\n.p-orderlist-list-container {\n flex: 1 1 auto;\n}\n\n.p-orderlist-list {\n list-style-type: none;\n margin: 0;\n padding: 0;\n overflow: auto;\n min-height: 12rem;\n max-height: 24rem;\n}\n\n.p-orderlist-item {\n cursor: pointer;\n overflow: hidden;\n position: relative;\n}\n\n.p-orderlist.p-state-disabled .p-orderlist-item,\n.p-orderlist.p-state-disabled .p-button {\n cursor: default;\n}\n\n.p-orderlist.p-state-disabled .p-orderlist-list {\n overflow: hidden;\n}\n";
13
+ var classes = {
14
+ root: function root(_ref) {
15
+ var props = _ref.props;
16
+ return ['p-orderlist p-component', {
17
+ 'p-orderlist-striped': props.stripedRows
18
+ }];
19
+ },
20
+ controls: 'p-orderlist-controls',
21
+ header: 'p-orderlist-header',
22
+ container: 'p-orderlist-list-container',
23
+ list: 'p-orderlist-list',
24
+ item: function item(_ref2) {
25
+ var instance = _ref2.instance,
26
+ _item = _ref2.item,
27
+ id = _ref2.id;
28
+ return ['p-orderlist-item', {
29
+ 'p-highlight': instance.isSelected(_item),
30
+ 'p-focus': id === instance.focusedOptionId
31
+ }];
32
+ }
33
+ };
34
+ var _useStyle = useStyle(styles, {
35
+ name: 'orderlist',
36
+ manual: true
37
+ }),
38
+ loadStyle = _useStyle.load;
39
+ var script$1 = {
40
+ name: 'BaseOrderList',
41
+ "extends": BaseComponent,
42
+ props: {
43
+ modelValue: {
44
+ type: Array,
45
+ "default": null
80
46
  },
81
- itemTouched: false,
82
- reorderDirection: null,
83
- styleElement: null,
84
- list: null,
85
- data() {
86
- return {
87
- id: this.$attrs.id,
88
- d_selection: this.selection,
89
- focused: false,
90
- focusedOptionIndex: -1
91
- };
92
- },
93
- watch: {
94
- '$attrs.id': function (newValue) {
95
- this.id = newValue || UniqueComponentId();
96
- }
47
+ selection: {
48
+ type: Array,
49
+ "default": null
97
50
  },
98
- beforeUnmount() {
99
- this.destroyStyle();
51
+ dataKey: {
52
+ type: String,
53
+ "default": null
100
54
  },
101
- updated() {
102
- if (this.reorderDirection) {
103
- this.updateListScroll();
104
- this.reorderDirection = null;
105
- }
55
+ listStyle: {
56
+ type: null,
57
+ "default": null
106
58
  },
107
- mounted() {
108
- this.id = this.id || UniqueComponentId();
109
-
110
- if (this.responsive) {
111
- this.createStyle();
112
- }
59
+ metaKeySelection: {
60
+ type: Boolean,
61
+ "default": true
113
62
  },
114
- methods: {
115
- getItemKey(item, index) {
116
- return this.dataKey ? ObjectUtils.resolveFieldData(item, this.dataKey) : index;
117
- },
118
- getPTOptions(item, key) {
119
- return this.ptm(key, {
120
- context: {
121
- active: this.isSelected(item),
122
- focused: this.id === this.focusedOptionId
123
- }
124
- });
125
- },
126
- isSelected(item) {
127
- return ObjectUtils.findIndexInList(item, this.d_selection) != -1;
128
- },
129
- onListFocus(event) {
130
- const selectedFirstItem = DomHandler.findSingle(this.list, 'li.p-orderlist-item.p-highlight');
131
- const findIndex = ObjectUtils.findIndexInList(selectedFirstItem, this.list.children);
132
-
133
- this.focused = true;
134
-
135
- const index = this.focusedOptionIndex !== -1 ? this.focusedOptionIndex : selectedFirstItem ? findIndex : -1;
136
-
137
- this.changeFocusedOptionIndex(index);
138
- this.$emit('focus', event);
139
- },
140
- onListBlur(event) {
141
- this.focused = false;
142
- this.focusedOptionIndex = -1;
143
- this.$emit('blur', event);
144
- },
145
- onListKeyDown(event) {
146
- switch (event.code) {
147
- case 'ArrowDown':
148
- this.onArrowDownKey(event);
149
- break;
150
-
151
- case 'ArrowUp':
152
- this.onArrowUpKey(event);
153
- break;
154
-
155
- case 'Home':
156
- this.onHomeKey(event);
157
- break;
158
-
159
- case 'End':
160
- this.onEndKey(event);
161
- break;
162
-
163
- case 'Enter':
164
- this.onEnterKey(event);
165
- break;
166
-
167
- case 'Space':
168
- this.onSpaceKey(event);
169
- break;
170
-
171
- case 'KeyA':
172
- if (event.ctrlKey) {
173
- this.d_selection = [...this.modelValue];
174
- this.$emit('update:selection', this.d_selection);
175
- }
176
- }
177
- },
178
- onOptionMouseDown(index) {
179
- this.focused = true;
180
- this.focusedOptionIndex = index;
181
- },
182
- onArrowDownKey(event) {
183
- const optionIndex = this.findNextOptionIndex(this.focusedOptionIndex);
184
-
185
- this.changeFocusedOptionIndex(optionIndex);
186
-
187
- if (event.shiftKey) {
188
- this.onEnterKey(event);
189
- }
190
-
191
- event.preventDefault();
192
- },
193
- onArrowUpKey(event) {
194
- const optionIndex = this.findPrevOptionIndex(this.focusedOptionIndex);
195
-
196
- this.changeFocusedOptionIndex(optionIndex);
197
-
198
- if (event.shiftKey) {
199
- this.onEnterKey(event);
200
- }
201
-
202
- event.preventDefault();
203
- },
204
- onHomeKey(event) {
205
- if (event.ctrlKey && event.shiftKey) {
206
- const items = DomHandler.find(this.list, 'li.p-orderlist-item');
207
- const focusedItem = DomHandler.findSingle(this.list, `li.p-orderlist-item[id=${this.focusedOptionIndex}]`);
208
- const matchedOptionIndex = [...items].findIndex((item) => item === focusedItem);
209
-
210
- this.d_selection = [...this.modelValue].slice(0, matchedOptionIndex + 1);
211
- this.$emit('update:selection', this.d_selection);
212
- } else {
213
- this.changeFocusedOptionIndex(0);
214
- }
215
-
216
- event.preventDefault();
217
- },
218
- onEndKey(event) {
219
- if (event.ctrlKey && event.shiftKey) {
220
- const items = DomHandler.find(this.list, 'li.p-orderlist-item');
221
- const focusedItem = DomHandler.findSingle(this.list, `li.p-orderlist-item[id=${this.focusedOptionIndex}]`);
222
- const matchedOptionIndex = [...items].findIndex((item) => item === focusedItem);
223
-
224
- this.d_selection = [...this.modelValue].slice(matchedOptionIndex, items.length);
225
- this.$emit('update:selection', this.d_selection);
226
- } else {
227
- this.changeFocusedOptionIndex(DomHandler.find(this.list, 'li.p-orderlist-item').length - 1);
228
- }
229
-
230
- event.preventDefault();
231
- },
232
- onEnterKey(event) {
233
- const items = DomHandler.find(this.list, 'li.p-orderlist-item');
234
- const focusedItem = DomHandler.findSingle(this.list, `li.p-orderlist-item[id=${this.focusedOptionIndex}]`);
235
- const matchedOptionIndex = [...items].findIndex((item) => item === focusedItem);
236
-
237
- this.onItemClick(event, this.modelValue[matchedOptionIndex], matchedOptionIndex);
238
-
239
- event.preventDefault();
240
- },
241
- onSpaceKey(event) {
242
- if (event.shiftKey) {
243
- const items = DomHandler.find(this.list, 'li.p-orderlist-item');
244
- const selectedItemIndex = ObjectUtils.findIndexInList(this.d_selection[0], [...this.modelValue]);
245
- const focusedItem = DomHandler.findSingle(this.list, `li.p-orderlist-item[id=${this.focusedOptionIndex}]`);
246
- const matchedOptionIndex = [...items].findIndex((item) => item === focusedItem);
247
-
248
- this.d_selection = [...this.modelValue].slice(Math.min(selectedItemIndex, matchedOptionIndex), Math.max(selectedItemIndex, matchedOptionIndex) + 1);
249
- this.$emit('update:selection', this.d_selection);
250
- } else {
251
- this.onEnterKey(event);
252
- }
253
- },
254
- findNextOptionIndex(index) {
255
- const items = DomHandler.find(this.list, 'li.p-orderlist-item');
256
- const matchedOptionIndex = [...items].findIndex((link) => link.id === index);
257
-
258
- return matchedOptionIndex > -1 ? matchedOptionIndex + 1 : 0;
259
- },
260
- findPrevOptionIndex(index) {
261
- const items = DomHandler.find(this.list, 'li.p-orderlist-item');
262
- const matchedOptionIndex = [...items].findIndex((link) => link.id === index);
263
-
264
- return matchedOptionIndex > -1 ? matchedOptionIndex - 1 : 0;
265
- },
266
- changeFocusedOptionIndex(index) {
267
- const items = DomHandler.find(this.list, 'li.p-orderlist-item');
268
-
269
- let order = index >= items.length ? items.length - 1 : index < 0 ? 0 : index;
270
-
271
- this.focusedOptionIndex = items[order] ? items[order].getAttribute('id') : -1;
272
- this.scrollInView(this.focusedOptionIndex);
273
- },
274
- scrollInView(id) {
275
- const element = DomHandler.findSingle(this.list, `li[id="${id}"]`);
276
-
277
- if (element) {
278
- element.scrollIntoView && element.scrollIntoView({ block: 'nearest', inline: 'start' });
279
- }
280
- },
281
- moveUp(event) {
282
- if (this.d_selection) {
283
- let value = [...this.modelValue];
284
-
285
- for (let i = 0; i < this.d_selection.length; i++) {
286
- let selectedItem = this.d_selection[i];
287
- let selectedItemIndex = ObjectUtils.findIndexInList(selectedItem, value);
288
-
289
- if (selectedItemIndex !== 0) {
290
- let movedItem = value[selectedItemIndex];
291
- let temp = value[selectedItemIndex - 1];
292
-
293
- value[selectedItemIndex - 1] = movedItem;
294
- value[selectedItemIndex] = temp;
295
- } else {
296
- break;
297
- }
298
- }
299
-
300
- this.reorderDirection = 'up';
301
- this.$emit('update:modelValue', value);
302
- this.$emit('reorder', {
303
- originalEvent: event,
304
- value: value,
305
- direction: this.reorderDirection
306
- });
307
- }
308
- },
309
- moveTop(event) {
310
- if (this.d_selection) {
311
- let value = [...this.modelValue];
312
-
313
- for (let i = 0; i < this.d_selection.length; i++) {
314
- let selectedItem = this.d_selection[i];
315
- let selectedItemIndex = ObjectUtils.findIndexInList(selectedItem, value);
316
-
317
- if (selectedItemIndex !== 0) {
318
- let movedItem = value.splice(selectedItemIndex, 1)[0];
319
-
320
- value.unshift(movedItem);
321
- } else {
322
- break;
323
- }
324
- }
325
-
326
- this.reorderDirection = 'top';
327
- this.$emit('update:modelValue', value);
328
- this.$emit('reorder', {
329
- originalEvent: event,
330
- value: value,
331
- direction: this.reorderDirection
332
- });
333
- }
334
- },
335
- moveDown(event) {
336
- if (this.d_selection) {
337
- let value = [...this.modelValue];
338
-
339
- for (let i = this.d_selection.length - 1; i >= 0; i--) {
340
- let selectedItem = this.d_selection[i];
341
- let selectedItemIndex = ObjectUtils.findIndexInList(selectedItem, value);
342
-
343
- if (selectedItemIndex !== value.length - 1) {
344
- let movedItem = value[selectedItemIndex];
345
- let temp = value[selectedItemIndex + 1];
346
-
347
- value[selectedItemIndex + 1] = movedItem;
348
- value[selectedItemIndex] = temp;
349
- } else {
350
- break;
351
- }
352
- }
353
-
354
- this.reorderDirection = 'down';
355
- this.$emit('update:modelValue', value);
356
- this.$emit('reorder', {
357
- originalEvent: event,
358
- value: value,
359
- direction: this.reorderDirection
360
- });
361
- }
362
- },
363
- moveBottom(event) {
364
- if (this.d_selection) {
365
- let value = [...this.modelValue];
366
-
367
- for (let i = this.d_selection.length - 1; i >= 0; i--) {
368
- let selectedItem = this.d_selection[i];
369
- let selectedItemIndex = ObjectUtils.findIndexInList(selectedItem, value);
370
-
371
- if (selectedItemIndex !== value.length - 1) {
372
- let movedItem = value.splice(selectedItemIndex, 1)[0];
373
-
374
- value.push(movedItem);
375
- } else {
376
- break;
377
- }
378
- }
379
-
380
- this.reorderDirection = 'bottom';
381
- this.$emit('update:modelValue', value);
382
- this.$emit('reorder', {
383
- originalEvent: event,
384
- value: value,
385
- direction: this.reorderDirection
386
- });
387
- }
388
- },
389
- onItemClick(event, item, index) {
390
- this.itemTouched = false;
391
- const selectedIndex = ObjectUtils.findIndexInList(item, this.d_selection);
392
- const selected = selectedIndex != -1;
393
- const metaSelection = this.itemTouched ? false : this.metaKeySelection;
394
- const selectedId = DomHandler.find(this.list, '.p-orderlist-item')[index].getAttribute('id');
395
-
396
- this.focusedOptionIndex = selectedId;
397
-
398
- if (metaSelection) {
399
- const metaKey = event.metaKey || event.ctrlKey;
400
-
401
- if (selected && metaKey) {
402
- this.d_selection = this.d_selection.filter((val, index) => index !== selectedIndex);
403
- } else {
404
- this.d_selection = metaKey ? (this.d_selection ? [...this.d_selection] : []) : [];
405
- ObjectUtils.insertIntoOrderedArray(item, index, this.d_selection, this.modelValue);
406
- }
407
- } else {
408
- if (selected) {
409
- this.d_selection = this.d_selection.filter((val, index) => index !== selectedIndex);
410
- } else {
411
- this.d_selection = this.d_selection ? [...this.d_selection] : [];
412
- ObjectUtils.insertIntoOrderedArray(item, index, this.d_selection, this.modelValue);
413
- }
414
- }
415
-
416
- this.$emit('update:selection', this.d_selection);
417
- this.$emit('selection-change', {
418
- originalEvent: event,
419
- value: this.d_selection
420
- });
421
- },
422
- onItemTouchEnd() {
423
- this.itemTouched = true;
424
- },
425
- findNextItem(item) {
426
- let nextItem = item.nextElementSibling;
427
-
428
- if (nextItem) return !DomHandler.hasClass(nextItem, 'p-orderlist-item') ? this.findNextItem(nextItem) : nextItem;
429
- else return null;
430
- },
431
- findPrevItem(item) {
432
- let prevItem = item.previousElementSibling;
433
-
434
- if (prevItem) return !DomHandler.hasClass(prevItem, 'p-orderlist-item') ? this.findPrevItem(prevItem) : prevItem;
435
- else return null;
436
- },
437
- findFirstItem() {
438
- return DomHandler.findSingle(this.list, '.p-orderlist-item');
439
- },
440
- findLastItem() {
441
- const items = DomHandler.find(this.list, '.p-orderlist-item');
442
-
443
- return items[items.length - 1];
444
- },
445
- itemClass(item, id) {
446
- return ['p-orderlist-item', { 'p-highlight': this.isSelected(item), 'p-focus': id === this.focusedOptionId }];
447
- },
448
- updateListScroll() {
449
- const listItems = DomHandler.find(this.list, '.p-orderlist-item.p-highlight');
450
-
451
- if (listItems && listItems.length) {
452
- switch (this.reorderDirection) {
453
- case 'up':
454
- DomHandler.scrollInView(this.list, listItems[0]);
455
- break;
456
-
457
- case 'top':
458
- this.list.scrollTop = 0;
459
- break;
460
-
461
- case 'down':
462
- DomHandler.scrollInView(this.list, listItems[listItems.length - 1]);
463
- break;
464
-
465
- case 'bottom':
466
- this.list.scrollTop = this.list.scrollHeight;
467
- break;
468
- }
469
- }
470
- },
471
- createStyle() {
472
- if (!this.styleElement) {
473
- this.$el.setAttribute(this.attributeSelector, '');
474
- this.styleElement = document.createElement('style');
475
- this.styleElement.type = 'text/css';
476
- document.head.appendChild(this.styleElement);
477
-
478
- let innerHTML = `
479
- @media screen and (max-width: ${this.breakpoint}) {
480
- .p-orderlist[${this.attributeSelector}] {
481
- flex-direction: column;
63
+ responsive: {
64
+ type: Boolean,
65
+ "default": true
66
+ },
67
+ breakpoint: {
68
+ type: String,
69
+ "default": '960px'
70
+ },
71
+ stripedRows: {
72
+ type: Boolean,
73
+ "default": false
74
+ },
75
+ tabindex: {
76
+ type: Number,
77
+ "default": 0
78
+ },
79
+ listProps: {
80
+ type: null,
81
+ "default": null
82
+ },
83
+ moveUpButtonProps: {
84
+ type: null,
85
+ "default": null
86
+ },
87
+ moveTopButtonProps: {
88
+ type: null,
89
+ "default": null
90
+ },
91
+ moveDownButtonProps: {
92
+ type: null,
93
+ "default": null
94
+ },
95
+ moveBottomButtonProps: {
96
+ type: null,
97
+ "default": null
98
+ },
99
+ 'aria-labelledby': {
100
+ type: String,
101
+ "default": null
102
+ },
103
+ 'aria-label': {
104
+ type: String,
105
+ "default": null
482
106
  }
107
+ },
108
+ css: {
109
+ classes: classes,
110
+ loadStyle: loadStyle
111
+ },
112
+ provide: function provide() {
113
+ return {
114
+ $parentInstance: this
115
+ };
116
+ }
117
+ };
483
118
 
484
- .p-orderlist[${this.attributeSelector}] .p-orderlist-controls {
485
- padding: var(--content-padding);
486
- flex-direction: row;
119
+ function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
120
+ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
121
+ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
122
+ function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
123
+ function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
124
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
125
+ var script = {
126
+ name: 'OrderList',
127
+ "extends": script$1,
128
+ emits: ['update:modelValue', 'reorder', 'update:selection', 'selection-change', 'focus', 'blur'],
129
+ itemTouched: false,
130
+ reorderDirection: null,
131
+ styleElement: null,
132
+ list: null,
133
+ data: function data() {
134
+ return {
135
+ id: this.$attrs.id,
136
+ d_selection: this.selection,
137
+ focused: false,
138
+ focusedOptionIndex: -1
139
+ };
140
+ },
141
+ watch: {
142
+ '$attrs.id': function $attrsId(newValue) {
143
+ this.id = newValue || UniqueComponentId();
487
144
  }
488
-
489
- .p-orderlist[${this.attributeSelector}] .p-orderlist-controls .p-button {
490
- margin-right: var(--inline-spacing);
491
- margin-bottom: 0;
145
+ },
146
+ beforeUnmount: function beforeUnmount() {
147
+ this.destroyStyle();
148
+ },
149
+ updated: function updated() {
150
+ if (this.reorderDirection) {
151
+ this.updateListScroll();
152
+ this.reorderDirection = null;
492
153
  }
493
-
494
- .p-orderlist[${this.attributeSelector}] .p-orderlist-controls .p-button:last-child {
495
- margin-right: 0;
154
+ },
155
+ mounted: function mounted() {
156
+ this.id = this.id || UniqueComponentId();
157
+ if (this.responsive) {
158
+ this.createStyle();
496
159
  }
497
- }
498
- `;
499
-
500
- this.styleElement.innerHTML = innerHTML;
501
- }
502
- },
503
- destroyStyle() {
504
- if (this.styleElement) {
505
- document.head.removeChild(this.styleElement);
506
- this.styleElement = null;
507
- }
508
- },
509
- moveDisabled() {
510
- if (!this.d_selection || !this.d_selection.length) {
511
- return true;
512
- }
513
- },
514
- listRef(el) {
515
- this.list = el ? el.$el : undefined;
160
+ },
161
+ methods: {
162
+ getItemKey: function getItemKey(item, index) {
163
+ return this.dataKey ? ObjectUtils.resolveFieldData(item, this.dataKey) : index;
164
+ },
165
+ getPTOptions: function getPTOptions(item, key) {
166
+ return this.ptm(key, {
167
+ context: {
168
+ active: this.isSelected(item),
169
+ focused: this.id === this.focusedOptionId
516
170
  }
171
+ });
172
+ },
173
+ isSelected: function isSelected(item) {
174
+ return ObjectUtils.findIndexInList(item, this.d_selection) != -1;
517
175
  },
518
- computed: {
519
- containerClass() {
520
- return [
521
- 'p-orderlist p-component',
522
- {
523
- 'p-orderlist-striped': this.stripedRows
524
- }
525
- ];
526
- },
527
- attributeSelector() {
528
- return UniqueComponentId();
529
- },
530
- focusedOptionId() {
531
- return this.focusedOptionIndex !== -1 ? this.focusedOptionIndex : null;
532
- },
533
- moveUpAriaLabel() {
534
- return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.moveUp : undefined;
535
- },
536
- moveTopAriaLabel() {
537
- return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.moveTop : undefined;
538
- },
539
- moveDownAriaLabel() {
540
- return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.moveDown : undefined;
541
- },
542
- moveBottomAriaLabel() {
543
- return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.moveBottom : undefined;
176
+ onListFocus: function onListFocus(event) {
177
+ var selectedFirstItem = DomHandler.findSingle(this.list, '[data-p-highlight="true"]');
178
+ var findIndex = ObjectUtils.findIndexInList(selectedFirstItem, this.list.children);
179
+ this.focused = true;
180
+ var index = this.focusedOptionIndex !== -1 ? this.focusedOptionIndex : selectedFirstItem ? findIndex : -1;
181
+ this.changeFocusedOptionIndex(index);
182
+ this.$emit('focus', event);
183
+ },
184
+ onListBlur: function onListBlur(event) {
185
+ this.focused = false;
186
+ this.focusedOptionIndex = -1;
187
+ this.$emit('blur', event);
188
+ },
189
+ onListKeyDown: function onListKeyDown(event) {
190
+ switch (event.code) {
191
+ case 'ArrowDown':
192
+ this.onArrowDownKey(event);
193
+ break;
194
+ case 'ArrowUp':
195
+ this.onArrowUpKey(event);
196
+ break;
197
+ case 'Home':
198
+ this.onHomeKey(event);
199
+ break;
200
+ case 'End':
201
+ this.onEndKey(event);
202
+ break;
203
+ case 'Enter':
204
+ this.onEnterKey(event);
205
+ break;
206
+ case 'Space':
207
+ this.onSpaceKey(event);
208
+ break;
209
+ case 'KeyA':
210
+ if (event.ctrlKey) {
211
+ this.d_selection = _toConsumableArray(this.modelValue);
212
+ this.$emit('update:selection', this.d_selection);
213
+ }
214
+ }
215
+ },
216
+ onOptionMouseDown: function onOptionMouseDown(index) {
217
+ this.focused = true;
218
+ this.focusedOptionIndex = index;
219
+ },
220
+ onArrowDownKey: function onArrowDownKey(event) {
221
+ var optionIndex = this.findNextOptionIndex(this.focusedOptionIndex);
222
+ this.changeFocusedOptionIndex(optionIndex);
223
+ if (event.shiftKey) {
224
+ this.onEnterKey(event);
225
+ }
226
+ event.preventDefault();
227
+ },
228
+ onArrowUpKey: function onArrowUpKey(event) {
229
+ var optionIndex = this.findPrevOptionIndex(this.focusedOptionIndex);
230
+ this.changeFocusedOptionIndex(optionIndex);
231
+ if (event.shiftKey) {
232
+ this.onEnterKey(event);
233
+ }
234
+ event.preventDefault();
235
+ },
236
+ onHomeKey: function onHomeKey(event) {
237
+ if (event.ctrlKey && event.shiftKey) {
238
+ var items = DomHandler.find(this.list, '[data-pc-section="item"]');
239
+ var focusedItem = DomHandler.findSingle(this.list, "[data-pc-section=\"item\"][id=".concat(this.focusedOptionIndex, "]"));
240
+ var matchedOptionIndex = _toConsumableArray(items).findIndex(function (item) {
241
+ return item === focusedItem;
242
+ });
243
+ this.d_selection = _toConsumableArray(this.modelValue).slice(0, matchedOptionIndex + 1);
244
+ this.$emit('update:selection', this.d_selection);
245
+ } else {
246
+ this.changeFocusedOptionIndex(0);
247
+ }
248
+ event.preventDefault();
249
+ },
250
+ onEndKey: function onEndKey(event) {
251
+ if (event.ctrlKey && event.shiftKey) {
252
+ var items = DomHandler.find(this.list, '[data-pc-section="item"]');
253
+ var focusedItem = DomHandler.findSingle(this.list, "[data-pc-section=\"item\"][id=".concat(this.focusedOptionIndex, "]"));
254
+ var matchedOptionIndex = _toConsumableArray(items).findIndex(function (item) {
255
+ return item === focusedItem;
256
+ });
257
+ this.d_selection = _toConsumableArray(this.modelValue).slice(matchedOptionIndex, items.length);
258
+ this.$emit('update:selection', this.d_selection);
259
+ } else {
260
+ this.changeFocusedOptionIndex(DomHandler.find(this.list, '[data-pc-section="item"]').length - 1);
261
+ }
262
+ event.preventDefault();
263
+ },
264
+ onEnterKey: function onEnterKey(event) {
265
+ var items = DomHandler.find(this.list, '[data-pc-section="item"]');
266
+ var focusedItem = DomHandler.findSingle(this.list, "[data-pc-section=\"item\"][id=".concat(this.focusedOptionIndex, "]"));
267
+ var matchedOptionIndex = _toConsumableArray(items).findIndex(function (item) {
268
+ return item === focusedItem;
269
+ });
270
+ this.onItemClick(event, this.modelValue[matchedOptionIndex], matchedOptionIndex);
271
+ event.preventDefault();
272
+ },
273
+ onSpaceKey: function onSpaceKey(event) {
274
+ if (event.shiftKey) {
275
+ var items = DomHandler.find(this.list, '[data-pc-section="item"]');
276
+ var selectedItemIndex = ObjectUtils.findIndexInList(this.d_selection[0], _toConsumableArray(this.modelValue));
277
+ var focusedItem = DomHandler.findSingle(this.list, "[data-pc-section=\"item\"][id=".concat(this.focusedOptionIndex, "]"));
278
+ var matchedOptionIndex = _toConsumableArray(items).findIndex(function (item) {
279
+ return item === focusedItem;
280
+ });
281
+ this.d_selection = _toConsumableArray(this.modelValue).slice(Math.min(selectedItemIndex, matchedOptionIndex), Math.max(selectedItemIndex, matchedOptionIndex) + 1);
282
+ this.$emit('update:selection', this.d_selection);
283
+ } else {
284
+ this.onEnterKey(event);
285
+ }
286
+ },
287
+ findNextOptionIndex: function findNextOptionIndex(index) {
288
+ var items = DomHandler.find(this.list, '[data-pc-section="item"]');
289
+ var matchedOptionIndex = _toConsumableArray(items).findIndex(function (link) {
290
+ return link.id === index;
291
+ });
292
+ return matchedOptionIndex > -1 ? matchedOptionIndex + 1 : 0;
293
+ },
294
+ findPrevOptionIndex: function findPrevOptionIndex(index) {
295
+ var items = DomHandler.find(this.list, '[data-pc-section="item"]');
296
+ var matchedOptionIndex = _toConsumableArray(items).findIndex(function (link) {
297
+ return link.id === index;
298
+ });
299
+ return matchedOptionIndex > -1 ? matchedOptionIndex - 1 : 0;
300
+ },
301
+ changeFocusedOptionIndex: function changeFocusedOptionIndex(index) {
302
+ var items = DomHandler.find(this.list, '[data-pc-section="item"]');
303
+ var order = index >= items.length ? items.length - 1 : index < 0 ? 0 : index;
304
+ this.focusedOptionIndex = items[order] ? items[order].getAttribute('id') : -1;
305
+ this.scrollInView(this.focusedOptionIndex);
306
+ },
307
+ scrollInView: function scrollInView(id) {
308
+ var element = DomHandler.findSingle(this.list, "[data-pc-section=\"item\"][id=\"".concat(id, "\"]"));
309
+ if (element) {
310
+ element.scrollIntoView && element.scrollIntoView({
311
+ block: 'nearest',
312
+ inline: 'start'
313
+ });
314
+ }
315
+ },
316
+ moveUp: function moveUp(event) {
317
+ if (this.d_selection) {
318
+ var value = _toConsumableArray(this.modelValue);
319
+ for (var i = 0; i < this.d_selection.length; i++) {
320
+ var selectedItem = this.d_selection[i];
321
+ var selectedItemIndex = ObjectUtils.findIndexInList(selectedItem, value);
322
+ if (selectedItemIndex !== 0) {
323
+ var movedItem = value[selectedItemIndex];
324
+ var temp = value[selectedItemIndex - 1];
325
+ value[selectedItemIndex - 1] = movedItem;
326
+ value[selectedItemIndex] = temp;
327
+ } else {
328
+ break;
329
+ }
544
330
  }
331
+ this.reorderDirection = 'up';
332
+ this.$emit('update:modelValue', value);
333
+ this.$emit('reorder', {
334
+ originalEvent: event,
335
+ value: value,
336
+ direction: this.reorderDirection
337
+ });
338
+ }
545
339
  },
546
- components: {
547
- OLButton: Button,
548
- AngleUpIcon: AngleUpIcon,
549
- AngleDownIcon: AngleDownIcon,
550
- AngleDoubleUpIcon: AngleDoubleUpIcon,
551
- AngleDoubleDownIcon: AngleDoubleDownIcon
340
+ moveTop: function moveTop(event) {
341
+ if (this.d_selection) {
342
+ var value = _toConsumableArray(this.modelValue);
343
+ for (var i = 0; i < this.d_selection.length; i++) {
344
+ var selectedItem = this.d_selection[i];
345
+ var selectedItemIndex = ObjectUtils.findIndexInList(selectedItem, value);
346
+ if (selectedItemIndex !== 0) {
347
+ var movedItem = value.splice(selectedItemIndex, 1)[0];
348
+ value.unshift(movedItem);
349
+ } else {
350
+ break;
351
+ }
352
+ }
353
+ this.reorderDirection = 'top';
354
+ this.$emit('update:modelValue', value);
355
+ this.$emit('reorder', {
356
+ originalEvent: event,
357
+ value: value,
358
+ direction: this.reorderDirection
359
+ });
360
+ }
552
361
  },
553
- directives: {
554
- ripple: Ripple
362
+ moveDown: function moveDown(event) {
363
+ if (this.d_selection) {
364
+ var value = _toConsumableArray(this.modelValue);
365
+ for (var i = this.d_selection.length - 1; i >= 0; i--) {
366
+ var selectedItem = this.d_selection[i];
367
+ var selectedItemIndex = ObjectUtils.findIndexInList(selectedItem, value);
368
+ if (selectedItemIndex !== value.length - 1) {
369
+ var movedItem = value[selectedItemIndex];
370
+ var temp = value[selectedItemIndex + 1];
371
+ value[selectedItemIndex + 1] = movedItem;
372
+ value[selectedItemIndex] = temp;
373
+ } else {
374
+ break;
375
+ }
376
+ }
377
+ this.reorderDirection = 'down';
378
+ this.$emit('update:modelValue', value);
379
+ this.$emit('reorder', {
380
+ originalEvent: event,
381
+ value: value,
382
+ direction: this.reorderDirection
383
+ });
384
+ }
385
+ },
386
+ moveBottom: function moveBottom(event) {
387
+ if (this.d_selection) {
388
+ var value = _toConsumableArray(this.modelValue);
389
+ for (var i = this.d_selection.length - 1; i >= 0; i--) {
390
+ var selectedItem = this.d_selection[i];
391
+ var selectedItemIndex = ObjectUtils.findIndexInList(selectedItem, value);
392
+ if (selectedItemIndex !== value.length - 1) {
393
+ var movedItem = value.splice(selectedItemIndex, 1)[0];
394
+ value.push(movedItem);
395
+ } else {
396
+ break;
397
+ }
398
+ }
399
+ this.reorderDirection = 'bottom';
400
+ this.$emit('update:modelValue', value);
401
+ this.$emit('reorder', {
402
+ originalEvent: event,
403
+ value: value,
404
+ direction: this.reorderDirection
405
+ });
406
+ }
407
+ },
408
+ onItemClick: function onItemClick(event, item, index) {
409
+ this.itemTouched = false;
410
+ var selectedIndex = ObjectUtils.findIndexInList(item, this.d_selection);
411
+ var selected = selectedIndex != -1;
412
+ var metaSelection = this.itemTouched ? false : this.metaKeySelection;
413
+ var selectedId = DomHandler.find(this.list, '[data-pc-section="item"]')[index].getAttribute('id');
414
+ this.focusedOptionIndex = selectedId;
415
+ if (metaSelection) {
416
+ var metaKey = event.metaKey || event.ctrlKey;
417
+ if (selected && metaKey) {
418
+ this.d_selection = this.d_selection.filter(function (val, index) {
419
+ return index !== selectedIndex;
420
+ });
421
+ } else {
422
+ this.d_selection = metaKey ? this.d_selection ? _toConsumableArray(this.d_selection) : [] : [];
423
+ ObjectUtils.insertIntoOrderedArray(item, index, this.d_selection, this.modelValue);
424
+ }
425
+ } else {
426
+ if (selected) {
427
+ this.d_selection = this.d_selection.filter(function (val, index) {
428
+ return index !== selectedIndex;
429
+ });
430
+ } else {
431
+ this.d_selection = this.d_selection ? _toConsumableArray(this.d_selection) : [];
432
+ ObjectUtils.insertIntoOrderedArray(item, index, this.d_selection, this.modelValue);
433
+ }
434
+ }
435
+ this.$emit('update:selection', this.d_selection);
436
+ this.$emit('selection-change', {
437
+ originalEvent: event,
438
+ value: this.d_selection
439
+ });
440
+ },
441
+ onItemTouchEnd: function onItemTouchEnd() {
442
+ this.itemTouched = true;
443
+ },
444
+ findNextItem: function findNextItem(item) {
445
+ var nextItem = item.nextElementSibling;
446
+ if (nextItem) return !(DomHandler.getAttribute(nextItem, 'data-pc-section') === 'item') ? this.findNextItem(nextItem) : nextItem;else return null;
447
+ },
448
+ findPrevItem: function findPrevItem(item) {
449
+ var prevItem = item.previousElementSibling;
450
+ if (prevItem) return !(DomHandler.getAttribute(nextItem, 'data-pc-section') === 'item') ? this.findPrevItem(prevItem) : prevItem;else return null;
451
+ },
452
+ updateListScroll: function updateListScroll() {
453
+ var listItems = DomHandler.find(this.list, '[data-pc-section="item"][data-p-highlight="true"]');
454
+ if (listItems && listItems.length) {
455
+ switch (this.reorderDirection) {
456
+ case 'up':
457
+ DomHandler.scrollInView(this.list, listItems[0]);
458
+ break;
459
+ case 'top':
460
+ this.list.scrollTop = 0;
461
+ break;
462
+ case 'down':
463
+ DomHandler.scrollInView(this.list, listItems[listItems.length - 1]);
464
+ break;
465
+ case 'bottom':
466
+ this.list.scrollTop = this.list.scrollHeight;
467
+ break;
468
+ }
469
+ }
470
+ },
471
+ createStyle: function createStyle() {
472
+ if (!this.styleElement && !this.isUnstyled) {
473
+ this.$el.setAttribute(this.attributeSelector, '');
474
+ this.styleElement = document.createElement('style');
475
+ this.styleElement.type = 'text/css';
476
+ document.head.appendChild(this.styleElement);
477
+ var innerHTML = "\n@media screen and (max-width: ".concat(this.breakpoint, ") {\n .p-orderlist[").concat(this.attributeSelector, "] {\n flex-direction: column;\n }\n\n .p-orderlist[").concat(this.attributeSelector, "] .p-orderlist-controls {\n padding: var(--content-padding);\n flex-direction: row;\n }\n\n .p-orderlist[").concat(this.attributeSelector, "] .p-orderlist-controls .p-button {\n margin-right: var(--inline-spacing);\n margin-bottom: 0;\n }\n\n .p-orderlist[").concat(this.attributeSelector, "] .p-orderlist-controls .p-button:last-child {\n margin-right: 0;\n }\n}\n");
478
+ this.styleElement.innerHTML = innerHTML;
479
+ }
480
+ },
481
+ destroyStyle: function destroyStyle() {
482
+ if (this.styleElement) {
483
+ document.head.removeChild(this.styleElement);
484
+ this.styleElement = null;
485
+ }
486
+ },
487
+ moveDisabled: function moveDisabled() {
488
+ if (!this.d_selection || !this.d_selection.length) {
489
+ return true;
490
+ }
491
+ },
492
+ listRef: function listRef(el) {
493
+ this.list = el ? el.$el : undefined;
555
494
  }
556
- };
557
-
558
- const _hoisted_1 = ["id", "onClick", "aria-selected", "onMousedown"];
559
-
560
- function render(_ctx, _cache, $props, $setup, $data, $options) {
561
- const _component_AngleUpIcon = resolveComponent("AngleUpIcon");
562
- const _component_OLButton = resolveComponent("OLButton");
563
- const _component_AngleDoubleUpIcon = resolveComponent("AngleDoubleUpIcon");
564
- const _component_AngleDownIcon = resolveComponent("AngleDownIcon");
565
- const _component_AngleDoubleDownIcon = resolveComponent("AngleDoubleDownIcon");
566
- const _directive_ripple = resolveDirective("ripple");
567
-
568
- return (openBlock(), createElementBlock("div", mergeProps({ class: $options.containerClass }, _ctx.ptm('root')), [
569
- createElementVNode("div", mergeProps({ class: "p-orderlist-controls" }, _ctx.ptm('controls')), [
570
- renderSlot(_ctx.$slots, "controlsstart"),
571
- createVNode(_component_OLButton, mergeProps({
572
- type: "button",
573
- onClick: $options.moveUp,
574
- "aria-label": $options.moveUpAriaLabel,
575
- disabled: $options.moveDisabled()
576
- }, $props.moveUpButtonProps, {
577
- pt: _ctx.ptm('moveUpButton')
578
- }), {
579
- icon: withCtx(() => [
580
- renderSlot(_ctx.$slots, "moveupicon", {}, () => [
581
- createVNode(_component_AngleUpIcon, normalizeProps(guardReactiveProps(_ctx.ptm('moveUpButton')['icon'])), null, 16)
582
- ])
583
- ]),
584
- _: 3
585
- }, 16, ["onClick", "aria-label", "disabled", "pt"]),
586
- createVNode(_component_OLButton, mergeProps({
587
- type: "button",
588
- onClick: $options.moveTop,
589
- "aria-label": $options.moveTopAriaLabel,
590
- disabled: $options.moveDisabled()
591
- }, $props.moveTopButtonProps, {
592
- pt: _ctx.ptm('moveTopButton')
593
- }), {
594
- icon: withCtx(() => [
595
- renderSlot(_ctx.$slots, "movetopicon", {}, () => [
596
- createVNode(_component_AngleDoubleUpIcon, normalizeProps(guardReactiveProps(_ctx.ptm('moveTopButton')['icon'])), null, 16)
597
- ])
598
- ]),
599
- _: 3
600
- }, 16, ["onClick", "aria-label", "disabled", "pt"]),
601
- createVNode(_component_OLButton, mergeProps({
602
- type: "button",
603
- onClick: $options.moveDown,
604
- "aria-label": $options.moveDownAriaLabel,
605
- disabled: $options.moveDisabled()
606
- }, $props.moveDownButtonProps, {
607
- pt: _ctx.ptm('moveDownButton')
608
- }), {
609
- icon: withCtx(() => [
610
- renderSlot(_ctx.$slots, "movedownicon", {}, () => [
611
- createVNode(_component_AngleDownIcon, normalizeProps(guardReactiveProps(_ctx.ptm('moveDownButton')['icon'])), null, 16)
612
- ])
613
- ]),
614
- _: 3
615
- }, 16, ["onClick", "aria-label", "disabled", "pt"]),
616
- createVNode(_component_OLButton, mergeProps({
617
- type: "button",
618
- onClick: $options.moveBottom,
619
- "aria-label": $options.moveBottomAriaLabel,
620
- disabled: $options.moveDisabled()
621
- }, $props.moveBottomButtonProps, {
622
- pt: _ctx.ptm('moveBottomButton')
623
- }), {
624
- icon: withCtx(() => [
625
- renderSlot(_ctx.$slots, "movebottomicon", {}, () => [
626
- createVNode(_component_AngleDoubleDownIcon, normalizeProps(guardReactiveProps(_ctx.ptm('moveBottomButton')['icon'])), null, 16)
627
- ])
628
- ]),
629
- _: 3
630
- }, 16, ["onClick", "aria-label", "disabled", "pt"]),
631
- renderSlot(_ctx.$slots, "controlsend")
632
- ], 16),
633
- createElementVNode("div", mergeProps({ class: "p-orderlist-list-container" }, _ctx.ptm('container')), [
634
- (_ctx.$slots.header)
635
- ? (openBlock(), createElementBlock("div", mergeProps({
636
- key: 0,
637
- class: "p-orderlist-header"
638
- }, _ctx.ptm('header')), [
639
- renderSlot(_ctx.$slots, "header")
640
- ], 16))
641
- : createCommentVNode("", true),
642
- createVNode(TransitionGroup, mergeProps({
643
- ref: $options.listRef,
644
- id: $data.id + '_list',
645
- name: "p-orderlist-flip",
646
- tag: "ul",
647
- class: "p-orderlist-list",
648
- style: $props.listStyle,
649
- role: "listbox",
650
- "aria-multiselectable": "true",
651
- tabindex: $props.tabindex,
652
- "aria-activedescendant": $data.focused ? $options.focusedOptionId : undefined,
653
- "aria-label": _ctx.ariaLabel,
654
- "aria-labelledby": _ctx.ariaLabelledby,
655
- onFocus: $options.onListFocus,
656
- onBlur: $options.onListBlur,
657
- onKeydown: $options.onListKeyDown
658
- }, { ...$props.listProps, ..._ctx.ptm('list') }), {
659
- default: withCtx(() => [
660
- (openBlock(true), createElementBlock(Fragment, null, renderList($props.modelValue, (item, i) => {
661
- return withDirectives((openBlock(), createElementBlock("li", mergeProps({
662
- key: $options.getItemKey(item, i),
663
- id: $data.id + '_' + i,
664
- role: "option",
665
- class: $options.itemClass(item, `${$data.id}_${i}`),
666
- onClick: $event => ($options.onItemClick($event, item, i)),
667
- onTouchend: _cache[0] || (_cache[0] = (...args) => ($options.onItemTouchEnd && $options.onItemTouchEnd(...args))),
668
- "aria-selected": $options.isSelected(item),
669
- onMousedown: $event => ($options.onOptionMouseDown(i))
670
- }, $options.getPTOptions(item, 'item')), [
671
- renderSlot(_ctx.$slots, "item", {
672
- item: item,
673
- index: i
674
- })
675
- ], 16, _hoisted_1)), [
676
- [_directive_ripple]
677
- ])
678
- }), 128))
679
- ]),
680
- _: 3
681
- }, 16, ["id", "style", "tabindex", "aria-activedescendant", "aria-label", "aria-labelledby", "onFocus", "onBlur", "onKeydown"])
682
- ], 16)
683
- ], 16))
684
- }
685
-
686
- function styleInject(css, ref) {
687
- if ( ref === void 0 ) ref = {};
688
- var insertAt = ref.insertAt;
689
-
690
- if (!css || typeof document === 'undefined') { return; }
691
-
692
- var head = document.head || document.getElementsByTagName('head')[0];
693
- var style = document.createElement('style');
694
- style.type = 'text/css';
695
-
696
- if (insertAt === 'top') {
697
- if (head.firstChild) {
698
- head.insertBefore(style, head.firstChild);
699
- } else {
700
- head.appendChild(style);
495
+ },
496
+ computed: {
497
+ attributeSelector: function attributeSelector() {
498
+ return UniqueComponentId();
499
+ },
500
+ focusedOptionId: function focusedOptionId() {
501
+ return this.focusedOptionIndex !== -1 ? this.focusedOptionIndex : null;
502
+ },
503
+ moveUpAriaLabel: function moveUpAriaLabel() {
504
+ return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.moveUp : undefined;
505
+ },
506
+ moveTopAriaLabel: function moveTopAriaLabel() {
507
+ return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.moveTop : undefined;
508
+ },
509
+ moveDownAriaLabel: function moveDownAriaLabel() {
510
+ return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.moveDown : undefined;
511
+ },
512
+ moveBottomAriaLabel: function moveBottomAriaLabel() {
513
+ return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.moveBottom : undefined;
701
514
  }
702
- } else {
703
- head.appendChild(style);
515
+ },
516
+ components: {
517
+ OLButton: Button,
518
+ AngleUpIcon: AngleUpIcon,
519
+ AngleDownIcon: AngleDownIcon,
520
+ AngleDoubleUpIcon: AngleDoubleUpIcon,
521
+ AngleDoubleDownIcon: AngleDoubleDownIcon
522
+ },
523
+ directives: {
524
+ ripple: Ripple
704
525
  }
526
+ };
705
527
 
706
- if (style.styleSheet) {
707
- style.styleSheet.cssText = css;
708
- } else {
709
- style.appendChild(document.createTextNode(css));
710
- }
528
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
529
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
530
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
531
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
532
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
533
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
534
+ var _hoisted_1 = ["id", "onClick", "aria-selected", "onMousedown", "data-p-highlight", "data-p-focused"];
535
+ function render(_ctx, _cache, $props, $setup, $data, $options) {
536
+ var _component_AngleUpIcon = resolveComponent("AngleUpIcon");
537
+ var _component_OLButton = resolveComponent("OLButton");
538
+ var _component_AngleDoubleUpIcon = resolveComponent("AngleDoubleUpIcon");
539
+ var _component_AngleDownIcon = resolveComponent("AngleDownIcon");
540
+ var _component_AngleDoubleDownIcon = resolveComponent("AngleDoubleDownIcon");
541
+ var _directive_ripple = resolveDirective("ripple");
542
+ return openBlock(), createElementBlock("div", mergeProps({
543
+ "class": _ctx.cx('root')
544
+ }, _ctx.ptm('root')), [createElementVNode("div", mergeProps({
545
+ "class": _ctx.cx('controls')
546
+ }, _ctx.ptm('controls')), [renderSlot(_ctx.$slots, "controlsstart"), createVNode(_component_OLButton, mergeProps({
547
+ type: "button",
548
+ onClick: $options.moveUp,
549
+ "aria-label": $options.moveUpAriaLabel,
550
+ disabled: $options.moveDisabled()
551
+ }, _objectSpread(_objectSpread({}, _ctx.moveUpButtonProps), _ctx.ptm('moveUpButton')), {
552
+ unstyled: _ctx.unstyled
553
+ }), {
554
+ icon: withCtx(function () {
555
+ return [renderSlot(_ctx.$slots, "moveupicon", {}, function () {
556
+ return [createVNode(_component_AngleUpIcon, normalizeProps(guardReactiveProps(_ctx.ptm('moveUpButton')['icon'])), null, 16)];
557
+ })];
558
+ }),
559
+ _: 3
560
+ }, 16, ["onClick", "aria-label", "disabled", "unstyled"]), createVNode(_component_OLButton, mergeProps({
561
+ type: "button",
562
+ onClick: $options.moveTop,
563
+ "aria-label": $options.moveTopAriaLabel,
564
+ disabled: $options.moveDisabled()
565
+ }, _objectSpread(_objectSpread({}, _ctx.moveTopButtonProps), _ctx.ptm('moveTopButton')), {
566
+ unstyled: _ctx.unstyled
567
+ }), {
568
+ icon: withCtx(function () {
569
+ return [renderSlot(_ctx.$slots, "movetopicon", {}, function () {
570
+ return [createVNode(_component_AngleDoubleUpIcon, normalizeProps(guardReactiveProps(_ctx.ptm('moveTopButton')['icon'])), null, 16)];
571
+ })];
572
+ }),
573
+ _: 3
574
+ }, 16, ["onClick", "aria-label", "disabled", "unstyled"]), createVNode(_component_OLButton, mergeProps({
575
+ type: "button",
576
+ onClick: $options.moveDown,
577
+ "aria-label": $options.moveDownAriaLabel,
578
+ disabled: $options.moveDisabled()
579
+ }, _objectSpread(_objectSpread({}, _ctx.moveDownButtonProps), _ctx.ptm('moveDownButton')), {
580
+ unstyled: _ctx.unstyled
581
+ }), {
582
+ icon: withCtx(function () {
583
+ return [renderSlot(_ctx.$slots, "movedownicon", {}, function () {
584
+ return [createVNode(_component_AngleDownIcon, normalizeProps(guardReactiveProps(_ctx.ptm('moveDownButton')['icon'])), null, 16)];
585
+ })];
586
+ }),
587
+ _: 3
588
+ }, 16, ["onClick", "aria-label", "disabled", "unstyled"]), createVNode(_component_OLButton, mergeProps({
589
+ type: "button",
590
+ onClick: $options.moveBottom,
591
+ "aria-label": $options.moveBottomAriaLabel,
592
+ disabled: $options.moveDisabled()
593
+ }, _objectSpread(_objectSpread({}, _ctx.moveBottomButtonProps), _ctx.ptm('moveBottomButton')), {
594
+ unstyled: _ctx.unstyled
595
+ }), {
596
+ icon: withCtx(function () {
597
+ return [renderSlot(_ctx.$slots, "movebottomicon", {}, function () {
598
+ return [createVNode(_component_AngleDoubleDownIcon, normalizeProps(guardReactiveProps(_ctx.ptm('moveBottomButton')['icon'])), null, 16)];
599
+ })];
600
+ }),
601
+ _: 3
602
+ }, 16, ["onClick", "aria-label", "disabled", "unstyled"]), renderSlot(_ctx.$slots, "controlsend")], 16), createElementVNode("div", mergeProps({
603
+ "class": _ctx.cx('container')
604
+ }, _ctx.ptm('container')), [_ctx.$slots.header ? (openBlock(), createElementBlock("div", mergeProps({
605
+ key: 0,
606
+ "class": _ctx.cx('header')
607
+ }, _ctx.ptm('header')), [renderSlot(_ctx.$slots, "header")], 16)) : createCommentVNode("", true), createVNode(TransitionGroup, mergeProps({
608
+ ref: $options.listRef,
609
+ id: $data.id + '_list',
610
+ name: "p-orderlist-flip",
611
+ tag: "ul",
612
+ "class": _ctx.cx('list'),
613
+ style: _ctx.listStyle,
614
+ role: "listbox",
615
+ "aria-multiselectable": "true",
616
+ tabindex: _ctx.tabindex,
617
+ "aria-activedescendant": $data.focused ? $options.focusedOptionId : undefined,
618
+ "aria-label": _ctx.ariaLabel,
619
+ "aria-labelledby": _ctx.ariaLabelledby,
620
+ onFocus: $options.onListFocus,
621
+ onBlur: $options.onListBlur,
622
+ onKeydown: $options.onListKeyDown
623
+ }, _objectSpread(_objectSpread({}, _ctx.listProps), _ctx.ptm('list'))), {
624
+ "default": withCtx(function () {
625
+ return [(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.modelValue, function (item, i) {
626
+ return withDirectives((openBlock(), createElementBlock("li", mergeProps({
627
+ key: $options.getItemKey(item, i),
628
+ id: $data.id + '_' + i,
629
+ role: "option",
630
+ "class": _ctx.cx('item', {
631
+ item: item,
632
+ id: "".concat($data.id, "_").concat(i)
633
+ }),
634
+ onClick: function onClick($event) {
635
+ return $options.onItemClick($event, item, i);
636
+ },
637
+ onTouchend: _cache[0] || (_cache[0] = function () {
638
+ return $options.onItemTouchEnd && $options.onItemTouchEnd.apply($options, arguments);
639
+ }),
640
+ "aria-selected": $options.isSelected(item),
641
+ onMousedown: function onMousedown($event) {
642
+ return $options.onOptionMouseDown(i);
643
+ }
644
+ }, $options.getPTOptions(item, 'item'), {
645
+ "data-p-highlight": $options.isSelected(item),
646
+ "data-p-focused": "".concat($data.id, "_").concat(i) === $options.focusedOptionId
647
+ }), [renderSlot(_ctx.$slots, "item", {
648
+ item: item,
649
+ index: i
650
+ })], 16, _hoisted_1)), [[_directive_ripple]]);
651
+ }), 128))];
652
+ }),
653
+ _: 3
654
+ }, 16, ["id", "class", "style", "tabindex", "aria-activedescendant", "aria-label", "aria-labelledby", "onFocus", "onBlur", "onKeydown"])], 16)], 16);
711
655
  }
712
656
 
713
- var css_248z = "\n.p-orderlist {\n display: flex;\n}\n.p-orderlist-controls {\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n.p-orderlist-list-container {\n flex: 1 1 auto;\n}\n.p-orderlist-list {\n list-style-type: none;\n margin: 0;\n padding: 0;\n overflow: auto;\n min-height: 12rem;\n max-height: 24rem;\n}\n.p-orderlist-item {\n cursor: pointer;\n overflow: hidden;\n position: relative;\n}\n.p-orderlist.p-state-disabled .p-orderlist-item,\n.p-orderlist.p-state-disabled .p-button {\n cursor: default;\n}\n.p-orderlist.p-state-disabled .p-orderlist-list {\n overflow: hidden;\n}\n";
714
- styleInject(css_248z);
715
-
716
657
  script.render = render;
717
658
 
718
659
  export { script as default };