@oub/fusion 0.2.104 → 0.2.105
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/fusion.js +10 -3
- package/dist/fusion.umd.cjs +2 -2
- package/dist/lib/components/form/icon-button/FusionIconButton.vue.d.ts +11 -0
- package/dist/lib/components/form/searchable-input/FusionSearchableInput.vue.d.ts +1 -1
- package/dist/lib/components/form/select/FusionSelect.vue.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/fusion.js
CHANGED
|
@@ -3180,6 +3180,11 @@ const Wi = /* @__PURE__ */ he(Nc, [["render", qc]]), Hc = le({
|
|
|
3180
3180
|
dataTest: {
|
|
3181
3181
|
type: String,
|
|
3182
3182
|
default: "fusion-icon-button"
|
|
3183
|
+
},
|
|
3184
|
+
ariaLabel: {
|
|
3185
|
+
type: String,
|
|
3186
|
+
required: !1,
|
|
3187
|
+
default: void 0
|
|
3183
3188
|
}
|
|
3184
3189
|
},
|
|
3185
3190
|
emits: ["click"],
|
|
@@ -3247,7 +3252,7 @@ const Wi = /* @__PURE__ */ he(Nc, [["render", qc]]), Hc = le({
|
|
|
3247
3252
|
}
|
|
3248
3253
|
}
|
|
3249
3254
|
});
|
|
3250
|
-
const zc = ["disabled", "data-test", "type"], jc = { key: 1 };
|
|
3255
|
+
const zc = ["disabled", "data-test", "type", "aria-label"], jc = { key: 1 };
|
|
3251
3256
|
function Jc(e, t, a, r, n, o) {
|
|
3252
3257
|
const i = ne("FusionLoadingSpinner");
|
|
3253
3258
|
return d(), h("button", {
|
|
@@ -3257,6 +3262,7 @@ function Jc(e, t, a, r, n, o) {
|
|
|
3257
3262
|
class: H(["fusion-icon-button fusion-button", [e.variantTypeClass, e.variantStyleClass, e.buttonSizeClass]]),
|
|
3258
3263
|
"data-test": e.dataTest,
|
|
3259
3264
|
type: e.type,
|
|
3265
|
+
"aria-label": e.ariaLabel,
|
|
3260
3266
|
onFocus: t[0] || (t[0] = (s) => e.focus = !0),
|
|
3261
3267
|
onBlur: t[1] || (t[1] = (s) => e.focus = !1),
|
|
3262
3268
|
onMouseover: t[2] || (t[2] = (s) => e.hover = !0),
|
|
@@ -13324,20 +13330,21 @@ function k0(e, t, a, r, n, o) {
|
|
|
13324
13330
|
size: "small",
|
|
13325
13331
|
"variant-type": "primary",
|
|
13326
13332
|
class: "fusion-toolbar-back-button",
|
|
13333
|
+
"aria-label": e.backButtonAriaLabel,
|
|
13327
13334
|
onClick: e.handleBackClick
|
|
13328
13335
|
}, {
|
|
13329
13336
|
icon: be(() => [
|
|
13330
13337
|
ue(i)
|
|
13331
13338
|
]),
|
|
13332
13339
|
_: 1
|
|
13333
|
-
}, 8, ["onClick"])) : C("", !0),
|
|
13340
|
+
}, 8, ["aria-label", "onClick"])) : C("", !0),
|
|
13334
13341
|
g("div", g0, [
|
|
13335
13342
|
e.title ? (d(), h("h2", y0, _(e.title), 1)) : C("", !0),
|
|
13336
13343
|
e.helperText ? (d(), h("p", b0, _(e.helperText), 1)) : C("", !0)
|
|
13337
13344
|
])
|
|
13338
13345
|
]);
|
|
13339
13346
|
}
|
|
13340
|
-
const lk = /* @__PURE__ */ he(m0, [["render", k0], ["__scopeId", "data-v-
|
|
13347
|
+
const lk = /* @__PURE__ */ he(m0, [["render", k0], ["__scopeId", "data-v-d38e99f9"]]), A0 = le({
|
|
13341
13348
|
name: "FusionActionBar"
|
|
13342
13349
|
});
|
|
13343
13350
|
const w0 = { class: "fusion-action-bar" };
|