@wwtdev/bsds-components-vue3 1.13.0 → 1.14.0
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 +329 -257
- package/lib/bsds-components.umd.js +1 -1
- package/lib/components.d.ts +1 -0
- package/lib/components.js +37 -3
- package/lib/components.js.map +1 -1
- package/nuxt/bsds-components.mjs +379 -306
- package/nuxt/bsds-components.umd.js +1 -1
- package/package.json +2 -2
package/lib/bsds-components.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { openBlock as
|
|
2
|
-
const B = ["controlled", "icon", "header-text", "heading-level", "open-item", "open-item-id", "stacked"],
|
|
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
|
+
const B = ["controlled", "icon", "header-text", "heading-level", "open-item", "open-item-id", "stacked"], de = {
|
|
3
3
|
__name: "BsAccordion",
|
|
4
4
|
props: {
|
|
5
5
|
controlled: { default: !1 },
|
|
@@ -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,12 +20,12 @@ 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));
|
|
27
27
|
}
|
|
28
|
-
},
|
|
28
|
+
}, I = ["color", "count", "count-max", "dot", "label", "position", "show-zero"], oe = {
|
|
29
29
|
__name: "BsBadge",
|
|
30
30
|
props: {
|
|
31
31
|
color: {},
|
|
@@ -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,
|
|
@@ -48,35 +48,35 @@ const B = ["controlled", "icon", "header-text", "heading-level", "open-item", "o
|
|
|
48
48
|
"show-zero": e.showZero
|
|
49
49
|
}), [
|
|
50
50
|
o(a.$slots, "default")
|
|
51
|
-
], 16,
|
|
51
|
+
], 16, I));
|
|
52
52
|
}
|
|
53
|
-
},
|
|
53
|
+
}, ue = {
|
|
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) || (
|
|
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
|
}
|
|
79
|
-
const
|
|
79
|
+
const T = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn", "size"], ce = {
|
|
80
80
|
__name: "BsButton",
|
|
81
81
|
props: {
|
|
82
82
|
variant: {},
|
|
@@ -89,9 +89,9 @@ const x = ["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,
|
|
@@ -102,22 +102,22 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
102
102
|
onClick: d[0] || (d[0] = (...u) => c(t) && c(t)(...u))
|
|
103
103
|
}), [
|
|
104
104
|
o(l.$slots, "default")
|
|
105
|
-
], 16,
|
|
105
|
+
], 16, T));
|
|
106
106
|
}
|
|
107
|
-
},
|
|
107
|
+
}, x = ["char-count", "char-max"], fe = {
|
|
108
108
|
__name: "BsCharacterCount",
|
|
109
109
|
props: {
|
|
110
110
|
charCount: {},
|
|
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
|
-
}), null, 16,
|
|
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 x = ["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 x = ["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,14 +154,14 @@ const x = ["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
|
|
162
162
|
}), null, 16, k));
|
|
163
163
|
}
|
|
164
|
-
}, y = ["label", "checked", "checked-partially", "disabled", "error", "pass-attrs", "required", "size"], be = {
|
|
164
|
+
}, y = ["label", "checked", "checked-partially", "disabled", "error", "input-id", "pass-attrs", "required", "size"], be = {
|
|
165
165
|
__name: "BsCheckbox",
|
|
166
166
|
props: {
|
|
167
167
|
label: {},
|
|
@@ -169,26 +169,28 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
169
169
|
checkedPartially: { default: !1 },
|
|
170
170
|
disabled: { default: !1 },
|
|
171
171
|
error: {},
|
|
172
|
+
inputId: {},
|
|
172
173
|
passAttrs: { default: "" },
|
|
173
174
|
required: {},
|
|
174
175
|
size: {},
|
|
175
176
|
modelValue: {}
|
|
176
177
|
},
|
|
177
178
|
emits: ["update:modelValue"],
|
|
178
|
-
setup(e, { emit:
|
|
179
|
-
return (a, t) => (
|
|
179
|
+
setup(e, { emit: n }) {
|
|
180
|
+
return (a, t) => (s(), i("bs-checkbox", r(a.$attrs, {
|
|
180
181
|
label: e.label,
|
|
181
182
|
checked: e.checked || e.modelValue,
|
|
182
183
|
"checked-partially": e.checkedPartially,
|
|
183
184
|
disabled: e.disabled,
|
|
184
185
|
error: e.error,
|
|
186
|
+
"input-id": e.inputId,
|
|
185
187
|
"pass-attrs": e.passAttrs,
|
|
186
188
|
required: e.required,
|
|
187
189
|
size: e.size,
|
|
188
|
-
onChange: t[0] || (t[0] = (l) =>
|
|
190
|
+
onChange: t[0] || (t[0] = (l) => n("update:modelValue", l.target.checked))
|
|
189
191
|
}), null, 16, y));
|
|
190
192
|
}
|
|
191
|
-
}, w = ["disabled", "ghost-btn", "hover-effect", "href", "icon", "icon-position", "label", "pass-attrs", "text-btn", "size"],
|
|
193
|
+
}, w = ["disabled", "ghost-btn", "hover-effect", "href", "icon", "icon-position", "label", "pass-attrs", "text-btn", "size"], ge = {
|
|
192
194
|
__name: "BsCircleButton",
|
|
193
195
|
props: {
|
|
194
196
|
disabled: {},
|
|
@@ -204,9 +206,9 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
204
206
|
router: {}
|
|
205
207
|
},
|
|
206
208
|
emits: [],
|
|
207
|
-
setup(e, { emit:
|
|
209
|
+
setup(e, { emit: n }) {
|
|
208
210
|
const a = e, { onLinkClick: t } = f(a);
|
|
209
|
-
return (l, d) => (
|
|
211
|
+
return (l, d) => (s(), i("bs-circle-button", r(l.$attrs, {
|
|
210
212
|
disabled: e.disabled,
|
|
211
213
|
"ghost-btn": e.ghostBtn,
|
|
212
214
|
"hover-effect": e.hoverEffect,
|
|
@@ -220,7 +222,7 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
220
222
|
onClick: d[0] || (d[0] = (...u) => c(t) && c(t)(...u))
|
|
221
223
|
}), null, 16, w));
|
|
222
224
|
}
|
|
223
|
-
}, L = ["width", "top", "center", "toggle-id", "container-id", "helper-text", "helper-description", "enter-controlled", "enter-trigger", "leave-trigger"],
|
|
225
|
+
}, L = ["width", "top", "center", "toggle-id", "container-id", "helper-text", "helper-description", "enter-controlled", "enter-trigger", "leave-trigger"], ve = {
|
|
224
226
|
__name: "BsDropdown",
|
|
225
227
|
props: {
|
|
226
228
|
width: { default: void 0 },
|
|
@@ -235,8 +237,8 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
235
237
|
leaveTrigger: { default: !1 }
|
|
236
238
|
},
|
|
237
239
|
emits: ["close", "enterend", "leaveend"],
|
|
238
|
-
setup(e, { emit:
|
|
239
|
-
return (a, t) => (
|
|
240
|
+
setup(e, { emit: n }) {
|
|
241
|
+
return (a, t) => (s(), i("bs-dropdown", r(a.$attrs, {
|
|
240
242
|
width: e.width,
|
|
241
243
|
top: e.top,
|
|
242
244
|
center: e.center,
|
|
@@ -247,14 +249,14 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
247
249
|
"enter-controlled": e.enterControlled,
|
|
248
250
|
"enter-trigger": e.enterTrigger,
|
|
249
251
|
"leave-trigger": e.leaveTrigger,
|
|
250
|
-
onClose: t[0] || (t[0] = (l) =>
|
|
251
|
-
onEnterend: t[1] || (t[1] = (l) =>
|
|
252
|
-
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))
|
|
253
255
|
}), [
|
|
254
256
|
o(a.$slots, "default")
|
|
255
257
|
], 16, L));
|
|
256
258
|
}
|
|
257
|
-
}, V = ["value", "variant", "options-id", "selected", "focused", "index"],
|
|
259
|
+
}, V = ["value", "variant", "options-id", "selected", "focused", "index"], $e = {
|
|
258
260
|
__name: "BsDropdownOption",
|
|
259
261
|
props: {
|
|
260
262
|
value: {},
|
|
@@ -265,21 +267,21 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
265
267
|
index: {}
|
|
266
268
|
},
|
|
267
269
|
emits: ["optmouseenter", "optselect"],
|
|
268
|
-
setup(e, { emit:
|
|
269
|
-
return (a, t) => (
|
|
270
|
+
setup(e, { emit: n }) {
|
|
271
|
+
return (a, t) => (s(), i("bs-dropdown-option", r(a.$attrs, {
|
|
270
272
|
value: e.value,
|
|
271
273
|
variant: e.variant,
|
|
272
274
|
"options-id": e.optionsId,
|
|
273
275
|
selected: e.selected,
|
|
274
276
|
focused: e.focused,
|
|
275
277
|
index: e.index,
|
|
276
|
-
onOptmouseenter: t[0] || (t[0] = (l) =>
|
|
277
|
-
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))
|
|
278
280
|
}), [
|
|
279
281
|
o(a.$slots, "default")
|
|
280
282
|
], 16, V));
|
|
281
283
|
}
|
|
282
|
-
},
|
|
284
|
+
}, A = ["options-id", "visible", "focus-delay", "label", "selected-value"], Be = {
|
|
283
285
|
__name: "BsDropdownOptionList",
|
|
284
286
|
props: {
|
|
285
287
|
optionsId: {},
|
|
@@ -289,20 +291,20 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
289
291
|
selectedValue: {}
|
|
290
292
|
},
|
|
291
293
|
emits: ["optselected", "close"],
|
|
292
|
-
setup(e, { emit:
|
|
293
|
-
return (a, t) => (
|
|
294
|
+
setup(e, { emit: n }) {
|
|
295
|
+
return (a, t) => (s(), i("bs-dropdown-option-list", r(a.$attrs, {
|
|
294
296
|
"options-id": e.optionsId,
|
|
295
297
|
visible: e.visible,
|
|
296
298
|
"focus-delay": e.focusDelay,
|
|
297
299
|
label: e.label,
|
|
298
300
|
"selected-value": e.selectedValue,
|
|
299
|
-
onOptselected: t[0] || (t[0] = (l) =>
|
|
300
|
-
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))
|
|
301
303
|
}), [
|
|
302
304
|
o(a.$slots, "default")
|
|
303
|
-
], 16,
|
|
305
|
+
], 16, A));
|
|
304
306
|
}
|
|
305
|
-
},
|
|
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 = {
|
|
306
308
|
__name: "BsDropdownWithOptions",
|
|
307
309
|
props: {
|
|
308
310
|
toggleId: {},
|
|
@@ -320,8 +322,8 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
320
322
|
helperDescription: {}
|
|
321
323
|
},
|
|
322
324
|
emits: ["optselected", "close", "enterend", "leaveend"],
|
|
323
|
-
setup(e, { emit:
|
|
324
|
-
return (a, t) => (
|
|
325
|
+
setup(e, { emit: n }) {
|
|
326
|
+
return (a, t) => (s(), i("bs-dropdown-with-options", r(a.$attrs, {
|
|
325
327
|
"toggle-id": e.toggleId,
|
|
326
328
|
"container-id": e.containerId,
|
|
327
329
|
"options-id": e.optionsId,
|
|
@@ -335,15 +337,36 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
335
337
|
"leave-trigger": e.leaveTrigger,
|
|
336
338
|
"helper-text": e.helperText,
|
|
337
339
|
"helper-description": e.helperDescription,
|
|
338
|
-
onOptselected: t[0] || (t[0] = (l) =>
|
|
339
|
-
onClose: t[1] || (t[1] = (l) =>
|
|
340
|
-
onEnterend: t[2] || (t[2] = (l) =>
|
|
341
|
-
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))
|
|
342
344
|
}), [
|
|
343
345
|
o(a.$slots, "default")
|
|
344
|
-
], 16,
|
|
346
|
+
], 16, q));
|
|
347
|
+
}
|
|
348
|
+
}, z = ["char-count", "char-max", "error", "error-msg", "hint", "hint-id"], Te = {
|
|
349
|
+
__name: "BsFieldDetails",
|
|
350
|
+
props: {
|
|
351
|
+
charCount: {},
|
|
352
|
+
charMax: {},
|
|
353
|
+
error: {},
|
|
354
|
+
errorMsg: {},
|
|
355
|
+
hint: {},
|
|
356
|
+
hintId: {}
|
|
357
|
+
},
|
|
358
|
+
emits: [],
|
|
359
|
+
setup(e, { emit: n }) {
|
|
360
|
+
return (a, t) => (s(), i("bs-field-details", r(a.$attrs, {
|
|
361
|
+
"char-count": e.charCount,
|
|
362
|
+
"char-max": e.charMax,
|
|
363
|
+
error: e.error,
|
|
364
|
+
"error-msg": e.errorMsg,
|
|
365
|
+
hint: e.hint,
|
|
366
|
+
"hint-id": e.hintId
|
|
367
|
+
}), null, 16, z));
|
|
345
368
|
}
|
|
346
|
-
},
|
|
369
|
+
}, D = ["char-count", "char-max", "disabled", "error", "hints", "label", "label-for", "required", "hint-id"], xe = {
|
|
347
370
|
__name: "BsFieldLayout",
|
|
348
371
|
props: {
|
|
349
372
|
charCount: {},
|
|
@@ -357,8 +380,8 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
357
380
|
hintId: {}
|
|
358
381
|
},
|
|
359
382
|
emits: [],
|
|
360
|
-
setup(e, { emit:
|
|
361
|
-
return (a, t) => (
|
|
383
|
+
setup(e, { emit: n }) {
|
|
384
|
+
return (a, t) => (s(), i("bs-field-layout", r(a.$attrs, {
|
|
362
385
|
"char-count": e.charCount,
|
|
363
386
|
"char-max": e.charMax,
|
|
364
387
|
disabled: e.disabled,
|
|
@@ -370,9 +393,9 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
370
393
|
"hint-id": e.hintId
|
|
371
394
|
}), [
|
|
372
395
|
o(a.$slots, "default")
|
|
373
|
-
], 16,
|
|
396
|
+
], 16, D));
|
|
374
397
|
}
|
|
375
|
-
},
|
|
398
|
+
}, P = ["error", "hint-id", "hints"], Ce = {
|
|
376
399
|
__name: "BsHint",
|
|
377
400
|
props: {
|
|
378
401
|
error: {},
|
|
@@ -380,18 +403,19 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
380
403
|
hints: {}
|
|
381
404
|
},
|
|
382
405
|
emits: [],
|
|
383
|
-
setup(e, { emit:
|
|
384
|
-
return (a, t) => (
|
|
406
|
+
setup(e, { emit: n }) {
|
|
407
|
+
return (a, t) => (s(), i("bs-hint", r(a.$attrs, {
|
|
385
408
|
error: e.error,
|
|
386
409
|
"hint-id": e.hintId,
|
|
387
410
|
hints: e.hints
|
|
388
|
-
}), null, 16,
|
|
411
|
+
}), null, 16, P));
|
|
389
412
|
}
|
|
390
|
-
},
|
|
413
|
+
}, M = ["disabled", "error", "input-id", "pass-attrs", "placeholder", "required", "type", "value", "hint-id"], ke = {
|
|
391
414
|
__name: "BsInput",
|
|
392
415
|
props: {
|
|
393
416
|
disabled: { default: !1 },
|
|
394
417
|
error: {},
|
|
418
|
+
inputId: {},
|
|
395
419
|
passAttrs: { default: "" },
|
|
396
420
|
placeholder: {},
|
|
397
421
|
required: {},
|
|
@@ -401,20 +425,21 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
401
425
|
modelValue: {}
|
|
402
426
|
},
|
|
403
427
|
emits: ["update:modelValue"],
|
|
404
|
-
setup(e, { emit:
|
|
405
|
-
return (a, t) => (
|
|
428
|
+
setup(e, { emit: n }) {
|
|
429
|
+
return (a, t) => (s(), i("bs-input", r(a.$attrs, {
|
|
406
430
|
disabled: e.disabled,
|
|
407
431
|
error: e.error,
|
|
432
|
+
"input-id": e.inputId,
|
|
408
433
|
"pass-attrs": e.passAttrs,
|
|
409
434
|
placeholder: e.placeholder,
|
|
410
435
|
required: e.required,
|
|
411
436
|
type: e.type,
|
|
412
437
|
value: e.value || e.modelValue,
|
|
413
438
|
"hint-id": e.hintId,
|
|
414
|
-
onInput: t[0] || (t[0] = (l) =>
|
|
415
|
-
}), null, 16,
|
|
439
|
+
onInput: t[0] || (t[0] = (l) => n("update:modelValue", l.target.value))
|
|
440
|
+
}), null, 16, M));
|
|
416
441
|
}
|
|
417
|
-
},
|
|
442
|
+
}, F = ["disabled", "error", "multifocus", "variant"], ye = {
|
|
418
443
|
__name: "BsInputAddon",
|
|
419
444
|
props: {
|
|
420
445
|
disabled: { default: !1 },
|
|
@@ -423,22 +448,25 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
423
448
|
variant: {}
|
|
424
449
|
},
|
|
425
450
|
emits: [],
|
|
426
|
-
setup(e, { emit:
|
|
427
|
-
return (a, t) => (
|
|
451
|
+
setup(e, { emit: n }) {
|
|
452
|
+
return (a, t) => (s(), i("bs-input-addon", r(a.$attrs, {
|
|
428
453
|
disabled: e.disabled,
|
|
429
454
|
error: e.error,
|
|
430
455
|
multifocus: e.multifocus,
|
|
431
456
|
variant: e.variant
|
|
432
457
|
}), [
|
|
433
458
|
o(a.$slots, "default")
|
|
434
|
-
], 16,
|
|
459
|
+
], 16, F));
|
|
435
460
|
}
|
|
436
|
-
},
|
|
461
|
+
}, O = ["disabled", "error", "error-msg", "hint", "hints", "input-id", "label", "pass-attrs", "placeholder", "required", "type", "value"], we = {
|
|
437
462
|
__name: "BsInputField",
|
|
438
463
|
props: {
|
|
439
464
|
disabled: { default: !1 },
|
|
440
465
|
error: {},
|
|
466
|
+
errorMsg: {},
|
|
467
|
+
hint: {},
|
|
441
468
|
hints: {},
|
|
469
|
+
inputId: {},
|
|
442
470
|
label: {},
|
|
443
471
|
passAttrs: { default: "" },
|
|
444
472
|
placeholder: {},
|
|
@@ -448,43 +476,48 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
448
476
|
modelValue: {}
|
|
449
477
|
},
|
|
450
478
|
emits: ["update:modelValue"],
|
|
451
|
-
setup(e, { emit:
|
|
452
|
-
return (a, t) => (
|
|
479
|
+
setup(e, { emit: n }) {
|
|
480
|
+
return (a, t) => (s(), i("bs-input-field", r(a.$attrs, {
|
|
453
481
|
disabled: e.disabled,
|
|
454
482
|
error: e.error,
|
|
483
|
+
"error-msg": e.errorMsg,
|
|
484
|
+
hint: e.hint,
|
|
455
485
|
hints: e.hints,
|
|
486
|
+
"input-id": e.inputId,
|
|
456
487
|
label: e.label,
|
|
457
488
|
"pass-attrs": e.passAttrs,
|
|
458
489
|
placeholder: e.placeholder,
|
|
459
490
|
required: e.required,
|
|
460
491
|
type: e.type,
|
|
461
492
|
value: e.value || e.modelValue,
|
|
462
|
-
onInput: t[0] || (t[0] = (l) =>
|
|
463
|
-
}), null, 16,
|
|
493
|
+
onInput: t[0] || (t[0] = (l) => n("update:modelValue", l.target.value))
|
|
494
|
+
}), null, 16, O));
|
|
464
495
|
}
|
|
465
|
-
},
|
|
496
|
+
}, S = ["disabled", "pass-attrs", "placeholder", "hint-id", "input-id", "value"], Le = {
|
|
466
497
|
__name: "BsInputSearch",
|
|
467
498
|
props: {
|
|
468
499
|
disabled: { default: !1 },
|
|
469
500
|
passAttrs: { default: "" },
|
|
470
501
|
placeholder: { default: "Search Items" },
|
|
471
502
|
hintId: {},
|
|
503
|
+
inputId: {},
|
|
472
504
|
value: { default: "" },
|
|
473
505
|
modelValue: {}
|
|
474
506
|
},
|
|
475
507
|
emits: ["clear", "update:modelValue"],
|
|
476
|
-
setup(e, { emit:
|
|
477
|
-
return (a, t) => (
|
|
508
|
+
setup(e, { emit: n }) {
|
|
509
|
+
return (a, t) => (s(), i("bs-input-search", r(a.$attrs, {
|
|
478
510
|
disabled: e.disabled,
|
|
479
511
|
"pass-attrs": e.passAttrs,
|
|
480
512
|
placeholder: e.placeholder,
|
|
481
513
|
"hint-id": e.hintId,
|
|
514
|
+
"input-id": e.inputId,
|
|
482
515
|
value: e.value || e.modelValue,
|
|
483
|
-
onClear: t[0] || (t[0] = (l) =>
|
|
484
|
-
onInput: t[1] || (t[1] = (l) =>
|
|
485
|
-
}), null, 16,
|
|
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
|
+
}), null, 16, S));
|
|
486
519
|
}
|
|
487
|
-
}, E = ["disabled", "for", "hide", "pass-attrs", "required"],
|
|
520
|
+
}, E = ["disabled", "for", "hide", "pass-attrs", "required"], Ve = {
|
|
488
521
|
__name: "BsLabel",
|
|
489
522
|
props: {
|
|
490
523
|
disabled: {},
|
|
@@ -494,8 +527,8 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
494
527
|
required: {}
|
|
495
528
|
},
|
|
496
529
|
emits: [],
|
|
497
|
-
setup(e, { emit:
|
|
498
|
-
return (a, t) => (
|
|
530
|
+
setup(e, { emit: n }) {
|
|
531
|
+
return (a, t) => (s(), i("bs-label", r(a.$attrs, {
|
|
499
532
|
disabled: e.disabled,
|
|
500
533
|
for: e.for,
|
|
501
534
|
hide: e.hide,
|
|
@@ -505,20 +538,20 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
505
538
|
o(a.$slots, "default")
|
|
506
539
|
], 16, E));
|
|
507
540
|
}
|
|
508
|
-
}, j = ["size", "variant"],
|
|
541
|
+
}, j = ["size", "variant"], Ae = {
|
|
509
542
|
__name: "BsLoader",
|
|
510
543
|
props: {
|
|
511
544
|
size: {},
|
|
512
545
|
variant: {}
|
|
513
546
|
},
|
|
514
547
|
emits: [],
|
|
515
|
-
setup(e, { emit:
|
|
516
|
-
return (a, t) => (
|
|
548
|
+
setup(e, { emit: n }) {
|
|
549
|
+
return (a, t) => (s(), i("bs-loader", r(a.$attrs, {
|
|
517
550
|
size: e.size,
|
|
518
551
|
variant: e.variant
|
|
519
552
|
}), null, 16, j));
|
|
520
553
|
}
|
|
521
|
-
},
|
|
554
|
+
}, G = ["alert", "close-button", "enter-controlled", "enter-trigger", "leave-trigger"], qe = {
|
|
522
555
|
__name: "BsModal",
|
|
523
556
|
props: {
|
|
524
557
|
alert: { default: !1 },
|
|
@@ -528,21 +561,21 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
528
561
|
leaveTrigger: { default: !1 }
|
|
529
562
|
},
|
|
530
563
|
emits: ["close", "enterend", "leaveend"],
|
|
531
|
-
setup(e, { emit:
|
|
532
|
-
return (a, t) => (
|
|
564
|
+
setup(e, { emit: n }) {
|
|
565
|
+
return (a, t) => (s(), i("bs-modal", r(a.$attrs, {
|
|
533
566
|
alert: e.alert,
|
|
534
567
|
"close-button": e.closeButton,
|
|
535
568
|
"enter-controlled": e.enterControlled,
|
|
536
569
|
"enter-trigger": e.enterTrigger,
|
|
537
570
|
"leave-trigger": e.leaveTrigger,
|
|
538
|
-
onClose: t[0] || (t[0] = (l) =>
|
|
539
|
-
onEnterend: t[1] || (t[1] = (l) =>
|
|
540
|
-
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))
|
|
541
574
|
}), [
|
|
542
575
|
o(a.$slots, "default")
|
|
543
|
-
], 16,
|
|
576
|
+
], 16, G));
|
|
544
577
|
}
|
|
545
|
-
},
|
|
578
|
+
}, R = ["enter-controlled", "enter-trigger", "leave-trigger"], ze = {
|
|
546
579
|
__name: "BsOverlay",
|
|
547
580
|
props: {
|
|
548
581
|
enterControlled: { default: !1 },
|
|
@@ -550,16 +583,16 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
550
583
|
leaveTrigger: { default: !1 }
|
|
551
584
|
},
|
|
552
585
|
emits: ["enterend", "leaveend"],
|
|
553
|
-
setup(e, { emit:
|
|
554
|
-
return (a, t) => (
|
|
586
|
+
setup(e, { emit: n }) {
|
|
587
|
+
return (a, t) => (s(), i("bs-overlay", r(a.$attrs, {
|
|
555
588
|
"enter-controlled": e.enterControlled,
|
|
556
589
|
"enter-trigger": e.enterTrigger,
|
|
557
590
|
"leave-trigger": e.leaveTrigger,
|
|
558
|
-
onEnterend: t[0] || (t[0] = (l) =>
|
|
559
|
-
onLeaveend: t[1] || (t[1] = (l) =>
|
|
560
|
-
}), null, 16,
|
|
591
|
+
onEnterend: t[0] || (t[0] = (l) => n("enterend", l.detail)),
|
|
592
|
+
onLeaveend: t[1] || (t[1] = (l) => n("leaveend", l.detail))
|
|
593
|
+
}), null, 16, R));
|
|
561
594
|
}
|
|
562
|
-
},
|
|
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 = {
|
|
563
596
|
__name: "BsPagination",
|
|
564
597
|
props: {
|
|
565
598
|
showFirstLastButtons: { default: !1 },
|
|
@@ -580,8 +613,8 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
580
613
|
resultsIncrements: {}
|
|
581
614
|
},
|
|
582
615
|
emits: ["selchange"],
|
|
583
|
-
setup(e, { emit:
|
|
584
|
-
return (a, t) => (
|
|
616
|
+
setup(e, { emit: n }) {
|
|
617
|
+
return (a, t) => (s(), i("bs-pagination", r(a.$attrs, {
|
|
585
618
|
"show-first-last-buttons": e.showFirstLastButtons,
|
|
586
619
|
"prev-page-text": e.prevPageText,
|
|
587
620
|
"first-page-text": e.firstPageText,
|
|
@@ -598,10 +631,10 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
598
631
|
"items-per-group": e.itemsPerGroup,
|
|
599
632
|
"items-count": e.itemsCount,
|
|
600
633
|
"results-increments": e.resultsIncrements,
|
|
601
|
-
onSelchange: t[0] || (t[0] = (l) =>
|
|
602
|
-
}), null, 16,
|
|
634
|
+
onSelchange: t[0] || (t[0] = (l) => n("selchange", l.detail))
|
|
635
|
+
}), null, 16, H));
|
|
603
636
|
}
|
|
604
|
-
},
|
|
637
|
+
}, N = ["variant", "status", "href", "active", "disabled", "pass-attrs"], Pe = {
|
|
605
638
|
__name: "BsPill",
|
|
606
639
|
props: {
|
|
607
640
|
variant: {},
|
|
@@ -613,9 +646,9 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
613
646
|
router: {}
|
|
614
647
|
},
|
|
615
648
|
emits: [],
|
|
616
|
-
setup(e, { emit:
|
|
649
|
+
setup(e, { emit: n }) {
|
|
617
650
|
const a = e, { onLinkClick: t } = f(a);
|
|
618
|
-
return (l, d) => (
|
|
651
|
+
return (l, d) => (s(), i("bs-pill", r(l.$attrs, {
|
|
619
652
|
variant: e.variant,
|
|
620
653
|
status: e.status,
|
|
621
654
|
href: e.href,
|
|
@@ -625,9 +658,9 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
625
658
|
onClick: d[0] || (d[0] = (...u) => c(t) && c(t)(...u))
|
|
626
659
|
}), [
|
|
627
660
|
o(l.$slots, "default")
|
|
628
|
-
], 16,
|
|
661
|
+
], 16, N));
|
|
629
662
|
}
|
|
630
|
-
},
|
|
663
|
+
}, W = ["layout", "href", "image-src", "image-size", "initials", "profile-name", "company", "job-title", "email", "action", "action-icon", "misc-meta", "misc-meta-icon"], Me = {
|
|
631
664
|
__name: "BsProfile",
|
|
632
665
|
props: {
|
|
633
666
|
layout: {},
|
|
@@ -639,12 +672,16 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
639
672
|
company: {},
|
|
640
673
|
jobTitle: {},
|
|
641
674
|
email: {},
|
|
675
|
+
action: {},
|
|
676
|
+
actionIcon: {},
|
|
677
|
+
miscMeta: {},
|
|
678
|
+
miscMetaIcon: {},
|
|
642
679
|
router: {}
|
|
643
680
|
},
|
|
644
|
-
emits: [],
|
|
645
|
-
setup(e, { emit:
|
|
681
|
+
emits: ["action-toggled"],
|
|
682
|
+
setup(e, { emit: n }) {
|
|
646
683
|
const a = e, { onLinkClick: t } = f(a);
|
|
647
|
-
return (l, d) => (
|
|
684
|
+
return (l, d) => (s(), i("bs-profile", r(l.$attrs, {
|
|
648
685
|
layout: e.layout,
|
|
649
686
|
href: e.href,
|
|
650
687
|
"image-src": e.imageSrc,
|
|
@@ -654,27 +691,41 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
654
691
|
company: e.company,
|
|
655
692
|
"job-title": e.jobTitle,
|
|
656
693
|
email: e.email,
|
|
657
|
-
|
|
658
|
-
|
|
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))
|
|
700
|
+
}), null, 16, W));
|
|
659
701
|
}
|
|
660
|
-
},
|
|
702
|
+
}, X = ["profile-name", "company", "job-title", "email", "action", "action-icon", "misc-meta", "misc-meta-icon"], Fe = {
|
|
661
703
|
__name: "BsProfileDetails",
|
|
662
704
|
props: {
|
|
663
705
|
profileName: {},
|
|
664
706
|
company: {},
|
|
665
707
|
jobTitle: {},
|
|
666
|
-
email: {}
|
|
708
|
+
email: {},
|
|
709
|
+
action: {},
|
|
710
|
+
actionIcon: {},
|
|
711
|
+
miscMeta: {},
|
|
712
|
+
miscMetaIcon: {}
|
|
667
713
|
},
|
|
668
|
-
emits: [],
|
|
669
|
-
setup(e, { emit:
|
|
670
|
-
return (a, t) => (
|
|
714
|
+
emits: ["action-toggled"],
|
|
715
|
+
setup(e, { emit: n }) {
|
|
716
|
+
return (a, t) => (s(), i("bs-profile-details", r(a.$attrs, {
|
|
671
717
|
"profile-name": e.profileName,
|
|
672
718
|
company: e.company,
|
|
673
719
|
"job-title": e.jobTitle,
|
|
674
|
-
email: e.email
|
|
675
|
-
|
|
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))
|
|
726
|
+
}), null, 16, X));
|
|
676
727
|
}
|
|
677
|
-
},
|
|
728
|
+
}, Y = ["src", "size", "initials", "profile-name"], Oe = {
|
|
678
729
|
__name: "BsProfileImg",
|
|
679
730
|
props: {
|
|
680
731
|
src: {},
|
|
@@ -683,15 +734,15 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
683
734
|
profileName: {}
|
|
684
735
|
},
|
|
685
736
|
emits: [],
|
|
686
|
-
setup(e, { emit:
|
|
687
|
-
return (a, t) => (
|
|
737
|
+
setup(e, { emit: n }) {
|
|
738
|
+
return (a, t) => (s(), i("bs-profile-img", r(a.$attrs, {
|
|
688
739
|
src: e.src,
|
|
689
740
|
size: e.size,
|
|
690
741
|
initials: e.initials,
|
|
691
742
|
"profile-name": e.profileName
|
|
692
|
-
}), null, 16,
|
|
743
|
+
}), null, 16, Y));
|
|
693
744
|
}
|
|
694
|
-
},
|
|
745
|
+
}, Z = ["layout", "href", "pass-attrs"], Se = {
|
|
695
746
|
__name: "BsProfileLayout",
|
|
696
747
|
props: {
|
|
697
748
|
layout: { default: "vertical" },
|
|
@@ -700,24 +751,25 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
700
751
|
router: {}
|
|
701
752
|
},
|
|
702
753
|
emits: [],
|
|
703
|
-
setup(e, { emit:
|
|
754
|
+
setup(e, { emit: n }) {
|
|
704
755
|
const a = e, { onLinkClick: t } = f(a);
|
|
705
|
-
return (l, d) => (
|
|
756
|
+
return (l, d) => (s(), i("bs-profile-layout", r(l.$attrs, {
|
|
706
757
|
layout: e.layout,
|
|
707
758
|
href: e.href,
|
|
708
759
|
"pass-attrs": e.passAttrs,
|
|
709
760
|
onClick: d[0] || (d[0] = (...u) => c(t) && c(t)(...u))
|
|
710
761
|
}), [
|
|
711
762
|
o(l.$slots, "default")
|
|
712
|
-
], 16,
|
|
763
|
+
], 16, Z));
|
|
713
764
|
}
|
|
714
|
-
},
|
|
765
|
+
}, J = ["label", "checked", "disabled", "error", "input-id", "pass-attrs", "required", "size", "value"], Ee = {
|
|
715
766
|
__name: "BsRadio",
|
|
716
767
|
props: {
|
|
717
768
|
label: {},
|
|
718
769
|
checked: { default: !1 },
|
|
719
770
|
disabled: { default: !1 },
|
|
720
771
|
error: {},
|
|
772
|
+
inputId: {},
|
|
721
773
|
passAttrs: { default: "" },
|
|
722
774
|
required: {},
|
|
723
775
|
size: {},
|
|
@@ -725,23 +777,25 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
725
777
|
modelValue: {}
|
|
726
778
|
},
|
|
727
779
|
emits: ["update:modelValue"],
|
|
728
|
-
setup(e, { emit:
|
|
729
|
-
return (a, t) => (
|
|
780
|
+
setup(e, { emit: n }) {
|
|
781
|
+
return (a, t) => (s(), i("bs-radio", r(a.$attrs, {
|
|
730
782
|
label: e.label,
|
|
731
783
|
checked: e.checked || e.modelValue === e.value,
|
|
732
784
|
disabled: e.disabled,
|
|
733
785
|
error: e.error,
|
|
786
|
+
"input-id": e.inputId,
|
|
734
787
|
"pass-attrs": e.passAttrs,
|
|
735
788
|
required: e.required,
|
|
736
789
|
size: e.size,
|
|
737
790
|
value: e.value,
|
|
738
|
-
onChange: t[0] || (t[0] = (l) =>
|
|
739
|
-
}), null, 16,
|
|
791
|
+
onChange: t[0] || (t[0] = (l) => n("update:modelValue", l.target.value))
|
|
792
|
+
}), null, 16, J));
|
|
740
793
|
}
|
|
741
|
-
},
|
|
794
|
+
}, K = ["disabled", "input-id", "required", "error", "hint-id", "value", "pass-attrs"], je = {
|
|
742
795
|
__name: "BsSelect",
|
|
743
796
|
props: {
|
|
744
797
|
disabled: { default: !1 },
|
|
798
|
+
inputId: {},
|
|
745
799
|
required: {},
|
|
746
800
|
error: {},
|
|
747
801
|
hintId: {},
|
|
@@ -750,54 +804,62 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
750
804
|
modelValue: {}
|
|
751
805
|
},
|
|
752
806
|
emits: ["update:modelValue"],
|
|
753
|
-
setup(e, { emit:
|
|
754
|
-
return (a, t) => (
|
|
807
|
+
setup(e, { emit: n }) {
|
|
808
|
+
return (a, t) => (s(), i("bs-select", r(a.$attrs, {
|
|
755
809
|
disabled: e.disabled,
|
|
810
|
+
"input-id": e.inputId,
|
|
756
811
|
required: e.required,
|
|
757
812
|
error: e.error,
|
|
758
813
|
"hint-id": e.hintId,
|
|
759
814
|
value: e.value || e.modelValue,
|
|
760
815
|
"pass-attrs": e.passAttrs,
|
|
761
|
-
onChange: t[0] || (t[0] = (l) =>
|
|
816
|
+
onChange: t[0] || (t[0] = (l) => n("update:modelValue", l.target.value))
|
|
762
817
|
}), [
|
|
763
818
|
o(a.$slots, "default")
|
|
764
|
-
], 16,
|
|
819
|
+
], 16, K));
|
|
765
820
|
}
|
|
766
|
-
},
|
|
821
|
+
}, Q = ["disabled", "error", "error-msg", "input-id", "label", "hint", "hints", "placeholder", "required", "value", "pass-attrs", "data"], Ge = {
|
|
767
822
|
__name: "BsSelectField",
|
|
768
823
|
props: {
|
|
769
824
|
disabled: { default: !1 },
|
|
770
825
|
error: {},
|
|
771
|
-
|
|
826
|
+
errorMsg: {},
|
|
827
|
+
inputId: {},
|
|
772
828
|
label: {},
|
|
829
|
+
hint: {},
|
|
773
830
|
hints: {},
|
|
774
831
|
placeholder: { default: "" },
|
|
832
|
+
required: {},
|
|
775
833
|
value: {},
|
|
776
834
|
passAttrs: { default: "" },
|
|
777
835
|
data: { default: [] },
|
|
778
836
|
modelValue: {}
|
|
779
837
|
},
|
|
780
838
|
emits: ["update:modelValue"],
|
|
781
|
-
setup(e, { emit:
|
|
782
|
-
return (a, t) => (
|
|
839
|
+
setup(e, { emit: n }) {
|
|
840
|
+
return (a, t) => (s(), i("bs-select-field", r(a.$attrs, {
|
|
783
841
|
disabled: e.disabled,
|
|
784
842
|
error: e.error,
|
|
785
|
-
|
|
843
|
+
"error-msg": e.errorMsg,
|
|
844
|
+
"input-id": e.inputId,
|
|
786
845
|
label: e.label,
|
|
846
|
+
hint: e.hint,
|
|
787
847
|
hints: e.hints,
|
|
788
848
|
placeholder: e.placeholder,
|
|
849
|
+
required: e.required,
|
|
789
850
|
value: e.value || e.modelValue,
|
|
790
851
|
"pass-attrs": e.passAttrs,
|
|
791
852
|
data: e.data,
|
|
792
|
-
onChange: t[0] || (t[0] = (l) =>
|
|
793
|
-
}), null, 16,
|
|
853
|
+
onChange: t[0] || (t[0] = (l) => n("update:modelValue", l.target.value))
|
|
854
|
+
}), null, 16, Q));
|
|
794
855
|
}
|
|
795
|
-
},
|
|
856
|
+
}, U = ["checked", "disabled", "hide-label", "input-id", "inner-on-label", "inner-off-label", "label", "pass-attrs", "size"], Re = {
|
|
796
857
|
__name: "BsSwitch",
|
|
797
858
|
props: {
|
|
798
859
|
checked: { default: !1 },
|
|
799
860
|
disabled: { default: !1 },
|
|
800
861
|
hideLabel: { default: !1 },
|
|
862
|
+
inputId: {},
|
|
801
863
|
innerOnLabel: {},
|
|
802
864
|
innerOffLabel: {},
|
|
803
865
|
label: {},
|
|
@@ -806,20 +868,21 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
806
868
|
modelValue: {}
|
|
807
869
|
},
|
|
808
870
|
emits: ["update:modelValue"],
|
|
809
|
-
setup(e, { emit:
|
|
810
|
-
return (a, t) => (
|
|
871
|
+
setup(e, { emit: n }) {
|
|
872
|
+
return (a, t) => (s(), i("bs-switch", r(a.$attrs, {
|
|
811
873
|
checked: e.checked || e.modelValue,
|
|
812
874
|
disabled: e.disabled,
|
|
813
875
|
"hide-label": e.hideLabel,
|
|
876
|
+
"input-id": e.inputId,
|
|
814
877
|
"inner-on-label": e.innerOnLabel,
|
|
815
878
|
"inner-off-label": e.innerOffLabel,
|
|
816
879
|
label: e.label,
|
|
817
880
|
"pass-attrs": e.passAttrs,
|
|
818
881
|
size: e.size,
|
|
819
|
-
onChange: t[0] || (t[0] = (l) =>
|
|
820
|
-
}), null, 16,
|
|
882
|
+
onChange: t[0] || (t[0] = (l) => n("update:modelValue", l.target.checked))
|
|
883
|
+
}), null, 16, U));
|
|
821
884
|
}
|
|
822
|
-
},
|
|
885
|
+
}, p = ["active-tab-id", "hidden", "panel-id"], He = {
|
|
823
886
|
__name: "BsTab",
|
|
824
887
|
props: {
|
|
825
888
|
activeTabId: {},
|
|
@@ -827,16 +890,16 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
827
890
|
panelId: {}
|
|
828
891
|
},
|
|
829
892
|
emits: [],
|
|
830
|
-
setup(e, { emit:
|
|
831
|
-
return (a, t) => (
|
|
893
|
+
setup(e, { emit: n }) {
|
|
894
|
+
return (a, t) => (s(), i("bs-tab", r(a.$attrs, {
|
|
832
895
|
"active-tab-id": e.activeTabId,
|
|
833
896
|
hidden: e.hidden,
|
|
834
897
|
"panel-id": e.panelId
|
|
835
898
|
}), [
|
|
836
899
|
o(a.$slots, "default")
|
|
837
|
-
], 16,
|
|
900
|
+
], 16, p));
|
|
838
901
|
}
|
|
839
|
-
},
|
|
902
|
+
}, _ = ["active-tab-id", "helper-text", "helper-description"], Ne = {
|
|
840
903
|
__name: "BsTabList",
|
|
841
904
|
props: {
|
|
842
905
|
activeTabId: {},
|
|
@@ -845,39 +908,40 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
845
908
|
modelValue: {}
|
|
846
909
|
},
|
|
847
910
|
emits: ["tabChange", "update:modelValue"],
|
|
848
|
-
setup(e, { emit:
|
|
911
|
+
setup(e, { emit: n }) {
|
|
849
912
|
const a = (t) => {
|
|
850
|
-
|
|
913
|
+
n("tabChange", t.detail), n("update:modelValue", t.detail);
|
|
851
914
|
};
|
|
852
|
-
return (t, l) => (
|
|
915
|
+
return (t, l) => (s(), i("bs-tab-list", r(t.$attrs, {
|
|
853
916
|
"active-tab-id": e.activeTabId || e.modelValue,
|
|
854
917
|
"helper-text": e.helperText,
|
|
855
918
|
"helper-description": e.helperDescription,
|
|
856
919
|
"on:tabChange": a
|
|
857
920
|
}), [
|
|
858
921
|
o(t.$slots, "default")
|
|
859
|
-
], 16,
|
|
922
|
+
], 16, _));
|
|
860
923
|
}
|
|
861
|
-
},
|
|
924
|
+
}, ee = ["active-tab-id", "tab-id"], We = {
|
|
862
925
|
__name: "BsTabPanel",
|
|
863
926
|
props: {
|
|
864
927
|
activeTabId: {},
|
|
865
928
|
tabId: {}
|
|
866
929
|
},
|
|
867
930
|
emits: [],
|
|
868
|
-
setup(e, { emit:
|
|
869
|
-
return (a, t) => (
|
|
931
|
+
setup(e, { emit: n }) {
|
|
932
|
+
return (a, t) => (s(), i("bs-tab-panel", r(a.$attrs, {
|
|
870
933
|
"active-tab-id": e.activeTabId,
|
|
871
934
|
"tab-id": e.tabId
|
|
872
935
|
}), [
|
|
873
936
|
o(a.$slots, "default")
|
|
874
|
-
], 16,
|
|
937
|
+
], 16, ee));
|
|
875
938
|
}
|
|
876
|
-
},
|
|
939
|
+
}, te = ["disabled", "error", "input-id", "pass-attrs", "placeholder", "required", "value", "hint-id"], Xe = {
|
|
877
940
|
__name: "BsTextarea",
|
|
878
941
|
props: {
|
|
879
942
|
disabled: { default: !1 },
|
|
880
943
|
error: {},
|
|
944
|
+
inputId: {},
|
|
881
945
|
passAttrs: { default: "" },
|
|
882
946
|
placeholder: {},
|
|
883
947
|
required: {},
|
|
@@ -886,25 +950,29 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
886
950
|
modelValue: {}
|
|
887
951
|
},
|
|
888
952
|
emits: ["update:modelValue"],
|
|
889
|
-
setup(e, { emit:
|
|
890
|
-
return (a, t) => (
|
|
953
|
+
setup(e, { emit: n }) {
|
|
954
|
+
return (a, t) => (s(), i("bs-textarea", r(a.$attrs, {
|
|
891
955
|
disabled: e.disabled,
|
|
892
956
|
error: e.error,
|
|
957
|
+
"input-id": e.inputId,
|
|
893
958
|
"pass-attrs": e.passAttrs,
|
|
894
959
|
placeholder: e.placeholder,
|
|
895
960
|
required: e.required,
|
|
896
961
|
value: e.value || e.modelValue,
|
|
897
962
|
"hint-id": e.hintId,
|
|
898
|
-
onInput: t[0] || (t[0] = (l) =>
|
|
899
|
-
}), null, 16,
|
|
963
|
+
onInput: t[0] || (t[0] = (l) => n("update:modelValue", l.target.value))
|
|
964
|
+
}), null, 16, te));
|
|
900
965
|
}
|
|
901
|
-
},
|
|
966
|
+
}, ae = ["char-max", "disabled", "error", "error-msg", "hint", "hints", "input-id", "label", "placeholder", "required", "value", "pass-attrs"], Ye = {
|
|
902
967
|
__name: "BsTextareaField",
|
|
903
968
|
props: {
|
|
904
969
|
charMax: {},
|
|
905
970
|
disabled: { default: !1 },
|
|
906
971
|
error: {},
|
|
972
|
+
errorMsg: {},
|
|
973
|
+
hint: {},
|
|
907
974
|
hints: {},
|
|
975
|
+
inputId: {},
|
|
908
976
|
label: {},
|
|
909
977
|
placeholder: {},
|
|
910
978
|
required: {},
|
|
@@ -913,21 +981,24 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
913
981
|
modelValue: {}
|
|
914
982
|
},
|
|
915
983
|
emits: ["update:modelValue"],
|
|
916
|
-
setup(e, { emit:
|
|
917
|
-
return (a, t) => (
|
|
984
|
+
setup(e, { emit: n }) {
|
|
985
|
+
return (a, t) => (s(), i("bs-textarea-field", r(a.$attrs, {
|
|
918
986
|
"char-max": e.charMax,
|
|
919
987
|
disabled: e.disabled,
|
|
920
988
|
error: e.error,
|
|
989
|
+
"error-msg": e.errorMsg,
|
|
990
|
+
hint: e.hint,
|
|
921
991
|
hints: e.hints,
|
|
992
|
+
"input-id": e.inputId,
|
|
922
993
|
label: e.label,
|
|
923
994
|
placeholder: e.placeholder,
|
|
924
995
|
required: e.required,
|
|
925
996
|
value: e.value || e.modelValue,
|
|
926
997
|
"pass-attrs": e.passAttrs,
|
|
927
|
-
onInput: t[0] || (t[0] = (l) =>
|
|
928
|
-
}), null, 16,
|
|
998
|
+
onInput: t[0] || (t[0] = (l) => n("update:modelValue", l.target.value))
|
|
999
|
+
}), null, 16, ae));
|
|
929
1000
|
}
|
|
930
|
-
},
|
|
1001
|
+
}, le = ["toast-id", "variant", "stacked", "duration", "enter-controlled", "enter-trigger", "leave-trigger"], Ze = {
|
|
931
1002
|
__name: "BsToast",
|
|
932
1003
|
props: {
|
|
933
1004
|
toastId: {},
|
|
@@ -939,8 +1010,8 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
939
1010
|
leaveTrigger: { default: !1 }
|
|
940
1011
|
},
|
|
941
1012
|
emits: ["dismiss", "enterend", "leaveend"],
|
|
942
|
-
setup(e, { emit:
|
|
943
|
-
return (a, t) => (
|
|
1013
|
+
setup(e, { emit: n }) {
|
|
1014
|
+
return (a, t) => (s(), i("bs-toast", r(a.$attrs, {
|
|
944
1015
|
"toast-id": e.toastId,
|
|
945
1016
|
variant: e.variant,
|
|
946
1017
|
stacked: e.stacked,
|
|
@@ -948,54 +1019,54 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
948
1019
|
"enter-controlled": e.enterControlled,
|
|
949
1020
|
"enter-trigger": e.enterTrigger,
|
|
950
1021
|
"leave-trigger": e.leaveTrigger,
|
|
951
|
-
onDismiss: t[0] || (t[0] = (l) =>
|
|
952
|
-
onEnterend: t[1] || (t[1] = (l) =>
|
|
953
|
-
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))
|
|
954
1025
|
}), [
|
|
955
1026
|
o(a.$slots, "default")
|
|
956
|
-
], 16,
|
|
1027
|
+
], 16, le));
|
|
957
1028
|
}
|
|
958
|
-
},
|
|
1029
|
+
}, Je = {
|
|
959
1030
|
__name: "BsToastActions",
|
|
960
1031
|
props: {},
|
|
961
1032
|
emits: ["defaultDismiss"],
|
|
962
|
-
setup(e, { emit:
|
|
963
|
-
return (a, t) => (
|
|
964
|
-
"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))
|
|
965
1036
|
}), [
|
|
966
1037
|
o(a.$slots, "default")
|
|
967
1038
|
], 16));
|
|
968
1039
|
}
|
|
969
|
-
},
|
|
1040
|
+
}, Ke = {
|
|
970
1041
|
__name: "BsToastBody",
|
|
971
1042
|
props: {},
|
|
972
1043
|
emits: [],
|
|
973
|
-
setup(e, { emit:
|
|
974
|
-
return (a, t) => (
|
|
1044
|
+
setup(e, { emit: n }) {
|
|
1045
|
+
return (a, t) => (s(), i("bs-toast-body", v($(a.$attrs)), [
|
|
975
1046
|
o(a.$slots, "default")
|
|
976
1047
|
], 16));
|
|
977
1048
|
}
|
|
978
|
-
},
|
|
1049
|
+
}, ne = ["variant"], Qe = {
|
|
979
1050
|
__name: "BsToastHeader",
|
|
980
1051
|
props: {
|
|
981
1052
|
variant: {}
|
|
982
1053
|
},
|
|
983
1054
|
emits: [],
|
|
984
|
-
setup(e, { emit:
|
|
985
|
-
return (a, t) => (
|
|
1055
|
+
setup(e, { emit: n }) {
|
|
1056
|
+
return (a, t) => (s(), i("bs-toast-header", r(a.$attrs, { variant: e.variant }), [
|
|
986
1057
|
o(a.$slots, "default")
|
|
987
|
-
], 16,
|
|
1058
|
+
], 16, ne));
|
|
988
1059
|
}
|
|
989
|
-
},
|
|
1060
|
+
}, Ue = {
|
|
990
1061
|
__name: "BsToaster",
|
|
991
1062
|
props: {},
|
|
992
1063
|
emits: [],
|
|
993
|
-
setup(e, { emit:
|
|
994
|
-
return (a, t) => (
|
|
1064
|
+
setup(e, { emit: n }) {
|
|
1065
|
+
return (a, t) => (s(), i("bs-toaster", v($(a.$attrs)), [
|
|
995
1066
|
o(a.$slots, "default")
|
|
996
1067
|
], 16));
|
|
997
1068
|
}
|
|
998
|
-
}, se = ["tooltip-id", "content", "position"],
|
|
1069
|
+
}, se = ["tooltip-id", "content", "position"], pe = {
|
|
999
1070
|
__name: "BsTooltip",
|
|
1000
1071
|
props: {
|
|
1001
1072
|
tooltipId: {},
|
|
@@ -1003,8 +1074,8 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
1003
1074
|
position: {}
|
|
1004
1075
|
},
|
|
1005
1076
|
emits: [],
|
|
1006
|
-
setup(e, { emit:
|
|
1007
|
-
return (a, t) => (
|
|
1077
|
+
setup(e, { emit: n }) {
|
|
1078
|
+
return (a, t) => (s(), i("bs-tooltip", r(a.$attrs, {
|
|
1008
1079
|
"tooltip-id": e.tooltipId,
|
|
1009
1080
|
content: e.content,
|
|
1010
1081
|
position: e.position
|
|
@@ -1012,7 +1083,7 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
1012
1083
|
o(a.$slots, "default")
|
|
1013
1084
|
], 16, se));
|
|
1014
1085
|
}
|
|
1015
|
-
},
|
|
1086
|
+
}, ie = ["enter-class", "enter-attribute", "enter-duration", "leave-class", "leave-attribute", "leave-duration", "enter-controlled", "enter-trigger", "leave-trigger"], _e = {
|
|
1016
1087
|
__name: "BsTransition",
|
|
1017
1088
|
props: {
|
|
1018
1089
|
enterClass: { default: void 0 },
|
|
@@ -1026,8 +1097,8 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
1026
1097
|
leaveTrigger: { default: !1 }
|
|
1027
1098
|
},
|
|
1028
1099
|
emits: ["enterend", "leaveend"],
|
|
1029
|
-
setup(e, { emit:
|
|
1030
|
-
return (a, t) => (
|
|
1100
|
+
setup(e, { emit: n }) {
|
|
1101
|
+
return (a, t) => (s(), i("bs-transition", r(a.$attrs, {
|
|
1031
1102
|
"enter-class": e.enterClass,
|
|
1032
1103
|
"enter-attribute": e.enterAttribute,
|
|
1033
1104
|
"enter-duration": e.enterDuration,
|
|
@@ -1037,57 +1108,58 @@ const x = ["variant", "disabled", "ghost-btn", "href", "pass-attrs", "text-btn",
|
|
|
1037
1108
|
"enter-controlled": e.enterControlled,
|
|
1038
1109
|
"enter-trigger": e.enterTrigger,
|
|
1039
1110
|
"leave-trigger": e.leaveTrigger,
|
|
1040
|
-
onEnterend: t[0] || (t[0] = (l) =>
|
|
1041
|
-
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))
|
|
1042
1113
|
}), [
|
|
1043
1114
|
o(a.$slots, "default")
|
|
1044
|
-
], 16,
|
|
1115
|
+
], 16, ie));
|
|
1045
1116
|
}
|
|
1046
1117
|
};
|
|
1047
1118
|
export {
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1119
|
+
de as BsAccordion,
|
|
1120
|
+
oe as BsBadge,
|
|
1121
|
+
ue as BsBanner,
|
|
1122
|
+
ce as BsButton,
|
|
1123
|
+
fe as BsCharacterCount,
|
|
1124
|
+
me as BsChartBar,
|
|
1125
|
+
he as BsChartTable,
|
|
1055
1126
|
be as BsCheckbox,
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
Te as
|
|
1062
|
-
xe as
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
qe as
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1127
|
+
ge as BsCircleButton,
|
|
1128
|
+
ve as BsDropdown,
|
|
1129
|
+
$e as BsDropdownOption,
|
|
1130
|
+
Be as BsDropdownOptionList,
|
|
1131
|
+
Ie as BsDropdownWithOptions,
|
|
1132
|
+
Te as BsFieldDetails,
|
|
1133
|
+
xe as BsFieldLayout,
|
|
1134
|
+
Ce as BsHint,
|
|
1135
|
+
ke as BsInput,
|
|
1136
|
+
ye as BsInputAddon,
|
|
1137
|
+
we as BsInputField,
|
|
1138
|
+
Le as BsInputSearch,
|
|
1139
|
+
Ve as BsLabel,
|
|
1140
|
+
Ae as BsLoader,
|
|
1141
|
+
qe as BsModal,
|
|
1142
|
+
ze as BsOverlay,
|
|
1143
|
+
De as BsPagination,
|
|
1144
|
+
Pe as BsPill,
|
|
1145
|
+
Me as BsProfile,
|
|
1146
|
+
Fe as BsProfileDetails,
|
|
1075
1147
|
Oe as BsProfileImg,
|
|
1076
1148
|
Se as BsProfileLayout,
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1149
|
+
Ee as BsRadio,
|
|
1150
|
+
je as BsSelect,
|
|
1151
|
+
Ge as BsSelectField,
|
|
1152
|
+
Re as BsSwitch,
|
|
1153
|
+
He as BsTab,
|
|
1154
|
+
Ne as BsTabList,
|
|
1155
|
+
We as BsTabPanel,
|
|
1156
|
+
Xe as BsTextarea,
|
|
1157
|
+
Ye as BsTextareaField,
|
|
1158
|
+
Ze as BsToast,
|
|
1159
|
+
Je as BsToastActions,
|
|
1160
|
+
Ke as BsToastBody,
|
|
1161
|
+
Qe as BsToastHeader,
|
|
1162
|
+
Ue as BsToaster,
|
|
1163
|
+
pe as BsTooltip,
|
|
1164
|
+
_e as BsTransition
|
|
1093
1165
|
};
|