accessibleprimevue
Version:
Note: This is the forked version of the Primefaces/PrimeVue repository. Since V3 has reached its EOL this is use to fix identified accessibility bugs in the v3 version of primevue. PrimeVue is an open source UI library for Vue featuring a rich set of 80+
212 lines (208 loc) • 3.89 kB
JavaScript
import BaseComponent from 'primevue/basecomponent';
import ColumnStyle from 'primevue/column/style';
var script$1 = {
name: 'BaseColumn',
"extends": BaseComponent,
props: {
columnKey: {
type: null,
"default": null
},
field: {
type: [String, Function],
"default": null
},
sortField: {
type: [String, Function],
"default": null
},
filterField: {
type: [String, Function],
"default": null
},
dataType: {
type: String,
"default": 'text'
},
sortable: {
type: Boolean,
"default": false
},
header: {
type: null,
"default": null
},
footer: {
type: null,
"default": null
},
style: {
type: null,
"default": null
},
"class": {
type: String,
"default": null
},
headerStyle: {
type: null,
"default": null
},
headerClass: {
type: String,
"default": null
},
bodyStyle: {
type: null,
"default": null
},
bodyClass: {
type: String,
"default": null
},
footerStyle: {
type: null,
"default": null
},
footerClass: {
type: String,
"default": null
},
showFilterMenu: {
type: Boolean,
"default": true
},
showFilterOperator: {
type: Boolean,
"default": true
},
showClearButton: {
type: Boolean,
"default": true
},
showApplyButton: {
type: Boolean,
"default": true
},
showFilterMatchModes: {
type: Boolean,
"default": true
},
showAddButton: {
type: Boolean,
"default": true
},
filterMatchModeOptions: {
type: Array,
"default": null
},
maxConstraints: {
type: Number,
"default": 2
},
excludeGlobalFilter: {
type: Boolean,
"default": false
},
filterHeaderClass: {
type: String,
"default": null
},
filterHeaderStyle: {
type: null,
"default": null
},
filterMenuClass: {
type: String,
"default": null
},
filterMenuStyle: {
type: null,
"default": null
},
selectionMode: {
type: String,
"default": null
},
expander: {
type: Boolean,
"default": false
},
colspan: {
type: Number,
"default": null
},
rowspan: {
type: Number,
"default": null
},
rowReorder: {
type: Boolean,
"default": false
},
rowReorderIcon: {
type: String,
"default": undefined
},
reorderableColumn: {
type: Boolean,
"default": true
},
rowEditor: {
type: Boolean,
"default": false
},
frozen: {
type: Boolean,
"default": false
},
alignFrozen: {
type: String,
"default": 'left'
},
exportable: {
type: Boolean,
"default": true
},
exportHeader: {
type: String,
"default": null
},
exportFooter: {
type: String,
"default": null
},
filterMatchMode: {
type: String,
"default": null
},
hidden: {
type: Boolean,
"default": false
}
},
style: ColumnStyle,
provide: function provide() {
return {
$parentInstance: this
};
}
};
var script = {
name: 'Column',
"extends": script$1,
inheritAttrs: false,
inject: ['$columns'],
mounted: function mounted() {
var _this$$columns;
(_this$$columns = this.$columns) === null || _this$$columns === void 0 || _this$$columns.add(this.$);
},
unmounted: function unmounted() {
var _this$$columns2;
(_this$$columns2 = this.$columns) === null || _this$$columns2 === void 0 || _this$$columns2["delete"](this.$);
},
render: function render() {
return null;
}
};
export { script as default };