primeng 17.12.0 → 17.14.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/accordion/accordion.d.ts +5 -0
- package/animateonscroll/animateonscroll.d.ts +2 -0
- package/api/messageservice.d.ts +1 -1
- package/api/translation.d.ts +2 -0
- package/api/translationkeys.d.ts +1 -0
- package/api/treenode.d.ts +1 -0
- package/autocomplete/autocomplete.d.ts +27 -0
- package/autocomplete/autocomplete.interface.d.ts +1 -1
- package/autofocus/autofocus.d.ts +2 -1
- package/badge/badge.d.ts +34 -23
- package/baseicon/baseicon.d.ts +1 -0
- package/blockui/blockui.d.ts +2 -0
- package/button/button.d.ts +67 -6
- package/calendar/calendar.d.ts +47 -9
- package/carousel/carousel.d.ts +4 -0
- package/cascadeselect/cascadeselect.d.ts +23 -8
- package/chart/chart.d.ts +1 -0
- package/checkbox/checkbox.d.ts +16 -4
- package/chip/chip.d.ts +1 -0
- package/chips/chips.d.ts +19 -4
- package/colorpicker/colorpicker.d.ts +13 -2
- package/confirmdialog/confirmdialog.d.ts +10 -0
- package/confirmpopup/confirmpopup.d.ts +2 -0
- package/contextmenu/contextmenu.d.ts +11 -0
- package/dataview/dataview.d.ts +15 -0
- package/dialog/dialog.d.ts +20 -3
- package/dom/domhandler.d.ts +2 -0
- package/dragdrop/dragdrop.d.ts +1 -0
- package/dropdown/dropdown.d.ts +23 -0
- package/dynamicdialog/dialogservice.d.ts +3 -3
- package/dynamicdialog/dynamicdialog-config.d.ts +5 -0
- package/dynamicdialog/dynamicdialog-ref.d.ts +8 -2
- package/dynamicdialog/dynamicdialog.d.ts +6 -5
- package/editor/editor.d.ts +8 -8
- package/esm2022/accordion/accordion.mjs +14 -9
- package/esm2022/animateonscroll/animateonscroll.mjs +7 -5
- package/esm2022/api/messageservice.mjs +2 -2
- package/esm2022/api/primengconfig.mjs +4 -2
- package/esm2022/api/translation.mjs +1 -1
- package/esm2022/api/translationkeys.mjs +2 -1
- package/esm2022/api/treenode.mjs +1 -1
- package/esm2022/autocomplete/autocomplete.interface.mjs +1 -1
- package/esm2022/autocomplete/autocomplete.mjs +65 -38
- package/esm2022/autofocus/autofocus.mjs +13 -5
- package/esm2022/badge/badge.mjs +128 -82
- package/esm2022/baseicon/baseicon.mjs +5 -4
- package/esm2022/blockui/blockui.mjs +7 -5
- package/esm2022/button/button.mjs +130 -17
- package/esm2022/calendar/calendar.mjs +137 -106
- package/esm2022/carousel/carousel.mjs +11 -7
- package/esm2022/cascadeselect/cascadeselect.mjs +50 -27
- package/esm2022/chart/chart.mjs +5 -4
- package/esm2022/checkbox/checkbox.mjs +31 -12
- package/esm2022/chip/chip.mjs +5 -4
- package/esm2022/chips/chips.mjs +37 -15
- package/esm2022/colorpicker/colorpicker.mjs +29 -11
- package/esm2022/confirmdialog/confirmdialog.mjs +24 -14
- package/esm2022/confirmpopup/confirmpopup.mjs +8 -6
- package/esm2022/contextmenu/contextmenu.mjs +26 -15
- package/esm2022/dataview/dataview.mjs +34 -19
- package/esm2022/dialog/dialog.mjs +59 -56
- package/esm2022/dom/domhandler.mjs +22 -8
- package/esm2022/dragdrop/dragdrop.mjs +5 -4
- package/esm2022/dropdown/dropdown.mjs +69 -39
- package/esm2022/dynamicdialog/dialogservice.mjs +3 -3
- package/esm2022/dynamicdialog/dynamicdialog-config.mjs +6 -1
- package/esm2022/dynamicdialog/dynamicdialog-ref.mjs +7 -1
- package/esm2022/dynamicdialog/dynamicdialog.mjs +46 -70
- package/esm2022/editor/editor.mjs +49 -45
- package/esm2022/fieldset/fieldset.mjs +7 -5
- package/esm2022/fileupload/fileupload.mjs +76 -19
- package/esm2022/focustrap/focustrap.mjs +5 -4
- package/esm2022/galleria/galleria.mjs +57 -32
- package/esm2022/image/image.mjs +5 -4
- package/esm2022/inplace/inplace.mjs +12 -8
- package/esm2022/inputmask/inputmask.mjs +40 -17
- package/esm2022/inputnumber/inputnumber.interface.mjs +1 -1
- package/esm2022/inputnumber/inputnumber.mjs +63 -23
- package/esm2022/inputotp/inputotp.mjs +35 -16
- package/esm2022/inputswitch/inputswitch.mjs +27 -10
- package/esm2022/inputtextarea/inputtextarea.mjs +5 -4
- package/esm2022/keyfilter/keyfilter.mjs +16 -6
- package/esm2022/knob/knob.mjs +21 -12
- package/esm2022/listbox/listbox.mjs +41 -19
- package/esm2022/megamenu/megamenu.mjs +16 -10
- package/esm2022/menu/menu.mjs +11 -17
- package/esm2022/menubar/menubar.mjs +26 -15
- package/esm2022/message/message.mjs +5 -4
- package/esm2022/messages/messages.mjs +15 -11
- package/esm2022/metergroup/metergroup.interface.mjs +1 -1
- package/esm2022/metergroup/metergroup.mjs +12 -9
- package/esm2022/multiselect/multiselect.mjs +107 -54
- package/esm2022/orderlist/orderlist.mjs +16 -10
- package/esm2022/organizationchart/organizationchart.mjs +12 -8
- package/esm2022/overlaypanel/overlaypanel.mjs +13 -8
- package/esm2022/paginator/paginator.mjs +43 -13
- package/esm2022/panel/panel.mjs +9 -6
- package/esm2022/panelmenu/panelmenu.mjs +33 -16
- package/esm2022/password/password.mjs +34 -14
- package/esm2022/picklist/picklist.mjs +34 -19
- package/esm2022/progressbar/progressbar.mjs +7 -5
- package/esm2022/radiobutton/radiobutton.mjs +25 -9
- package/esm2022/rating/rating.mjs +38 -16
- package/esm2022/scroller/scroller.mjs +2 -2
- package/esm2022/scrollpanel/scrollpanel.mjs +5 -4
- package/esm2022/scrolltop/scrolltop.mjs +5 -4
- package/esm2022/selectbutton/selectbutton.mjs +31 -12
- package/esm2022/sidebar/sidebar.mjs +17 -10
- package/esm2022/slidemenu/slidemenu.mjs +40 -22
- package/esm2022/slider/slider.mjs +39 -14
- package/esm2022/speeddial/speeddial.interface.mjs +1 -1
- package/esm2022/speeddial/speeddial.mjs +94 -74
- package/esm2022/spinner/spinner.mjs +23 -13
- package/esm2022/splitbutton/splitbutton.mjs +173 -21
- package/esm2022/splitter/splitter.mjs +9 -6
- package/esm2022/steps/steps.mjs +13 -10
- package/esm2022/styleclass/styleclass.mjs +7 -5
- package/esm2022/table/table.mjs +146 -84
- package/esm2022/tabmenu/tabmenu.mjs +8 -6
- package/esm2022/tabview/tabview.mjs +18 -11
- package/esm2022/tag/tag.mjs +19 -7
- package/esm2022/tieredmenu/tieredmenu.mjs +35 -29
- package/esm2022/toast/toast.mjs +18 -11
- package/esm2022/togglebutton/togglebutton.mjs +27 -11
- package/esm2022/tooltip/tooltip.mjs +21 -12
- package/esm2022/tree/tree.mjs +42 -23
- package/esm2022/treeselect/treeselect.mjs +63 -18
- package/esm2022/treetable/treetable.mjs +288 -102
- package/esm2022/tristatecheckbox/tristatecheckbox.mjs +27 -10
- package/esm2022/virtualscroller/virtualscroller.mjs +9 -6
- package/fesm2022/primeng-accordion.mjs +13 -8
- package/fesm2022/primeng-accordion.mjs.map +1 -1
- package/fesm2022/primeng-animateonscroll.mjs +6 -4
- package/fesm2022/primeng-animateonscroll.mjs.map +1 -1
- package/fesm2022/primeng-api.mjs +5 -2
- package/fesm2022/primeng-api.mjs.map +1 -1
- package/fesm2022/primeng-autocomplete.mjs +64 -37
- package/fesm2022/primeng-autocomplete.mjs.map +1 -1
- package/fesm2022/primeng-autofocus.mjs +12 -4
- package/fesm2022/primeng-autofocus.mjs.map +1 -1
- package/fesm2022/primeng-badge.mjs +127 -81
- package/fesm2022/primeng-badge.mjs.map +1 -1
- package/fesm2022/primeng-baseicon.mjs +4 -3
- package/fesm2022/primeng-baseicon.mjs.map +1 -1
- package/fesm2022/primeng-blockui.mjs +6 -4
- package/fesm2022/primeng-blockui.mjs.map +1 -1
- package/fesm2022/primeng-button.mjs +129 -16
- package/fesm2022/primeng-button.mjs.map +1 -1
- package/fesm2022/primeng-calendar.mjs +136 -105
- package/fesm2022/primeng-calendar.mjs.map +1 -1
- package/fesm2022/primeng-carousel.mjs +10 -6
- package/fesm2022/primeng-carousel.mjs.map +1 -1
- package/fesm2022/primeng-cascadeselect.mjs +49 -26
- package/fesm2022/primeng-cascadeselect.mjs.map +1 -1
- package/fesm2022/primeng-chart.mjs +4 -3
- package/fesm2022/primeng-chart.mjs.map +1 -1
- package/fesm2022/primeng-checkbox.mjs +30 -11
- package/fesm2022/primeng-checkbox.mjs.map +1 -1
- package/fesm2022/primeng-chip.mjs +4 -3
- package/fesm2022/primeng-chip.mjs.map +1 -1
- package/fesm2022/primeng-chips.mjs +36 -14
- package/fesm2022/primeng-chips.mjs.map +1 -1
- package/fesm2022/primeng-colorpicker.mjs +28 -10
- package/fesm2022/primeng-colorpicker.mjs.map +1 -1
- package/fesm2022/primeng-confirmdialog.mjs +23 -13
- package/fesm2022/primeng-confirmdialog.mjs.map +1 -1
- package/fesm2022/primeng-confirmpopup.mjs +7 -5
- package/fesm2022/primeng-confirmpopup.mjs.map +1 -1
- package/fesm2022/primeng-contextmenu.mjs +25 -14
- package/fesm2022/primeng-contextmenu.mjs.map +1 -1
- package/fesm2022/primeng-dataview.mjs +33 -18
- package/fesm2022/primeng-dataview.mjs.map +1 -1
- package/fesm2022/primeng-dialog.mjs +58 -55
- package/fesm2022/primeng-dialog.mjs.map +1 -1
- package/fesm2022/primeng-dom.mjs +21 -7
- package/fesm2022/primeng-dom.mjs.map +1 -1
- package/fesm2022/primeng-dragdrop.mjs +4 -3
- package/fesm2022/primeng-dragdrop.mjs.map +1 -1
- package/fesm2022/primeng-dropdown.mjs +68 -38
- package/fesm2022/primeng-dropdown.mjs.map +1 -1
- package/fesm2022/primeng-dynamicdialog.mjs +58 -71
- package/fesm2022/primeng-dynamicdialog.mjs.map +1 -1
- package/fesm2022/primeng-editor.mjs +48 -43
- package/fesm2022/primeng-editor.mjs.map +1 -1
- package/fesm2022/primeng-fieldset.mjs +6 -4
- package/fesm2022/primeng-fieldset.mjs.map +1 -1
- package/fesm2022/primeng-fileupload.mjs +75 -18
- package/fesm2022/primeng-fileupload.mjs.map +1 -1
- package/fesm2022/primeng-focustrap.mjs +4 -3
- package/fesm2022/primeng-focustrap.mjs.map +1 -1
- package/fesm2022/primeng-galleria.mjs +56 -31
- package/fesm2022/primeng-galleria.mjs.map +1 -1
- package/fesm2022/primeng-image.mjs +4 -3
- package/fesm2022/primeng-image.mjs.map +1 -1
- package/fesm2022/primeng-inplace.mjs +11 -7
- package/fesm2022/primeng-inplace.mjs.map +1 -1
- package/fesm2022/primeng-inputmask.mjs +39 -16
- package/fesm2022/primeng-inputmask.mjs.map +1 -1
- package/fesm2022/primeng-inputnumber.mjs +62 -22
- package/fesm2022/primeng-inputnumber.mjs.map +1 -1
- package/fesm2022/primeng-inputotp.mjs +34 -15
- package/fesm2022/primeng-inputotp.mjs.map +1 -1
- package/fesm2022/primeng-inputswitch.mjs +26 -9
- package/fesm2022/primeng-inputswitch.mjs.map +1 -1
- package/fesm2022/primeng-inputtextarea.mjs +4 -3
- package/fesm2022/primeng-inputtextarea.mjs.map +1 -1
- package/fesm2022/primeng-keyfilter.mjs +15 -5
- package/fesm2022/primeng-keyfilter.mjs.map +1 -1
- package/fesm2022/primeng-knob.mjs +20 -11
- package/fesm2022/primeng-knob.mjs.map +1 -1
- package/fesm2022/primeng-listbox.mjs +40 -18
- package/fesm2022/primeng-listbox.mjs.map +1 -1
- package/fesm2022/primeng-megamenu.mjs +15 -9
- package/fesm2022/primeng-megamenu.mjs.map +1 -1
- package/fesm2022/primeng-menu.mjs +10 -16
- package/fesm2022/primeng-menu.mjs.map +1 -1
- package/fesm2022/primeng-menubar.mjs +25 -14
- package/fesm2022/primeng-menubar.mjs.map +1 -1
- package/fesm2022/primeng-message.mjs +4 -3
- package/fesm2022/primeng-message.mjs.map +1 -1
- package/fesm2022/primeng-messages.mjs +14 -10
- package/fesm2022/primeng-messages.mjs.map +1 -1
- package/fesm2022/primeng-metergroup.mjs +11 -8
- package/fesm2022/primeng-metergroup.mjs.map +1 -1
- package/fesm2022/primeng-multiselect.mjs +106 -53
- package/fesm2022/primeng-multiselect.mjs.map +1 -1
- package/fesm2022/primeng-orderlist.mjs +15 -9
- package/fesm2022/primeng-orderlist.mjs.map +1 -1
- package/fesm2022/primeng-organizationchart.mjs +11 -7
- package/fesm2022/primeng-organizationchart.mjs.map +1 -1
- package/fesm2022/primeng-overlaypanel.mjs +12 -7
- package/fesm2022/primeng-overlaypanel.mjs.map +1 -1
- package/fesm2022/primeng-paginator.mjs +42 -12
- package/fesm2022/primeng-paginator.mjs.map +1 -1
- package/fesm2022/primeng-panel.mjs +8 -5
- package/fesm2022/primeng-panel.mjs.map +1 -1
- package/fesm2022/primeng-panelmenu.mjs +32 -15
- package/fesm2022/primeng-panelmenu.mjs.map +1 -1
- package/fesm2022/primeng-password.mjs +33 -13
- package/fesm2022/primeng-password.mjs.map +1 -1
- package/fesm2022/primeng-picklist.mjs +33 -18
- package/fesm2022/primeng-picklist.mjs.map +1 -1
- package/fesm2022/primeng-progressbar.mjs +6 -4
- package/fesm2022/primeng-progressbar.mjs.map +1 -1
- package/fesm2022/primeng-radiobutton.mjs +24 -8
- package/fesm2022/primeng-radiobutton.mjs.map +1 -1
- package/fesm2022/primeng-rating.mjs +37 -15
- package/fesm2022/primeng-rating.mjs.map +1 -1
- package/fesm2022/primeng-scroller.mjs +1 -1
- package/fesm2022/primeng-scroller.mjs.map +1 -1
- package/fesm2022/primeng-scrollpanel.mjs +4 -3
- package/fesm2022/primeng-scrollpanel.mjs.map +1 -1
- package/fesm2022/primeng-scrolltop.mjs +4 -3
- package/fesm2022/primeng-scrolltop.mjs.map +1 -1
- package/fesm2022/primeng-selectbutton.mjs +30 -11
- package/fesm2022/primeng-selectbutton.mjs.map +1 -1
- package/fesm2022/primeng-sidebar.mjs +16 -9
- package/fesm2022/primeng-sidebar.mjs.map +1 -1
- package/fesm2022/primeng-slidemenu.mjs +39 -21
- package/fesm2022/primeng-slidemenu.mjs.map +1 -1
- package/fesm2022/primeng-slider.mjs +38 -13
- package/fesm2022/primeng-slider.mjs.map +1 -1
- package/fesm2022/primeng-speeddial.mjs +93 -73
- package/fesm2022/primeng-speeddial.mjs.map +1 -1
- package/fesm2022/primeng-spinner.mjs +22 -12
- package/fesm2022/primeng-spinner.mjs.map +1 -1
- package/fesm2022/primeng-splitbutton.mjs +172 -20
- package/fesm2022/primeng-splitbutton.mjs.map +1 -1
- package/fesm2022/primeng-splitter.mjs +8 -5
- package/fesm2022/primeng-splitter.mjs.map +1 -1
- package/fesm2022/primeng-steps.mjs +12 -9
- package/fesm2022/primeng-steps.mjs.map +1 -1
- package/fesm2022/primeng-styleclass.mjs +6 -4
- package/fesm2022/primeng-styleclass.mjs.map +1 -1
- package/fesm2022/primeng-table.mjs +145 -83
- package/fesm2022/primeng-table.mjs.map +1 -1
- package/fesm2022/primeng-tabmenu.mjs +7 -5
- package/fesm2022/primeng-tabmenu.mjs.map +1 -1
- package/fesm2022/primeng-tabview.mjs +17 -10
- package/fesm2022/primeng-tabview.mjs.map +1 -1
- package/fesm2022/primeng-tag.mjs +18 -6
- package/fesm2022/primeng-tag.mjs.map +1 -1
- package/fesm2022/primeng-tieredmenu.mjs +34 -28
- package/fesm2022/primeng-tieredmenu.mjs.map +1 -1
- package/fesm2022/primeng-toast.mjs +17 -10
- package/fesm2022/primeng-toast.mjs.map +1 -1
- package/fesm2022/primeng-togglebutton.mjs +26 -10
- package/fesm2022/primeng-togglebutton.mjs.map +1 -1
- package/fesm2022/primeng-tooltip.mjs +20 -11
- package/fesm2022/primeng-tooltip.mjs.map +1 -1
- package/fesm2022/primeng-tree.mjs +41 -22
- package/fesm2022/primeng-tree.mjs.map +1 -1
- package/fesm2022/primeng-treeselect.mjs +62 -17
- package/fesm2022/primeng-treeselect.mjs.map +1 -1
- package/fesm2022/primeng-treetable.mjs +287 -101
- package/fesm2022/primeng-treetable.mjs.map +1 -1
- package/fesm2022/primeng-tristatecheckbox.mjs +26 -9
- package/fesm2022/primeng-tristatecheckbox.mjs.map +1 -1
- package/fesm2022/primeng-virtualscroller.mjs +8 -5
- package/fesm2022/primeng-virtualscroller.mjs.map +1 -1
- package/fieldset/fieldset.d.ts +2 -0
- package/fileupload/fileupload.d.ts +11 -0
- package/focustrap/focustrap.d.ts +1 -0
- package/galleria/galleria.d.ts +25 -0
- package/image/image.d.ts +1 -0
- package/inplace/inplace.d.ts +4 -0
- package/inputmask/inputmask.d.ts +20 -2
- package/inputnumber/inputnumber.d.ts +30 -6
- package/inputnumber/inputnumber.interface.d.ts +1 -1
- package/inputotp/inputotp.d.ts +10 -2
- package/inputswitch/inputswitch.d.ts +12 -2
- package/inputtextarea/inputtextarea.d.ts +1 -0
- package/keyfilter/keyfilter.d.ts +1 -0
- package/knob/knob.d.ts +9 -0
- package/listbox/listbox.d.ts +22 -2
- package/megamenu/megamenu.d.ts +6 -0
- package/menu/menu.d.ts +4 -0
- package/menubar/menubar.d.ts +11 -0
- package/message/message.d.ts +1 -0
- package/messages/messages.d.ts +3 -0
- package/metergroup/metergroup.d.ts +2 -2
- package/metergroup/metergroup.interface.d.ts +16 -0
- package/multiselect/multiselect.d.ts +37 -8
- package/orderlist/orderlist.d.ts +6 -0
- package/organizationchart/organizationchart.d.ts +4 -0
- package/overlaypanel/overlaypanel.d.ts +5 -0
- package/package.json +134 -134
- package/paginator/paginator.d.ts +19 -2
- package/panel/panel.d.ts +3 -0
- package/panelmenu/panelmenu.d.ts +11 -0
- package/password/password.d.ts +19 -6
- package/picklist/picklist.d.ts +11 -0
- package/progressbar/progressbar.d.ts +2 -0
- package/radiobutton/radiobutton.d.ts +11 -2
- package/rating/rating.d.ts +17 -6
- package/resources/components/calendar/calendar.css +1 -0
- package/resources/components/cascadeselect/cascadeselect.css +1 -0
- package/resources/components/rating/rating.css +2 -0
- package/resources/themes/arya-blue/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/arya-blue/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/arya-blue/theme.css +420 -584
- package/resources/themes/arya-green/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/arya-green/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/arya-green/theme.css +420 -584
- package/resources/themes/arya-orange/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/arya-orange/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/arya-orange/theme.css +420 -584
- package/resources/themes/arya-purple/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/arya-purple/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/arya-purple/theme.css +420 -584
- package/resources/themes/aura-dark-amber/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-dark-amber/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-dark-amber/theme.css +7658 -0
- package/resources/themes/aura-dark-blue/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-dark-blue/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-dark-blue/theme.css +7658 -0
- package/resources/themes/aura-dark-cyan/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-dark-cyan/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-dark-cyan/theme.css +7658 -0
- package/resources/themes/aura-dark-green/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-dark-green/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-dark-green/theme.css +7658 -0
- package/resources/themes/aura-dark-indigo/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-dark-indigo/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-dark-indigo/theme.css +7658 -0
- package/resources/themes/aura-dark-lime/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-dark-lime/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-dark-lime/theme.css +7658 -0
- package/resources/themes/aura-dark-noir/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-dark-noir/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-dark-noir/theme.css +7658 -0
- package/resources/themes/aura-dark-pink/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-dark-pink/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-dark-pink/theme.css +7658 -0
- package/resources/themes/aura-dark-purple/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-dark-purple/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-dark-purple/theme.css +7658 -0
- package/resources/themes/aura-dark-teal/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-dark-teal/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-dark-teal/theme.css +7658 -0
- package/resources/themes/aura-light-amber/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-light-amber/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-light-amber/theme.css +7660 -0
- package/resources/themes/aura-light-blue/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-light-blue/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-light-blue/theme.css +7660 -0
- package/resources/themes/aura-light-cyan/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-light-cyan/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-light-cyan/theme.css +7660 -0
- package/resources/themes/aura-light-green/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-light-green/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-light-green/theme.css +7660 -0
- package/resources/themes/aura-light-indigo/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-light-indigo/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-light-indigo/theme.css +7660 -0
- package/resources/themes/aura-light-lime/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-light-lime/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-light-lime/theme.css +7660 -0
- package/resources/themes/aura-light-noir/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-light-noir/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-light-noir/theme.css +7668 -0
- package/resources/themes/aura-light-pink/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-light-pink/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-light-pink/theme.css +7660 -0
- package/resources/themes/aura-light-purple/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-light-purple/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-light-purple/theme.css +7660 -0
- package/resources/themes/aura-light-teal/fonts/Inter-italic.var.woff2 +0 -0
- package/resources/themes/aura-light-teal/fonts/Inter-roman.var.woff2 +0 -0
- package/resources/themes/aura-light-teal/theme.css +7660 -0
- package/resources/themes/bootstrap4-dark-blue/theme.css +421 -584
- package/resources/themes/bootstrap4-dark-purple/theme.css +421 -584
- package/resources/themes/bootstrap4-light-blue/theme.css +421 -584
- package/resources/themes/bootstrap4-light-purple/theme.css +421 -584
- package/resources/themes/fluent-light/theme.css +447 -595
- package/resources/themes/lara-dark-amber/theme.css +649 -448
- package/resources/themes/lara-dark-blue/theme.css +485 -586
- package/resources/themes/lara-dark-cyan/theme.css +649 -448
- package/resources/themes/lara-dark-green/theme.css +649 -448
- package/resources/themes/lara-dark-indigo/theme.css +485 -586
- package/resources/themes/lara-dark-pink/theme.css +649 -448
- package/resources/themes/lara-dark-purple/theme.css +485 -586
- package/resources/themes/lara-dark-teal/theme.css +485 -586
- package/resources/themes/lara-light-amber/theme.css +619 -467
- package/resources/themes/lara-light-blue/theme.css +441 -594
- package/resources/themes/lara-light-cyan/theme.css +619 -467
- package/resources/themes/lara-light-green/theme.css +619 -467
- package/resources/themes/lara-light-indigo/theme.css +441 -594
- package/resources/themes/lara-light-pink/theme.css +619 -467
- package/resources/themes/lara-light-purple/theme.css +441 -594
- package/resources/themes/lara-light-teal/theme.css +441 -594
- package/resources/themes/luna-amber/theme.css +434 -597
- package/resources/themes/luna-blue/theme.css +434 -597
- package/resources/themes/luna-green/theme.css +434 -597
- package/resources/themes/luna-pink/theme.css +434 -597
- package/resources/themes/md-dark-deeppurple/theme.css +760 -742
- package/resources/themes/md-dark-indigo/theme.css +760 -742
- package/resources/themes/md-light-deeppurple/theme.css +635 -617
- package/resources/themes/md-light-indigo/theme.css +635 -617
- package/resources/themes/mdc-dark-deeppurple/theme.css +760 -742
- package/resources/themes/mdc-dark-indigo/theme.css +760 -742
- package/resources/themes/mdc-light-deeppurple/theme.css +635 -617
- package/resources/themes/mdc-light-indigo/theme.css +635 -617
- package/resources/themes/mira/theme.css +458 -591
- package/resources/themes/nano/theme.css +418 -584
- package/resources/themes/nova/theme.css +422 -584
- package/resources/themes/nova-accent/theme.css +419 -584
- package/resources/themes/nova-alt/theme.css +422 -584
- package/resources/themes/rhea/theme.css +419 -584
- package/resources/themes/saga-blue/theme.css +420 -584
- package/resources/themes/saga-green/theme.css +420 -584
- package/resources/themes/saga-orange/theme.css +420 -584
- package/resources/themes/saga-purple/theme.css +420 -584
- package/resources/themes/soho-dark/theme.css +454 -615
- package/resources/themes/soho-light/theme.css +430 -589
- package/resources/themes/tailwind-light/theme.css +463 -614
- package/resources/themes/vela-blue/theme.css +420 -584
- package/resources/themes/vela-green/theme.css +420 -584
- package/resources/themes/vela-orange/theme.css +420 -584
- package/resources/themes/vela-purple/theme.css +420 -584
- package/resources/themes/viva-dark/theme.css +444 -589
- package/resources/themes/viva-light/theme.css +444 -589
- package/scrollpanel/scrollpanel.d.ts +1 -0
- package/scrolltop/scrolltop.d.ts +1 -0
- package/selectbutton/selectbutton.d.ts +14 -2
- package/sidebar/sidebar.d.ts +7 -0
- package/slidemenu/slidemenu.d.ts +20 -2
- package/slider/slider.d.ts +16 -2
- package/speeddial/speeddial.d.ts +7 -0
- package/speeddial/speeddial.interface.d.ts +17 -0
- package/spinner/spinner.d.ts +10 -0
- package/splitbutton/splitbutton.d.ts +81 -8
- package/splitter/splitter.d.ts +3 -0
- package/steps/steps.d.ts +3 -0
- package/styleclass/styleclass.d.ts +2 -0
- package/table/table.d.ts +65 -1
- package/tabmenu/tabmenu.d.ts +2 -0
- package/tabview/tabview.d.ts +7 -0
- package/tag/tag.d.ts +11 -2
- package/tieredmenu/tieredmenu.d.ts +14 -3
- package/toast/toast.d.ts +7 -0
- package/togglebutton/togglebutton.d.ts +11 -2
- package/tooltip/tooltip.d.ts +9 -0
- package/tree/tree.d.ts +19 -0
- package/treeselect/treeselect.d.ts +36 -6
- package/treetable/treetable.d.ts +61 -4
- package/tristatecheckbox/tristatecheckbox.d.ts +14 -4
- package/virtualscroller/virtualscroller.d.ts +3 -0
@@ -94,6 +94,7 @@ export declare class ScrollPanel implements AfterViewInit, AfterContentInit, OnD
|
|
94
94
|
refresh(): void;
|
95
95
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollPanel, never>;
|
96
96
|
static ɵcmp: i0.ɵɵComponentDeclaration<ScrollPanel, "p-scrollPanel", never, { "style": { "alias": "style"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "step": { "alias": "step"; "required": false; }; }, {}, ["templates"], ["*"], false, never>;
|
97
|
+
static ngAcceptInputType_step: unknown;
|
97
98
|
}
|
98
99
|
export declare class ScrollPanelModule {
|
99
100
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollPanelModule, never>;
|
package/scrolltop/scrolltop.d.ts
CHANGED
@@ -88,6 +88,7 @@ export declare class ScrollTop implements OnInit, OnDestroy {
|
|
88
88
|
ngOnDestroy(): void;
|
89
89
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollTop, never>;
|
90
90
|
static ɵcmp: i0.ɵɵComponentDeclaration<ScrollTop, "p-scrollTop", never, { "styleClass": { "alias": "styleClass"; "required": false; }; "style": { "alias": "style"; "required": false; }; "target": { "alias": "target"; "required": false; }; "threshold": { "alias": "threshold"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "behavior": { "alias": "behavior"; "required": false; }; "showTransitionOptions": { "alias": "showTransitionOptions"; "required": false; }; "hideTransitionOptions": { "alias": "hideTransitionOptions"; "required": false; }; "buttonAriaLabel": { "alias": "buttonAriaLabel"; "required": false; }; }, {}, ["templates"], never, false, never>;
|
91
|
+
static ngAcceptInputType_threshold: unknown;
|
91
92
|
}
|
92
93
|
export declare class ScrollTopModule {
|
93
94
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollTopModule, never>;
|
@@ -7,6 +7,7 @@ import * as i0 from "@angular/core";
|
|
7
7
|
import * as i1 from "@angular/common";
|
8
8
|
import * as i2 from "primeng/ripple";
|
9
9
|
import * as i3 from "primeng/api";
|
10
|
+
import * as i4 from "primeng/autofocus";
|
10
11
|
export declare const SELECTBUTTON_VALUE_ACCESSOR: any;
|
11
12
|
/**
|
12
13
|
* SelectButton is used to choose single or multiple items from a list using buttons.
|
@@ -79,6 +80,11 @@ export declare class SelectButton implements ControlValueAccessor {
|
|
79
80
|
* @group Props
|
80
81
|
*/
|
81
82
|
dataKey: string | undefined;
|
83
|
+
/**
|
84
|
+
* When present, it specifies that the component should automatically get focus on load.
|
85
|
+
* @group Props
|
86
|
+
*/
|
87
|
+
autofocus: boolean | undefined;
|
82
88
|
/**
|
83
89
|
* Callback to invoke on input click.
|
84
90
|
* @param {SelectButtonOptionClickEvent} event - Custom click event.
|
@@ -115,10 +121,16 @@ export declare class SelectButton implements ControlValueAccessor {
|
|
115
121
|
removeOption(option: any): void;
|
116
122
|
isSelected(option: any): boolean;
|
117
123
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectButton, never>;
|
118
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectButton, "p-selectButton", never, { "options": { "alias": "options"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "optionDisabled": { "alias": "optionDisabled"; "required": false; }; "unselectable": { "alias": "unselectable"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "allowEmpty": { "alias": "allowEmpty"; "required": false; }; "style": { "alias": "style"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dataKey": { "alias": "dataKey"; "required": false; }; }, { "onOptionClick": "onOptionClick"; "onChange": "onChange"; }, ["itemTemplate"], never, false, never>;
|
124
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectButton, "p-selectButton", never, { "options": { "alias": "options"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "optionDisabled": { "alias": "optionDisabled"; "required": false; }; "unselectable": { "alias": "unselectable"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "allowEmpty": { "alias": "allowEmpty"; "required": false; }; "style": { "alias": "style"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dataKey": { "alias": "dataKey"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; }, { "onOptionClick": "onOptionClick"; "onChange": "onChange"; }, ["itemTemplate"], never, false, never>;
|
125
|
+
static ngAcceptInputType_unselectable: unknown;
|
126
|
+
static ngAcceptInputType_tabindex: unknown;
|
127
|
+
static ngAcceptInputType_multiple: unknown;
|
128
|
+
static ngAcceptInputType_allowEmpty: unknown;
|
129
|
+
static ngAcceptInputType_disabled: unknown;
|
130
|
+
static ngAcceptInputType_autofocus: unknown;
|
119
131
|
}
|
120
132
|
export declare class SelectButtonModule {
|
121
133
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectButtonModule, never>;
|
122
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SelectButtonModule, [typeof SelectButton], [typeof i1.CommonModule, typeof i2.RippleModule, typeof i3.SharedModule], [typeof SelectButton, typeof i3.SharedModule]>;
|
134
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SelectButtonModule, [typeof SelectButton], [typeof i1.CommonModule, typeof i2.RippleModule, typeof i3.SharedModule, typeof i4.AutoFocusModule], [typeof SelectButton, typeof i3.SharedModule]>;
|
123
135
|
static ɵinj: i0.ɵɵInjectorDeclaration<SelectButtonModule>;
|
124
136
|
}
|
package/sidebar/sidebar.d.ts
CHANGED
@@ -149,6 +149,13 @@ export declare class Sidebar implements AfterViewInit, AfterContentInit, OnDestr
|
|
149
149
|
ngOnDestroy(): void;
|
150
150
|
static ɵfac: i0.ɵɵFactoryDeclaration<Sidebar, never>;
|
151
151
|
static ɵcmp: i0.ɵɵComponentDeclaration<Sidebar, "p-sidebar", never, { "appendTo": { "alias": "appendTo"; "required": false; }; "blockScroll": { "alias": "blockScroll"; "required": false; }; "style": { "alias": "style"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "ariaCloseLabel": { "alias": "ariaCloseLabel"; "required": false; }; "autoZIndex": { "alias": "autoZIndex"; "required": false; }; "baseZIndex": { "alias": "baseZIndex"; "required": false; }; "modal": { "alias": "modal"; "required": false; }; "dismissible": { "alias": "dismissible"; "required": false; }; "showCloseIcon": { "alias": "showCloseIcon"; "required": false; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; }; "transitionOptions": { "alias": "transitionOptions"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "position": { "alias": "position"; "required": false; }; "fullScreen": { "alias": "fullScreen"; "required": false; }; }, { "onShow": "onShow"; "onHide": "onHide"; "visibleChange": "visibleChange"; }, ["templates"], ["*"], false, never>;
|
152
|
+
static ngAcceptInputType_blockScroll: unknown;
|
153
|
+
static ngAcceptInputType_autoZIndex: unknown;
|
154
|
+
static ngAcceptInputType_baseZIndex: unknown;
|
155
|
+
static ngAcceptInputType_modal: unknown;
|
156
|
+
static ngAcceptInputType_dismissible: unknown;
|
157
|
+
static ngAcceptInputType_showCloseIcon: unknown;
|
158
|
+
static ngAcceptInputType_closeOnEscape: unknown;
|
152
159
|
}
|
153
160
|
export declare class SidebarModule {
|
154
161
|
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarModule, never>;
|
package/slidemenu/slidemenu.d.ts
CHANGED
@@ -20,7 +20,7 @@ export declare class SlideMenuSub {
|
|
20
20
|
menuWidth: number;
|
21
21
|
root: boolean | undefined;
|
22
22
|
easing: string;
|
23
|
-
effectDuration:
|
23
|
+
effectDuration: number;
|
24
24
|
autoDisplay: boolean | undefined;
|
25
25
|
autoZIndex: boolean;
|
26
26
|
baseZIndex: number;
|
@@ -57,6 +57,15 @@ export declare class SlideMenuSub {
|
|
57
57
|
onMenuKeyDown(event: KeyboardEvent): void;
|
58
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<SlideMenuSub, never>;
|
59
59
|
static ɵcmp: i0.ɵɵComponentDeclaration<SlideMenuSub, "p-slideMenuSub", never, { "items": { "alias": "items"; "required": false; }; "menuWidth": { "alias": "menuWidth"; "required": false; }; "root": { "alias": "root"; "required": false; }; "easing": { "alias": "easing"; "required": false; }; "effectDuration": { "alias": "effectDuration"; "required": false; }; "autoDisplay": { "alias": "autoDisplay"; "required": false; }; "autoZIndex": { "alias": "autoZIndex"; "required": false; }; "baseZIndex": { "alias": "baseZIndex"; "required": false; }; "popup": { "alias": "popup"; "required": false; }; "menuId": { "alias": "menuId"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "level": { "alias": "level"; "required": false; }; "focusedItemId": { "alias": "focusedItemId"; "required": false; }; "activeItemPath": { "alias": "activeItemPath"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; }, { "itemClick": "itemClick"; "itemMouseEnter": "itemMouseEnter"; "menuFocus": "menuFocus"; "menuBlur": "menuBlur"; "menuKeydown": "menuKeydown"; }, never, never, false, never>;
|
60
|
+
static ngAcceptInputType_menuWidth: unknown;
|
61
|
+
static ngAcceptInputType_root: unknown;
|
62
|
+
static ngAcceptInputType_effectDuration: unknown;
|
63
|
+
static ngAcceptInputType_autoDisplay: unknown;
|
64
|
+
static ngAcceptInputType_autoZIndex: unknown;
|
65
|
+
static ngAcceptInputType_baseZIndex: unknown;
|
66
|
+
static ngAcceptInputType_popup: unknown;
|
67
|
+
static ngAcceptInputType_level: unknown;
|
68
|
+
static ngAcceptInputType_tabindex: unknown;
|
60
69
|
}
|
61
70
|
/**
|
62
71
|
* SlideMenu displays submenus with slide animation.
|
@@ -90,7 +99,7 @@ export declare class SlideMenu implements OnInit, AfterContentInit, OnDestroy {
|
|
90
99
|
* Duration of the sliding animation in milliseconds.
|
91
100
|
* @group Props
|
92
101
|
*/
|
93
|
-
effectDuration:
|
102
|
+
effectDuration: number;
|
94
103
|
/**
|
95
104
|
* Easing animation to use for sliding.
|
96
105
|
* @group Props
|
@@ -296,6 +305,15 @@ export declare class SlideMenu implements OnInit, AfterContentInit, OnDestroy {
|
|
296
305
|
ngOnDestroy(): void;
|
297
306
|
static ɵfac: i0.ɵɵFactoryDeclaration<SlideMenu, never>;
|
298
307
|
static ɵcmp: i0.ɵɵComponentDeclaration<SlideMenu, "p-slideMenu", never, { "model": { "alias": "model"; "required": false; }; "menuWidth": { "alias": "menuWidth"; "required": false; }; "viewportHeight": { "alias": "viewportHeight"; "required": false; }; "effectDuration": { "alias": "effectDuration"; "required": false; }; "easing": { "alias": "easing"; "required": false; }; "backLabel": { "alias": "backLabel"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "popup": { "alias": "popup"; "required": false; }; "style": { "alias": "style"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "autoZIndex": { "alias": "autoZIndex"; "required": false; }; "baseZIndex": { "alias": "baseZIndex"; "required": false; }; "autoDisplay": { "alias": "autoDisplay"; "required": false; }; "showTransitionOptions": { "alias": "showTransitionOptions"; "required": false; }; "hideTransitionOptions": { "alias": "hideTransitionOptions"; "required": false; }; "id": { "alias": "id"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; }, { "onShow": "onShow"; "onHide": "onHide"; }, ["templates"], never, false, never>;
|
308
|
+
static ngAcceptInputType_menuWidth: unknown;
|
309
|
+
static ngAcceptInputType_viewportHeight: unknown;
|
310
|
+
static ngAcceptInputType_effectDuration: unknown;
|
311
|
+
static ngAcceptInputType_disabled: unknown;
|
312
|
+
static ngAcceptInputType_tabindex: unknown;
|
313
|
+
static ngAcceptInputType_popup: unknown;
|
314
|
+
static ngAcceptInputType_autoZIndex: unknown;
|
315
|
+
static ngAcceptInputType_baseZIndex: unknown;
|
316
|
+
static ngAcceptInputType_autoDisplay: unknown;
|
299
317
|
}
|
300
318
|
export declare class SlideMenuModule {
|
301
319
|
static ɵfac: i0.ɵɵFactoryDeclaration<SlideMenuModule, never>;
|
package/slider/slider.d.ts
CHANGED
@@ -4,6 +4,7 @@ import { Nullable, VoidListener } from 'primeng/ts-helpers';
|
|
4
4
|
import { SliderChangeEvent, SliderSlideEndEvent } from './slider.interface';
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
import * as i1 from "@angular/common";
|
7
|
+
import * as i2 from "primeng/autofocus";
|
7
8
|
export declare const SLIDER_VALUE_ACCESSOR: any;
|
8
9
|
/**
|
9
10
|
* Slider is a component to provide input with a drag handle.
|
@@ -78,6 +79,11 @@ export declare class Slider implements OnDestroy, ControlValueAccessor {
|
|
78
79
|
* @group Props
|
79
80
|
*/
|
80
81
|
tabindex: number;
|
82
|
+
/**
|
83
|
+
* When present, it specifies that the component should automatically get focus on load.
|
84
|
+
* @group Props
|
85
|
+
*/
|
86
|
+
autofocus: boolean | undefined;
|
81
87
|
/**
|
82
88
|
* Callback to invoke on value change.
|
83
89
|
* @param {SliderChangeEvent} event - Custom value change event.
|
@@ -151,10 +157,18 @@ export declare class Slider implements OnDestroy, ControlValueAccessor {
|
|
151
157
|
get minVal(): number;
|
152
158
|
get maxVal(): number;
|
153
159
|
static ɵfac: i0.ɵɵFactoryDeclaration<Slider, never>;
|
154
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<Slider, "p-slider", never, { "animate": { "alias": "animate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "step": { "alias": "step"; "required": false; }; "range": { "alias": "range"; "required": false; }; "style": { "alias": "style"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; }, { "onChange": "onChange"; "onSlideEnd": "onSlideEnd"; }, never, never, false, never>;
|
160
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<Slider, "p-slider", never, { "animate": { "alias": "animate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "step": { "alias": "step"; "required": false; }; "range": { "alias": "range"; "required": false; }; "style": { "alias": "style"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; }, { "onChange": "onChange"; "onSlideEnd": "onSlideEnd"; }, never, never, false, never>;
|
161
|
+
static ngAcceptInputType_animate: unknown;
|
162
|
+
static ngAcceptInputType_disabled: unknown;
|
163
|
+
static ngAcceptInputType_min: unknown;
|
164
|
+
static ngAcceptInputType_max: unknown;
|
165
|
+
static ngAcceptInputType_step: unknown;
|
166
|
+
static ngAcceptInputType_range: unknown;
|
167
|
+
static ngAcceptInputType_tabindex: unknown;
|
168
|
+
static ngAcceptInputType_autofocus: unknown;
|
155
169
|
}
|
156
170
|
export declare class SliderModule {
|
157
171
|
static ɵfac: i0.ɵɵFactoryDeclaration<SliderModule, never>;
|
158
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SliderModule, [typeof Slider], [typeof i1.CommonModule], [typeof Slider]>;
|
172
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SliderModule, [typeof Slider], [typeof i1.CommonModule, typeof i2.AutoFocusModule], [typeof Slider]>;
|
159
173
|
static ɵinj: i0.ɵɵInjectorDeclaration<SliderModule>;
|
160
174
|
}
|
package/speeddial/speeddial.d.ts
CHANGED
@@ -165,6 +165,7 @@ export declare class SpeedDial implements AfterViewInit, AfterContentInit, OnDes
|
|
165
165
|
list: ElementRef | undefined;
|
166
166
|
templates: QueryList<PrimeTemplate> | undefined;
|
167
167
|
buttonTemplate: TemplateRef<any> | undefined;
|
168
|
+
itemTemplate: TemplateRef<any> | undefined;
|
168
169
|
isItemClicked: boolean;
|
169
170
|
_visible: boolean;
|
170
171
|
documentClickListener: any;
|
@@ -274,6 +275,12 @@ export declare class SpeedDial implements AfterViewInit, AfterContentInit, OnDes
|
|
274
275
|
ngOnDestroy(): void;
|
275
276
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpeedDial, never>;
|
276
277
|
static ɵcmp: i0.ɵɵComponentDeclaration<SpeedDial, "p-speedDial", never, { "id": { "alias": "id"; "required": false; }; "model": { "alias": "model"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "style": { "alias": "style"; "required": false; }; "className": { "alias": "className"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "transitionDelay": { "alias": "transitionDelay"; "required": false; }; "type": { "alias": "type"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; "mask": { "alias": "mask"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "hideOnClickOutside": { "alias": "hideOnClickOutside"; "required": false; }; "buttonStyle": { "alias": "buttonStyle"; "required": false; }; "buttonClassName": { "alias": "buttonClassName"; "required": false; }; "maskStyle": { "alias": "maskStyle"; "required": false; }; "maskClassName": { "alias": "maskClassName"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "hideIcon": { "alias": "hideIcon"; "required": false; }; "rotateAnimation": { "alias": "rotateAnimation"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; }, { "onVisibleChange": "onVisibleChange"; "visibleChange": "visibleChange"; "onClick": "onClick"; "onShow": "onShow"; "onHide": "onHide"; }, ["templates"], never, false, never>;
|
278
|
+
static ngAcceptInputType_transitionDelay: unknown;
|
279
|
+
static ngAcceptInputType_radius: unknown;
|
280
|
+
static ngAcceptInputType_mask: unknown;
|
281
|
+
static ngAcceptInputType_disabled: unknown;
|
282
|
+
static ngAcceptInputType_hideOnClickOutside: unknown;
|
283
|
+
static ngAcceptInputType_rotateAnimation: unknown;
|
277
284
|
}
|
278
285
|
export declare class SpeedDialModule {
|
279
286
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpeedDialModule, never>;
|
@@ -1,9 +1,26 @@
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
2
|
+
import { MenuItem } from 'primeng/api';
|
2
3
|
/**
|
3
4
|
* Defines valid templates in SpeedDial.
|
4
5
|
* @group Templates
|
5
6
|
*/
|
6
7
|
export interface SpeedDialTemplates {
|
8
|
+
/**
|
9
|
+
* Custom template of item.
|
10
|
+
*/
|
11
|
+
item(context: {
|
12
|
+
/**
|
13
|
+
* Data of the item.
|
14
|
+
*/
|
15
|
+
$implicit: MenuItem[];
|
16
|
+
/**
|
17
|
+
* Index of the item.
|
18
|
+
*/
|
19
|
+
index: number;
|
20
|
+
}): TemplateRef<{
|
21
|
+
$implicit: MenuItem[];
|
22
|
+
index: number;
|
23
|
+
}>;
|
7
24
|
/**
|
8
25
|
* Custom template of button.
|
9
26
|
*/
|
package/spinner/spinner.d.ts
CHANGED
@@ -72,6 +72,16 @@ export declare class Spinner implements OnInit, ControlValueAccessor {
|
|
72
72
|
updateFilledState(): void;
|
73
73
|
static ɵfac: i0.ɵɵFactoryDeclaration<Spinner, never>;
|
74
74
|
static ɵcmp: i0.ɵɵComponentDeclaration<Spinner, "p-spinner", never, { "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "size": { "alias": "size"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "required": { "alias": "required"; "required": false; }; "name": { "alias": "name"; "required": false; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; }; "inputStyle": { "alias": "inputStyle"; "required": false; }; "inputStyleClass": { "alias": "inputStyleClass"; "required": false; }; "formatInput": { "alias": "formatInput"; "required": false; }; "decimalSeparator": { "alias": "decimalSeparator"; "required": false; }; "thousandSeparator": { "alias": "thousandSeparator"; "required": false; }; "precision": { "alias": "precision"; "required": false; }; "step": { "alias": "step"; "required": false; }; }, { "onChange": "onChange"; "onFocus": "onFocus"; "onBlur": "onBlur"; }, never, never, false, never>;
|
75
|
+
static ngAcceptInputType_min: unknown;
|
76
|
+
static ngAcceptInputType_max: unknown;
|
77
|
+
static ngAcceptInputType_maxlength: unknown;
|
78
|
+
static ngAcceptInputType_size: unknown;
|
79
|
+
static ngAcceptInputType_disabled: unknown;
|
80
|
+
static ngAcceptInputType_readonly: unknown;
|
81
|
+
static ngAcceptInputType_tabindex: unknown;
|
82
|
+
static ngAcceptInputType_required: unknown;
|
83
|
+
static ngAcceptInputType_formatInput: unknown;
|
84
|
+
static ngAcceptInputType_precision: unknown;
|
75
85
|
}
|
76
86
|
export declare class SpinnerModule {
|
77
87
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpinnerModule, never>;
|
@@ -6,7 +6,8 @@ import * as i0 from "@angular/core";
|
|
6
6
|
import * as i1 from "@angular/common";
|
7
7
|
import * as i2 from "primeng/button";
|
8
8
|
import * as i3 from "primeng/tieredmenu";
|
9
|
-
import * as i4 from "primeng/
|
9
|
+
import * as i4 from "primeng/autofocus";
|
10
|
+
import * as i5 from "primeng/icons/chevrondown";
|
10
11
|
type SplitButtonIconPosition = 'left' | 'right';
|
11
12
|
/**
|
12
13
|
* SplitButton groups a set of commands in an overlay with a default command.
|
@@ -18,6 +19,41 @@ export declare class SplitButton {
|
|
18
19
|
* @group Props
|
19
20
|
*/
|
20
21
|
model: MenuItem[] | undefined;
|
22
|
+
/**
|
23
|
+
* Defines the style of the button.
|
24
|
+
* @group Props
|
25
|
+
*/
|
26
|
+
severity: 'success' | 'info' | 'warning' | 'danger' | 'help' | 'primary' | 'secondary' | 'contrast' | null | undefined;
|
27
|
+
/**
|
28
|
+
* Add a shadow to indicate elevation.
|
29
|
+
* @group Props
|
30
|
+
*/
|
31
|
+
raised: boolean;
|
32
|
+
/**
|
33
|
+
* Add a circular border radius to the button.
|
34
|
+
* @group Props
|
35
|
+
*/
|
36
|
+
rounded: boolean;
|
37
|
+
/**
|
38
|
+
* Add a textual class to the button without a background initially.
|
39
|
+
* @group Props
|
40
|
+
*/
|
41
|
+
text: boolean;
|
42
|
+
/**
|
43
|
+
* Add a border class without a background initially.
|
44
|
+
* @group Props
|
45
|
+
*/
|
46
|
+
outlined: boolean;
|
47
|
+
/**
|
48
|
+
* Defines the size of the button.
|
49
|
+
* @group Props
|
50
|
+
*/
|
51
|
+
size: 'small' | 'large' | undefined | null;
|
52
|
+
/**
|
53
|
+
* Add a plain textual class to the button without a background initially.
|
54
|
+
* @group Props
|
55
|
+
*/
|
56
|
+
plain: boolean;
|
21
57
|
/**
|
22
58
|
* Name of the icon.
|
23
59
|
* @group Props
|
@@ -61,11 +97,6 @@ export declare class SplitButton {
|
|
61
97
|
* When present, it specifies that the element should be disabled.
|
62
98
|
* @group Props
|
63
99
|
*/
|
64
|
-
disabled: boolean | undefined;
|
65
|
-
/**
|
66
|
-
* Index of the element in tabbing order.
|
67
|
-
* @group Prop
|
68
|
-
*/
|
69
100
|
tabindex: number | undefined;
|
70
101
|
/**
|
71
102
|
* Target element to attach the overlay, valid values are "body" or a local ng-template variable of another element (note: use binding with brackets for template variables, e.g. [appendTo]="mydiv" for a div element having #mydiv as variable name).
|
@@ -100,6 +131,11 @@ export declare class SplitButton {
|
|
100
131
|
* Menu Button Props
|
101
132
|
*/
|
102
133
|
menuButtonProps: MenuButtonProps | undefined;
|
134
|
+
/**
|
135
|
+
* When present, it specifies that the component should automatically get focus on load.
|
136
|
+
* @group Props
|
137
|
+
*/
|
138
|
+
autofocus: boolean | undefined;
|
103
139
|
/**
|
104
140
|
* Callback to invoke when default command button is clicked.
|
105
141
|
* @param {MouseEvent} event - Mouse event.
|
@@ -111,6 +147,27 @@ export declare class SplitButton {
|
|
111
147
|
* @param {MouseEvent} event - Mouse event.
|
112
148
|
* @group Emits
|
113
149
|
*/
|
150
|
+
private _disabled;
|
151
|
+
set disabled(v: boolean | undefined);
|
152
|
+
get disabled(): boolean | undefined;
|
153
|
+
/**
|
154
|
+
* Index of the element in tabbing order.
|
155
|
+
* @group Prop
|
156
|
+
*/
|
157
|
+
/**
|
158
|
+
* When present, it specifies that the menu button element should be disabled.
|
159
|
+
* @group Props
|
160
|
+
*/
|
161
|
+
private _menuButtonDisabled;
|
162
|
+
set menuButtonDisabled(v: boolean | undefined);
|
163
|
+
get menuButtonDisabled(): boolean | undefined;
|
164
|
+
/**
|
165
|
+
* When present, it specifies that the button element should be disabled.
|
166
|
+
* @group Props
|
167
|
+
*/
|
168
|
+
private _buttonDisabled;
|
169
|
+
set buttonDisabled(v: boolean | undefined);
|
170
|
+
get buttonDisabled(): boolean;
|
114
171
|
onDropdownClick: EventEmitter<MouseEvent>;
|
115
172
|
containerViewChild: ElementRef | undefined;
|
116
173
|
buttonViewChild: ElementRef | undefined;
|
@@ -122,15 +179,31 @@ export declare class SplitButton {
|
|
122
179
|
isExpanded: import("@angular/core").WritableSignal<boolean>;
|
123
180
|
ngOnInit(): void;
|
124
181
|
ngAfterContentInit(): void;
|
182
|
+
get containerClass(): {
|
183
|
+
[x: string]: boolean | "small" | "large";
|
184
|
+
'p-splitbutton p-component': boolean;
|
185
|
+
'p-button-raised': boolean;
|
186
|
+
'p-button-rounded': boolean;
|
187
|
+
'p-button-outlined': boolean;
|
188
|
+
'p-button-text': boolean;
|
189
|
+
};
|
125
190
|
onDefaultButtonClick(event: MouseEvent): void;
|
126
191
|
onDropdownButtonClick(event?: MouseEvent): void;
|
127
192
|
onDropdownButtonKeydown(event: KeyboardEvent): void;
|
128
193
|
static ɵfac: i0.ɵɵFactoryDeclaration<SplitButton, never>;
|
129
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SplitButton, "p-splitButton", never, { "model": { "alias": "model"; "required": false; }; "
|
194
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SplitButton, "p-splitButton", never, { "model": { "alias": "model"; "required": false; }; "severity": { "alias": "severity"; "required": false; }; "raised": { "alias": "raised"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "text": { "alias": "text"; "required": false; }; "outlined": { "alias": "outlined"; "required": false; }; "size": { "alias": "size"; "required": false; }; "plain": { "alias": "plain"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPos": { "alias": "iconPos"; "required": false; }; "label": { "alias": "label"; "required": false; }; "style": { "alias": "style"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "menuStyle": { "alias": "menuStyle"; "required": false; }; "menuStyleClass": { "alias": "menuStyleClass"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "dir": { "alias": "dir"; "required": false; }; "expandAriaLabel": { "alias": "expandAriaLabel"; "required": false; }; "showTransitionOptions": { "alias": "showTransitionOptions"; "required": false; }; "hideTransitionOptions": { "alias": "hideTransitionOptions"; "required": false; }; "buttonProps": { "alias": "buttonProps"; "required": false; }; "menuButtonProps": { "alias": "menuButtonProps"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "menuButtonDisabled": { "alias": "menuButtonDisabled"; "required": false; }; "buttonDisabled": { "alias": "buttonDisabled"; "required": false; }; }, { "onClick": "onClick"; "onDropdownClick": "onDropdownClick"; }, ["templates"], never, false, never>;
|
195
|
+
static ngAcceptInputType_raised: unknown;
|
196
|
+
static ngAcceptInputType_rounded: unknown;
|
197
|
+
static ngAcceptInputType_text: unknown;
|
198
|
+
static ngAcceptInputType_outlined: unknown;
|
199
|
+
static ngAcceptInputType_plain: unknown;
|
200
|
+
static ngAcceptInputType_tabindex: unknown;
|
201
|
+
static ngAcceptInputType_autofocus: unknown;
|
202
|
+
static ngAcceptInputType_disabled: unknown;
|
130
203
|
}
|
131
204
|
export declare class SplitButtonModule {
|
132
205
|
static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonModule, never>;
|
133
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SplitButtonModule, [typeof SplitButton], [typeof i1.CommonModule, typeof i2.ButtonModule, typeof i3.TieredMenuModule, typeof i4.ChevronDownIcon], [typeof SplitButton, typeof i2.ButtonModule, typeof i3.TieredMenuModule]>;
|
206
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SplitButtonModule, [typeof SplitButton], [typeof i1.CommonModule, typeof i2.ButtonModule, typeof i3.TieredMenuModule, typeof i4.AutoFocusModule, typeof i5.ChevronDownIcon], [typeof SplitButton, typeof i2.ButtonModule, typeof i3.TieredMenuModule]>;
|
134
207
|
static ɵinj: i0.ɵɵInjectorDeclaration<SplitButtonModule>;
|
135
208
|
}
|
136
209
|
export {};
|
package/splitter/splitter.d.ts
CHANGED
@@ -154,6 +154,9 @@ export declare class Splitter {
|
|
154
154
|
horizontal(): boolean;
|
155
155
|
static ɵfac: i0.ɵɵFactoryDeclaration<Splitter, never>;
|
156
156
|
static ɵcmp: i0.ɵɵComponentDeclaration<Splitter, "p-splitter", never, { "styleClass": { "alias": "styleClass"; "required": false; }; "panelStyleClass": { "alias": "panelStyleClass"; "required": false; }; "style": { "alias": "style"; "required": false; }; "panelStyle": { "alias": "panelStyle"; "required": false; }; "stateStorage": { "alias": "stateStorage"; "required": false; }; "stateKey": { "alias": "stateKey"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "gutterSize": { "alias": "gutterSize"; "required": false; }; "step": { "alias": "step"; "required": false; }; "minSizes": { "alias": "minSizes"; "required": false; }; "panelSizes": { "alias": "panelSizes"; "required": false; }; }, { "onResizeEnd": "onResizeEnd"; "onResizeStart": "onResizeStart"; }, ["templates"], never, false, never>;
|
157
|
+
static ngAcceptInputType_gutterSize: unknown;
|
158
|
+
static ngAcceptInputType_step: unknown;
|
159
|
+
static ngAcceptInputType_minSizes: unknown;
|
157
160
|
}
|
158
161
|
export declare class SplitterModule {
|
159
162
|
static ɵfac: i0.ɵɵFactoryDeclaration<SplitterModule, never>;
|
package/steps/steps.d.ts
CHANGED
@@ -74,6 +74,9 @@ export declare class Steps implements OnInit, OnDestroy {
|
|
74
74
|
ngOnDestroy(): void;
|
75
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<Steps, never>;
|
76
76
|
static ɵcmp: i0.ɵɵComponentDeclaration<Steps, "p-steps", never, { "activeIndex": { "alias": "activeIndex"; "required": false; }; "model": { "alias": "model"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "style": { "alias": "style"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "exact": { "alias": "exact"; "required": false; }; }, { "activeIndexChange": "activeIndexChange"; }, never, never, false, never>;
|
77
|
+
static ngAcceptInputType_activeIndex: unknown;
|
78
|
+
static ngAcceptInputType_readonly: unknown;
|
79
|
+
static ngAcceptInputType_exact: unknown;
|
77
80
|
}
|
78
81
|
export declare class StepsModule {
|
79
82
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepsModule, never>;
|
@@ -98,6 +98,8 @@ export declare class StyleClass implements OnDestroy {
|
|
98
98
|
ngOnDestroy(): void;
|
99
99
|
static ɵfac: i0.ɵɵFactoryDeclaration<StyleClass, never>;
|
100
100
|
static ɵdir: i0.ɵɵDirectiveDeclaration<StyleClass, "[pStyleClass]", never, { "selector": { "alias": "pStyleClass"; "required": false; }; "enterClass": { "alias": "enterClass"; "required": false; }; "enterFromClass": { "alias": "enterFromClass"; "required": false; }; "enterActiveClass": { "alias": "enterActiveClass"; "required": false; }; "enterToClass": { "alias": "enterToClass"; "required": false; }; "leaveClass": { "alias": "leaveClass"; "required": false; }; "leaveFromClass": { "alias": "leaveFromClass"; "required": false; }; "leaveActiveClass": { "alias": "leaveActiveClass"; "required": false; }; "leaveToClass": { "alias": "leaveToClass"; "required": false; }; "hideOnOutsideClick": { "alias": "hideOnOutsideClick"; "required": false; }; "toggleClass": { "alias": "toggleClass"; "required": false; }; "hideOnEscape": { "alias": "hideOnEscape"; "required": false; }; }, {}, never, never, false, never>;
|
101
|
+
static ngAcceptInputType_hideOnOutsideClick: unknown;
|
102
|
+
static ngAcceptInputType_hideOnEscape: unknown;
|
101
103
|
}
|
102
104
|
export declare class StyleClassModule {
|
103
105
|
static ɵfac: i0.ɵɵFactoryDeclaration<StyleClassModule, never>;
|