@appmax_npm/ds-prime 1.0.0-alpha.106 → 1.0.0-alpha.108
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/{AmChip.vue_vue_type_script_setup_true_lang-Bln_Aoyv.js → AmChip.vue_vue_type_script_setup_true_lang-YEYtC2BC.js} +1 -1
- package/AmFieldWrapper.vue_vue_type_script_setup_true_lang-DhxSM53l.js +64 -0
- package/{AmFilterLevelMultiSelectFilter-CYQyF94n.js → AmFilterLevelMultiSelectFilter-CPxxHU90.js} +1 -1
- package/{AmFilterLevelSelectFilter-Bxc3aWaO.js → AmFilterLevelSelectFilter-Be3LFJno.js} +1 -1
- package/{AmText.vue_vue_type_script_setup_true_lang-BLpqo8Ry.js → AmText.vue_vue_type_script_setup_true_lang-yjw50cPR.js} +5 -4
- package/{AmToaster.vue_vue_type_style_index_0_global_true_lang-BnxJhkPm.js → AmToaster.vue_vue_type_style_index_0_global_true_lang-BPeMKmnc.js} +1 -1
- package/amalert/index.js +1 -1
- package/amchip/index.js +1 -1
- package/amfield/index.d.ts +2 -2
- package/amfield/index.js +20 -18
- package/amfieldwrapper/index.d.ts +2 -0
- package/amfieldwrapper/index.js +1 -1
- package/amfilterlevel/index.js +4 -4
- package/amnotification/index.js +1 -1
- package/amplugins/index.js +1 -1
- package/amradiooptions/index.d.ts +29 -0
- package/amradiooptions/index.js +65 -0
- package/amtabs/index.js +1 -1
- package/amtext/index.js +1 -1
- package/amtoaster/index.js +1 -1
- package/css/index.css +1 -1
- package/package.json +1 -1
- package/AmFieldWrapper.vue_vue_type_script_setup_true_lang-DO4K4-35.js +0 -50
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as r, openBlock as c, createBlock as a, withCtx as i, createElementVNode as e, renderSlot as m, createVNode as l } from "vue";
|
|
2
|
-
import { _ as p } from "./AmText.vue_vue_type_script_setup_true_lang-
|
|
2
|
+
import { _ as p } from "./AmText.vue_vue_type_script_setup_true_lang-yjw50cPR.js";
|
|
3
3
|
import { _ } from "./AmIcon.vue_vue_type_script_setup_true_lang-DkJ2sUVG.js";
|
|
4
4
|
const f = { class: "p-1" }, d = { name: "AmChip" }, b = /* @__PURE__ */ r({
|
|
5
5
|
...d,
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { defineComponent as p, openBlock as l, createElementBlock as i, normalizeClass as m, createElementVNode as d, createBlock as a, withCtx as r, toDisplayString as t, createCommentVNode as s, createTextVNode as n, renderSlot as u } from "vue";
|
|
2
|
+
import { _ as o } from "./AmText.vue_vue_type_script_setup_true_lang-yjw50cPR.js";
|
|
3
|
+
const c = { class: "flex items-end gap-2 justify-between" }, f = {
|
|
4
|
+
key: 0,
|
|
5
|
+
class: "text-xs text-muted-color"
|
|
6
|
+
}, b = { name: "AmFieldWrapper" }, g = /* @__PURE__ */ p({
|
|
7
|
+
...b,
|
|
8
|
+
props: {
|
|
9
|
+
label: {},
|
|
10
|
+
labelHint: {},
|
|
11
|
+
hint: {},
|
|
12
|
+
error: {},
|
|
13
|
+
help: {},
|
|
14
|
+
disabled: { type: Boolean }
|
|
15
|
+
},
|
|
16
|
+
setup(h) {
|
|
17
|
+
return (e, _) => (l(), i("label", {
|
|
18
|
+
class: m(["grid gap-1 w-full", { "opacity-65": e.disabled }])
|
|
19
|
+
}, [
|
|
20
|
+
d("div", c, [
|
|
21
|
+
e.label ? (l(), a(o, { key: 0 }, {
|
|
22
|
+
default: r(() => [
|
|
23
|
+
d("strong", null, t(e.label), 1),
|
|
24
|
+
e.labelHint ? (l(), i("span", f, " (" + t(e.labelHint) + ")", 1)) : s("", !0)
|
|
25
|
+
]),
|
|
26
|
+
_: 1
|
|
27
|
+
})) : s("", !0),
|
|
28
|
+
e.hint ? (l(), a(o, {
|
|
29
|
+
key: 1,
|
|
30
|
+
as: "span",
|
|
31
|
+
variant: "caption"
|
|
32
|
+
}, {
|
|
33
|
+
default: r(() => [
|
|
34
|
+
n(t(e.hint), 1)
|
|
35
|
+
]),
|
|
36
|
+
_: 1
|
|
37
|
+
})) : s("", !0)
|
|
38
|
+
]),
|
|
39
|
+
u(e.$slots, "default"),
|
|
40
|
+
e.error ? (l(), a(o, {
|
|
41
|
+
key: 0,
|
|
42
|
+
class: "text-danger",
|
|
43
|
+
size: "small"
|
|
44
|
+
}, {
|
|
45
|
+
default: r(() => [
|
|
46
|
+
n(t(e.error), 1)
|
|
47
|
+
]),
|
|
48
|
+
_: 1
|
|
49
|
+
})) : e.help ? (l(), a(o, {
|
|
50
|
+
key: 1,
|
|
51
|
+
class: "text-muted-color",
|
|
52
|
+
size: "small"
|
|
53
|
+
}, {
|
|
54
|
+
default: r(() => [
|
|
55
|
+
n(t(e.help), 1)
|
|
56
|
+
]),
|
|
57
|
+
_: 1
|
|
58
|
+
})) : s("", !0)
|
|
59
|
+
], 2));
|
|
60
|
+
}
|
|
61
|
+
});
|
|
62
|
+
export {
|
|
63
|
+
g as _
|
|
64
|
+
};
|
package/{AmFilterLevelMultiSelectFilter-CYQyF94n.js → AmFilterLevelMultiSelectFilter-CPxxHU90.js}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as i, mergeModels as u, useModel as p, openBlock as a, createElementBlock as l, Fragment as f, renderList as c, createVNode as d, unref as v, withCtx as V, createTextVNode as $, toDisplayString as _ } from "vue";
|
|
2
|
-
import { _ as b } from "./AmText.vue_vue_type_script_setup_true_lang-
|
|
2
|
+
import { _ as b } from "./AmText.vue_vue_type_script_setup_true_lang-yjw50cPR.js";
|
|
3
3
|
import g from "primevue/checkbox";
|
|
4
4
|
const y = { class: "space-y-2 divide-y divide-gray-200" }, h = ["data-test", "for"], k = { name: "AmFilterLevelMultiSelectFilter" }, F = /* @__PURE__ */ i({
|
|
5
5
|
...k,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as p, mergeModels as f, ref as V, useModel as v, onMounted as _, openBlock as o, createElementBlock as n, Fragment as $, renderList as h, createVNode as u, unref as b, withCtx as g, createTextVNode as y, toDisplayString as M } from "vue";
|
|
2
|
-
import { _ as k } from "./AmText.vue_vue_type_script_setup_true_lang-
|
|
2
|
+
import { _ as k } from "./AmText.vue_vue_type_script_setup_true_lang-yjw50cPR.js";
|
|
3
3
|
import x from "primevue/checkbox";
|
|
4
4
|
const C = { class: "space-y-2 divide-y divide-gray-200" }, P = ["data-test", "for"], T = { name: "AmFilterLevelSelectFilter" }, I = /* @__PURE__ */ p({
|
|
5
5
|
...T,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as e, openBlock as o, createBlock as l, resolveDynamicComponent as n, normalizeClass as r, unref as i, withCtx as m, renderSlot as d } from "vue";
|
|
2
2
|
import { cva as c } from "class-variance-authority";
|
|
3
3
|
import { twMerge as f } from "tailwind-merge";
|
|
4
4
|
const u = c(
|
|
@@ -19,6 +19,7 @@ const u = c(
|
|
|
19
19
|
// caption
|
|
20
20
|
{ variant: "caption", isStrong: !0, class: "font-bold" },
|
|
21
21
|
// body
|
|
22
|
+
{ variant: "body", size: "small", class: "text-xs" },
|
|
22
23
|
{ variant: "body", isStrong: !0, class: "font-medium" },
|
|
23
24
|
// subtitle
|
|
24
25
|
{ variant: "subtitle", isStrong: !0, class: "font-bold" },
|
|
@@ -33,7 +34,7 @@ const u = c(
|
|
|
33
34
|
{ variant: "display", isStrong: !0, class: "font-bold" }
|
|
34
35
|
]
|
|
35
36
|
}
|
|
36
|
-
), x = (s, t) => f(u(s), t), y = /* @__PURE__ */
|
|
37
|
+
), x = (s, t) => f(u(s), t), y = /* @__PURE__ */ e({
|
|
37
38
|
__name: "AmText",
|
|
38
39
|
props: {
|
|
39
40
|
as: { default: "div" },
|
|
@@ -44,11 +45,11 @@ const u = c(
|
|
|
44
45
|
},
|
|
45
46
|
setup(s) {
|
|
46
47
|
const t = s;
|
|
47
|
-
return (
|
|
48
|
+
return (a, p) => (o(), l(n(a.as), {
|
|
48
49
|
class: r(i(x)(t, t.class))
|
|
49
50
|
}, {
|
|
50
51
|
default: m(() => [
|
|
51
|
-
d(
|
|
52
|
+
d(a.$slots, "default")
|
|
52
53
|
]),
|
|
53
54
|
_: 3
|
|
54
55
|
}, 8, ["class"]));
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineComponent as y, computed as i, openBlock as n, createElementBlock as g, createElementVNode as l, createBlock as c, normalizeClass as m, createCommentVNode as u, withCtx as s, createTextVNode as p, toDisplayString as _, createVNode as v, unref as x } from "vue";
|
|
2
2
|
import w from "primevue/toast";
|
|
3
3
|
import { _ as C } from "./AmIcon.vue_vue_type_script_setup_true_lang-DkJ2sUVG.js";
|
|
4
|
-
import { _ as f } from "./AmText.vue_vue_type_script_setup_true_lang-
|
|
4
|
+
import { _ as f } from "./AmText.vue_vue_type_script_setup_true_lang-yjw50cPR.js";
|
|
5
5
|
const d = {
|
|
6
6
|
info: {
|
|
7
7
|
icon: "info",
|
package/amalert/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineComponent as w, computed as _, openBlock as o, createElementBlock as l, normalizeClass as b, unref as y, createVNode as s, createElementVNode as h, renderSlot as n, withCtx as i, createTextVNode as c, toDisplayString as m, createBlock as k, createCommentVNode as d } from "vue";
|
|
2
2
|
import { cva as z } from "class-variance-authority";
|
|
3
3
|
import { twMerge as C } from "tailwind-merge";
|
|
4
|
-
import { _ as f } from "../AmText.vue_vue_type_script_setup_true_lang-
|
|
4
|
+
import { _ as f } from "../AmText.vue_vue_type_script_setup_true_lang-yjw50cPR.js";
|
|
5
5
|
import { _ as u } from "../AmIcon.vue_vue_type_script_setup_true_lang-DkJ2sUVG.js";
|
|
6
6
|
const V = z("w-fit bg-green-100 shadow-sm rounded-md p-3 flex flex-row gap-2", {
|
|
7
7
|
variants: {
|
package/amchip/index.js
CHANGED
package/amfield/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Component, DefineComponent, VNode } from 'vue';
|
|
2
2
|
import { AmFieldWrapperProps } from '../AmFieldWrapper';
|
|
3
3
|
|
|
4
|
-
export interface AmFieldProps extends
|
|
4
|
+
export interface AmFieldProps extends Omit<AmFieldWrapperProps, "error"> {
|
|
5
5
|
as?: Component;
|
|
6
6
|
name: string;
|
|
7
7
|
}
|
package/amfield/index.js
CHANGED
|
@@ -1,37 +1,39 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { _ as
|
|
1
|
+
import { defineComponent as i, createPropsRestProxy as m, openBlock as n, createBlock as t, unref as p, withCtx as o, createVNode as d, resolveDynamicComponent as b, mergeProps as h } from "vue";
|
|
2
|
+
import { _ as u } from "../AmFieldWrapper.vue_vue_type_script_setup_true_lang-DhxSM53l.js";
|
|
3
3
|
import f from "primevue/inputtext";
|
|
4
|
-
import { FormField as
|
|
5
|
-
const
|
|
6
|
-
...
|
|
4
|
+
import { FormField as c } from "@primevue/forms";
|
|
5
|
+
const _ = { name: "AmField" }, P = /* @__PURE__ */ i({
|
|
6
|
+
..._,
|
|
7
7
|
props: {
|
|
8
8
|
as: { default: () => f },
|
|
9
9
|
name: {},
|
|
10
|
-
class: {},
|
|
11
|
-
style: {},
|
|
12
10
|
label: {},
|
|
11
|
+
labelHint: {},
|
|
12
|
+
hint: {},
|
|
13
13
|
help: {},
|
|
14
14
|
disabled: { type: Boolean }
|
|
15
15
|
},
|
|
16
|
-
setup(
|
|
17
|
-
const a =
|
|
18
|
-
return (e,
|
|
16
|
+
setup(s) {
|
|
17
|
+
const a = m(s, ["as", "help", "label", "labelHint", "hint"]);
|
|
18
|
+
return (e, H) => (n(), t(p(c), {
|
|
19
19
|
name: a.name
|
|
20
20
|
}, {
|
|
21
|
-
default:
|
|
22
|
-
var
|
|
21
|
+
default: o((l) => {
|
|
22
|
+
var r;
|
|
23
23
|
return [
|
|
24
|
-
|
|
24
|
+
d(u, {
|
|
25
25
|
help: e.help,
|
|
26
26
|
label: e.label,
|
|
27
|
-
|
|
27
|
+
labelHint: e.labelHint,
|
|
28
|
+
hint: e.hint,
|
|
29
|
+
error: (r = l == null ? void 0 : l.error) == null ? void 0 : r.message,
|
|
28
30
|
disabled: a.disabled
|
|
29
31
|
}, {
|
|
30
|
-
default:
|
|
31
|
-
(
|
|
32
|
+
default: o(() => [
|
|
33
|
+
(n(), t(b(e.as), h({ ...e.$attrs, ...a }, { disabled: e.disabled }), null, 16, ["disabled"]))
|
|
32
34
|
]),
|
|
33
35
|
_: 2
|
|
34
|
-
}, 1032, ["help", "label", "error", "disabled"])
|
|
36
|
+
}, 1032, ["help", "label", "labelHint", "hint", "error", "disabled"])
|
|
35
37
|
];
|
|
36
38
|
}),
|
|
37
39
|
_: 1
|
|
@@ -39,5 +41,5 @@ const h = { name: "AmField" }, g = /* @__PURE__ */ m({
|
|
|
39
41
|
}
|
|
40
42
|
});
|
|
41
43
|
export {
|
|
42
|
-
|
|
44
|
+
P as default
|
|
43
45
|
};
|
package/amfieldwrapper/index.js
CHANGED
package/amfilterlevel/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineComponent as q, ref as E, computed as v, defineAsyncComponent as G, onMounted as H, watch as J, openBlock as f, createElementBlock as b, Fragment as x, createVNode as n, unref as F, withCtx as o, createElementVNode as d, createTextVNode as m, toDisplayString as _, renderList as K, createCommentVNode as I, createBlock as Q, resolveDynamicComponent as W, mergeProps as Z } from "vue";
|
|
2
2
|
import N from "primevue/drawer";
|
|
3
|
-
import { _ as ee } from "../AmChip.vue_vue_type_script_setup_true_lang-
|
|
4
|
-
import { _ as L } from "../AmText.vue_vue_type_script_setup_true_lang-
|
|
3
|
+
import { _ as ee } from "../AmChip.vue_vue_type_script_setup_true_lang-YEYtC2BC.js";
|
|
4
|
+
import { _ as L } from "../AmText.vue_vue_type_script_setup_true_lang-yjw50cPR.js";
|
|
5
5
|
import C from "../ambutton/index.js";
|
|
6
6
|
import { _ as te } from "../AmIcon.vue_vue_type_script_setup_true_lang-DkJ2sUVG.js";
|
|
7
7
|
import { _ as B } from "../AmIconButton.vue_vue_type_script_setup_true_lang-Cberzybd.js";
|
|
@@ -28,11 +28,11 @@ const g = (t) => new Date(t), $ = (t) => g(t).toLocaleDateString("pt-BR"), se =
|
|
|
28
28
|
formatChipLabel: oe
|
|
29
29
|
},
|
|
30
30
|
multiselect: {
|
|
31
|
-
component: () => import("../AmFilterLevelMultiSelectFilter-
|
|
31
|
+
component: () => import("../AmFilterLevelMultiSelectFilter-CPxxHU90.js"),
|
|
32
32
|
formatChipLabel: le
|
|
33
33
|
},
|
|
34
34
|
select: {
|
|
35
|
-
component: () => import("../AmFilterLevelSelectFilter-
|
|
35
|
+
component: () => import("../AmFilterLevelSelectFilter-Be3LFJno.js"),
|
|
36
36
|
formatChipLabel: ne
|
|
37
37
|
}
|
|
38
38
|
}, re = () => "Selecionado", ie = ({ component: t }) => typeof t == "string" ? Object.keys(k).includes(t) ? k[t].component : null : t, ue = (t) => t.formatChipLabel ? t.formatChipLabel : typeof t.component != "string" ? re : k[t.component].formatChipLabel, ce = { class: "flex justify-between w-full" }, de = {
|
package/amnotification/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as g, computed as _, openBlock as a, createElementBlock as n, normalizeClass as v, unref as w, createElementVNode as i, createVNode as b, createBlock as c, withCtx as d, createTextVNode as l, toDisplayString as f, createCommentVNode as r, renderSlot as m } from "vue";
|
|
2
|
-
import { _ as u } from "../AmText.vue_vue_type_script_setup_true_lang-
|
|
2
|
+
import { _ as u } from "../AmText.vue_vue_type_script_setup_true_lang-yjw50cPR.js";
|
|
3
3
|
import { _ as x } from "../AmIcon.vue_vue_type_script_setup_true_lang-DkJ2sUVG.js";
|
|
4
4
|
import { cva as N } from "class-variance-authority";
|
|
5
5
|
import { twMerge as h } from "tailwind-merge";
|
package/amplugins/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as e, openBlock as o, createBlock as n } from "vue";
|
|
2
|
-
import { _ as r } from "../AmToaster.vue_vue_type_style_index_0_global_true_lang-
|
|
2
|
+
import { _ as r } from "../AmToaster.vue_vue_type_style_index_0_global_true_lang-BPeMKmnc.js";
|
|
3
3
|
const p = /* @__PURE__ */ e({
|
|
4
4
|
__name: "AmPlugins",
|
|
5
5
|
setup(t) {
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { Component, DefineComponent } from 'vue';
|
|
2
|
+
|
|
3
|
+
export interface AmRadioOptionsProps {
|
|
4
|
+
name: string;
|
|
5
|
+
options: Array<{ label: string; value: unknown }>;
|
|
6
|
+
modelValue?: unknown;
|
|
7
|
+
label?: string;
|
|
8
|
+
help?: string;
|
|
9
|
+
error?: string;
|
|
10
|
+
dataTestPrefix?: string;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export interface AmRadioOptionsSlots {}
|
|
14
|
+
|
|
15
|
+
export interface AmRadioOptionsEmits {
|
|
16
|
+
'update:modelValue': (value: unknown) => void;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* **DS Prime - AmRadioOptions**
|
|
21
|
+
*
|
|
22
|
+
* AmRadioOptions é um componente de formulário o DS Prime.
|
|
23
|
+
*
|
|
24
|
+
* [Documentação](https://appmax-space.bitbucket.io/ds-prime/componentes/AmRadioOptions.html)
|
|
25
|
+
*/
|
|
26
|
+
|
|
27
|
+
declare const AmRadioOptions: DefineComponent<AmRadioOptionsProps, AmRadioOptionsSlots, AmRadioOptionsEmits>;
|
|
28
|
+
|
|
29
|
+
export default AmRadioOptions;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { defineComponent as u, mergeModels as p, useModel as c, openBlock as t, createElementBlock as o, Fragment as f, renderList as _, createElementVNode as v, createVNode as s, unref as V, withCtx as $, createTextVNode as b, toDisplayString as h } from "vue";
|
|
2
|
+
import { RadioButton as g } from "primevue";
|
|
3
|
+
import { _ as k } from "../AmText.vue_vue_type_script_setup_true_lang-yjw50cPR.js";
|
|
4
|
+
import { _ as x } from "../AmIcon.vue_vue_type_script_setup_true_lang-DkJ2sUVG.js";
|
|
5
|
+
import { _ as y } from "../_plugin-vue_export-helper-CHgC5LLL.js";
|
|
6
|
+
const P = { class: "space-y-2 am-radio-options" }, T = ["data-test", "for"], B = { class: "flex items-center justify-center relative" }, I = { name: "AmRadios" }, M = /* @__PURE__ */ u({
|
|
7
|
+
...I,
|
|
8
|
+
props: /* @__PURE__ */ p({
|
|
9
|
+
name: {},
|
|
10
|
+
options: {},
|
|
11
|
+
modelValue: {},
|
|
12
|
+
label: {},
|
|
13
|
+
help: {},
|
|
14
|
+
error: {},
|
|
15
|
+
dataTestPrefix: { default: "am-radio-options" }
|
|
16
|
+
}, {
|
|
17
|
+
modelValue: {},
|
|
18
|
+
modelModifiers: {}
|
|
19
|
+
}),
|
|
20
|
+
emits: ["update:modelValue"],
|
|
21
|
+
setup(d) {
|
|
22
|
+
const n = c(d, "modelValue"), i = {
|
|
23
|
+
box: {
|
|
24
|
+
class: "!rounded-full"
|
|
25
|
+
},
|
|
26
|
+
icon: {
|
|
27
|
+
class: "!bg-transparent"
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
return (e, l) => (t(), o("div", P, [
|
|
31
|
+
(t(!0), o(f, null, _(e.options, (r, a) => (t(), o("label", {
|
|
32
|
+
class: "flex items-center gap-2 pt-2 cursor-pointer",
|
|
33
|
+
key: a,
|
|
34
|
+
"data-test": `${e.dataTestPrefix}-option-${a}`,
|
|
35
|
+
for: `${e.name}-${a + 1}`
|
|
36
|
+
}, [
|
|
37
|
+
v("div", B, [
|
|
38
|
+
s(V(g), {
|
|
39
|
+
modelValue: n.value,
|
|
40
|
+
"onUpdate:modelValue": l[0] || (l[0] = (m) => n.value = m),
|
|
41
|
+
pt: i,
|
|
42
|
+
inputId: `${e.name}-${a + 1}`,
|
|
43
|
+
name: e.name,
|
|
44
|
+
value: r.value,
|
|
45
|
+
"data-test": `${e.dataTestPrefix}-input-${e.name}`
|
|
46
|
+
}, null, 8, ["modelValue", "inputId", "name", "value", "data-test"]),
|
|
47
|
+
s(x, {
|
|
48
|
+
class: "am-radio-options__icon absolute",
|
|
49
|
+
icon: "check",
|
|
50
|
+
size: "md"
|
|
51
|
+
})
|
|
52
|
+
]),
|
|
53
|
+
s(k, { as: "span" }, {
|
|
54
|
+
default: $(() => [
|
|
55
|
+
b(h(r.label), 1)
|
|
56
|
+
]),
|
|
57
|
+
_: 2
|
|
58
|
+
}, 1024)
|
|
59
|
+
], 8, T))), 128))
|
|
60
|
+
]));
|
|
61
|
+
}
|
|
62
|
+
}), j = /* @__PURE__ */ y(M, [["__scopeId", "data-v-3b2588ae"]]);
|
|
63
|
+
export {
|
|
64
|
+
j as default
|
|
65
|
+
};
|
package/amtabs/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as _, mergeModels as p, ref as o, useModel as v, onMounted as b, openBlock as r, createElementBlock as u, Fragment as y, renderList as k, createBlock as V, withCtx as m, createVNode as T, createTextVNode as g, toDisplayString as x, createElementVNode as A, normalizeStyle as h } from "vue";
|
|
2
|
-
import { _ as B } from "../AmText.vue_vue_type_script_setup_true_lang-
|
|
2
|
+
import { _ as B } from "../AmText.vue_vue_type_script_setup_true_lang-yjw50cPR.js";
|
|
3
3
|
import C from "../ambutton/index.js";
|
|
4
4
|
import { _ as E } from "../_plugin-vue_export-helper-CHgC5LLL.js";
|
|
5
5
|
const M = { name: "AmTabs" }, $ = /* @__PURE__ */ _({
|
package/amtext/index.js
CHANGED
package/amtoaster/index.js
CHANGED