@ironsource/shared-ui 2.0.0-rc.8 → 2.0.0-rc.9
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/Button.vue_vue_type_style_index_0_scoped_35545b8c_lang.css +1 -0
- package/CardPanel.vue_vue_type_style_index_0_scoped_3cda0f04_lang.css +1 -0
- package/FoldableSection.vue_vue_type_style_index_0_scoped_51b5b56d_lang.css +1 -0
- package/FormCard.vue_vue_type_style_index_0_scoped_bb7d27f9_lang.css +1 -0
- package/MenuItem.vue_vue_type_style_index_0_scoped_67e53b85_lang.css +1 -0
- package/ToggleV4.vue_vue_type_style_index_0_scoped_ef31fecc_lang.css +1 -0
- package/Tooltip.vue_vue_type_style_index_0_scoped_9020a179_lang.css +1 -0
- package/TooltipV4.vue_vue_type_style_index_0_scoped_21f12d1a_lang.css +1 -0
- package/components/appTrigger/AppTrigger.vue2.js +19 -20
- package/components/button/v3/Button.vue.js +3 -3
- package/components/button/v3/Button.vue2.js +1 -1
- package/components/button/v3/ScrollButton.vue2.js +4 -5
- package/components/includeExclude/IncludeExcludeAppTrigger.vue2.js +15 -16
- package/components/includeExclude/IncludeExcludeOption.vue2.js +6 -7
- package/components/includeExclude/IncludeExcludeOptionDraggable.vue2.js +16 -17
- package/components/input/v3/Input.vue2.js +3 -4
- package/components/input/v4/TextField.vue2.js +8 -8
- package/components/layout/CardPanel.vue.d.ts +36 -0
- package/components/layout/CardPanel.vue.js +7 -0
- package/components/layout/CardPanel.vue2.js +25 -0
- package/components/layout/FoldableSection.vue.d.ts +50 -0
- package/components/layout/FoldableSection.vue.js +7 -0
- package/components/layout/FoldableSection.vue2.js +57 -0
- package/components/layout/FormCard.vue.d.ts +74 -0
- package/components/layout/FormCard.vue.js +7 -0
- package/components/layout/FormCard.vue2.js +74 -0
- package/components/layout/index.d.ts +405 -0
- package/components/layout/index.js +10 -0
- package/components/menuItem/MenuItem.vue.js +5 -24
- package/components/menuItem/MenuItem.vue2.js +23 -0
- package/components/shared/FieldLabel.vue2.js +3 -3
- package/components/table/common/Table.common.js +20 -20
- package/components/toggle/v4/ToggleV4.vue.js +7 -0
- package/components/toggle/v4/ToggleV4.vue2.js +95 -0
- package/components/toggle/v4/index.d.ts +313 -0
- package/components/toggle/v4/index.js +6 -0
- package/components/tooltip/v3/Tooltip.vue.js +6 -3
- package/components/tooltip/v3/Tooltip.vue2.js +3 -3
- package/components/tooltip/v3/index.js +3 -4
- package/components/tooltip/v4/TooltipV4.vue.js +6 -65
- package/components/tooltip/v4/TooltipV4.vue2.js +67 -0
- package/components/tooltip/v4/index.js +2 -2
- package/index.d.ts +623 -1
- package/index.js +137 -129
- package/package.json +17 -5
- package/testids/index.d.ts +11 -0
- package/testids/index.js +16 -14
- package/Button.vue_vue_type_style_index_0_scoped_bfe31a93_lang.css +0 -1
- package/MenuItem.vue_vue_type_style_index_0_scoped_c7e837fa_lang.css +0 -1
- package/components/tooltip/v4/TooltipV4.vue3.js +0 -4
- /package/{Tooltip.vue_vue_type_style_index_0_lang.css → Tooltip.vue_vue_type_style_index_1_lang.css} +0 -0
- /package/{TooltipV4.vue_vue_type_style_index_0_lang.css → TooltipV4.vue_vue_type_style_index_1_lang.css} +0 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
title?: string;
|
|
3
|
+
open?: boolean;
|
|
4
|
+
testId?: string;
|
|
5
|
+
}>, {
|
|
6
|
+
title: string;
|
|
7
|
+
open: boolean;
|
|
8
|
+
testId: string;
|
|
9
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
"update:open": (value: boolean) => void;
|
|
11
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
12
|
+
title?: string;
|
|
13
|
+
open?: boolean;
|
|
14
|
+
testId?: string;
|
|
15
|
+
}>, {
|
|
16
|
+
title: string;
|
|
17
|
+
open: boolean;
|
|
18
|
+
testId: string;
|
|
19
|
+
}>>> & {
|
|
20
|
+
"onUpdate:open"?: (value: boolean) => any;
|
|
21
|
+
}, {
|
|
22
|
+
title: string;
|
|
23
|
+
testId: string;
|
|
24
|
+
open: boolean;
|
|
25
|
+
}>, {
|
|
26
|
+
default?(_: {}): any;
|
|
27
|
+
}>;
|
|
28
|
+
export default _default;
|
|
29
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
30
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
31
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
32
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
33
|
+
} : {
|
|
34
|
+
type: import('vue').PropType<T[K]>;
|
|
35
|
+
required: true;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
type __VLS_WithDefaults<P, D> = {
|
|
39
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
40
|
+
default: D[K];
|
|
41
|
+
}> : P[K];
|
|
42
|
+
};
|
|
43
|
+
type __VLS_Prettify<T> = {
|
|
44
|
+
[K in keyof T]: T[K];
|
|
45
|
+
} & {};
|
|
46
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
47
|
+
new (): {
|
|
48
|
+
$slots: S;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import o from "./FoldableSection.vue2.js";
|
|
2
|
+
/* empty css */import e from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
// import "../../FoldableSection.vue_vue_type_style_index_0_scoped_51b5b56d_lang.css"; //*');
|
|
4
|
+
const c = /* @__PURE__ */ e(o, [["__scopeId", "data-v-51b5b56d"]]);
|
|
5
|
+
export {
|
|
6
|
+
c as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import "../../FoldableSection.vue_vue_type_style_index_0_scoped_51b5b56d_lang.css"; import { defineComponent as f, ref as v, watch as T, openBlock as s, createElementBlock as i, createElementVNode as g, mergeProps as d, unref as t, createVNode as a, withCtx as p, createTextVNode as h, toDisplayString as I, Transition as _, normalizeProps as y, renderSlot as N, createCommentVNode as C } from "vue";
|
|
2
|
+
import k from "../typography/v4/Typography.vue.js";
|
|
3
|
+
import w from "../icon/v4/IconV4.vue.js";
|
|
4
|
+
import { useTestIdAttrs as x } from "../../utils/testIds.js";
|
|
5
|
+
import { FoldableSectionTestIdModifiers as l } from "../../testids/index.js";
|
|
6
|
+
const E = { class: "foldable-section" }, A = /* @__PURE__ */ f({
|
|
7
|
+
__name: "FoldableSection",
|
|
8
|
+
props: {
|
|
9
|
+
title: { default: "" },
|
|
10
|
+
open: { type: Boolean, default: !1 },
|
|
11
|
+
testId: { default: "" }
|
|
12
|
+
},
|
|
13
|
+
emits: ["update:open"],
|
|
14
|
+
setup(r, { emit: c }) {
|
|
15
|
+
const o = r, n = x(
|
|
16
|
+
o.testId,
|
|
17
|
+
l
|
|
18
|
+
), e = v(!1), u = () => {
|
|
19
|
+
e.value = !e.value, c("update:open", e.value);
|
|
20
|
+
};
|
|
21
|
+
return T(
|
|
22
|
+
() => o.open,
|
|
23
|
+
() => {
|
|
24
|
+
e.value = o.open;
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
immediate: !0
|
|
28
|
+
}
|
|
29
|
+
), (m, S) => (s(), i("div", E, [
|
|
30
|
+
g("div", d({ class: "title-wrapper" }, t(n)[t(l).TITLE], { onClick: u }), [
|
|
31
|
+
a(t(k), { variant: "h4" }, {
|
|
32
|
+
default: p(() => [
|
|
33
|
+
h(I(r.title), 1)
|
|
34
|
+
]),
|
|
35
|
+
_: 1
|
|
36
|
+
}),
|
|
37
|
+
a(t(w), {
|
|
38
|
+
class: "toggle-icon",
|
|
39
|
+
name: e.value ? "caret-down" : "caret-right",
|
|
40
|
+
type: "fill",
|
|
41
|
+
size: "12px"
|
|
42
|
+
}, null, 8, ["name"])
|
|
43
|
+
], 16),
|
|
44
|
+
a(_, null, {
|
|
45
|
+
default: p(() => [
|
|
46
|
+
e.value ? (s(), i("div", y(d({ key: 0 }, t(n)[t(l).CONTENT])), [
|
|
47
|
+
N(m.$slots, "default", {}, void 0, !0)
|
|
48
|
+
], 16)) : C("", !0)
|
|
49
|
+
]),
|
|
50
|
+
_: 3
|
|
51
|
+
})
|
|
52
|
+
]));
|
|
53
|
+
}
|
|
54
|
+
});
|
|
55
|
+
export {
|
|
56
|
+
A as default
|
|
57
|
+
};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
title?: string;
|
|
3
|
+
noPadding?: boolean;
|
|
4
|
+
actionButtons?: boolean;
|
|
5
|
+
saveLabel?: string;
|
|
6
|
+
cancelLabel?: string;
|
|
7
|
+
saveLoading?: boolean;
|
|
8
|
+
testId?: string;
|
|
9
|
+
}>, {
|
|
10
|
+
title: string;
|
|
11
|
+
noPadding: boolean;
|
|
12
|
+
actionButtons: boolean;
|
|
13
|
+
cancelLabel: string;
|
|
14
|
+
saveLabel: string;
|
|
15
|
+
saveLoading: boolean;
|
|
16
|
+
testId: string;
|
|
17
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
|
+
save: () => void;
|
|
19
|
+
cancel: () => void;
|
|
20
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
21
|
+
title?: string;
|
|
22
|
+
noPadding?: boolean;
|
|
23
|
+
actionButtons?: boolean;
|
|
24
|
+
saveLabel?: string;
|
|
25
|
+
cancelLabel?: string;
|
|
26
|
+
saveLoading?: boolean;
|
|
27
|
+
testId?: string;
|
|
28
|
+
}>, {
|
|
29
|
+
title: string;
|
|
30
|
+
noPadding: boolean;
|
|
31
|
+
actionButtons: boolean;
|
|
32
|
+
cancelLabel: string;
|
|
33
|
+
saveLabel: string;
|
|
34
|
+
saveLoading: boolean;
|
|
35
|
+
testId: string;
|
|
36
|
+
}>>> & {
|
|
37
|
+
onCancel?: () => any;
|
|
38
|
+
onSave?: () => any;
|
|
39
|
+
}, {
|
|
40
|
+
title: string;
|
|
41
|
+
testId: string;
|
|
42
|
+
noPadding: boolean;
|
|
43
|
+
actionButtons: boolean;
|
|
44
|
+
saveLabel: string;
|
|
45
|
+
cancelLabel: string;
|
|
46
|
+
saveLoading: boolean;
|
|
47
|
+
}>, {
|
|
48
|
+
header?(_: {}): any;
|
|
49
|
+
default?(_: {}): any;
|
|
50
|
+
footer?(_: {}): any;
|
|
51
|
+
}>;
|
|
52
|
+
export default _default;
|
|
53
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
54
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
55
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
56
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
57
|
+
} : {
|
|
58
|
+
type: import('vue').PropType<T[K]>;
|
|
59
|
+
required: true;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
type __VLS_WithDefaults<P, D> = {
|
|
63
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
64
|
+
default: D[K];
|
|
65
|
+
}> : P[K];
|
|
66
|
+
};
|
|
67
|
+
type __VLS_Prettify<T> = {
|
|
68
|
+
[K in keyof T]: T[K];
|
|
69
|
+
} & {};
|
|
70
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
71
|
+
new (): {
|
|
72
|
+
$slots: S;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import o from "./FormCard.vue2.js";
|
|
2
|
+
/* empty css */import _ from "../../_virtual/_plugin-vue_export-helper.js";
|
|
3
|
+
// import "../../FormCard.vue_vue_type_style_index_0_scoped_bb7d27f9_lang.css"; //*');
|
|
4
|
+
const t = /* @__PURE__ */ _(o, [["__scopeId", "data-v-bb7d27f9"]]);
|
|
5
|
+
export {
|
|
6
|
+
t as default
|
|
7
|
+
};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import "../../FormCard.vue_vue_type_style_index_0_scoped_bb7d27f9_lang.css"; import { defineComponent as g, openBlock as v, createElementBlock as T, createElementVNode as r, mergeProps as n, unref as e, renderSlot as s, createVNode as i, withCtx as c, createTextVNode as f, toDisplayString as u, createCommentVNode as B } from "vue";
|
|
2
|
+
import N from "../typography/v4/Typography.vue.js";
|
|
3
|
+
import p from "../button/v4/ButtonV4.vue.js";
|
|
4
|
+
import "../button/v4/IconButtonV4.vue.js";
|
|
5
|
+
import { FormCardTestIdModifiers as a } from "../../testids/index.js";
|
|
6
|
+
import { useTestIdAttrs as L } from "../../utils/testIds.js";
|
|
7
|
+
const y = { class: "form-card" }, b = /* @__PURE__ */ g({
|
|
8
|
+
__name: "FormCard",
|
|
9
|
+
props: {
|
|
10
|
+
title: { default: "" },
|
|
11
|
+
noPadding: { type: Boolean, default: !1 },
|
|
12
|
+
actionButtons: { type: Boolean, default: !1 },
|
|
13
|
+
saveLabel: { default: "Save" },
|
|
14
|
+
cancelLabel: { default: "Cancel" },
|
|
15
|
+
saveLoading: { type: Boolean, default: !1 },
|
|
16
|
+
testId: { default: "" }
|
|
17
|
+
},
|
|
18
|
+
emits: ["save", "cancel"],
|
|
19
|
+
setup(t, { emit: m }) {
|
|
20
|
+
const o = L(t.testId, a);
|
|
21
|
+
return (d, l) => (v(), T("div", null, [
|
|
22
|
+
r("div", y, [
|
|
23
|
+
r("header", n({ class: "card-header" }, e(o)[e(a).TITLE]), [
|
|
24
|
+
s(d.$slots, "header", {}, () => [
|
|
25
|
+
i(e(N), { variant: "h3" }, {
|
|
26
|
+
default: c(() => [
|
|
27
|
+
f(u(t.title), 1)
|
|
28
|
+
]),
|
|
29
|
+
_: 1
|
|
30
|
+
})
|
|
31
|
+
], !0)
|
|
32
|
+
], 16),
|
|
33
|
+
r("div", n({
|
|
34
|
+
class: ["card-content", { "card-content--no-padding": t.noPadding }]
|
|
35
|
+
}, e(o)[e(a).CONTENT]), [
|
|
36
|
+
s(d.$slots, "default", {}, void 0, !0)
|
|
37
|
+
], 16)
|
|
38
|
+
]),
|
|
39
|
+
t.actionButtons ? (v(), T("div", n({
|
|
40
|
+
key: 0,
|
|
41
|
+
class: "form-actions"
|
|
42
|
+
}, e(o)[e(a).ACTIONS]), [
|
|
43
|
+
s(d.$slots, "footer", {}, () => [
|
|
44
|
+
i(e(p), n({
|
|
45
|
+
class: "form-action",
|
|
46
|
+
variant: "outlined",
|
|
47
|
+
color: "default"
|
|
48
|
+
}, e(o)[e(a).CANCEL_BUTTON], {
|
|
49
|
+
onClick: l[0] || (l[0] = (C) => m("cancel"))
|
|
50
|
+
}), {
|
|
51
|
+
default: c(() => [
|
|
52
|
+
f(u(t.cancelLabel), 1)
|
|
53
|
+
]),
|
|
54
|
+
_: 1
|
|
55
|
+
}, 16),
|
|
56
|
+
i(e(p), n({
|
|
57
|
+
class: "form-action",
|
|
58
|
+
loading: t.saveLoading
|
|
59
|
+
}, e(o)[e(a).SAVE_BUTTON], {
|
|
60
|
+
onClick: l[1] || (l[1] = (C) => m("save"))
|
|
61
|
+
}), {
|
|
62
|
+
default: c(() => [
|
|
63
|
+
f(u(t.saveLabel), 1)
|
|
64
|
+
]),
|
|
65
|
+
_: 1
|
|
66
|
+
}, 16, ["loading"])
|
|
67
|
+
], !0)
|
|
68
|
+
], 16)) : B("", !0)
|
|
69
|
+
]));
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
export {
|
|
73
|
+
b as default
|
|
74
|
+
};
|
|
@@ -0,0 +1,405 @@
|
|
|
1
|
+
import FormCard from './FormCard.vue';
|
|
2
|
+
import CardPanel from './CardPanel.vue';
|
|
3
|
+
import FoldableSection from './FoldableSection.vue';
|
|
4
|
+
declare const FormCardTypes: () => (({
|
|
5
|
+
new (...args: any[]): {
|
|
6
|
+
$: import("vue").ComponentInternalInstance;
|
|
7
|
+
$data: {};
|
|
8
|
+
$props: Partial<{
|
|
9
|
+
noPadding: boolean;
|
|
10
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
+
noPadding: {
|
|
12
|
+
type: import("vue").PropType<boolean>;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "noPadding">;
|
|
16
|
+
$attrs: {
|
|
17
|
+
[x: string]: unknown;
|
|
18
|
+
};
|
|
19
|
+
$refs: {
|
|
20
|
+
[x: string]: unknown;
|
|
21
|
+
};
|
|
22
|
+
$slots: Readonly<{
|
|
23
|
+
[name: string]: import("vue").Slot;
|
|
24
|
+
}>;
|
|
25
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
26
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
27
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
28
|
+
$el: any;
|
|
29
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
30
|
+
noPadding: {
|
|
31
|
+
type: import("vue").PropType<boolean>;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
34
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
35
|
+
noPadding: boolean;
|
|
36
|
+
}, {}, string> & {
|
|
37
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
38
|
+
created?: (() => void) | (() => void)[];
|
|
39
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
40
|
+
mounted?: (() => void) | (() => void)[];
|
|
41
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
42
|
+
updated?: (() => void) | (() => void)[];
|
|
43
|
+
activated?: (() => void) | (() => void)[];
|
|
44
|
+
deactivated?: (() => void) | (() => void)[];
|
|
45
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
46
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
47
|
+
destroyed?: (() => void) | (() => void)[];
|
|
48
|
+
unmounted?: (() => void) | (() => void)[];
|
|
49
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
50
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
51
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
52
|
+
};
|
|
53
|
+
$forceUpdate: () => void;
|
|
54
|
+
$nextTick: typeof import("vue").nextTick;
|
|
55
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
56
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
57
|
+
noPadding: {
|
|
58
|
+
type: import("vue").PropType<boolean>;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
61
|
+
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
62
|
+
__isFragment?: never;
|
|
63
|
+
__isTeleport?: never;
|
|
64
|
+
__isSuspense?: never;
|
|
65
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
66
|
+
noPadding: {
|
|
67
|
+
type: import("vue").PropType<boolean>;
|
|
68
|
+
default: boolean;
|
|
69
|
+
};
|
|
70
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
71
|
+
noPadding: boolean;
|
|
72
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
73
|
+
$slots: {
|
|
74
|
+
default?(_: {}): any;
|
|
75
|
+
};
|
|
76
|
+
})) | ({
|
|
77
|
+
new (...args: any[]): {
|
|
78
|
+
$: import("vue").ComponentInternalInstance;
|
|
79
|
+
$data: {};
|
|
80
|
+
$props: Partial<{
|
|
81
|
+
title: string;
|
|
82
|
+
testId: string;
|
|
83
|
+
open: boolean;
|
|
84
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
85
|
+
title: {
|
|
86
|
+
type: import("vue").PropType<string>;
|
|
87
|
+
default: string;
|
|
88
|
+
};
|
|
89
|
+
testId: {
|
|
90
|
+
type: import("vue").PropType<string>;
|
|
91
|
+
default: string;
|
|
92
|
+
};
|
|
93
|
+
open: {
|
|
94
|
+
type: import("vue").PropType<boolean>;
|
|
95
|
+
default: boolean;
|
|
96
|
+
};
|
|
97
|
+
}>> & {
|
|
98
|
+
"onUpdate:open"?: (value: boolean) => any;
|
|
99
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "testId" | "open">;
|
|
100
|
+
$attrs: {
|
|
101
|
+
[x: string]: unknown;
|
|
102
|
+
};
|
|
103
|
+
$refs: {
|
|
104
|
+
[x: string]: unknown;
|
|
105
|
+
};
|
|
106
|
+
$slots: Readonly<{
|
|
107
|
+
[name: string]: import("vue").Slot;
|
|
108
|
+
}>;
|
|
109
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
110
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
111
|
+
$emit: (event: "update:open", value: boolean) => void;
|
|
112
|
+
$el: any;
|
|
113
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
114
|
+
title: {
|
|
115
|
+
type: import("vue").PropType<string>;
|
|
116
|
+
default: string;
|
|
117
|
+
};
|
|
118
|
+
testId: {
|
|
119
|
+
type: import("vue").PropType<string>;
|
|
120
|
+
default: string;
|
|
121
|
+
};
|
|
122
|
+
open: {
|
|
123
|
+
type: import("vue").PropType<boolean>;
|
|
124
|
+
default: boolean;
|
|
125
|
+
};
|
|
126
|
+
}>> & {
|
|
127
|
+
"onUpdate:open"?: (value: boolean) => any;
|
|
128
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
129
|
+
"update:open": (value: boolean) => void;
|
|
130
|
+
}, string, {
|
|
131
|
+
title: string;
|
|
132
|
+
testId: string;
|
|
133
|
+
open: boolean;
|
|
134
|
+
}, {}, string> & {
|
|
135
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
136
|
+
created?: (() => void) | (() => void)[];
|
|
137
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
138
|
+
mounted?: (() => void) | (() => void)[];
|
|
139
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
140
|
+
updated?: (() => void) | (() => void)[];
|
|
141
|
+
activated?: (() => void) | (() => void)[];
|
|
142
|
+
deactivated?: (() => void) | (() => void)[];
|
|
143
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
144
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
145
|
+
destroyed?: (() => void) | (() => void)[];
|
|
146
|
+
unmounted?: (() => void) | (() => void)[];
|
|
147
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
148
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
149
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
150
|
+
};
|
|
151
|
+
$forceUpdate: () => void;
|
|
152
|
+
$nextTick: typeof import("vue").nextTick;
|
|
153
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
154
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
155
|
+
title: {
|
|
156
|
+
type: import("vue").PropType<string>;
|
|
157
|
+
default: string;
|
|
158
|
+
};
|
|
159
|
+
testId: {
|
|
160
|
+
type: import("vue").PropType<string>;
|
|
161
|
+
default: string;
|
|
162
|
+
};
|
|
163
|
+
open: {
|
|
164
|
+
type: import("vue").PropType<boolean>;
|
|
165
|
+
default: boolean;
|
|
166
|
+
};
|
|
167
|
+
}>> & {
|
|
168
|
+
"onUpdate:open"?: (value: boolean) => any;
|
|
169
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
170
|
+
__isFragment?: never;
|
|
171
|
+
__isTeleport?: never;
|
|
172
|
+
__isSuspense?: never;
|
|
173
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
174
|
+
title: {
|
|
175
|
+
type: import("vue").PropType<string>;
|
|
176
|
+
default: string;
|
|
177
|
+
};
|
|
178
|
+
testId: {
|
|
179
|
+
type: import("vue").PropType<string>;
|
|
180
|
+
default: string;
|
|
181
|
+
};
|
|
182
|
+
open: {
|
|
183
|
+
type: import("vue").PropType<boolean>;
|
|
184
|
+
default: boolean;
|
|
185
|
+
};
|
|
186
|
+
}>> & {
|
|
187
|
+
"onUpdate:open"?: (value: boolean) => any;
|
|
188
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
189
|
+
"update:open": (value: boolean) => void;
|
|
190
|
+
}, string, {
|
|
191
|
+
title: string;
|
|
192
|
+
testId: string;
|
|
193
|
+
open: boolean;
|
|
194
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
195
|
+
$slots: {
|
|
196
|
+
default?(_: {}): any;
|
|
197
|
+
};
|
|
198
|
+
})) | ({
|
|
199
|
+
new (...args: any[]): {
|
|
200
|
+
$: import("vue").ComponentInternalInstance;
|
|
201
|
+
$data: {};
|
|
202
|
+
$props: Partial<{
|
|
203
|
+
title: string;
|
|
204
|
+
testId: string;
|
|
205
|
+
noPadding: boolean;
|
|
206
|
+
actionButtons: boolean;
|
|
207
|
+
saveLabel: string;
|
|
208
|
+
cancelLabel: string;
|
|
209
|
+
saveLoading: boolean;
|
|
210
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
211
|
+
title: {
|
|
212
|
+
type: import("vue").PropType<string>;
|
|
213
|
+
default: string;
|
|
214
|
+
};
|
|
215
|
+
testId: {
|
|
216
|
+
type: import("vue").PropType<string>;
|
|
217
|
+
default: string;
|
|
218
|
+
};
|
|
219
|
+
noPadding: {
|
|
220
|
+
type: import("vue").PropType<boolean>;
|
|
221
|
+
default: boolean;
|
|
222
|
+
};
|
|
223
|
+
actionButtons: {
|
|
224
|
+
type: import("vue").PropType<boolean>;
|
|
225
|
+
default: boolean;
|
|
226
|
+
};
|
|
227
|
+
saveLabel: {
|
|
228
|
+
type: import("vue").PropType<string>;
|
|
229
|
+
default: string;
|
|
230
|
+
};
|
|
231
|
+
cancelLabel: {
|
|
232
|
+
type: import("vue").PropType<string>;
|
|
233
|
+
default: string;
|
|
234
|
+
};
|
|
235
|
+
saveLoading: {
|
|
236
|
+
type: import("vue").PropType<boolean>;
|
|
237
|
+
default: boolean;
|
|
238
|
+
};
|
|
239
|
+
}>> & {
|
|
240
|
+
onCancel?: () => any;
|
|
241
|
+
onSave?: () => any;
|
|
242
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "testId" | "noPadding" | "actionButtons" | "saveLabel" | "cancelLabel" | "saveLoading">;
|
|
243
|
+
$attrs: {
|
|
244
|
+
[x: string]: unknown;
|
|
245
|
+
};
|
|
246
|
+
$refs: {
|
|
247
|
+
[x: string]: unknown;
|
|
248
|
+
};
|
|
249
|
+
$slots: Readonly<{
|
|
250
|
+
[name: string]: import("vue").Slot;
|
|
251
|
+
}>;
|
|
252
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
253
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
254
|
+
$emit: ((event: "cancel") => void) & ((event: "save") => void);
|
|
255
|
+
$el: any;
|
|
256
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
257
|
+
title: {
|
|
258
|
+
type: import("vue").PropType<string>;
|
|
259
|
+
default: string;
|
|
260
|
+
};
|
|
261
|
+
testId: {
|
|
262
|
+
type: import("vue").PropType<string>;
|
|
263
|
+
default: string;
|
|
264
|
+
};
|
|
265
|
+
noPadding: {
|
|
266
|
+
type: import("vue").PropType<boolean>;
|
|
267
|
+
default: boolean;
|
|
268
|
+
};
|
|
269
|
+
actionButtons: {
|
|
270
|
+
type: import("vue").PropType<boolean>;
|
|
271
|
+
default: boolean;
|
|
272
|
+
};
|
|
273
|
+
saveLabel: {
|
|
274
|
+
type: import("vue").PropType<string>;
|
|
275
|
+
default: string;
|
|
276
|
+
};
|
|
277
|
+
cancelLabel: {
|
|
278
|
+
type: import("vue").PropType<string>;
|
|
279
|
+
default: string;
|
|
280
|
+
};
|
|
281
|
+
saveLoading: {
|
|
282
|
+
type: import("vue").PropType<boolean>;
|
|
283
|
+
default: boolean;
|
|
284
|
+
};
|
|
285
|
+
}>> & {
|
|
286
|
+
onCancel?: () => any;
|
|
287
|
+
onSave?: () => any;
|
|
288
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
289
|
+
save: () => void;
|
|
290
|
+
cancel: () => void;
|
|
291
|
+
}, string, {
|
|
292
|
+
title: string;
|
|
293
|
+
testId: string;
|
|
294
|
+
noPadding: boolean;
|
|
295
|
+
actionButtons: boolean;
|
|
296
|
+
saveLabel: string;
|
|
297
|
+
cancelLabel: string;
|
|
298
|
+
saveLoading: boolean;
|
|
299
|
+
}, {}, string> & {
|
|
300
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
301
|
+
created?: (() => void) | (() => void)[];
|
|
302
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
303
|
+
mounted?: (() => void) | (() => void)[];
|
|
304
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
305
|
+
updated?: (() => void) | (() => void)[];
|
|
306
|
+
activated?: (() => void) | (() => void)[];
|
|
307
|
+
deactivated?: (() => void) | (() => void)[];
|
|
308
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
309
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
310
|
+
destroyed?: (() => void) | (() => void)[];
|
|
311
|
+
unmounted?: (() => void) | (() => void)[];
|
|
312
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
313
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
314
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
315
|
+
};
|
|
316
|
+
$forceUpdate: () => void;
|
|
317
|
+
$nextTick: typeof import("vue").nextTick;
|
|
318
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
319
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
320
|
+
title: {
|
|
321
|
+
type: import("vue").PropType<string>;
|
|
322
|
+
default: string;
|
|
323
|
+
};
|
|
324
|
+
testId: {
|
|
325
|
+
type: import("vue").PropType<string>;
|
|
326
|
+
default: string;
|
|
327
|
+
};
|
|
328
|
+
noPadding: {
|
|
329
|
+
type: import("vue").PropType<boolean>;
|
|
330
|
+
default: boolean;
|
|
331
|
+
};
|
|
332
|
+
actionButtons: {
|
|
333
|
+
type: import("vue").PropType<boolean>;
|
|
334
|
+
default: boolean;
|
|
335
|
+
};
|
|
336
|
+
saveLabel: {
|
|
337
|
+
type: import("vue").PropType<string>;
|
|
338
|
+
default: string;
|
|
339
|
+
};
|
|
340
|
+
cancelLabel: {
|
|
341
|
+
type: import("vue").PropType<string>;
|
|
342
|
+
default: string;
|
|
343
|
+
};
|
|
344
|
+
saveLoading: {
|
|
345
|
+
type: import("vue").PropType<boolean>;
|
|
346
|
+
default: boolean;
|
|
347
|
+
};
|
|
348
|
+
}>> & {
|
|
349
|
+
onCancel?: () => any;
|
|
350
|
+
onSave?: () => any;
|
|
351
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
352
|
+
__isFragment?: never;
|
|
353
|
+
__isTeleport?: never;
|
|
354
|
+
__isSuspense?: never;
|
|
355
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
356
|
+
title: {
|
|
357
|
+
type: import("vue").PropType<string>;
|
|
358
|
+
default: string;
|
|
359
|
+
};
|
|
360
|
+
testId: {
|
|
361
|
+
type: import("vue").PropType<string>;
|
|
362
|
+
default: string;
|
|
363
|
+
};
|
|
364
|
+
noPadding: {
|
|
365
|
+
type: import("vue").PropType<boolean>;
|
|
366
|
+
default: boolean;
|
|
367
|
+
};
|
|
368
|
+
actionButtons: {
|
|
369
|
+
type: import("vue").PropType<boolean>;
|
|
370
|
+
default: boolean;
|
|
371
|
+
};
|
|
372
|
+
saveLabel: {
|
|
373
|
+
type: import("vue").PropType<string>;
|
|
374
|
+
default: string;
|
|
375
|
+
};
|
|
376
|
+
cancelLabel: {
|
|
377
|
+
type: import("vue").PropType<string>;
|
|
378
|
+
default: string;
|
|
379
|
+
};
|
|
380
|
+
saveLoading: {
|
|
381
|
+
type: import("vue").PropType<boolean>;
|
|
382
|
+
default: boolean;
|
|
383
|
+
};
|
|
384
|
+
}>> & {
|
|
385
|
+
onCancel?: () => any;
|
|
386
|
+
onSave?: () => any;
|
|
387
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
388
|
+
save: () => void;
|
|
389
|
+
cancel: () => void;
|
|
390
|
+
}, string, {
|
|
391
|
+
title: string;
|
|
392
|
+
testId: string;
|
|
393
|
+
noPadding: boolean;
|
|
394
|
+
actionButtons: boolean;
|
|
395
|
+
saveLabel: string;
|
|
396
|
+
cancelLabel: string;
|
|
397
|
+
saveLoading: boolean;
|
|
398
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
399
|
+
$slots: {
|
|
400
|
+
header?(_: {}): any;
|
|
401
|
+
default?(_: {}): any;
|
|
402
|
+
footer?(_: {}): any;
|
|
403
|
+
};
|
|
404
|
+
})))[];
|
|
405
|
+
export { FormCard, CardPanel, FoldableSection, FormCardTypes };
|