primevue 3.28.0 → 3.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/autocomplete/AutoComplete.d.ts +153 -1
- package/autocomplete/AutoComplete.vue +46 -17
- package/autocomplete/autocomplete.cjs.js +80 -74
- package/autocomplete/autocomplete.cjs.min.js +1 -1
- package/autocomplete/autocomplete.esm.js +80 -75
- package/autocomplete/autocomplete.esm.min.js +1 -1
- package/autocomplete/autocomplete.js +81 -76
- package/autocomplete/autocomplete.min.js +1 -1
- package/basecomponent/BaseComponent.vue +19 -5
- package/basecomponent/basecomponent.cjs.js +19 -5
- package/basecomponent/basecomponent.cjs.min.js +1 -1
- package/basecomponent/basecomponent.esm.js +19 -5
- package/basecomponent/basecomponent.esm.min.js +1 -1
- package/basecomponent/basecomponent.js +20 -7
- package/basecomponent/basecomponent.min.js +1 -1
- package/calendar/Calendar.d.ts +269 -0
- package/calendar/Calendar.vue +75 -59
- package/calendar/calendar.cjs.js +223 -259
- package/calendar/calendar.cjs.min.js +1 -1
- package/calendar/calendar.esm.js +223 -260
- package/calendar/calendar.esm.min.js +1 -1
- package/calendar/calendar.js +224 -261
- package/calendar/calendar.min.js +1 -1
- package/carousel/Carousel.d.ts +154 -0
- package/carousel/Carousel.vue +27 -14
- package/carousel/carousel.cjs.js +64 -65
- package/carousel/carousel.cjs.min.js +1 -1
- package/carousel/carousel.esm.js +64 -66
- package/carousel/carousel.esm.min.js +1 -1
- package/carousel/carousel.js +65 -67
- package/carousel/carousel.min.js +1 -1
- package/cascadeselect/CascadeSelect.d.ts +133 -0
- package/cascadeselect/CascadeSelect.vue +15 -12
- package/cascadeselect/CascadeSelectSub.vue +7 -3
- package/cascadeselect/cascadeselect.cjs.js +63 -66
- package/cascadeselect/cascadeselect.cjs.min.js +1 -1
- package/cascadeselect/cascadeselect.esm.js +63 -67
- package/cascadeselect/cascadeselect.esm.min.js +1 -1
- package/cascadeselect/cascadeselect.js +64 -68
- package/cascadeselect/cascadeselect.min.js +1 -1
- package/checkbox/Checkbox.d.ts +60 -0
- package/checkbox/Checkbox.vue +7 -5
- package/checkbox/checkbox.cjs.js +17 -15
- package/checkbox/checkbox.cjs.min.js +1 -1
- package/checkbox/checkbox.esm.js +17 -16
- package/checkbox/checkbox.esm.min.js +1 -1
- package/checkbox/checkbox.js +18 -17
- package/checkbox/checkbox.min.js +1 -1
- package/chips/Chips.d.ts +80 -0
- package/chips/Chips.vue +9 -5
- package/chips/chips.cjs.js +23 -24
- package/chips/chips.cjs.min.js +1 -1
- package/chips/chips.esm.js +23 -25
- package/chips/chips.esm.min.js +1 -1
- package/chips/chips.js +24 -26
- package/chips/chips.min.js +1 -1
- package/colorpicker/ColorPicker.d.ts +76 -0
- package/colorpicker/ColorPicker.vue +11 -9
- package/colorpicker/colorpicker.cjs.js +28 -27
- package/colorpicker/colorpicker.cjs.min.js +1 -1
- package/colorpicker/colorpicker.esm.js +28 -28
- package/colorpicker/colorpicker.esm.min.js +1 -1
- package/colorpicker/colorpicker.js +29 -29
- package/colorpicker/colorpicker.min.js +1 -1
- package/column/Column.d.ts +303 -2
- package/column/Column.vue +3 -0
- package/column/column.cjs.js +7 -0
- package/column/column.cjs.min.js +1 -1
- package/column/column.esm.js +3 -0
- package/column/column.esm.min.js +1 -1
- package/column/column.js +7 -2
- package/column/column.min.js +1 -1
- package/columngroup/ColumnGroup.d.ts +34 -0
- package/columngroup/ColumnGroup.vue +3 -0
- package/columngroup/columngroup.cjs.js +7 -0
- package/columngroup/columngroup.cjs.min.js +1 -1
- package/columngroup/columngroup.esm.js +3 -0
- package/columngroup/columngroup.esm.min.js +1 -1
- package/columngroup/columngroup.js +7 -2
- package/columngroup/columngroup.min.js +1 -1
- package/config/PrimeVue.d.ts +163 -2
- package/confirmdialog/ConfirmDialog.d.ts +14 -7
- package/contextmenu/ContextMenu.d.ts +1 -1
- package/core/core.js +448 -331
- package/core/core.min.js +9 -9
- package/datatable/BodyCell.vue +29 -13
- package/datatable/ColumnFilter.vue +49 -20
- package/datatable/DataTable.d.ts +188 -1
- package/datatable/DataTable.vue +25 -14
- package/datatable/FooterCell.vue +15 -1
- package/datatable/HeaderCell.vue +31 -6
- package/datatable/HeaderCheckbox.vue +35 -5
- package/datatable/RowCheckbox.vue +36 -5
- package/datatable/RowRadioButton.vue +26 -6
- package/datatable/TableBody.vue +41 -11
- package/datatable/TableFooter.vue +31 -5
- package/datatable/TableHeader.vue +53 -6
- package/datatable/datatable.cjs.js +559 -376
- package/datatable/datatable.cjs.min.js +1 -1
- package/datatable/datatable.esm.js +559 -377
- package/datatable/datatable.esm.min.js +1 -1
- package/datatable/datatable.js +560 -378
- package/datatable/datatable.min.js +1 -1
- package/dataview/DataView.d.ts +72 -0
- package/dataview/DataView.vue +13 -8
- package/dataview/dataview.cjs.js +33 -37
- package/dataview/dataview.cjs.min.js +1 -1
- package/dataview/dataview.esm.js +33 -38
- package/dataview/dataview.esm.min.js +1 -1
- package/dataview/dataview.js +33 -38
- package/dataview/dataview.min.js +1 -1
- package/dataviewlayoutoptions/DataViewLayoutOptions.d.ts +65 -0
- package/dataviewlayoutoptions/DataViewLayoutOptions.vue +7 -5
- package/dataviewlayoutoptions/dataviewlayoutoptions.cjs.js +19 -17
- package/dataviewlayoutoptions/dataviewlayoutoptions.cjs.min.js +1 -1
- package/dataviewlayoutoptions/dataviewlayoutoptions.esm.js +19 -18
- package/dataviewlayoutoptions/dataviewlayoutoptions.esm.min.js +1 -1
- package/dataviewlayoutoptions/dataviewlayoutoptions.js +20 -19
- package/dataviewlayoutoptions/dataviewlayoutoptions.min.js +1 -1
- package/dialog/Dialog.d.ts +6 -4
- package/dialog/Dialog.vue +2 -3
- package/dialog/dialog.cjs.js +4 -5
- package/dialog/dialog.cjs.min.js +1 -1
- package/dialog/dialog.esm.js +4 -5
- package/dialog/dialog.esm.min.js +1 -1
- package/dialog/dialog.js +4 -5
- package/dialog/dialog.min.js +1 -1
- package/dropdown/Dropdown.d.ts +162 -1
- package/dropdown/Dropdown.vue +44 -25
- package/dropdown/dropdown.cjs.js +97 -93
- package/dropdown/dropdown.cjs.min.js +1 -1
- package/dropdown/dropdown.esm.js +97 -94
- package/dropdown/dropdown.esm.min.js +1 -1
- package/dropdown/dropdown.js +98 -95
- package/dropdown/dropdown.min.js +1 -1
- package/editor/Editor.d.ts +67 -0
- package/editor/Editor.vue +35 -33
- package/editor/editor.cjs.js +88 -73
- package/editor/editor.cjs.min.js +1 -1
- package/editor/editor.esm.js +85 -74
- package/editor/editor.esm.min.js +1 -1
- package/editor/editor.js +89 -75
- package/editor/editor.min.js +1 -1
- package/fileupload/FileUpload.d.ts +23 -23
- package/fileupload/FileUpload.vue +3 -3
- package/fileupload/fileupload.cjs.js +4 -4
- package/fileupload/fileupload.cjs.min.js +1 -1
- package/fileupload/fileupload.esm.js +4 -4
- package/fileupload/fileupload.esm.min.js +1 -1
- package/fileupload/fileupload.js +4 -4
- package/fileupload/fileupload.min.js +1 -1
- package/galleria/Galleria.d.ts +196 -0
- package/galleria/Galleria.vue +5 -3
- package/galleria/GalleriaContent.vue +10 -6
- package/galleria/GalleriaItem.vue +12 -9
- package/galleria/GalleriaThumbnails.vue +46 -9
- package/galleria/galleria.cjs.js +106 -104
- package/galleria/galleria.cjs.min.js +1 -1
- package/galleria/galleria.esm.js +106 -105
- package/galleria/galleria.esm.min.js +1 -1
- package/galleria/galleria.js +107 -106
- package/galleria/galleria.min.js +1 -1
- package/image/Image.d.ts +170 -0
- package/image/Image.vue +49 -21
- package/image/image.cjs.js +94 -59
- package/image/image.cjs.min.js +1 -1
- package/image/image.esm.js +94 -60
- package/image/image.esm.min.js +1 -1
- package/image/image.js +95 -61
- package/image/image.min.js +1 -1
- package/inputmask/InputMask.d.ts +25 -0
- package/inputmask/InputMask.vue +3 -1
- package/inputmask/inputmask.cjs.js +9 -3
- package/inputmask/inputmask.cjs.min.js +1 -1
- package/inputmask/inputmask.esm.js +6 -4
- package/inputmask/inputmask.esm.min.js +1 -1
- package/inputmask/inputmask.js +10 -5
- package/inputmask/inputmask.min.js +1 -1
- package/inputnumber/InputNumber.d.ts +69 -0
- package/inputnumber/InputNumber.vue +13 -11
- package/inputnumber/inputnumber.cjs.js +19 -28
- package/inputnumber/inputnumber.cjs.min.js +1 -1
- package/inputnumber/inputnumber.esm.js +19 -29
- package/inputnumber/inputnumber.esm.min.js +1 -1
- package/inputnumber/inputnumber.js +20 -30
- package/inputnumber/inputnumber.min.js +1 -1
- package/inputswitch/InputSwitch.d.ts +51 -0
- package/inputswitch/InputSwitch.vue +7 -4
- package/inputswitch/inputswitch.cjs.js +15 -11
- package/inputswitch/inputswitch.cjs.min.js +1 -1
- package/inputswitch/inputswitch.esm.js +12 -12
- package/inputswitch/inputswitch.esm.min.js +1 -1
- package/inputswitch/inputswitch.js +16 -13
- package/inputswitch/inputswitch.min.js +1 -1
- package/inputtext/InputText.d.ts +25 -0
- package/inputtext/InputText.vue +4 -1
- package/inputtext/inputtext.cjs.js +9 -3
- package/inputtext/inputtext.cjs.min.js +1 -1
- package/inputtext/inputtext.esm.js +6 -4
- package/inputtext/inputtext.esm.min.js +1 -1
- package/inputtext/inputtext.js +10 -5
- package/inputtext/inputtext.min.js +1 -1
- package/knob/Knob.d.ts +78 -0
- package/knob/Knob.vue +8 -4
- package/knob/knob.cjs.js +17 -13
- package/knob/knob.cjs.min.js +1 -1
- package/knob/knob.esm.js +14 -14
- package/knob/knob.esm.min.js +1 -1
- package/knob/knob.js +18 -15
- package/knob/knob.min.js +1 -1
- package/listbox/Listbox.d.ts +137 -1
- package/listbox/Listbox.vue +28 -15
- package/listbox/listbox.cjs.js +83 -78
- package/listbox/listbox.cjs.min.js +1 -1
- package/listbox/listbox.esm.js +83 -79
- package/listbox/listbox.esm.min.js +1 -1
- package/listbox/listbox.js +84 -80
- package/listbox/listbox.min.js +1 -1
- package/megamenu/MegaMenu.d.ts +5 -5
- package/menu/Menu.d.ts +4 -4
- package/menubar/Menubar.d.ts +1 -1
- package/multiselect/MultiSelect.d.ts +223 -1
- package/multiselect/MultiSelect.vue +72 -41
- package/multiselect/multiselect.cjs.js +156 -151
- package/multiselect/multiselect.cjs.min.js +1 -1
- package/multiselect/multiselect.esm.js +156 -152
- package/multiselect/multiselect.esm.min.js +1 -1
- package/multiselect/multiselect.js +157 -153
- package/multiselect/multiselect.min.js +1 -1
- package/orderlist/OrderList.d.ts +94 -0
- package/orderlist/OrderList.vue +38 -18
- package/orderlist/orderlist.cjs.js +50 -36
- package/orderlist/orderlist.cjs.min.js +1 -1
- package/orderlist/orderlist.esm.js +50 -37
- package/orderlist/orderlist.esm.min.js +1 -1
- package/orderlist/orderlist.js +51 -38
- package/orderlist/orderlist.min.js +1 -1
- package/organizationchart/OrganizationChart.d.ts +129 -0
- package/organizationchart/OrganizationChart.vue +14 -2
- package/organizationchart/OrganizationChartNode.vue +37 -16
- package/organizationchart/organizationchart.cjs.js +77 -61
- package/organizationchart/organizationchart.cjs.min.js +1 -1
- package/organizationchart/organizationchart.esm.js +77 -62
- package/organizationchart/organizationchart.esm.min.js +1 -1
- package/organizationchart/organizationchart.js +78 -63
- package/organizationchart/organizationchart.min.js +1 -1
- package/package.json +1 -1
- package/paginator/CurrentPageReport.vue +5 -1
- package/paginator/FirstPageLink.vue +13 -2
- package/paginator/JumpToPageDropdown.vue +3 -1
- package/paginator/JumpToPageInput.vue +3 -1
- package/paginator/LastPageLink.vue +13 -2
- package/paginator/NextPageLink.vue +13 -2
- package/paginator/PageLinks.vue +12 -2
- package/paginator/Paginator.d.ts +133 -0
- package/paginator/Paginator.vue +23 -12
- package/paginator/PrevPageLink.vue +13 -2
- package/paginator/RowsPerPageDropdown.vue +3 -1
- package/paginator/paginator.cjs.js +135 -76
- package/paginator/paginator.cjs.min.js +1 -1
- package/paginator/paginator.esm.js +135 -77
- package/paginator/paginator.esm.min.js +1 -1
- package/paginator/paginator.js +136 -78
- package/paginator/paginator.min.js +1 -1
- package/panelmenu/PanelMenu.d.ts +4 -8
- package/password/Password.d.ts +104 -0
- package/password/Password.vue +11 -9
- package/password/password.cjs.js +26 -28
- package/password/password.cjs.min.js +1 -1
- package/password/password.esm.js +26 -29
- package/password/password.esm.min.js +1 -1
- package/password/password.js +27 -30
- package/password/password.min.js +1 -1
- package/picklist/PickList.d.ts +160 -0
- package/picklist/PickList.vue +46 -34
- package/picklist/picklist.cjs.js +111 -85
- package/picklist/picklist.cjs.min.js +1 -1
- package/picklist/picklist.esm.js +111 -86
- package/picklist/picklist.esm.min.js +1 -1
- package/picklist/picklist.js +112 -87
- package/picklist/picklist.min.js +1 -1
- package/radiobutton/RadioButton.d.ts +55 -0
- package/radiobutton/RadioButton.vue +7 -5
- package/radiobutton/radiobutton.cjs.js +19 -16
- package/radiobutton/radiobutton.cjs.min.js +1 -1
- package/radiobutton/radiobutton.esm.js +16 -17
- package/radiobutton/radiobutton.esm.min.js +1 -1
- package/radiobutton/radiobutton.js +20 -18
- package/radiobutton/radiobutton.min.js +1 -1
- package/rating/Rating.d.ts +96 -0
- package/rating/Rating.vue +32 -9
- package/rating/rating.cjs.js +41 -34
- package/rating/rating.cjs.min.js +1 -1
- package/rating/rating.esm.js +41 -35
- package/rating/rating.esm.min.js +1 -1
- package/rating/rating.js +42 -36
- package/rating/rating.min.js +1 -1
- package/row/Row.d.ts +29 -0
- package/row/Row.vue +3 -0
- package/row/row.cjs.js +7 -0
- package/row/row.cjs.min.js +1 -1
- package/row/row.esm.js +3 -0
- package/row/row.esm.min.js +1 -1
- package/row/row.js +7 -2
- package/row/row.min.js +1 -1
- package/selectbutton/SelectButton.d.ts +68 -0
- package/selectbutton/SelectButton.vue +13 -2
- package/selectbutton/selectbutton.cjs.js +20 -10
- package/selectbutton/selectbutton.cjs.min.js +1 -1
- package/selectbutton/selectbutton.esm.js +20 -11
- package/selectbutton/selectbutton.esm.min.js +1 -1
- package/selectbutton/selectbutton.js +21 -12
- package/selectbutton/selectbutton.min.js +1 -1
- package/slider/Slider.d.ts +48 -0
- package/slider/Slider.vue +7 -2
- package/slider/slider.cjs.js +22 -16
- package/slider/slider.cjs.min.js +1 -1
- package/slider/slider.esm.js +19 -17
- package/slider/slider.esm.min.js +1 -1
- package/slider/slider.js +23 -18
- package/slider/slider.min.js +1 -1
- package/splitbutton/SplitButton.d.ts +0 -4
- package/splitbutton/SplitButton.vue +2 -2
- package/splitbutton/splitbutton.cjs.js +7 -6
- package/splitbutton/splitbutton.cjs.min.js +1 -1
- package/splitbutton/splitbutton.esm.js +7 -6
- package/splitbutton/splitbutton.esm.min.js +1 -1
- package/splitbutton/splitbutton.js +7 -6
- package/splitbutton/splitbutton.min.js +1 -1
- package/splitter/Splitter.d.ts +3 -3
- package/textarea/Textarea.d.ts +32 -0
- package/textarea/Textarea.vue +4 -1
- package/textarea/textarea.cjs.js +9 -3
- package/textarea/textarea.cjs.min.js +1 -1
- package/textarea/textarea.esm.js +6 -4
- package/textarea/textarea.esm.min.js +1 -1
- package/textarea/textarea.js +10 -5
- package/textarea/textarea.min.js +1 -1
- package/timeline/Timeline.d.ts +49 -0
- package/timeline/Timeline.vue +9 -7
- package/timeline/timeline.cjs.js +19 -21
- package/timeline/timeline.cjs.min.js +1 -1
- package/timeline/timeline.esm.js +16 -22
- package/timeline/timeline.esm.min.js +1 -1
- package/timeline/timeline.js +20 -23
- package/timeline/timeline.min.js +1 -1
- package/toast/Toast.d.ts +4 -0
- package/toast/Toast.vue +1 -1
- package/toast/toast.cjs.js +3 -3
- package/toast/toast.cjs.min.js +1 -1
- package/toast/toast.esm.js +3 -3
- package/toast/toast.esm.min.js +1 -1
- package/toast/toast.js +3 -3
- package/toast/toast.min.js +1 -1
- package/togglebutton/ToggleButton.d.ts +59 -0
- package/togglebutton/ToggleButton.vue +7 -5
- package/togglebutton/togglebutton.cjs.js +15 -14
- package/togglebutton/togglebutton.cjs.min.js +1 -1
- package/togglebutton/togglebutton.esm.js +15 -15
- package/togglebutton/togglebutton.esm.min.js +1 -1
- package/togglebutton/togglebutton.js +16 -16
- package/togglebutton/togglebutton.min.js +1 -1
- package/tooltip/Tooltip.d.ts +10 -0
- package/tooltip/tooltip.cjs.js +51 -9
- package/tooltip/tooltip.cjs.min.js +1 -1
- package/tooltip/tooltip.esm.js +52 -10
- package/tooltip/tooltip.esm.min.js +1 -1
- package/tooltip/tooltip.js +51 -9
- package/tooltip/tooltip.min.js +1 -1
- package/tree/Tree.d.ts +137 -0
- package/tree/Tree.vue +12 -9
- package/tree/TreeNode.vue +23 -10
- package/tree/tree.cjs.js +85 -79
- package/tree/tree.cjs.min.js +1 -1
- package/tree/tree.esm.js +85 -80
- package/tree/tree.esm.min.js +1 -1
- package/tree/tree.js +86 -81
- package/tree/tree.min.js +1 -1
- package/treeselect/TreeSelect.d.ts +103 -1
- package/treeselect/TreeSelect.vue +15 -12
- package/treeselect/treeselect.cjs.js +37 -39
- package/treeselect/treeselect.cjs.min.js +1 -1
- package/treeselect/treeselect.esm.js +37 -40
- package/treeselect/treeselect.esm.min.js +1 -1
- package/treeselect/treeselect.js +38 -41
- package/treeselect/treeselect.min.js +1 -1
- package/treetable/BodyCell.vue +38 -10
- package/treetable/FooterCell.vue +15 -1
- package/treetable/HeaderCell.vue +28 -5
- package/treetable/TreeTable.d.ts +162 -0
- package/treetable/TreeTable.vue +25 -19
- package/treetable/TreeTableRow.vue +5 -0
- package/treetable/treetable.cjs.js +205 -158
- package/treetable/treetable.cjs.min.js +1 -1
- package/treetable/treetable.esm.js +205 -159
- package/treetable/treetable.esm.min.js +1 -1
- package/treetable/treetable.js +206 -160
- package/treetable/treetable.min.js +1 -1
- package/tristatecheckbox/TriStateCheckbox.d.ts +93 -0
- package/tristatecheckbox/TriStateCheckbox.vue +19 -8
- package/tristatecheckbox/tristatecheckbox.cjs.js +31 -22
- package/tristatecheckbox/tristatecheckbox.cjs.min.js +1 -1
- package/tristatecheckbox/tristatecheckbox.esm.js +31 -23
- package/tristatecheckbox/tristatecheckbox.esm.min.js +1 -1
- package/tristatecheckbox/tristatecheckbox.js +32 -24
- package/tristatecheckbox/tristatecheckbox.min.js +1 -1
- package/ts-helpers.d.ts +3 -1
- package/vetur-attributes.json +180 -0
- package/vetur-tags.json +94 -39
- package/virtualscroller/VirtualScroller.d.ts +97 -0
- package/virtualscroller/VirtualScroller.vue +7 -5
- package/virtualscroller/virtualscroller.cjs.js +22 -19
- package/virtualscroller/virtualscroller.cjs.min.js +1 -1
- package/virtualscroller/virtualscroller.esm.js +22 -20
- package/virtualscroller/virtualscroller.esm.min.js +1 -1
- package/virtualscroller/virtualscroller.js +23 -21
- package/virtualscroller/virtualscroller.min.js +1 -1
- package/web-types.json +467 -3
- package/datatable/TableLoadingBody.vue +0 -25
package/galleria/galleria.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
this.primevue = this.primevue || {};
|
|
2
|
-
this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple, ChevronLeftIcon, ChevronRightIcon, vue, ChevronDownIcon, ChevronUpIcon) {
|
|
2
|
+
this.primevue.galleria = (function (BaseComponent, FocusTrap, Portal, utils, TimesIcon, Ripple, ChevronLeftIcon, ChevronRightIcon, vue, ChevronDownIcon, ChevronUpIcon) {
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
5
5
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
6
6
|
|
|
7
|
+
var BaseComponent__default = /*#__PURE__*/_interopDefaultLegacy(BaseComponent);
|
|
7
8
|
var FocusTrap__default = /*#__PURE__*/_interopDefaultLegacy(FocusTrap);
|
|
8
9
|
var Portal__default = /*#__PURE__*/_interopDefaultLegacy(Portal);
|
|
9
10
|
var TimesIcon__default = /*#__PURE__*/_interopDefaultLegacy(TimesIcon);
|
|
@@ -15,6 +16,7 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
15
16
|
|
|
16
17
|
var script$3 = {
|
|
17
18
|
name: 'GalleriaItem',
|
|
19
|
+
extends: BaseComponent__default["default"],
|
|
18
20
|
emits: ['start-slideshow', 'stop-slideshow', 'update:activeIndex'],
|
|
19
21
|
props: {
|
|
20
22
|
circular: {
|
|
@@ -173,21 +175,11 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
173
175
|
}
|
|
174
176
|
};
|
|
175
177
|
|
|
176
|
-
const _hoisted_1$3 =
|
|
177
|
-
const _hoisted_2$2 =
|
|
178
|
+
const _hoisted_1$3 = ["disabled"];
|
|
179
|
+
const _hoisted_2$2 = ["id", "aria-label", "aria-roledescription"];
|
|
178
180
|
const _hoisted_3$2 = ["disabled"];
|
|
179
|
-
const _hoisted_4$
|
|
180
|
-
const _hoisted_5
|
|
181
|
-
const _hoisted_6$1 = {
|
|
182
|
-
key: 2,
|
|
183
|
-
class: "p-galleria-caption"
|
|
184
|
-
};
|
|
185
|
-
const _hoisted_7 = {
|
|
186
|
-
key: 0,
|
|
187
|
-
class: "p-galleria-indicators p-reset"
|
|
188
|
-
};
|
|
189
|
-
const _hoisted_8 = ["aria-label", "aria-selected", "aria-controls", "onClick", "onMouseenter", "onKeydown"];
|
|
190
|
-
const _hoisted_9 = {
|
|
181
|
+
const _hoisted_4$1 = ["aria-label", "aria-selected", "aria-controls", "onClick", "onMouseenter", "onKeydown"];
|
|
182
|
+
const _hoisted_5 = {
|
|
191
183
|
key: 0,
|
|
192
184
|
type: "button",
|
|
193
185
|
tabindex: "-1",
|
|
@@ -197,65 +189,71 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
197
189
|
function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
198
190
|
const _directive_ripple = vue.resolveDirective("ripple");
|
|
199
191
|
|
|
200
|
-
return (vue.openBlock(), vue.createElementBlock("div",
|
|
201
|
-
vue.createElementVNode("div",
|
|
192
|
+
return (vue.openBlock(), vue.createElementBlock("div", vue.mergeProps({ class: "p-galleria-item-wrapper" }, _ctx.ptm('itemWrapper')), [
|
|
193
|
+
vue.createElementVNode("div", vue.mergeProps({ class: "p-galleria-item-container" }, _ctx.ptm('itemContainer')), [
|
|
202
194
|
($props.showItemNavigators)
|
|
203
|
-
? vue.withDirectives((vue.openBlock(), vue.createElementBlock("button", {
|
|
195
|
+
? vue.withDirectives((vue.openBlock(), vue.createElementBlock("button", vue.mergeProps({
|
|
204
196
|
key: 0,
|
|
205
197
|
type: "button",
|
|
206
|
-
class:
|
|
198
|
+
class: $options.navBackwardClass,
|
|
207
199
|
onClick: _cache[0] || (_cache[0] = $event => ($options.navBackward($event))),
|
|
208
200
|
disabled: $options.isNavBackwardDisabled()
|
|
209
|
-
}, [
|
|
210
|
-
(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent($props.templates.previousitemicon || 'ChevronLeftIcon'), { class: "p-galleria-item-prev-icon" }))
|
|
211
|
-
],
|
|
201
|
+
}, _ctx.ptm('previousItemButton')), [
|
|
202
|
+
(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent($props.templates.previousitemicon || 'ChevronLeftIcon'), vue.mergeProps({ class: "p-galleria-item-prev-icon" }, _ctx.ptm('previousItemIcon')), null, 16))
|
|
203
|
+
], 16, _hoisted_1$3)), [
|
|
212
204
|
[_directive_ripple]
|
|
213
205
|
])
|
|
214
206
|
: vue.createCommentVNode("", true),
|
|
215
|
-
vue.createElementVNode("div", {
|
|
207
|
+
vue.createElementVNode("div", vue.mergeProps({
|
|
216
208
|
id: $props.id + '_item_' + $props.activeIndex,
|
|
217
209
|
class: "p-galleria-item",
|
|
218
210
|
role: "group",
|
|
219
211
|
"aria-label": $options.ariaSlideNumber($props.activeIndex + 1),
|
|
220
212
|
"aria-roledescription": $options.ariaSlideLabel
|
|
221
|
-
}, [
|
|
213
|
+
}, _ctx.ptm('item')), [
|
|
222
214
|
($props.templates.item)
|
|
223
215
|
? (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent($props.templates.item), {
|
|
224
216
|
key: 0,
|
|
225
217
|
item: $options.activeItem
|
|
226
218
|
}, null, 8, ["item"]))
|
|
227
219
|
: vue.createCommentVNode("", true)
|
|
228
|
-
],
|
|
220
|
+
], 16, _hoisted_2$2),
|
|
229
221
|
($props.showItemNavigators)
|
|
230
|
-
? vue.withDirectives((vue.openBlock(), vue.createElementBlock("button", {
|
|
222
|
+
? vue.withDirectives((vue.openBlock(), vue.createElementBlock("button", vue.mergeProps({
|
|
231
223
|
key: 1,
|
|
232
224
|
type: "button",
|
|
233
|
-
class:
|
|
225
|
+
class: $options.navForwardClass,
|
|
234
226
|
onClick: _cache[1] || (_cache[1] = $event => ($options.navForward($event))),
|
|
235
227
|
disabled: $options.isNavForwardDisabled()
|
|
236
|
-
}, [
|
|
237
|
-
(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent($props.templates.nextitemicon || 'ChevronRightIcon'), { class: "p-galleria-item-next-icon" }))
|
|
238
|
-
],
|
|
228
|
+
}, _ctx.ptm('nextItemButton')), [
|
|
229
|
+
(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent($props.templates.nextitemicon || 'ChevronRightIcon'), vue.mergeProps({ class: "p-galleria-item-next-icon" }, _ctx.ptm('nextItemIcon')), null, 16))
|
|
230
|
+
], 16, _hoisted_3$2)), [
|
|
239
231
|
[_directive_ripple]
|
|
240
232
|
])
|
|
241
233
|
: vue.createCommentVNode("", true),
|
|
242
234
|
($props.templates['caption'])
|
|
243
|
-
? (vue.openBlock(), vue.createElementBlock("div",
|
|
235
|
+
? (vue.openBlock(), vue.createElementBlock("div", vue.mergeProps({
|
|
236
|
+
key: 2,
|
|
237
|
+
class: "p-galleria-caption"
|
|
238
|
+
}, _ctx.ptm('caption')), [
|
|
244
239
|
($props.templates.caption)
|
|
245
240
|
? (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent($props.templates.caption), {
|
|
246
241
|
key: 0,
|
|
247
242
|
item: $options.activeItem
|
|
248
243
|
}, null, 8, ["item"]))
|
|
249
244
|
: vue.createCommentVNode("", true)
|
|
250
|
-
]))
|
|
245
|
+
], 16))
|
|
251
246
|
: vue.createCommentVNode("", true)
|
|
252
|
-
]),
|
|
247
|
+
], 16),
|
|
253
248
|
($props.showIndicators)
|
|
254
|
-
? (vue.openBlock(), vue.createElementBlock("ul",
|
|
249
|
+
? (vue.openBlock(), vue.createElementBlock("ul", vue.mergeProps({
|
|
250
|
+
key: 0,
|
|
251
|
+
class: "p-galleria-indicators p-reset"
|
|
252
|
+
}, _ctx.ptm('indicators')), [
|
|
255
253
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList($props.value, (item, index) => {
|
|
256
|
-
return (vue.openBlock(), vue.createElementBlock("li", {
|
|
254
|
+
return (vue.openBlock(), vue.createElementBlock("li", vue.mergeProps({
|
|
257
255
|
key: `p-galleria-indicator-${index}`,
|
|
258
|
-
class:
|
|
256
|
+
class: ['p-galleria-indicator', { 'p-highlight': $options.isIndicatorItemActive(index) }],
|
|
259
257
|
tabindex: "0",
|
|
260
258
|
"aria-label": $options.ariaPageLabel(index + 1),
|
|
261
259
|
"aria-selected": $props.activeIndex === index,
|
|
@@ -263,9 +261,9 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
263
261
|
onClick: $event => ($options.onIndicatorClick(index)),
|
|
264
262
|
onMouseenter: $event => ($options.onIndicatorMouseEnter(index)),
|
|
265
263
|
onKeydown: $event => ($options.onIndicatorKeyDown($event, index))
|
|
266
|
-
}, [
|
|
264
|
+
}, _ctx.ptm('indicator')), [
|
|
267
265
|
(!$props.templates['indicator'])
|
|
268
|
-
? (vue.openBlock(), vue.createElementBlock("button",
|
|
266
|
+
? (vue.openBlock(), vue.createElementBlock("button", _hoisted_5))
|
|
269
267
|
: vue.createCommentVNode("", true),
|
|
270
268
|
($props.templates.indicator)
|
|
271
269
|
? (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent($props.templates.indicator), {
|
|
@@ -273,17 +271,18 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
273
271
|
index: index
|
|
274
272
|
}, null, 8, ["index"]))
|
|
275
273
|
: vue.createCommentVNode("", true)
|
|
276
|
-
],
|
|
274
|
+
], 16, _hoisted_4$1))
|
|
277
275
|
}), 128))
|
|
278
|
-
]))
|
|
276
|
+
], 16))
|
|
279
277
|
: vue.createCommentVNode("", true)
|
|
280
|
-
]))
|
|
278
|
+
], 16))
|
|
281
279
|
}
|
|
282
280
|
|
|
283
281
|
script$3.render = render$3;
|
|
284
282
|
|
|
285
283
|
var script$2 = {
|
|
286
284
|
name: 'GalleriaThumbnails',
|
|
285
|
+
extends: BaseComponent__default["default"],
|
|
287
286
|
emits: ['stop-slideshow', 'update:activeIndex'],
|
|
288
287
|
props: {
|
|
289
288
|
containerId: {
|
|
@@ -758,18 +757,16 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
758
757
|
}
|
|
759
758
|
};
|
|
760
759
|
|
|
761
|
-
const _hoisted_1$2 =
|
|
762
|
-
const _hoisted_2$1 =
|
|
763
|
-
const _hoisted_3$1 = ["
|
|
764
|
-
const _hoisted_4
|
|
765
|
-
const _hoisted_5$1 = ["tabindex", "aria-label", "aria-current", "onClick"];
|
|
766
|
-
const _hoisted_6 = ["disabled", "aria-label"];
|
|
760
|
+
const _hoisted_1$2 = ["disabled", "aria-label"];
|
|
761
|
+
const _hoisted_2$1 = ["aria-selected", "aria-controls", "onKeydown"];
|
|
762
|
+
const _hoisted_3$1 = ["tabindex", "aria-label", "aria-current", "onClick"];
|
|
763
|
+
const _hoisted_4 = ["disabled", "aria-label"];
|
|
767
764
|
|
|
768
765
|
function render$2(_ctx, _cache, $props, $setup, $data, $options) {
|
|
769
766
|
const _directive_ripple = vue.resolveDirective("ripple");
|
|
770
767
|
|
|
771
|
-
return (vue.openBlock(), vue.createElementBlock("div",
|
|
772
|
-
vue.createElementVNode("div",
|
|
768
|
+
return (vue.openBlock(), vue.createElementBlock("div", vue.mergeProps({ class: "p-galleria-thumbnail-wrapper" }, _ctx.ptm('thumbnailWrapper')), [
|
|
769
|
+
vue.createElementVNode("div", vue.mergeProps({ class: "p-galleria-thumbnail-container" }, _ctx.ptm('thumbnailContainer')), [
|
|
773
770
|
($props.showThumbnailNavigators)
|
|
774
771
|
? vue.withDirectives((vue.openBlock(), vue.createElementBlock("button", vue.mergeProps({
|
|
775
772
|
key: 0,
|
|
@@ -778,17 +775,17 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
778
775
|
type: "button",
|
|
779
776
|
"aria-label": $options.ariaPrevButtonLabel,
|
|
780
777
|
onClick: _cache[0] || (_cache[0] = $event => ($options.navBackward($event)))
|
|
781
|
-
},
|
|
782
|
-
(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent($props.templates.previousthumbnailicon || ($props.isVertical ? 'ChevronUpIcon' : 'ChevronLeftIcon')), { class: "p-galleria-thumbnail-prev-icon" }))
|
|
783
|
-
], 16,
|
|
778
|
+
}, { ...$props.prevButtonProps, ..._ctx.ptm('previousThumbnailButton') }), [
|
|
779
|
+
(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent($props.templates.previousthumbnailicon || ($props.isVertical ? 'ChevronUpIcon' : 'ChevronLeftIcon')), vue.mergeProps({ class: "p-galleria-thumbnail-prev-icon" }, _ctx.ptm('previousThumbnailIcon')), null, 16))
|
|
780
|
+
], 16, _hoisted_1$2)), [
|
|
784
781
|
[_directive_ripple]
|
|
785
782
|
])
|
|
786
783
|
: vue.createCommentVNode("", true),
|
|
787
|
-
vue.createElementVNode("div", {
|
|
784
|
+
vue.createElementVNode("div", vue.mergeProps({
|
|
788
785
|
class: "p-galleria-thumbnail-items-container",
|
|
789
|
-
style:
|
|
790
|
-
}, [
|
|
791
|
-
vue.createElementVNode("div", {
|
|
786
|
+
style: { height: $props.isVertical ? $props.contentHeight : '' }
|
|
787
|
+
}, _ctx.ptm('thumbnailItemsContainer')), [
|
|
788
|
+
vue.createElementVNode("div", vue.mergeProps({
|
|
792
789
|
ref: "itemsContainer",
|
|
793
790
|
class: "p-galleria-thumbnail-items",
|
|
794
791
|
role: "tablist",
|
|
@@ -796,11 +793,11 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
796
793
|
onTouchstart: _cache[2] || (_cache[2] = $event => ($options.onTouchStart($event))),
|
|
797
794
|
onTouchmove: _cache[3] || (_cache[3] = $event => ($options.onTouchMove($event))),
|
|
798
795
|
onTouchend: _cache[4] || (_cache[4] = $event => ($options.onTouchEnd($event)))
|
|
799
|
-
}, [
|
|
796
|
+
}, _ctx.ptm('thumbnailItems')), [
|
|
800
797
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList($props.value, (item, index) => {
|
|
801
|
-
return (vue.openBlock(), vue.createElementBlock("div", {
|
|
798
|
+
return (vue.openBlock(), vue.createElementBlock("div", vue.mergeProps({
|
|
802
799
|
key: `p-galleria-thumbnail-item-${index}`,
|
|
803
|
-
class:
|
|
800
|
+
class: [
|
|
804
801
|
'p-galleria-thumbnail-item',
|
|
805
802
|
{
|
|
806
803
|
'p-galleria-thumbnail-item-current': $props.activeIndex === index,
|
|
@@ -808,30 +805,30 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
808
805
|
'p-galleria-thumbnail-item-start': $options.firstItemAciveIndex() === index,
|
|
809
806
|
'p-galleria-thumbnail-item-end': $options.lastItemActiveIndex() === index
|
|
810
807
|
}
|
|
811
|
-
]
|
|
808
|
+
],
|
|
812
809
|
role: "tab",
|
|
813
810
|
"aria-selected": $props.activeIndex === index,
|
|
814
811
|
"aria-controls": $props.containerId + '_item_' + index,
|
|
815
812
|
onKeydown: $event => ($options.onThumbnailKeydown($event, index))
|
|
816
|
-
}, [
|
|
817
|
-
vue.createElementVNode("div", {
|
|
813
|
+
}, _ctx.ptm('thumbnailItem')), [
|
|
814
|
+
vue.createElementVNode("div", vue.mergeProps({
|
|
818
815
|
class: "p-galleria-thumbnail-item-content",
|
|
819
816
|
tabindex: $props.activeIndex === index ? '0' : '-1',
|
|
820
817
|
"aria-label": $options.ariaPageLabel(index + 1),
|
|
821
818
|
"aria-current": $props.activeIndex === index ? 'page' : undefined,
|
|
822
819
|
onClick: $event => ($options.onItemClick(index))
|
|
823
|
-
}, [
|
|
820
|
+
}, _ctx.ptm('thumbnailItemContent')), [
|
|
824
821
|
($props.templates.thumbnail)
|
|
825
822
|
? (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent($props.templates.thumbnail), {
|
|
826
823
|
key: 0,
|
|
827
824
|
item: item
|
|
828
825
|
}, null, 8, ["item"]))
|
|
829
826
|
: vue.createCommentVNode("", true)
|
|
830
|
-
],
|
|
831
|
-
],
|
|
827
|
+
], 16, _hoisted_3$1)
|
|
828
|
+
], 16, _hoisted_2$1))
|
|
832
829
|
}), 128))
|
|
833
|
-
],
|
|
834
|
-
],
|
|
830
|
+
], 16)
|
|
831
|
+
], 16),
|
|
835
832
|
($props.showThumbnailNavigators)
|
|
836
833
|
? vue.withDirectives((vue.openBlock(), vue.createElementBlock("button", vue.mergeProps({
|
|
837
834
|
key: 1,
|
|
@@ -840,20 +837,21 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
840
837
|
type: "button",
|
|
841
838
|
"aria-label": $options.ariaNextButtonLabel,
|
|
842
839
|
onClick: _cache[5] || (_cache[5] = $event => ($options.navForward($event)))
|
|
843
|
-
},
|
|
844
|
-
(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent($props.templates.nextthumbnailicon || ($props.isVertical ? 'ChevronDownIcon' : 'ChevronRightIcon')), { class: "p-galleria-thumbnail-
|
|
845
|
-
], 16,
|
|
840
|
+
}, { ...$props.nextButtonProps, ..._ctx.ptm('nextThumbnailButton') }), [
|
|
841
|
+
(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent($props.templates.nextthumbnailicon || ($props.isVertical ? 'ChevronDownIcon' : 'ChevronRightIcon')), vue.mergeProps({ class: "p-galleria-thumbnail-next-icon" }, _ctx.ptm('nextThumbnailIcon')), null, 16))
|
|
842
|
+
], 16, _hoisted_4)), [
|
|
846
843
|
[_directive_ripple]
|
|
847
844
|
])
|
|
848
845
|
: vue.createCommentVNode("", true)
|
|
849
|
-
])
|
|
850
|
-
]))
|
|
846
|
+
], 16)
|
|
847
|
+
], 16))
|
|
851
848
|
}
|
|
852
849
|
|
|
853
850
|
script$2.render = render$2;
|
|
854
851
|
|
|
855
852
|
var script$1 = {
|
|
856
853
|
name: 'GalleriaContent',
|
|
854
|
+
extends: BaseComponent__default["default"],
|
|
857
855
|
inheritAttrs: false,
|
|
858
856
|
interval: null,
|
|
859
857
|
emits: ['activeitem-change', 'mask-hide'],
|
|
@@ -952,15 +950,7 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
952
950
|
|
|
953
951
|
const _hoisted_1$1 = ["id"];
|
|
954
952
|
const _hoisted_2 = ["aria-label"];
|
|
955
|
-
const _hoisted_3 =
|
|
956
|
-
key: 1,
|
|
957
|
-
class: "p-galleria-header"
|
|
958
|
-
};
|
|
959
|
-
const _hoisted_4 = ["aria-live"];
|
|
960
|
-
const _hoisted_5 = {
|
|
961
|
-
key: 2,
|
|
962
|
-
class: "p-galleria-footer"
|
|
963
|
-
};
|
|
953
|
+
const _hoisted_3 = ["aria-live"];
|
|
964
954
|
|
|
965
955
|
function render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
966
956
|
const _component_GalleriaItem = vue.resolveComponent("GalleriaItem");
|
|
@@ -973,30 +963,33 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
973
963
|
id: $data.id,
|
|
974
964
|
class: $options.galleriaClass,
|
|
975
965
|
style: _ctx.$attrs.containerStyle
|
|
976
|
-
}, _ctx.$attrs.containerProps), [
|
|
966
|
+
}, { ..._ctx.$attrs.containerProps, ..._ctx.ptm('root') }), [
|
|
977
967
|
(_ctx.$attrs.fullScreen)
|
|
978
|
-
? vue.withDirectives((vue.openBlock(), vue.createElementBlock("button", {
|
|
968
|
+
? vue.withDirectives((vue.openBlock(), vue.createElementBlock("button", vue.mergeProps({
|
|
979
969
|
key: 0,
|
|
980
970
|
autofocus: "",
|
|
981
971
|
type: "button",
|
|
982
972
|
class: "p-galleria-close p-link",
|
|
983
973
|
"aria-label": $options.closeAriaLabel,
|
|
984
974
|
onClick: _cache[0] || (_cache[0] = $event => (_ctx.$emit('mask-hide')))
|
|
985
|
-
}, [
|
|
986
|
-
(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.$attrs.templates['closeicon'] || 'TimesIcon'), { class: "p-galleria-close-icon" }))
|
|
987
|
-
],
|
|
975
|
+
}, _ctx.ptm('closeButton')), [
|
|
976
|
+
(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.$attrs.templates['closeicon'] || 'TimesIcon'), vue.mergeProps({ class: "p-galleria-close-icon" }, _ctx.ptm('closeIcon')), null, 16))
|
|
977
|
+
], 16, _hoisted_2)), [
|
|
988
978
|
[_directive_ripple]
|
|
989
979
|
])
|
|
990
980
|
: vue.createCommentVNode("", true),
|
|
991
981
|
(_ctx.$attrs.templates && _ctx.$attrs.templates['header'])
|
|
992
|
-
? (vue.openBlock(), vue.createElementBlock("div",
|
|
982
|
+
? (vue.openBlock(), vue.createElementBlock("div", vue.mergeProps({
|
|
983
|
+
key: 1,
|
|
984
|
+
class: "p-galleria-header"
|
|
985
|
+
}, _ctx.ptm('header')), [
|
|
993
986
|
(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.$attrs.templates['header'])))
|
|
994
|
-
]))
|
|
987
|
+
], 16))
|
|
995
988
|
: vue.createCommentVNode("", true),
|
|
996
|
-
vue.createElementVNode("div", {
|
|
989
|
+
vue.createElementVNode("div", vue.mergeProps({
|
|
997
990
|
class: "p-galleria-content",
|
|
998
991
|
"aria-live": _ctx.$attrs.autoPlay ? 'polite' : 'off'
|
|
999
|
-
}, [
|
|
992
|
+
}, _ctx.ptm('content')), [
|
|
1000
993
|
vue.createVNode(_component_GalleriaItem, {
|
|
1001
994
|
id: $data.id,
|
|
1002
995
|
activeIndex: $data.activeIndex,
|
|
@@ -1011,8 +1004,9 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
1011
1004
|
showItemNavigators: _ctx.$attrs.showItemNavigators,
|
|
1012
1005
|
autoPlay: _ctx.$attrs.autoPlay,
|
|
1013
1006
|
onStartSlideshow: $options.startSlideShow,
|
|
1014
|
-
onStopSlideshow: $options.stopSlideShow
|
|
1015
|
-
|
|
1007
|
+
onStopSlideshow: $options.stopSlideShow,
|
|
1008
|
+
pt: _ctx.pt
|
|
1009
|
+
}, null, 8, ["id", "activeIndex", "slideShowActive", "value", "circular", "templates", "showIndicators", "changeItemOnIndicatorHover", "showItemNavigators", "autoPlay", "onStartSlideshow", "onStopSlideshow", "pt"]),
|
|
1016
1010
|
(_ctx.$attrs.showThumbnails)
|
|
1017
1011
|
? (vue.openBlock(), vue.createBlock(_component_GalleriaThumbnails, {
|
|
1018
1012
|
key: 0,
|
|
@@ -1031,14 +1025,18 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
1031
1025
|
showThumbnailNavigators: _ctx.$attrs.showThumbnailNavigators,
|
|
1032
1026
|
prevButtonProps: _ctx.$attrs.prevButtonProps,
|
|
1033
1027
|
nextButtonProps: _ctx.$attrs.nextButtonProps,
|
|
1034
|
-
onStopSlideshow: $options.stopSlideShow
|
|
1035
|
-
|
|
1028
|
+
onStopSlideshow: $options.stopSlideShow,
|
|
1029
|
+
pt: _ctx.pt
|
|
1030
|
+
}, null, 8, ["activeIndex", "slideShowActive", "containerId", "value", "templates", "numVisible", "responsiveOptions", "circular", "isVertical", "contentHeight", "showThumbnailNavigators", "prevButtonProps", "nextButtonProps", "onStopSlideshow", "pt"]))
|
|
1036
1031
|
: vue.createCommentVNode("", true)
|
|
1037
|
-
],
|
|
1032
|
+
], 16, _hoisted_3),
|
|
1038
1033
|
(_ctx.$attrs.templates && _ctx.$attrs.templates['footer'])
|
|
1039
|
-
? (vue.openBlock(), vue.createElementBlock("div",
|
|
1034
|
+
? (vue.openBlock(), vue.createElementBlock("div", vue.mergeProps({
|
|
1035
|
+
key: 2,
|
|
1036
|
+
class: "p-galleria-footer"
|
|
1037
|
+
}, _ctx.ptm('footer')), [
|
|
1040
1038
|
(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.$attrs.templates['footer'])))
|
|
1041
|
-
]))
|
|
1039
|
+
], 16))
|
|
1042
1040
|
: vue.createCommentVNode("", true)
|
|
1043
1041
|
], 16, _hoisted_1$1))
|
|
1044
1042
|
: vue.createCommentVNode("", true)
|
|
@@ -1048,6 +1046,7 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
1048
1046
|
|
|
1049
1047
|
var script = {
|
|
1050
1048
|
name: 'Galleria',
|
|
1049
|
+
extends: BaseComponent__default["default"],
|
|
1051
1050
|
inheritAttrs: false,
|
|
1052
1051
|
emits: ['update:activeIndex', 'update:visible'],
|
|
1053
1052
|
props: {
|
|
@@ -1255,13 +1254,13 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
1255
1254
|
? (vue.openBlock(), vue.createBlock(_component_Portal, { key: 0 }, {
|
|
1256
1255
|
default: vue.withCtx(() => [
|
|
1257
1256
|
($data.containerVisible)
|
|
1258
|
-
? (vue.openBlock(), vue.createElementBlock("div", {
|
|
1257
|
+
? (vue.openBlock(), vue.createElementBlock("div", vue.mergeProps({
|
|
1259
1258
|
key: 0,
|
|
1260
1259
|
ref: $options.maskRef,
|
|
1261
|
-
class:
|
|
1260
|
+
class: $options.maskContentClass,
|
|
1262
1261
|
role: $props.fullScreen ? 'dialog' : 'region',
|
|
1263
1262
|
"aria-modal": $props.fullScreen ? 'true' : undefined
|
|
1264
|
-
}, [
|
|
1263
|
+
}, _ctx.ptm('mask')), [
|
|
1265
1264
|
vue.createVNode(vue.Transition, {
|
|
1266
1265
|
name: "p-galleria",
|
|
1267
1266
|
onBeforeEnter: $options.onBeforeEnter,
|
|
@@ -1277,15 +1276,16 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
1277
1276
|
ref: $options.containerRef,
|
|
1278
1277
|
onMaskHide: $options.maskHide,
|
|
1279
1278
|
templates: _ctx.$slots,
|
|
1280
|
-
onActiveitemChange: $options.onActiveItemChange
|
|
1281
|
-
|
|
1279
|
+
onActiveitemChange: $options.onActiveItemChange,
|
|
1280
|
+
pt: _ctx.pt
|
|
1281
|
+
}, _ctx.$props), null, 16, ["onMaskHide", "templates", "onActiveitemChange", "pt"])), [
|
|
1282
1282
|
[_directive_focustrap]
|
|
1283
1283
|
])
|
|
1284
1284
|
: vue.createCommentVNode("", true)
|
|
1285
1285
|
]),
|
|
1286
1286
|
_: 1
|
|
1287
1287
|
}, 8, ["onBeforeEnter", "onEnter", "onBeforeLeave", "onAfterLeave"])
|
|
1288
|
-
],
|
|
1288
|
+
], 16, _hoisted_1))
|
|
1289
1289
|
: vue.createCommentVNode("", true)
|
|
1290
1290
|
]),
|
|
1291
1291
|
_: 1
|
|
@@ -1293,8 +1293,9 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
1293
1293
|
: (vue.openBlock(), vue.createBlock(_component_GalleriaContent, vue.mergeProps({
|
|
1294
1294
|
key: 1,
|
|
1295
1295
|
templates: _ctx.$slots,
|
|
1296
|
-
onActiveitemChange: $options.onActiveItemChange
|
|
1297
|
-
|
|
1296
|
+
onActiveitemChange: $options.onActiveItemChange,
|
|
1297
|
+
pt: _ctx.pt
|
|
1298
|
+
}, _ctx.$props), null, 16, ["templates", "onActiveitemChange", "pt"]))
|
|
1298
1299
|
}
|
|
1299
1300
|
|
|
1300
1301
|
function styleInject(css, ref) {
|
|
@@ -1331,4 +1332,4 @@ this.primevue.galleria = (function (FocusTrap, Portal, utils, TimesIcon, Ripple,
|
|
|
1331
1332
|
|
|
1332
1333
|
return script;
|
|
1333
1334
|
|
|
1334
|
-
})(primevue.focustrap, primevue.portal, primevue.utils, primevue.icons.times, primevue.ripple, primevue.icons.chevronleft, primevue.icons.chevronright, Vue, primevue.icons.chevrondown, primevue.icons.chevronup);
|
|
1335
|
+
})(primevue.basecomponent, primevue.focustrap, primevue.portal, primevue.utils, primevue.icons.times, primevue.ripple, primevue.icons.chevronleft, primevue.icons.chevronright, Vue, primevue.icons.chevrondown, primevue.icons.chevronup);
|