readytech-ui-library-v2 1.0.145 → 1.0.147

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.
@@ -7064,6 +7064,10 @@ const tl = J({
7064
7064
  type: String,
7065
7065
  default: "primary"
7066
7066
  // Default Vuetify color
7067
+ },
7068
+ ariaLabel: {
7069
+ type: String,
7070
+ default: null
7067
7071
  }
7068
7072
  },
7069
7073
  computed: {
@@ -7104,10 +7108,11 @@ function vQ(e, t, n, r, a, i) {
7104
7108
  color: n.color,
7105
7109
  "aria-describedby": i.ariaErrorMessagesId,
7106
7110
  "aria-checked": n.indeterminate ? "mixed" : i.checkedValue ? "true" : "false",
7107
- "aria-disabled": n.disabled ? "true" : "false"
7108
- }, null, 8, ["modelValue", "id", "label", "disabled", "error", "error-messages", "indeterminate", "color", "aria-describedby", "aria-checked", "aria-disabled"]);
7111
+ "aria-disabled": n.disabled ? "true" : "false",
7112
+ "aria-label": n.ariaLabel
7113
+ }, null, 8, ["modelValue", "id", "label", "disabled", "error", "error-messages", "indeterminate", "color", "aria-describedby", "aria-checked", "aria-disabled", "aria-label"]);
7109
7114
  }
7110
- const hQ = /* @__PURE__ */ je(fQ, [["render", vQ], ["__scopeId", "data-v-c022f030"]]), gQ = J({
7115
+ const hQ = /* @__PURE__ */ je(fQ, [["render", vQ], ["__scopeId", "data-v-442f767b"]]), gQ = J({
7111
7116
  color: {
7112
7117
  type: Object
7113
7118
  },
@@ -18569,6 +18574,14 @@ const Qre = /* @__PURE__ */ je(Jre, [["render", Zre], ["__scopeId", "data-v-5156
18569
18574
  this.$emit("update:modelValue", e), this.$emit("selection-changed", e);
18570
18575
  }
18571
18576
  },
18577
+ directives: {
18578
+ fixComboboxRole: {
18579
+ mounted(e) {
18580
+ const t = e.querySelector("input");
18581
+ t && t.setAttribute("role", "combobox"), e.removeAttribute("role");
18582
+ }
18583
+ }
18584
+ },
18572
18585
  methods: {
18573
18586
  toggleSelectAll() {
18574
18587
  this.allSelected ? this.selectedItem = [] : this.selectedItem = this.items.map((e) => e[this.itemValue]);