@adyen/bento-vue3 1.41.0 → 1.43.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/dist/@types/components.d.ts +4 -0
- package/dist/@types/packages/vue2/src/components/data-grid/components/data-grid-cell/data-grid-cell.vue.d.ts +15 -0
- package/dist/@types/packages/vue2/src/components/data-grid/components/data-grid-row/data-grid-row.vue.d.ts +1 -350
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-calculate-column-width/use-calculate-column-width.types.d.ts +1 -0
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-scroller/use-scroller.d.ts +1 -0
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-selector/use-selector.d.ts +3 -2
- package/dist/@types/packages/vue2/src/components/data-grid/data-grid.types.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/data-grid/data-grid.vue.d.ts +33 -1
- package/dist/@types/packages/vue2/src/components/date-range-picker/components/date-range-picker-calendar/date-range-picker-calendar.vue.d.ts +7 -0
- package/dist/@types/packages/vue2/src/components/date-range-picker/date-range-picker.vue.d.ts +7 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/components/file-uploader-file-card/components/file-uploader-file-card-animation/file-uploader-file-card-animation.vue.d.ts +24 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/components/file-uploader-file-card/components/index.d.ts +1 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/components/file-uploader-file-card/composables/use-truncated-file-name.d.ts +10 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/components/file-uploader-file-card/file-uploader-file-card.types.d.ts +11 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/components/file-uploader-file-card/file-uploader-file-card.vue.d.ts +63 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/components/file-uploader-file-card/index.d.ts +1 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/components/file-uploader-file-card/utils/get-file-icon/get-file-icon.d.ts +8 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/components/file-uploader-file-card/utils/get-file-icon-color/get-file-icon-color.d.ts +8 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/components/file-uploader-file-card/utils/index.d.ts +2 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/components/file-uploader-restrictions/file-uploader-restrictions.types.d.ts +39 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/components/file-uploader-restrictions/file-uploader-restrictions.vue.d.ts +68 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/components/file-uploader-restrictions/index.d.ts +1 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/composables/index.d.ts +1 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/composables/use-file-type-list/use-file-type-list.d.ts +11 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/file-uploader.types.d.ts +99 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/file-uploader.vue.d.ts +85 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/index.d.ts +2 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/utils/format-file-size/format-file-size.d.ts +9 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/utils/get-file-type/get-file-type.d.ts +8 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/utils/index.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/file-uploader/utils/read-file/read-file.d.ts +14 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/all-filters-modal/all-filters-modal.vue.d.ts +277 -37
- package/dist/@types/packages/vue2/src/components/filter-bar/components/all-filters-modal/components/all-filters-modal-button/all-filters-modal-button.vue.d.ts +1 -1
- package/dist/@types/packages/vue2/src/components/filter-bar/components/base-filter/base-filter.vue.d.ts +21 -6
- package/dist/@types/packages/vue2/src/components/filter-bar/components/base-filter-button/base-filter-button.vue.d.ts +1 -1
- package/dist/@types/packages/vue2/src/components/filter-bar/components/boolean-filter/boolean-filter.vue.d.ts +30 -6
- package/dist/@types/packages/vue2/src/components/filter-bar/components/date-filter/date-filter.vue.d.ts +30 -6
- package/dist/@types/packages/vue2/src/components/filter-bar/components/date-range-filter/date-range-filter.vue.d.ts +44 -6
- package/dist/@types/packages/vue2/src/components/filter-bar/components/filter-bar-button/filter-bar-button.vue.d.ts +5 -7
- package/dist/@types/packages/vue2/src/components/filter-bar/components/input-filter/input-filter.vue.d.ts +37 -6
- package/dist/@types/packages/vue2/src/components/filter-bar/components/input-with-dropdown-filter/input-with-dropdown-filter.vue.d.ts +8 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/range-filter/range-filter.vue.d.ts +37 -6
- package/dist/@types/packages/vue2/src/components/filter-bar/components/select-filter/components/select-filter-button/select-filter-button.vue.d.ts +15 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/select-filter/components/select-filter-dropdown/select-filter-dropdown.vue.d.ts +15 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/select-filter/select-filter.props.d.ts +7 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/select-filter/select-filter.vue.d.ts +9 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/select-filter/variants/select-avatar-filter/select-avatar-filter.vue.d.ts +24 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/select-filter/variants/select-country-filter/select-country-filter.vue.d.ts +9 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/select-filter/variants/select-currency-filter/select-currency-filter.vue.d.ts +24 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/select-filter/variants/select-payment-method-filter/select-payment-method-filter.vue.d.ts +24 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/select-filter/variants/select-tag-filter/select-tag-filter.vue.d.ts +24 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/filter-bar.types.d.ts +4 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/filter-bar.vue.d.ts +274 -30
- package/dist/@types/packages/vue2/src/components/input-field/input-field.vue.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/input-field-password/index.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/input-field-password/input-field-password.types.d.ts +77 -0
- package/dist/@types/packages/vue2/src/components/input-field-password/input-field-password.vue.d.ts +90 -0
- package/dist/@types/packages/vue2/src/components/input-field-password/utilities/input-field-password.validation.d.ts +37 -0
- package/dist/@types/packages/vue2/src/components/internal/tooltip/tooltip.vue.d.ts +43 -8
- package/dist/@types/packages/vue2/src/index.d.ts +2 -0
- package/dist/action-bar.js +1 -1
- package/dist/alert.js +1 -1
- package/dist/assets/accordion-item.css +1 -1
- package/dist/assets/action-bar.css +1 -1
- package/dist/assets/base-modal.css +1 -1
- package/dist/assets/card.css +1 -1
- package/dist/assets/data-grid.css +1 -1
- package/dist/assets/date-range-picker.css +1 -1
- package/dist/assets/dialog-page.css +1 -1
- package/dist/assets/file-uploader.css +1 -0
- package/dist/assets/filter-bar.css +1 -1
- package/dist/assets/input-field-password.css +1 -0
- package/dist/assets/input-field.css +1 -1
- package/dist/assets/inspector.css +1 -1
- package/dist/assets/menu.css +1 -1
- package/dist/assets/modal-fullscreen.css +1 -1
- package/dist/assets/popover.css +1 -1
- package/dist/assets/sidepanel.css +1 -1
- package/dist/assets/step.css +1 -1
- package/dist/assets/tooltip.css +1 -1
- package/dist/assets/typography.css +1 -1
- package/dist/button.js +2 -2
- package/dist/card.js +1 -1
- package/dist/checkbox.js +2 -2
- package/dist/chunks/{action-bar.BZIBGja0.js → action-bar.COQrEUYU.js} +5 -5
- package/dist/chunks/{action-bar.BZIBGja0.js.map → action-bar.COQrEUYU.js.map} +1 -1
- package/dist/chunks/{alert.CHddA_lK.js → alert.B9V6kUmo.js} +9 -9
- package/dist/chunks/{alert.CHddA_lK.js.map → alert.B9V6kUmo.js.map} +1 -1
- package/dist/chunks/{base-modal.6IqnDuvf.js → base-modal.ku0lyHOs.js} +2 -2
- package/dist/chunks/{base-modal.6IqnDuvf.js.map → base-modal.ku0lyHOs.js.map} +1 -1
- package/dist/chunks/{button-actions-with-menu.ByYlrFqZ.js → button-actions-with-menu.Bn7Kdx4v.js} +4 -4
- package/dist/chunks/{button-actions-with-menu.ByYlrFqZ.js.map → button-actions-with-menu.Bn7Kdx4v.js.map} +1 -1
- package/dist/chunks/{button-actions.ndsyVgzV.js → button-actions.Bjfo46Q_.js} +2 -2
- package/dist/chunks/{button-actions.ndsyVgzV.js.map → button-actions.Bjfo46Q_.js.map} +1 -1
- package/dist/chunks/{card.B6tMI3KP.js → card.D_XL2TWr.js} +2 -2
- package/dist/chunks/{card.B6tMI3KP.js.map → card.D_XL2TWr.js.map} +1 -1
- package/dist/chunks/{checkbox-group.Zf-GivDW.js → checkbox-group.BUmkYc2R.js} +4 -4
- package/dist/chunks/{checkbox-group.Zf-GivDW.js.map → checkbox-group.BUmkYc2R.js.map} +1 -1
- package/dist/chunks/{checkbox.DdMkyTo5.js → checkbox.L94hTcPY.js} +16 -16
- package/dist/chunks/{checkbox.DdMkyTo5.js.map → checkbox.L94hTcPY.js.map} +1 -1
- package/dist/chunks/{checkmark-circle-fill.ChV7Jy6r.js → checkmark-circle-fill.ClIf1E3H.js} +7 -7
- package/dist/chunks/{checkmark-circle-fill.ChV7Jy6r.js.map → checkmark-circle-fill.ClIf1E3H.js.map} +1 -1
- package/dist/chunks/{code-snippet.Dp_tDJ-S.js → code-snippet.DbUGxmYi.js} +5 -5
- package/dist/chunks/{code-snippet.Dp_tDJ-S.js.map → code-snippet.DbUGxmYi.js.map} +1 -1
- package/dist/chunks/{controls-group.RL8WrYdy.js → controls-group.Dg_YRS1e.js} +2 -2
- package/dist/chunks/{controls-group.RL8WrYdy.js.map → controls-group.Dg_YRS1e.js.map} +1 -1
- package/dist/chunks/{copy.dbbJppdL.js → copy.CnzLQyvJ.js} +2 -2
- package/dist/chunks/{copy.dbbJppdL.js.map → copy.CnzLQyvJ.js.map} +1 -1
- package/dist/chunks/{dashboard-section.BdRXcY4u.js → dashboard-section.YU5gKDEJ.js} +3 -3
- package/dist/chunks/{dashboard-section.BdRXcY4u.js.map → dashboard-section.YU5gKDEJ.js.map} +1 -1
- package/dist/chunks/{dashed-underline.D6ke20Vd.js → dashed-underline.BKfUevuM.js} +3 -3
- package/dist/chunks/{dashed-underline.D6ke20Vd.js.map → dashed-underline.BKfUevuM.js.map} +1 -1
- package/dist/chunks/{data-grid-template.CRxJLJsn.js → data-grid-template.DI27ou71.js} +2 -2
- package/dist/chunks/{data-grid-template.CRxJLJsn.js.map → data-grid-template.DI27ou71.js.map} +1 -1
- package/dist/chunks/data-grid.DgPWs1hH.js +3374 -0
- package/dist/chunks/data-grid.DgPWs1hH.js.map +1 -0
- package/dist/chunks/{date-picker.B6HK0sb2.js → date-picker.DDsfecHp.js} +3 -3
- package/dist/chunks/{date-picker.B6HK0sb2.js.map → date-picker.DDsfecHp.js.map} +1 -1
- package/dist/chunks/{date-range-picker.3iWt1Cd6.js → date-range-picker.DjPmRy0E.js} +205 -202
- package/dist/chunks/date-range-picker.DjPmRy0E.js.map +1 -0
- package/dist/chunks/dot.pQfhaKda.js +29 -0
- package/dist/chunks/dot.pQfhaKda.js.map +1 -0
- package/dist/chunks/{dropdown-tag.ChFJ9l5g.js → dropdown-tag.BKDmDRSv.js} +3 -3
- package/dist/chunks/{dropdown-tag.ChFJ9l5g.js.map → dropdown-tag.BKDmDRSv.js.map} +1 -1
- package/dist/chunks/{dropdown.CMKdLPHi.js → dropdown.DpjMobyf.js} +4 -4
- package/dist/chunks/{dropdown.CMKdLPHi.js.map → dropdown.DpjMobyf.js.map} +1 -1
- package/dist/chunks/{error-message.CmMyB-k9.js → error-message.BYXS0kUN.js} +2 -2
- package/dist/chunks/{error-message.CmMyB-k9.js.map → error-message.BYXS0kUN.js.map} +1 -1
- package/dist/chunks/es6.b4enG1py.js.map +1 -1
- package/dist/chunks/file-uploader.cRbwpcAw.js +1074 -0
- package/dist/chunks/file-uploader.cRbwpcAw.js.map +1 -0
- package/dist/chunks/filter-bar.BwJTrH5U.js +2867 -0
- package/dist/chunks/filter-bar.BwJTrH5U.js.map +1 -0
- package/dist/chunks/{footer-actions.DAlN9pd3.js → footer-actions.DvIVWqWv.js} +2 -2
- package/dist/chunks/{footer-actions.DAlN9pd3.js.map → footer-actions.DvIVWqWv.js.map} +1 -1
- package/dist/chunks/{form-layout-title.w0J-ymMW.js → form-layout-title.BqNDCnLk.js} +2 -2
- package/dist/chunks/{form-layout-title.w0J-ymMW.js.map → form-layout-title.BqNDCnLk.js.map} +1 -1
- package/dist/chunks/{header.DQmnYarZ.js → header.C0NBlBJv.js} +4 -4
- package/dist/chunks/{header.DQmnYarZ.js.map → header.C0NBlBJv.js.map} +1 -1
- package/dist/chunks/index.CWuzEfiV.js +6 -0
- package/dist/chunks/index.CWuzEfiV.js.map +1 -0
- package/dist/chunks/index.lHdwuJAx.js +366 -0
- package/dist/chunks/index.lHdwuJAx.js.map +1 -0
- package/dist/chunks/{info-icon.CNPSAUM6.js → info-icon.CUC0fwLb.js} +2 -2
- package/dist/chunks/{info-icon.CNPSAUM6.js.map → info-icon.CUC0fwLb.js.map} +1 -1
- package/dist/chunks/input-field-password.DxNS4MmO.js +306 -0
- package/dist/chunks/input-field-password.DxNS4MmO.js.map +1 -0
- package/dist/chunks/{input-field.Bk2p3kIb.js → input-field.BQKEQIZd.js} +84 -83
- package/dist/chunks/input-field.BQKEQIZd.js.map +1 -0
- package/dist/chunks/{layout-row.rzhGrBQ3.js → layout-row.DcyZ3DP3.js} +2 -2
- package/dist/chunks/{layout-row.rzhGrBQ3.js.map → layout-row.DcyZ3DP3.js.map} +1 -1
- package/dist/chunks/{listbox-option-tag.58u_cWFs.js → listbox-option-tag.DU_NVK_z.js} +2 -2
- package/dist/chunks/{listbox-option-tag.58u_cWFs.js.map → listbox-option-tag.DU_NVK_z.js.map} +1 -1
- package/dist/chunks/{loading-button.CHujR70I.js → loading-button.CNWhVIPK.js} +10 -10
- package/dist/chunks/{loading-button.CHujR70I.js.map → loading-button.CNWhVIPK.js.map} +1 -1
- package/dist/chunks/{menu.DXVN_WLr.js → menu.BpqOdkxR.js} +3 -3
- package/dist/chunks/{menu.DXVN_WLr.js.map → menu.BpqOdkxR.js.map} +1 -1
- package/dist/chunks/{modal-fullscreen.D96Avr2Q.js → modal-fullscreen.DtgTb1Xh.js} +2 -2
- package/dist/chunks/{modal-fullscreen.D96Avr2Q.js.map → modal-fullscreen.DtgTb1Xh.js.map} +1 -1
- package/dist/chunks/{modal.vue_vue_type_script_setup_true_lang.ylWdiVwQ.js → modal.vue_vue_type_script_setup_true_lang.CjD91zJo.js} +4 -4
- package/dist/chunks/{modal.vue_vue_type_script_setup_true_lang.ylWdiVwQ.js.map → modal.vue_vue_type_script_setup_true_lang.CjD91zJo.js.map} +1 -1
- package/dist/chunks/{pagination.D_4FRHE9.js → pagination.C34l_EYf.js} +2 -2
- package/dist/chunks/{pagination.D_4FRHE9.js.map → pagination.C34l_EYf.js.map} +1 -1
- package/dist/chunks/{popover.HArIkKve.js → popover.D9Zw4w9l.js} +2 -2
- package/dist/chunks/{popover.HArIkKve.js.map → popover.D9Zw4w9l.js.map} +1 -1
- package/dist/chunks/{promo-banner.BRn1iznD.js → promo-banner.CzR9ri5v.js} +2 -2
- package/dist/chunks/{promo-banner.BRn1iznD.js.map → promo-banner.CzR9ri5v.js.map} +1 -1
- package/dist/chunks/{radio-group.D94e5N12.js → radio-group.DIyCKfOQ.js} +4 -4
- package/dist/chunks/{radio-group.D94e5N12.js.map → radio-group.DIyCKfOQ.js.map} +1 -1
- package/dist/chunks/{search-bar.D_4u91te.js → search-bar.Dy0dBek2.js} +3 -3
- package/dist/chunks/{search-bar.D_4u91te.js.map → search-bar.Dy0dBek2.js.map} +1 -1
- package/dist/chunks/{secondary-nav.CQ3aLyrM.js → secondary-nav.DYFnrUIK.js} +3 -3
- package/dist/chunks/{secondary-nav.CQ3aLyrM.js.map → secondary-nav.DYFnrUIK.js.map} +1 -1
- package/dist/chunks/{segmented-control.CueLfseV.js → segmented-control.B5H5Wiyz.js} +2 -2
- package/dist/chunks/{segmented-control.CueLfseV.js.map → segmented-control.B5H5Wiyz.js.map} +1 -1
- package/dist/chunks/{selection-card-group.Du3Cwf47.js → selection-card-group.BY8o4PYF.js} +12 -12
- package/dist/chunks/{selection-card-group.Du3Cwf47.js.map → selection-card-group.BY8o4PYF.js.map} +1 -1
- package/dist/chunks/show.ChPQTrAT.js +64 -0
- package/dist/chunks/show.ChPQTrAT.js.map +1 -0
- package/dist/chunks/{sidepanel.CGbl5x5B.js → sidepanel.BywianGe.js} +2 -2
- package/dist/chunks/{sidepanel.CGbl5x5B.js.map → sidepanel.BywianGe.js.map} +1 -1
- package/dist/chunks/step.Db0UJ8mx.js +264 -0
- package/dist/chunks/step.Db0UJ8mx.js.map +1 -0
- package/dist/chunks/{structured-list-item.CujUEOTK.js → structured-list-item.C_6ju-IY.js} +4 -4
- package/dist/chunks/{structured-list-item.CujUEOTK.js.map → structured-list-item.C_6ju-IY.js.map} +1 -1
- package/dist/chunks/{summary-grid-item-custom.DF9waESp.js → summary-grid-item-custom.FxBnzHzb.js} +4 -4
- package/dist/chunks/{summary-grid-item-custom.DF9waESp.js.map → summary-grid-item-custom.FxBnzHzb.js.map} +1 -1
- package/dist/chunks/{tag.wfnhGWVG.js → tag.xvqrfTwk.js} +2 -2
- package/dist/chunks/{tag.wfnhGWVG.js.map → tag.xvqrfTwk.js.map} +1 -1
- package/dist/chunks/{teleport.L8qFCYpr.js → teleport.CI0k6eaC.js} +9 -9
- package/dist/chunks/teleport.CI0k6eaC.js.map +1 -0
- package/dist/chunks/{textarea.DlPNxnUQ.js → textarea.vAp6HFi9.js} +2 -2
- package/dist/chunks/{textarea.DlPNxnUQ.js.map → textarea.vAp6HFi9.js.map} +1 -1
- package/dist/chunks/{timeline-item.B8VvkDfR.js → timeline-item.ND_EMuwP.js} +5 -5
- package/dist/chunks/{timeline-item.B8VvkDfR.js.map → timeline-item.ND_EMuwP.js.map} +1 -1
- package/dist/chunks/tooltip.BvJoy09y.js +203 -0
- package/dist/chunks/tooltip.BvJoy09y.js.map +1 -0
- package/dist/chunks/{tutorial.vue_vue_type_script_setup_true_lang.CGpbGgfc.js → tutorial.vue_vue_type_script_setup_true_lang.LBw_ALfS.js} +4 -4
- package/dist/chunks/{tutorial.vue_vue_type_script_setup_true_lang.CGpbGgfc.js.map → tutorial.vue_vue_type_script_setup_true_lang.LBw_ALfS.js.map} +1 -1
- package/dist/chunks/{use-cached-selected-values.DaRzXFIt.js → use-cached-selected-values.BOZK76mN.js} +8 -5
- package/dist/chunks/{use-cached-selected-values.DaRzXFIt.js.map → use-cached-selected-values.BOZK76mN.js.map} +1 -1
- package/dist/chunks/{warning-filled.Dm_HhqzW.js → warning-filled.OUOUbA6k.js} +2 -2
- package/dist/chunks/{warning-filled.Dm_HhqzW.js.map → warning-filled.OUOUbA6k.js.map} +1 -1
- package/dist/code-snippet.js +1 -1
- package/dist/dashboard-template.js +1 -1
- package/dist/dashed-underline.js +1 -1
- package/dist/data-grid-template.js +1 -1
- package/dist/data-grid.js +1 -1
- package/dist/date-picker.js +1 -1
- package/dist/date-range-picker.js +1 -1
- package/dist/dropdown.js +3 -3
- package/dist/file-uploader.js +5 -0
- package/dist/file-uploader.js.map +1 -0
- package/dist/filter-bar.js +1 -1
- package/dist/form-layout.js +1 -1
- package/dist/header.js +1 -1
- package/dist/index.js +228 -219
- package/dist/index.js.map +1 -1
- package/dist/info-icon.js +1 -1
- package/dist/input-field-password.js +10 -0
- package/dist/input-field-password.js.map +1 -0
- package/dist/input-field.js +1 -1
- package/dist/internal.js +7 -7
- package/dist/layout.js +1 -1
- package/dist/menu.js +1 -1
- package/dist/modal-fullscreen.js +1 -1
- package/dist/modal.js +2 -2
- package/dist/pagination.js +1 -1
- package/dist/popover.js +1 -1
- package/dist/promo-banner.js +1 -1
- package/dist/radio-group.js +1 -1
- package/dist/search-bar.js +2 -2
- package/dist/secondary-nav.js +1 -1
- package/dist/segmented-control.js +1 -1
- package/dist/selection-card.js +1 -1
- package/dist/sidepanel.js +1 -1
- package/dist/stepper.js +1 -1
- package/dist/structured-list.js +1 -1
- package/dist/styles/bento-dark.css +98 -34
- package/dist/styles/bento-light.css +98 -34
- package/dist/styles/bento.css +98 -34
- package/dist/styles/legacy.css +106 -42
- package/dist/styles/styleguide.css +98 -34
- package/dist/summary-grid.js +1 -1
- package/dist/tag.js +1 -1
- package/dist/textarea.js +1 -1
- package/dist/timeline.js +1 -1
- package/dist/tutorial.js +1 -1
- package/dist/web-types.json +1 -1
- package/package.json +9 -8
- package/dist/chunks/data-grid.BC2tOBxm.js +0 -3229
- package/dist/chunks/data-grid.BC2tOBxm.js.map +0 -1
- package/dist/chunks/date-range-picker.3iWt1Cd6.js.map +0 -1
- package/dist/chunks/filter-bar.pKcJryD3.js +0 -2898
- package/dist/chunks/filter-bar.pKcJryD3.js.map +0 -1
- package/dist/chunks/index.ChdIlujs.js +0 -248
- package/dist/chunks/index.ChdIlujs.js.map +0 -1
- package/dist/chunks/input-field.Bk2p3kIb.js.map +0 -1
- package/dist/chunks/step.CwuThZ0G.js +0 -285
- package/dist/chunks/step.CwuThZ0G.js.map +0 -1
- package/dist/chunks/teleport.L8qFCYpr.js.map +0 -1
- package/dist/chunks/tooltip.BEl_LdFo.js +0 -188
- package/dist/chunks/tooltip.BEl_LdFo.js.map +0 -1
|
@@ -35,6 +35,7 @@ import {
|
|
|
35
35
|
BentoDropdownPaymentMethod,
|
|
36
36
|
BentoDropdownTag,
|
|
37
37
|
BentoEmptyState,
|
|
38
|
+
BentoFileUploader,
|
|
38
39
|
BentoFilterBar,
|
|
39
40
|
BentoFormLayout,
|
|
40
41
|
BentoFormLayoutFieldTip,
|
|
@@ -44,6 +45,7 @@ import {
|
|
|
44
45
|
BentoImage,
|
|
45
46
|
BentoInfoIcon,
|
|
46
47
|
BentoInputField,
|
|
48
|
+
BentoInputFieldPassword,
|
|
47
49
|
BentoInspector,
|
|
48
50
|
BentoLayout,
|
|
49
51
|
BentoLayoutRow,
|
|
@@ -127,6 +129,7 @@ declare module 'vue' {
|
|
|
127
129
|
BentoDropdownAvatar: typeof BentoDropdownAvatar;
|
|
128
130
|
BentoDropdownCountry: typeof BentoDropdownCountry;
|
|
129
131
|
BentoEmptyState: typeof BentoEmptyState;
|
|
132
|
+
BentoFileUploader: typeof BentoFileUploader;
|
|
130
133
|
BentoFilterBar: typeof BentoFilterBar;
|
|
131
134
|
BentoFormLayout: typeof BentoFormLayout;
|
|
132
135
|
BentoFormLayoutFieldTip: typeof BentoFormLayoutFieldTip;
|
|
@@ -142,6 +145,7 @@ declare module 'vue' {
|
|
|
142
145
|
BentoDropdownPaymentMethod: typeof BentoDropdownPaymentMethod;
|
|
143
146
|
BentoDropdownTag: typeof BentoDropdownTag;
|
|
144
147
|
BentoInputField: typeof BentoInputField;
|
|
148
|
+
BentoInputFieldPassword: typeof BentoInputFieldPassword;
|
|
145
149
|
BentoLink: typeof BentoLink;
|
|
146
150
|
BentoLoadingButton: typeof BentoLoadingButton;
|
|
147
151
|
BentoLoadingIndicator: typeof BentoLoadingIndicator;
|
|
@@ -113,6 +113,13 @@ declare const _default: __VLS_WithTemplateSlots<import("../../../../../../../nod
|
|
|
113
113
|
type: NumberConstructor;
|
|
114
114
|
required: true;
|
|
115
115
|
};
|
|
116
|
+
/**
|
|
117
|
+
* The row selection checkbox indeterminate state.
|
|
118
|
+
*/
|
|
119
|
+
selectionIsIndeterminate: {
|
|
120
|
+
type: BooleanConstructor;
|
|
121
|
+
default: boolean;
|
|
122
|
+
};
|
|
116
123
|
/**
|
|
117
124
|
* Determines if the row selection is enabled.
|
|
118
125
|
*/
|
|
@@ -236,6 +243,13 @@ declare const _default: __VLS_WithTemplateSlots<import("../../../../../../../nod
|
|
|
236
243
|
type: NumberConstructor;
|
|
237
244
|
required: true;
|
|
238
245
|
};
|
|
246
|
+
/**
|
|
247
|
+
* The row selection checkbox indeterminate state.
|
|
248
|
+
*/
|
|
249
|
+
selectionIsIndeterminate: {
|
|
250
|
+
type: BooleanConstructor;
|
|
251
|
+
default: boolean;
|
|
252
|
+
};
|
|
239
253
|
/**
|
|
240
254
|
* Determines if the row selection is enabled.
|
|
241
255
|
*/
|
|
@@ -263,6 +277,7 @@ declare const _default: __VLS_WithTemplateSlots<import("../../../../../../../nod
|
|
|
263
277
|
isNestedContentExpanded: boolean;
|
|
264
278
|
nestedContent: boolean;
|
|
265
279
|
nestedRowsElementIds: string[];
|
|
280
|
+
selectionIsIndeterminate: boolean;
|
|
266
281
|
}, {}, {}, {}, string, import("../../../../../../../node_modules/.pnpm/vue@3.5.13_typescript@5.6.3/node_modules/vue").ComponentProvideOptions, true, {}, any>, Record<string, (_: {
|
|
267
282
|
item: BentoDatagridDataItem;
|
|
268
283
|
}) => any>>;
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
import { PropType } from "../../../../../../../node_modules/.pnpm/vue@3.5.13_typescript@5.6.3/node_modules/vue";
|
|
2
|
-
import { BentoDatagridDataItem, BentoDatagridDataItemId, BentoDatagridGetDataItemIdFn, BentoDatagridIsDataItemDisabledFn, BentoDatagridShouldShowNestedContentFn } from "../../data-grid.types";
|
|
3
|
-
import type { DataGridCellColumnSet, DataGridCellDragEventsForColumn } from '../data-grid-cell/data-grid-cell.types';
|
|
4
|
-
import type { BentoDatagridDraggingColumnState } from '../data-grid-columns/data-grid-columns.types';
|
|
5
|
-
import type { DatagridColumnHoveringState } from "../../composables/use-column-hovering";
|
|
6
1
|
/**
|
|
7
2
|
* Internal component to display the BentoDataGrid data rows containig the data row cells.
|
|
8
3
|
*
|
|
@@ -42,349 +37,5 @@ import type { DatagridColumnHoveringState } from "../../composables/use-column-h
|
|
|
42
37
|
* </data-grid-row>
|
|
43
38
|
* `
|
|
44
39
|
*/
|
|
45
|
-
declare const _default:
|
|
46
|
-
/**
|
|
47
|
-
* When true, will emit a 'rowClick' event when a row is clicked. Will add cursor: pointer to rows.
|
|
48
|
-
*/
|
|
49
|
-
allowRowClicks: {
|
|
50
|
-
type: BooleanConstructor;
|
|
51
|
-
default: boolean;
|
|
52
|
-
};
|
|
53
|
-
/**
|
|
54
|
-
* The columns sets including
|
|
55
|
-
*/
|
|
56
|
-
columnSets: {
|
|
57
|
-
type: PropType<DataGridCellColumnSet[]>;
|
|
58
|
-
required: true;
|
|
59
|
-
};
|
|
60
|
-
/**
|
|
61
|
-
* Sets the row cells to the condensed padding state.
|
|
62
|
-
*/
|
|
63
|
-
condensed: {
|
|
64
|
-
type: BooleanConstructor;
|
|
65
|
-
default: boolean;
|
|
66
|
-
};
|
|
67
|
-
/**
|
|
68
|
-
* Columns being dragged, contains dragging column and a target column
|
|
69
|
-
*/
|
|
70
|
-
draggingColumns: {
|
|
71
|
-
type: PropType<BentoDatagridDraggingColumnState>;
|
|
72
|
-
default: any;
|
|
73
|
-
};
|
|
74
|
-
/**
|
|
75
|
-
* Dragging event handlers for each row cell
|
|
76
|
-
*/
|
|
77
|
-
draggingEventsForRowCell: {
|
|
78
|
-
type: PropType<DataGridCellDragEventsForColumn>;
|
|
79
|
-
required: true;
|
|
80
|
-
};
|
|
81
|
-
/**
|
|
82
|
-
* A customisable method to retrieve a unique identifier for a data item in the array of data supplied.
|
|
83
|
-
* This is used selecting and performance reasons and must exist in each data item.
|
|
84
|
-
*/
|
|
85
|
-
getDataItemId: {
|
|
86
|
-
type: PropType<BentoDatagridGetDataItemIdFn>;
|
|
87
|
-
default: (item: BentoDatagridDataItem) => BentoDatagridDataItemId;
|
|
88
|
-
};
|
|
89
|
-
/**
|
|
90
|
-
* Set to true if the datagrid has been scrolled and the left side has overflowing space.
|
|
91
|
-
*/
|
|
92
|
-
hasLeftOverflow: {
|
|
93
|
-
type: BooleanConstructor;
|
|
94
|
-
default: boolean;
|
|
95
|
-
};
|
|
96
|
-
/**
|
|
97
|
-
* Enables the nested content slot functionality.
|
|
98
|
-
*/
|
|
99
|
-
hasNestedContent: {
|
|
100
|
-
type: BooleanConstructor;
|
|
101
|
-
default: boolean;
|
|
102
|
-
};
|
|
103
|
-
/**
|
|
104
|
-
* Highlighted row IDs.
|
|
105
|
-
*/
|
|
106
|
-
highlightedRows: {
|
|
107
|
-
type: PropType<BentoDatagridDataItemId[]>;
|
|
108
|
-
default: () => any[];
|
|
109
|
-
};
|
|
110
|
-
/**
|
|
111
|
-
* The row index of a currently hovered row.
|
|
112
|
-
*/
|
|
113
|
-
hoveredRowIndex: {
|
|
114
|
-
type: NumberConstructor;
|
|
115
|
-
default: number;
|
|
116
|
-
};
|
|
117
|
-
/**
|
|
118
|
-
* The column hovered over state and whether the hovered over column should show a border right or left.
|
|
119
|
-
*/
|
|
120
|
-
hoveredOverColumnState: {
|
|
121
|
-
type: PropType<DatagridColumnHoveringState>;
|
|
122
|
-
required: true;
|
|
123
|
-
};
|
|
124
|
-
/**
|
|
125
|
-
* A customisable method to determine if a row is not selectable.
|
|
126
|
-
* The default is that every row is selectable.
|
|
127
|
-
*/
|
|
128
|
-
isDataItemDisabled: {
|
|
129
|
-
type: PropType<BentoDatagridIsDataItemDisabledFn>;
|
|
130
|
-
default: () => boolean;
|
|
131
|
-
};
|
|
132
|
-
/**
|
|
133
|
-
* If the row is the last child in it's parent container.
|
|
134
|
-
*/
|
|
135
|
-
isRowLastChild: {
|
|
136
|
-
type: BooleanConstructor;
|
|
137
|
-
default: boolean;
|
|
138
|
-
};
|
|
139
|
-
/**
|
|
140
|
-
* If columns are being measured for the autoWidth functionality.
|
|
141
|
-
*/
|
|
142
|
-
isMeasuringColumnWidths: {
|
|
143
|
-
type: BooleanConstructor;
|
|
144
|
-
default: boolean;
|
|
145
|
-
};
|
|
146
|
-
/**
|
|
147
|
-
* The row data object
|
|
148
|
-
*/
|
|
149
|
-
rowData: {
|
|
150
|
-
type: PropType<BentoDatagridDataItem>;
|
|
151
|
-
required: true;
|
|
152
|
-
};
|
|
153
|
-
/**
|
|
154
|
-
* The row index.
|
|
155
|
-
*/
|
|
156
|
-
rowIndex: {
|
|
157
|
-
type: NumberConstructor;
|
|
158
|
-
required: true;
|
|
159
|
-
};
|
|
160
|
-
/**
|
|
161
|
-
* The number of rows that this row is within.
|
|
162
|
-
*/
|
|
163
|
-
rowSetSize: {
|
|
164
|
-
type: NumberConstructor;
|
|
165
|
-
default: number;
|
|
166
|
-
};
|
|
167
|
-
/**
|
|
168
|
-
* Determines whether to render frozen seperator on the row.
|
|
169
|
-
*/
|
|
170
|
-
showFrozenColumnsSeparator: {
|
|
171
|
-
type: BooleanConstructor;
|
|
172
|
-
default: boolean;
|
|
173
|
-
};
|
|
174
|
-
/**
|
|
175
|
-
* Determines if the row selection is enabled.
|
|
176
|
-
*/
|
|
177
|
-
selectable: {
|
|
178
|
-
type: BooleanConstructor;
|
|
179
|
-
default: boolean;
|
|
180
|
-
};
|
|
181
|
-
/**
|
|
182
|
-
* The array of IDs for the selected rows.
|
|
183
|
-
*/
|
|
184
|
-
selectedItems: {
|
|
185
|
-
type: PropType<BentoDatagridDataItemId[]>;
|
|
186
|
-
required: true;
|
|
187
|
-
};
|
|
188
|
-
/**
|
|
189
|
-
* Enables / Disables the nested-content slot
|
|
190
|
-
*/
|
|
191
|
-
shouldShowNestedContent: {
|
|
192
|
-
type: PropType<BentoDatagridShouldShowNestedContentFn>;
|
|
193
|
-
default: (_item: BentoDatagridDataItem) => true;
|
|
194
|
-
};
|
|
195
|
-
}>, {
|
|
196
|
-
gridcellRefs: import("../../../../../../../node_modules/.pnpm/vue@3.5.13_typescript@5.6.3/node_modules/vue").Ref<{
|
|
197
|
-
[key: string]: HTMLDivElement;
|
|
198
|
-
}, {
|
|
199
|
-
[key: string]: HTMLDivElement;
|
|
200
|
-
}>;
|
|
201
|
-
}, {}, {}, {}, import("../../../../../../../node_modules/.pnpm/vue@3.5.13_typescript@5.6.3/node_modules/vue").ComponentOptionsMixin, import("../../../../../../../node_modules/.pnpm/vue@3.5.13_typescript@5.6.3/node_modules/vue").ComponentOptionsMixin, {
|
|
202
|
-
"cell-hovered": (value: number) => void;
|
|
203
|
-
} & {
|
|
204
|
-
"on-frozen-columns-key-press": (event: Event) => void;
|
|
205
|
-
} & {
|
|
206
|
-
"select-row": (value: BentoDatagridDataItemId[]) => void;
|
|
207
|
-
} & {
|
|
208
|
-
"row-click": (rowData: BentoDatagridDataItem, event: MouseEvent) => void;
|
|
209
|
-
}, string, import("../../../../../../../node_modules/.pnpm/vue@3.5.13_typescript@5.6.3/node_modules/vue").PublicProps, Readonly<import("../../../../../../../node_modules/.pnpm/vue@3.5.13_typescript@5.6.3/node_modules/vue").ExtractPropTypes<{
|
|
210
|
-
/**
|
|
211
|
-
* When true, will emit a 'rowClick' event when a row is clicked. Will add cursor: pointer to rows.
|
|
212
|
-
*/
|
|
213
|
-
allowRowClicks: {
|
|
214
|
-
type: BooleanConstructor;
|
|
215
|
-
default: boolean;
|
|
216
|
-
};
|
|
217
|
-
/**
|
|
218
|
-
* The columns sets including
|
|
219
|
-
*/
|
|
220
|
-
columnSets: {
|
|
221
|
-
type: PropType<DataGridCellColumnSet[]>;
|
|
222
|
-
required: true;
|
|
223
|
-
};
|
|
224
|
-
/**
|
|
225
|
-
* Sets the row cells to the condensed padding state.
|
|
226
|
-
*/
|
|
227
|
-
condensed: {
|
|
228
|
-
type: BooleanConstructor;
|
|
229
|
-
default: boolean;
|
|
230
|
-
};
|
|
231
|
-
/**
|
|
232
|
-
* Columns being dragged, contains dragging column and a target column
|
|
233
|
-
*/
|
|
234
|
-
draggingColumns: {
|
|
235
|
-
type: PropType<BentoDatagridDraggingColumnState>;
|
|
236
|
-
default: any;
|
|
237
|
-
};
|
|
238
|
-
/**
|
|
239
|
-
* Dragging event handlers for each row cell
|
|
240
|
-
*/
|
|
241
|
-
draggingEventsForRowCell: {
|
|
242
|
-
type: PropType<DataGridCellDragEventsForColumn>;
|
|
243
|
-
required: true;
|
|
244
|
-
};
|
|
245
|
-
/**
|
|
246
|
-
* A customisable method to retrieve a unique identifier for a data item in the array of data supplied.
|
|
247
|
-
* This is used selecting and performance reasons and must exist in each data item.
|
|
248
|
-
*/
|
|
249
|
-
getDataItemId: {
|
|
250
|
-
type: PropType<BentoDatagridGetDataItemIdFn>;
|
|
251
|
-
default: (item: BentoDatagridDataItem) => BentoDatagridDataItemId;
|
|
252
|
-
};
|
|
253
|
-
/**
|
|
254
|
-
* Set to true if the datagrid has been scrolled and the left side has overflowing space.
|
|
255
|
-
*/
|
|
256
|
-
hasLeftOverflow: {
|
|
257
|
-
type: BooleanConstructor;
|
|
258
|
-
default: boolean;
|
|
259
|
-
};
|
|
260
|
-
/**
|
|
261
|
-
* Enables the nested content slot functionality.
|
|
262
|
-
*/
|
|
263
|
-
hasNestedContent: {
|
|
264
|
-
type: BooleanConstructor;
|
|
265
|
-
default: boolean;
|
|
266
|
-
};
|
|
267
|
-
/**
|
|
268
|
-
* Highlighted row IDs.
|
|
269
|
-
*/
|
|
270
|
-
highlightedRows: {
|
|
271
|
-
type: PropType<BentoDatagridDataItemId[]>;
|
|
272
|
-
default: () => any[];
|
|
273
|
-
};
|
|
274
|
-
/**
|
|
275
|
-
* The row index of a currently hovered row.
|
|
276
|
-
*/
|
|
277
|
-
hoveredRowIndex: {
|
|
278
|
-
type: NumberConstructor;
|
|
279
|
-
default: number;
|
|
280
|
-
};
|
|
281
|
-
/**
|
|
282
|
-
* The column hovered over state and whether the hovered over column should show a border right or left.
|
|
283
|
-
*/
|
|
284
|
-
hoveredOverColumnState: {
|
|
285
|
-
type: PropType<DatagridColumnHoveringState>;
|
|
286
|
-
required: true;
|
|
287
|
-
};
|
|
288
|
-
/**
|
|
289
|
-
* A customisable method to determine if a row is not selectable.
|
|
290
|
-
* The default is that every row is selectable.
|
|
291
|
-
*/
|
|
292
|
-
isDataItemDisabled: {
|
|
293
|
-
type: PropType<BentoDatagridIsDataItemDisabledFn>;
|
|
294
|
-
default: () => boolean;
|
|
295
|
-
};
|
|
296
|
-
/**
|
|
297
|
-
* If the row is the last child in it's parent container.
|
|
298
|
-
*/
|
|
299
|
-
isRowLastChild: {
|
|
300
|
-
type: BooleanConstructor;
|
|
301
|
-
default: boolean;
|
|
302
|
-
};
|
|
303
|
-
/**
|
|
304
|
-
* If columns are being measured for the autoWidth functionality.
|
|
305
|
-
*/
|
|
306
|
-
isMeasuringColumnWidths: {
|
|
307
|
-
type: BooleanConstructor;
|
|
308
|
-
default: boolean;
|
|
309
|
-
};
|
|
310
|
-
/**
|
|
311
|
-
* The row data object
|
|
312
|
-
*/
|
|
313
|
-
rowData: {
|
|
314
|
-
type: PropType<BentoDatagridDataItem>;
|
|
315
|
-
required: true;
|
|
316
|
-
};
|
|
317
|
-
/**
|
|
318
|
-
* The row index.
|
|
319
|
-
*/
|
|
320
|
-
rowIndex: {
|
|
321
|
-
type: NumberConstructor;
|
|
322
|
-
required: true;
|
|
323
|
-
};
|
|
324
|
-
/**
|
|
325
|
-
* The number of rows that this row is within.
|
|
326
|
-
*/
|
|
327
|
-
rowSetSize: {
|
|
328
|
-
type: NumberConstructor;
|
|
329
|
-
default: number;
|
|
330
|
-
};
|
|
331
|
-
/**
|
|
332
|
-
* Determines whether to render frozen seperator on the row.
|
|
333
|
-
*/
|
|
334
|
-
showFrozenColumnsSeparator: {
|
|
335
|
-
type: BooleanConstructor;
|
|
336
|
-
default: boolean;
|
|
337
|
-
};
|
|
338
|
-
/**
|
|
339
|
-
* Determines if the row selection is enabled.
|
|
340
|
-
*/
|
|
341
|
-
selectable: {
|
|
342
|
-
type: BooleanConstructor;
|
|
343
|
-
default: boolean;
|
|
344
|
-
};
|
|
345
|
-
/**
|
|
346
|
-
* The array of IDs for the selected rows.
|
|
347
|
-
*/
|
|
348
|
-
selectedItems: {
|
|
349
|
-
type: PropType<BentoDatagridDataItemId[]>;
|
|
350
|
-
required: true;
|
|
351
|
-
};
|
|
352
|
-
/**
|
|
353
|
-
* Enables / Disables the nested-content slot
|
|
354
|
-
*/
|
|
355
|
-
shouldShowNestedContent: {
|
|
356
|
-
type: PropType<BentoDatagridShouldShowNestedContentFn>;
|
|
357
|
-
default: (_item: BentoDatagridDataItem) => true;
|
|
358
|
-
};
|
|
359
|
-
}>> & Readonly<{
|
|
360
|
-
"onOn-frozen-columns-key-press"?: (event: Event) => any;
|
|
361
|
-
"onSelect-row"?: (value: BentoDatagridDataItemId[]) => any;
|
|
362
|
-
"onCell-hovered"?: (value: number) => any;
|
|
363
|
-
"onRow-click"?: (rowData: BentoDatagridDataItem, event: MouseEvent) => any;
|
|
364
|
-
}>, {
|
|
365
|
-
condensed: boolean;
|
|
366
|
-
draggingColumns: BentoDatagridDraggingColumnState;
|
|
367
|
-
hasLeftOverflow: boolean;
|
|
368
|
-
isMeasuringColumnWidths: boolean;
|
|
369
|
-
showFrozenColumnsSeparator: boolean;
|
|
370
|
-
selectable: boolean;
|
|
371
|
-
getDataItemId: BentoDatagridGetDataItemIdFn;
|
|
372
|
-
isDataItemDisabled: BentoDatagridIsDataItemDisabledFn;
|
|
373
|
-
allowRowClicks: boolean;
|
|
374
|
-
hasNestedContent: boolean;
|
|
375
|
-
highlightedRows: BentoDatagridDataItemId[];
|
|
376
|
-
hoveredRowIndex: number;
|
|
377
|
-
isRowLastChild: boolean;
|
|
378
|
-
rowSetSize: number;
|
|
379
|
-
shouldShowNestedContent: BentoDatagridShouldShowNestedContentFn;
|
|
380
|
-
}, {}, {}, {}, string, import("../../../../../../../node_modules/.pnpm/vue@3.5.13_typescript@5.6.3/node_modules/vue").ComponentProvideOptions, true, {}, any>, Record<NonNullable<string | number>, (_: any) => any> & {
|
|
381
|
-
'nested-slot': (_: {
|
|
382
|
-
item: BentoDatagridDataItem;
|
|
383
|
-
}) => any;
|
|
384
|
-
}>;
|
|
40
|
+
declare const _default: any;
|
|
385
41
|
export default _default;
|
|
386
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
387
|
-
new (): {
|
|
388
|
-
$slots: S;
|
|
389
|
-
};
|
|
390
|
-
};
|
|
@@ -9,6 +9,7 @@ export interface CalculateColumnWidthOptions {
|
|
|
9
9
|
allowColumnDragAndDrop?: Ref<boolean>;
|
|
10
10
|
hasColumnPanel?: Ref<boolean>;
|
|
11
11
|
hasNestedContent?: Ref<boolean>;
|
|
12
|
+
hasNestedRows?: Ref<boolean>;
|
|
12
13
|
hasSelectableColumn?: Ref<boolean>;
|
|
13
14
|
hasSelectableAcrossPages?: Ref<boolean>;
|
|
14
15
|
isDataGridTemplate?: boolean;
|
|
@@ -11,6 +11,7 @@ export declare const useScroller: (body: Ref<UnwrapRef<HTMLDivElement>>, columns
|
|
|
11
11
|
isLazyLoad?: Ref<UnwrapRef<boolean>>;
|
|
12
12
|
pagination?: Ref<UnwrapRef<BentoDatagridPaginationProps | undefined>>;
|
|
13
13
|
stickyPagination: Ref<UnwrapRef<boolean>>;
|
|
14
|
+
isDataGridTemplate?: boolean;
|
|
14
15
|
}) => {
|
|
15
16
|
scrollLeftPosition: Ref<number, number>;
|
|
16
17
|
hasLeftOverflow: Ref<boolean, boolean>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Ref } from "../../../../../../../node_modules/.pnpm/vue@3.5.13_typescript@5.6.3/node_modules/vue";
|
|
2
|
-
import { BentoDatagridData, BentoDatagridDataItemId, BentoDatagridGetDataItemIdFn, BentoDatagridIsDataItemDisabledFn } from '../../data-grid.types';
|
|
2
|
+
import { BentoDatagridData, BentoDatagridDataItem, BentoDatagridDataItemId, BentoDatagridGetDataItemIdFn, BentoDatagridIsDataItemDisabledFn } from '../../data-grid.types';
|
|
3
3
|
/**
|
|
4
4
|
* Exposed selection variables and methods for a data component to use and react to.
|
|
5
5
|
* @param selection A list of unique IDs
|
|
@@ -10,7 +10,8 @@ import { BentoDatagridData, BentoDatagridDataItemId, BentoDatagridGetDataItemIdF
|
|
|
10
10
|
*/
|
|
11
11
|
export declare const useSelector: (selection: Ref<BentoDatagridDataItemId[]>, emit: (event: string, emitedSelectedItems: BentoDatagridDataItemId[]) => void, data: Ref<BentoDatagridData>, getDataItemId: BentoDatagridGetDataItemIdFn, isDataItemDisabled: BentoDatagridIsDataItemDisabledFn) => {
|
|
12
12
|
onAllRowSelect: (selectAllItems: boolean) => void;
|
|
13
|
-
onRowSelect: (value: BentoDatagridDataItemId[]) => void;
|
|
13
|
+
onRowSelect: (value: BentoDatagridDataItemId[], rowData: BentoDatagridDataItem) => void;
|
|
14
|
+
onNestedRowSelect: (value: BentoDatagridDataItemId[], parentRowData: BentoDatagridDataItem, rowData: BentoDatagridDataItem) => void;
|
|
14
15
|
allItemsSelectedState: {
|
|
15
16
|
allItemsSelected: boolean;
|
|
16
17
|
isIndeterminate: boolean;
|
|
@@ -45,6 +45,7 @@ export type BentoDatagridDataItemId = string | number;
|
|
|
45
45
|
export type BentoDatagridSelection = BentoDatagridDataItemId[];
|
|
46
46
|
export interface BentoDatagridDataItem {
|
|
47
47
|
id?: BentoDatagridDataItemId;
|
|
48
|
+
children?: BentoDatagridDataItem[];
|
|
48
49
|
[fieldName: string]: unknown;
|
|
49
50
|
}
|
|
50
51
|
export type BentoDatagridData = BentoDatagridDataItem[];
|
|
@@ -65,6 +66,7 @@ export declare enum BentoDatagridEvent {
|
|
|
65
66
|
COLUMN_RESIZE = "column-resize",
|
|
66
67
|
ITEMS_PAGE = "items-page",
|
|
67
68
|
NAVIGATE = "navigate",
|
|
69
|
+
NESTED_CONTENT_TOGGLED = "nested-content-toggled",
|
|
68
70
|
FILTER_SEARCH_INPUT = "filter-search-input",
|
|
69
71
|
FILTER_SEARCH_CLEAR = "filter-search-clear",
|
|
70
72
|
UPDATE_COLUMNS = "update:columns",
|
|
@@ -88,3 +90,4 @@ export declare enum BentoDatagridAriaSortValue {
|
|
|
88
90
|
}
|
|
89
91
|
export type BentoDatagridEmptyStateProps = InstanceType<typeof BentoEmptyState>['$props'];
|
|
90
92
|
export type BentoDatagridShouldShowNestedContentFn = (item: BentoDatagridDataItem) => boolean;
|
|
93
|
+
export type BentoDatagridShouldShowNestedRowsFn = (item: BentoDatagridDataItem) => boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropType } from "../../../../../node_modules/.pnpm/vue@3.5.13_typescript@5.6.3/node_modules/vue";
|
|
2
|
-
import { BentoColumn, BentoDatagridData, BentoDatagridDataItem, BentoDatagridDataItemId, BentoDatagridEmptyStateProps, BentoDatagridEvent, BentoDatagridGetDataItemIdFn, BentoDatagridIsDataItemDisabledFn, BentoDatagridPaginationProps, BentoDatagridShouldShowNestedContentFn, BentoDatagridSortByColumn } from './data-grid.types';
|
|
2
|
+
import { BentoColumn, BentoDatagridData, BentoDatagridDataItem, BentoDatagridDataItemId, BentoDatagridEmptyStateProps, BentoDatagridEvent, BentoDatagridGetDataItemIdFn, BentoDatagridIsDataItemDisabledFn, BentoDatagridPaginationProps, BentoDatagridShouldShowNestedContentFn, BentoDatagridShouldShowNestedRowsFn, BentoDatagridSortByColumn } from './data-grid.types';
|
|
3
3
|
import type { BentoLazyLoadType } from "../../types";
|
|
4
4
|
import type { BentoButtonActionsList } from "../button";
|
|
5
5
|
/**
|
|
@@ -141,6 +141,13 @@ declare const _default: __VLS_WithTemplateSlots<import("../../../../../node_modu
|
|
|
141
141
|
type: BooleanConstructor;
|
|
142
142
|
default: boolean;
|
|
143
143
|
};
|
|
144
|
+
/**
|
|
145
|
+
* Enables the nested content slot functionality.
|
|
146
|
+
*/
|
|
147
|
+
hasNestedRows: {
|
|
148
|
+
type: BooleanConstructor;
|
|
149
|
+
default: boolean;
|
|
150
|
+
};
|
|
144
151
|
/**
|
|
145
152
|
* Highlighted items
|
|
146
153
|
*/
|
|
@@ -246,6 +253,13 @@ declare const _default: __VLS_WithTemplateSlots<import("../../../../../node_modu
|
|
|
246
253
|
type: PropType<BentoDatagridShouldShowNestedContentFn>;
|
|
247
254
|
default: (_item: BentoDatagridDataItem) => true;
|
|
248
255
|
};
|
|
256
|
+
/**
|
|
257
|
+
* Returns the nested rows for a given BentoDatagridDataItem.
|
|
258
|
+
*/
|
|
259
|
+
shouldShowNestedRows: {
|
|
260
|
+
type: PropType<BentoDatagridShouldShowNestedRowsFn>;
|
|
261
|
+
default: (_item: BentoDatagridDataItem) => true;
|
|
262
|
+
};
|
|
249
263
|
/**
|
|
250
264
|
* Sortby handles proper rendering of sort icon in header. Sorting currently is only supported server side.
|
|
251
265
|
* It does make sure the currently sorted column has a more visible sort icon, and the sort icon points in the right direction.
|
|
@@ -386,6 +400,13 @@ declare const _default: __VLS_WithTemplateSlots<import("../../../../../node_modu
|
|
|
386
400
|
type: BooleanConstructor;
|
|
387
401
|
default: boolean;
|
|
388
402
|
};
|
|
403
|
+
/**
|
|
404
|
+
* Enables the nested content slot functionality.
|
|
405
|
+
*/
|
|
406
|
+
hasNestedRows: {
|
|
407
|
+
type: BooleanConstructor;
|
|
408
|
+
default: boolean;
|
|
409
|
+
};
|
|
389
410
|
/**
|
|
390
411
|
* Highlighted items
|
|
391
412
|
*/
|
|
@@ -491,6 +512,13 @@ declare const _default: __VLS_WithTemplateSlots<import("../../../../../node_modu
|
|
|
491
512
|
type: PropType<BentoDatagridShouldShowNestedContentFn>;
|
|
492
513
|
default: (_item: BentoDatagridDataItem) => true;
|
|
493
514
|
};
|
|
515
|
+
/**
|
|
516
|
+
* Returns the nested rows for a given BentoDatagridDataItem.
|
|
517
|
+
*/
|
|
518
|
+
shouldShowNestedRows: {
|
|
519
|
+
type: PropType<BentoDatagridShouldShowNestedRowsFn>;
|
|
520
|
+
default: (_item: BentoDatagridDataItem) => true;
|
|
521
|
+
};
|
|
494
522
|
/**
|
|
495
523
|
* Sortby handles proper rendering of sort icon in header. Sorting currently is only supported server side.
|
|
496
524
|
* It does make sure the currently sorted column has a more visible sort icon, and the sort icon points in the right direction.
|
|
@@ -521,6 +549,7 @@ declare const _default: __VLS_WithTemplateSlots<import("../../../../../node_modu
|
|
|
521
549
|
"onColumn-resize"?: (...args: any[]) => any;
|
|
522
550
|
"onSelect-all-across-pages"?: (...args: any[]) => any;
|
|
523
551
|
"onUpdate:columns"?: (...args: any[]) => any;
|
|
552
|
+
"onNested-content-toggled"?: (...args: any[]) => any;
|
|
524
553
|
"onRow-click"?: (...args: any[]) => any;
|
|
525
554
|
"onUpdate:filter-values"?: (...args: any[]) => any;
|
|
526
555
|
onColumns?: (...args: any[]) => any;
|
|
@@ -585,8 +614,10 @@ declare const _default: __VLS_WithTemplateSlots<import("../../../../../node_modu
|
|
|
585
614
|
isDataItemDisabled: BentoDatagridIsDataItemDisabledFn;
|
|
586
615
|
allowRowClicks: boolean;
|
|
587
616
|
hasNestedContent: boolean;
|
|
617
|
+
hasNestedRows: boolean;
|
|
588
618
|
highlightedRows: BentoDatagridDataItemId[];
|
|
589
619
|
shouldShowNestedContent: BentoDatagridShouldShowNestedContentFn;
|
|
620
|
+
shouldShowNestedRows: BentoDatagridShouldShowNestedRowsFn;
|
|
590
621
|
filterValues: any;
|
|
591
622
|
allowColumnDragAndDrop: boolean;
|
|
592
623
|
bulkActions: BentoButtonActionsList;
|
|
@@ -600,6 +631,7 @@ declare const _default: __VLS_WithTemplateSlots<import("../../../../../node_modu
|
|
|
600
631
|
tabTitle: string;
|
|
601
632
|
}, {}, {}, {}, string, import("../../../../../node_modules/.pnpm/vue@3.5.13_typescript@5.6.3/node_modules/vue").ComponentProvideOptions, true, {}, any>, Record<NonNullable<string | number>, (_: any) => any> & Record<NonNullable<string | number>, (_: any) => any> & {
|
|
602
633
|
header: (_: {}) => any;
|
|
634
|
+
'pagination-slot': (_: {}) => any;
|
|
603
635
|
footer: (_: {}) => any;
|
|
604
636
|
}>;
|
|
605
637
|
export default _default;
|
|
@@ -1646,6 +1646,7 @@ declare const _default: import("../../../../../../../node_modules/.pnpm/vue@3.5.
|
|
|
1646
1646
|
onFocus?: () => any;
|
|
1647
1647
|
onInput?: (inputValue: string) => any;
|
|
1648
1648
|
onKeydown?: (event: KeyboardEvent) => any;
|
|
1649
|
+
onKeyup?: (event: KeyboardEvent) => any;
|
|
1649
1650
|
"onEscape-pressed"?: () => any;
|
|
1650
1651
|
"onUpdate:dropdown"?: (updatedDropdownProps: import("../../../input-field").BentoInputDropdownProps) => any;
|
|
1651
1652
|
"onDropdown-input"?: (selectedValue: import("../../../../types").BentoListboxSelectedValue) => any;
|
|
@@ -1665,6 +1666,8 @@ declare const _default: import("../../../../../../../node_modules/.pnpm/vue@3.5.
|
|
|
1665
1666
|
focus: () => void;
|
|
1666
1667
|
} & {
|
|
1667
1668
|
keydown: (event: KeyboardEvent) => void;
|
|
1669
|
+
} & {
|
|
1670
|
+
keyup: (event: KeyboardEvent) => void;
|
|
1668
1671
|
} & {
|
|
1669
1672
|
input: (inputValue: string) => void;
|
|
1670
1673
|
}, import("../../../../../../../node_modules/.pnpm/vue@3.5.13_typescript@5.6.3/node_modules/vue").PublicProps, {
|
|
@@ -1775,6 +1778,7 @@ declare const _default: import("../../../../../../../node_modules/.pnpm/vue@3.5.
|
|
|
1775
1778
|
onFocus?: () => any;
|
|
1776
1779
|
onInput?: (inputValue: string) => any;
|
|
1777
1780
|
onKeydown?: (event: KeyboardEvent) => any;
|
|
1781
|
+
onKeyup?: (event: KeyboardEvent) => any;
|
|
1778
1782
|
"onEscape-pressed"?: () => any;
|
|
1779
1783
|
"onUpdate:dropdown"?: (updatedDropdownProps: import("../../../input-field").BentoInputDropdownProps) => any;
|
|
1780
1784
|
"onDropdown-input"?: (selectedValue: import("../../../../types").BentoListboxSelectedValue) => any;
|
|
@@ -1885,6 +1889,7 @@ declare const _default: import("../../../../../../../node_modules/.pnpm/vue@3.5.
|
|
|
1885
1889
|
onFocus?: () => any;
|
|
1886
1890
|
onInput?: (inputValue: string) => any;
|
|
1887
1891
|
onKeydown?: (event: KeyboardEvent) => any;
|
|
1892
|
+
onKeyup?: (event: KeyboardEvent) => any;
|
|
1888
1893
|
"onEscape-pressed"?: () => any;
|
|
1889
1894
|
"onUpdate:dropdown"?: (updatedDropdownProps: import("../../../input-field").BentoInputDropdownProps) => any;
|
|
1890
1895
|
"onDropdown-input"?: (selectedValue: import("../../../../types").BentoListboxSelectedValue) => any;
|
|
@@ -1904,6 +1909,8 @@ declare const _default: import("../../../../../../../node_modules/.pnpm/vue@3.5.
|
|
|
1904
1909
|
focus: () => void;
|
|
1905
1910
|
} & {
|
|
1906
1911
|
keydown: (event: KeyboardEvent) => void;
|
|
1912
|
+
} & {
|
|
1913
|
+
keyup: (event: KeyboardEvent) => void;
|
|
1907
1914
|
} & {
|
|
1908
1915
|
input: (inputValue: string) => void;
|
|
1909
1916
|
}, string, {
|
package/dist/@types/packages/vue2/src/components/date-range-picker/date-range-picker.vue.d.ts
CHANGED
|
@@ -2381,6 +2381,7 @@ declare const _default: import("../../../../../node_modules/.pnpm/vue@3.5.13_typ
|
|
|
2381
2381
|
onFocus?: () => any;
|
|
2382
2382
|
onInput?: (inputValue: string) => any;
|
|
2383
2383
|
onKeydown?: (event: KeyboardEvent) => any;
|
|
2384
|
+
onKeyup?: (event: KeyboardEvent) => any;
|
|
2384
2385
|
"onEscape-pressed"?: () => any;
|
|
2385
2386
|
"onUpdate:dropdown"?: (updatedDropdownProps: import("../input-field").BentoInputDropdownProps) => any;
|
|
2386
2387
|
"onDropdown-input"?: (selectedValue: import("../../types").BentoListboxSelectedValue) => any;
|
|
@@ -2400,6 +2401,8 @@ declare const _default: import("../../../../../node_modules/.pnpm/vue@3.5.13_typ
|
|
|
2400
2401
|
focus: () => void;
|
|
2401
2402
|
} & {
|
|
2402
2403
|
keydown: (event: KeyboardEvent) => void;
|
|
2404
|
+
} & {
|
|
2405
|
+
keyup: (event: KeyboardEvent) => void;
|
|
2403
2406
|
} & {
|
|
2404
2407
|
input: (inputValue: string) => void;
|
|
2405
2408
|
}, import("../../../../../node_modules/.pnpm/vue@3.5.13_typescript@5.6.3/node_modules/vue").PublicProps, {
|
|
@@ -2510,6 +2513,7 @@ declare const _default: import("../../../../../node_modules/.pnpm/vue@3.5.13_typ
|
|
|
2510
2513
|
onFocus?: () => any;
|
|
2511
2514
|
onInput?: (inputValue: string) => any;
|
|
2512
2515
|
onKeydown?: (event: KeyboardEvent) => any;
|
|
2516
|
+
onKeyup?: (event: KeyboardEvent) => any;
|
|
2513
2517
|
"onEscape-pressed"?: () => any;
|
|
2514
2518
|
"onUpdate:dropdown"?: (updatedDropdownProps: import("../input-field").BentoInputDropdownProps) => any;
|
|
2515
2519
|
"onDropdown-input"?: (selectedValue: import("../../types").BentoListboxSelectedValue) => any;
|
|
@@ -2620,6 +2624,7 @@ declare const _default: import("../../../../../node_modules/.pnpm/vue@3.5.13_typ
|
|
|
2620
2624
|
onFocus?: () => any;
|
|
2621
2625
|
onInput?: (inputValue: string) => any;
|
|
2622
2626
|
onKeydown?: (event: KeyboardEvent) => any;
|
|
2627
|
+
onKeyup?: (event: KeyboardEvent) => any;
|
|
2623
2628
|
"onEscape-pressed"?: () => any;
|
|
2624
2629
|
"onUpdate:dropdown"?: (updatedDropdownProps: import("../input-field").BentoInputDropdownProps) => any;
|
|
2625
2630
|
"onDropdown-input"?: (selectedValue: import("../../types").BentoListboxSelectedValue) => any;
|
|
@@ -2639,6 +2644,8 @@ declare const _default: import("../../../../../node_modules/.pnpm/vue@3.5.13_typ
|
|
|
2639
2644
|
focus: () => void;
|
|
2640
2645
|
} & {
|
|
2641
2646
|
keydown: (event: KeyboardEvent) => void;
|
|
2647
|
+
} & {
|
|
2648
|
+
keyup: (event: KeyboardEvent) => void;
|
|
2642
2649
|
} & {
|
|
2643
2650
|
input: (inputValue: string) => void;
|
|
2644
2651
|
}, string, {
|