@alaarab/ogrid-vue-vuetify 2.1.10 → 2.1.12

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/esm/index.js CHANGED
@@ -369,6 +369,8 @@ var ColumnHeaderFilter = defineComponent({
369
369
  variant: state.hasActiveFilter.value || state.isFilterOpen.value ? "tonal" : "text",
370
370
  color: state.hasActiveFilter.value || state.isFilterOpen.value ? "primary" : "default",
371
371
  "aria-label": `Filter ${props.columnName}`,
372
+ "aria-expanded": state.isFilterOpen.value,
373
+ "aria-haspopup": "dialog",
372
374
  title: `Filter ${props.columnName}`,
373
375
  style: {
374
376
  opacity: state.hasActiveFilter.value || state.isFilterOpen.value ? "1" : "0.7"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alaarab/ogrid-vue-vuetify",
3
- "version": "2.1.10",
3
+ "version": "2.1.12",
4
4
  "description": "OGrid Vuetify – Vuetify-based data grid with sorting, filtering, pagination, column chooser, and CSV export.",
5
5
  "main": "dist/esm/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -38,7 +38,7 @@
38
38
  "node": ">=18"
39
39
  },
40
40
  "dependencies": {
41
- "@alaarab/ogrid-vue": "2.1.10"
41
+ "@alaarab/ogrid-vue": "2.1.12"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "vue": "^3.3.0",