readytech-ui-library-v2 0.0.13 → 0.0.14
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.
@@ -1 +1 @@
|
|
1
|
-
.lv-button[data-v-ac3af47a]{border:one;background:red;padding:1rem}.class-input[data-v-f440ad26]{border:none;background:green;padding:1rem}.btn-primary[data-v-ce0d0f31]{background-color:#1976d2;color:#fff}.btn-primary[data-v-ce0d0f31]:hover{background-color:#1565c0}.btn-icon[data-v-ce0d0f31]{padding:0;width:48px;height:48px}.btn-disabled[data-v-ce0d0f31]{opacity:.6;pointer-events:none}
|
1
|
+
.lv-button[data-v-ac3af47a]{border:one;background:red;padding:1rem}.class-input[data-v-f440ad26]{border:none;background:green;padding:1rem}.btn-primary[data-v-ce0d0f31]{background-color:#1976d2;color:#fff}.btn-primary[data-v-ce0d0f31]:hover{background-color:#1565c0}.btn-icon[data-v-ce0d0f31]{padding:0;width:48px;height:48px}.btn-disabled[data-v-ce0d0f31]{opacity:.6;pointer-events:none}
|
@@ -1,27 +1,27 @@
|
|
1
|
-
import { createElementBlock as
|
2
|
-
const
|
1
|
+
import { createElementBlock as u, openBlock as r, renderSlot as s, toDisplayString as f, resolveComponent as p, createBlock as m, mergeProps as _, normalizeClass as y, withCtx as g, createTextVNode as h, computed as i } from "vue";
|
2
|
+
const d = (t, a) => {
|
3
3
|
const e = t.__vccOpts || t;
|
4
|
-
for (const [
|
5
|
-
e[
|
4
|
+
for (const [l, o] of a)
|
5
|
+
e[l] = o;
|
6
6
|
return e;
|
7
|
-
},
|
8
|
-
function
|
9
|
-
return
|
10
|
-
|
7
|
+
}, B = {}, x = { class: "lv-button" };
|
8
|
+
function k(t, a) {
|
9
|
+
return r(), u("button", x, [
|
10
|
+
s(t.$slots, "default", {}, void 0, !0)
|
11
11
|
]);
|
12
12
|
}
|
13
|
-
const
|
13
|
+
const v = /* @__PURE__ */ d(B, [["render", k], ["__scopeId", "data-v-ac3af47a"]]), S = {
|
14
14
|
name: "InputTaras",
|
15
15
|
props: {
|
16
16
|
prop: {
|
17
17
|
required: !0
|
18
18
|
}
|
19
19
|
}
|
20
|
-
},
|
21
|
-
function V(t, a, e,
|
22
|
-
return
|
20
|
+
}, C = { class: "class-input" };
|
21
|
+
function V(t, a, e, l, o, n) {
|
22
|
+
return r(), u("h1", C, f(e.prop) + " taras", 1);
|
23
23
|
}
|
24
|
-
const
|
24
|
+
const I = /* @__PURE__ */ d(S, [["render", V], ["__scopeId", "data-v-f440ad26"]]), T = {
|
25
25
|
name: "RtText",
|
26
26
|
props: {
|
27
27
|
label: {
|
@@ -87,11 +87,11 @@ const N = /* @__PURE__ */ s(I, [["render", V], ["__scopeId", "data-v-f440ad26"]]
|
|
87
87
|
}
|
88
88
|
}
|
89
89
|
};
|
90
|
-
function
|
91
|
-
const
|
92
|
-
return
|
93
|
-
modelValue:
|
94
|
-
"onUpdate:modelValue": a[0] || (a[0] = (
|
90
|
+
function R(t, a, e, l, o, n) {
|
91
|
+
const c = p("v-text-field");
|
92
|
+
return r(), m(c, _(n.inputProps, {
|
93
|
+
modelValue: n.inputValue,
|
94
|
+
"onUpdate:modelValue": a[0] || (a[0] = (b) => n.inputValue = b),
|
95
95
|
label: e.label,
|
96
96
|
placeholder: e.placeholder,
|
97
97
|
disabled: e.disabled,
|
@@ -101,10 +101,10 @@ function A(t, a, e, n, l, o) {
|
|
101
101
|
clearable: "",
|
102
102
|
hint: e.hint,
|
103
103
|
autocomplete: e.autocomplete,
|
104
|
-
"onClick:clear":
|
104
|
+
"onClick:clear": n.handleClear
|
105
105
|
}), null, 16, ["modelValue", "label", "placeholder", "disabled", "error", "error-messages", "prepend-icon", "hint", "autocomplete", "onClick:clear"]);
|
106
106
|
}
|
107
|
-
const
|
107
|
+
const z = /* @__PURE__ */ d(T, [["render", R], ["__scopeId", "data-v-33b97f38"]]), L = {
|
108
108
|
name: "RtButton",
|
109
109
|
props: {
|
110
110
|
// Button text label
|
@@ -212,24 +212,24 @@ const L = /* @__PURE__ */ s(T, [["render", A], ["__scopeId", "data-v-33b97f38"]]
|
|
212
212
|
setup(t, { emit: a }) {
|
213
213
|
const e = () => {
|
214
214
|
a("click");
|
215
|
-
},
|
215
|
+
}, l = i(() => t.primary ? "flat" : "outlined"), o = i(() => t.label || "Button"), n = i(() => ({
|
216
216
|
"btn-primary": t.primary,
|
217
217
|
"btn-icon": t.icon,
|
218
218
|
"btn-disabled": t.disabled
|
219
219
|
}));
|
220
220
|
return {
|
221
221
|
onClick: e,
|
222
|
-
variant:
|
223
|
-
ariaLabel:
|
224
|
-
buttonClasses:
|
222
|
+
variant: l,
|
223
|
+
ariaLabel: o,
|
224
|
+
buttonClasses: n
|
225
225
|
};
|
226
226
|
}
|
227
227
|
};
|
228
|
-
function
|
229
|
-
const
|
230
|
-
return
|
228
|
+
function M(t, a, e, l, o, n) {
|
229
|
+
const c = p("v-btn");
|
230
|
+
return r(), m(c, {
|
231
231
|
type: "button",
|
232
|
-
variant:
|
232
|
+
variant: l.variant,
|
233
233
|
size: e.size,
|
234
234
|
color: e.color,
|
235
235
|
icon: e.icon,
|
@@ -249,328 +249,23 @@ function O(t, a, e, n, l, o) {
|
|
249
249
|
exact: e.exact,
|
250
250
|
append: e.append,
|
251
251
|
"background-color": e.backgroundColor,
|
252
|
-
class:
|
253
|
-
onClick:
|
254
|
-
"aria-label":
|
252
|
+
class: y(l.buttonClasses),
|
253
|
+
onClick: l.onClick,
|
254
|
+
"aria-label": l.ariaLabel
|
255
255
|
}, {
|
256
|
-
default:
|
257
|
-
|
258
|
-
|
256
|
+
default: g(() => [
|
257
|
+
s(t.$slots, "default", {}, () => [
|
258
|
+
h(f(e.label), 1)
|
259
259
|
], !0)
|
260
260
|
]),
|
261
261
|
_: 3
|
262
262
|
}, 8, ["variant", "size", "color", "icon", "disabled", "loading", "outlined", "text", "tile", "depressed", "rounded", "block", "href", "target", "elevation", "to", "replace", "exact", "append", "background-color", "class", "onClick", "aria-label"]);
|
263
263
|
}
|
264
|
-
const
|
265
|
-
name: "RtBadge",
|
266
|
-
props: {
|
267
|
-
value: {
|
268
|
-
type: [String, Number],
|
269
|
-
default: 0
|
270
|
-
},
|
271
|
-
color: {
|
272
|
-
type: String,
|
273
|
-
default: "red"
|
274
|
-
},
|
275
|
-
dot: {
|
276
|
-
type: Boolean,
|
277
|
-
default: !1
|
278
|
-
},
|
279
|
-
overlap: {
|
280
|
-
type: Boolean,
|
281
|
-
default: !1
|
282
|
-
},
|
283
|
-
content: {
|
284
|
-
type: String,
|
285
|
-
default: ""
|
286
|
-
},
|
287
|
-
size: {
|
288
|
-
type: [String, Number],
|
289
|
-
default: "20"
|
290
|
-
},
|
291
|
-
bottom: {
|
292
|
-
type: Boolean,
|
293
|
-
default: !1
|
294
|
-
},
|
295
|
-
top: {
|
296
|
-
type: Boolean,
|
297
|
-
default: !1
|
298
|
-
}
|
299
|
-
},
|
300
|
-
computed: {
|
301
|
-
getAriaLabel() {
|
302
|
-
return this.dot ? "Notification dot" : this.content ? `Badge content: ${this.content}` : this.value ? `Badge value: ${this.value}` : "Badge";
|
303
|
-
}
|
304
|
-
}
|
305
|
-
};
|
306
|
-
function q(t, a, e, n, l, o) {
|
307
|
-
const r = c("v-badge");
|
308
|
-
return d(), _(r, {
|
309
|
-
value: e.value,
|
310
|
-
color: e.color,
|
311
|
-
dot: e.dot,
|
312
|
-
overlap: e.overlap,
|
313
|
-
content: e.content,
|
314
|
-
size: e.size,
|
315
|
-
bottom: e.bottom,
|
316
|
-
top: e.top,
|
317
|
-
role: "status",
|
318
|
-
"aria-label": o.getAriaLabel,
|
319
|
-
"aria-live": e.dot ? "polite" : "off",
|
320
|
-
tabindex: "0"
|
321
|
-
}, {
|
322
|
-
default: i(() => [
|
323
|
-
p(t.$slots, "default", {}, void 0, !0)
|
324
|
-
]),
|
325
|
-
_: 3
|
326
|
-
}, 8, ["value", "color", "dot", "overlap", "content", "size", "bottom", "top", "aria-label", "aria-live"]);
|
327
|
-
}
|
328
|
-
const w = /* @__PURE__ */ s(P, [["render", q], ["__scopeId", "data-v-02392152"]]), M = {
|
329
|
-
name: "RtSnackbar",
|
330
|
-
props: {
|
331
|
-
message: {
|
332
|
-
type: String,
|
333
|
-
default: "Hello, I'm a snackbar!"
|
334
|
-
},
|
335
|
-
timeout: {
|
336
|
-
type: Number,
|
337
|
-
default: 6e3
|
338
|
-
},
|
339
|
-
buttonText: {
|
340
|
-
type: String,
|
341
|
-
default: "Open Snackbar"
|
342
|
-
},
|
343
|
-
buttonColor: {
|
344
|
-
type: String,
|
345
|
-
default: "primary"
|
346
|
-
},
|
347
|
-
snackbarColor: {
|
348
|
-
type: String,
|
349
|
-
default: ""
|
350
|
-
},
|
351
|
-
actionButtonText: {
|
352
|
-
type: String,
|
353
|
-
default: "Close"
|
354
|
-
},
|
355
|
-
actionButtonColor: {
|
356
|
-
type: String,
|
357
|
-
default: "pink"
|
358
|
-
}
|
359
|
-
},
|
360
|
-
data() {
|
361
|
-
return {
|
362
|
-
snackbar: !1
|
363
|
-
};
|
364
|
-
}
|
365
|
-
}, U = { class: "text-center ma-2" };
|
366
|
-
function D(t, a, e, n, l, o) {
|
367
|
-
const r = c("v-btn"), m = c("v-snackbar");
|
368
|
-
return d(), g("div", U, [
|
369
|
-
y(r, {
|
370
|
-
color: e.buttonColor,
|
371
|
-
onClick: a[0] || (a[0] = (u) => l.snackbar = !0)
|
372
|
-
}, {
|
373
|
-
default: i(() => [
|
374
|
-
b(f(e.buttonText), 1)
|
375
|
-
]),
|
376
|
-
_: 1
|
377
|
-
}, 8, ["color"]),
|
378
|
-
y(m, {
|
379
|
-
modelValue: l.snackbar,
|
380
|
-
"onUpdate:modelValue": a[2] || (a[2] = (u) => l.snackbar = u),
|
381
|
-
timeout: e.timeout,
|
382
|
-
color: e.snackbarColor
|
383
|
-
}, {
|
384
|
-
actions: i(() => [
|
385
|
-
y(r, {
|
386
|
-
color: e.actionButtonColor,
|
387
|
-
variant: "text",
|
388
|
-
onClick: a[1] || (a[1] = (u) => l.snackbar = !1)
|
389
|
-
}, {
|
390
|
-
default: i(() => [
|
391
|
-
b(f(e.actionButtonText), 1)
|
392
|
-
]),
|
393
|
-
_: 1
|
394
|
-
}, 8, ["color"])
|
395
|
-
]),
|
396
|
-
default: i(() => [
|
397
|
-
b(f(e.message) + " ", 1)
|
398
|
-
]),
|
399
|
-
_: 1
|
400
|
-
}, 8, ["modelValue", "timeout", "color"])
|
401
|
-
]);
|
402
|
-
}
|
403
|
-
const H = /* @__PURE__ */ s(M, [["render", D], ["__scopeId", "data-v-75ce5462"]]), E = {
|
404
|
-
name: "RtImage",
|
405
|
-
props: {
|
406
|
-
src: {
|
407
|
-
type: String,
|
408
|
-
required: !0
|
409
|
-
},
|
410
|
-
alt: {
|
411
|
-
type: String,
|
412
|
-
required: !0
|
413
|
-
},
|
414
|
-
lazySrc: {
|
415
|
-
type: String,
|
416
|
-
default: ""
|
417
|
-
},
|
418
|
-
aspectRatio: {
|
419
|
-
type: [Number, String],
|
420
|
-
default: null
|
421
|
-
},
|
422
|
-
gradient: {
|
423
|
-
type: String,
|
424
|
-
default: ""
|
425
|
-
},
|
426
|
-
loading: {
|
427
|
-
type: String,
|
428
|
-
default: "lazy",
|
429
|
-
// Options: 'lazy', 'eager'
|
430
|
-
validator: (t) => ["lazy", "eager"].includes(t)
|
431
|
-
},
|
432
|
-
transition: {
|
433
|
-
type: String,
|
434
|
-
default: "fade-transition"
|
435
|
-
},
|
436
|
-
classes: {
|
437
|
-
type: [String, Array, Object],
|
438
|
-
default: () => ""
|
439
|
-
}
|
440
|
-
}
|
441
|
-
};
|
442
|
-
function F(t, a, e, n, l, o) {
|
443
|
-
const r = c("v-img");
|
444
|
-
return d(), _(r, {
|
445
|
-
src: e.src,
|
446
|
-
alt: e.alt,
|
447
|
-
"lazy-src": e.lazySrc,
|
448
|
-
"aspect-ratio": e.aspectRatio,
|
449
|
-
gradient: e.gradient,
|
450
|
-
loading: e.loading,
|
451
|
-
transition: e.transition,
|
452
|
-
class: S(e.classes)
|
453
|
-
}, {
|
454
|
-
placeholder: i(() => [
|
455
|
-
p(t.$slots, "placeholder", {}, () => [
|
456
|
-
a[0] || (a[0] = b("Loading..."))
|
457
|
-
], !0)
|
458
|
-
]),
|
459
|
-
default: i(() => [
|
460
|
-
p(t.$slots, "default", {}, void 0, !0)
|
461
|
-
]),
|
462
|
-
_: 3
|
463
|
-
}, 8, ["src", "alt", "lazy-src", "aspect-ratio", "gradient", "loading", "transition", "class"]);
|
464
|
-
}
|
465
|
-
const G = /* @__PURE__ */ s(E, [["render", F], ["__scopeId", "data-v-f3ff4550"]]), J = {
|
466
|
-
name: "RtAvatar",
|
467
|
-
components: {
|
468
|
-
RtImage: G
|
469
|
-
},
|
470
|
-
props: {
|
471
|
-
avatarImage: {
|
472
|
-
type: String,
|
473
|
-
default: "https://randomuser.me/api/portraits/men/32.jpg"
|
474
|
-
},
|
475
|
-
alt: {
|
476
|
-
type: String,
|
477
|
-
default: "Alt"
|
478
|
-
},
|
479
|
-
ariaLabel: {
|
480
|
-
type: String,
|
481
|
-
default: "Aria Label"
|
482
|
-
},
|
483
|
-
name: {
|
484
|
-
type: String,
|
485
|
-
default: "Name"
|
486
|
-
},
|
487
|
-
size: {
|
488
|
-
type: Number,
|
489
|
-
default: 50
|
490
|
-
},
|
491
|
-
rounded: {
|
492
|
-
type: Number,
|
493
|
-
default: 1
|
494
|
-
}
|
495
|
-
},
|
496
|
-
computed: {
|
497
|
-
initials() {
|
498
|
-
return this.name ? this.name.split(" ").map((t) => t[0]).join("").toUpperCase() : "";
|
499
|
-
}
|
500
|
-
}
|
501
|
-
}, K = { class: "avatar-wrapper" }, Q = {
|
502
|
-
key: 1,
|
503
|
-
class: "initials"
|
504
|
-
};
|
505
|
-
function W(t, a, e, n, l, o) {
|
506
|
-
const r = c("RtImage"), m = c("v-avatar");
|
507
|
-
return d(), g("div", K, [
|
508
|
-
y(m, {
|
509
|
-
size: e.size,
|
510
|
-
class: "avatar",
|
511
|
-
rounded: e.rounded,
|
512
|
-
tabindex: "0",
|
513
|
-
role: "img",
|
514
|
-
"aria-label": e.ariaLabel
|
515
|
-
}, {
|
516
|
-
default: i(() => [
|
517
|
-
e.avatarImage ? (d(), _(r, {
|
518
|
-
key: 0,
|
519
|
-
src: e.avatarImage,
|
520
|
-
alt: e.alt
|
521
|
-
}, null, 8, ["src", "alt"])) : (d(), g("span", Q, f(o.initials), 1))
|
522
|
-
]),
|
523
|
-
_: 1
|
524
|
-
}, 8, ["size", "rounded", "aria-label"])
|
525
|
-
]);
|
526
|
-
}
|
527
|
-
const X = /* @__PURE__ */ s(J, [["render", W], ["__scopeId", "data-v-0d49dde0"]]), Y = {
|
528
|
-
name: "RtBreadcrumbs",
|
529
|
-
components: {
|
530
|
-
RtButton: B
|
531
|
-
},
|
532
|
-
props: {
|
533
|
-
items: {
|
534
|
-
type: Array,
|
535
|
-
default: () => [
|
536
|
-
{ text: "Home", to: "/" },
|
537
|
-
{ text: "Products", to: "/products" },
|
538
|
-
{ text: "Details", to: null }
|
539
|
-
]
|
540
|
-
},
|
541
|
-
divider: {
|
542
|
-
type: String,
|
543
|
-
default: "/"
|
544
|
-
}
|
545
|
-
}
|
546
|
-
}, Z = { key: 1 };
|
547
|
-
function $(t, a, e, n, l, o) {
|
548
|
-
const r = c("RtButton"), m = c("v-breadcrumbs");
|
549
|
-
return d(), _(m, {
|
550
|
-
class: "v-breadcrumbs-wrapper",
|
551
|
-
divider: e.divider,
|
552
|
-
items: e.items
|
553
|
-
}, {
|
554
|
-
item: i(({ item: u }) => [
|
555
|
-
u.to ? (d(), _(r, {
|
556
|
-
key: 0,
|
557
|
-
to: u.to,
|
558
|
-
text: ""
|
559
|
-
}, {
|
560
|
-
default: i(() => [
|
561
|
-
b(f(u.text), 1)
|
562
|
-
]),
|
563
|
-
_: 2
|
564
|
-
}, 1032, ["to"])) : (d(), g("span", Z, f(u.text), 1))
|
565
|
-
]),
|
566
|
-
_: 1
|
567
|
-
}, 8, ["divider", "items"]);
|
568
|
-
}
|
569
|
-
const ee = /* @__PURE__ */ s(Y, [["render", $], ["__scopeId", "data-v-5ccff043"]]), ae = {
|
264
|
+
const N = /* @__PURE__ */ d(L, [["render", M], ["__scopeId", "data-v-ce0d0f31"]]), O = {
|
570
265
|
install: (t, a) => {
|
571
|
-
t.component("LearnVueButton",
|
266
|
+
t.component("LearnVueButton", v), t.component("InputTaras", I), t.component("RtText", z), t.component("RtButton", N);
|
572
267
|
}
|
573
268
|
};
|
574
269
|
export {
|
575
|
-
|
270
|
+
O as default
|
576
271
|
};
|
@@ -1 +1 @@
|
|
1
|
-
(function(
|
1
|
+
(function(t,o){typeof exports=="object"&&typeof module<"u"?module.exports=o(require("vue")):typeof define=="function"&&define.amd?define(["vue"],o):(t=typeof globalThis<"u"?globalThis:t||self,t["readytech-ui-library-v2"]=o(t.Vue))})(this,function(t){"use strict";const o=(a,l)=>{const e=a.__vccOpts||a;for(const[n,d]of l)e[n]=d;return e},i={},s={class:"lv-button"};function u(a,l){return t.openBlock(),t.createElementBlock("button",s,[t.renderSlot(a.$slots,"default",{},void 0,!0)])}const f=o(i,[["render",u],["__scopeId","data-v-ac3af47a"]]),p={name:"InputTaras",props:{prop:{required:!0}}},m={class:"class-input"};function b(a,l,e,n,d,r){return t.openBlock(),t.createElementBlock("h1",m,t.toDisplayString(e.prop)+" taras",1)}const y=o(p,[["render",b],["__scopeId","data-v-f440ad26"]]),_={name:"RtText",props:{label:{type:String,default:"Input Field"},hint:{type:String,default:""},placeholder:{type:String,default:""},modelValue:{type:[String,Number],default:""},disabled:{type:Boolean,default:!1},error:{type:Boolean,default:!1},errorMessages:{type:[String,Array],default:()=>[]},prependIcon:{type:String,default:""},clearable:{type:Boolean,default:!1},autocomplete:{type:String,default:"off"}},computed:{inputValue:{get(){return this.modelValue},set(a){this.$emit("update:modelValue",a)}},inputProps(){return{...this.$props}}},methods:{handleClear(){this.$emit("clear")}}};function g(a,l,e,n,d,r){const c=t.resolveComponent("v-text-field");return t.openBlock(),t.createBlock(c,t.mergeProps(r.inputProps,{modelValue:r.inputValue,"onUpdate:modelValue":l[0]||(l[0]=S=>r.inputValue=S),label:e.label,placeholder:e.placeholder,disabled:e.disabled,error:e.error,"error-messages":e.errorMessages,"prepend-icon":e.prependIcon,clearable:"",hint:e.hint,autocomplete:e.autocomplete,"onClick:clear":r.handleClear}),null,16,["modelValue","label","placeholder","disabled","error","error-messages","prepend-icon","hint","autocomplete","onClick:clear"])}const h=o(_,[["render",g],["__scopeId","data-v-33b97f38"]]),B={name:"RtButton",props:{label:{type:String,default:"Click Me"},primary:{type:Boolean,default:!1},size:{type:String,default:"default",validator:a=>["x-small","small","default","large","x-large"].includes(a)},color:{type:String,default:"primary"},backgroundColor:{type:String},icon:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},outlined:{type:Boolean,default:!1},text:{type:String,default:""},tile:{type:Boolean,default:!1},depressed:{type:Boolean,default:!1},rounded:{type:Boolean,default:!1},block:{type:Boolean,default:!1},href:{type:String,default:""},target:{type:String,default:"_self"},to:{type:[String,Object],default:null},replace:{type:Boolean,default:!1},exact:{type:Boolean,default:!1},append:{type:Boolean,default:!1},elevation:{type:[Number,String],default:2}},emits:["click"],setup(a,{emit:l}){const e=()=>{l("click")},n=t.computed(()=>a.primary?"flat":"outlined"),d=t.computed(()=>a.label||"Button"),r=t.computed(()=>({"btn-primary":a.primary,"btn-icon":a.icon,"btn-disabled":a.disabled}));return{onClick:e,variant:n,ariaLabel:d,buttonClasses:r}}};function k(a,l,e,n,d,r){const c=t.resolveComponent("v-btn");return t.openBlock(),t.createBlock(c,{type:"button",variant:n.variant,size:e.size,color:e.color,icon:e.icon,disabled:e.disabled,loading:e.loading,outlined:e.outlined,text:e.text,tile:e.tile,depressed:e.depressed,rounded:e.rounded,block:e.block,href:e.href,target:e.target,elevation:e.elevation,to:e.to,replace:e.replace,exact:e.exact,append:e.append,"background-color":e.backgroundColor,class:t.normalizeClass(n.buttonClasses),onClick:n.onClick,"aria-label":n.ariaLabel},{default:t.withCtx(()=>[t.renderSlot(a.$slots,"default",{},()=>[t.createTextVNode(t.toDisplayString(e.label),1)],!0)]),_:3},8,["variant","size","color","icon","disabled","loading","outlined","text","tile","depressed","rounded","block","href","target","elevation","to","replace","exact","append","background-color","class","onClick","aria-label"])}const x=o(B,[["render",k],["__scopeId","data-v-ce0d0f31"]]);return{install:(a,l)=>{a.component("LearnVueButton",f),a.component("InputTaras",y),a.component("RtText",h),a.component("RtButton",x)}}});
|