![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/vreg/node_modules/bootstrap-vue/src/components/table/helpers/ |
// Constants used by table helpers export const FIELD_KEY_CELL_VARIANT = '_cellVariants' export const FIELD_KEY_ROW_VARIANT = '_rowVariant' export const FIELD_KEY_SHOW_DETAILS = '_showDetails' // Object of item keys that should be ignored for headers and // stringification and filter events export const IGNORED_FIELD_KEYS = [ FIELD_KEY_CELL_VARIANT, FIELD_KEY_ROW_VARIANT, FIELD_KEY_SHOW_DETAILS ].reduce((result, key) => ({ ...result, [key]: true }), {}) // Filter CSS selector for click/dblclick/etc. events // If any of these selectors match the clicked element, we ignore the event export const EVENT_FILTER = [ 'a', 'a *', // Include content inside links 'button', 'button *', // Include content inside buttons 'input:not(.disabled):not([disabled])', 'select:not(.disabled):not([disabled])', 'textarea:not(.disabled):not([disabled])', '[role="link"]', '[role="link"] *', '[role="button"]', '[role="button"] *', '[tabindex]:not(.disabled):not([disabled])' ].join(',')