@mobileaction/action-kit 1.1.55 → 1.1.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/action-kit.js +7 -7
- package/dist/action-kit.mjs +984 -950
- package/dist/components/track-button/index.vue.d.ts +9 -0
- package/dist/info-circle-181cd9f5.js +1 -0
- package/dist/{info-circle-30e4f742.mjs → info-circle-2-3df3cd43.mjs} +3 -3
- package/dist/info-circle-2-bold-084308bb.js +1 -0
- package/dist/info-circle-2-bold-fb1ec68d.mjs +19 -0
- package/dist/info-circle-2-bulk-ca6c45a3.js +1 -0
- package/dist/info-circle-2-bulk-e316569f.mjs +38 -0
- package/dist/info-circle-2-fa62cd81.js +1 -0
- package/dist/info-circle-f0a7874e.mjs +29 -0
- package/dist/src/components/progress/components/circle.vue.d.ts +8 -1
- package/dist/src/components/progress/components/halfCircle.vue.d.ts +8 -1
- package/dist/src/components/progress/components/line.vue.d.ts +8 -1
- package/dist/src/components/progress/components/stepLine.vue.d.ts +8 -1
- package/dist/src/components/progress/index.vue.d.ts +8 -1
- package/dist/src/components/progress/stories/line-step.stories.d.ts +1 -0
- package/dist/src/components/progress/stories/line.stories.d.ts +1 -0
- package/dist/src/components/track-button/index.vue.d.ts +1 -0
- package/dist/src/components/track-button/stories/default.stories.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/info-circle-13e01628.js +0 -1
|
@@ -8,6 +8,7 @@ export interface MaTrackButtonProps {
|
|
|
8
8
|
tracked?: boolean;
|
|
9
9
|
showClose?: boolean;
|
|
10
10
|
keyword: string;
|
|
11
|
+
badgeText?: string;
|
|
11
12
|
}
|
|
12
13
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
13
14
|
variant: {
|
|
@@ -40,6 +41,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
40
41
|
type: __PropType<string>;
|
|
41
42
|
required: true;
|
|
42
43
|
};
|
|
44
|
+
badgeText: {
|
|
45
|
+
type: __PropType<string>;
|
|
46
|
+
required: false;
|
|
47
|
+
};
|
|
43
48
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
44
49
|
variant: {
|
|
45
50
|
type: __PropType<"default">;
|
|
@@ -71,6 +76,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
71
76
|
type: __PropType<string>;
|
|
72
77
|
required: true;
|
|
73
78
|
};
|
|
79
|
+
badgeText: {
|
|
80
|
+
type: __PropType<string>;
|
|
81
|
+
required: false;
|
|
82
|
+
};
|
|
74
83
|
}>>, {
|
|
75
84
|
variant: "default";
|
|
76
85
|
size: "sm" | "md" | "lg";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),t={xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},r=e.createElementVNode("path",{stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"1.5",d:"M12 22c5.5 0 10-4.5 10-10S17.5 2 12 2 2 6.5 2 12s4.5 10 10 10ZM12 8v5"},null,-1),n=e.createElementVNode("path",{stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M11.995 16h.009"},null,-1),s=[r,n];function o(l,i){return e.openBlock(),e.createElementBlock("svg",t,s)}const c={render:o};exports.default=c;exports.render=o;
|
|
@@ -2,19 +2,19 @@ import { openBlock as o, createElementBlock as t, createElementVNode as e } from
|
|
|
2
2
|
const n = {
|
|
3
3
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4
4
|
fill: "none",
|
|
5
|
-
viewBox: "0 0
|
|
5
|
+
viewBox: "0 0 25 24"
|
|
6
6
|
}, r = /* @__PURE__ */ e("path", {
|
|
7
7
|
stroke: "currentColor",
|
|
8
8
|
"stroke-linecap": "round",
|
|
9
9
|
"stroke-linejoin": "round",
|
|
10
10
|
"stroke-width": "1.5",
|
|
11
|
-
d: "
|
|
11
|
+
d: "M12.014 22c5.5 0 10-4.5 10-10s-4.5-10-10-10-10 4.5-10 10 4.5 10 10 10ZM12.014 11v5"
|
|
12
12
|
}, null, -1), s = /* @__PURE__ */ e("path", {
|
|
13
13
|
stroke: "currentColor",
|
|
14
14
|
"stroke-linecap": "round",
|
|
15
15
|
"stroke-linejoin": "round",
|
|
16
16
|
"stroke-width": "2",
|
|
17
|
-
d: "
|
|
17
|
+
d: "M12.009 8h.009"
|
|
18
18
|
}, null, -1), c = [
|
|
19
19
|
r,
|
|
20
20
|
s
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),c={xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 25 24"},o=e.createElementVNode("path",{fill:"currentColor",d:"M12.014 22c-5.51 0-10-4.49-10-10s4.49-10 10-10 10 4.49 10 10-4.49 10-10 10Zm-.75-6c0 .41.34.75.75.75s.75-.34.75-.75v-5c0-.41-.34-.75-.75-.75s-.75.34-.75.75v5Zm1.67-8.38c-.05-.13-.12-.23-.21-.33-.1-.09-.21-.16-.33-.21a.995.995 0 0 0-.38-.08c-.13 0-.26.03-.38.08s-.23.12-.33.21c-.09.1-.16.2-.21.33-.05.12-.08.25-.08.38s.03.26.08.38.12.23.21.33c.1.09.21.16.33.21.24.1.52.1.76 0 .12-.05.23-.12.33-.21.09-.1.16-.21.21-.33.05-.12.08-.25.08-.38s-.03-.26-.08-.38Z"},null,-1),n=[o];function t(s,l){return e.openBlock(),e.createElementBlock("svg",c,n)}const r={render:t};exports.default=r;exports.render=t;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { openBlock as e, createElementBlock as o, createElementVNode as c } from "vue";
|
|
2
|
+
const t = {
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
fill: "none",
|
|
5
|
+
viewBox: "0 0 25 24"
|
|
6
|
+
}, n = /* @__PURE__ */ c("path", {
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
d: "M12.014 22c-5.51 0-10-4.49-10-10s4.49-10 10-10 10 4.49 10 10-4.49 10-10 10Zm-.75-6c0 .41.34.75.75.75s.75-.34.75-.75v-5c0-.41-.34-.75-.75-.75s-.75.34-.75.75v5Zm1.67-8.38c-.05-.13-.12-.23-.21-.33-.1-.09-.21-.16-.33-.21a.995.995 0 0 0-.38-.08c-.13 0-.26.03-.38.08s-.23.12-.33.21c-.09.1-.16.2-.21.33-.05.12-.08.25-.08.38s.03.26.08.38.12.23.21.33c.1.09.21.16.33.21.24.1.52.1.76 0 .12-.05.23-.12.33-.21.09-.1.16-.21.21-.33.05-.12.08-.25.08-.38s-.03-.26-.08-.38Z"
|
|
9
|
+
}, null, -1), s = [
|
|
10
|
+
n
|
|
11
|
+
];
|
|
12
|
+
function r(l, i) {
|
|
13
|
+
return e(), o("svg", t, s);
|
|
14
|
+
}
|
|
15
|
+
const _ = { render: r };
|
|
16
|
+
export {
|
|
17
|
+
_ as default,
|
|
18
|
+
r as render
|
|
19
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),t={xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 25 24"},r=e.createElementVNode("path",{stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"1.5",d:"M12.014 2c5.5 0 10 4.5 10 10s-4.5 10-10 10-10-4.5-10-10 4.5-10 10-10Z"},null,-1),n=e.createElementVNode("path",{stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"1.5",d:"M12.014 16v-5",opacity:".34"},null,-1),l=e.createElementVNode("path",{stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12.009 8h.009",opacity:".34"},null,-1),s=[r,n,l];function o(i,d){return e.openBlock(),e.createElementBlock("svg",t,s)}const c={render:o};exports.default=c;exports.render=o;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { openBlock as e, createElementBlock as t, createElementVNode as o } from "vue";
|
|
2
|
+
const r = {
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
fill: "none",
|
|
5
|
+
viewBox: "0 0 25 24"
|
|
6
|
+
}, n = /* @__PURE__ */ o("path", {
|
|
7
|
+
stroke: "currentColor",
|
|
8
|
+
"stroke-linecap": "round",
|
|
9
|
+
"stroke-linejoin": "round",
|
|
10
|
+
"stroke-width": "1.5",
|
|
11
|
+
d: "M12.014 2c5.5 0 10 4.5 10 10s-4.5 10-10 10-10-4.5-10-10 4.5-10 10-10Z"
|
|
12
|
+
}, null, -1), s = /* @__PURE__ */ o("path", {
|
|
13
|
+
stroke: "currentColor",
|
|
14
|
+
"stroke-linecap": "round",
|
|
15
|
+
"stroke-linejoin": "round",
|
|
16
|
+
"stroke-width": "1.5",
|
|
17
|
+
d: "M12.014 16v-5",
|
|
18
|
+
opacity: ".34"
|
|
19
|
+
}, null, -1), i = /* @__PURE__ */ o("path", {
|
|
20
|
+
stroke: "currentColor",
|
|
21
|
+
"stroke-linecap": "round",
|
|
22
|
+
"stroke-linejoin": "round",
|
|
23
|
+
"stroke-width": "2",
|
|
24
|
+
d: "M12.009 8h.009",
|
|
25
|
+
opacity: ".34"
|
|
26
|
+
}, null, -1), l = [
|
|
27
|
+
n,
|
|
28
|
+
s,
|
|
29
|
+
i
|
|
30
|
+
];
|
|
31
|
+
function c(d, u) {
|
|
32
|
+
return e(), t("svg", r, l);
|
|
33
|
+
}
|
|
34
|
+
const h = { render: c };
|
|
35
|
+
export {
|
|
36
|
+
h as default,
|
|
37
|
+
c as render
|
|
38
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),t={xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 25 24"},r=e.createElementVNode("path",{stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"1.5",d:"M12.014 22c5.5 0 10-4.5 10-10s-4.5-10-10-10-10 4.5-10 10 4.5 10 10 10ZM12.014 11v5"},null,-1),n=e.createElementVNode("path",{stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M12.009 8h.009"},null,-1),s=[r,n];function o(l,i){return e.openBlock(),e.createElementBlock("svg",t,s)}const c={render:o};exports.default=c;exports.render=o;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { openBlock as o, createElementBlock as t, createElementVNode as e } from "vue";
|
|
2
|
+
const n = {
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
fill: "none",
|
|
5
|
+
viewBox: "0 0 24 24"
|
|
6
|
+
}, r = /* @__PURE__ */ e("path", {
|
|
7
|
+
stroke: "currentColor",
|
|
8
|
+
"stroke-linecap": "round",
|
|
9
|
+
"stroke-linejoin": "round",
|
|
10
|
+
"stroke-width": "1.5",
|
|
11
|
+
d: "M12 22c5.5 0 10-4.5 10-10S17.5 2 12 2 2 6.5 2 12s4.5 10 10 10ZM12 8v5"
|
|
12
|
+
}, null, -1), s = /* @__PURE__ */ e("path", {
|
|
13
|
+
stroke: "currentColor",
|
|
14
|
+
"stroke-linecap": "round",
|
|
15
|
+
"stroke-linejoin": "round",
|
|
16
|
+
"stroke-width": "2",
|
|
17
|
+
d: "M11.995 16h.009"
|
|
18
|
+
}, null, -1), c = [
|
|
19
|
+
r,
|
|
20
|
+
s
|
|
21
|
+
];
|
|
22
|
+
function l(i, d) {
|
|
23
|
+
return o(), t("svg", n, c);
|
|
24
|
+
}
|
|
25
|
+
const u = { render: l };
|
|
26
|
+
export {
|
|
27
|
+
u as default,
|
|
28
|
+
l as render
|
|
29
|
+
};
|
|
@@ -9,7 +9,9 @@ export interface MaProgressItemProps {
|
|
|
9
9
|
showPercent?: boolean;
|
|
10
10
|
size?: MaProgressCircleSize;
|
|
11
11
|
}
|
|
12
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressItemProps>, {}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressItemProps>, {}>>>, {}
|
|
12
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressItemProps>, {}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressItemProps>, {}>>>, {}>, {
|
|
13
|
+
customLabel: (_: {}) => any;
|
|
14
|
+
}>;
|
|
13
15
|
export default _default;
|
|
14
16
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
15
17
|
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -25,3 +27,8 @@ declare type __VLS_WithDefaults<P, D> = {
|
|
|
25
27
|
default: D[K];
|
|
26
28
|
} : P[K];
|
|
27
29
|
};
|
|
30
|
+
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -9,7 +9,9 @@ export interface MaProgressItemProps {
|
|
|
9
9
|
showPercent?: boolean;
|
|
10
10
|
size?: MaProgressCircleSize;
|
|
11
11
|
}
|
|
12
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressItemProps>, {}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressItemProps>, {}>>>, {}
|
|
12
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressItemProps>, {}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressItemProps>, {}>>>, {}>, {
|
|
13
|
+
customLabel: (_: {}) => any;
|
|
14
|
+
}>;
|
|
13
15
|
export default _default;
|
|
14
16
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
15
17
|
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -25,3 +27,8 @@ declare type __VLS_WithDefaults<P, D> = {
|
|
|
25
27
|
default: D[K];
|
|
26
28
|
} : P[K];
|
|
27
29
|
};
|
|
30
|
+
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -9,7 +9,9 @@ export interface MaProgressItemProps {
|
|
|
9
9
|
showPercent?: boolean;
|
|
10
10
|
size?: MaProgressCircleSize;
|
|
11
11
|
}
|
|
12
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressItemProps>, {}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressItemProps>, {}>>>, {}
|
|
12
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressItemProps>, {}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressItemProps>, {}>>>, {}>, {
|
|
13
|
+
customLabel: (_: {}) => any;
|
|
14
|
+
}>;
|
|
13
15
|
export default _default;
|
|
14
16
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
15
17
|
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -25,3 +27,8 @@ declare type __VLS_WithDefaults<P, D> = {
|
|
|
25
27
|
default: D[K];
|
|
26
28
|
} : P[K];
|
|
27
29
|
};
|
|
30
|
+
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -9,7 +9,9 @@ export interface MaProgressItemProps {
|
|
|
9
9
|
showPercent?: boolean;
|
|
10
10
|
size?: MaProgressCircleSize;
|
|
11
11
|
}
|
|
12
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressItemProps>, {}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressItemProps>, {}>>>, {}
|
|
12
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressItemProps>, {}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressItemProps>, {}>>>, {}>, {
|
|
13
|
+
customLabel: (_: {}) => any;
|
|
14
|
+
}>;
|
|
13
15
|
export default _default;
|
|
14
16
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
15
17
|
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -25,3 +27,8 @@ declare type __VLS_WithDefaults<P, D> = {
|
|
|
25
27
|
default: D[K];
|
|
26
28
|
} : P[K];
|
|
27
29
|
};
|
|
30
|
+
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -12,7 +12,7 @@ export interface MaProgressProps {
|
|
|
12
12
|
percentAlignment?: MaProgressPercentAlignment;
|
|
13
13
|
circleSize?: MaProgressCircleSize;
|
|
14
14
|
}
|
|
15
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressProps>, {
|
|
15
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaProgressProps>, {
|
|
16
16
|
type: string;
|
|
17
17
|
color: string;
|
|
18
18
|
circleSize: string;
|
|
@@ -30,6 +30,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
30
30
|
showPercent: boolean;
|
|
31
31
|
circleSize: "xs" | "sm" | "md" | "lg" | "xl";
|
|
32
32
|
percentAlignment: "left" | "right";
|
|
33
|
+
}>, {
|
|
34
|
+
customLabel: (_: {}) => any;
|
|
33
35
|
}>;
|
|
34
36
|
export default _default;
|
|
35
37
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -46,3 +48,8 @@ declare type __VLS_WithDefaults<P, D> = {
|
|
|
46
48
|
default: D[K];
|
|
47
49
|
} : P[K];
|
|
48
50
|
};
|
|
51
|
+
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
52
|
+
new (): {
|
|
53
|
+
$slots: S;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
@@ -7,6 +7,7 @@ export interface MaTrackButtonProps {
|
|
|
7
7
|
tracked?: boolean;
|
|
8
8
|
showClose?: boolean;
|
|
9
9
|
keyword: string;
|
|
10
|
+
badgeText?: string;
|
|
10
11
|
}
|
|
11
12
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaTrackButtonProps>, {
|
|
12
13
|
variant: string;
|