@wwtdev/bsds-components-vue3 1.13.1 → 1.14.1
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/lib/bsds-components.mjs +175 -157
- package/lib/bsds-components.umd.js +1 -1
- package/lib/components.js +12 -2
- package/lib/components.js.map +1 -1
- package/nuxt/bsds-components.mjs +197 -179
- package/nuxt/bsds-components.umd.js +1 -1
- package/package.json +2 -2
package/lib/bsds-components.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { openBlock as
|
|
1
|
+
import { openBlock as s, createElementBlock as i, mergeProps as r, renderSlot as o, computed as g, unref as c, normalizeProps as v, guardReactiveProps as $ } from "vue";
|
|
2
2
|
const B = ["controlled", "icon", "header-text", "heading-level", "open-item", "open-item-id", "stacked"], de = {
|
|
3
3
|
__name: "BsAccordion",
|
|
4
4
|
props: {
|
|
@@ -11,8 +11,8 @@ const B = ["controlled", "icon", "header-text", "heading-level", "open-item", "o
|
|
|
11
11
|
stacked: { default: !1 }
|
|
12
12
|
},
|
|
13
13
|
emits: ["toggled"],
|
|
14
|
-
setup(e, { emit:
|
|
15
|
-
return (a, t) => (
|
|
14
|
+
setup(e, { emit: n }) {
|
|
15
|
+
return (a, t) => (s(), i("bs-accordion", r(a.$attrs, {
|
|
16
16
|
controlled: e.controlled,
|
|
17
17
|
icon: e.icon,
|
|
18
18
|
"header-text": e.headerText,
|
|
@@ -20,7 +20,7 @@ const B = ["controlled", "icon", "header-text", "heading-level", "open-item", "o
|
|
|
20
20
|
"open-item": e.openItem,
|
|
21
21
|
"open-item-id": e.openItemId,
|
|
22
22
|
stacked: e.stacked,
|
|
23
|
-
onToggled: t[0] || (t[0] = (l) =>
|
|
23
|
+
onToggled: t[0] || (t[0] = (l) => n("toggled", l.detail))
|
|
24
24
|
}), [
|
|
25
25
|
o(a.$slots, "default")
|
|
26
26
|
], 16, B));
|
|
@@ -37,8 +37,8 @@ const B = ["controlled", "icon", "header-text", "heading-level", "open-item", "o
|
|
|
37
37
|
showZero: {}
|
|
38
38
|
},
|
|
39
39
|
emits: [],
|
|
40
|
-
setup(e, { emit:
|
|
41
|
-
return (a, t) => (
|
|
40
|
+
setup(e, { emit: n }) {
|
|
41
|
+
return (a, t) => (s(), i("bs-badge", r(a.$attrs, {
|
|
42
42
|
color: e.color,
|
|
43
43
|
count: e.count,
|
|
44
44
|
"count-max": e.countMax,
|
|
@@ -54,25 +54,25 @@ const B = ["controlled", "icon", "header-text", "heading-level", "open-item", "o
|
|
|
54
54
|
__name: "BsBanner",
|
|
55
55
|
props: {},
|
|
56
56
|
emits: ["dismiss"],
|
|
57
|
-
setup(e, { emit:
|
|
58
|
-
return (a, t) => (
|
|
59
|
-
onDismiss: t[0] || (t[0] = (l) =>
|
|
57
|
+
setup(e, { emit: n }) {
|
|
58
|
+
return (a, t) => (s(), i("bs-banner", r(a.$attrs, {
|
|
59
|
+
onDismiss: t[0] || (t[0] = (l) => n("dismiss", l.detail))
|
|
60
60
|
}), [
|
|
61
61
|
o(a.$slots, "default")
|
|
62
62
|
], 16));
|
|
63
63
|
}
|
|
64
64
|
};
|
|
65
65
|
function f(e) {
|
|
66
|
-
const
|
|
66
|
+
const n = g(() => {
|
|
67
67
|
var l, d;
|
|
68
68
|
return ((d = (l = e.href) == null ? void 0 : l.startsWith) == null ? void 0 : d.call(l, "/")) || !1;
|
|
69
69
|
}), a = g(() => {
|
|
70
70
|
var l, d;
|
|
71
|
-
return
|
|
71
|
+
return n.value && ((l = e.router) == null ? void 0 : l.navigateTo) || ((d = e.router) == null ? void 0 : d.push) || null;
|
|
72
72
|
});
|
|
73
73
|
function t(l) {
|
|
74
|
-
var d, u,
|
|
75
|
-
a.value && ((u = (d = l.target.href) == null ? void 0 : d.endsWith) != null && u.call(d, e.href) || (b = (
|
|
74
|
+
var d, u, h, m, b;
|
|
75
|
+
a.value && ((u = (d = l.target.href) == null ? void 0 : d.endsWith) != null && u.call(d, e.href) || (b = (m = (h = l.target.closest("a")) == null ? void 0 : h.href) == null ? void 0 : m.endsWith) != null && b.call(m, e.href)) && (l.preventDefault(), a.value(e.href));
|
|
76
76
|
}
|
|
77
77
|
return { onLinkClick: t };
|
|
78
78
|
}
|
|
@@ -89,9 +89,9 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
89
89
|
router: {}
|
|
90
90
|
},
|
|
91
91
|
emits: [],
|
|
92
|
-
setup(e, { emit:
|
|
92
|
+
setup(e, { emit: n }) {
|
|
93
93
|
const a = e, { onLinkClick: t } = f(a);
|
|
94
|
-
return (l, d) => (
|
|
94
|
+
return (l, d) => (s(), i("bs-button", r(l.$attrs, {
|
|
95
95
|
variant: e.variant,
|
|
96
96
|
disabled: e.disabled,
|
|
97
97
|
"ghost-btn": e.ghostBtn,
|
|
@@ -111,13 +111,13 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
111
111
|
charMax: {}
|
|
112
112
|
},
|
|
113
113
|
emits: [],
|
|
114
|
-
setup(e, { emit:
|
|
115
|
-
return (a, t) => (
|
|
114
|
+
setup(e, { emit: n }) {
|
|
115
|
+
return (a, t) => (s(), i("bs-character-count", r(a.$attrs, {
|
|
116
116
|
"char-count": e.charCount,
|
|
117
117
|
"char-max": e.charMax
|
|
118
118
|
}), null, 16, x));
|
|
119
119
|
}
|
|
120
|
-
}, C = ["chart-title", "data", "dataIdxLabels", "show-legend", "show-tooltips", "show-x-grid", "show-y-grid", "stacked", "x-label", "y-label"],
|
|
120
|
+
}, C = ["chart-title", "data", "dataIdxLabels", "show-legend", "show-tooltips", "show-x-grid", "show-y-grid", "stacked", "x-label", "y-label"], me = {
|
|
121
121
|
__name: "BsChartBar",
|
|
122
122
|
props: {
|
|
123
123
|
chartTitle: {},
|
|
@@ -132,8 +132,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
132
132
|
yLabel: { default: "" }
|
|
133
133
|
},
|
|
134
134
|
emits: [],
|
|
135
|
-
setup(e, { emit:
|
|
136
|
-
return (a, t) => (
|
|
135
|
+
setup(e, { emit: n }) {
|
|
136
|
+
return (a, t) => (s(), i("bs-chart-bar", r(a.$attrs, {
|
|
137
137
|
"chart-title": e.chartTitle,
|
|
138
138
|
data: e.data,
|
|
139
139
|
dataIdxLabels: e.dataIdxLabels,
|
|
@@ -146,7 +146,7 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
146
146
|
"y-label": e.yLabel
|
|
147
147
|
}), null, 16, C));
|
|
148
148
|
}
|
|
149
|
-
}, k = ["data", "dataIdxLabels", "table-title"],
|
|
149
|
+
}, k = ["data", "dataIdxLabels", "table-title"], he = {
|
|
150
150
|
__name: "BsChartTable",
|
|
151
151
|
props: {
|
|
152
152
|
data: {},
|
|
@@ -154,8 +154,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
154
154
|
tableTitle: { default: "" }
|
|
155
155
|
},
|
|
156
156
|
emits: [],
|
|
157
|
-
setup(e, { emit:
|
|
158
|
-
return (a, t) => (
|
|
157
|
+
setup(e, { emit: n }) {
|
|
158
|
+
return (a, t) => (s(), i("bs-chart-table", r(a.$attrs, {
|
|
159
159
|
data: e.data,
|
|
160
160
|
dataIdxLabels: e.dataIdxLabels,
|
|
161
161
|
"table-title": e.tableTitle
|
|
@@ -176,8 +176,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
176
176
|
modelValue: {}
|
|
177
177
|
},
|
|
178
178
|
emits: ["update:modelValue"],
|
|
179
|
-
setup(e, { emit:
|
|
180
|
-
return (a, t) => (
|
|
179
|
+
setup(e, { emit: n }) {
|
|
180
|
+
return (a, t) => (s(), i("bs-checkbox", r(a.$attrs, {
|
|
181
181
|
label: e.label,
|
|
182
182
|
checked: e.checked || e.modelValue,
|
|
183
183
|
"checked-partially": e.checkedPartially,
|
|
@@ -187,7 +187,7 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
187
187
|
"pass-attrs": e.passAttrs,
|
|
188
188
|
required: e.required,
|
|
189
189
|
size: e.size,
|
|
190
|
-
onChange: t[0] || (t[0] = (l) =>
|
|
190
|
+
onChange: t[0] || (t[0] = (l) => n("update:modelValue", l.target.checked))
|
|
191
191
|
}), null, 16, y));
|
|
192
192
|
}
|
|
193
193
|
}, w = ["disabled", "ghost-btn", "hover-effect", "href", "icon", "icon-position", "label", "pass-attrs", "text-btn", "size"], ge = {
|
|
@@ -206,9 +206,9 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
206
206
|
router: {}
|
|
207
207
|
},
|
|
208
208
|
emits: [],
|
|
209
|
-
setup(e, { emit:
|
|
209
|
+
setup(e, { emit: n }) {
|
|
210
210
|
const a = e, { onLinkClick: t } = f(a);
|
|
211
|
-
return (l, d) => (
|
|
211
|
+
return (l, d) => (s(), i("bs-circle-button", r(l.$attrs, {
|
|
212
212
|
disabled: e.disabled,
|
|
213
213
|
"ghost-btn": e.ghostBtn,
|
|
214
214
|
"hover-effect": e.hoverEffect,
|
|
@@ -237,8 +237,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
237
237
|
leaveTrigger: { default: !1 }
|
|
238
238
|
},
|
|
239
239
|
emits: ["close", "enterend", "leaveend"],
|
|
240
|
-
setup(e, { emit:
|
|
241
|
-
return (a, t) => (
|
|
240
|
+
setup(e, { emit: n }) {
|
|
241
|
+
return (a, t) => (s(), i("bs-dropdown", r(a.$attrs, {
|
|
242
242
|
width: e.width,
|
|
243
243
|
top: e.top,
|
|
244
244
|
center: e.center,
|
|
@@ -249,9 +249,9 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
249
249
|
"enter-controlled": e.enterControlled,
|
|
250
250
|
"enter-trigger": e.enterTrigger,
|
|
251
251
|
"leave-trigger": e.leaveTrigger,
|
|
252
|
-
onClose: t[0] || (t[0] = (l) =>
|
|
253
|
-
onEnterend: t[1] || (t[1] = (l) =>
|
|
254
|
-
onLeaveend: t[2] || (t[2] = (l) =>
|
|
252
|
+
onClose: t[0] || (t[0] = (l) => n("close", l.detail)),
|
|
253
|
+
onEnterend: t[1] || (t[1] = (l) => n("enterend", l.detail)),
|
|
254
|
+
onLeaveend: t[2] || (t[2] = (l) => n("leaveend", l.detail))
|
|
255
255
|
}), [
|
|
256
256
|
o(a.$slots, "default")
|
|
257
257
|
], 16, L));
|
|
@@ -267,21 +267,21 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
267
267
|
index: {}
|
|
268
268
|
},
|
|
269
269
|
emits: ["optmouseenter", "optselect"],
|
|
270
|
-
setup(e, { emit:
|
|
271
|
-
return (a, t) => (
|
|
270
|
+
setup(e, { emit: n }) {
|
|
271
|
+
return (a, t) => (s(), i("bs-dropdown-option", r(a.$attrs, {
|
|
272
272
|
value: e.value,
|
|
273
273
|
variant: e.variant,
|
|
274
274
|
"options-id": e.optionsId,
|
|
275
275
|
selected: e.selected,
|
|
276
276
|
focused: e.focused,
|
|
277
277
|
index: e.index,
|
|
278
|
-
onOptmouseenter: t[0] || (t[0] = (l) =>
|
|
279
|
-
onOptselect: t[1] || (t[1] = (l) =>
|
|
278
|
+
onOptmouseenter: t[0] || (t[0] = (l) => n("optmouseenter", l.detail)),
|
|
279
|
+
onOptselect: t[1] || (t[1] = (l) => n("optselect", l.detail))
|
|
280
280
|
}), [
|
|
281
281
|
o(a.$slots, "default")
|
|
282
282
|
], 16, V));
|
|
283
283
|
}
|
|
284
|
-
},
|
|
284
|
+
}, A = ["options-id", "visible", "focus-delay", "label", "selected-value"], Be = {
|
|
285
285
|
__name: "BsDropdownOptionList",
|
|
286
286
|
props: {
|
|
287
287
|
optionsId: {},
|
|
@@ -291,20 +291,20 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
291
291
|
selectedValue: {}
|
|
292
292
|
},
|
|
293
293
|
emits: ["optselected", "close"],
|
|
294
|
-
setup(e, { emit:
|
|
295
|
-
return (a, t) => (
|
|
294
|
+
setup(e, { emit: n }) {
|
|
295
|
+
return (a, t) => (s(), i("bs-dropdown-option-list", r(a.$attrs, {
|
|
296
296
|
"options-id": e.optionsId,
|
|
297
297
|
visible: e.visible,
|
|
298
298
|
"focus-delay": e.focusDelay,
|
|
299
299
|
label: e.label,
|
|
300
300
|
"selected-value": e.selectedValue,
|
|
301
|
-
onOptselected: t[0] || (t[0] = (l) =>
|
|
302
|
-
onClose: t[1] || (t[1] = (l) =>
|
|
301
|
+
onOptselected: t[0] || (t[0] = (l) => n("optselected", l.detail)),
|
|
302
|
+
onClose: t[1] || (t[1] = (l) => n("close", l.detail))
|
|
303
303
|
}), [
|
|
304
304
|
o(a.$slots, "default")
|
|
305
|
-
], 16,
|
|
305
|
+
], 16, A));
|
|
306
306
|
}
|
|
307
|
-
},
|
|
307
|
+
}, q = ["toggle-id", "container-id", "options-id", "width", "top", "center", "label", "selected-value", "enter-controlled", "enter-trigger", "leave-trigger", "helper-text", "helper-description"], Ie = {
|
|
308
308
|
__name: "BsDropdownWithOptions",
|
|
309
309
|
props: {
|
|
310
310
|
toggleId: {},
|
|
@@ -322,8 +322,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
322
322
|
helperDescription: {}
|
|
323
323
|
},
|
|
324
324
|
emits: ["optselected", "close", "enterend", "leaveend"],
|
|
325
|
-
setup(e, { emit:
|
|
326
|
-
return (a, t) => (
|
|
325
|
+
setup(e, { emit: n }) {
|
|
326
|
+
return (a, t) => (s(), i("bs-dropdown-with-options", r(a.$attrs, {
|
|
327
327
|
"toggle-id": e.toggleId,
|
|
328
328
|
"container-id": e.containerId,
|
|
329
329
|
"options-id": e.optionsId,
|
|
@@ -337,13 +337,13 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
337
337
|
"leave-trigger": e.leaveTrigger,
|
|
338
338
|
"helper-text": e.helperText,
|
|
339
339
|
"helper-description": e.helperDescription,
|
|
340
|
-
onOptselected: t[0] || (t[0] = (l) =>
|
|
341
|
-
onClose: t[1] || (t[1] = (l) =>
|
|
342
|
-
onEnterend: t[2] || (t[2] = (l) =>
|
|
343
|
-
onLeaveend: t[3] || (t[3] = (l) =>
|
|
340
|
+
onOptselected: t[0] || (t[0] = (l) => n("optselected", l.detail)),
|
|
341
|
+
onClose: t[1] || (t[1] = (l) => n("close", l.detail)),
|
|
342
|
+
onEnterend: t[2] || (t[2] = (l) => n("enterend", l.detail)),
|
|
343
|
+
onLeaveend: t[3] || (t[3] = (l) => n("leaveend", l.detail))
|
|
344
344
|
}), [
|
|
345
345
|
o(a.$slots, "default")
|
|
346
|
-
], 16,
|
|
346
|
+
], 16, q));
|
|
347
347
|
}
|
|
348
348
|
}, z = ["char-count", "char-max", "error", "error-msg", "hint", "hint-id"], Te = {
|
|
349
349
|
__name: "BsFieldDetails",
|
|
@@ -356,8 +356,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
356
356
|
hintId: {}
|
|
357
357
|
},
|
|
358
358
|
emits: [],
|
|
359
|
-
setup(e, { emit:
|
|
360
|
-
return (a, t) => (
|
|
359
|
+
setup(e, { emit: n }) {
|
|
360
|
+
return (a, t) => (s(), i("bs-field-details", r(a.$attrs, {
|
|
361
361
|
"char-count": e.charCount,
|
|
362
362
|
"char-max": e.charMax,
|
|
363
363
|
error: e.error,
|
|
@@ -380,8 +380,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
380
380
|
hintId: {}
|
|
381
381
|
},
|
|
382
382
|
emits: [],
|
|
383
|
-
setup(e, { emit:
|
|
384
|
-
return (a, t) => (
|
|
383
|
+
setup(e, { emit: n }) {
|
|
384
|
+
return (a, t) => (s(), i("bs-field-layout", r(a.$attrs, {
|
|
385
385
|
"char-count": e.charCount,
|
|
386
386
|
"char-max": e.charMax,
|
|
387
387
|
disabled: e.disabled,
|
|
@@ -403,8 +403,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
403
403
|
hints: {}
|
|
404
404
|
},
|
|
405
405
|
emits: [],
|
|
406
|
-
setup(e, { emit:
|
|
407
|
-
return (a, t) => (
|
|
406
|
+
setup(e, { emit: n }) {
|
|
407
|
+
return (a, t) => (s(), i("bs-hint", r(a.$attrs, {
|
|
408
408
|
error: e.error,
|
|
409
409
|
"hint-id": e.hintId,
|
|
410
410
|
hints: e.hints
|
|
@@ -425,8 +425,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
425
425
|
modelValue: {}
|
|
426
426
|
},
|
|
427
427
|
emits: ["update:modelValue"],
|
|
428
|
-
setup(e, { emit:
|
|
429
|
-
return (a, t) => (
|
|
428
|
+
setup(e, { emit: n }) {
|
|
429
|
+
return (a, t) => (s(), i("bs-input", r(a.$attrs, {
|
|
430
430
|
disabled: e.disabled,
|
|
431
431
|
error: e.error,
|
|
432
432
|
"input-id": e.inputId,
|
|
@@ -436,7 +436,7 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
436
436
|
type: e.type,
|
|
437
437
|
value: e.value || e.modelValue,
|
|
438
438
|
"hint-id": e.hintId,
|
|
439
|
-
onInput: t[0] || (t[0] = (l) =>
|
|
439
|
+
onInput: t[0] || (t[0] = (l) => n("update:modelValue", l.target.value))
|
|
440
440
|
}), null, 16, M));
|
|
441
441
|
}
|
|
442
442
|
}, F = ["disabled", "error", "multifocus", "variant"], ye = {
|
|
@@ -448,8 +448,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
448
448
|
variant: {}
|
|
449
449
|
},
|
|
450
450
|
emits: [],
|
|
451
|
-
setup(e, { emit:
|
|
452
|
-
return (a, t) => (
|
|
451
|
+
setup(e, { emit: n }) {
|
|
452
|
+
return (a, t) => (s(), i("bs-input-addon", r(a.$attrs, {
|
|
453
453
|
disabled: e.disabled,
|
|
454
454
|
error: e.error,
|
|
455
455
|
multifocus: e.multifocus,
|
|
@@ -476,8 +476,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
476
476
|
modelValue: {}
|
|
477
477
|
},
|
|
478
478
|
emits: ["update:modelValue"],
|
|
479
|
-
setup(e, { emit:
|
|
480
|
-
return (a, t) => (
|
|
479
|
+
setup(e, { emit: n }) {
|
|
480
|
+
return (a, t) => (s(), i("bs-input-field", r(a.$attrs, {
|
|
481
481
|
disabled: e.disabled,
|
|
482
482
|
error: e.error,
|
|
483
483
|
"error-msg": e.errorMsg,
|
|
@@ -490,7 +490,7 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
490
490
|
required: e.required,
|
|
491
491
|
type: e.type,
|
|
492
492
|
value: e.value || e.modelValue,
|
|
493
|
-
onInput: t[0] || (t[0] = (l) =>
|
|
493
|
+
onInput: t[0] || (t[0] = (l) => n("update:modelValue", l.target.value))
|
|
494
494
|
}), null, 16, O));
|
|
495
495
|
}
|
|
496
496
|
}, S = ["disabled", "pass-attrs", "placeholder", "hint-id", "input-id", "value"], Le = {
|
|
@@ -505,16 +505,16 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
505
505
|
modelValue: {}
|
|
506
506
|
},
|
|
507
507
|
emits: ["clear", "update:modelValue"],
|
|
508
|
-
setup(e, { emit:
|
|
509
|
-
return (a, t) => (
|
|
508
|
+
setup(e, { emit: n }) {
|
|
509
|
+
return (a, t) => (s(), i("bs-input-search", r(a.$attrs, {
|
|
510
510
|
disabled: e.disabled,
|
|
511
511
|
"pass-attrs": e.passAttrs,
|
|
512
512
|
placeholder: e.placeholder,
|
|
513
513
|
"hint-id": e.hintId,
|
|
514
514
|
"input-id": e.inputId,
|
|
515
515
|
value: e.value || e.modelValue,
|
|
516
|
-
onClear: t[0] || (t[0] = (l) =>
|
|
517
|
-
onInput: t[1] || (t[1] = (l) =>
|
|
516
|
+
onClear: t[0] || (t[0] = (l) => n("clear", l.detail)),
|
|
517
|
+
onInput: t[1] || (t[1] = (l) => n("update:modelValue", l.target.value))
|
|
518
518
|
}), null, 16, S));
|
|
519
519
|
}
|
|
520
520
|
}, E = ["disabled", "for", "hide", "pass-attrs", "required"], Ve = {
|
|
@@ -527,8 +527,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
527
527
|
required: {}
|
|
528
528
|
},
|
|
529
529
|
emits: [],
|
|
530
|
-
setup(e, { emit:
|
|
531
|
-
return (a, t) => (
|
|
530
|
+
setup(e, { emit: n }) {
|
|
531
|
+
return (a, t) => (s(), i("bs-label", r(a.$attrs, {
|
|
532
532
|
disabled: e.disabled,
|
|
533
533
|
for: e.for,
|
|
534
534
|
hide: e.hide,
|
|
@@ -538,20 +538,20 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
538
538
|
o(a.$slots, "default")
|
|
539
539
|
], 16, E));
|
|
540
540
|
}
|
|
541
|
-
}, j = ["size", "variant"],
|
|
541
|
+
}, j = ["size", "variant"], Ae = {
|
|
542
542
|
__name: "BsLoader",
|
|
543
543
|
props: {
|
|
544
544
|
size: {},
|
|
545
545
|
variant: {}
|
|
546
546
|
},
|
|
547
547
|
emits: [],
|
|
548
|
-
setup(e, { emit:
|
|
549
|
-
return (a, t) => (
|
|
548
|
+
setup(e, { emit: n }) {
|
|
549
|
+
return (a, t) => (s(), i("bs-loader", r(a.$attrs, {
|
|
550
550
|
size: e.size,
|
|
551
551
|
variant: e.variant
|
|
552
552
|
}), null, 16, j));
|
|
553
553
|
}
|
|
554
|
-
}, G = ["alert", "close-button", "enter-controlled", "enter-trigger", "leave-trigger"],
|
|
554
|
+
}, G = ["alert", "close-button", "enter-controlled", "enter-trigger", "leave-trigger"], qe = {
|
|
555
555
|
__name: "BsModal",
|
|
556
556
|
props: {
|
|
557
557
|
alert: { default: !1 },
|
|
@@ -561,16 +561,16 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
561
561
|
leaveTrigger: { default: !1 }
|
|
562
562
|
},
|
|
563
563
|
emits: ["close", "enterend", "leaveend"],
|
|
564
|
-
setup(e, { emit:
|
|
565
|
-
return (a, t) => (
|
|
564
|
+
setup(e, { emit: n }) {
|
|
565
|
+
return (a, t) => (s(), i("bs-modal", r(a.$attrs, {
|
|
566
566
|
alert: e.alert,
|
|
567
567
|
"close-button": e.closeButton,
|
|
568
568
|
"enter-controlled": e.enterControlled,
|
|
569
569
|
"enter-trigger": e.enterTrigger,
|
|
570
570
|
"leave-trigger": e.leaveTrigger,
|
|
571
|
-
onClose: t[0] || (t[0] = (l) =>
|
|
572
|
-
onEnterend: t[1] || (t[1] = (l) =>
|
|
573
|
-
onLeaveend: t[2] || (t[2] = (l) =>
|
|
571
|
+
onClose: t[0] || (t[0] = (l) => n("close", l.detail)),
|
|
572
|
+
onEnterend: t[1] || (t[1] = (l) => n("enterend", l.detail)),
|
|
573
|
+
onLeaveend: t[2] || (t[2] = (l) => n("leaveend", l.detail))
|
|
574
574
|
}), [
|
|
575
575
|
o(a.$slots, "default")
|
|
576
576
|
], 16, G));
|
|
@@ -583,13 +583,13 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
583
583
|
leaveTrigger: { default: !1 }
|
|
584
584
|
},
|
|
585
585
|
emits: ["enterend", "leaveend"],
|
|
586
|
-
setup(e, { emit:
|
|
587
|
-
return (a, t) => (
|
|
586
|
+
setup(e, { emit: n }) {
|
|
587
|
+
return (a, t) => (s(), i("bs-overlay", r(a.$attrs, {
|
|
588
588
|
"enter-controlled": e.enterControlled,
|
|
589
589
|
"enter-trigger": e.enterTrigger,
|
|
590
590
|
"leave-trigger": e.leaveTrigger,
|
|
591
|
-
onEnterend: t[0] || (t[0] = (l) =>
|
|
592
|
-
onLeaveend: t[1] || (t[1] = (l) =>
|
|
591
|
+
onEnterend: t[0] || (t[0] = (l) => n("enterend", l.detail)),
|
|
592
|
+
onLeaveend: t[1] || (t[1] = (l) => n("leaveend", l.detail))
|
|
593
593
|
}), null, 16, R));
|
|
594
594
|
}
|
|
595
595
|
}, H = ["show-first-last-buttons", "prev-page-text", "first-page-text", "next-page-text", "last-page-text", "fixed", "variant", "selection", "center-display", "break-text", "page-range", "page-count", "center-label", "items-per-group", "items-count", "results-increments"], De = {
|
|
@@ -613,8 +613,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
613
613
|
resultsIncrements: {}
|
|
614
614
|
},
|
|
615
615
|
emits: ["selchange"],
|
|
616
|
-
setup(e, { emit:
|
|
617
|
-
return (a, t) => (
|
|
616
|
+
setup(e, { emit: n }) {
|
|
617
|
+
return (a, t) => (s(), i("bs-pagination", r(a.$attrs, {
|
|
618
618
|
"show-first-last-buttons": e.showFirstLastButtons,
|
|
619
619
|
"prev-page-text": e.prevPageText,
|
|
620
620
|
"first-page-text": e.firstPageText,
|
|
@@ -631,7 +631,7 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
631
631
|
"items-per-group": e.itemsPerGroup,
|
|
632
632
|
"items-count": e.itemsCount,
|
|
633
633
|
"results-increments": e.resultsIncrements,
|
|
634
|
-
onSelchange: t[0] || (t[0] = (l) =>
|
|
634
|
+
onSelchange: t[0] || (t[0] = (l) => n("selchange", l.detail))
|
|
635
635
|
}), null, 16, H));
|
|
636
636
|
}
|
|
637
637
|
}, N = ["variant", "status", "href", "active", "disabled", "pass-attrs"], Pe = {
|
|
@@ -646,9 +646,9 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
646
646
|
router: {}
|
|
647
647
|
},
|
|
648
648
|
emits: [],
|
|
649
|
-
setup(e, { emit:
|
|
649
|
+
setup(e, { emit: n }) {
|
|
650
650
|
const a = e, { onLinkClick: t } = f(a);
|
|
651
|
-
return (l, d) => (
|
|
651
|
+
return (l, d) => (s(), i("bs-pill", r(l.$attrs, {
|
|
652
652
|
variant: e.variant,
|
|
653
653
|
status: e.status,
|
|
654
654
|
href: e.href,
|
|
@@ -660,7 +660,7 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
660
660
|
o(l.$slots, "default")
|
|
661
661
|
], 16, N));
|
|
662
662
|
}
|
|
663
|
-
}, W = ["layout", "href", "image-src", "image-size", "initials", "profile-name", "company", "job-title", "email"], Me = {
|
|
663
|
+
}, W = ["layout", "href", "image-src", "image-size", "initials", "profile-name", "company", "job-title", "email", "action", "action-icon", "misc-meta", "misc-meta-icon"], Me = {
|
|
664
664
|
__name: "BsProfile",
|
|
665
665
|
props: {
|
|
666
666
|
layout: {},
|
|
@@ -672,12 +672,16 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
672
672
|
company: {},
|
|
673
673
|
jobTitle: {},
|
|
674
674
|
email: {},
|
|
675
|
+
action: {},
|
|
676
|
+
actionIcon: {},
|
|
677
|
+
miscMeta: {},
|
|
678
|
+
miscMetaIcon: {},
|
|
675
679
|
router: {}
|
|
676
680
|
},
|
|
677
|
-
emits: [],
|
|
678
|
-
setup(e, { emit:
|
|
681
|
+
emits: ["action-toggled"],
|
|
682
|
+
setup(e, { emit: n }) {
|
|
679
683
|
const a = e, { onLinkClick: t } = f(a);
|
|
680
|
-
return (l, d) => (
|
|
684
|
+
return (l, d) => (s(), i("bs-profile", r(l.$attrs, {
|
|
681
685
|
layout: e.layout,
|
|
682
686
|
href: e.href,
|
|
683
687
|
"image-src": e.imageSrc,
|
|
@@ -687,24 +691,38 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
687
691
|
company: e.company,
|
|
688
692
|
"job-title": e.jobTitle,
|
|
689
693
|
email: e.email,
|
|
690
|
-
|
|
694
|
+
action: e.action,
|
|
695
|
+
"action-icon": e.actionIcon,
|
|
696
|
+
"misc-meta": e.miscMeta,
|
|
697
|
+
"misc-meta-icon": e.miscMetaIcon,
|
|
698
|
+
onActionToggled: d[0] || (d[0] = (u) => n("action-toggled", u.detail)),
|
|
699
|
+
onClick: d[1] || (d[1] = (...u) => c(t) && c(t)(...u))
|
|
691
700
|
}), null, 16, W));
|
|
692
701
|
}
|
|
693
|
-
}, X = ["profile-name", "company", "job-title", "email"], Fe = {
|
|
702
|
+
}, X = ["profile-name", "company", "job-title", "email", "action", "action-icon", "misc-meta", "misc-meta-icon"], Fe = {
|
|
694
703
|
__name: "BsProfileDetails",
|
|
695
704
|
props: {
|
|
696
705
|
profileName: {},
|
|
697
706
|
company: {},
|
|
698
707
|
jobTitle: {},
|
|
699
|
-
email: {}
|
|
708
|
+
email: {},
|
|
709
|
+
action: {},
|
|
710
|
+
actionIcon: {},
|
|
711
|
+
miscMeta: {},
|
|
712
|
+
miscMetaIcon: {}
|
|
700
713
|
},
|
|
701
|
-
emits: [],
|
|
702
|
-
setup(e, { emit:
|
|
703
|
-
return (a, t) => (
|
|
714
|
+
emits: ["action-toggled"],
|
|
715
|
+
setup(e, { emit: n }) {
|
|
716
|
+
return (a, t) => (s(), i("bs-profile-details", r(a.$attrs, {
|
|
704
717
|
"profile-name": e.profileName,
|
|
705
718
|
company: e.company,
|
|
706
719
|
"job-title": e.jobTitle,
|
|
707
|
-
email: e.email
|
|
720
|
+
email: e.email,
|
|
721
|
+
action: e.action,
|
|
722
|
+
"action-icon": e.actionIcon,
|
|
723
|
+
"misc-meta": e.miscMeta,
|
|
724
|
+
"misc-meta-icon": e.miscMetaIcon,
|
|
725
|
+
onActionToggled: t[0] || (t[0] = (l) => n("action-toggled", l.detail))
|
|
708
726
|
}), null, 16, X));
|
|
709
727
|
}
|
|
710
728
|
}, Y = ["src", "size", "initials", "profile-name"], Oe = {
|
|
@@ -716,8 +734,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
716
734
|
profileName: {}
|
|
717
735
|
},
|
|
718
736
|
emits: [],
|
|
719
|
-
setup(e, { emit:
|
|
720
|
-
return (a, t) => (
|
|
737
|
+
setup(e, { emit: n }) {
|
|
738
|
+
return (a, t) => (s(), i("bs-profile-img", r(a.$attrs, {
|
|
721
739
|
src: e.src,
|
|
722
740
|
size: e.size,
|
|
723
741
|
initials: e.initials,
|
|
@@ -733,9 +751,9 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
733
751
|
router: {}
|
|
734
752
|
},
|
|
735
753
|
emits: [],
|
|
736
|
-
setup(e, { emit:
|
|
754
|
+
setup(e, { emit: n }) {
|
|
737
755
|
const a = e, { onLinkClick: t } = f(a);
|
|
738
|
-
return (l, d) => (
|
|
756
|
+
return (l, d) => (s(), i("bs-profile-layout", r(l.$attrs, {
|
|
739
757
|
layout: e.layout,
|
|
740
758
|
href: e.href,
|
|
741
759
|
"pass-attrs": e.passAttrs,
|
|
@@ -759,8 +777,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
759
777
|
modelValue: {}
|
|
760
778
|
},
|
|
761
779
|
emits: ["update:modelValue"],
|
|
762
|
-
setup(e, { emit:
|
|
763
|
-
return (a, t) => (
|
|
780
|
+
setup(e, { emit: n }) {
|
|
781
|
+
return (a, t) => (s(), i("bs-radio", r(a.$attrs, {
|
|
764
782
|
label: e.label,
|
|
765
783
|
checked: e.checked || e.modelValue === e.value,
|
|
766
784
|
disabled: e.disabled,
|
|
@@ -770,7 +788,7 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
770
788
|
required: e.required,
|
|
771
789
|
size: e.size,
|
|
772
790
|
value: e.value,
|
|
773
|
-
onChange: t[0] || (t[0] = (l) =>
|
|
791
|
+
onChange: t[0] || (t[0] = (l) => n("update:modelValue", l.target.value))
|
|
774
792
|
}), null, 16, J));
|
|
775
793
|
}
|
|
776
794
|
}, K = ["disabled", "input-id", "required", "error", "hint-id", "value", "pass-attrs"], je = {
|
|
@@ -786,8 +804,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
786
804
|
modelValue: {}
|
|
787
805
|
},
|
|
788
806
|
emits: ["update:modelValue"],
|
|
789
|
-
setup(e, { emit:
|
|
790
|
-
return (a, t) => (
|
|
807
|
+
setup(e, { emit: n }) {
|
|
808
|
+
return (a, t) => (s(), i("bs-select", r(a.$attrs, {
|
|
791
809
|
disabled: e.disabled,
|
|
792
810
|
"input-id": e.inputId,
|
|
793
811
|
required: e.required,
|
|
@@ -795,7 +813,7 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
795
813
|
"hint-id": e.hintId,
|
|
796
814
|
value: e.value || e.modelValue,
|
|
797
815
|
"pass-attrs": e.passAttrs,
|
|
798
|
-
onChange: t[0] || (t[0] = (l) =>
|
|
816
|
+
onChange: t[0] || (t[0] = (l) => n("update:modelValue", l.target.value))
|
|
799
817
|
}), [
|
|
800
818
|
o(a.$slots, "default")
|
|
801
819
|
], 16, K));
|
|
@@ -818,8 +836,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
818
836
|
modelValue: {}
|
|
819
837
|
},
|
|
820
838
|
emits: ["update:modelValue"],
|
|
821
|
-
setup(e, { emit:
|
|
822
|
-
return (a, t) => (
|
|
839
|
+
setup(e, { emit: n }) {
|
|
840
|
+
return (a, t) => (s(), i("bs-select-field", r(a.$attrs, {
|
|
823
841
|
disabled: e.disabled,
|
|
824
842
|
error: e.error,
|
|
825
843
|
"error-msg": e.errorMsg,
|
|
@@ -832,7 +850,7 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
832
850
|
value: e.value || e.modelValue,
|
|
833
851
|
"pass-attrs": e.passAttrs,
|
|
834
852
|
data: e.data,
|
|
835
|
-
onChange: t[0] || (t[0] = (l) =>
|
|
853
|
+
onChange: t[0] || (t[0] = (l) => n("update:modelValue", l.target.value))
|
|
836
854
|
}), null, 16, Q));
|
|
837
855
|
}
|
|
838
856
|
}, U = ["checked", "disabled", "hide-label", "input-id", "inner-on-label", "inner-off-label", "label", "pass-attrs", "size"], Re = {
|
|
@@ -850,8 +868,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
850
868
|
modelValue: {}
|
|
851
869
|
},
|
|
852
870
|
emits: ["update:modelValue"],
|
|
853
|
-
setup(e, { emit:
|
|
854
|
-
return (a, t) => (
|
|
871
|
+
setup(e, { emit: n }) {
|
|
872
|
+
return (a, t) => (s(), i("bs-switch", r(a.$attrs, {
|
|
855
873
|
checked: e.checked || e.modelValue,
|
|
856
874
|
disabled: e.disabled,
|
|
857
875
|
"hide-label": e.hideLabel,
|
|
@@ -861,7 +879,7 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
861
879
|
label: e.label,
|
|
862
880
|
"pass-attrs": e.passAttrs,
|
|
863
881
|
size: e.size,
|
|
864
|
-
onChange: t[0] || (t[0] = (l) =>
|
|
882
|
+
onChange: t[0] || (t[0] = (l) => n("update:modelValue", l.target.checked))
|
|
865
883
|
}), null, 16, U));
|
|
866
884
|
}
|
|
867
885
|
}, p = ["active-tab-id", "hidden", "panel-id"], He = {
|
|
@@ -872,8 +890,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
872
890
|
panelId: {}
|
|
873
891
|
},
|
|
874
892
|
emits: [],
|
|
875
|
-
setup(e, { emit:
|
|
876
|
-
return (a, t) => (
|
|
893
|
+
setup(e, { emit: n }) {
|
|
894
|
+
return (a, t) => (s(), i("bs-tab", r(a.$attrs, {
|
|
877
895
|
"active-tab-id": e.activeTabId,
|
|
878
896
|
hidden: e.hidden,
|
|
879
897
|
"panel-id": e.panelId
|
|
@@ -890,11 +908,11 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
890
908
|
modelValue: {}
|
|
891
909
|
},
|
|
892
910
|
emits: ["tabChange", "update:modelValue"],
|
|
893
|
-
setup(e, { emit:
|
|
911
|
+
setup(e, { emit: n }) {
|
|
894
912
|
const a = (t) => {
|
|
895
|
-
|
|
913
|
+
n("tabChange", t.detail), n("update:modelValue", t.detail);
|
|
896
914
|
};
|
|
897
|
-
return (t, l) => (
|
|
915
|
+
return (t, l) => (s(), i("bs-tab-list", r(t.$attrs, {
|
|
898
916
|
"active-tab-id": e.activeTabId || e.modelValue,
|
|
899
917
|
"helper-text": e.helperText,
|
|
900
918
|
"helper-description": e.helperDescription,
|
|
@@ -910,8 +928,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
910
928
|
tabId: {}
|
|
911
929
|
},
|
|
912
930
|
emits: [],
|
|
913
|
-
setup(e, { emit:
|
|
914
|
-
return (a, t) => (
|
|
931
|
+
setup(e, { emit: n }) {
|
|
932
|
+
return (a, t) => (s(), i("bs-tab-panel", r(a.$attrs, {
|
|
915
933
|
"active-tab-id": e.activeTabId,
|
|
916
934
|
"tab-id": e.tabId
|
|
917
935
|
}), [
|
|
@@ -932,8 +950,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
932
950
|
modelValue: {}
|
|
933
951
|
},
|
|
934
952
|
emits: ["update:modelValue"],
|
|
935
|
-
setup(e, { emit:
|
|
936
|
-
return (a, t) => (
|
|
953
|
+
setup(e, { emit: n }) {
|
|
954
|
+
return (a, t) => (s(), i("bs-textarea", r(a.$attrs, {
|
|
937
955
|
disabled: e.disabled,
|
|
938
956
|
error: e.error,
|
|
939
957
|
"input-id": e.inputId,
|
|
@@ -942,7 +960,7 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
942
960
|
required: e.required,
|
|
943
961
|
value: e.value || e.modelValue,
|
|
944
962
|
"hint-id": e.hintId,
|
|
945
|
-
onInput: t[0] || (t[0] = (l) =>
|
|
963
|
+
onInput: t[0] || (t[0] = (l) => n("update:modelValue", l.target.value))
|
|
946
964
|
}), null, 16, te));
|
|
947
965
|
}
|
|
948
966
|
}, ae = ["char-max", "disabled", "error", "error-msg", "hint", "hints", "input-id", "label", "placeholder", "required", "value", "pass-attrs"], Ye = {
|
|
@@ -963,8 +981,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
963
981
|
modelValue: {}
|
|
964
982
|
},
|
|
965
983
|
emits: ["update:modelValue"],
|
|
966
|
-
setup(e, { emit:
|
|
967
|
-
return (a, t) => (
|
|
984
|
+
setup(e, { emit: n }) {
|
|
985
|
+
return (a, t) => (s(), i("bs-textarea-field", r(a.$attrs, {
|
|
968
986
|
"char-max": e.charMax,
|
|
969
987
|
disabled: e.disabled,
|
|
970
988
|
error: e.error,
|
|
@@ -977,7 +995,7 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
977
995
|
required: e.required,
|
|
978
996
|
value: e.value || e.modelValue,
|
|
979
997
|
"pass-attrs": e.passAttrs,
|
|
980
|
-
onInput: t[0] || (t[0] = (l) =>
|
|
998
|
+
onInput: t[0] || (t[0] = (l) => n("update:modelValue", l.target.value))
|
|
981
999
|
}), null, 16, ae));
|
|
982
1000
|
}
|
|
983
1001
|
}, le = ["toast-id", "variant", "stacked", "duration", "enter-controlled", "enter-trigger", "leave-trigger"], Ze = {
|
|
@@ -992,8 +1010,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
992
1010
|
leaveTrigger: { default: !1 }
|
|
993
1011
|
},
|
|
994
1012
|
emits: ["dismiss", "enterend", "leaveend"],
|
|
995
|
-
setup(e, { emit:
|
|
996
|
-
return (a, t) => (
|
|
1013
|
+
setup(e, { emit: n }) {
|
|
1014
|
+
return (a, t) => (s(), i("bs-toast", r(a.$attrs, {
|
|
997
1015
|
"toast-id": e.toastId,
|
|
998
1016
|
variant: e.variant,
|
|
999
1017
|
stacked: e.stacked,
|
|
@@ -1001,9 +1019,9 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
1001
1019
|
"enter-controlled": e.enterControlled,
|
|
1002
1020
|
"enter-trigger": e.enterTrigger,
|
|
1003
1021
|
"leave-trigger": e.leaveTrigger,
|
|
1004
|
-
onDismiss: t[0] || (t[0] = (l) =>
|
|
1005
|
-
onEnterend: t[1] || (t[1] = (l) =>
|
|
1006
|
-
onLeaveend: t[2] || (t[2] = (l) =>
|
|
1022
|
+
onDismiss: t[0] || (t[0] = (l) => n("dismiss", l.detail)),
|
|
1023
|
+
onEnterend: t[1] || (t[1] = (l) => n("enterend", l.detail)),
|
|
1024
|
+
onLeaveend: t[2] || (t[2] = (l) => n("leaveend", l.detail))
|
|
1007
1025
|
}), [
|
|
1008
1026
|
o(a.$slots, "default")
|
|
1009
1027
|
], 16, le));
|
|
@@ -1012,9 +1030,9 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
1012
1030
|
__name: "BsToastActions",
|
|
1013
1031
|
props: {},
|
|
1014
1032
|
emits: ["defaultDismiss"],
|
|
1015
|
-
setup(e, { emit:
|
|
1016
|
-
return (a, t) => (
|
|
1017
|
-
"on:defaultDismiss": t[0] || (t[0] = (l) =>
|
|
1033
|
+
setup(e, { emit: n }) {
|
|
1034
|
+
return (a, t) => (s(), i("bs-toast-actions", r(a.$attrs, {
|
|
1035
|
+
"on:defaultDismiss": t[0] || (t[0] = (l) => n("defaultDismiss", l.detail))
|
|
1018
1036
|
}), [
|
|
1019
1037
|
o(a.$slots, "default")
|
|
1020
1038
|
], 16));
|
|
@@ -1023,32 +1041,32 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
1023
1041
|
__name: "BsToastBody",
|
|
1024
1042
|
props: {},
|
|
1025
1043
|
emits: [],
|
|
1026
|
-
setup(e, { emit:
|
|
1027
|
-
return (a, t) => (
|
|
1044
|
+
setup(e, { emit: n }) {
|
|
1045
|
+
return (a, t) => (s(), i("bs-toast-body", v($(a.$attrs)), [
|
|
1028
1046
|
o(a.$slots, "default")
|
|
1029
1047
|
], 16));
|
|
1030
1048
|
}
|
|
1031
|
-
},
|
|
1049
|
+
}, ne = ["variant"], Qe = {
|
|
1032
1050
|
__name: "BsToastHeader",
|
|
1033
1051
|
props: {
|
|
1034
1052
|
variant: {}
|
|
1035
1053
|
},
|
|
1036
1054
|
emits: [],
|
|
1037
|
-
setup(e, { emit:
|
|
1038
|
-
return (a, t) => (
|
|
1055
|
+
setup(e, { emit: n }) {
|
|
1056
|
+
return (a, t) => (s(), i("bs-toast-header", r(a.$attrs, { variant: e.variant }), [
|
|
1039
1057
|
o(a.$slots, "default")
|
|
1040
|
-
], 16,
|
|
1058
|
+
], 16, ne));
|
|
1041
1059
|
}
|
|
1042
1060
|
}, Ue = {
|
|
1043
1061
|
__name: "BsToaster",
|
|
1044
1062
|
props: {},
|
|
1045
1063
|
emits: [],
|
|
1046
|
-
setup(e, { emit:
|
|
1047
|
-
return (a, t) => (
|
|
1064
|
+
setup(e, { emit: n }) {
|
|
1065
|
+
return (a, t) => (s(), i("bs-toaster", v($(a.$attrs)), [
|
|
1048
1066
|
o(a.$slots, "default")
|
|
1049
1067
|
], 16));
|
|
1050
1068
|
}
|
|
1051
|
-
},
|
|
1069
|
+
}, se = ["tooltip-id", "content", "position"], pe = {
|
|
1052
1070
|
__name: "BsTooltip",
|
|
1053
1071
|
props: {
|
|
1054
1072
|
tooltipId: {},
|
|
@@ -1056,14 +1074,14 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
1056
1074
|
position: {}
|
|
1057
1075
|
},
|
|
1058
1076
|
emits: [],
|
|
1059
|
-
setup(e, { emit:
|
|
1060
|
-
return (a, t) => (
|
|
1077
|
+
setup(e, { emit: n }) {
|
|
1078
|
+
return (a, t) => (s(), i("bs-tooltip", r(a.$attrs, {
|
|
1061
1079
|
"tooltip-id": e.tooltipId,
|
|
1062
1080
|
content: e.content,
|
|
1063
1081
|
position: e.position
|
|
1064
1082
|
}), [
|
|
1065
1083
|
o(a.$slots, "default")
|
|
1066
|
-
], 16,
|
|
1084
|
+
], 16, se));
|
|
1067
1085
|
}
|
|
1068
1086
|
}, ie = ["enter-class", "enter-attribute", "enter-duration", "leave-class", "leave-attribute", "leave-duration", "enter-controlled", "enter-trigger", "leave-trigger"], _e = {
|
|
1069
1087
|
__name: "BsTransition",
|
|
@@ -1079,8 +1097,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
1079
1097
|
leaveTrigger: { default: !1 }
|
|
1080
1098
|
},
|
|
1081
1099
|
emits: ["enterend", "leaveend"],
|
|
1082
|
-
setup(e, { emit:
|
|
1083
|
-
return (a, t) => (
|
|
1100
|
+
setup(e, { emit: n }) {
|
|
1101
|
+
return (a, t) => (s(), i("bs-transition", r(a.$attrs, {
|
|
1084
1102
|
"enter-class": e.enterClass,
|
|
1085
1103
|
"enter-attribute": e.enterAttribute,
|
|
1086
1104
|
"enter-duration": e.enterDuration,
|
|
@@ -1090,8 +1108,8 @@ const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
1090
1108
|
"enter-controlled": e.enterControlled,
|
|
1091
1109
|
"enter-trigger": e.enterTrigger,
|
|
1092
1110
|
"leave-trigger": e.leaveTrigger,
|
|
1093
|
-
onEnterend: t[0] || (t[0] = (l) =>
|
|
1094
|
-
onLeaveend: t[1] || (t[1] = (l) =>
|
|
1111
|
+
onEnterend: t[0] || (t[0] = (l) => n("enterend", l.detail)),
|
|
1112
|
+
onLeaveend: t[1] || (t[1] = (l) => n("leaveend", l.detail))
|
|
1095
1113
|
}), [
|
|
1096
1114
|
o(a.$slots, "default")
|
|
1097
1115
|
], 16, ie));
|
|
@@ -1103,8 +1121,8 @@ export {
|
|
|
1103
1121
|
ue as BsBanner,
|
|
1104
1122
|
ce as BsButton,
|
|
1105
1123
|
fe as BsCharacterCount,
|
|
1106
|
-
|
|
1107
|
-
|
|
1124
|
+
me as BsChartBar,
|
|
1125
|
+
he as BsChartTable,
|
|
1108
1126
|
be as BsCheckbox,
|
|
1109
1127
|
ge as BsCircleButton,
|
|
1110
1128
|
ve as BsDropdown,
|
|
@@ -1119,8 +1137,8 @@ export {
|
|
|
1119
1137
|
we as BsInputField,
|
|
1120
1138
|
Le as BsInputSearch,
|
|
1121
1139
|
Ve as BsLabel,
|
|
1122
|
-
|
|
1123
|
-
|
|
1140
|
+
Ae as BsLoader,
|
|
1141
|
+
qe as BsModal,
|
|
1124
1142
|
ze as BsOverlay,
|
|
1125
1143
|
De as BsPagination,
|
|
1126
1144
|
Pe as BsPill,
|